@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.
- package/CHANGELOG.md +5 -16
- package/dist/json/attributes.json +1935 -1935
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +3629 -3629
- package/dist/vuetify-labs.cjs +29 -11
- package/dist/vuetify-labs.css +3132 -3126
- package/dist/vuetify-labs.d.ts +61 -55
- package/dist/vuetify-labs.esm.js +30 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +29 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1342 -1336
- package/dist/vuetify.d.ts +61 -55
- package/dist/vuetify.esm.js +30 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +29 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1002 -999
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.sass +3 -9
- package/lib/components/VChip/VChip.js +1 -0
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +6 -6
- package/lib/components/VCombobox/VCombobox.sass +3 -9
- package/lib/components/VSelect/VSelect.css +6 -0
- package/lib/components/VSelect/VSelect.sass +3 -0
- package/lib/components/VSelect/_mixins.scss +14 -0
- package/lib/components/VSlider/VSliderThumb.js +12 -6
- package/lib/components/VSlider/VSliderThumb.js.map +1 -1
- package/lib/components/VSlider/slider.js +4 -1
- package/lib/components/VSlider/slider.js.map +1 -1
- package/lib/composables/icons.d.ts +6 -0
- package/lib/composables/icons.js.map +1 -1
- package/lib/composables/list-items.js +2 -2
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -55
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +3 -1
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +3 -1
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +3 -1
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +3 -1
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/util/helpers.d.ts +1 -0
- package/lib/util/helpers.js +9 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.
|
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
|
-
|
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 = (
|
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
|
-
|
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 =
|
16490
|
+
value = min.value;
|
16473
16491
|
} else if (e.key === end) {
|
16474
|
-
value =
|
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":
|
16500
|
-
"aria-valuemax":
|
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.
|
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.
|
29432
|
+
const version = "3.8.8-master.2025-06-04";
|
29415
29433
|
createVuetify.version = version;
|
29416
29434
|
|
29417
29435
|
exports.blueprints = index;
|