@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.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
|
*/
|
@@ -2925,12 +2925,13 @@
|
|
2925
2925
|
|
2926
2926
|
// Types
|
2927
2927
|
|
2928
|
+
const makeVToolbarTitleProps = propsFactory({
|
2929
|
+
text: String,
|
2930
|
+
...makeTagProps()
|
2931
|
+
}, 'v-toolbar-title');
|
2928
2932
|
const VToolbarTitle = genericComponent()({
|
2929
2933
|
name: 'VToolbarTitle',
|
2930
|
-
props:
|
2931
|
-
text: String,
|
2932
|
-
...makeTagProps()
|
2933
|
-
},
|
2934
|
+
props: makeVToolbarTitleProps(),
|
2934
2935
|
setup(props, _ref) {
|
2935
2936
|
let {
|
2936
2937
|
slots
|
@@ -5010,9 +5011,7 @@
|
|
5010
5011
|
|
5011
5012
|
const VAppBarTitle = defineComponent({
|
5012
5013
|
name: 'VAppBarTitle',
|
5013
|
-
props:
|
5014
|
-
...VToolbarTitle.props
|
5015
|
-
},
|
5014
|
+
props: makeVToolbarTitleProps(),
|
5016
5015
|
setup(props, _ref) {
|
5017
5016
|
let {
|
5018
5017
|
slots
|
@@ -6838,6 +6837,9 @@
|
|
6838
6837
|
emit,
|
6839
6838
|
slots
|
6840
6839
|
} = _ref;
|
6840
|
+
const {
|
6841
|
+
t
|
6842
|
+
} = useLocale();
|
6841
6843
|
const {
|
6842
6844
|
borderClasses
|
6843
6845
|
} = useBorder(props);
|
@@ -6974,6 +6976,7 @@
|
|
6974
6976
|
}, {
|
6975
6977
|
default: () => [vue.createVNode("div", {
|
6976
6978
|
"class": "v-chip__close",
|
6979
|
+
"aria-label": t(props.closeLabel),
|
6977
6980
|
"onClick": onCloseClick
|
6978
6981
|
}, [slots.close ? slots.close() : vue.createVNode(VIcon, null, null)])]
|
6979
6982
|
})]
|
@@ -7459,7 +7462,8 @@
|
|
7459
7462
|
};
|
7460
7463
|
const useNestedItem = (id, isGroup) => {
|
7461
7464
|
const parent = vue.inject(VNestedSymbol, emptyNested);
|
7462
|
-
const
|
7465
|
+
const uidSymbol = Symbol(getUid());
|
7466
|
+
const computedId = vue.computed(() => id.value ?? uidSymbol);
|
7463
7467
|
const item = {
|
7464
7468
|
...parent,
|
7465
7469
|
id: computedId,
|
@@ -18458,7 +18462,7 @@
|
|
18458
18462
|
locale
|
18459
18463
|
};
|
18460
18464
|
}
|
18461
|
-
const version$1 = "4.0.0-
|
18465
|
+
const version$1 = "4.0.0-master-20230207.0";
|
18462
18466
|
createVuetify$1.version = version$1;
|
18463
18467
|
|
18464
18468
|
// Vue's inject() can only be used in setup
|
@@ -18479,7 +18483,7 @@
|
|
18479
18483
|
...options
|
18480
18484
|
});
|
18481
18485
|
};
|
18482
|
-
const version = "4.0.0-
|
18486
|
+
const version = "4.0.0-master-20230207.0";
|
18483
18487
|
createVuetify.version = version;
|
18484
18488
|
|
18485
18489
|
exports.components = components;
|