@@ -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
6263export 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 {
134137export 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