@vuetify/nightly 4.0.0-master-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 +4 -2
- package/dist/json/attributes.json +67 -59
- package/dist/json/importMap.json +52 -52
- package/dist/json/tags.json +4 -1
- package/dist/json/web-types.json +83 -63
- package/dist/vuetify-labs.css +1467 -1467
- package/dist/vuetify-labs.d.ts +14 -2
- package/dist/vuetify-labs.esm.js +13 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +34 -34
- package/dist/vuetify.d.ts +28 -16
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- 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/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +14 -14
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-master-
|
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
|
})]
|
@@ -20219,7 +20222,7 @@
|
|
20219
20222
|
locale
|
20220
20223
|
};
|
20221
20224
|
}
|
20222
|
-
const version$1 = "4.0.0-master-
|
20225
|
+
const version$1 = "4.0.0-master-20230207.0";
|
20223
20226
|
createVuetify$1.version = version$1;
|
20224
20227
|
|
20225
20228
|
// Vue's inject() can only be used in setup
|
@@ -20232,7 +20235,7 @@
|
|
20232
20235
|
}
|
20233
20236
|
}
|
20234
20237
|
|
20235
|
-
const version = "4.0.0-master-
|
20238
|
+
const version = "4.0.0-master-20230207.0";
|
20236
20239
|
|
20237
20240
|
const createVuetify = function () {
|
20238
20241
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|