Skip to content

Commit 4a8ce35

Browse files
committed
Added _
1 parent 263140a commit 4a8ce35

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

src/cdk/table/coalesced-style-scheduler.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import {from, Observable} from 'rxjs';
1717
* @docs-private
1818
*/
1919
@Injectable()
20-
export class CoalescedStyleScheduler {
20+
// tslint:disable-next-line:class-name
21+
export class _CoalescedStyleScheduler {
2122
private _currentSchedule: Observable<void>|null = null;
2223

2324
constructor(private readonly _ngZone: NgZone) {}

src/cdk/table/sticky-styler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @docs-private
1212
*/
1313
import {Direction} from '@angular/cdk/bidi';
14-
import {CoalescedStyleScheduler} from './coalesced-style-scheduler';
14+
import {_CoalescedStyleScheduler} from './coalesced-style-scheduler';
1515

1616
export type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
1717

@@ -38,7 +38,7 @@ export class StickyStyler {
3838
constructor(private _isNativeHtmlTable: boolean,
3939
private _stickCellCss: string,
4040
public direction: Direction,
41-
private _coalescedStyleScheduler: CoalescedStyleScheduler,
41+
private _coalescedStyleScheduler: _CoalescedStyleScheduler,
4242
private _isBrowser = true) { }
4343

4444
/**

src/cdk/table/table.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import {
4848
} from 'rxjs';
4949
import {takeUntil} from 'rxjs/operators';
5050
import {CdkColumnDef} from './cell';
51-
import {CoalescedStyleScheduler} from './coalesced-style-scheduler';
51+
import {_CoalescedStyleScheduler} from './coalesced-style-scheduler';
5252
import {
5353
BaseRowDef,
5454
CdkCellOutlet,
@@ -189,7 +189,7 @@ export interface RenderRow<T> {
189189
changeDetection: ChangeDetectionStrategy.Default,
190190
providers: [
191191
{provide: CDK_TABLE, useExisting: CdkTable},
192-
CoalescedStyleScheduler,
192+
_CoalescedStyleScheduler,
193193
]
194194
})
195195
export class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDestroy, OnInit {
@@ -427,7 +427,7 @@ export class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDes
427427
constructor(
428428
protected readonly _differs: IterableDiffers,
429429
protected readonly _changeDetectorRef: ChangeDetectorRef,
430-
protected readonly _coalescedStyleScheduler: CoalescedStyleScheduler,
430+
protected readonly _coalescedStyleScheduler: _CoalescedStyleScheduler,
431431
protected readonly _elementRef: ElementRef, @Attribute('role') role: string,
432432
@Optional() protected readonly _dir: Directionality, @Inject(DOCUMENT) _document: any,
433433
private _platform: Platform) {

src/material-experimental/mdc-table/table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
import {ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation} from '@angular/core';
10-
import {CDK_TABLE_TEMPLATE, CdkTable, CoalescedStyleScheduler} from '@angular/cdk/table';
10+
import {CDK_TABLE_TEMPLATE, CdkTable, _CoalescedStyleScheduler} from '@angular/cdk/table';
1111

1212
@Component({
1313
selector: 'table[mat-table]',
@@ -19,7 +19,7 @@ import {CDK_TABLE_TEMPLATE, CdkTable, CoalescedStyleScheduler} from '@angular/cd
1919
},
2020
providers: [
2121
{provide: CdkTable, useExisting: MatTable},
22-
CoalescedStyleScheduler,
22+
_CoalescedStyleScheduler,
2323
],
2424
encapsulation: ViewEncapsulation.None,
2525
// See note on CdkTable for explanation on why this uses the default change detection strategy.

src/material/table/table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {CDK_TABLE_TEMPLATE, CdkTable, CDK_TABLE, CoalescedStyleScheduler} from '@angular/cdk/table';
9+
import {CDK_TABLE_TEMPLATE, CdkTable, CDK_TABLE, _CoalescedStyleScheduler} from '@angular/cdk/table';
1010
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';
1111

1212
/**
@@ -23,7 +23,7 @@ import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/co
2323
providers: [
2424
{provide: CdkTable, useExisting: MatTable},
2525
{provide: CDK_TABLE, useExisting: MatTable},
26-
CoalescedStyleScheduler,
26+
_CoalescedStyleScheduler,
2727
],
2828
encapsulation: ViewEncapsulation.None,
2929
// See note on CdkTable for explanation on why this uses the default change detection strategy.

0 commit comments

Comments
 (0)