@vuetify/nightly 3.7.15-master.2025-03-08 → 3.7.15-master.2025-03-11
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 +16 -3
- package/dist/json/attributes.json +3084 -3084
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +5593 -5582
- package/dist/vuetify-labs.css +4571 -4571
- package/dist/vuetify-labs.d.ts +90 -24
- package/dist/vuetify-labs.esm.js +13 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3823 -3823
- package/dist/vuetify.d.ts +144 -78
- package/dist/vuetify.esm.js +13 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +21 -6
- package/lib/components/VCombobox/index.d.mts +21 -6
- package/lib/components/VDialog/index.d.mts +21 -6
- package/lib/components/VMenu/index.d.mts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -1
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +6 -0
- package/lib/components/VSelect/index.d.mts +21 -6
- package/lib/components/VSnackbar/index.d.mts +21 -6
- package/lib/components/VTooltip/index.d.mts +21 -6
- package/lib/components/index.d.mts +90 -24
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
- package/lib/labs/components.d.mts +21 -6
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.15-master.2025-03-
|
2
|
+
* Vuetify v3.7.15-master.2025-03-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -11200,6 +11200,7 @@
|
|
11200
11200
|
emits: {
|
11201
11201
|
'click:outside': e => true,
|
11202
11202
|
'update:modelValue': value => true,
|
11203
|
+
keydown: e => true,
|
11203
11204
|
afterEnter: () => true,
|
11204
11205
|
afterLeave: () => true
|
11205
11206
|
},
|
@@ -11312,6 +11313,9 @@
|
|
11312
11313
|
});
|
11313
11314
|
function onKeydown(e) {
|
11314
11315
|
if (e.key === 'Escape' && globalTop.value) {
|
11316
|
+
if (!contentEl.value?.contains(document.activeElement)) {
|
11317
|
+
emit('keydown', e);
|
11318
|
+
}
|
11315
11319
|
if (!props.persistent) {
|
11316
11320
|
isActive.value = false;
|
11317
11321
|
if (contentEl.value?.contains(document.activeElement)) {
|
@@ -11320,6 +11324,10 @@
|
|
11320
11324
|
} else animateClick();
|
11321
11325
|
}
|
11322
11326
|
}
|
11327
|
+
function onKeydownSelf(e) {
|
11328
|
+
if (e.key === 'Escape' && !globalTop.value) return;
|
11329
|
+
emit('keydown', e);
|
11330
|
+
}
|
11323
11331
|
const router = useRouter();
|
11324
11332
|
useToggleScope(() => props.closeOnBack, () => {
|
11325
11333
|
useBackButton(router, next => {
|
@@ -11382,7 +11390,8 @@
|
|
11382
11390
|
'--v-overlay-opacity': props.opacity,
|
11383
11391
|
top: convertToUnit(top.value)
|
11384
11392
|
}, props.style],
|
11385
|
-
"ref": root
|
11393
|
+
"ref": root,
|
11394
|
+
"onKeydown": onKeydownSelf
|
11386
11395
|
}, scopeId, attrs), [vue.createVNode(Scrim, vue.mergeProps({
|
11387
11396
|
"color": scrimColor,
|
11388
11397
|
"modelValue": isActive.value && !!props.scrim,
|
@@ -28444,7 +28453,7 @@
|
|
28444
28453
|
goTo
|
28445
28454
|
};
|
28446
28455
|
}
|
28447
|
-
const version$1 = "3.7.15-master.2025-03-
|
28456
|
+
const version$1 = "3.7.15-master.2025-03-11";
|
28448
28457
|
createVuetify$1.version = version$1;
|
28449
28458
|
|
28450
28459
|
// Vue's inject() can only be used in setup
|
@@ -28469,7 +28478,7 @@
|
|
28469
28478
|
...options
|
28470
28479
|
});
|
28471
28480
|
};
|
28472
|
-
const version = "3.7.15-master.2025-03-
|
28481
|
+
const version = "3.7.15-master.2025-03-11";
|
28473
28482
|
createVuetify.version = version;
|
28474
28483
|
|
28475
28484
|
exports.blueprints = index;
|