1
+ export declare class _CoalescedStyleScheduler {
2
+ constructor ( _ngZone : NgZone ) ;
3
+ schedule ( task : ( ) => unknown ) : void ;
4
+ static ɵfac : i0 . ɵɵFactoryDef < _CoalescedStyleScheduler , never > ;
5
+ static ɵprov : i0 . ɵɵInjectableDef < _CoalescedStyleScheduler > ;
6
+ }
7
+
1
8
export declare class BaseCdkCell {
2
9
constructor ( columnDef : CdkColumnDef , elementRef : ElementRef ) ;
3
10
}
@@ -169,7 +176,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
169
176
170
177
export declare class CdkTable < T > implements AfterContentChecked , CollectionViewer , OnDestroy , OnInit {
171
178
protected readonly _changeDetectorRef : ChangeDetectorRef ;
172
- protected readonly _coalescedStyleScheduler : CoalescedStyleScheduler ;
179
+ protected readonly _coalescedStyleScheduler : _CoalescedStyleScheduler ;
173
180
_contentColumnDefs : QueryList < CdkColumnDef > ;
174
181
_contentFooterRowDefs : QueryList < CdkFooterRowDef > ;
175
182
_contentHeaderRowDefs : QueryList < CdkHeaderRowDef > ;
@@ -195,7 +202,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
195
202
start : number ;
196
203
end : number ;
197
204
} > ;
198
- constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _coalescedStyleScheduler : CoalescedStyleScheduler , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform ) ;
205
+ constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _coalescedStyleScheduler : _CoalescedStyleScheduler , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform ) ;
199
206
_getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
200
207
_getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
201
208
addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -245,13 +252,6 @@ export interface CellDef {
245
252
template : TemplateRef < any > ;
246
253
}
247
254
248
- export declare class CoalescedStyleScheduler {
249
- constructor ( _ngZone : NgZone ) ;
250
- schedule ( task : ( ) => unknown ) : void ;
251
- static ɵfac : i0 . ɵɵFactoryDef < CoalescedStyleScheduler , never > ;
252
- static ɵprov : i0 . ɵɵInjectableDef < CoalescedStyleScheduler > ;
253
- }
254
-
255
255
export declare type Constructor < T > = new ( ...args : any [ ] ) => T ;
256
256
257
257
export declare class DataRowOutlet implements RowOutlet {
@@ -307,7 +307,7 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
307
307
308
308
export declare class StickyStyler {
309
309
direction : Direction ;
310
- constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction , _coalescedStyleScheduler : CoalescedStyleScheduler , _isBrowser ?: boolean ) ;
310
+ constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction , _coalescedStyleScheduler : _CoalescedStyleScheduler , _isBrowser ?: boolean ) ;
311
311
_addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
312
312
_getCalculatedZIndex ( element : HTMLElement ) : string ;
313
313
_getCellWidths ( row : HTMLElement ) : number [ ] ;
0 commit comments