@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-labs.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
|
*/
|
@@ -10963,6 +10963,7 @@ const VOverlay = genericComponent()({
|
|
10963
10963
|
emits: {
|
10964
10964
|
'click:outside': e => true,
|
10965
10965
|
'update:modelValue': value => true,
|
10966
|
+
keydown: e => true,
|
10966
10967
|
afterEnter: () => true,
|
10967
10968
|
afterLeave: () => true
|
10968
10969
|
},
|
@@ -11075,6 +11076,9 @@ const VOverlay = genericComponent()({
|
|
11075
11076
|
});
|
11076
11077
|
function onKeydown(e) {
|
11077
11078
|
if (e.key === 'Escape' && globalTop.value) {
|
11079
|
+
if (!contentEl.value?.contains(document.activeElement)) {
|
11080
|
+
emit('keydown', e);
|
11081
|
+
}
|
11078
11082
|
if (!props.persistent) {
|
11079
11083
|
isActive.value = false;
|
11080
11084
|
if (contentEl.value?.contains(document.activeElement)) {
|
@@ -11083,6 +11087,10 @@ const VOverlay = genericComponent()({
|
|
11083
11087
|
} else animateClick();
|
11084
11088
|
}
|
11085
11089
|
}
|
11090
|
+
function onKeydownSelf(e) {
|
11091
|
+
if (e.key === 'Escape' && !globalTop.value) return;
|
11092
|
+
emit('keydown', e);
|
11093
|
+
}
|
11086
11094
|
const router = useRouter();
|
11087
11095
|
useToggleScope(() => props.closeOnBack, () => {
|
11088
11096
|
useBackButton(router, next => {
|
@@ -11145,7 +11153,8 @@ const VOverlay = genericComponent()({
|
|
11145
11153
|
'--v-overlay-opacity': props.opacity,
|
11146
11154
|
top: convertToUnit(top.value)
|
11147
11155
|
}, props.style],
|
11148
|
-
"ref": root
|
11156
|
+
"ref": root,
|
11157
|
+
"onKeydown": onKeydownSelf
|
11149
11158
|
}, scopeId, attrs), [createVNode(Scrim, mergeProps({
|
11150
11159
|
"color": scrimColor,
|
11151
11160
|
"modelValue": isActive.value && !!props.scrim,
|
@@ -31068,7 +31077,7 @@ function createVuetify$1() {
|
|
31068
31077
|
goTo
|
31069
31078
|
};
|
31070
31079
|
}
|
31071
|
-
const version$1 = "3.7.15-master.2025-03-
|
31080
|
+
const version$1 = "3.7.15-master.2025-03-11";
|
31072
31081
|
createVuetify$1.version = version$1;
|
31073
31082
|
|
31074
31083
|
// Vue's inject() can only be used in setup
|
@@ -31321,7 +31330,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31321
31330
|
|
31322
31331
|
/* eslint-disable local-rules/sort-imports */
|
31323
31332
|
|
31324
|
-
const version = "3.7.15-master.2025-03-
|
31333
|
+
const version = "3.7.15-master.2025-03-11";
|
31325
31334
|
|
31326
31335
|
/* eslint-disable local-rules/sort-imports */
|
31327
31336
|
|