@vuetify/nightly 3.7.12-master.2025-02-12 → 3.7.12-master.2025-02-14
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/CHANGELOG.md +17 -3
- package/dist/json/attributes.json +2844 -2848
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +136 -136
- package/dist/json/tags.json +0 -1
- package/dist/json/web-types.json +5233 -5243
- package/dist/vuetify-labs.css +4501 -4501
- package/dist/vuetify-labs.d.ts +1 -16
- package/dist/vuetify-labs.esm.js +20 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4489 -4489
- package/dist/vuetify.d.ts +49 -49
- package/dist/vuetify.esm.js +19 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +1 -1
- package/lib/components/index.d.mts +1 -1
- package/lib/composables/nested/nested.mjs +16 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +2 -8
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +0 -15
- package/lib/labs/components.d.mts +0 -15
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.12-master.2025-02-
|
2
|
+
* Vuetify v3.7.12-master.2025-02-14
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -8957,7 +8957,22 @@
|
|
8957
8957
|
parents: parents.value,
|
8958
8958
|
event
|
8959
8959
|
});
|
8960
|
-
newActivated
|
8960
|
+
if (newActivated.size !== activated.value.size) {
|
8961
|
+
activated.value = newActivated;
|
8962
|
+
} else {
|
8963
|
+
for (const value of newActivated) {
|
8964
|
+
if (!activated.value.has(value)) {
|
8965
|
+
activated.value = newActivated;
|
8966
|
+
return;
|
8967
|
+
}
|
8968
|
+
}
|
8969
|
+
for (const value of activated.value) {
|
8970
|
+
if (!newActivated.has(value)) {
|
8971
|
+
activated.value = newActivated;
|
8972
|
+
return;
|
8973
|
+
}
|
8974
|
+
}
|
8975
|
+
}
|
8961
8976
|
},
|
8962
8977
|
children,
|
8963
8978
|
parents,
|
@@ -28400,7 +28415,7 @@
|
|
28400
28415
|
goTo
|
28401
28416
|
};
|
28402
28417
|
}
|
28403
|
-
const version$1 = "3.7.12-master.2025-02-
|
28418
|
+
const version$1 = "3.7.12-master.2025-02-14";
|
28404
28419
|
createVuetify$1.version = version$1;
|
28405
28420
|
|
28406
28421
|
// Vue's inject() can only be used in setup
|
@@ -28425,7 +28440,7 @@
|
|
28425
28440
|
...options
|
28426
28441
|
});
|
28427
28442
|
};
|
28428
|
-
const version = "3.7.12-master.2025-02-
|
28443
|
+
const version = "3.7.12-master.2025-02-14";
|
28429
28444
|
createVuetify.version = version;
|
28430
28445
|
|
28431
28446
|
exports.blueprints = index;
|