@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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -8446,7 +8446,6 @@
8446
8446
  return strategy;
8447
8447
  };
8448
8448
 
8449
- // Utilities
8450
8449
  const singleOpenStrategy = {
8451
8450
  open: _ref => {
8452
8451
  let {
@@ -8480,11 +8479,11 @@
8480
8479
  parents
8481
8480
  } = _ref2;
8482
8481
  if (value) {
8483
- let parent = vue.toRaw(parents.get(id));
8482
+ let parent = parents.get(id);
8484
8483
  opened.add(id);
8485
8484
  while (parent != null && parent !== id) {
8486
8485
  opened.add(parent);
8487
- parent = vue.toRaw(parents.get(parent));
8486
+ parent = parents.get(parent);
8488
8487
  }
8489
8488
  return opened;
8490
8489
  } else {
@@ -8745,7 +8744,7 @@
8745
8744
  let isUnmounted = false;
8746
8745
  const children = vue.ref(new Map());
8747
8746
  const parents = vue.ref(new Map());
8748
- const opened = useProxiedModel(props, 'opened', props.opened, v => new Set(vue.toRaw(v)), v => [...v.values()]);
8747
+ const opened = useProxiedModel(props, 'opened', props.opened, v => new Set(v), v => [...v.values()]);
8749
8748
  const activeStrategy = vue.computed(() => {
8750
8749
  if (typeof props.activeStrategy === 'object') return props.activeStrategy;
8751
8750
  if (typeof props.activeStrategy === 'function') return props.activeStrategy(props.mandatory);
@@ -8929,9 +8928,9 @@
8929
8928
  const item = {
8930
8929
  ...parent,
8931
8930
  id: computedId,
8932
- open: (open, e) => parent.root.open(vue.toRaw(computedId.value), open, e),
8931
+ open: (open, e) => parent.root.open(computedId.value, open, e),
8933
8932
  openOnSelect: (open, e) => parent.root.openOnSelect(computedId.value, open, e),
8934
- isOpen: vue.computed(() => parent.root.opened.value.has(vue.toRaw(computedId.value))),
8933
+ isOpen: vue.computed(() => parent.root.opened.value.has(computedId.value)),
8935
8934
  parent: vue.computed(() => parent.root.parents.value.get(computedId.value)),
8936
8935
  activate: (activated, e) => parent.root.activate(computedId.value, activated, e),
8937
8936
  isActivated: vue.computed(() => parent.root.activated.value.has(vue.toRaw(computedId.value))),
@@ -28238,7 +28237,7 @@
28238
28237
  goTo
28239
28238
  };
28240
28239
  }
28241
- const version$1 = "3.7.1-master.2024-09-06";
28240
+ const version$1 = "3.7.1-master.2024-09-10";
28242
28241
  createVuetify$1.version = version$1;
28243
28242
 
28244
28243
  // Vue's inject() can only be used in setup
@@ -28263,7 +28262,7 @@
28263
28262
  ...options
28264
28263
  });
28265
28264
  };
28266
- const version = "3.7.1-master.2024-09-06";
28265
+ const version = "3.7.1-master.2024-09-10";
28267
28266
  createVuetify.version = version;
28268
28267
 
28269
28268
  exports.blueprints = index;