@@ -186,7 +186,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
186
186
187
187
export declare class CdkTable < T > implements AfterContentChecked , CollectionViewer , OnDestroy , OnInit {
188
188
protected readonly _changeDetectorRef : ChangeDetectorRef ;
189
- protected readonly _coalescedStyleScheduler : _CoalescedStyleScheduler ;
189
+ protected readonly _coalescedStyleScheduler ? : _CoalescedStyleScheduler | undefined ;
190
190
_contentColumnDefs : QueryList < CdkColumnDef > ;
191
191
_contentFooterRowDefs : QueryList < CdkFooterRowDef > ;
192
192
_contentHeaderRowDefs : QueryList < CdkHeaderRowDef > ;
@@ -201,7 +201,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
201
201
_noDataRow : CdkNoDataRow ;
202
202
_noDataRowOutlet : NoDataRowOutlet ;
203
203
_rowOutlet : DataRowOutlet ;
204
- protected readonly _viewRepeater : _ViewRepeater < T , RenderRow < T > , RowContext < T > > ;
204
+ protected readonly _viewRepeater ? : _ViewRepeater < T , RenderRow < T > , RowContext < T > > | undefined ;
205
205
get dataSource ( ) : CdkTableDataSourceInput < T > ;
206
206
set dataSource ( dataSource : CdkTableDataSourceInput < T > ) ;
207
207
get multiTemplateDataRows ( ) : boolean ;
@@ -214,7 +214,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
214
214
start : number ;
215
215
end : number ;
216
216
} > ;
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 ) ;
218
219
_getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
219
220
_getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
220
221
addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -234,7 +235,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
234
235
updateStickyHeaderRowStyles ( ) : void ;
235
236
static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
236
237
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 ; } ] > ;
238
239
}
239
240
240
241
export declare class CdkTableModule {
@@ -319,7 +320,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
319
320
320
321
export declare class StickyStyler {
321
322
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 ) ;
323
325
_addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
324
326
_getCalculatedZIndex ( element : HTMLElement ) : string ;
325
327
_getCellWidths ( row : HTMLElement ) : number [ ] ;
0 commit comments