Skip to content

Commit 59aac93

Browse files
committed
fixup! fix(material/dialog): css structure change
1 parent 2849836 commit 59aac93

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/material/dialog/dialog.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,19 @@
77
*/
88

99
import {ComponentType, Overlay, OverlayContainer, ScrollStrategy} from '@angular/cdk/overlay';
10-
import {DOCUMENT, Location} from '@angular/common';
10+
import {Location} from '@angular/common';
1111
import {
1212
ANIMATION_MODULE_TYPE,
1313
ComponentRef,
1414
Inject,
1515
Injectable,
1616
InjectionToken,
1717
Injector,
18-
NgZone,
1918
OnDestroy,
2019
Optional,
2120
SkipSelf,
2221
TemplateRef,
2322
Type,
24-
inject,
2523
} from '@angular/core';
2624
import {MatDialogConfig} from './dialog-config';
2725
import {_MatDialogContainerBase, MatDialogContainer} from './dialog-container';
@@ -78,8 +76,6 @@ export abstract class _MatDialogBase<C extends _MatDialogContainerBase> implemen
7876
protected _idPrefix = 'mat-dialog-';
7977
private _dialog: Dialog;
8078
protected dialogConfigClass = MatDialogConfig;
81-
protected _ngZone = inject(NgZone);
82-
private _document = inject(DOCUMENT, {optional: true});
8379

8480
/** Keeps track of the currently-open dialogs. */
8581
get openDialogs(): MatDialogRef<any>[] {

0 commit comments

Comments
 (0)