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
@@ -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
  */
@@ -237,6 +237,10 @@
237
237
  const onRE = /^on[^a-z]/;
238
238
  const isOn = key => onRE.test(key);
239
239
  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'];
240
+ const compositionIgnoreKeys = ['ArrowUp', 'ArrowDown', 'ArrowRight', 'ArrowLeft', 'Enter', 'Escape', 'Tab', ' '];
241
+ function isComposingIgnoreKey(e) {
242
+ return e.isComposing && compositionIgnoreKeys.includes(e.key);
243
+ }
240
244
 
241
245
  /**
242
246
  * Filter attributes that should be applied to
@@ -15002,7 +15006,7 @@
15002
15006
  menu.value = !menu.value;
15003
15007
  }
15004
15008
  function onKeydown(e) {
15005
- if (props.readonly || form?.isReadonly.value) return;
15009
+ if (isComposingIgnoreKey(e) || props.readonly || form?.isReadonly.value) return;
15006
15010
  const selectionStart = vTextFieldRef.value.selectionStart;
15007
15011
  const length = model.value.length;
15008
15012
  if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
@@ -23951,20 +23955,40 @@
23951
23955
  emit('click:next');
23952
23956
  }
23953
23957
  useRender(() => {
23958
+ const prevSlotProps = {
23959
+ onClick: onClickPrev
23960
+ };
23961
+ const nextSlotProps = {
23962
+ onClick: onClickNext
23963
+ };
23954
23964
  return vue.createVNode("div", {
23955
23965
  "class": "v-stepper-actions"
23956
- }, [vue.createVNode(VBtn, {
23957
- "disabled": ['prev', true].includes(props.disabled),
23958
- "text": t(props.prevText),
23959
- "variant": "text",
23960
- "onClick": onClickPrev
23961
- }, null), vue.createVNode(VBtn, {
23962
- "disabled": ['next', true].includes(props.disabled),
23963
- "color": props.color,
23964
- "text": t(props.nextText),
23965
- "variant": "tonal",
23966
- "onClick": onClickNext
23967
- }, null)]);
23966
+ }, [vue.createVNode(VDefaultsProvider, {
23967
+ "defaults": {
23968
+ VBtn: {
23969
+ disabled: ['prev', true].includes(props.disabled),
23970
+ text: t(props.prevText),
23971
+ variant: 'text'
23972
+ }
23973
+ }
23974
+ }, {
23975
+ default: () => [slots.prev?.({
23976
+ props: prevSlotProps
23977
+ }) ?? vue.createVNode(VBtn, prevSlotProps, null)]
23978
+ }), vue.createVNode(VDefaultsProvider, {
23979
+ "defaults": {
23980
+ VBtn: {
23981
+ color: props.color,
23982
+ disabled: ['next', true].includes(props.disabled),
23983
+ text: t(props.nextText),
23984
+ variant: 'tonal'
23985
+ }
23986
+ }
23987
+ }, {
23988
+ default: () => [slots.next?.({
23989
+ props: nextSlotProps
23990
+ }) ?? vue.createVNode(VBtn, nextSlotProps, null)]
23991
+ })]);
23968
23992
  });
23969
23993
  return {};
23970
23994
  }
@@ -24183,7 +24207,6 @@
24183
24207
  let {
24184
24208
  slots
24185
24209
  } = _ref;
24186
- // TODO: fix typing
24187
24210
  const {
24188
24211
  items: _items,
24189
24212
  next,
@@ -24269,7 +24292,7 @@
24269
24292
  "key": "stepper-actions",
24270
24293
  "onClick:prev": prev,
24271
24294
  "onClick:next": next
24272
- }, null))]
24295
+ }, slots))]
24273
24296
  });
24274
24297
  });
24275
24298
  return {
@@ -24657,7 +24680,7 @@
24657
24680
  date
24658
24681
  };
24659
24682
  }
24660
- const version$1 = "3.3.21";
24683
+ const version$1 = "3.3.22";
24661
24684
  createVuetify$1.version = version$1;
24662
24685
 
24663
24686
  // Vue's inject() can only be used in setup
@@ -24671,7 +24694,7 @@
24671
24694
 
24672
24695
  /* eslint-disable local-rules/sort-imports */
24673
24696
 
24674
- const version = "3.3.21";
24697
+ const version = "3.3.22";
24675
24698
 
24676
24699
  /* eslint-disable local-rules/sort-imports */
24677
24700