@@ -11,7 +11,6 @@ import {DomPortalOutlet} from '@angular/cdk/portal';
11
11
import { DOCUMENT , Location } from '@angular/common' ;
12
12
import {
13
13
ApplicationRef ,
14
- ComponentFactoryResolver ,
15
14
Injectable ,
16
15
Injector ,
17
16
NgZone ,
@@ -31,9 +30,6 @@ import {ScrollStrategyOptions} from './scroll/index';
31
30
/** Next overlay unique ID. */
32
31
let nextUniqueId = 0 ;
33
32
34
- // Note that Overlay is *not* scoped to the app root because of the ComponentFactoryResolver
35
- // which needs to be different depending on where OverlayModule is imported.
36
-
37
33
/**
38
34
* Service to create Overlays. Overlays are dynamically added pieces of floating UI, meant to be
39
35
* used as a low-level building block for other components. Dialogs, tooltips, menus,
@@ -46,7 +42,6 @@ let nextUniqueId = 0;
46
42
export class Overlay {
47
43
scrollStrategies = inject ( ScrollStrategyOptions ) ;
48
44
private _overlayContainer = inject ( OverlayContainer ) ;
49
- private _componentFactoryResolver = inject ( ComponentFactoryResolver ) ;
50
45
private _positionBuilder = inject ( OverlayPositionBuilder ) ;
51
46
private _keyboardDispatcher = inject ( OverlayKeyboardDispatcher ) ;
52
47
private _injector = inject ( Injector ) ;
@@ -141,12 +136,6 @@ export class Overlay {
141
136
this . _appRef = this . _injector . get < ApplicationRef > ( ApplicationRef ) ;
142
137
}
143
138
144
- return new DomPortalOutlet (
145
- pane ,
146
- this . _componentFactoryResolver ,
147
- this . _appRef ,
148
- this . _injector ,
149
- this . _document ,
150
- ) ;
139
+ return new DomPortalOutlet ( pane , null , this . _appRef , this . _injector , this . _document ) ;
151
140
}
152
141
}
0 commit comments