@vuetify/nightly 3.6.9-master.2024-06-18 → 3.6.10-master.2024-06-20

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.6.9-master.2024-06-18
2
+ * Vuetify v3.6.10-master.2024-06-20
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -29653,8 +29653,6 @@
29653
29653
  ...omit(makeVListProps({
29654
29654
  collapseIcon: '$treeviewCollapse',
29655
29655
  expandIcon: '$treeviewExpand',
29656
- selectStrategy: 'classic',
29657
- openStrategy: 'multiple',
29658
29656
  slim: true
29659
29657
  }), ['nav'])
29660
29658
  }, 'VTreeview');
@@ -29672,17 +29670,16 @@
29672
29670
  let {
29673
29671
  slots
29674
29672
  } = _ref;
29675
- const vm = getCurrentInstance('VTreeview');
29676
29673
  const {
29677
29674
  items
29678
29675
  } = useListItems(props);
29679
29676
  const activeColor = vue.toRef(props, 'activeColor');
29680
29677
  const baseColor = vue.toRef(props, 'baseColor');
29681
29678
  const color = vue.toRef(props, 'color');
29682
- const opened = useProxiedModel(props, 'opened');
29683
29679
  const activated = useProxiedModel(props, 'activated');
29684
29680
  const selected = useProxiedModel(props, 'selected');
29685
29681
  const vListRef = vue.ref();
29682
+ const opened = vue.computed(() => props.openAll ? openAll(items.value) : props.opened);
29686
29683
  const flatItems = vue.computed(() => flatten(items.value));
29687
29684
  const search = vue.toRef(props, 'search');
29688
29685
  const {
@@ -29716,11 +29713,6 @@
29716
29713
  }
29717
29714
  return arr;
29718
29715
  }
29719
- vue.watch(() => props.openAll, val => {
29720
- opened.value = val ? openAll(items.value) : [];
29721
- }, {
29722
- immediate: true
29723
- });
29724
29716
  function openAll(item) {
29725
29717
  let ids = [];
29726
29718
  for (const i of item) {
@@ -29755,13 +29747,14 @@
29755
29747
  }
29756
29748
  });
29757
29749
  useRender(() => {
29758
- const listProps = VList.filterProps(vm.vnode.props);
29750
+ const listProps = VList.filterProps(props);
29759
29751
  const treeviewChildrenProps = VTreeviewChildren.filterProps(props);
29760
29752
  return vue.createVNode(VList, vue.mergeProps({
29761
29753
  "ref": vListRef
29762
29754
  }, listProps, {
29763
29755
  "class": ['v-treeview', props.class],
29764
29756
  "style": props.style,
29757
+ "opened": opened.value,
29765
29758
  "activated": activated.value,
29766
29759
  "onUpdate:activated": $event => activated.value = $event,
29767
29760
  "selected": selected.value,
@@ -30273,7 +30266,7 @@
30273
30266
  goTo
30274
30267
  };
30275
30268
  }
30276
- const version$1 = "3.6.9-master.2024-06-18";
30269
+ const version$1 = "3.6.10-master.2024-06-20";
30277
30270
  createVuetify$1.version = version$1;
30278
30271
 
30279
30272
  // Vue's inject() can only be used in setup
@@ -30526,7 +30519,7 @@
30526
30519
 
30527
30520
  /* eslint-disable local-rules/sort-imports */
30528
30521
 
30529
- const version = "3.6.9-master.2024-06-18";
30522
+ const version = "3.6.10-master.2024-06-20";
30530
30523
 
30531
30524
  /* eslint-disable local-rules/sort-imports */
30532
30525