@vuetify/nightly 3.8.7-master.2025-06-02 → 3.8.8-master.2025-06-04

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 (55) hide show
  1. package/CHANGELOG.md +5 -16
  2. package/dist/json/attributes.json +1935 -1935
  3. package/dist/json/importMap-labs.json +12 -12
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/web-types.json +3629 -3629
  6. package/dist/vuetify-labs.cjs +29 -11
  7. package/dist/vuetify-labs.css +3132 -3126
  8. package/dist/vuetify-labs.d.ts +61 -55
  9. package/dist/vuetify-labs.esm.js +30 -12
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +29 -11
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +29 -11
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +1342 -1336
  16. package/dist/vuetify.d.ts +61 -55
  17. package/dist/vuetify.esm.js +30 -12
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +29 -11
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +1002 -999
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.css +6 -6
  25. package/lib/components/VAutocomplete/VAutocomplete.sass +3 -9
  26. package/lib/components/VChip/VChip.js +1 -0
  27. package/lib/components/VChip/VChip.js.map +1 -1
  28. package/lib/components/VCombobox/VCombobox.css +6 -6
  29. package/lib/components/VCombobox/VCombobox.sass +3 -9
  30. package/lib/components/VSelect/VSelect.css +6 -0
  31. package/lib/components/VSelect/VSelect.sass +3 -0
  32. package/lib/components/VSelect/_mixins.scss +14 -0
  33. package/lib/components/VSlider/VSliderThumb.js +12 -6
  34. package/lib/components/VSlider/VSliderThumb.js.map +1 -1
  35. package/lib/components/VSlider/slider.js +4 -1
  36. package/lib/components/VSlider/slider.js.map +1 -1
  37. package/lib/composables/icons.d.ts +6 -0
  38. package/lib/composables/icons.js.map +1 -1
  39. package/lib/composables/list-items.js +2 -2
  40. package/lib/composables/list-items.js.map +1 -1
  41. package/lib/entry-bundler.js +1 -1
  42. package/lib/framework.d.ts +61 -55
  43. package/lib/framework.js +1 -1
  44. package/lib/iconsets/fa.js +3 -1
  45. package/lib/iconsets/fa.js.map +1 -1
  46. package/lib/iconsets/fa4.js +3 -1
  47. package/lib/iconsets/fa4.js.map +1 -1
  48. package/lib/iconsets/md.js +3 -1
  49. package/lib/iconsets/md.js.map +1 -1
  50. package/lib/iconsets/mdi-svg.js +3 -1
  51. package/lib/iconsets/mdi-svg.js.map +1 -1
  52. package/lib/util/helpers.d.ts +1 -0
  53. package/lib/util/helpers.js +9 -1
  54. package/lib/util/helpers.js.map +1 -1
  55. package/package.json +1 -1
package/dist/vuetify.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.7-master.2025-06-02
2
+ * Vuetify v3.8.8-master.2025-06-04
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -529,6 +529,14 @@
529
529
  }
530
530
  return cleanText;
531
531
  }
532
+ function camelizeProps(props) {
533
+ if (!props) return;
534
+ const out = {};
535
+ for (const prop in props) {
536
+ out[vue.camelize(prop)] = props[prop];
537
+ }
538
+ return out;
539
+ }
532
540
 
533
541
  // Utilities
534
542
  const block = ['top', 'bottom'];
@@ -8378,6 +8386,7 @@
8378
8386
  const isClickable = vue.computed(() => !props.disabled && props.link !== false && (!!group || props.link || link.isClickable.value));
8379
8387
  const closeProps = vue.toRef(() => ({
8380
8388
  'aria-label': t(props.closeLabel),
8389
+ disabled: props.disabled,
8381
8390
  onClick(e) {
8382
8391
  e.preventDefault();
8383
8392
  e.stopPropagation();
@@ -9859,7 +9868,7 @@
9859
9868
  const _props = {
9860
9869
  title,
9861
9870
  value,
9862
- ...itemProps
9871
+ ...camelizeProps(itemProps)
9863
9872
  };
9864
9873
  return {
9865
9874
  title: String(_props.title ?? ''),
@@ -16166,7 +16175,10 @@
16166
16175
  if (step.value <= 0) return value;
16167
16176
  const clamped = clamp(value, min.value, max.value);
16168
16177
  const offset = min.value % step.value;
16169
- const newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
16178
+ let newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
16179
+ if (clamped > newValue && newValue + step.value > max.value) {
16180
+ newValue = max.value;
16181
+ }
16170
16182
  return parseFloat(Math.min(newValue, max.value).toFixed(decimals.value));
16171
16183
  }
16172
16184
  return {
@@ -16422,6 +16434,8 @@
16422
16434
  } = useRtl();
16423
16435
  if (!slider) throw new Error('[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider');
16424
16436
  const {
16437
+ min,
16438
+ max,
16425
16439
  thumbColor,
16426
16440
  step,
16427
16441
  disabled,
@@ -16462,16 +16476,20 @@
16462
16476
  if (!relevantKeys.includes(e.key)) return;
16463
16477
  e.preventDefault();
16464
16478
  const _step = step.value || 0.1;
16465
- const steps = (props.max - props.min) / _step;
16479
+ const steps = (max.value - min.value) / _step;
16466
16480
  if ([left, right, down, up].includes(e.key)) {
16467
16481
  const increase = vertical.value ? [isRtl.value ? left : right, isReversed.value ? down : up] : indexFromEnd.value !== isRtl.value ? [left, up] : [right, up];
16468
16482
  const direction = increase.includes(e.key) ? 1 : -1;
16469
16483
  const multiplier = e.shiftKey ? 2 : e.ctrlKey ? 1 : 0;
16470
- value = value + direction * _step * multipliers.value[multiplier];
16484
+ if (direction === -1 && value === max.value && !multiplier && !Number.isInteger(steps)) {
16485
+ value = value - steps % 1 * _step;
16486
+ } else {
16487
+ value = value + direction * _step * multipliers.value[multiplier];
16488
+ }
16471
16489
  } else if (e.key === home) {
16472
- value = props.min;
16490
+ value = min.value;
16473
16491
  } else if (e.key === end) {
16474
- value = props.max;
16492
+ value = max.value;
16475
16493
  } else {
16476
16494
  const direction = e.key === pagedown ? 1 : -1;
16477
16495
  value = value - direction * _step * (steps > 100 ? steps / 10 : 10);
@@ -16496,8 +16514,8 @@
16496
16514
  "role": "slider",
16497
16515
  "tabindex": disabled.value ? -1 : 0,
16498
16516
  "aria-label": props.name,
16499
- "aria-valuemin": props.min,
16500
- "aria-valuemax": props.max,
16517
+ "aria-valuemin": min.value,
16518
+ "aria-valuemax": max.value,
16501
16519
  "aria-valuenow": props.modelValue,
16502
16520
  "aria-readonly": !!readonly.value,
16503
16521
  "aria-orientation": direction.value,
@@ -29386,7 +29404,7 @@
29386
29404
  };
29387
29405
  });
29388
29406
  }
29389
- const version$1 = "3.8.7-master.2025-06-02";
29407
+ const version$1 = "3.8.8-master.2025-06-04";
29390
29408
  createVuetify$1.version = version$1;
29391
29409
 
29392
29410
  // Vue's inject() can only be used in setup
@@ -29411,7 +29429,7 @@
29411
29429
  ...options
29412
29430
  });
29413
29431
  };
29414
- const version = "3.8.7-master.2025-06-02";
29432
+ const version = "3.8.8-master.2025-06-04";
29415
29433
  createVuetify.version = version;
29416
29434
 
29417
29435
  exports.blueprints = index;