@vuetify/nightly 3.7.5-master.2024-12-16 → 3.7.5-master.2024-12-17
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 +3206 -3206
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +176 -176
- package/dist/json/web-types.json +5804 -5804
- package/dist/vuetify-labs.css +4831 -4831
- package/dist/vuetify-labs.esm.js +16 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +16 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3008 -3008
- package/dist/vuetify.d.ts +66 -66
- package/dist/vuetify.esm.js +16 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +16 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListItem.mjs +14 -8
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +66 -66
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.5-master.2024-12-
|
2
|
+
* Vuetify v3.7.5-master.2024-12-17
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -8954,16 +8954,22 @@
|
|
8954
8954
|
color: isActive.value ? color.value ?? props.baseColor : props.baseColor,
|
8955
8955
|
variant: props.variant
|
8956
8956
|
}));
|
8957
|
+
|
8958
|
+
// useNestedItem doesn't call register until beforeMount,
|
8959
|
+
// so this can't be an immediate watcher as we don't know parent yet
|
8957
8960
|
vue.watch(() => link.isActive?.value, val => {
|
8958
|
-
if (val
|
8961
|
+
if (!val) return;
|
8962
|
+
handleActiveLink();
|
8963
|
+
});
|
8964
|
+
vue.onBeforeMount(() => {
|
8965
|
+
if (link.isActive?.value) handleActiveLink();
|
8966
|
+
});
|
8967
|
+
function handleActiveLink() {
|
8968
|
+
if (parent.value != null) {
|
8959
8969
|
root.open(parent.value, true);
|
8960
8970
|
}
|
8961
|
-
|
8962
|
-
|
8963
|
-
}
|
8964
|
-
}, {
|
8965
|
-
immediate: true
|
8966
|
-
});
|
8971
|
+
openOnSelect(true);
|
8972
|
+
}
|
8967
8973
|
const {
|
8968
8974
|
themeClasses
|
8969
8975
|
} = provideTheme(props);
|
@@ -30744,7 +30750,7 @@
|
|
30744
30750
|
goTo
|
30745
30751
|
};
|
30746
30752
|
}
|
30747
|
-
const version$1 = "3.7.5-master.2024-12-
|
30753
|
+
const version$1 = "3.7.5-master.2024-12-17";
|
30748
30754
|
createVuetify$1.version = version$1;
|
30749
30755
|
|
30750
30756
|
// Vue's inject() can only be used in setup
|
@@ -30997,7 +31003,7 @@
|
|
30997
31003
|
|
30998
31004
|
/* eslint-disable local-rules/sort-imports */
|
30999
31005
|
|
31000
|
-
const version = "3.7.5-master.2024-12-
|
31006
|
+
const version = "3.7.5-master.2024-12-17";
|
31001
31007
|
|
31002
31008
|
/* eslint-disable local-rules/sort-imports */
|
31003
31009
|
|