@vuetify/nightly 3.7.3-master.2024-11-01 → 3.7.3-master.2024-11-04

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/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.3-master.2024-11-01
2
+ * Vuetify v3.7.3-master.2024-11-04
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -11446,7 +11446,10 @@
11446
11446
  }, 40);
11447
11447
  }
11448
11448
  });
11449
- vue.onBeforeUnmount(() => parent?.unregister());
11449
+ vue.onBeforeUnmount(() => {
11450
+ parent?.unregister();
11451
+ document.removeEventListener('focusin', onFocusIn);
11452
+ });
11450
11453
  vue.onDeactivated(() => isActive.value = false);
11451
11454
  async function onFocusIn(e) {
11452
11455
  const before = e.relatedTarget;
@@ -11466,13 +11469,19 @@
11466
11469
  vue.watch(isActive, val => {
11467
11470
  if (val) {
11468
11471
  parent?.register();
11469
- document.addEventListener('focusin', onFocusIn, {
11470
- once: true
11471
- });
11472
+ if (IN_BROWSER) {
11473
+ document.addEventListener('focusin', onFocusIn, {
11474
+ once: true
11475
+ });
11476
+ }
11472
11477
  } else {
11473
11478
  parent?.unregister();
11474
- document.removeEventListener('focusin', onFocusIn);
11479
+ if (IN_BROWSER) {
11480
+ document.removeEventListener('focusin', onFocusIn);
11481
+ }
11475
11482
  }
11483
+ }, {
11484
+ immediate: true
11476
11485
  });
11477
11486
  function onClickOutside(e) {
11478
11487
  parent?.closeParents(e);
@@ -13988,6 +13997,9 @@
13988
13997
  }
13989
13998
  }
13990
13999
  }
14000
+ vue.onBeforeUnmount(() => {
14001
+ document.removeEventListener('focusin', onFocusin);
14002
+ });
13991
14003
  if (IN_BROWSER) {
13992
14004
  vue.watch(() => isActive.value && props.retainFocus, val => {
13993
14005
  val ? document.addEventListener('focusin', onFocusin) : document.removeEventListener('focusin', onFocusin);
@@ -28242,7 +28254,7 @@
28242
28254
  goTo
28243
28255
  };
28244
28256
  }
28245
- const version$1 = "3.7.3-master.2024-11-01";
28257
+ const version$1 = "3.7.3-master.2024-11-04";
28246
28258
  createVuetify$1.version = version$1;
28247
28259
 
28248
28260
  // Vue's inject() can only be used in setup
@@ -28267,7 +28279,7 @@
28267
28279
  ...options
28268
28280
  });
28269
28281
  };
28270
- const version = "3.7.3-master.2024-11-01";
28282
+ const version = "3.7.3-master.2024-11-04";
28271
28283
  createVuetify.version = version;
28272
28284
 
28273
28285
  exports.blueprints = index;