@alauda/ui 9.1.2-beta.10 → 9.1.2-beta.11
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/alauda-ui.mjs
CHANGED
|
@@ -1767,6 +1767,7 @@ class BaseTooltip {
|
|
|
1767
1767
|
const config = new OverlayConfig({
|
|
1768
1768
|
positionStrategy,
|
|
1769
1769
|
scrollStrategy,
|
|
1770
|
+
usePopover: false,
|
|
1770
1771
|
});
|
|
1771
1772
|
return this.overlay.create(config);
|
|
1772
1773
|
}
|
|
@@ -6552,6 +6553,7 @@ class DialogService {
|
|
|
6552
6553
|
: DialogService.DIALOG_OVERLAY_PANE_CLASS,
|
|
6553
6554
|
width: '100vw',
|
|
6554
6555
|
height: '100vh',
|
|
6556
|
+
usePopover: false,
|
|
6555
6557
|
};
|
|
6556
6558
|
}
|
|
6557
6559
|
attachDialog(overlayRef, config) {
|
|
@@ -7033,6 +7035,7 @@ class DrawerService {
|
|
|
7033
7035
|
scrollStrategy: this.options.mask
|
|
7034
7036
|
? this.overlay.scrollStrategies.block()
|
|
7035
7037
|
: this.overlay.scrollStrategies.noop(),
|
|
7038
|
+
usePopover: false,
|
|
7036
7039
|
});
|
|
7037
7040
|
}
|
|
7038
7041
|
dispose() {
|
|
@@ -7816,6 +7819,7 @@ class BaseMessage {
|
|
|
7816
7819
|
this.wrapperInstance = this.overlay
|
|
7817
7820
|
.create({
|
|
7818
7821
|
panelClass: this.overlayPaneClassName,
|
|
7822
|
+
usePopover: false,
|
|
7819
7823
|
})
|
|
7820
7824
|
.attach(new ComponentPortal(this.wrapperClass)).instance;
|
|
7821
7825
|
}
|