@vuetify/nightly 3.11.8-dev.2026-02-17 → 3.11.8-dev.2026-02-18
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 +7 -3
- package/dist/json/attributes.json +1800 -1796
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +170 -170
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3410 -3400
- package/dist/vuetify-labs.cjs +12 -5
- package/dist/vuetify-labs.css +5723 -5723
- package/dist/vuetify-labs.d.ts +72 -64
- package/dist/vuetify-labs.esm.js +12 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +12 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +12 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5605 -5605
- package/dist/vuetify.d.ts +72 -64
- package/dist/vuetify.esm.js +12 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +12 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.d.ts +13 -0
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/composables/color.js +7 -1
- package/lib/composables/color.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +64 -64
- package/lib/framework.js +1 -1
- package/lib/iconsets/mdi-unocss.d.ts +5 -0
- package/lib/iconsets/mdi-unocss.js +83 -0
- package/lib/iconsets/mdi-unocss.js.map +1 -0
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.8-dev.2026-02-
|
|
2
|
+
* Vuetify v3.11.8-dev.2026-02-18
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3606,8 +3606,14 @@
|
|
|
3606
3606
|
backgroundColorStyles
|
|
3607
3607
|
};
|
|
3608
3608
|
}
|
|
3609
|
+
function normalizeColors(colors) {
|
|
3610
|
+
return {
|
|
3611
|
+
text: typeof colors.text === 'string' ? colors.text.replace(/^text-/, '') : colors.text,
|
|
3612
|
+
background: typeof colors.background === 'string' ? colors.background.replace(/^bg-/, '') : colors.background
|
|
3613
|
+
};
|
|
3614
|
+
}
|
|
3609
3615
|
function computeColor(colors) {
|
|
3610
|
-
const _colors = vue.toValue(colors);
|
|
3616
|
+
const _colors = normalizeColors(vue.toValue(colors));
|
|
3611
3617
|
const classes = [];
|
|
3612
3618
|
const styles = {};
|
|
3613
3619
|
if (_colors.background) {
|
|
@@ -31182,6 +31188,7 @@
|
|
|
31182
31188
|
type: [Number, String],
|
|
31183
31189
|
default: 6
|
|
31184
31190
|
},
|
|
31191
|
+
masked: Boolean,
|
|
31185
31192
|
modelValue: {
|
|
31186
31193
|
type: [Number, String],
|
|
31187
31194
|
default: undefined
|
|
@@ -31382,7 +31389,7 @@
|
|
|
31382
31389
|
"min": props.type === 'number' ? 0 : undefined,
|
|
31383
31390
|
"maxlength": i === 0 ? length.value : '1',
|
|
31384
31391
|
"placeholder": props.placeholder,
|
|
31385
|
-
"type": props.type === 'number' ? 'text' : props.type,
|
|
31392
|
+
"type": props.masked ? 'password' : props.type === 'number' ? 'text' : props.type,
|
|
31386
31393
|
"value": model.value[i],
|
|
31387
31394
|
"onInput": onInput,
|
|
31388
31395
|
"onFocus": e => onFocus(e, i),
|
|
@@ -40087,7 +40094,7 @@
|
|
|
40087
40094
|
};
|
|
40088
40095
|
});
|
|
40089
40096
|
}
|
|
40090
|
-
const version$1 = "3.11.8-dev.2026-02-
|
|
40097
|
+
const version$1 = "3.11.8-dev.2026-02-18";
|
|
40091
40098
|
createVuetify$1.version = version$1;
|
|
40092
40099
|
|
|
40093
40100
|
// Vue's inject() can only be used in setup
|
|
@@ -40390,7 +40397,7 @@
|
|
|
40390
40397
|
|
|
40391
40398
|
/* eslint-disable local-rules/sort-imports */
|
|
40392
40399
|
|
|
40393
|
-
const version = "3.11.8-dev.2026-02-
|
|
40400
|
+
const version = "3.11.8-dev.2026-02-18";
|
|
40394
40401
|
|
|
40395
40402
|
/* eslint-disable local-rules/sort-imports */
|
|
40396
40403
|
|