@@ -186,7 +186,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
186186
187187export declare class CdkTable < T > implements AfterContentChecked , CollectionViewer , OnDestroy , OnInit {
188188 protected readonly _changeDetectorRef : ChangeDetectorRef ;
189- protected readonly _coalescedStyleScheduler : _CoalescedStyleScheduler ;
189+ protected readonly _coalescedStyleScheduler ? : _CoalescedStyleScheduler | undefined ;
190190 _contentColumnDefs : QueryList < CdkColumnDef > ;
191191 _contentFooterRowDefs : QueryList < CdkFooterRowDef > ;
192192 _contentHeaderRowDefs : QueryList < CdkHeaderRowDef > ;
@@ -201,7 +201,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
201201 _noDataRow : CdkNoDataRow ;
202202 _noDataRowOutlet : NoDataRowOutlet ;
203203 _rowOutlet : DataRowOutlet ;
204- protected readonly _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > ;
204+ protected readonly _viewRepeater ? : _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined ;
205205 get dataSource ( ) : CdkTableDataSourceInput < T > ;
206206 set dataSource ( dataSource : CdkTableDataSourceInput < T > ) ;
207207 get multiTemplateDataRows ( ) : boolean ;
@@ -214,7 +214,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
214214 start : number ;
215215 end : number ;
216216 } > ;
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 > > ) ;
217+ constructor ( _differs : IterableDiffers , _changeDetectorRef : ChangeDetectorRef , _elementRef : ElementRef , role : string , _dir : Directionality , _document : any , _platform : Platform ,
218+ _viewRepeater ?: _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined , _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined ) ;
218219 _getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
219220 _getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
220221 addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -234,7 +235,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
234235 updateStickyHeaderRowStyles ( ) : void ;
235236 static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
236237 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 ; } ] > ;
238+ static ɵfac : i0 . ɵɵFactoryDef < CdkTable < any > , [ null , null , null , { attribute : "role" ; } , { optional : true ; } , null , null , { optional : true ; } , { optional : true ; } ] > ;
238239}
239240
240241export declare class CdkTableModule {
@@ -319,7 +320,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
319320
320321export declare class StickyStyler {
321322 direction : Direction ;
322- constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction , _coalescedStyleScheduler : _CoalescedStyleScheduler , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
323+ constructor ( _isNativeHtmlTable : boolean , _stickCellCss : string , direction : Direction ,
324+ _coalescedStyleScheduler ?: _CoalescedStyleScheduler | undefined , _isBrowser ?: boolean , _needsPositionStickyOnElement ?: boolean ) ;
323325 _addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
324326 _getCalculatedZIndex ( element : HTMLElement ) : string ;
325327 _getCellWidths ( row : HTMLElement ) : number [ ] ;
0 commit comments