55``` ts
66
77import { AfterViewInit } from ' @angular/core' ;
8- import { BooleanInput } from ' @angular/cdk/coercion' ;
98import { ChangeDetectorRef } from ' @angular/core' ;
109import { Direction } from ' @angular/cdk/bidi' ;
1110import { Directionality } from ' @angular/cdk/bidi' ;
@@ -58,7 +57,7 @@ export class CdkDrag<T = any> implements AfterViewInit, OnChanges, OnDestroy {
5857 constrainPosition? : (userPointerPosition : Point , dragRef : DragRef , dimensions : ClientRect , pickupPositionInElement : Point ) => Point ;
5958 data: T ;
6059 get disabled(): boolean ;
61- set disabled(value : BooleanInput );
60+ set disabled(value : boolean );
6261 _dragRef: DragRef <CdkDrag <T >>;
6362 dragStartDelay: DragStartDelay ;
6463 dropContainer: CdkDropList ;
@@ -75,6 +74,8 @@ export class CdkDrag<T = any> implements AfterViewInit, OnChanges, OnDestroy {
7574 lockAxis: DragAxis ;
7675 readonly moved: Observable <CdkDragMove <T >>;
7776 // (undocumented)
77+ static ngAcceptInputType_disabled: unknown ;
78+ // (undocumented)
7879 ngAfterViewInit(): void ;
7980 // (undocumented)
8081 ngOnChanges(changes : SimpleChanges ): void ;
@@ -145,10 +146,12 @@ export interface CdkDragExit<T = any, I = T> {
145146export class CdkDragHandle implements OnDestroy {
146147 constructor (element : ElementRef <HTMLElement >, parentDrag ? : any );
147148 get disabled(): boolean ;
148- set disabled(value : BooleanInput );
149+ set disabled(value : boolean );
149150 // (undocumented)
150151 element: ElementRef <HTMLElement >;
151152 // (undocumented)
153+ static ngAcceptInputType_disabled: unknown ;
154+ // (undocumented)
152155 ngOnDestroy(): void ;
153156 _parentDrag: {} | undefined ;
154157 readonly _stateChanges: Subject <CdkDragHandle >;
@@ -192,8 +195,9 @@ export class CdkDragPlaceholder<T = any> {
192195export class CdkDragPreview <T = any > {
193196 constructor (templateRef : TemplateRef <T >);
194197 data: T ;
195- get matchSize(): boolean ;
196- set matchSize(value : BooleanInput );
198+ matchSize: boolean ;
199+ // (undocumented)
200+ static ngAcceptInputType_matchSize: unknown ;
197201 // (undocumented)
198202 templateRef: TemplateRef <T >;
199203 // (undocumented)
@@ -227,12 +231,12 @@ export class CdkDropList<T = any> implements OnDestroy {
227231 constructor (
228232 element : ElementRef <HTMLElement >, dragDrop : DragDrop , _changeDetectorRef : ChangeDetectorRef , _scrollDispatcher : ScrollDispatcher , _dir ? : Directionality | undefined , _group ? : CdkDropListGroup <CdkDropList <any >> | undefined , config ? : DragDropConfig );
229233 addItem(item : CdkDrag ): void ;
230- autoScrollDisabled: BooleanInput ;
234+ autoScrollDisabled: boolean ;
231235 autoScrollStep: NumberInput ;
232236 connectedTo: (CdkDropList | string )[] | CdkDropList | string ;
233237 data: T ;
234238 get disabled(): boolean ;
235- set disabled(value : BooleanInput );
239+ set disabled(value : boolean );
236240 _dropListRef: DropListRef <CdkDropList <T >>;
237241 readonly dropped: EventEmitter <CdkDragDrop <T , any >>;
238242 element: ElementRef <HTMLElement >;
@@ -243,11 +247,17 @@ export class CdkDropList<T = any> implements OnDestroy {
243247 id: string ;
244248 lockAxis: DragAxis ;
245249 // (undocumented)
250+ static ngAcceptInputType_autoScrollDisabled: unknown ;
251+ // (undocumented)
252+ static ngAcceptInputType_disabled: unknown ;
253+ // (undocumented)
254+ static ngAcceptInputType_sortingDisabled: unknown ;
255+ // (undocumented)
246256 ngOnDestroy(): void ;
247257 orientation: DropListOrientation ;
248258 removeItem(item : CdkDrag ): void ;
249259 readonly sorted: EventEmitter <CdkDragSortEvent <T >>;
250- sortingDisabled: BooleanInput ;
260+ sortingDisabled: boolean ;
251261 sortPredicate: (index : number , drag : CdkDrag , drop : CdkDropList ) => boolean ;
252262 // (undocumented)
253263 static ɵdir: i0.ɵɵDirectiveDeclaration<CdkDropList<any>, "[cdkDropList], cdk-drop-list", ["cdkDropList"], { "connectedTo": { "alias": "cdkDropListConnectedTo"; "required": false; }; "data": { "alias": "cdkDropListData"; "required": false; }; "orientation": { "alias": "cdkDropListOrientation"; "required": false; }; "id": { "alias": "id"; "required": false; }; "lockAxis": { "alias": "cdkDropListLockAxis"; "required": false; }; "disabled": { "alias": "cdkDropListDisabled"; "required": false; }; "sortingDisabled": { "alias": "cdkDropListSortingDisabled"; "required": false; }; "enterPredicate": { "alias": "cdkDropListEnterPredicate"; "required": false; }; "sortPredicate": { "alias": "cdkDropListSortPredicate"; "required": false; }; "autoScrollDisabled": { "alias": "cdkDropListAutoScrollDisabled"; "required": false; }; "autoScrollStep": { "alias": "cdkDropListAutoScrollStep"; "required": false; }; }, { "dropped": "cdkDropListDropped"; "entered": "cdkDropListEntered"; "exited": "cdkDropListExited"; "sorted": "cdkDropListSorted"; }, never, never, true, never>;
@@ -257,10 +267,11 @@ export class CdkDropList<T = any> implements OnDestroy {
257267
258268// @public
259269export class CdkDropListGroup <T > implements OnDestroy {
260- get disabled(): boolean ;
261- set disabled(value : BooleanInput );
270+ disabled: boolean ;
262271 readonly _items: Set <T >;
263272 // (undocumented)
273+ static ngAcceptInputType_disabled: unknown ;
274+ // (undocumented)
264275 ngOnDestroy(): void ;
265276 // (undocumented)
266277 static ɵdir: i0 .ɵɵDirectiveDeclaration <CdkDropListGroup <any >, " [cdkDropListGroup]" , [" cdkDropListGroup" ], { " disabled" : { " alias" : " cdkDropListGroupDisabled" ; " required" : false ; }; }, {}, never , never , true , never >;
0 commit comments