1
+ export declare const _COALESCED_STYLE_SCHEDULER : InjectionToken < _CoalescedStyleScheduler > ;
2
+
1
3
export declare class _CoalescedStyleScheduler implements OnDestroy {
2
4
constructor ( _ngZone : NgZone ) ;
3
5
ngOnDestroy ( ) : void ;
@@ -186,7 +188,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
186
188
187
189
export declare class CdkTable < T > implements AfterContentChecked , CollectionViewer , OnDestroy , OnInit {
188
190
protected readonly _changeDetectorRef : ChangeDetectorRef ;
189
- protected readonly _coalescedStyleScheduler : _CoalescedStyleScheduler ;
191
+ protected readonly _coalescedStyleScheduler ? : _CoalescedStyleScheduler | undefined ;
190
192
_contentColumnDefs : QueryList < CdkColumnDef > ;
191
193
_contentFooterRowDefs : QueryList < CdkFooterRowDef > ;
192
194
_contentHeaderRowDefs : QueryList < CdkHeaderRowDef > ;
@@ -201,7 +203,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
201
203
_noDataRow : CdkNoDataRow ;
202
204
_noDataRowOutlet : NoDataRowOutlet ;
203
205
_rowOutlet : DataRowOutlet ;
204
- protected readonly _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > ;
206
+ protected readonly _viewRepeater ? : _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined ;
205
207
get dataSource ( ) : CdkTableDataSourceInput < T > ;
206
208
set dataSource ( dataSource : CdkTableDataSourceInput < T > ) ;
207
209
get multiTemplateDataRows ( ) : boolean ;
@@ -214,7 +216,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
214
216
start : number ;
215
217
end : number ;
216
218
} > ;
217
- constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _coalescedStyleScheduler : _CoalescedStyleScheduler , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform , _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > ) ;
219
+ constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform ,
220
+ _viewRepeater ?: _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined , _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined ) ;
218
221
_getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
219
222
_getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
220
223
addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -234,7 +237,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
234
237
updateStickyHeaderRowStyles ( ) : void ;
235
238
static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
236
239
static ɵcmp : i0 . ɵɵComponentDefWithMeta < CdkTable < any > , "cdk-table, table[cdk-table]" , [ "cdkTable" ] , { "trackBy" : "trackBy" ; "dataSource" : "dataSource" ; "multiTemplateDataRows" : "multiTemplateDataRows" ; } , { } , [ "_noDataRow" , "_contentColumnDefs" , "_contentRowDefs" , "_contentHeaderRowDefs" , "_contentFooterRowDefs" ] , [ "caption" , "colgroup, col" ] > ;
237
- static ɵfac : i0 . ɵɵFactoryDef < CdkTable < any > , [ null , null , null , null , { attribute : "role" ; } , { optional : true ; } , null , null , { optional : true ; } ] > ;
240
+ static ɵfac : i0 . ɵɵFactoryDef < CdkTable < any > , [ null , null , null , { attribute : "role" ; } , { optional : true ; } , null , null , { optional : true ; } , { optional : true ; } ] > ;
238
241
}
239
242
240
243
export declare class CdkTableModule {
@@ -319,7 +322,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
319
322
320
323
export declare class StickyStyler {
321
324
direction : Direction ;
322
- constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction , _coalescedStyleScheduler : _CoalescedStyleScheduler , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
325
+ constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction ,
326
+ _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
323
327
_addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
324
328
_getCalculatedZIndex ( element : HTMLElement ) : string ;
325
329
_getCellWidths ( row : HTMLElement ) : number [ ] ;
0 commit comments