vuetify 3.3.21 → 3.3.22

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 (56) hide show
  1. package/dist/json/attributes.json +204 -0
  2. package/dist/json/importMap-labs.json +4 -4
  3. package/dist/json/importMap.json +60 -60
  4. package/dist/json/tags.json +57 -3
  5. package/dist/json/web-types.json +885 -15
  6. package/dist/vuetify-labs.css +5865 -5859
  7. package/dist/vuetify-labs.d.ts +205 -19
  8. package/dist/vuetify-labs.esm.js +41 -18
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +41 -18
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +5382 -5379
  13. package/dist/vuetify.d.ts +17 -17
  14. package/dist/vuetify.esm.js +8 -4
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +8 -4
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +797 -797
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.sass +2 -2
  23. package/lib/components/VAutocomplete/_variables.scss +1 -0
  24. package/lib/components/VCard/VCard.css +3 -1
  25. package/lib/components/VCard/VCard.sass +2 -1
  26. package/lib/components/VCard/_variables.scss +7 -5
  27. package/lib/components/VCombobox/VCombobox.mjs +2 -2
  28. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  29. package/lib/components/VList/VListItem.css +0 -4
  30. package/lib/components/VList/VListItem.sass +0 -5
  31. package/lib/components/VNavigationDrawer/VNavigationDrawer.css +5 -0
  32. package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +4 -0
  33. package/lib/components/VToolbar/_variables.scss +6 -3
  34. package/lib/entry-bundler.mjs +1 -1
  35. package/lib/framework.mjs +1 -1
  36. package/lib/index.d.mts +17 -17
  37. package/lib/labs/VDataTable/VDataTable.css +0 -6
  38. package/lib/labs/VDataTable/VDataTable.sass +0 -1
  39. package/lib/labs/VStepper/VStepper.css +9 -0
  40. package/lib/labs/VStepper/VStepper.mjs +1 -2
  41. package/lib/labs/VStepper/VStepper.mjs.map +1 -1
  42. package/lib/labs/VStepper/VStepper.sass +17 -8
  43. package/lib/labs/VStepper/VStepperActions.mjs +34 -13
  44. package/lib/labs/VStepper/VStepperActions.mjs.map +1 -1
  45. package/lib/labs/VStepper/VStepperItem.mjs.map +1 -1
  46. package/lib/labs/VStepper/VStepperItem.sass +15 -15
  47. package/lib/labs/VStepper/_variables.scss +24 -1
  48. package/lib/labs/VStepper/index.d.mts +205 -19
  49. package/lib/labs/components.d.mts +205 -19
  50. package/lib/locale/de.mjs +20 -20
  51. package/lib/locale/de.mjs.map +1 -1
  52. package/lib/locale/nl.mjs +22 -22
  53. package/lib/locale/nl.mjs.map +1 -1
  54. package/lib/util/helpers.mjs +4 -0
  55. package/lib/util/helpers.mjs.map +1 -1
  56. package/package.json +2 -2
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.3.21
2
+ * Vuetify v3.3.22
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -232,6 +232,10 @@
232
232
  const onRE = /^on[^a-z]/;
233
233
  const isOn = key => onRE.test(key);
234
234
  const bubblingEvents = ['onAfterscriptexecute', 'onAnimationcancel', 'onAnimationend', 'onAnimationiteration', 'onAnimationstart', 'onAuxclick', 'onBeforeinput', 'onBeforescriptexecute', 'onChange', 'onClick', 'onCompositionend', 'onCompositionstart', 'onCompositionupdate', 'onContextmenu', 'onCopy', 'onCut', 'onDblclick', 'onFocusin', 'onFocusout', 'onFullscreenchange', 'onFullscreenerror', 'onGesturechange', 'onGestureend', 'onGesturestart', 'onGotpointercapture', 'onInput', 'onKeydown', 'onKeypress', 'onKeyup', 'onLostpointercapture', 'onMousedown', 'onMousemove', 'onMouseout', 'onMouseover', 'onMouseup', 'onMousewheel', 'onPaste', 'onPointercancel', 'onPointerdown', 'onPointerenter', 'onPointerleave', 'onPointermove', 'onPointerout', 'onPointerover', 'onPointerup', 'onReset', 'onSelect', 'onSubmit', 'onTouchcancel', 'onTouchend', 'onTouchmove', 'onTouchstart', 'onTransitioncancel', 'onTransitionend', 'onTransitionrun', 'onTransitionstart', 'onWheel'];
235
+ const compositionIgnoreKeys = ['ArrowUp', 'ArrowDown', 'ArrowRight', 'ArrowLeft', 'Enter', 'Escape', 'Tab', ' '];
236
+ function isComposingIgnoreKey(e) {
237
+ return e.isComposing && compositionIgnoreKeys.includes(e.key);
238
+ }
235
239
 
236
240
  /**
237
241
  * Filter attributes that should be applied to
@@ -14990,7 +14994,7 @@
14990
14994
  menu.value = !menu.value;
14991
14995
  }
14992
14996
  function onKeydown(e) {
14993
- if (props.readonly || form?.isReadonly.value) return;
14997
+ if (isComposingIgnoreKey(e) || props.readonly || form?.isReadonly.value) return;
14994
14998
  const selectionStart = vTextFieldRef.value.selectionStart;
14995
14999
  const length = model.value.length;
14996
15000
  if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
@@ -20430,7 +20434,7 @@
20430
20434
  date
20431
20435
  };
20432
20436
  }
20433
- const version$1 = "3.3.21";
20437
+ const version$1 = "3.3.22";
20434
20438
  createVuetify$1.version = version$1;
20435
20439
 
20436
20440
  // Vue's inject() can only be used in setup
@@ -20455,7 +20459,7 @@
20455
20459
  ...options
20456
20460
  });
20457
20461
  };
20458
- const version = "3.3.21";
20462
+ const version = "3.3.22";
20459
20463
  createVuetify.version = version;
20460
20464
 
20461
20465
  exports.components = components;