@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.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
|
*/
|
@@ -9187,16 +9187,22 @@
|
|
9187
9187
|
color: isActive.value ? color.value ?? props.baseColor : props.baseColor,
|
9188
9188
|
variant: props.variant
|
9189
9189
|
}));
|
9190
|
+
|
9191
|
+
// useNestedItem doesn't call register until beforeMount,
|
9192
|
+
// so this can't be an immediate watcher as we don't know parent yet
|
9190
9193
|
vue.watch(() => link.isActive?.value, val => {
|
9191
|
-
if (val
|
9194
|
+
if (!val) return;
|
9195
|
+
handleActiveLink();
|
9196
|
+
});
|
9197
|
+
vue.onBeforeMount(() => {
|
9198
|
+
if (link.isActive?.value) handleActiveLink();
|
9199
|
+
});
|
9200
|
+
function handleActiveLink() {
|
9201
|
+
if (parent.value != null) {
|
9192
9202
|
root.open(parent.value, true);
|
9193
9203
|
}
|
9194
|
-
|
9195
|
-
|
9196
|
-
}
|
9197
|
-
}, {
|
9198
|
-
immediate: true
|
9199
|
-
});
|
9204
|
+
openOnSelect(true);
|
9205
|
+
}
|
9200
9206
|
const {
|
9201
9207
|
themeClasses
|
9202
9208
|
} = provideTheme(props);
|
@@ -28282,7 +28288,7 @@
|
|
28282
28288
|
goTo
|
28283
28289
|
};
|
28284
28290
|
}
|
28285
|
-
const version$1 = "3.7.5-master.2024-12-
|
28291
|
+
const version$1 = "3.7.5-master.2024-12-17";
|
28286
28292
|
createVuetify$1.version = version$1;
|
28287
28293
|
|
28288
28294
|
// Vue's inject() can only be used in setup
|
@@ -28307,7 +28313,7 @@
|
|
28307
28313
|
...options
|
28308
28314
|
});
|
28309
28315
|
};
|
28310
|
-
const version = "3.7.5-master.2024-12-
|
28316
|
+
const version = "3.7.5-master.2024-12-17";
|
28311
28317
|
createVuetify.version = version;
|
28312
28318
|
|
28313
28319
|
exports.blueprints = index;
|