@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 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.isMobile;
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.15";
128596
+ var version = "1.12.16";
128587
128597
 
128588
128598
  function useExposeProxy(targetRef) {
128589
128599
  return new Proxy({}, {