@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/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v4.0.0-master-20230206.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
  })]
@@ -18459,7 +18462,7 @@
18459
18462
  locale
18460
18463
  };
18461
18464
  }
18462
- const version$1 = "4.0.0-master-20230206.0";
18465
+ const version$1 = "4.0.0-master-20230207.0";
18463
18466
  createVuetify$1.version = version$1;
18464
18467
 
18465
18468
  // Vue's inject() can only be used in setup
@@ -18480,7 +18483,7 @@
18480
18483
  ...options
18481
18484
  });
18482
18485
  };
18483
- const version = "4.0.0-master-20230206.0";
18486
+ const version = "4.0.0-master-20230207.0";
18484
18487
  createVuetify.version = version;
18485
18488
 
18486
18489
  exports.components = components;