@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/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v4.0.0-dev-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
  })]
@@ -7459,7 +7462,8 @@
7459
7462
  };
7460
7463
  const useNestedItem = (id, isGroup) => {
7461
7464
  const parent = vue.inject(VNestedSymbol, emptyNested);
7462
- const computedId = vue.computed(() => id.value ?? Symbol(getUid()));
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-dev-20230206.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-dev-20230206.0";
18486
+ const version = "4.0.0-master-20230207.0";
18483
18487
  createVuetify.version = version;
18484
18488
 
18485
18489
  exports.components = components;