@vuetify/nightly 3.8.5-master.2025-05-15 → 3.8.5-master.2025-05-17
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 +11 -3
- package/dist/json/attributes.json +3277 -3277
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +138 -138
- package/dist/json/web-types.json +6349 -6349
- package/dist/vuetify-labs.cjs +10 -8
- package/dist/vuetify-labs.css +3275 -3275
- package/dist/vuetify-labs.d.ts +51 -51
- 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 +5192 -5192
- package/dist/vuetify.d.ts +51 -51
- 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 +48 -48
- 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-labs.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.5-master.2025-05-
|
2
|
+
* Vuetify v3.8.5-master.2025-05-17
|
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 (
|
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
|
-
|
12818
|
+
if (!props.multiple) {
|
12819
|
+
model.value = [item];
|
12820
|
+
}
|
12819
12821
|
const index = displayItems.value.indexOf(item);
|
12820
|
-
|
12821
|
-
|
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-
|
31920
|
+
const version$1 = "3.8.5-master.2025-05-17";
|
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-
|
32218
|
+
const version = "3.8.5-master.2025-05-17";
|
32217
32219
|
|
32218
32220
|
/* eslint-disable local-rules/sort-imports */
|
32219
32221
|
|