@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.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
|
*/
|
|
@@ -4059,8 +4059,14 @@
|
|
|
4059
4059
|
backgroundColorStyles
|
|
4060
4060
|
};
|
|
4061
4061
|
}
|
|
4062
|
+
function normalizeColors(colors) {
|
|
4063
|
+
return {
|
|
4064
|
+
text: typeof colors.text === 'string' ? colors.text.replace(/^text-/, '') : colors.text,
|
|
4065
|
+
background: typeof colors.background === 'string' ? colors.background.replace(/^bg-/, '') : colors.background
|
|
4066
|
+
};
|
|
4067
|
+
}
|
|
4062
4068
|
function computeColor(colors) {
|
|
4063
|
-
const _colors = vue.toValue(colors);
|
|
4069
|
+
const _colors = normalizeColors(vue.toValue(colors));
|
|
4064
4070
|
const classes = [];
|
|
4065
4071
|
const styles = {};
|
|
4066
4072
|
if (_colors.background) {
|
|
@@ -31503,6 +31509,7 @@
|
|
|
31503
31509
|
type: [Number, String],
|
|
31504
31510
|
default: 6
|
|
31505
31511
|
},
|
|
31512
|
+
masked: Boolean,
|
|
31506
31513
|
modelValue: {
|
|
31507
31514
|
type: [Number, String],
|
|
31508
31515
|
default: undefined
|
|
@@ -31703,7 +31710,7 @@
|
|
|
31703
31710
|
"min": props.type === 'number' ? 0 : undefined,
|
|
31704
31711
|
"maxlength": i === 0 ? length.value : '1',
|
|
31705
31712
|
"placeholder": props.placeholder,
|
|
31706
|
-
"type": props.type === 'number' ? 'text' : props.type,
|
|
31713
|
+
"type": props.masked ? 'password' : props.type === 'number' ? 'text' : props.type,
|
|
31707
31714
|
"value": model.value[i],
|
|
31708
31715
|
"onInput": onInput,
|
|
31709
31716
|
"onFocus": e => onFocus(e, i),
|
|
@@ -37066,7 +37073,7 @@
|
|
|
37066
37073
|
};
|
|
37067
37074
|
});
|
|
37068
37075
|
}
|
|
37069
|
-
const version$1 = "3.11.8-dev.2026-02-
|
|
37076
|
+
const version$1 = "3.11.8-dev.2026-02-18";
|
|
37070
37077
|
createVuetify$1.version = version$1;
|
|
37071
37078
|
|
|
37072
37079
|
// Vue's inject() can only be used in setup
|
|
@@ -37091,7 +37098,7 @@
|
|
|
37091
37098
|
...options
|
|
37092
37099
|
});
|
|
37093
37100
|
};
|
|
37094
|
-
const version = "3.11.8-dev.2026-02-
|
|
37101
|
+
const version = "3.11.8-dev.2026-02-18";
|
|
37095
37102
|
createVuetify.version = version;
|
|
37096
37103
|
|
|
37097
37104
|
exports.blueprints = index;
|