File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
tools/public_api_guard/material Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export class MatDialog implements OnDestroy {
8282 private readonly _openDialogsAtThisLevel : MatDialogRef < any > [ ] = [ ] ;
8383 private readonly _afterAllClosedAtThisLevel = new Subject < void > ( ) ;
8484 private readonly _afterOpenedAtThisLevel = new Subject < MatDialogRef < any > > ( ) ;
85- private _dialog : Dialog ;
85+ protected _dialog : Dialog ;
8686 protected dialogConfigClass = MatDialogConfig ;
8787
8888 private readonly _dialogRefConstructor : Type < MatDialogRef < any > > ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { ComponentFactoryResolver } from '@angular/core';
1010import { ComponentPortal } from ' @angular/cdk/portal' ;
1111import { ComponentRef } from ' @angular/core' ;
1212import { ComponentType } from ' @angular/cdk/overlay' ;
13+ import { Dialog } from ' @angular/cdk/dialog' ;
1314import { DialogRef } from ' @angular/cdk/dialog' ;
1415import { Direction } from ' @angular/cdk/bidi' ;
1516import { ElementRef } from ' @angular/core' ;
@@ -94,6 +95,8 @@ export class MatDialog implements OnDestroy {
9495 get afterOpened(): Subject <MatDialogRef <any >>;
9596 closeAll(): void ;
9697 // (undocumented)
98+ protected _dialog: Dialog ;
99+ // (undocumented)
97100 protected dialogConfigClass: typeof MatDialogConfig ;
98101 getDialogById(id : string ): MatDialogRef <any > | undefined ;
99102 // (undocumented)
You can’t perform that action at this time.
0 commit comments