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 fixedLayout ( ) : boolean ;
@@ -216,7 +218,8 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
216
218
start : number ;
217
219
end : number ;
218
220
} > ;
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 ) ;
220
223
_getRenderedRows ( rowOutlet : RowOutlet ) : HTMLElement [ ] ;
221
224
_getRowDefs ( data : T , dataIndex : number ) : CdkRowDef < T > [ ] ;
222
225
addColumnDef ( columnDef : CdkColumnDef ) : void ;
@@ -237,7 +240,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
237
240
static ngAcceptInputType_fixedLayout : BooleanInput ;
238
241
static ngAcceptInputType_multiTemplateDataRows : BooleanInput ;
239
242
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 ; } ] > ;
241
244
}
242
245
243
246
export declare class CdkTableModule {
@@ -322,7 +325,8 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
322
325
323
326
export declare class StickyStyler {
324
327
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 ) ;
326
330
_addStickyStyle ( element : HTMLElement , dir : StickyDirection , dirValue : number ) : void ;
327
331
_getCalculatedZIndex ( element : HTMLElement ) : string ;
328
332
_getCellWidths ( row : HTMLElement , recalculateCellWidths ?: boolean ) : number [ ] ;
0 commit comments