@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
  */
@@ -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-08";
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-08";
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 };