File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export type PortalHost = PortalOutlet;
186
186
// In Angular 9.x, `@Directive()` without any selector is legal (and `BasePortalModule` is not
187
187
// necessary either).
188
188
// TODO(alxhub): convert to a selectorless Directive when the CDK upgrades to Angular 9.
189
- selector : 'abstract-base-portal-outlet' ,
189
+ selector : 'do-not-use- abstract-base-portal-outlet' ,
190
190
} )
191
191
export abstract class BasePortalOutlet implements PortalOutlet {
192
192
/** The portal currently attached to the host. */
@@ -273,7 +273,7 @@ export abstract class BasePortalOutlet implements PortalOutlet {
273
273
@NgModule ( {
274
274
declarations : [ BasePortalOutlet as any ] ,
275
275
} )
276
- export class BasePortalOutletModule {
276
+ export class DoNotUseBasePortalOutletModule {
277
277
}
278
278
279
279
/**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {NgControl} from '@angular/forms';
17
17
// In Angular 9.x, `@Directive()` without any selector is legal (and `MatFormFieldControlModule`
18
18
// is not necessary either).
19
19
// TODO(alxhub): convert to a selectorless Directive when Material upgrades to Angular 9.
20
- selector : 'abstract-mat-form-field-control' ,
20
+ selector : 'do-not-use- abstract-mat-form-field-control' ,
21
21
} )
22
22
export abstract class MatFormFieldControl < T > {
23
23
/** The value of the control. */
@@ -80,5 +80,5 @@ export abstract class MatFormFieldControl<T> {
80
80
@NgModule ( {
81
81
declarations : [ MatFormFieldControl as any ] ,
82
82
} )
83
- export class MatFormFieldControlModule {
83
+ export class DoNotUseMatFormFieldControlModule {
84
84
}
You can’t perform that action at this time.
0 commit comments