Skip to content

Commit 498ff4c

Browse files
committed
update api
1 parent 06dd6b2 commit 498ff4c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tools/public_api_guard/cdk/table.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
export declare class _CoalescedStyleScheduler {
2+
constructor(_ngZone: NgZone);
3+
schedule(task: () => unknown): void;
4+
static ɵfac: i0.ɵɵFactoryDef<_CoalescedStyleScheduler, never>;
5+
static ɵprov: i0.ɵɵInjectableDef<_CoalescedStyleScheduler>;
6+
}
7+
18
export declare class BaseCdkCell {
29
constructor(columnDef: CdkColumnDef, elementRef: ElementRef);
310
}
@@ -169,7 +176,7 @@ export declare class CdkRowDef<T> extends BaseRowDef {
169176

170177
export declare class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDestroy, OnInit {
171178
protected readonly _changeDetectorRef: ChangeDetectorRef;
172-
protected readonly _coalescedStyleScheduler: CoalescedStyleScheduler;
179+
protected readonly _coalescedStyleScheduler: _CoalescedStyleScheduler;
173180
_contentColumnDefs: QueryList<CdkColumnDef>;
174181
_contentFooterRowDefs: QueryList<CdkFooterRowDef>;
175182
_contentHeaderRowDefs: QueryList<CdkHeaderRowDef>;
@@ -195,7 +202,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
195202
start: number;
196203
end: number;
197204
}>;
198-
constructor(_differs: IterableDiffers, _changeDetectorRef: ChangeDetectorRef, _coalescedStyleScheduler: CoalescedStyleScheduler, _elementRef: ElementRef, role: string, _dir: Directionality, _document: any, _platform: Platform);
205+
constructor(_differs: IterableDiffers, _changeDetectorRef: ChangeDetectorRef, _coalescedStyleScheduler: _CoalescedStyleScheduler, _elementRef: ElementRef, role: string, _dir: Directionality, _document: any, _platform: Platform);
199206
_getRenderedRows(rowOutlet: RowOutlet): HTMLElement[];
200207
_getRowDefs(data: T, dataIndex: number): CdkRowDef<T>[];
201208
addColumnDef(columnDef: CdkColumnDef): void;
@@ -245,13 +252,6 @@ export interface CellDef {
245252
template: TemplateRef<any>;
246253
}
247254

248-
export declare class CoalescedStyleScheduler {
249-
constructor(_ngZone: NgZone);
250-
schedule(task: () => unknown): void;
251-
static ɵfac: i0.ɵɵFactoryDef<CoalescedStyleScheduler, never>;
252-
static ɵprov: i0.ɵɵInjectableDef<CoalescedStyleScheduler>;
253-
}
254-
255255
export declare type Constructor<T> = new (...args: any[]) => T;
256256

257257
export declare class DataRowOutlet implements RowOutlet {
@@ -307,7 +307,7 @@ export declare type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
307307

308308
export declare class StickyStyler {
309309
direction: Direction;
310-
constructor(_isNativeHtmlTable: boolean, _stickCellCss: string, direction: Direction, _coalescedStyleScheduler: CoalescedStyleScheduler, _isBrowser?: boolean);
310+
constructor(_isNativeHtmlTable: boolean, _stickCellCss: string, direction: Direction, _coalescedStyleScheduler: _CoalescedStyleScheduler, _isBrowser?: boolean);
311311
_addStickyStyle(element: HTMLElement, dir: StickyDirection, dirValue: number): void;
312312
_getCalculatedZIndex(element: HTMLElement): string;
313313
_getCellWidths(row: HTMLElement): number[];

0 commit comments

Comments
 (0)