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 multiTemplateDataRows ( ) : boolean ;
@@ -214,7 +216,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
214216 start : number ;
215217 end : number ;
216218 } > ;
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 ) ;
218221 _getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
219222 _getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
220223 addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -234,7 +237,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
234237 updateStickyHeaderRowStyles ( ) : void ;
235238 static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
236239 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 ; } ] > ;
238241}
239242
240243export declare class CdkTableModule {
@@ -319,7 +322,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
319322
320323export declare class StickyStyler {
321324 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 ) ;
323327 _addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
324328 _getCalculatedZIndex ( element : HTMLElement ) : string ;
325329 _getCellWidths ( row : HTMLElement ) : number [ ] ;
0 commit comments