From 49603b018db52485d87e807410db2023c2c6af9c Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 14 Nov 2018 23:55:02 +0100 Subject: [PATCH] chore: update api goldens --- tools/public_api_guard/cdk/a11y.d.ts | 2 +- tools/public_api_guard/cdk/drag-drop.d.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/public_api_guard/cdk/a11y.d.ts b/tools/public_api_guard/cdk/a11y.d.ts index 274a8ae1306d..3792bf20d753 100644 --- a/tools/public_api_guard/cdk/a11y.d.ts +++ b/tools/public_api_guard/cdk/a11y.d.ts @@ -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); diff --git a/tools/public_api_guard/cdk/drag-drop.d.ts b/tools/public_api_guard/cdk/drag-drop.d.ts index 36d7bc3f58a0..6fb9b60ecbde 100644 --- a/tools/public_api_guard/cdk/drag-drop.d.ts +++ b/tools/public_api_guard/cdk/drag-drop.d.ts @@ -11,6 +11,7 @@ export declare class CdkDrag implements AfterViewInit, OnDestroy { _pointerDown: (event: TouchEvent | MouseEvent) => void; _previewTemplate: CdkDragPreview; data: T; + disabled: boolean; dropContainer: CdkDropListContainer; dropped: EventEmitter>; element: ElementRef; @@ -61,6 +62,7 @@ export interface CdkDragExit { export declare class CdkDragHandle { _parentDrag: {} | undefined; + disabled: boolean; element: ElementRef; constructor(element: ElementRef, parentDrag?: any); } @@ -106,6 +108,7 @@ export declare class CdkDropList implements OnInit, OnDestroy { _dragging: boolean; connectedTo: (CdkDropList | string)[] | CdkDropList | string; data: T; + disabled: boolean; dropped: EventEmitter>; element: ElementRef; enterPredicate: (drag: CdkDrag, drop: CdkDropList) => boolean; @@ -134,6 +137,7 @@ export declare class CdkDropList implements OnInit, OnDestroy { export interface CdkDropListContainer { _draggables: QueryList; data: T; + disabled: boolean; element: ElementRef; id: string; lockAxis: 'x' | 'y';