@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.
@@ -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
  */
@@ -8724,7 +8724,22 @@
8724
8724
  parents: parents.value,
8725
8725
  event
8726
8726
  });
8727
- newActivated && (activated.value = newActivated);
8727
+ if (newActivated.size !== activated.value.size) {
8728
+ activated.value = newActivated;
8729
+ } else {
8730
+ for (const value of newActivated) {
8731
+ if (!activated.value.has(value)) {
8732
+ activated.value = newActivated;
8733
+ return;
8734
+ }
8735
+ }
8736
+ for (const value of activated.value) {
8737
+ if (!newActivated.has(value)) {
8738
+ activated.value = newActivated;
8739
+ return;
8740
+ }
8741
+ }
8742
+ }
8728
8743
  },
8729
8744
  children,
8730
8745
  parents,
@@ -30174,11 +30189,6 @@
30174
30189
  }
30175
30190
  }
30176
30191
  return () => slots.default?.() ?? props.items?.map(item => {
30177
- if (item.type === 'divider') {
30178
- return slots.divider?.({
30179
- props: item.props
30180
- }) ?? vue.createVNode(VDivider, item.props, null);
30181
- }
30182
30192
  const {
30183
30193
  children,
30184
30194
  props: itemProps
@@ -30277,7 +30287,7 @@
30277
30287
  collapseIcon: '$treeviewCollapse',
30278
30288
  expandIcon: '$treeviewExpand',
30279
30289
  slim: true
30280
- }), ['nav', 'openStrategy']),
30290
+ }), ['itemType', 'nav', 'openStrategy']),
30281
30291
  modelValue: {
30282
30292
  type: Array,
30283
30293
  default: () => []
@@ -30897,7 +30907,7 @@
30897
30907
  goTo
30898
30908
  };
30899
30909
  }
30900
- const version$1 = "3.7.12-master.2025-02-12";
30910
+ const version$1 = "3.7.12-master.2025-02-14";
30901
30911
  createVuetify$1.version = version$1;
30902
30912
 
30903
30913
  // Vue's inject() can only be used in setup
@@ -31150,7 +31160,7 @@
31150
31160
 
31151
31161
  /* eslint-disable local-rules/sort-imports */
31152
31162
 
31153
- const version = "3.7.12-master.2025-02-12";
31163
+ const version = "3.7.12-master.2025-02-14";
31154
31164
 
31155
31165
  /* eslint-disable local-rules/sort-imports */
31156
31166