@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.
Files changed (37) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +2036 -2036
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +154 -154
  5. package/dist/json/web-types.json +3872 -3861
  6. package/dist/vuetify-labs.css +4879 -4879
  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 +4116 -4116
  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
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.15-master.2025-03-10
2
+ * Vuetify v3.7.15-master.2025-03-11
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -11200,6 +11200,7 @@
11200
11200
  emits: {
11201
11201
  'click:outside': e => true,
11202
11202
  'update:modelValue': value => true,
11203
+ keydown: e => true,
11203
11204
  afterEnter: () => true,
11204
11205
  afterLeave: () => true
11205
11206
  },
@@ -11312,6 +11313,9 @@
11312
11313
  });
11313
11314
  function onKeydown(e) {
11314
11315
  if (e.key === 'Escape' && globalTop.value) {
11316
+ if (!contentEl.value?.contains(document.activeElement)) {
11317
+ emit('keydown', e);
11318
+ }
11315
11319
  if (!props.persistent) {
11316
11320
  isActive.value = false;
11317
11321
  if (contentEl.value?.contains(document.activeElement)) {
@@ -11320,6 +11324,10 @@
11320
11324
  } else animateClick();
11321
11325
  }
11322
11326
  }
11327
+ function onKeydownSelf(e) {
11328
+ if (e.key === 'Escape' && !globalTop.value) return;
11329
+ emit('keydown', e);
11330
+ }
11323
11331
  const router = useRouter();
11324
11332
  useToggleScope(() => props.closeOnBack, () => {
11325
11333
  useBackButton(router, next => {
@@ -11382,7 +11390,8 @@
11382
11390
  '--v-overlay-opacity': props.opacity,
11383
11391
  top: convertToUnit(top.value)
11384
11392
  }, props.style],
11385
- "ref": root
11393
+ "ref": root,
11394
+ "onKeydown": onKeydownSelf
11386
11395
  }, scopeId, attrs), [vue.createVNode(Scrim, vue.mergeProps({
11387
11396
  "color": scrimColor,
11388
11397
  "modelValue": isActive.value && !!props.scrim,
@@ -28444,7 +28453,7 @@
28444
28453
  goTo
28445
28454
  };
28446
28455
  }
28447
- const version$1 = "3.7.15-master.2025-03-10";
28456
+ const version$1 = "3.7.15-master.2025-03-11";
28448
28457
  createVuetify$1.version = version$1;
28449
28458
 
28450
28459
  // Vue's inject() can only be used in setup
@@ -28469,7 +28478,7 @@
28469
28478
  ...options
28470
28479
  });
28471
28480
  };
28472
- const version = "3.7.15-master.2025-03-10";
28481
+ const version = "3.7.15-master.2025-03-11";
28473
28482
  createVuetify.version = version;
28474
28483
 
28475
28484
  exports.blueprints = index;