@vuetify/nightly 3.7.1-master.2024-09-06 → 3.7.1-master.2024-09-10

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.1-master.2024-09-06
2
+ * Vuetify v3.7.1-master.2024-09-10
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -8209,7 +8209,6 @@ const leafSingleActiveStrategy = mandatory => {
8209
8209
  return strategy;
8210
8210
  };
8211
8211
 
8212
- // Utilities
8213
8212
  const singleOpenStrategy = {
8214
8213
  open: _ref => {
8215
8214
  let {
@@ -8243,11 +8242,11 @@ const multipleOpenStrategy = {
8243
8242
  parents
8244
8243
  } = _ref2;
8245
8244
  if (value) {
8246
- let parent = toRaw(parents.get(id));
8245
+ let parent = parents.get(id);
8247
8246
  opened.add(id);
8248
8247
  while (parent != null && parent !== id) {
8249
8248
  opened.add(parent);
8250
- parent = toRaw(parents.get(parent));
8249
+ parent = parents.get(parent);
8251
8250
  }
8252
8251
  return opened;
8253
8252
  } else {
@@ -8508,7 +8507,7 @@ const useNested = props => {
8508
8507
  let isUnmounted = false;
8509
8508
  const children = ref(new Map());
8510
8509
  const parents = ref(new Map());
8511
- const opened = useProxiedModel(props, 'opened', props.opened, v => new Set(toRaw(v)), v => [...v.values()]);
8510
+ const opened = useProxiedModel(props, 'opened', props.opened, v => new Set(v), v => [...v.values()]);
8512
8511
  const activeStrategy = computed(() => {
8513
8512
  if (typeof props.activeStrategy === 'object') return props.activeStrategy;
8514
8513
  if (typeof props.activeStrategy === 'function') return props.activeStrategy(props.mandatory);
@@ -8692,9 +8691,9 @@ const useNestedItem = (id, isGroup) => {
8692
8691
  const item = {
8693
8692
  ...parent,
8694
8693
  id: computedId,
8695
- open: (open, e) => parent.root.open(toRaw(computedId.value), open, e),
8694
+ open: (open, e) => parent.root.open(computedId.value, open, e),
8696
8695
  openOnSelect: (open, e) => parent.root.openOnSelect(computedId.value, open, e),
8697
- isOpen: computed(() => parent.root.opened.value.has(toRaw(computedId.value))),
8696
+ isOpen: computed(() => parent.root.opened.value.has(computedId.value)),
8698
8697
  parent: computed(() => parent.root.parents.value.get(computedId.value)),
8699
8698
  activate: (activated, e) => parent.root.activate(computedId.value, activated, e),
8700
8699
  isActivated: computed(() => parent.root.activated.value.has(toRaw(computedId.value))),
@@ -30375,7 +30374,7 @@ function createVuetify$1() {
30375
30374
  goTo
30376
30375
  };
30377
30376
  }
30378
- const version$1 = "3.7.1-master.2024-09-06";
30377
+ const version$1 = "3.7.1-master.2024-09-10";
30379
30378
  createVuetify$1.version = version$1;
30380
30379
 
30381
30380
  // Vue's inject() can only be used in setup
@@ -30628,7 +30627,7 @@ var index = /*#__PURE__*/Object.freeze({
30628
30627
 
30629
30628
  /* eslint-disable local-rules/sort-imports */
30630
30629
 
30631
- const version = "3.7.1-master.2024-09-06";
30630
+ const version = "3.7.1-master.2024-09-10";
30632
30631
 
30633
30632
  /* eslint-disable local-rules/sort-imports */
30634
30633