Skip to content

chore: update api goldens #14144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/public_api_guard/cdk/a11y.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export declare function LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY(): null;

export declare const LIVE_ANNOUNCER_PROVIDER: Provider;

export declare function LIVE_ANNOUNCER_PROVIDER_FACTORY(parentDispatcher: LiveAnnouncer, liveElement: any, _document: any, ngZone: NgZone): LiveAnnouncer;
export declare function LIVE_ANNOUNCER_PROVIDER_FACTORY(parentAnnouncer: LiveAnnouncer, liveElement: any, _document: any, ngZone: NgZone): LiveAnnouncer;

export declare class LiveAnnouncer implements OnDestroy {
constructor(elementToken: any, _ngZone: NgZone, _document: any);
Expand Down
4 changes: 4 additions & 0 deletions tools/public_api_guard/cdk/drag-drop.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export declare class CdkDrag<T = any> implements AfterViewInit, OnDestroy {
_pointerDown: (event: TouchEvent | MouseEvent) => void;
_previewTemplate: CdkDragPreview;
data: T;
disabled: boolean;
dropContainer: CdkDropListContainer;
dropped: EventEmitter<CdkDragDrop<any>>;
element: ElementRef<HTMLElement>;
Expand Down Expand Up @@ -61,6 +62,7 @@ export interface CdkDragExit<T = any, I = T> {

export declare class CdkDragHandle {
_parentDrag: {} | undefined;
disabled: boolean;
element: ElementRef<HTMLElement>;
constructor(element: ElementRef<HTMLElement>, parentDrag?: any);
}
Expand Down Expand Up @@ -106,6 +108,7 @@ export declare class CdkDropList<T = any> implements OnInit, OnDestroy {
_dragging: boolean;
connectedTo: (CdkDropList | string)[] | CdkDropList | string;
data: T;
disabled: boolean;
dropped: EventEmitter<CdkDragDrop<T, any>>;
element: ElementRef<HTMLElement>;
enterPredicate: (drag: CdkDrag, drop: CdkDropList) => boolean;
Expand Down Expand Up @@ -134,6 +137,7 @@ export declare class CdkDropList<T = any> implements OnInit, OnDestroy {
export interface CdkDropListContainer<T = any> {
_draggables: QueryList<CdkDrag>;
data: T;
disabled: boolean;
element: ElementRef<HTMLElement>;
id: string;
lockAxis: 'x' | 'y';
Expand Down