@vuetify/nightly 3.10.5-dev.2025-10-09 → 3.10.5-dev.2025-10-10
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 +8 -3
- package/dist/json/attributes.json +3567 -3583
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +186 -186
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6531 -6567
- package/dist/vuetify-labs.cjs +7 -7
- package/dist/vuetify-labs.css +5353 -5353
- package/dist/vuetify-labs.d.ts +59 -79
- package/dist/vuetify-labs.esm.js +7 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +3 -3
- package/dist/vuetify.css +3166 -3166
- package/dist/vuetify.d.ts +59 -59
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -40
- package/lib/labs/VColorInput/VColorInput.js +2 -2
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.js +1 -1
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VMaskInput/VMaskInput.js +1 -1
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.5-dev.2025-10-
|
|
2
|
+
* Vuetify v3.10.5-dev.2025-10-10
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -34369,7 +34369,7 @@
|
|
|
34369
34369
|
...makeFocusProps(),
|
|
34370
34370
|
...makeVConfirmEditProps(),
|
|
34371
34371
|
...makeVTextFieldProps(),
|
|
34372
|
-
...omit(makeVColorPickerProps(), ['
|
|
34372
|
+
...omit(makeVColorPickerProps(), ['location', 'height', 'minHeight', 'maxHeight'])
|
|
34373
34373
|
}, 'VColorInput');
|
|
34374
34374
|
const VColorInput = genericComponent()({
|
|
34375
34375
|
name: 'VColorInput',
|
|
@@ -34408,7 +34408,7 @@
|
|
|
34408
34408
|
}
|
|
34409
34409
|
useRender(() => {
|
|
34410
34410
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
|
34411
|
-
const colorPickerProps = VColorPicker.filterProps(omit(props, ['active', 'color']));
|
|
34411
|
+
const colorPickerProps = VColorPicker.filterProps(omit(props, ['active', 'bgColor', 'color', 'rounded', 'maxWidth', 'minWidth', 'width']));
|
|
34412
34412
|
const textFieldProps = VTextField.filterProps(props);
|
|
34413
34413
|
const slotWithPip = props.hidePip ? undefined : {
|
|
34414
34414
|
[props.pipLocation]: arg => vue.createElementVNode(vue.Fragment, null, [vue.createVNode(VAvatar, {
|
|
@@ -34768,7 +34768,7 @@
|
|
|
34768
34768
|
}
|
|
34769
34769
|
useRender(() => {
|
|
34770
34770
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
|
34771
|
-
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'bgColor', 'location', 'rounded', 'maxWidth', 'minWidth', 'width']));
|
|
34771
|
+
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'bgColor', 'color', 'location', 'rounded', 'maxWidth', 'minWidth', 'width']));
|
|
34772
34772
|
const datePickerSlots = pick(slots, ['title', 'header', 'day', 'month', 'year']);
|
|
34773
34773
|
const textFieldProps = VTextField.filterProps(omit(props, ['placeholder']));
|
|
34774
34774
|
return vue.createVNode(VTextField, vue.mergeProps({
|
|
@@ -35213,7 +35213,7 @@
|
|
|
35213
35213
|
// Always display masked value in input when mask is applied
|
|
35214
35214
|
val => props.mask ? mask.mask(mask.unmask(val)) : val, val => {
|
|
35215
35215
|
if (props.mask) {
|
|
35216
|
-
const valueWithoutDelimiters = removeMaskDelimiters(val);
|
|
35216
|
+
const valueWithoutDelimiters = val ? removeMaskDelimiters(val) : '';
|
|
35217
35217
|
|
|
35218
35218
|
// E.g. mask is #-# and the input value is '2-23'
|
|
35219
35219
|
// model-value should be enforced to '2-2'
|
|
@@ -38071,7 +38071,7 @@
|
|
|
38071
38071
|
};
|
|
38072
38072
|
});
|
|
38073
38073
|
}
|
|
38074
|
-
const version$1 = "3.10.5-dev.2025-10-
|
|
38074
|
+
const version$1 = "3.10.5-dev.2025-10-10";
|
|
38075
38075
|
createVuetify$1.version = version$1;
|
|
38076
38076
|
|
|
38077
38077
|
// Vue's inject() can only be used in setup
|
|
@@ -38369,7 +38369,7 @@
|
|
|
38369
38369
|
|
|
38370
38370
|
/* eslint-disable local-rules/sort-imports */
|
|
38371
38371
|
|
|
38372
|
-
const version = "3.10.5-dev.2025-10-
|
|
38372
|
+
const version = "3.10.5-dev.2025-10-10";
|
|
38373
38373
|
|
|
38374
38374
|
/* eslint-disable local-rules/sort-imports */
|
|
38375
38375
|
|