@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
  */
@@ -10967,6 +10967,7 @@
10967
10967
  emits: {
10968
10968
  'click:outside': e => true,
10969
10969
  'update:modelValue': value => true,
10970
+ keydown: e => true,
10970
10971
  afterEnter: () => true,
10971
10972
  afterLeave: () => true
10972
10973
  },
@@ -11079,6 +11080,9 @@
11079
11080
  });
11080
11081
  function onKeydown(e) {
11081
11082
  if (e.key === 'Escape' && globalTop.value) {
11083
+ if (!contentEl.value?.contains(document.activeElement)) {
11084
+ emit('keydown', e);
11085
+ }
11082
11086
  if (!props.persistent) {
11083
11087
  isActive.value = false;
11084
11088
  if (contentEl.value?.contains(document.activeElement)) {
@@ -11087,6 +11091,10 @@
11087
11091
  } else animateClick();
11088
11092
  }
11089
11093
  }
11094
+ function onKeydownSelf(e) {
11095
+ if (e.key === 'Escape' && !globalTop.value) return;
11096
+ emit('keydown', e);
11097
+ }
11090
11098
  const router = useRouter();
11091
11099
  useToggleScope(() => props.closeOnBack, () => {
11092
11100
  useBackButton(router, next => {
@@ -11149,7 +11157,8 @@
11149
11157
  '--v-overlay-opacity': props.opacity,
11150
11158
  top: convertToUnit(top.value)
11151
11159
  }, props.style],
11152
- "ref": root
11160
+ "ref": root,
11161
+ "onKeydown": onKeydownSelf
11153
11162
  }, scopeId, attrs), [vue.createVNode(Scrim, vue.mergeProps({
11154
11163
  "color": scrimColor,
11155
11164
  "modelValue": isActive.value && !!props.scrim,
@@ -31072,7 +31081,7 @@
31072
31081
  goTo
31073
31082
  };
31074
31083
  }
31075
- const version$1 = "3.7.15-master.2025-03-08";
31084
+ const version$1 = "3.7.15-master.2025-03-11";
31076
31085
  createVuetify$1.version = version$1;
31077
31086
 
31078
31087
  // Vue's inject() can only be used in setup
@@ -31325,7 +31334,7 @@
31325
31334
 
31326
31335
  /* eslint-disable local-rules/sort-imports */
31327
31336
 
31328
- const version = "3.7.15-master.2025-03-08";
31337
+ const version = "3.7.15-master.2025-03-11";
31329
31338
 
31330
31339
  /* eslint-disable local-rules/sort-imports */
31331
31340