@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/CHANGELOG.md +10 -3
- package/dist/json/attributes.json +2838 -2838
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +168 -168
- package/dist/json/web-types.json +5375 -5375
- package/dist/vuetify-labs.cjs +10 -8
- package/dist/vuetify-labs.css +4110 -4110
- package/dist/vuetify-labs.d.ts +59 -59
- package/dist/vuetify-labs.esm.js +10 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4331 -4331
- package/dist/vuetify.d.ts +59 -59
- package/dist/vuetify.esm.js +10 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +14 -13
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VList.d.ts +3 -3
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +6 -4
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +56 -56
- package/lib/framework.js +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.5-master.2025-05-
|
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 (
|
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
|
-
|
13096
|
+
if (!props.multiple) {
|
13097
|
+
model.value = [item];
|
13098
|
+
}
|
13097
13099
|
const index = displayItems.value.indexOf(item);
|
13098
|
-
|
13099
|
-
|
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-
|
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-
|
29250
|
+
const version = "3.8.5-master.2025-05-16";
|
29249
29251
|
createVuetify.version = version;
|
29250
29252
|
|
29251
29253
|
exports.blueprints = index;
|