@vuetify/nightly 3.7.6-master.2024-12-26 → 3.7.6-master.2025-01-15

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 (44) hide show
  1. package/dist/json/attributes.json +3060 -3060
  2. package/dist/json/importMap-labs.json +12 -12
  3. package/dist/json/importMap.json +148 -148
  4. package/dist/json/web-types.json +5570 -5570
  5. package/dist/vuetify-labs.css +4292 -4291
  6. package/dist/vuetify-labs.esm.js +11 -10
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +11 -10
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +3970 -3969
  11. package/dist/vuetify.d.ts +50 -50
  12. package/dist/vuetify.esm.js +11 -10
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +11 -10
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +907 -907
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  20. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  21. package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
  22. package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
  23. package/lib/components/VCombobox/VCombobox.mjs +1 -1
  24. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  25. package/lib/components/VField/VField.mjs +1 -1
  26. package/lib/components/VField/VField.mjs.map +1 -1
  27. package/lib/components/VInput/VInput.css +1 -1
  28. package/lib/components/VInput/VInput.sass +1 -1
  29. package/lib/components/VProgressLinear/VProgressLinear.mjs +1 -1
  30. package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
  31. package/lib/components/VStepper/VStepperItem.mjs +1 -0
  32. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  33. package/lib/components/VTextarea/VTextarea.css +1 -0
  34. package/lib/components/VTextarea/VTextarea.sass +1 -0
  35. package/lib/composables/filter.mjs +3 -3
  36. package/lib/composables/filter.mjs.map +1 -1
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/index.d.mts +50 -50
  40. package/lib/locale/az.mjs +28 -28
  41. package/lib/locale/az.mjs.map +1 -1
  42. package/lib/locale/nl.mjs +5 -5
  43. package/lib/locale/nl.mjs.map +1 -1
  44. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.6-master.2024-12-26
2
+ * Vuetify v3.7.6-master.2025-01-15
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5040,7 +5040,7 @@
5040
5040
  "aria-hidden": props.active ? 'false' : 'true',
5041
5041
  "aria-valuemin": "0",
5042
5042
  "aria-valuemax": props.max,
5043
- "aria-valuenow": props.indeterminate ? undefined : normalizedValue.value,
5043
+ "aria-valuenow": props.indeterminate ? undefined : Math.min(parseFloat(progress.value), max.value),
5044
5044
  "onClick": props.clickable && handleClick
5045
5045
  }, {
5046
5046
  default: () => [props.stream && vue.createVNode("div", {
@@ -11582,7 +11582,7 @@
11582
11582
  useRender(() => {
11583
11583
  const isOutlined = props.variant === 'outlined';
11584
11584
  const hasPrepend = !!(slots['prepend-inner'] || props.prependInnerIcon);
11585
- const hasClear = !!(props.clearable || slots.clear);
11585
+ const hasClear = !!(props.clearable || slots.clear) && !props.disabled;
11586
11586
  const hasAppend = !!(slots['append-inner'] || props.appendInnerIcon || hasClear);
11587
11587
  const label = () => slots.label ? slots.label({
11588
11588
  ...slotProps.value,
@@ -12864,8 +12864,8 @@
12864
12864
  return array;
12865
12865
  }
12866
12866
  function useFilter(props, items, query, options) {
12867
- const filteredItems = vue.ref([]);
12868
- const filteredMatches = vue.ref(new Map());
12867
+ const filteredItems = vue.shallowRef([]);
12868
+ const filteredMatches = vue.shallowRef(new Map());
12869
12869
  const transformedItems = vue.computed(() => options?.transform ? vue.unref(items).map(item => [item, options.transform(item)]) : vue.unref(items));
12870
12870
  vue.watchEffect(() => {
12871
12871
  const _query = typeof query === 'function' ? query() : vue.unref(query);
@@ -13026,7 +13026,7 @@
13026
13026
  menu.value = !menu.value;
13027
13027
  }
13028
13028
  function onListKeydown(e) {
13029
- if (checkPrintable(e)) {
13029
+ if (e.key !== ' ' && checkPrintable(e)) {
13030
13030
  vTextFieldRef.value?.focus();
13031
13031
  }
13032
13032
  }
@@ -16099,7 +16099,7 @@
16099
16099
  const result = await eyeDropper.open({
16100
16100
  signal: abortController.signal
16101
16101
  });
16102
- const colorHexValue = HexToHSV(result.sRGBHex);
16102
+ const colorHexValue = RGBtoHSV(parseColor(result.sRGBHex));
16103
16103
  emit('update:color', {
16104
16104
  ...(props.color ?? nullColor),
16105
16105
  ...colorHexValue
@@ -16910,7 +16910,7 @@
16910
16910
  menu.value = !menu.value;
16911
16911
  }
16912
16912
  function onListKeydown(e) {
16913
- if (checkPrintable(e)) {
16913
+ if (e.key !== ' ' && checkPrintable(e)) {
16914
16914
  vTextFieldRef.value?.focus();
16915
16915
  }
16916
16916
  }
@@ -26177,6 +26177,7 @@
26177
26177
  'v-stepper-item--error': hasError.value
26178
26178
  }, group?.selectedClass.value],
26179
26179
  "disabled": !props.editable,
26180
+ "type": "button",
26180
26181
  "onClick": onClick
26181
26182
  }, [isClickable.value && genOverlays(true, 'v-stepper-item'), vue.createVNode(VAvatar, {
26182
26183
  "key": "stepper-avatar",
@@ -30750,7 +30751,7 @@
30750
30751
  goTo
30751
30752
  };
30752
30753
  }
30753
- const version$1 = "3.7.6-master.2024-12-26";
30754
+ const version$1 = "3.7.6-master.2025-01-15";
30754
30755
  createVuetify$1.version = version$1;
30755
30756
 
30756
30757
  // Vue's inject() can only be used in setup
@@ -31003,7 +31004,7 @@
31003
31004
 
31004
31005
  /* eslint-disable local-rules/sort-imports */
31005
31006
 
31006
- const version = "3.7.6-master.2024-12-26";
31007
+ const version = "3.7.6-master.2025-01-15";
31007
31008
 
31008
31009
  /* eslint-disable local-rules/sort-imports */
31009
31010