@vuetify/nightly 3.8.0-beta.0-dev.2025-03-29 → 3.8.0-dev.2025-04-01

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 (46) hide show
  1. package/CHANGELOG.md +3 -103
  2. package/dist/json/attributes.json +1548 -1548
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +182 -182
  5. package/dist/json/web-types.json +2774 -2774
  6. package/dist/vuetify-labs.cjs +20 -26
  7. package/dist/vuetify-labs.css +4001 -3997
  8. package/dist/vuetify-labs.d.ts +62 -62
  9. package/dist/vuetify-labs.esm.js +20 -26
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +20 -26
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +15 -17
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3630 -3626
  16. package/dist/vuetify.d.ts +62 -62
  17. package/dist/vuetify.esm.js +15 -17
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +15 -17
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +7 -8
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.js +5 -10
  25. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  26. package/lib/components/VColorPicker/VColorPickerPreview.js +4 -3
  27. package/lib/components/VColorPicker/VColorPickerPreview.js.map +1 -1
  28. package/lib/components/VEmptyState/VEmptyState.js +3 -1
  29. package/lib/components/VEmptyState/VEmptyState.js.map +1 -1
  30. package/lib/components/VInput/VInput.css +11 -11
  31. package/lib/components/VInput/VInput.sass +1 -1
  32. package/lib/entry-bundler.js +1 -1
  33. package/lib/entry-bundler.js.map +1 -1
  34. package/lib/framework.d.ts +62 -62
  35. package/lib/framework.js +1 -1
  36. package/lib/framework.js.map +1 -1
  37. package/lib/labs/VDateInput/VDateInput.js +3 -8
  38. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  39. package/lib/labs/VFileUpload/VFileUpload.js +2 -1
  40. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  41. package/lib/styles/main.css +4 -0
  42. package/lib/styles/settings/_utilities.scss +5 -0
  43. package/lib/util/helpers.d.ts +1 -2
  44. package/lib/util/helpers.js +1 -11
  45. package/lib/util/helpers.js.map +1 -1
  46. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.0-beta.0-dev.2025-03-29
2
+ * Vuetify v3.8.0-dev.2025-04-01
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -13671,12 +13671,7 @@
13671
13671
  } else {
13672
13672
  if (!props.multiple && search.value == null) model.value = [];
13673
13673
  menu.value = false;
13674
- if (!model.value.some(_ref3 => {
13675
- let {
13676
- title
13677
- } = _ref3;
13678
- return title === search.value;
13679
- })) search.value = '';
13674
+ if (props.multiple || hasSelectionSlot.value) search.value = '';
13680
13675
  selectionIndex.value = -1;
13681
13676
  }
13682
13677
  });
@@ -13764,12 +13759,12 @@
13764
13759
  "items": displayItems.value,
13765
13760
  "itemKey": "value"
13766
13761
  }, {
13767
- default: _ref4 => {
13762
+ default: _ref3 => {
13768
13763
  let {
13769
13764
  item,
13770
13765
  index,
13771
13766
  itemRef
13772
- } = _ref4;
13767
+ } = _ref3;
13773
13768
  const itemProps = vue.mergeProps(item.props, {
13774
13769
  ref: itemRef,
13775
13770
  key: item.value,
@@ -13783,10 +13778,10 @@
13783
13778
  }) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
13784
13779
  "role": "option"
13785
13780
  }), {
13786
- prepend: _ref5 => {
13781
+ prepend: _ref4 => {
13787
13782
  let {
13788
13783
  isSelected
13789
- } = _ref5;
13784
+ } = _ref4;
13790
13785
  return vue.createVNode(vue.Fragment, null, [props.multiple && !props.hideSelected ? vue.createVNode(VCheckboxBtn, {
13791
13786
  "key": item.value,
13792
13787
  "modelValue": isSelected,
@@ -16655,7 +16650,7 @@
16655
16650
  const abortController = new AbortController();
16656
16651
  vue.onUnmounted(() => abortController.abort());
16657
16652
  async function openEyeDropper() {
16658
- if (!SUPPORTS_EYE_DROPPER) return;
16653
+ if (!SUPPORTS_EYE_DROPPER || props.disabled) return;
16659
16654
  const eyeDropper = new window.EyeDropper();
16660
16655
  try {
16661
16656
  const result = await eyeDropper.open({
@@ -16677,10 +16672,11 @@
16677
16672
  "class": "v-color-picker-preview__eye-dropper",
16678
16673
  "key": "eyeDropper"
16679
16674
  }, [vue.createVNode(VBtn, {
16680
- "onClick": openEyeDropper,
16675
+ "density": "comfortable",
16676
+ "disabled": props.disabled,
16681
16677
  "icon": "$eyeDropper",
16682
16678
  "variant": "plain",
16683
- "density": "comfortable"
16679
+ "onClick": openEyeDropper
16684
16680
  }, null)]), vue.createVNode("div", {
16685
16681
  "class": "v-color-picker-preview__dot"
16686
16682
  }, [vue.createVNode("div", {
@@ -23065,7 +23061,9 @@
23065
23061
  VBtn: {
23066
23062
  class: 'v-empty-state__action-btn',
23067
23063
  color: props.color ?? 'surface-variant',
23068
- text: props.actionText
23064
+ href: props.href,
23065
+ text: props.actionText,
23066
+ to: props.to
23069
23067
  }
23070
23068
  }
23071
23069
  }, {
@@ -29212,7 +29210,7 @@
29212
29210
  };
29213
29211
  });
29214
29212
  }
29215
- const version$1 = "3.8.0-beta.0-dev.2025-03-29";
29213
+ const version$1 = "3.8.0-dev.2025-04-01";
29216
29214
  createVuetify$1.version = version$1;
29217
29215
 
29218
29216
  // Vue's inject() can only be used in setup
@@ -29237,7 +29235,7 @@
29237
29235
  ...options
29238
29236
  });
29239
29237
  };
29240
- const version = "3.8.0-beta.0-dev.2025-03-29";
29238
+ const version = "3.8.0-dev.2025-04-01";
29241
29239
  createVuetify.version = version;
29242
29240
 
29243
29241
  exports.blueprints = index;