codexly-ui 0.0.72 → 0.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -14006,10 +14006,12 @@ class ClxToastService {
|
|
|
14006
14006
|
return existing;
|
|
14007
14007
|
const overlayRef = this._overlay.create(new OverlayConfig({
|
|
14008
14008
|
hasBackdrop: false,
|
|
14009
|
-
panelClass: 'clx-toast-overlay',
|
|
14010
14009
|
scrollStrategy: this._overlay.scrollStrategies.noop(),
|
|
14011
14010
|
positionStrategy: this._overlay.position().global(),
|
|
14012
14011
|
}));
|
|
14012
|
+
// Force pane above any modal overlay
|
|
14013
|
+
overlayRef.overlayElement.style.zIndex = '99999';
|
|
14014
|
+
overlayRef.hostElement.style.zIndex = '99999';
|
|
14013
14015
|
const portal = new ComponentPortal(ClxToastContainerComponent, null, Injector.create({ parent: this._injector, providers: [] }));
|
|
14014
14016
|
const compRef = overlayRef.attach(portal);
|
|
14015
14017
|
compRef.setInput('position', position);
|