@vuetify/nightly 4.0.0-dev-20230206.0 → 4.0.0-master-20230207.0
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 -2
- package/dist/json/attributes.json +67 -59
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +4 -1
- package/dist/json/web-types.json +83 -63
- package/dist/vuetify-labs.css +1672 -1672
- package/dist/vuetify-labs.d.ts +14 -2
- package/dist/vuetify-labs.esm.js +15 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +15 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +187 -187
- package/dist/vuetify.d.ts +15 -3
- package/dist/vuetify.esm.js +15 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +483 -483
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBarTitle.mjs +3 -4
- package/lib/components/VAppBar/VAppBarTitle.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +14 -2
- package/lib/components/VChip/VChip.mjs +6 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbarTitle.mjs +6 -5
- package/lib/components/VToolbar/VToolbarTitle.mjs.map +1 -1
- package/lib/components/index.d.ts +14 -2
- package/lib/composables/nested/nested.mjs +2 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-
|
2
|
+
* Vuetify v4.0.0-master-20230207.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -2929,12 +2929,13 @@
|
|
2929
2929
|
|
2930
2930
|
// Types
|
2931
2931
|
|
2932
|
+
const makeVToolbarTitleProps = propsFactory({
|
2933
|
+
text: String,
|
2934
|
+
...makeTagProps()
|
2935
|
+
}, 'v-toolbar-title');
|
2932
2936
|
const VToolbarTitle = genericComponent()({
|
2933
2937
|
name: 'VToolbarTitle',
|
2934
|
-
props:
|
2935
|
-
text: String,
|
2936
|
-
...makeTagProps()
|
2937
|
-
},
|
2938
|
+
props: makeVToolbarTitleProps(),
|
2938
2939
|
setup(props, _ref) {
|
2939
2940
|
let {
|
2940
2941
|
slots
|
@@ -5014,9 +5015,7 @@
|
|
5014
5015
|
|
5015
5016
|
const VAppBarTitle = defineComponent({
|
5016
5017
|
name: 'VAppBarTitle',
|
5017
|
-
props:
|
5018
|
-
...VToolbarTitle.props
|
5019
|
-
},
|
5018
|
+
props: makeVToolbarTitleProps(),
|
5020
5019
|
setup(props, _ref) {
|
5021
5020
|
let {
|
5022
5021
|
slots
|
@@ -6842,6 +6841,9 @@
|
|
6842
6841
|
emit,
|
6843
6842
|
slots
|
6844
6843
|
} = _ref;
|
6844
|
+
const {
|
6845
|
+
t
|
6846
|
+
} = useLocale();
|
6845
6847
|
const {
|
6846
6848
|
borderClasses
|
6847
6849
|
} = useBorder(props);
|
@@ -6978,6 +6980,7 @@
|
|
6978
6980
|
}, {
|
6979
6981
|
default: () => [vue.createVNode("div", {
|
6980
6982
|
"class": "v-chip__close",
|
6983
|
+
"aria-label": t(props.closeLabel),
|
6981
6984
|
"onClick": onCloseClick
|
6982
6985
|
}, [slots.close ? slots.close() : vue.createVNode(VIcon, null, null)])]
|
6983
6986
|
})]
|
@@ -7463,7 +7466,8 @@
|
|
7463
7466
|
};
|
7464
7467
|
const useNestedItem = (id, isGroup) => {
|
7465
7468
|
const parent = vue.inject(VNestedSymbol, emptyNested);
|
7466
|
-
const
|
7469
|
+
const uidSymbol = Symbol(getUid());
|
7470
|
+
const computedId = vue.computed(() => id.value ?? uidSymbol);
|
7467
7471
|
const item = {
|
7468
7472
|
...parent,
|
7469
7473
|
id: computedId,
|
@@ -20218,7 +20222,7 @@
|
|
20218
20222
|
locale
|
20219
20223
|
};
|
20220
20224
|
}
|
20221
|
-
const version$1 = "4.0.0-
|
20225
|
+
const version$1 = "4.0.0-master-20230207.0";
|
20222
20226
|
createVuetify$1.version = version$1;
|
20223
20227
|
|
20224
20228
|
// Vue's inject() can only be used in setup
|
@@ -20231,7 +20235,7 @@
|
|
20231
20235
|
}
|
20232
20236
|
}
|
20233
20237
|
|
20234
|
-
const version = "4.0.0-
|
20238
|
+
const version = "4.0.0-master-20230207.0";
|
20235
20239
|
|
20236
20240
|
const createVuetify = function () {
|
20237
20241
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|