@vuetify/nightly 3.9.0-master.2025-07-10 → 3.9.0-master.2025-07-11
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 +5 -3
- package/dist/json/attributes.json +831 -831
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +180 -180
- package/dist/json/web-types.json +1494 -1494
- package/dist/vuetify-labs.cjs +10 -8
- package/dist/vuetify-labs.css +6807 -6807
- package/dist/vuetify-labs.d.ts +60 -60
- package/dist/vuetify-labs.esm.js +10 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +9 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4049 -4049
- package/dist/vuetify.d.ts +60 -60
- package/dist/vuetify.esm.js +9 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VField/VField.js +5 -2
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/VFieldLabel.js +1 -2
- package/lib/components/VField/VFieldLabel.js.map +1 -1
- package/lib/composables/dateFormat.js +1 -1
- package/lib/composables/dateFormat.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +60 -60
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.0-master.2025-07-
|
2
|
+
* Vuetify v3.9.0-master.2025-07-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -12269,8 +12269,7 @@
|
|
12269
12269
|
"class": vue.normalizeClass(['v-field-label', {
|
12270
12270
|
'v-field-label--floating': props.floating
|
12271
12271
|
}, props.class]),
|
12272
|
-
"style": vue.normalizeStyle(props.style)
|
12273
|
-
"aria-hidden": props.floating || undefined
|
12272
|
+
"style": vue.normalizeStyle(props.style)
|
12274
12273
|
}, slots));
|
12275
12274
|
return {};
|
12276
12275
|
}
|
@@ -12490,6 +12489,7 @@
|
|
12490
12489
|
"class": vue.normalizeClass([textColorClasses.value]),
|
12491
12490
|
"floating": true,
|
12492
12491
|
"for": id.value,
|
12492
|
+
"aria-hidden": !isActive.value,
|
12493
12493
|
"style": vue.normalizeStyle(textColorStyles.value)
|
12494
12494
|
}, {
|
12495
12495
|
default: () => [label()]
|
@@ -12560,7 +12560,8 @@
|
|
12560
12560
|
}, [vue.createVNode(VFieldLabel, {
|
12561
12561
|
"ref": floatingLabelRef,
|
12562
12562
|
"floating": true,
|
12563
|
-
"for": id.value
|
12563
|
+
"for": id.value,
|
12564
|
+
"aria-hidden": !isActive.value
|
12564
12565
|
}, {
|
12565
12566
|
default: () => [label()]
|
12566
12567
|
})]), vue.createElementVNode("div", {
|
@@ -12568,7 +12569,8 @@
|
|
12568
12569
|
}, null)]), isPlainOrUnderlined.value && hasFloatingLabel.value && vue.createVNode(VFieldLabel, {
|
12569
12570
|
"ref": floatingLabelRef,
|
12570
12571
|
"floating": true,
|
12571
|
-
"for": id.value
|
12572
|
+
"for": id.value,
|
12573
|
+
"aria-hidden": !isActive.value
|
12572
12574
|
}, {
|
12573
12575
|
default: () => [label()]
|
12574
12576
|
})])]);
|
@@ -31396,7 +31398,7 @@
|
|
31396
31398
|
};
|
31397
31399
|
});
|
31398
31400
|
}
|
31399
|
-
const version$1 = "3.9.0-master.2025-07-
|
31401
|
+
const version$1 = "3.9.0-master.2025-07-11";
|
31400
31402
|
createVuetify$1.version = version$1;
|
31401
31403
|
|
31402
31404
|
// Vue's inject() can only be used in setup
|
@@ -31421,7 +31423,7 @@
|
|
31421
31423
|
...options
|
31422
31424
|
});
|
31423
31425
|
};
|
31424
|
-
const version = "3.9.0-master.2025-07-
|
31426
|
+
const version = "3.9.0-master.2025-07-11";
|
31425
31427
|
createVuetify.version = version;
|
31426
31428
|
|
31427
31429
|
exports.blueprints = index;
|