@uzum-tech/ui 1.12.15 → 1.12.16
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/dist/index.js +12 -2
- package/dist/index.prod.js +2 -2
- package/es/config-provider/src/internal-interface.d.ts +2 -0
- package/es/header/src/Header.d.ts +1 -1
- package/es/header/src/Header.js +1 -1
- package/es/header/src/mobile/HeaderMobile.d.ts +1 -1
- package/es/modal/src/Modal.js +15 -1
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/config-provider/src/internal-interface.d.ts +2 -0
- package/lib/header/src/Header.d.ts +1 -1
- package/lib/header/src/Header.js +1 -1
- package/lib/header/src/mobile/HeaderMobile.d.ts +1 -1
- package/lib/modal/src/Modal.js +14 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/index.js
CHANGED
|
@@ -97588,11 +97588,21 @@
|
|
|
97588
97588
|
function handleBeforeLeave() {
|
|
97589
97589
|
const { onBeforeLeave, onBeforeHide } = props;
|
|
97590
97590
|
if (onBeforeLeave) call(onBeforeLeave);
|
|
97591
|
+
void vue.nextTick(() => {
|
|
97592
|
+
if (document.activeElement && document.activeElement !== document.body) {
|
|
97593
|
+
document.activeElement.blur();
|
|
97594
|
+
}
|
|
97595
|
+
});
|
|
97591
97596
|
if (onBeforeHide) onBeforeHide();
|
|
97592
97597
|
}
|
|
97593
97598
|
function handleAfterLeave() {
|
|
97594
97599
|
const { onAfterLeave, onAfterHide } = props;
|
|
97595
97600
|
if (onAfterLeave) call(onAfterLeave);
|
|
97601
|
+
void vue.nextTick(() => {
|
|
97602
|
+
if (document.activeElement && document.activeElement !== document.body) {
|
|
97603
|
+
document.activeElement.blur();
|
|
97604
|
+
}
|
|
97605
|
+
});
|
|
97596
97606
|
if (onAfterHide) onAfterHide();
|
|
97597
97607
|
}
|
|
97598
97608
|
function handleClickoutside(e) {
|
|
@@ -126568,7 +126578,7 @@
|
|
|
126568
126578
|
props,
|
|
126569
126579
|
mergedClsPrefixRef
|
|
126570
126580
|
);
|
|
126571
|
-
const isMobileRef = props
|
|
126581
|
+
const isMobileRef = vue.toRef(props, "isMobile");
|
|
126572
126582
|
const mobileMenuVisibleRef = vue.ref(false);
|
|
126573
126583
|
const searchVisibleRef = vue.ref(false);
|
|
126574
126584
|
vue.onBeforeMount(() => {
|
|
@@ -128583,7 +128593,7 @@
|
|
|
128583
128593
|
watermarkProps: watermarkProps
|
|
128584
128594
|
});
|
|
128585
128595
|
|
|
128586
|
-
var version = "1.12.
|
|
128596
|
+
var version = "1.12.16";
|
|
128587
128597
|
|
|
128588
128598
|
function useExposeProxy(targetRef) {
|
|
128589
128599
|
return new Proxy({}, {
|