@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.d.ts
CHANGED
@@ -1000,8 +1000,20 @@ declare const VAppBarNavIcon: vue.DefineComponent<{
|
|
1000
1000
|
}>;
|
1001
1001
|
declare type VAppBarNavIcon = InstanceType<typeof VAppBarNavIcon>;
|
1002
1002
|
|
1003
|
-
declare const VAppBarTitle: vue.DefineComponent<
|
1004
|
-
|
1003
|
+
declare const VAppBarTitle: vue.DefineComponent<{
|
1004
|
+
tag: {
|
1005
|
+
type: StringConstructor;
|
1006
|
+
default: string;
|
1007
|
+
};
|
1008
|
+
text: StringConstructor;
|
1009
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
1010
|
+
tag: {
|
1011
|
+
type: StringConstructor;
|
1012
|
+
default: string;
|
1013
|
+
};
|
1014
|
+
text: StringConstructor;
|
1015
|
+
}>>, {
|
1016
|
+
tag: string;
|
1005
1017
|
}>;
|
1006
1018
|
declare type VAppBarTitle = InstanceType<typeof VAppBarTitle>;
|
1007
1019
|
|
package/dist/vuetify-labs.esm.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 @@ const makeTagProps = propsFactory({
|
|
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 @@ const VToolbarItems = defineComponent({
|
|
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 @@ const VChip = defineComponent({
|
|
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 @@ const VChip = defineComponent({
|
|
6974
6976
|
}, {
|
6975
6977
|
default: () => [createVNode("div", {
|
6976
6978
|
"class": "v-chip__close",
|
6979
|
+
"aria-label": t(props.closeLabel),
|
6977
6980
|
"onClick": onCloseClick
|
6978
6981
|
}, [slots.close ? slots.close() : createVNode(VIcon, null, null)])]
|
6979
6982
|
})]
|
@@ -7459,7 +7462,8 @@ const useNested = props => {
|
|
7459
7462
|
};
|
7460
7463
|
const useNestedItem = (id, isGroup) => {
|
7461
7464
|
const parent = inject$1(VNestedSymbol, emptyNested);
|
7462
|
-
const
|
7465
|
+
const uidSymbol = Symbol(getUid());
|
7466
|
+
const computedId = computed(() => id.value ?? uidSymbol);
|
7463
7467
|
const item = {
|
7464
7468
|
...parent,
|
7465
7469
|
id: computedId,
|
@@ -20214,7 +20218,7 @@ function createVuetify$1() {
|
|
20214
20218
|
locale
|
20215
20219
|
};
|
20216
20220
|
}
|
20217
|
-
const version$1 = "4.0.0-
|
20221
|
+
const version$1 = "4.0.0-master-20230207.0";
|
20218
20222
|
createVuetify$1.version = version$1;
|
20219
20223
|
|
20220
20224
|
// Vue's inject() can only be used in setup
|
@@ -20227,7 +20231,7 @@ function inject(key) {
|
|
20227
20231
|
}
|
20228
20232
|
}
|
20229
20233
|
|
20230
|
-
const version = "4.0.0-
|
20234
|
+
const version = "4.0.0-master-20230207.0";
|
20231
20235
|
|
20232
20236
|
const createVuetify = function () {
|
20233
20237
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|