@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.
@@ -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<any, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<any>, {} | {
1004
- [x: string]: any;
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
 
@@ -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 @@ 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 computedId = computed(() => id.value ?? Symbol(getUid()));
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-dev-20230206.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-dev-20230206.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] : {};