@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.
- package/CHANGELOG.md +11 -3
- package/dist/json/attributes.json +3248 -3248
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +6002 -6002
- package/dist/vuetify-labs.cjs +20 -10
- package/dist/vuetify-labs.css +3724 -3718
- package/dist/vuetify-labs.d.ts +62 -62
- package/dist/vuetify-labs.esm.js +20 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +20 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1784 -1778
- package/dist/vuetify.d.ts +62 -62
- package/dist/vuetify.esm.js +20 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +13 -13
- 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/entry-bundler.js +1 -1
- package/lib/framework.d.ts +62 -62
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.7-master.2025-06-
|
2
|
+
* Vuetify v3.8.7-master.2025-06-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -8100,6 +8100,7 @@
|
|
8100
8100
|
const isClickable = vue.computed(() => !props.disabled && props.link !== false && (!!group || props.link || link.isClickable.value));
|
8101
8101
|
const closeProps = vue.toRef(() => ({
|
8102
8102
|
'aria-label': t(props.closeLabel),
|
8103
|
+
disabled: props.disabled,
|
8103
8104
|
onClick(e) {
|
8104
8105
|
e.preventDefault();
|
8105
8106
|
e.stopPropagation();
|
@@ -15888,7 +15889,10 @@
|
|
15888
15889
|
if (step.value <= 0) return value;
|
15889
15890
|
const clamped = clamp(value, min.value, max.value);
|
15890
15891
|
const offset = min.value % step.value;
|
15891
|
-
|
15892
|
+
let newValue = Math.round((clamped - offset) / step.value) * step.value + offset;
|
15893
|
+
if (clamped > newValue && newValue + step.value > max.value) {
|
15894
|
+
newValue = max.value;
|
15895
|
+
}
|
15892
15896
|
return parseFloat(Math.min(newValue, max.value).toFixed(decimals.value));
|
15893
15897
|
}
|
15894
15898
|
return {
|
@@ -16144,6 +16148,8 @@
|
|
16144
16148
|
} = useRtl();
|
16145
16149
|
if (!slider) throw new Error('[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider');
|
16146
16150
|
const {
|
16151
|
+
min,
|
16152
|
+
max,
|
16147
16153
|
thumbColor,
|
16148
16154
|
step,
|
16149
16155
|
disabled,
|
@@ -16184,16 +16190,20 @@
|
|
16184
16190
|
if (!relevantKeys.includes(e.key)) return;
|
16185
16191
|
e.preventDefault();
|
16186
16192
|
const _step = step.value || 0.1;
|
16187
|
-
const steps = (
|
16193
|
+
const steps = (max.value - min.value) / _step;
|
16188
16194
|
if ([left, right, down, up].includes(e.key)) {
|
16189
16195
|
const increase = vertical.value ? [isRtl.value ? left : right, isReversed.value ? down : up] : indexFromEnd.value !== isRtl.value ? [left, up] : [right, up];
|
16190
16196
|
const direction = increase.includes(e.key) ? 1 : -1;
|
16191
16197
|
const multiplier = e.shiftKey ? 2 : e.ctrlKey ? 1 : 0;
|
16192
|
-
|
16198
|
+
if (direction === -1 && value === max.value && !multiplier && !Number.isInteger(steps)) {
|
16199
|
+
value = value - steps % 1 * _step;
|
16200
|
+
} else {
|
16201
|
+
value = value + direction * _step * multipliers.value[multiplier];
|
16202
|
+
}
|
16193
16203
|
} else if (e.key === home) {
|
16194
|
-
value =
|
16204
|
+
value = min.value;
|
16195
16205
|
} else if (e.key === end) {
|
16196
|
-
value =
|
16206
|
+
value = max.value;
|
16197
16207
|
} else {
|
16198
16208
|
const direction = e.key === pagedown ? 1 : -1;
|
16199
16209
|
value = value - direction * _step * (steps > 100 ? steps / 10 : 10);
|
@@ -16218,8 +16228,8 @@
|
|
16218
16228
|
"role": "slider",
|
16219
16229
|
"tabindex": disabled.value ? -1 : 0,
|
16220
16230
|
"aria-label": props.name,
|
16221
|
-
"aria-valuemin":
|
16222
|
-
"aria-valuemax":
|
16231
|
+
"aria-valuemin": min.value,
|
16232
|
+
"aria-valuemax": max.value,
|
16223
16233
|
"aria-valuenow": props.modelValue,
|
16224
16234
|
"aria-readonly": !!readonly.value,
|
16225
16235
|
"aria-orientation": direction.value,
|
@@ -32077,7 +32087,7 @@
|
|
32077
32087
|
};
|
32078
32088
|
});
|
32079
32089
|
}
|
32080
|
-
const version$1 = "3.8.7-master.2025-06-
|
32090
|
+
const version$1 = "3.8.7-master.2025-06-03";
|
32081
32091
|
createVuetify$1.version = version$1;
|
32082
32092
|
|
32083
32093
|
// Vue's inject() can only be used in setup
|
@@ -32375,7 +32385,7 @@
|
|
32375
32385
|
|
32376
32386
|
/* eslint-disable local-rules/sort-imports */
|
32377
32387
|
|
32378
|
-
const version = "3.8.7-master.2025-06-
|
32388
|
+
const version = "3.8.7-master.2025-06-03";
|
32379
32389
|
|
32380
32390
|
/* eslint-disable local-rules/sort-imports */
|
32381
32391
|
|