1+ export declare const _COALESCED_STYLE_SCHEDULER : InjectionToken < _CoalescedStyleScheduler > ;
2+
13export declare class _CoalescedStyleScheduler implements OnDestroy {
24 constructor ( _ngZone : NgZone ) ;
35 ngOnDestroy ( ) : void ;
@@ -186,7 +188,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
186188
187189export declare class CdkTable < T > implements AfterContentChecked , CollectionViewer , OnDestroy , OnInit {
188190 protected readonly _changeDetectorRef : ChangeDetectorRef ;
189- protected readonly _coalescedStyleScheduler : _CoalescedStyleScheduler ;
191+ protected readonly _coalescedStyleScheduler ? : _CoalescedStyleScheduler | undefined ;
190192 _contentColumnDefs : QueryList < CdkColumnDef > ;
191193 _contentFooterRowDefs : QueryList < CdkFooterRowDef > ;
192194 _contentHeaderRowDefs : QueryList < CdkHeaderRowDef > ;
@@ -201,7 +203,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
201203 _noDataRow : CdkNoDataRow ;
202204 _noDataRowOutlet : NoDataRowOutlet ;
203205 _rowOutlet : DataRowOutlet ;
204- protected readonly _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > ;
206+ protected readonly _viewRepeater ? : _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined ;
205207 get dataSource ( ) : CdkTableDataSourceInput < T > ;
206208 set dataSource ( dataSource : CdkTableDataSourceInput < T > ) ;
207209 get fixedLayout ( ) : boolean ;
@@ -216,7 +218,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
216218 start : number ;
217219 end : number ;
218220 } > ;
219- constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _coalescedStyleScheduler : _CoalescedStyleScheduler , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform , _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > , _viewportRuler : ViewportRuler ) ;
221+ constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform ,
222+ _viewRepeater ?: _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined , _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined , _viewportRuler ?: ViewportRuler | undefined ) ;
220223 _getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
221224 _getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
222225 addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -237,7 +240,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
237240 static ngAcceptInputType_fixedLayout : BooleanInput ;
238241 static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
239242 static ɵcmp : i0 . ɵɵComponentDefWithMeta < CdkTable < any > , "cdk-table, table[cdk-table]" , [ "cdkTable" ] , { "trackBy" : "trackBy" ; "dataSource" : "dataSource" ; "multiTemplateDataRows" : "multiTemplateDataRows" ; "fixedLayout" : "fixedLayout" ; } , { } , [ "_noDataRow" , "_contentColumnDefs" , "_contentRowDefs" , "_contentHeaderRowDefs" , "_contentFooterRowDefs" ] , [ "caption" , "colgroup, col" ] > ;
240- static ɵfac : i0 . ɵɵFactoryDef < CdkTable < any > , [ null , null , null , null , { attribute : "role" ; } , { optional : true ; } , null , null , { optional : true ; } , { optional : true ; } ] > ;
243+ static ɵfac : i0 . ɵɵFactoryDef < CdkTable < any > , [ null , null , null , { attribute : "role" ; } , { optional : true ; } , null , null , { optional : true ; } , { optional : true ; } , { optional : true ; } ] > ;
241244}
242245
243246export declare class CdkTableModule {
@@ -322,7 +325,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
322325
323326export declare class StickyStyler {
324327 direction : Direction ;
325- constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction , _coalescedStyleScheduler : _CoalescedStyleScheduler , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
328+ constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction ,
329+ _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
326330 _addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
327331 _getCalculatedZIndex ( element : HTMLElement ) : string ;
328332 _getCellWidths ( row : HTMLElement , recalculateCellWidths ?: boolean ) : number [ ] ;
0 commit comments