@vuetify/nightly 3.8.6-master.2025-05-23 → 3.8.6-master.2025-05-24
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 +6 -3
- package/dist/json/attributes.json +3211 -3211
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +190 -190
- package/dist/json/web-types.json +5963 -5963
- package/dist/vuetify-labs.cjs +11 -8
- package/dist/vuetify-labs.css +4555 -4555
- package/dist/vuetify-labs.d.ts +72 -72
- package/dist/vuetify-labs.esm.js +11 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +11 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5528 -5528
- package/dist/vuetify.d.ts +72 -72
- package/dist/vuetify.esm.js +11 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VField/VField.js +4 -2
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VInput/InputIcon.d.ts +1 -1
- package/lib/components/VInput/InputIcon.js +5 -4
- package/lib/components/VInput/InputIcon.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +72 -72
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.6-master.2025-05-
|
2
|
+
* Vuetify v3.8.6-master.2025-05-24
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -6839,7 +6839,8 @@
|
|
6839
6839
|
function InputIcon(_ref) {
|
6840
6840
|
let {
|
6841
6841
|
name,
|
6842
|
-
color
|
6842
|
+
color,
|
6843
|
+
...attrs
|
6843
6844
|
} = _ref;
|
6844
6845
|
const localeKey = {
|
6845
6846
|
prepend: 'prependAction',
|
@@ -6856,13 +6857,13 @@
|
|
6856
6857
|
callEvent(listener, new PointerEvent('click', e));
|
6857
6858
|
}
|
6858
6859
|
const label = listener && localeKey ? t(`$vuetify.input.${localeKey}`, props.label ?? '') : undefined;
|
6859
|
-
return vue.createVNode(VIcon, {
|
6860
|
+
return vue.createVNode(VIcon, vue.mergeProps({
|
6860
6861
|
"icon": props[`${name}Icon`],
|
6861
6862
|
"aria-label": label,
|
6862
6863
|
"onClick": listener,
|
6863
6864
|
"onKeydown": onKeydown,
|
6864
6865
|
"color": color
|
6865
|
-
}, null);
|
6866
|
+
}, attrs), null);
|
6866
6867
|
}
|
6867
6868
|
return {
|
6868
6869
|
InputIcon
|
@@ -12275,12 +12276,14 @@
|
|
12275
12276
|
props: {
|
12276
12277
|
onFocus: focus,
|
12277
12278
|
onBlur: blur,
|
12278
|
-
onClick: props['onClick:clear']
|
12279
|
+
onClick: props['onClick:clear'],
|
12280
|
+
tabindex: -1
|
12279
12281
|
}
|
12280
12282
|
}) : vue.createVNode(InputIcon, {
|
12281
12283
|
"name": "clear",
|
12282
12284
|
"onFocus": focus,
|
12283
|
-
"onBlur": blur
|
12285
|
+
"onBlur": blur,
|
12286
|
+
"tabindex": -1
|
12284
12287
|
}, null)]
|
12285
12288
|
})]), [[vue.vShow, props.dirty]])]
|
12286
12289
|
}), hasAppend && vue.createVNode("div", {
|
@@ -29317,7 +29320,7 @@
|
|
29317
29320
|
};
|
29318
29321
|
});
|
29319
29322
|
}
|
29320
|
-
const version$1 = "3.8.6-master.2025-05-
|
29323
|
+
const version$1 = "3.8.6-master.2025-05-24";
|
29321
29324
|
createVuetify$1.version = version$1;
|
29322
29325
|
|
29323
29326
|
// Vue's inject() can only be used in setup
|
@@ -29342,7 +29345,7 @@
|
|
29342
29345
|
...options
|
29343
29346
|
});
|
29344
29347
|
};
|
29345
|
-
const version = "3.8.6-master.2025-05-
|
29348
|
+
const version = "3.8.6-master.2025-05-24";
|
29346
29349
|
createVuetify.version = version;
|
29347
29350
|
|
29348
29351
|
exports.blueprints = index;
|