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

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 +11 -3
  2. package/dist/json/attributes.json +3248 -3248
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/web-types.json +6002 -6002
  6. package/dist/vuetify-labs.cjs +20 -10
  7. package/dist/vuetify-labs.css +3724 -3718
  8. package/dist/vuetify-labs.d.ts +62 -62
  9. package/dist/vuetify-labs.esm.js +20 -10
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +20 -10
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +20 -10
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +1784 -1778
  16. package/dist/vuetify.d.ts +62 -62
  17. package/dist/vuetify.esm.js +20 -10
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +20 -10
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +13 -13
  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/entry-bundler.js +1 -1
  38. package/lib/framework.d.ts +62 -62
  39. package/lib/framework.js +1 -1
  40. 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.7-master.2025-06-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -8378,6 +8378,7 @@
8378
8378
  const isClickable = vue.computed(() => !props.disabled && props.link !== false && (!!group || props.link || link.isClickable.value));
8379
8379
  const closeProps = vue.toRef(() => ({
8380
8380
  'aria-label': t(props.closeLabel),
8381
+ disabled: props.disabled,
8381
8382
  onClick(e) {
8382
8383
  e.preventDefault();
8383
8384
  e.stopPropagation();
@@ -16166,7 +16167,10 @@
16166
16167
  if (step.value <= 0) return value;
16167
16168
  const clamped = clamp(value, min.value, max.value);
16168
16169
  const offset = min.value % step.value;
16169
- const newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
16170
+ let newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
16171
+ if (clamped > newValue && newValue + step.value > max.value) {
16172
+ newValue = max.value;
16173
+ }
16170
16174
  return parseFloat(Math.min(newValue, max.value).toFixed(decimals.value));
16171
16175
  }
16172
16176
  return {
@@ -16422,6 +16426,8 @@
16422
16426
  } = useRtl();
16423
16427
  if (!slider) throw new Error('[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider');
16424
16428
  const {
16429
+ min,
16430
+ max,
16425
16431
  thumbColor,
16426
16432
  step,
16427
16433
  disabled,
@@ -16462,16 +16468,20 @@
16462
16468
  if (!relevantKeys.includes(e.key)) return;
16463
16469
  e.preventDefault();
16464
16470
  const _step = step.value || 0.1;
16465
- const steps = (props.max - props.min) / _step;
16471
+ const steps = (max.value - min.value) / _step;
16466
16472
  if ([left, right, down, up].includes(e.key)) {
16467
16473
  const increase = vertical.value ? [isRtl.value ? left : right, isReversed.value ? down : up] : indexFromEnd.value !== isRtl.value ? [left, up] : [right, up];
16468
16474
  const direction = increase.includes(e.key) ? 1 : -1;
16469
16475
  const multiplier = e.shiftKey ? 2 : e.ctrlKey ? 1 : 0;
16470
- value = value + direction * _step * multipliers.value[multiplier];
16476
+ if (direction === -1 && value === max.value && !multiplier && !Number.isInteger(steps)) {
16477
+ value = value - steps % 1 * _step;
16478
+ } else {
16479
+ value = value + direction * _step * multipliers.value[multiplier];
16480
+ }
16471
16481
  } else if (e.key === home) {
16472
- value = props.min;
16482
+ value = min.value;
16473
16483
  } else if (e.key === end) {
16474
- value = props.max;
16484
+ value = max.value;
16475
16485
  } else {
16476
16486
  const direction = e.key === pagedown ? 1 : -1;
16477
16487
  value = value - direction * _step * (steps > 100 ? steps / 10 : 10);
@@ -16496,8 +16506,8 @@
16496
16506
  "role": "slider",
16497
16507
  "tabindex": disabled.value ? -1 : 0,
16498
16508
  "aria-label": props.name,
16499
- "aria-valuemin": props.min,
16500
- "aria-valuemax": props.max,
16509
+ "aria-valuemin": min.value,
16510
+ "aria-valuemax": max.value,
16501
16511
  "aria-valuenow": props.modelValue,
16502
16512
  "aria-readonly": !!readonly.value,
16503
16513
  "aria-orientation": direction.value,
@@ -29386,7 +29396,7 @@
29386
29396
  };
29387
29397
  });
29388
29398
  }
29389
- const version$1 = "3.8.7-master.2025-06-02";
29399
+ const version$1 = "3.8.7-master.2025-06-03";
29390
29400
  createVuetify$1.version = version$1;
29391
29401
 
29392
29402
  // Vue's inject() can only be used in setup
@@ -29411,7 +29421,7 @@
29411
29421
  ...options
29412
29422
  });
29413
29423
  };
29414
- const version = "3.8.7-master.2025-06-02";
29424
+ const version = "3.8.7-master.2025-06-03";
29415
29425
  createVuetify.version = version;
29416
29426
 
29417
29427
  exports.blueprints = index;