@vuetify/nightly 3.7.0-beta.1-dev.2024-08-01 → 3.7.0-beta.1-dev.2024-08-08
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/json/attributes.json +4 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +150 -150
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +22 -1
- package/dist/vuetify-labs.css +3157 -3157
- package/dist/vuetify-labs.d.ts +21 -0
- package/dist/vuetify-labs.esm.js +18 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1198 -1198
- package/dist/vuetify.d.ts +46 -46
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VTreeview/VTreeview.mjs +15 -2
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +21 -0
- package/lib/labs/components.d.mts +21 -0
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.0-beta.1-dev.2024-08-
|
2
|
+
* Vuetify v3.7.0-beta.1-dev.2024-08-08
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -29746,7 +29746,11 @@
|
|
29746
29746
|
collapseIcon: '$treeviewCollapse',
|
29747
29747
|
expandIcon: '$treeviewExpand',
|
29748
29748
|
slim: true
|
29749
|
-
}), ['nav', 'openStrategy'])
|
29749
|
+
}), ['nav', 'openStrategy']),
|
29750
|
+
modelValue: {
|
29751
|
+
type: Array,
|
29752
|
+
default: () => []
|
29753
|
+
}
|
29750
29754
|
}, 'VTreeview');
|
29751
29755
|
const VTreeview = genericComponent()({
|
29752
29756
|
name: 'VTreeview',
|
@@ -29755,6 +29759,7 @@
|
|
29755
29759
|
'update:opened': val => true,
|
29756
29760
|
'update:activated': val => true,
|
29757
29761
|
'update:selected': val => true,
|
29762
|
+
'update:modelValue': val => true,
|
29758
29763
|
'click:open': value => true,
|
29759
29764
|
'click:select': value => true
|
29760
29765
|
},
|
@@ -29769,7 +29774,15 @@
|
|
29769
29774
|
const baseColor = vue.toRef(props, 'baseColor');
|
29770
29775
|
const color = vue.toRef(props, 'color');
|
29771
29776
|
const activated = useProxiedModel(props, 'activated');
|
29772
|
-
const
|
29777
|
+
const model = useProxiedModel(props, 'modelValue');
|
29778
|
+
const _selected = useProxiedModel(props, 'selected', props.modelValue);
|
29779
|
+
const selected = vue.computed({
|
29780
|
+
get: () => _selected.value,
|
29781
|
+
set(val) {
|
29782
|
+
_selected.value = val;
|
29783
|
+
model.value = val;
|
29784
|
+
}
|
29785
|
+
});
|
29773
29786
|
const vListRef = vue.ref();
|
29774
29787
|
const opened = vue.computed(() => props.openAll ? openAll(items.value) : props.opened);
|
29775
29788
|
const flatItems = vue.computed(() => flatten(items.value));
|
@@ -30360,7 +30373,7 @@
|
|
30360
30373
|
goTo
|
30361
30374
|
};
|
30362
30375
|
}
|
30363
|
-
const version$1 = "3.7.0-beta.1-dev.2024-08-
|
30376
|
+
const version$1 = "3.7.0-beta.1-dev.2024-08-08";
|
30364
30377
|
createVuetify$1.version = version$1;
|
30365
30378
|
|
30366
30379
|
// Vue's inject() can only be used in setup
|
@@ -30613,7 +30626,7 @@
|
|
30613
30626
|
|
30614
30627
|
/* eslint-disable local-rules/sort-imports */
|
30615
30628
|
|
30616
|
-
const version = "3.7.0-beta.1-dev.2024-08-
|
30629
|
+
const version = "3.7.0-beta.1-dev.2024-08-08";
|
30617
30630
|
|
30618
30631
|
/* eslint-disable local-rules/sort-imports */
|
30619
30632
|
|