@vuetify/nightly 3.7.15-master.2025-03-10 → 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 +7 -3
- package/dist/json/attributes.json +2036 -2036
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +3872 -3861
- package/dist/vuetify-labs.css +4879 -4879
- 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 +4116 -4116
- 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.esm.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
|
*/
|
@@ -11196,6 +11196,7 @@ const VOverlay = genericComponent()({
|
|
11196
11196
|
emits: {
|
11197
11197
|
'click:outside': e => true,
|
11198
11198
|
'update:modelValue': value => true,
|
11199
|
+
keydown: e => true,
|
11199
11200
|
afterEnter: () => true,
|
11200
11201
|
afterLeave: () => true
|
11201
11202
|
},
|
@@ -11308,6 +11309,9 @@ const VOverlay = genericComponent()({
|
|
11308
11309
|
});
|
11309
11310
|
function onKeydown(e) {
|
11310
11311
|
if (e.key === 'Escape' && globalTop.value) {
|
11312
|
+
if (!contentEl.value?.contains(document.activeElement)) {
|
11313
|
+
emit('keydown', e);
|
11314
|
+
}
|
11311
11315
|
if (!props.persistent) {
|
11312
11316
|
isActive.value = false;
|
11313
11317
|
if (contentEl.value?.contains(document.activeElement)) {
|
@@ -11316,6 +11320,10 @@ const VOverlay = genericComponent()({
|
|
11316
11320
|
} else animateClick();
|
11317
11321
|
}
|
11318
11322
|
}
|
11323
|
+
function onKeydownSelf(e) {
|
11324
|
+
if (e.key === 'Escape' && !globalTop.value) return;
|
11325
|
+
emit('keydown', e);
|
11326
|
+
}
|
11319
11327
|
const router = useRouter();
|
11320
11328
|
useToggleScope(() => props.closeOnBack, () => {
|
11321
11329
|
useBackButton(router, next => {
|
@@ -11378,7 +11386,8 @@ const VOverlay = genericComponent()({
|
|
11378
11386
|
'--v-overlay-opacity': props.opacity,
|
11379
11387
|
top: convertToUnit(top.value)
|
11380
11388
|
}, props.style],
|
11381
|
-
"ref": root
|
11389
|
+
"ref": root,
|
11390
|
+
"onKeydown": onKeydownSelf
|
11382
11391
|
}, scopeId, attrs), [createVNode(Scrim, mergeProps({
|
11383
11392
|
"color": scrimColor,
|
11384
11393
|
"modelValue": isActive.value && !!props.scrim,
|
@@ -28440,7 +28449,7 @@ function createVuetify$1() {
|
|
28440
28449
|
goTo
|
28441
28450
|
};
|
28442
28451
|
}
|
28443
|
-
const version$1 = "3.7.15-master.2025-03-
|
28452
|
+
const version$1 = "3.7.15-master.2025-03-11";
|
28444
28453
|
createVuetify$1.version = version$1;
|
28445
28454
|
|
28446
28455
|
// Vue's inject() can only be used in setup
|
@@ -28465,7 +28474,7 @@ const createVuetify = function () {
|
|
28465
28474
|
...options
|
28466
28475
|
});
|
28467
28476
|
};
|
28468
|
-
const version = "3.7.15-master.2025-03-
|
28477
|
+
const version = "3.7.15-master.2025-03-11";
|
28469
28478
|
createVuetify.version = version;
|
28470
28479
|
|
28471
28480
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|