@vuetify/nightly 3.9.2-master.2025-07-29 → 3.9.3-master.2025-07-30
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 +9 -62
- package/dist/json/attributes.json +3905 -3905
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +134 -134
- package/dist/json/web-types.json +7077 -7077
- package/dist/vuetify-labs.cjs +47 -24
- package/dist/vuetify-labs.css +3395 -3387
- package/dist/vuetify-labs.d.ts +48 -47
- package/dist/vuetify-labs.esm.js +47 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +15 -9
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2289 -2281
- package/dist/vuetify.d.ts +48 -47
- package/dist/vuetify.esm.js +15 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +13 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +10 -6
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VWindow/VWindow.css +8 -0
- package/lib/components/VWindow/VWindow.sass +9 -0
- package/lib/composables/theme.d.ts +1 -0
- package/lib/composables/theme.js +3 -1
- package/lib/composables/theme.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +48 -47
- package/lib/framework.js +1 -1
- package/lib/labs/VVideo/VVideo.css +1 -1
- package/lib/labs/VVideo/VVideo.js +2 -2
- package/lib/labs/VVideo/VVideo.js.map +1 -1
- package/lib/labs/VVideo/VVideo.sass +2 -0
- package/lib/labs/VVideo/VVideoControls.js +32 -15
- package/lib/labs/VVideo/VVideoControls.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.
|
2
|
+
* Vuetify v3.9.3-master.2025-07-30
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3163,6 +3163,7 @@
|
|
3163
3163
|
return acc;
|
3164
3164
|
});
|
3165
3165
|
const current = vue.toRef(() => computedThemes.value[name.value]);
|
3166
|
+
const isSystem = vue.toRef(() => _name.value === 'system');
|
3166
3167
|
const styles = vue.computed(() => {
|
3167
3168
|
const lines = [];
|
3168
3169
|
const important = parsedOptions.unimportant ? '' : ' !important';
|
@@ -3250,7 +3251,7 @@
|
|
3250
3251
|
}
|
3251
3252
|
}
|
3252
3253
|
function change(themeName) {
|
3253
|
-
if (!themeNames.value.includes(themeName)) {
|
3254
|
+
if (themeName !== 'system' && !themeNames.value.includes(themeName)) {
|
3254
3255
|
consoleWarn(`Theme "${themeName}" not found on the Vuetify theme instance`);
|
3255
3256
|
return;
|
3256
3257
|
}
|
@@ -3283,6 +3284,7 @@
|
|
3283
3284
|
cycle,
|
3284
3285
|
toggle,
|
3285
3286
|
isDisabled: parsedOptions.isDisabled,
|
3287
|
+
isSystem,
|
3286
3288
|
name,
|
3287
3289
|
themes,
|
3288
3290
|
current,
|
@@ -19041,19 +19043,23 @@
|
|
19041
19043
|
get: () => {
|
19042
19044
|
return _search.value;
|
19043
19045
|
},
|
19044
|
-
set: val => {
|
19046
|
+
set: async val => {
|
19045
19047
|
_search.value = val ?? '';
|
19046
19048
|
if (!props.multiple && !hasSelectionSlot.value) {
|
19047
19049
|
model.value = [transformItem$3(props, val)];
|
19048
19050
|
vue.nextTick(() => vVirtualScrollRef.value?.scrollToIndex(0));
|
19049
19051
|
}
|
19050
19052
|
if (val && props.multiple && props.delimiters?.length) {
|
19051
|
-
const
|
19053
|
+
const signsToMatch = props.delimiters.map(escapeForRegex).join('|');
|
19054
|
+
const values = val.split(new RegExp(`(?:${signsToMatch})+`));
|
19052
19055
|
if (values.length > 1) {
|
19053
|
-
|
19056
|
+
for (let v of values) {
|
19054
19057
|
v = v.trim();
|
19055
|
-
if (v)
|
19056
|
-
|
19058
|
+
if (v) {
|
19059
|
+
select(transformItem$3(props, v));
|
19060
|
+
await vue.nextTick();
|
19061
|
+
}
|
19062
|
+
}
|
19057
19063
|
_search.value = '';
|
19058
19064
|
}
|
19059
19065
|
}
|
@@ -31469,7 +31475,7 @@
|
|
31469
31475
|
};
|
31470
31476
|
});
|
31471
31477
|
}
|
31472
|
-
const version$1 = "3.9.
|
31478
|
+
const version$1 = "3.9.3-master.2025-07-30";
|
31473
31479
|
createVuetify$1.version = version$1;
|
31474
31480
|
|
31475
31481
|
// Vue's inject() can only be used in setup
|
@@ -31494,7 +31500,7 @@
|
|
31494
31500
|
...options
|
31495
31501
|
});
|
31496
31502
|
};
|
31497
|
-
const version = "3.9.
|
31503
|
+
const version = "3.9.3-master.2025-07-30";
|
31498
31504
|
createVuetify.version = version;
|
31499
31505
|
|
31500
31506
|
exports.blueprints = index;
|