@vuetify/nightly 3.8.5-master.2025-05-15 → 3.8.5-master.2025-05-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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.5-master.2025-05-15
2
+ * Vuetify v3.8.5-master.2025-05-16
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -512,7 +512,7 @@
512
512
  }
513
513
  function focusChild(el, location) {
514
514
  const focusable = focusableChildren(el);
515
- if (!location) {
515
+ if (location == null) {
516
516
  if (el === document.activeElement || !el.contains(document.activeElement)) {
517
517
  focusable[0]?.focus();
518
518
  }
@@ -12815,11 +12815,13 @@
12815
12815
  keyboardLookupLastTime = now;
12816
12816
  const item = items.value.find(item => item.title.toLowerCase().startsWith(keyboardLookupPrefix));
12817
12817
  if (item !== undefined) {
12818
- model.value = [item];
12818
+ if (!props.multiple) {
12819
+ model.value = [item];
12820
+ }
12819
12821
  const index = displayItems.value.indexOf(item);
12820
- IN_BROWSER && window.requestAnimationFrame(() => {
12821
- index >= 0 && vVirtualScrollRef.value?.scrollToIndex(index);
12822
- });
12822
+ if (~index && IN_BROWSER) {
12823
+ listRef.value?.focus(index);
12824
+ }
12823
12825
  }
12824
12826
  }
12825
12827
 
@@ -31915,7 +31917,7 @@
31915
31917
  };
31916
31918
  });
31917
31919
  }
31918
- const version$1 = "3.8.5-master.2025-05-15";
31920
+ const version$1 = "3.8.5-master.2025-05-16";
31919
31921
  createVuetify$1.version = version$1;
31920
31922
 
31921
31923
  // Vue's inject() can only be used in setup
@@ -32213,7 +32215,7 @@
32213
32215
 
32214
32216
  /* eslint-disable local-rules/sort-imports */
32215
32217
 
32216
- const version = "3.8.5-master.2025-05-15";
32218
+ const version = "3.8.5-master.2025-05-16";
32217
32219
 
32218
32220
  /* eslint-disable local-rules/sort-imports */
32219
32221