@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.
Files changed (37) hide show
  1. package/CHANGELOG.md +16 -3
  2. package/dist/json/attributes.json +3084 -3084
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/web-types.json +5593 -5582
  6. package/dist/vuetify-labs.css +4571 -4571
  7. package/dist/vuetify-labs.d.ts +90 -24
  8. package/dist/vuetify-labs.esm.js +13 -4
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +13 -4
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +3823 -3823
  13. package/dist/vuetify.d.ts +144 -78
  14. package/dist/vuetify.esm.js +13 -4
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +13 -4
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +10 -10
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/index.d.mts +21 -6
  22. package/lib/components/VCombobox/index.d.mts +21 -6
  23. package/lib/components/VDialog/index.d.mts +21 -6
  24. package/lib/components/VMenu/index.d.mts +21 -6
  25. package/lib/components/VOverlay/VOverlay.mjs +10 -1
  26. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  27. package/lib/components/VOverlay/index.d.mts +6 -0
  28. package/lib/components/VSelect/index.d.mts +21 -6
  29. package/lib/components/VSnackbar/index.d.mts +21 -6
  30. package/lib/components/VTooltip/index.d.mts +21 -6
  31. package/lib/components/index.d.mts +90 -24
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +54 -54
  35. package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
  36. package/lib/labs/components.d.mts +21 -6
  37. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.15-master.2025-03-08
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-08";
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-08";
31333
+ const version = "3.7.15-master.2025-03-11";
31325
31334
 
31326
31335
  /* eslint-disable local-rules/sort-imports */
31327
31336