@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.
- package/dist/json/attributes.json +3060 -3060
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +148 -148
- package/dist/json/web-types.json +5570 -5570
- package/dist/vuetify-labs.css +4292 -4291
- package/dist/vuetify-labs.esm.js +11 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3970 -3969
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +11 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +907 -907
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +1 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.mjs +1 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VInput/VInput.css +1 -1
- package/lib/components/VInput/VInput.sass +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs +1 -0
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VTextarea/VTextarea.css +1 -0
- package/lib/components/VTextarea/VTextarea.sass +1 -0
- package/lib/composables/filter.mjs +3 -3
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/lib/locale/az.mjs +28 -28
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/nl.mjs +5 -5
- package/lib/locale/nl.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.6-master.
|
2
|
+
* Vuetify v3.7.6-master.2025-01-15
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -5273,7 +5273,7 @@
|
|
5273
5273
|
"aria-hidden": props.active ? 'false' : 'true',
|
5274
5274
|
"aria-valuemin": "0",
|
5275
5275
|
"aria-valuemax": props.max,
|
5276
|
-
"aria-valuenow": props.indeterminate ? undefined :
|
5276
|
+
"aria-valuenow": props.indeterminate ? undefined : Math.min(parseFloat(progress.value), max.value),
|
5277
5277
|
"onClick": props.clickable && handleClick
|
5278
5278
|
}, {
|
5279
5279
|
default: () => [props.stream && vue.createVNode("div", {
|
@@ -11815,7 +11815,7 @@
|
|
11815
11815
|
useRender(() => {
|
11816
11816
|
const isOutlined = props.variant === 'outlined';
|
11817
11817
|
const hasPrepend = !!(slots['prepend-inner'] || props.prependInnerIcon);
|
11818
|
-
const hasClear = !!(props.clearable || slots.clear);
|
11818
|
+
const hasClear = !!(props.clearable || slots.clear) && !props.disabled;
|
11819
11819
|
const hasAppend = !!(slots['append-inner'] || props.appendInnerIcon || hasClear);
|
11820
11820
|
const label = () => slots.label ? slots.label({
|
11821
11821
|
...slotProps.value,
|
@@ -13097,8 +13097,8 @@
|
|
13097
13097
|
return array;
|
13098
13098
|
}
|
13099
13099
|
function useFilter(props, items, query, options) {
|
13100
|
-
const filteredItems = vue.
|
13101
|
-
const filteredMatches = vue.
|
13100
|
+
const filteredItems = vue.shallowRef([]);
|
13101
|
+
const filteredMatches = vue.shallowRef(new Map());
|
13102
13102
|
const transformedItems = vue.computed(() => options?.transform ? vue.unref(items).map(item => [item, options.transform(item)]) : vue.unref(items));
|
13103
13103
|
vue.watchEffect(() => {
|
13104
13104
|
const _query = typeof query === 'function' ? query() : vue.unref(query);
|
@@ -13259,7 +13259,7 @@
|
|
13259
13259
|
menu.value = !menu.value;
|
13260
13260
|
}
|
13261
13261
|
function onListKeydown(e) {
|
13262
|
-
if (checkPrintable(e)) {
|
13262
|
+
if (e.key !== ' ' && checkPrintable(e)) {
|
13263
13263
|
vTextFieldRef.value?.focus();
|
13264
13264
|
}
|
13265
13265
|
}
|
@@ -16332,7 +16332,7 @@
|
|
16332
16332
|
const result = await eyeDropper.open({
|
16333
16333
|
signal: abortController.signal
|
16334
16334
|
});
|
16335
|
-
const colorHexValue =
|
16335
|
+
const colorHexValue = RGBtoHSV(parseColor(result.sRGBHex));
|
16336
16336
|
emit('update:color', {
|
16337
16337
|
...(props.color ?? nullColor),
|
16338
16338
|
...colorHexValue
|
@@ -17143,7 +17143,7 @@
|
|
17143
17143
|
menu.value = !menu.value;
|
17144
17144
|
}
|
17145
17145
|
function onListKeydown(e) {
|
17146
|
-
if (checkPrintable(e)) {
|
17146
|
+
if (e.key !== ' ' && checkPrintable(e)) {
|
17147
17147
|
vTextFieldRef.value?.focus();
|
17148
17148
|
}
|
17149
17149
|
}
|
@@ -26410,6 +26410,7 @@
|
|
26410
26410
|
'v-stepper-item--error': hasError.value
|
26411
26411
|
}, group?.selectedClass.value],
|
26412
26412
|
"disabled": !props.editable,
|
26413
|
+
"type": "button",
|
26413
26414
|
"onClick": onClick
|
26414
26415
|
}, [isClickable.value && genOverlays(true, 'v-stepper-item'), vue.createVNode(VAvatar, {
|
26415
26416
|
"key": "stepper-avatar",
|
@@ -28288,7 +28289,7 @@
|
|
28288
28289
|
goTo
|
28289
28290
|
};
|
28290
28291
|
}
|
28291
|
-
const version$1 = "3.7.6-master.
|
28292
|
+
const version$1 = "3.7.6-master.2025-01-15";
|
28292
28293
|
createVuetify$1.version = version$1;
|
28293
28294
|
|
28294
28295
|
// Vue's inject() can only be used in setup
|
@@ -28313,7 +28314,7 @@
|
|
28313
28314
|
...options
|
28314
28315
|
});
|
28315
28316
|
};
|
28316
|
-
const version = "3.7.6-master.
|
28317
|
+
const version = "3.7.6-master.2025-01-15";
|
28317
28318
|
createVuetify.version = version;
|
28318
28319
|
|
28319
28320
|
exports.blueprints = index;
|