@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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -435,7 +435,7 @@
435
435
  }
436
436
  function focusChild(el, location) {
437
437
  const focusable = focusableChildren(el);
438
- if (!location) {
438
+ if (location == null) {
439
439
  if (el === document.activeElement || !el.contains(document.activeElement)) {
440
440
  focusable[0]?.focus();
441
441
  }
@@ -13093,11 +13093,13 @@
13093
13093
  keyboardLookupLastTime = now;
13094
13094
  const item = items.value.find(item => item.title.toLowerCase().startsWith(keyboardLookupPrefix));
13095
13095
  if (item !== undefined) {
13096
- model.value = [item];
13096
+ if (!props.multiple) {
13097
+ model.value = [item];
13098
+ }
13097
13099
  const index = displayItems.value.indexOf(item);
13098
- IN_BROWSER && window.requestAnimationFrame(() => {
13099
- index >= 0 && vVirtualScrollRef.value?.scrollToIndex(index);
13100
- });
13100
+ if (~index && IN_BROWSER) {
13101
+ listRef.value?.focus(index);
13102
+ }
13101
13103
  }
13102
13104
  }
13103
13105
 
@@ -29220,7 +29222,7 @@
29220
29222
  };
29221
29223
  });
29222
29224
  }
29223
- const version$1 = "3.8.5-master.2025-05-15";
29225
+ const version$1 = "3.8.5-master.2025-05-16";
29224
29226
  createVuetify$1.version = version$1;
29225
29227
 
29226
29228
  // Vue's inject() can only be used in setup
@@ -29245,7 +29247,7 @@
29245
29247
  ...options
29246
29248
  });
29247
29249
  };
29248
- const version = "3.8.5-master.2025-05-15";
29250
+ const version = "3.8.5-master.2025-05-16";
29249
29251
  createVuetify.version = version;
29250
29252
 
29251
29253
  exports.blueprints = index;