@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.
Files changed (40) hide show
  1. package/CHANGELOG.md +9 -62
  2. package/dist/json/attributes.json +3905 -3905
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +134 -134
  5. package/dist/json/web-types.json +7077 -7077
  6. package/dist/vuetify-labs.cjs +47 -24
  7. package/dist/vuetify-labs.css +3395 -3387
  8. package/dist/vuetify-labs.d.ts +48 -47
  9. package/dist/vuetify-labs.esm.js +47 -24
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +47 -24
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +15 -9
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +2289 -2281
  16. package/dist/vuetify.d.ts +48 -47
  17. package/dist/vuetify.esm.js +15 -9
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +15 -9
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +13 -12
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VCombobox/VCombobox.js +10 -6
  25. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  26. package/lib/components/VWindow/VWindow.css +8 -0
  27. package/lib/components/VWindow/VWindow.sass +9 -0
  28. package/lib/composables/theme.d.ts +1 -0
  29. package/lib/composables/theme.js +3 -1
  30. package/lib/composables/theme.js.map +1 -1
  31. package/lib/entry-bundler.js +1 -1
  32. package/lib/framework.d.ts +48 -47
  33. package/lib/framework.js +1 -1
  34. package/lib/labs/VVideo/VVideo.css +1 -1
  35. package/lib/labs/VVideo/VVideo.js +2 -2
  36. package/lib/labs/VVideo/VVideo.js.map +1 -1
  37. package/lib/labs/VVideo/VVideo.sass +2 -0
  38. package/lib/labs/VVideo/VVideoControls.js +32 -15
  39. package/lib/labs/VVideo/VVideoControls.js.map +1 -1
  40. package/package.json +1 -1
package/dist/vuetify.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-29
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 values = val.split(new RegExp(`(?:${props.delimiters.join('|')})+`));
19053
+ const signsToMatch = props.delimiters.map(escapeForRegex).join('|');
19054
+ const values = val.split(new RegExp(`(?:${signsToMatch})+`));
19052
19055
  if (values.length > 1) {
19053
- values.forEach(v => {
19056
+ for (let v of values) {
19054
19057
  v = v.trim();
19055
- if (v) select(transformItem$3(props, 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.2-master.2025-07-29";
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.2-master.2025-07-29";
31503
+ const version = "3.9.3-master.2025-07-30";
31498
31504
  createVuetify.version = version;
31499
31505
 
31500
31506
  exports.blueprints = index;