Skip to content

Commit 39888f3

Browse files
devversionandrewseguin
authored andcommitted
chore: update api goldens (#14144)
1 parent acedb48 commit 39888f3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tools/public_api_guard/cdk/a11y.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export declare function LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY(): null;
156156

157157
export declare const LIVE_ANNOUNCER_PROVIDER: Provider;
158158

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

161161
export declare class LiveAnnouncer implements OnDestroy {
162162
constructor(elementToken: any, _ngZone: NgZone, _document: any);

tools/public_api_guard/cdk/drag-drop.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export declare class CdkDrag<T = any> implements AfterViewInit, OnDestroy {
1111
_pointerDown: (event: TouchEvent | MouseEvent) => void;
1212
_previewTemplate: CdkDragPreview;
1313
data: T;
14+
disabled: boolean;
1415
dropContainer: CdkDropListContainer;
1516
dropped: EventEmitter<CdkDragDrop<any>>;
1617
element: ElementRef<HTMLElement>;
@@ -61,6 +62,7 @@ export interface CdkDragExit<T = any, I = T> {
6162

6263
export declare class CdkDragHandle {
6364
_parentDrag: {} | undefined;
65+
disabled: boolean;
6466
element: ElementRef<HTMLElement>;
6567
constructor(element: ElementRef<HTMLElement>, parentDrag?: any);
6668
}
@@ -106,6 +108,7 @@ export declare class CdkDropList<T = any> implements OnInit, OnDestroy {
106108
_dragging: boolean;
107109
connectedTo: (CdkDropList | string)[] | CdkDropList | string;
108110
data: T;
111+
disabled: boolean;
109112
dropped: EventEmitter<CdkDragDrop<T, any>>;
110113
element: ElementRef<HTMLElement>;
111114
enterPredicate: (drag: CdkDrag, drop: CdkDropList) => boolean;
@@ -134,6 +137,7 @@ export declare class CdkDropList<T = any> implements OnInit, OnDestroy {
134137
export interface CdkDropListContainer<T = any> {
135138
_draggables: QueryList<CdkDrag>;
136139
data: T;
140+
disabled: boolean;
137141
element: ElementRef<HTMLElement>;
138142
id: string;
139143
lockAxis: 'x' | 'y';

0 commit comments

Comments
 (0)