@vuetify/nightly 3.7.12-master.2025-02-12 → 3.7.12-master.2025-02-14

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.
@@ -56733,7 +56733,7 @@ declare const VTabs: {
56733
56733
  item: (arg: VTabsSlot<unknown>) => vue.VNode[];
56734
56734
  window: () => vue.VNode[];
56735
56735
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
56736
- items?: T;
56736
+ items?: T[];
56737
56737
  }, slots: VTabsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
56738
56738
  tag: {
56739
56739
  type: StringConstructor;
@@ -80983,7 +80983,6 @@ declare const VTreeview: {
80983
80983
  itemValue: SelectItemKey;
80984
80984
  itemChildren: SelectItemKey;
80985
80985
  itemProps: SelectItemKey;
80986
- itemType: string;
80987
80986
  loadingIcon: string;
80988
80987
  openAll: boolean;
80989
80988
  } & {
@@ -81082,7 +81081,6 @@ declare const VTreeview: {
81082
81081
  itemValue: SelectItemKey;
81083
81082
  itemChildren: SelectItemKey;
81084
81083
  itemProps: SelectItemKey;
81085
- itemType: string;
81086
81084
  loadingIcon: string;
81087
81085
  openAll: boolean;
81088
81086
  } & {
@@ -81167,7 +81165,6 @@ declare const VTreeview: {
81167
81165
  itemValue: SelectItemKey;
81168
81166
  itemChildren: SelectItemKey;
81169
81167
  itemProps: SelectItemKey;
81170
- itemType: string;
81171
81168
  openOnClick: boolean;
81172
81169
  loadingIcon: string;
81173
81170
  openAll: boolean;
@@ -81229,7 +81226,6 @@ declare const VTreeview: {
81229
81226
  itemValue: SelectItemKey;
81230
81227
  itemChildren: SelectItemKey;
81231
81228
  itemProps: SelectItemKey;
81232
- itemType: string;
81233
81229
  loadingIcon: string;
81234
81230
  openAll: boolean;
81235
81231
  } & {
@@ -81314,7 +81310,6 @@ declare const VTreeview: {
81314
81310
  itemValue: SelectItemKey;
81315
81311
  itemChildren: SelectItemKey;
81316
81312
  itemProps: SelectItemKey;
81317
- itemType: string;
81318
81313
  openOnClick: boolean;
81319
81314
  loadingIcon: string;
81320
81315
  openAll: boolean;
@@ -81347,7 +81342,6 @@ declare const VTreeview: {
81347
81342
  itemValue: SelectItemKey;
81348
81343
  itemChildren: SelectItemKey;
81349
81344
  itemProps: SelectItemKey;
81350
- itemType: string;
81351
81345
  loadingIcon: string;
81352
81346
  openAll: boolean;
81353
81347
  } & {
@@ -81447,7 +81441,6 @@ declare const VTreeview: {
81447
81441
  itemValue: SelectItemKey;
81448
81442
  itemChildren: SelectItemKey;
81449
81443
  itemProps: SelectItemKey;
81450
- itemType: string;
81451
81444
  openOnClick: boolean;
81452
81445
  loadingIcon: string;
81453
81446
  openAll: boolean;
@@ -81589,10 +81582,6 @@ declare const VTreeview: {
81589
81582
  value: boolean;
81590
81583
  path: unknown[];
81591
81584
  }) => void>;
81592
- itemType: {
81593
- type: StringConstructor;
81594
- default: string;
81595
- };
81596
81585
  loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
81597
81586
  loadingIcon: {
81598
81587
  type: StringConstructor;
@@ -81732,10 +81721,6 @@ declare const VTreeview: {
81732
81721
  value: boolean;
81733
81722
  path: unknown[];
81734
81723
  }) => void>;
81735
- itemType: {
81736
- type: StringConstructor;
81737
- default: string;
81738
- };
81739
81724
  loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
81740
81725
  loadingIcon: {
81741
81726
  type: StringConstructor;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.12-master.2025-02-12
2
+ * Vuetify v3.7.12-master.2025-02-14
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -8720,7 +8720,22 @@ const useNested = props => {
8720
8720
  parents: parents.value,
8721
8721
  event
8722
8722
  });
8723
- newActivated && (activated.value = newActivated);
8723
+ if (newActivated.size !== activated.value.size) {
8724
+ activated.value = newActivated;
8725
+ } else {
8726
+ for (const value of newActivated) {
8727
+ if (!activated.value.has(value)) {
8728
+ activated.value = newActivated;
8729
+ return;
8730
+ }
8731
+ }
8732
+ for (const value of activated.value) {
8733
+ if (!newActivated.has(value)) {
8734
+ activated.value = newActivated;
8735
+ return;
8736
+ }
8737
+ }
8738
+ }
8724
8739
  },
8725
8740
  children,
8726
8741
  parents,
@@ -30170,11 +30185,6 @@ const VTreeviewChildren = genericComponent()({
30170
30185
  }
30171
30186
  }
30172
30187
  return () => slots.default?.() ?? props.items?.map(item => {
30173
- if (item.type === 'divider') {
30174
- return slots.divider?.({
30175
- props: item.props
30176
- }) ?? createVNode(VDivider, item.props, null);
30177
- }
30178
30188
  const {
30179
30189
  children,
30180
30190
  props: itemProps
@@ -30273,7 +30283,7 @@ const makeVTreeviewProps = propsFactory({
30273
30283
  collapseIcon: '$treeviewCollapse',
30274
30284
  expandIcon: '$treeviewExpand',
30275
30285
  slim: true
30276
- }), ['nav', 'openStrategy']),
30286
+ }), ['itemType', 'nav', 'openStrategy']),
30277
30287
  modelValue: {
30278
30288
  type: Array,
30279
30289
  default: () => []
@@ -30893,7 +30903,7 @@ function createVuetify$1() {
30893
30903
  goTo
30894
30904
  };
30895
30905
  }
30896
- const version$1 = "3.7.12-master.2025-02-12";
30906
+ const version$1 = "3.7.12-master.2025-02-14";
30897
30907
  createVuetify$1.version = version$1;
30898
30908
 
30899
30909
  // Vue's inject() can only be used in setup
@@ -31146,7 +31156,7 @@ var index = /*#__PURE__*/Object.freeze({
31146
31156
 
31147
31157
  /* eslint-disable local-rules/sort-imports */
31148
31158
 
31149
- const version = "3.7.12-master.2025-02-12";
31159
+ const version = "3.7.12-master.2025-02-14";
31150
31160
 
31151
31161
  /* eslint-disable local-rules/sort-imports */
31152
31162