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
@@ -74961,6 +74961,7 @@ declare const VStepperItem: {
74961
74961
  default: () => never[];
74962
74962
  };
74963
74963
  }>>;
74964
+ type VStepperItem = InstanceType<typeof VStepperItem>;
74964
74965
 
74965
74966
  type StepperItem = string | Record<string, any>;
74966
74967
  type VStepperSlot = {
@@ -75017,6 +75018,8 @@ declare const VStepper: {
75017
75018
  title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75018
75019
  subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75019
75020
  item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
75021
+ prev?: (() => vue.VNodeChild) | undefined;
75022
+ next?: (() => vue.VNodeChild) | undefined;
75020
75023
  };
75021
75024
  elevation?: string | number | undefined;
75022
75025
  ref?: vue.VNodeRef | undefined;
@@ -75035,6 +75038,8 @@ declare const VStepper: {
75035
75038
  title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75036
75039
  subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75037
75040
  item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75041
+ prev?: false | (() => vue.VNodeChild) | undefined;
75042
+ next?: false | (() => vue.VNodeChild) | undefined;
75038
75043
  } | undefined;
75039
75044
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
75040
75045
  [key: string]: any;
@@ -75081,6 +75086,8 @@ declare const VStepper: {
75081
75086
  "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75082
75087
  "v-slot:header"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75083
75088
  "v-slot:actions"?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
75089
+ "v-slot:next"?: false | (() => vue.VNodeChild) | undefined;
75090
+ "v-slot:prev"?: false | (() => vue.VNodeChild) | undefined;
75084
75091
  "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75085
75092
  "v-slot:header-item"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75086
75093
  };
@@ -75121,6 +75128,12 @@ declare const VStepper: {
75121
75128
  item?: ((arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75122
75129
  [key: string]: any;
75123
75130
  }>[]) | undefined;
75131
+ prev?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
75132
+ [key: string]: any;
75133
+ }>[]) | undefined;
75134
+ next?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
75135
+ [key: string]: any;
75136
+ }>[]) | undefined;
75124
75137
  }>;
75125
75138
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
75126
75139
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
@@ -75174,6 +75187,8 @@ declare const VStepper: {
75174
75187
  title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75175
75188
  subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75176
75189
  item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
75190
+ prev?: (() => vue.VNodeChild) | undefined;
75191
+ next?: (() => vue.VNodeChild) | undefined;
75177
75192
  };
75178
75193
  'v-slots'?: {
75179
75194
  [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75186,6 +75201,8 @@ declare const VStepper: {
75186
75201
  title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75187
75202
  subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75188
75203
  item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75204
+ prev?: false | (() => vue.VNodeChild) | undefined;
75205
+ next?: false | (() => vue.VNodeChild) | undefined;
75189
75206
  } | undefined;
75190
75207
  } & {
75191
75208
  [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75198,6 +75215,8 @@ declare const VStepper: {
75198
75215
  "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75199
75216
  "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75200
75217
  "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75218
+ "v-slot:prev"?: false | (() => vue.VNodeChild) | undefined;
75219
+ "v-slot:next"?: false | (() => vue.VNodeChild) | undefined;
75201
75220
  } & {
75202
75221
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
75203
75222
  }, {
@@ -75256,6 +75275,12 @@ declare const VStepper: {
75256
75275
  item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75257
75276
  [key: string]: any;
75258
75277
  }>[];
75278
+ prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75279
+ [key: string]: any;
75280
+ }>[];
75281
+ next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75282
+ [key: string]: any;
75283
+ }>[];
75259
75284
  }>>> & {
75260
75285
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
75261
75286
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -75324,6 +75349,8 @@ declare const VStepper: {
75324
75349
  title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75325
75350
  subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75326
75351
  item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
75352
+ prev?: (() => vue.VNodeChild) | undefined;
75353
+ next?: (() => vue.VNodeChild) | undefined;
75327
75354
  };
75328
75355
  'v-slots'?: {
75329
75356
  [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75336,6 +75363,8 @@ declare const VStepper: {
75336
75363
  title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75337
75364
  subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75338
75365
  item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75366
+ prev?: false | (() => vue.VNodeChild) | undefined;
75367
+ next?: false | (() => vue.VNodeChild) | undefined;
75339
75368
  } | undefined;
75340
75369
  } & {
75341
75370
  [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75348,6 +75377,8 @@ declare const VStepper: {
75348
75377
  "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75349
75378
  "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75350
75379
  "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75380
+ "v-slot:prev"?: false | (() => vue.VNodeChild) | undefined;
75381
+ "v-slot:next"?: false | (() => vue.VNodeChild) | undefined;
75351
75382
  } & {
75352
75383
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
75353
75384
  } & vue.ShallowUnwrapRef<{
@@ -75405,6 +75436,8 @@ declare const VStepper: {
75405
75436
  title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75406
75437
  subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75407
75438
  item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
75439
+ prev?: (() => vue.VNodeChild) | undefined;
75440
+ next?: (() => vue.VNodeChild) | undefined;
75408
75441
  };
75409
75442
  'v-slots'?: {
75410
75443
  [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75417,6 +75450,8 @@ declare const VStepper: {
75417
75450
  title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75418
75451
  subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75419
75452
  item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75453
+ prev?: false | (() => vue.VNodeChild) | undefined;
75454
+ next?: false | (() => vue.VNodeChild) | undefined;
75420
75455
  } | undefined;
75421
75456
  } & {
75422
75457
  [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -75429,6 +75464,8 @@ declare const VStepper: {
75429
75464
  "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75430
75465
  "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
75431
75466
  "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
75467
+ "v-slot:prev"?: false | (() => vue.VNodeChild) | undefined;
75468
+ "v-slot:next"?: false | (() => vue.VNodeChild) | undefined;
75432
75469
  } & {
75433
75470
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
75434
75471
  }, {
@@ -75487,6 +75524,12 @@ declare const VStepper: {
75487
75524
  item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75488
75525
  [key: string]: any;
75489
75526
  }>[];
75527
+ prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75528
+ [key: string]: any;
75529
+ }>[];
75530
+ next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75531
+ [key: string]: any;
75532
+ }>[];
75490
75533
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
75491
75534
  prevText: {
75492
75535
  type: StringConstructor;
@@ -75636,6 +75679,7 @@ declare const VStepper: {
75636
75679
  nonLinear: BooleanConstructor;
75637
75680
  flat: BooleanConstructor;
75638
75681
  }>>;
75682
+ type VStepper = InstanceType<typeof VStepper>;
75639
75683
 
75640
75684
  declare const VStepperActions: {
75641
75685
  new (...args: any[]): {
@@ -75649,15 +75693,32 @@ declare const VStepperActions: {
75649
75693
  color?: string | undefined;
75650
75694
  style?: unknown;
75651
75695
  class?: unknown;
75652
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
75653
- default?: (() => vue.VNodeChild) | undefined;
75696
+ $children?: {} | vue.VNodeChild | {
75697
+ prev?: ((arg: {
75698
+ props: {
75699
+ onClick: () => void;
75700
+ };
75701
+ }) => vue.VNodeChild) | undefined;
75702
+ next?: ((arg: {
75703
+ props: {
75704
+ onClick: () => void;
75705
+ };
75706
+ }) => vue.VNodeChild) | undefined;
75654
75707
  };
75655
75708
  ref?: vue.VNodeRef | undefined;
75656
75709
  ref_for?: boolean | undefined;
75657
75710
  ref_key?: string | undefined;
75658
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
75659
75711
  'v-slots'?: {
75660
- default?: false | (() => vue.VNodeChild) | undefined;
75712
+ prev?: false | ((arg: {
75713
+ props: {
75714
+ onClick: () => void;
75715
+ };
75716
+ }) => vue.VNodeChild) | undefined;
75717
+ next?: false | ((arg: {
75718
+ props: {
75719
+ onClick: () => void;
75720
+ };
75721
+ }) => vue.VNodeChild) | undefined;
75661
75722
  } | undefined;
75662
75723
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
75663
75724
  [key: string]: any;
@@ -75697,6 +75758,16 @@ declare const VStepperActions: {
75697
75758
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
75698
75759
  [key: string]: any;
75699
75760
  }>) => void)[] | undefined;
75761
+ "v-slot:next"?: false | ((arg: {
75762
+ props: {
75763
+ onClick: () => void;
75764
+ };
75765
+ }) => vue.VNodeChild) | undefined;
75766
+ "v-slot:prev"?: false | ((arg: {
75767
+ props: {
75768
+ onClick: () => void;
75769
+ };
75770
+ }) => vue.VNodeChild) | undefined;
75700
75771
  "onClick:prev"?: (() => any) | undefined;
75701
75772
  "onClick:next"?: (() => any) | undefined;
75702
75773
  };
@@ -75707,7 +75778,18 @@ declare const VStepperActions: {
75707
75778
  [x: string]: unknown;
75708
75779
  };
75709
75780
  $slots: Readonly<{
75710
- default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
75781
+ prev?: ((arg: {
75782
+ props: {
75783
+ onClick: () => void;
75784
+ };
75785
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75786
+ [key: string]: any;
75787
+ }>[]) | undefined;
75788
+ next?: ((arg: {
75789
+ props: {
75790
+ onClick: () => void;
75791
+ };
75792
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75711
75793
  [key: string]: any;
75712
75794
  }>[]) | undefined;
75713
75795
  }>;
@@ -75722,14 +75804,41 @@ declare const VStepperActions: {
75722
75804
  } & {
75723
75805
  color?: string | undefined;
75724
75806
  } & {
75725
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
75726
- default?: (() => vue.VNodeChild) | undefined;
75807
+ $children?: {} | vue.VNodeChild | {
75808
+ prev?: ((arg: {
75809
+ props: {
75810
+ onClick: () => void;
75811
+ };
75812
+ }) => vue.VNodeChild) | undefined;
75813
+ next?: ((arg: {
75814
+ props: {
75815
+ onClick: () => void;
75816
+ };
75817
+ }) => vue.VNodeChild) | undefined;
75727
75818
  };
75728
75819
  'v-slots'?: {
75729
- default?: false | (() => vue.VNodeChild) | undefined;
75820
+ prev?: false | ((arg: {
75821
+ props: {
75822
+ onClick: () => void;
75823
+ };
75824
+ }) => vue.VNodeChild) | undefined;
75825
+ next?: false | ((arg: {
75826
+ props: {
75827
+ onClick: () => void;
75828
+ };
75829
+ }) => vue.VNodeChild) | undefined;
75730
75830
  } | undefined;
75731
75831
  } & {
75732
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
75832
+ "v-slot:prev"?: false | ((arg: {
75833
+ props: {
75834
+ onClick: () => void;
75835
+ };
75836
+ }) => vue.VNodeChild) | undefined;
75837
+ "v-slot:next"?: false | ((arg: {
75838
+ props: {
75839
+ onClick: () => void;
75840
+ };
75841
+ }) => vue.VNodeChild) | undefined;
75733
75842
  } & {
75734
75843
  "onClick:prev"?: (() => any) | undefined;
75735
75844
  "onClick:next"?: (() => any) | undefined;
@@ -75741,7 +75850,18 @@ declare const VStepperActions: {
75741
75850
  prevText: string;
75742
75851
  nextText: string;
75743
75852
  }, {}, string, vue.SlotsType<Partial<{
75744
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75853
+ prev: (arg: {
75854
+ props: {
75855
+ onClick: () => void;
75856
+ };
75857
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75858
+ [key: string]: any;
75859
+ }>[];
75860
+ next: (arg: {
75861
+ props: {
75862
+ onClick: () => void;
75863
+ };
75864
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75745
75865
  [key: string]: any;
75746
75866
  }>[];
75747
75867
  }>>> & {
@@ -75771,14 +75891,41 @@ declare const VStepperActions: {
75771
75891
  } & {
75772
75892
  color?: string | undefined;
75773
75893
  } & {
75774
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
75775
- default?: (() => vue.VNodeChild) | undefined;
75894
+ $children?: {} | vue.VNodeChild | {
75895
+ prev?: ((arg: {
75896
+ props: {
75897
+ onClick: () => void;
75898
+ };
75899
+ }) => vue.VNodeChild) | undefined;
75900
+ next?: ((arg: {
75901
+ props: {
75902
+ onClick: () => void;
75903
+ };
75904
+ }) => vue.VNodeChild) | undefined;
75776
75905
  };
75777
75906
  'v-slots'?: {
75778
- default?: false | (() => vue.VNodeChild) | undefined;
75907
+ prev?: false | ((arg: {
75908
+ props: {
75909
+ onClick: () => void;
75910
+ };
75911
+ }) => vue.VNodeChild) | undefined;
75912
+ next?: false | ((arg: {
75913
+ props: {
75914
+ onClick: () => void;
75915
+ };
75916
+ }) => vue.VNodeChild) | undefined;
75779
75917
  } | undefined;
75780
75918
  } & {
75781
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
75919
+ "v-slot:prev"?: false | ((arg: {
75920
+ props: {
75921
+ onClick: () => void;
75922
+ };
75923
+ }) => vue.VNodeChild) | undefined;
75924
+ "v-slot:next"?: false | ((arg: {
75925
+ props: {
75926
+ onClick: () => void;
75927
+ };
75928
+ }) => vue.VNodeChild) | undefined;
75782
75929
  } & {
75783
75930
  "onClick:prev"?: (() => any) | undefined;
75784
75931
  "onClick:next"?: (() => any) | undefined;
@@ -75793,14 +75940,41 @@ declare const VStepperActions: {
75793
75940
  } & {
75794
75941
  color?: string | undefined;
75795
75942
  } & {
75796
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
75797
- default?: (() => vue.VNodeChild) | undefined;
75943
+ $children?: {} | vue.VNodeChild | {
75944
+ prev?: ((arg: {
75945
+ props: {
75946
+ onClick: () => void;
75947
+ };
75948
+ }) => vue.VNodeChild) | undefined;
75949
+ next?: ((arg: {
75950
+ props: {
75951
+ onClick: () => void;
75952
+ };
75953
+ }) => vue.VNodeChild) | undefined;
75798
75954
  };
75799
75955
  'v-slots'?: {
75800
- default?: false | (() => vue.VNodeChild) | undefined;
75956
+ prev?: false | ((arg: {
75957
+ props: {
75958
+ onClick: () => void;
75959
+ };
75960
+ }) => vue.VNodeChild) | undefined;
75961
+ next?: false | ((arg: {
75962
+ props: {
75963
+ onClick: () => void;
75964
+ };
75965
+ }) => vue.VNodeChild) | undefined;
75801
75966
  } | undefined;
75802
75967
  } & {
75803
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
75968
+ "v-slot:prev"?: false | ((arg: {
75969
+ props: {
75970
+ onClick: () => void;
75971
+ };
75972
+ }) => vue.VNodeChild) | undefined;
75973
+ "v-slot:next"?: false | ((arg: {
75974
+ props: {
75975
+ onClick: () => void;
75976
+ };
75977
+ }) => vue.VNodeChild) | undefined;
75804
75978
  } & {
75805
75979
  "onClick:prev"?: (() => any) | undefined;
75806
75980
  "onClick:next"?: (() => any) | undefined;
@@ -75812,7 +75986,18 @@ declare const VStepperActions: {
75812
75986
  prevText: string;
75813
75987
  nextText: string;
75814
75988
  }, {}, string, vue.SlotsType<Partial<{
75815
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
75989
+ prev: (arg: {
75990
+ props: {
75991
+ onClick: () => void;
75992
+ };
75993
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75994
+ [key: string]: any;
75995
+ }>[];
75996
+ next: (arg: {
75997
+ props: {
75998
+ onClick: () => void;
75999
+ };
76000
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
75816
76001
  [key: string]: any;
75817
76002
  }>[];
75818
76003
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -75844,6 +76029,7 @@ declare const VStepperActions: {
75844
76029
  default: string;
75845
76030
  };
75846
76031
  }>>;
76032
+ type VStepperActions = InstanceType<typeof VStepperActions>;
75847
76033
 
75848
76034
  declare const VStepperHeader: {
75849
76035
  new (...args: any[]): {
@@ -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
  */
@@ -233,6 +233,10 @@ function only(obj, include) {
233
233
  const onRE = /^on[^a-z]/;
234
234
  const isOn = key => onRE.test(key);
235
235
  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'];
236
+ const compositionIgnoreKeys = ['ArrowUp', 'ArrowDown', 'ArrowRight', 'ArrowLeft', 'Enter', 'Escape', 'Tab', ' '];
237
+ function isComposingIgnoreKey(e) {
238
+ return e.isComposing && compositionIgnoreKeys.includes(e.key);
239
+ }
236
240
 
237
241
  /**
238
242
  * Filter attributes that should be applied to
@@ -14998,7 +15002,7 @@ const VCombobox = genericComponent()({
14998
15002
  menu.value = !menu.value;
14999
15003
  }
15000
15004
  function onKeydown(e) {
15001
- if (props.readonly || form?.isReadonly.value) return;
15005
+ if (isComposingIgnoreKey(e) || props.readonly || form?.isReadonly.value) return;
15002
15006
  const selectionStart = vTextFieldRef.value.selectionStart;
15003
15007
  const length = model.value.length;
15004
15008
  if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
@@ -23947,20 +23951,40 @@ const VStepperActions = genericComponent()({
23947
23951
  emit('click:next');
23948
23952
  }
23949
23953
  useRender(() => {
23954
+ const prevSlotProps = {
23955
+ onClick: onClickPrev
23956
+ };
23957
+ const nextSlotProps = {
23958
+ onClick: onClickNext
23959
+ };
23950
23960
  return createVNode("div", {
23951
23961
  "class": "v-stepper-actions"
23952
- }, [createVNode(VBtn, {
23953
- "disabled": ['prev', true].includes(props.disabled),
23954
- "text": t(props.prevText),
23955
- "variant": "text",
23956
- "onClick": onClickPrev
23957
- }, null), createVNode(VBtn, {
23958
- "disabled": ['next', true].includes(props.disabled),
23959
- "color": props.color,
23960
- "text": t(props.nextText),
23961
- "variant": "tonal",
23962
- "onClick": onClickNext
23963
- }, null)]);
23962
+ }, [createVNode(VDefaultsProvider, {
23963
+ "defaults": {
23964
+ VBtn: {
23965
+ disabled: ['prev', true].includes(props.disabled),
23966
+ text: t(props.prevText),
23967
+ variant: 'text'
23968
+ }
23969
+ }
23970
+ }, {
23971
+ default: () => [slots.prev?.({
23972
+ props: prevSlotProps
23973
+ }) ?? createVNode(VBtn, prevSlotProps, null)]
23974
+ }), createVNode(VDefaultsProvider, {
23975
+ "defaults": {
23976
+ VBtn: {
23977
+ color: props.color,
23978
+ disabled: ['next', true].includes(props.disabled),
23979
+ text: t(props.nextText),
23980
+ variant: 'tonal'
23981
+ }
23982
+ }
23983
+ }, {
23984
+ default: () => [slots.next?.({
23985
+ props: nextSlotProps
23986
+ }) ?? createVNode(VBtn, nextSlotProps, null)]
23987
+ })]);
23964
23988
  });
23965
23989
  return {};
23966
23990
  }
@@ -24179,7 +24203,6 @@ const VStepper = genericComponent()({
24179
24203
  let {
24180
24204
  slots
24181
24205
  } = _ref;
24182
- // TODO: fix typing
24183
24206
  const {
24184
24207
  items: _items,
24185
24208
  next,
@@ -24265,7 +24288,7 @@ const VStepper = genericComponent()({
24265
24288
  "key": "stepper-actions",
24266
24289
  "onClick:prev": prev,
24267
24290
  "onClick:next": next
24268
- }, null))]
24291
+ }, slots))]
24269
24292
  });
24270
24293
  });
24271
24294
  return {
@@ -24653,7 +24676,7 @@ function createVuetify$1() {
24653
24676
  date
24654
24677
  };
24655
24678
  }
24656
- const version$1 = "3.3.21";
24679
+ const version$1 = "3.3.22";
24657
24680
  createVuetify$1.version = version$1;
24658
24681
 
24659
24682
  // Vue's inject() can only be used in setup
@@ -24667,7 +24690,7 @@ function inject(key) {
24667
24690
 
24668
24691
  /* eslint-disable local-rules/sort-imports */
24669
24692
 
24670
- const version = "3.3.21";
24693
+ const version = "3.3.22";
24671
24694
 
24672
24695
  /* eslint-disable local-rules/sort-imports */
24673
24696