@vuetify/nightly 3.7.3-master.2024-11-01 → 3.7.3-master.2024-11-04
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 +2954 -2954
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +5760 -5760
- package/dist/vuetify-labs.css +2872 -2869
- package/dist/vuetify-labs.esm.js +20 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +972 -969
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +20 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +16 -16
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnToggle/VBtnToggle.css +3 -0
- package/lib/components/VBtnToggle/VBtnToggle.sass +3 -0
- package/lib/components/VDialog/VDialog.mjs +4 -1
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +15 -6
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.3-master.2024-11-
|
2
|
+
* Vuetify v3.7.3-master.2024-11-04
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -11446,7 +11446,10 @@
|
|
11446
11446
|
}, 40);
|
11447
11447
|
}
|
11448
11448
|
});
|
11449
|
-
vue.onBeforeUnmount(() =>
|
11449
|
+
vue.onBeforeUnmount(() => {
|
11450
|
+
parent?.unregister();
|
11451
|
+
document.removeEventListener('focusin', onFocusIn);
|
11452
|
+
});
|
11450
11453
|
vue.onDeactivated(() => isActive.value = false);
|
11451
11454
|
async function onFocusIn(e) {
|
11452
11455
|
const before = e.relatedTarget;
|
@@ -11466,13 +11469,19 @@
|
|
11466
11469
|
vue.watch(isActive, val => {
|
11467
11470
|
if (val) {
|
11468
11471
|
parent?.register();
|
11469
|
-
|
11470
|
-
|
11471
|
-
|
11472
|
+
if (IN_BROWSER) {
|
11473
|
+
document.addEventListener('focusin', onFocusIn, {
|
11474
|
+
once: true
|
11475
|
+
});
|
11476
|
+
}
|
11472
11477
|
} else {
|
11473
11478
|
parent?.unregister();
|
11474
|
-
|
11479
|
+
if (IN_BROWSER) {
|
11480
|
+
document.removeEventListener('focusin', onFocusIn);
|
11481
|
+
}
|
11475
11482
|
}
|
11483
|
+
}, {
|
11484
|
+
immediate: true
|
11476
11485
|
});
|
11477
11486
|
function onClickOutside(e) {
|
11478
11487
|
parent?.closeParents(e);
|
@@ -13988,6 +13997,9 @@
|
|
13988
13997
|
}
|
13989
13998
|
}
|
13990
13999
|
}
|
14000
|
+
vue.onBeforeUnmount(() => {
|
14001
|
+
document.removeEventListener('focusin', onFocusin);
|
14002
|
+
});
|
13991
14003
|
if (IN_BROWSER) {
|
13992
14004
|
vue.watch(() => isActive.value && props.retainFocus, val => {
|
13993
14005
|
val ? document.addEventListener('focusin', onFocusin) : document.removeEventListener('focusin', onFocusin);
|
@@ -28242,7 +28254,7 @@
|
|
28242
28254
|
goTo
|
28243
28255
|
};
|
28244
28256
|
}
|
28245
|
-
const version$1 = "3.7.3-master.2024-11-
|
28257
|
+
const version$1 = "3.7.3-master.2024-11-04";
|
28246
28258
|
createVuetify$1.version = version$1;
|
28247
28259
|
|
28248
28260
|
// Vue's inject() can only be used in setup
|
@@ -28267,7 +28279,7 @@
|
|
28267
28279
|
...options
|
28268
28280
|
});
|
28269
28281
|
};
|
28270
|
-
const version = "3.7.3-master.2024-11-
|
28282
|
+
const version = "3.7.3-master.2024-11-04";
|
28271
28283
|
createVuetify.version = version;
|
28272
28284
|
|
28273
28285
|
exports.blueprints = index;
|