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 {
82
82
private readonly _openDialogsAtThisLevel : MatDialogRef < any > [ ] = [ ] ;
83
83
private readonly _afterAllClosedAtThisLevel = new Subject < void > ( ) ;
84
84
private readonly _afterOpenedAtThisLevel = new Subject < MatDialogRef < any > > ( ) ;
85
- private _dialog : Dialog ;
85
+ protected _dialog : Dialog ;
86
86
protected dialogConfigClass = MatDialogConfig ;
87
87
88
88
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';
10
10
import { ComponentPortal } from ' @angular/cdk/portal' ;
11
11
import { ComponentRef } from ' @angular/core' ;
12
12
import { ComponentType } from ' @angular/cdk/overlay' ;
13
+ import { Dialog } from ' @angular/cdk/dialog' ;
13
14
import { DialogRef } from ' @angular/cdk/dialog' ;
14
15
import { Direction } from ' @angular/cdk/bidi' ;
15
16
import { ElementRef } from ' @angular/core' ;
@@ -94,6 +95,8 @@ export class MatDialog implements OnDestroy {
94
95
get afterOpened(): Subject <MatDialogRef <any >>;
95
96
closeAll(): void ;
96
97
// (undocumented)
98
+ protected _dialog: Dialog ;
99
+ // (undocumented)
97
100
protected dialogConfigClass: typeof MatDialogConfig ;
98
101
getDialogById(id : string ): MatDialogRef <any > | undefined ;
99
102
// (undocumented)
You can’t perform that action at this time.
0 commit comments