@vuetify/nightly 3.6.4-master.2024-05-10 → 3.6.5-master.2024-05-12

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 (60) hide show
  1. package/CHANGELOG.md +4 -9
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +268 -4
  4. package/dist/json/importMap-labs.json +18 -6
  5. package/dist/json/importMap.json +138 -138
  6. package/dist/json/tags.json +81 -0
  7. package/dist/json/web-types.json +1253 -6
  8. package/dist/vuetify-labs.css +2350 -2542
  9. package/dist/vuetify-labs.d.ts +1615 -28
  10. package/dist/vuetify-labs.esm.js +298 -11
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +298 -11
  13. package/dist/vuetify-labs.min.css +3 -3
  14. package/dist/vuetify.css +4466 -4726
  15. package/dist/vuetify.d.ts +94 -70
  16. package/dist/vuetify.esm.js +38 -11
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +38 -11
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +3 -3
  21. package/dist/vuetify.min.js +47 -48
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/components/VBtn/index.d.mts +2 -0
  24. package/lib/components/VExpansionPanel/VExpansionPanel.mjs +3 -1
  25. package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
  26. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +15 -4
  27. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  28. package/lib/components/VExpansionPanel/index.d.mts +82 -27
  29. package/lib/components/VSlideGroup/index.d.mts +2 -0
  30. package/lib/components/VStepper/VStepper.mjs +5 -2
  31. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperItem.mjs +5 -2
  33. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  34. package/lib/components/VStepper/index.d.mts +1 -1
  35. package/lib/components/VTabs/index.d.mts +2 -0
  36. package/lib/components/VWindow/index.d.mts +2 -0
  37. package/lib/components/index.d.mts +48 -27
  38. package/lib/composables/group.mjs +8 -0
  39. package/lib/composables/group.mjs.map +1 -1
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +46 -43
  43. package/lib/labs/VStepperVertical/VStepperVertical.mjs +106 -0
  44. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -0
  45. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs +38 -0
  46. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs.map +1 -0
  47. package/lib/labs/VStepperVertical/VStepperVerticalItem.css +69 -0
  48. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +134 -0
  49. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -0
  50. package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +74 -0
  51. package/lib/labs/VStepperVertical/_variables.scss +3 -0
  52. package/lib/labs/VStepperVertical/index.d.mts +1590 -0
  53. package/lib/labs/VStepperVertical/index.mjs +4 -0
  54. package/lib/labs/VStepperVertical/index.mjs.map +1 -0
  55. package/lib/labs/components.d.mts +1599 -20
  56. package/lib/labs/components.mjs +1 -0
  57. package/lib/labs/components.mjs.map +1 -1
  58. package/lib/styles/generic/_colors.scss +0 -1
  59. package/lib/styles/main.css +0 -260
  60. package/package.json +1 -1
@@ -1795,6 +1795,8 @@ interface GroupProvide {
1795
1795
  interface GroupItemProvide {
1796
1796
  id: number;
1797
1797
  isSelected: Ref<boolean>;
1798
+ isFirst: Ref<boolean>;
1799
+ isLast: Ref<boolean>;
1798
1800
  toggle: () => void;
1799
1801
  select: (value: boolean) => void;
1800
1802
  selectedClass: Ref<(string | undefined)[] | false>;
@@ -32852,6 +32854,10 @@ declare const VEmptyState: {
32852
32854
  }>>;
32853
32855
  type VEmptyState = InstanceType<typeof VEmptyState>;
32854
32856
 
32857
+ type VExpansionPanelSlot = {
32858
+ prev: () => void;
32859
+ next: () => void;
32860
+ };
32855
32861
  declare const VExpansionPanels: {
32856
32862
  new (...args: any[]): vue.CreateComponentPublicInstance<{
32857
32863
  flat: boolean;
@@ -32887,16 +32893,19 @@ declare const VExpansionPanels: {
32887
32893
  bgColor?: string | undefined;
32888
32894
  } & {
32889
32895
  $children?: vue.VNodeChild | {
32890
- default?: (() => vue.VNodeChild) | undefined;
32891
- } | (() => vue.VNodeChild);
32896
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32897
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32892
32898
  'v-slots'?: {
32893
- default?: false | (() => vue.VNodeChild) | undefined;
32899
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32894
32900
  } | undefined;
32895
32901
  } & {
32896
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32902
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32897
32903
  } & {
32898
32904
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32899
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32905
+ }, {
32906
+ next: () => void;
32907
+ prev: () => void;
32908
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32900
32909
  'update:modelValue': (val: unknown) => boolean;
32901
32910
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
32902
32911
  flat: boolean;
@@ -32932,13 +32941,13 @@ declare const VExpansionPanels: {
32932
32941
  bgColor?: string | undefined;
32933
32942
  } & {
32934
32943
  $children?: vue.VNodeChild | {
32935
- default?: (() => vue.VNodeChild) | undefined;
32936
- } | (() => vue.VNodeChild);
32944
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32945
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32937
32946
  'v-slots'?: {
32938
- default?: false | (() => vue.VNodeChild) | undefined;
32947
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32939
32948
  } | undefined;
32940
32949
  } & {
32941
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32950
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32942
32951
  } & {
32943
32952
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32944
32953
  }, {
@@ -32962,7 +32971,7 @@ declare const VExpansionPanels: {
32962
32971
  hideActions: boolean;
32963
32972
  focusable: boolean;
32964
32973
  }, true, {}, vue.SlotsType<Partial<{
32965
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
32974
+ default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
32966
32975
  [key: string]: any;
32967
32976
  }>[];
32968
32977
  }>>, {
@@ -33006,16 +33015,19 @@ declare const VExpansionPanels: {
33006
33015
  bgColor?: string | undefined;
33007
33016
  } & {
33008
33017
  $children?: vue.VNodeChild | {
33009
- default?: (() => vue.VNodeChild) | undefined;
33010
- } | (() => vue.VNodeChild);
33018
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33019
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
33011
33020
  'v-slots'?: {
33012
- default?: false | (() => vue.VNodeChild) | undefined;
33021
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33013
33022
  } | undefined;
33014
33023
  } & {
33015
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
33024
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33016
33025
  } & {
33017
33026
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
33018
- }, {}, {}, {}, {}, {
33027
+ }, {
33028
+ next: () => void;
33029
+ prev: () => void;
33030
+ }, {}, {}, {}, {
33019
33031
  flat: boolean;
33020
33032
  style: vue.StyleValue;
33021
33033
  disabled: boolean;
@@ -33073,16 +33085,19 @@ declare const VExpansionPanels: {
33073
33085
  bgColor?: string | undefined;
33074
33086
  } & {
33075
33087
  $children?: vue.VNodeChild | {
33076
- default?: (() => vue.VNodeChild) | undefined;
33077
- } | (() => vue.VNodeChild);
33088
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33089
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
33078
33090
  'v-slots'?: {
33079
- default?: false | (() => vue.VNodeChild) | undefined;
33091
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33080
33092
  } | undefined;
33081
33093
  } & {
33082
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
33094
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
33083
33095
  } & {
33084
33096
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
33085
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33097
+ }, {
33098
+ next: () => void;
33099
+ prev: () => void;
33100
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33086
33101
  'update:modelValue': (val: unknown) => boolean;
33087
33102
  }, string, {
33088
33103
  flat: boolean;
@@ -33105,7 +33120,7 @@ declare const VExpansionPanels: {
33105
33120
  hideActions: boolean;
33106
33121
  focusable: boolean;
33107
33122
  }, {}, string, vue.SlotsType<Partial<{
33108
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
33123
+ default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
33109
33124
  [key: string]: any;
33110
33125
  }>[];
33111
33126
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -33274,10 +33289,12 @@ declare const VExpansionPanel: {
33274
33289
  "onGroup:selected"?: ((val: {
33275
33290
  value: boolean;
33276
33291
  }) => any) | undefined;
33277
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33292
+ }, {
33293
+ groupItem: GroupItemProvide;
33294
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33278
33295
  'group:selected': (val: {
33279
33296
  value: boolean;
33280
- }) => boolean;
33297
+ }) => true;
33281
33298
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
33282
33299
  style: vue.StyleValue;
33283
33300
  disabled: boolean;
@@ -33399,7 +33416,9 @@ declare const VExpansionPanel: {
33399
33416
  "onGroup:selected"?: ((val: {
33400
33417
  value: boolean;
33401
33418
  }) => any) | undefined;
33402
- }, {}, {}, {}, {}, {
33419
+ }, {
33420
+ groupItem: GroupItemProvide;
33421
+ }, {}, {}, {}, {
33403
33422
  style: vue.StyleValue;
33404
33423
  disabled: boolean;
33405
33424
  tag: string;
@@ -33463,10 +33482,12 @@ declare const VExpansionPanel: {
33463
33482
  "onGroup:selected"?: ((val: {
33464
33483
  value: boolean;
33465
33484
  }) => any) | undefined;
33466
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33485
+ }, {
33486
+ groupItem: GroupItemProvide;
33487
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33467
33488
  'group:selected': (val: {
33468
33489
  value: boolean;
33469
- }) => boolean;
33490
+ }) => true;
33470
33491
  }, string, {
33471
33492
  style: vue.StyleValue;
33472
33493
  disabled: boolean;
@@ -58342,6 +58363,7 @@ declare const VSpeedDial: {
58342
58363
  }>>;
58343
58364
  type VSpeedDial = InstanceType<typeof VSpeedDial>;
58344
58365
 
58366
+ type StepperItem = string | Record<string, any>;
58345
58367
  type StepperItemSlot = {
58346
58368
  canEdit: boolean;
58347
58369
  hasError: boolean;
@@ -58666,7 +58688,6 @@ declare const VStepperItem: {
58666
58688
  }>>;
58667
58689
  type VStepperItem = InstanceType<typeof VStepperItem>;
58668
58690
 
58669
- type StepperItem = string | Record<string, any>;
58670
58691
  type VStepperSlot = {
58671
58692
  prev: () => void;
58672
58693
  next: () => void;
@@ -77145,6 +77166,1569 @@ declare const VPickerTitle: {
77145
77166
  }>>;
77146
77167
  type VPickerTitle = InstanceType<typeof VPickerTitle>;
77147
77168
 
77169
+ declare const VStepperVertical: {
77170
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
77171
+ flat: boolean;
77172
+ style: vue.StyleValue;
77173
+ disabled: boolean;
77174
+ tag: string;
77175
+ mobile: boolean;
77176
+ readonly: boolean;
77177
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77178
+ items: readonly StepperItem[];
77179
+ mandatory: NonNullable<boolean | "force">;
77180
+ multiple: boolean;
77181
+ tile: boolean;
77182
+ eager: boolean;
77183
+ ripple: boolean | {
77184
+ class: string;
77185
+ } | undefined;
77186
+ collapseIcon: IconValue;
77187
+ expandIcon: IconValue;
77188
+ itemTitle: string;
77189
+ itemValue: string;
77190
+ hideActions: boolean;
77191
+ focusable: boolean;
77192
+ prevText: string;
77193
+ nextText: string;
77194
+ editable: boolean;
77195
+ altLabels: boolean;
77196
+ nonLinear: boolean;
77197
+ } & {
77198
+ class?: any;
77199
+ title?: string | undefined;
77200
+ text?: string | undefined;
77201
+ value?: any;
77202
+ theme?: string | undefined;
77203
+ color?: string | undefined;
77204
+ modelValue?: any;
77205
+ rounded?: string | number | boolean | undefined;
77206
+ elevation?: string | number | undefined;
77207
+ max?: number | undefined;
77208
+ selectedClass?: string | undefined;
77209
+ bgColor?: string | undefined;
77210
+ } & {
77211
+ $children?: vue.VNodeChild | {
77212
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77213
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77214
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77215
+ default?: ((arg: VStepperSlot & {
77216
+ step: unknown;
77217
+ }) => vue.VNodeChild) | undefined;
77218
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77219
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77220
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77221
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77222
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77223
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77224
+ } | ((arg: VStepperSlot & {
77225
+ step: unknown;
77226
+ }) => vue.VNodeChild);
77227
+ 'v-slots'?: {
77228
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77229
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77230
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77231
+ default?: false | ((arg: VStepperSlot & {
77232
+ step: unknown;
77233
+ }) => vue.VNodeChild) | undefined;
77234
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77235
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77236
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77237
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77238
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77239
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77240
+ } | undefined;
77241
+ } & {
77242
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77243
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77244
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77245
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
77246
+ step: unknown;
77247
+ }) => vue.VNodeChild) | undefined;
77248
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77249
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77250
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77251
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77252
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77253
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77254
+ } & {
77255
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
77256
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
77257
+ 'update:modelValue': (val: any) => boolean;
77258
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
77259
+ flat: boolean;
77260
+ style: vue.StyleValue;
77261
+ disabled: boolean;
77262
+ tag: string;
77263
+ mobile: boolean;
77264
+ readonly: boolean;
77265
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77266
+ items: readonly StepperItem[];
77267
+ mandatory: NonNullable<boolean | "force">;
77268
+ multiple: boolean;
77269
+ tile: boolean;
77270
+ eager: boolean;
77271
+ ripple: boolean | {
77272
+ class: string;
77273
+ } | undefined;
77274
+ collapseIcon: IconValue;
77275
+ expandIcon: IconValue;
77276
+ itemTitle: string;
77277
+ itemValue: string;
77278
+ hideActions: boolean;
77279
+ focusable: boolean;
77280
+ prevText: string;
77281
+ nextText: string;
77282
+ editable: boolean;
77283
+ altLabels: boolean;
77284
+ nonLinear: boolean;
77285
+ } & {
77286
+ class?: any;
77287
+ title?: string | undefined;
77288
+ text?: string | undefined;
77289
+ value?: any;
77290
+ theme?: string | undefined;
77291
+ color?: string | undefined;
77292
+ modelValue?: any;
77293
+ rounded?: string | number | boolean | undefined;
77294
+ elevation?: string | number | undefined;
77295
+ max?: number | undefined;
77296
+ selectedClass?: string | undefined;
77297
+ bgColor?: string | undefined;
77298
+ } & {
77299
+ $children?: vue.VNodeChild | {
77300
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77301
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77302
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77303
+ default?: ((arg: VStepperSlot & {
77304
+ step: unknown;
77305
+ }) => vue.VNodeChild) | undefined;
77306
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77307
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77308
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77309
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77310
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77311
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77312
+ } | ((arg: VStepperSlot & {
77313
+ step: unknown;
77314
+ }) => vue.VNodeChild);
77315
+ 'v-slots'?: {
77316
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77317
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77318
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77319
+ default?: false | ((arg: VStepperSlot & {
77320
+ step: unknown;
77321
+ }) => vue.VNodeChild) | undefined;
77322
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77323
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77324
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77325
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77326
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77327
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77328
+ } | undefined;
77329
+ } & {
77330
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77331
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77332
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77333
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
77334
+ step: unknown;
77335
+ }) => vue.VNodeChild) | undefined;
77336
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77337
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77338
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77339
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77340
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77341
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77342
+ } & {
77343
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
77344
+ }, {
77345
+ flat: boolean;
77346
+ style: vue.StyleValue;
77347
+ disabled: boolean;
77348
+ tag: string;
77349
+ mobile: boolean;
77350
+ readonly: boolean;
77351
+ modelValue: any;
77352
+ rounded: string | number | boolean;
77353
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77354
+ items: readonly StepperItem[];
77355
+ mandatory: NonNullable<boolean | "force">;
77356
+ multiple: boolean;
77357
+ tile: boolean;
77358
+ eager: boolean;
77359
+ ripple: boolean | {
77360
+ class: string;
77361
+ } | undefined;
77362
+ collapseIcon: IconValue;
77363
+ expandIcon: IconValue;
77364
+ itemTitle: string;
77365
+ itemValue: string;
77366
+ hideActions: boolean;
77367
+ focusable: boolean;
77368
+ prevText: string;
77369
+ nextText: string;
77370
+ editable: boolean;
77371
+ altLabels: boolean;
77372
+ nonLinear: boolean;
77373
+ }, true, {}, vue.SlotsType<Partial<{
77374
+ [x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77375
+ [key: string]: any;
77376
+ }>[];
77377
+ [x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77378
+ [key: string]: any;
77379
+ }>[];
77380
+ actions: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77381
+ [key: string]: any;
77382
+ }>[];
77383
+ default: (arg: VStepperSlot & {
77384
+ step: unknown;
77385
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77386
+ [key: string]: any;
77387
+ }>[];
77388
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77389
+ [key: string]: any;
77390
+ }>[];
77391
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77392
+ [key: string]: any;
77393
+ }>[];
77394
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77395
+ [key: string]: any;
77396
+ }>[];
77397
+ item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77398
+ [key: string]: any;
77399
+ }>[];
77400
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77401
+ [key: string]: any;
77402
+ }>[];
77403
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77404
+ [key: string]: any;
77405
+ }>[];
77406
+ }>>, {
77407
+ P: {};
77408
+ B: {};
77409
+ D: {};
77410
+ C: {};
77411
+ M: {};
77412
+ Defaults: {};
77413
+ }, {
77414
+ flat: boolean;
77415
+ style: vue.StyleValue;
77416
+ disabled: boolean;
77417
+ tag: string;
77418
+ mobile: boolean;
77419
+ readonly: boolean;
77420
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77421
+ items: readonly StepperItem[];
77422
+ mandatory: NonNullable<boolean | "force">;
77423
+ multiple: boolean;
77424
+ tile: boolean;
77425
+ eager: boolean;
77426
+ ripple: boolean | {
77427
+ class: string;
77428
+ } | undefined;
77429
+ collapseIcon: IconValue;
77430
+ expandIcon: IconValue;
77431
+ itemTitle: string;
77432
+ itemValue: string;
77433
+ hideActions: boolean;
77434
+ focusable: boolean;
77435
+ prevText: string;
77436
+ nextText: string;
77437
+ editable: boolean;
77438
+ altLabels: boolean;
77439
+ nonLinear: boolean;
77440
+ } & {
77441
+ class?: any;
77442
+ title?: string | undefined;
77443
+ text?: string | undefined;
77444
+ value?: any;
77445
+ theme?: string | undefined;
77446
+ color?: string | undefined;
77447
+ modelValue?: any;
77448
+ rounded?: string | number | boolean | undefined;
77449
+ elevation?: string | number | undefined;
77450
+ max?: number | undefined;
77451
+ selectedClass?: string | undefined;
77452
+ bgColor?: string | undefined;
77453
+ } & {
77454
+ $children?: vue.VNodeChild | {
77455
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77456
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77457
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77458
+ default?: ((arg: VStepperSlot & {
77459
+ step: unknown;
77460
+ }) => vue.VNodeChild) | undefined;
77461
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77462
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77463
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77464
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77465
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77466
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77467
+ } | ((arg: VStepperSlot & {
77468
+ step: unknown;
77469
+ }) => vue.VNodeChild);
77470
+ 'v-slots'?: {
77471
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77472
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77473
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77474
+ default?: false | ((arg: VStepperSlot & {
77475
+ step: unknown;
77476
+ }) => vue.VNodeChild) | undefined;
77477
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77478
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77479
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77480
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77481
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77482
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77483
+ } | undefined;
77484
+ } & {
77485
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77486
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77487
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77488
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
77489
+ step: unknown;
77490
+ }) => vue.VNodeChild) | undefined;
77491
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77492
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77493
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77494
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77495
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77496
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77497
+ } & {
77498
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
77499
+ }, {}, {}, {}, {}, {
77500
+ flat: boolean;
77501
+ style: vue.StyleValue;
77502
+ disabled: boolean;
77503
+ tag: string;
77504
+ mobile: boolean;
77505
+ readonly: boolean;
77506
+ modelValue: any;
77507
+ rounded: string | number | boolean;
77508
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77509
+ items: readonly StepperItem[];
77510
+ mandatory: NonNullable<boolean | "force">;
77511
+ multiple: boolean;
77512
+ tile: boolean;
77513
+ eager: boolean;
77514
+ ripple: boolean | {
77515
+ class: string;
77516
+ } | undefined;
77517
+ collapseIcon: IconValue;
77518
+ expandIcon: IconValue;
77519
+ itemTitle: string;
77520
+ itemValue: string;
77521
+ hideActions: boolean;
77522
+ focusable: boolean;
77523
+ prevText: string;
77524
+ nextText: string;
77525
+ editable: boolean;
77526
+ altLabels: boolean;
77527
+ nonLinear: boolean;
77528
+ }>;
77529
+ __isFragment?: undefined;
77530
+ __isTeleport?: undefined;
77531
+ __isSuspense?: undefined;
77532
+ } & vue.ComponentOptionsBase<{
77533
+ flat: boolean;
77534
+ style: vue.StyleValue;
77535
+ disabled: boolean;
77536
+ tag: string;
77537
+ mobile: boolean;
77538
+ readonly: boolean;
77539
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77540
+ items: readonly StepperItem[];
77541
+ mandatory: NonNullable<boolean | "force">;
77542
+ multiple: boolean;
77543
+ tile: boolean;
77544
+ eager: boolean;
77545
+ ripple: boolean | {
77546
+ class: string;
77547
+ } | undefined;
77548
+ collapseIcon: IconValue;
77549
+ expandIcon: IconValue;
77550
+ itemTitle: string;
77551
+ itemValue: string;
77552
+ hideActions: boolean;
77553
+ focusable: boolean;
77554
+ prevText: string;
77555
+ nextText: string;
77556
+ editable: boolean;
77557
+ altLabels: boolean;
77558
+ nonLinear: boolean;
77559
+ } & {
77560
+ class?: any;
77561
+ title?: string | undefined;
77562
+ text?: string | undefined;
77563
+ value?: any;
77564
+ theme?: string | undefined;
77565
+ color?: string | undefined;
77566
+ modelValue?: any;
77567
+ rounded?: string | number | boolean | undefined;
77568
+ elevation?: string | number | undefined;
77569
+ max?: number | undefined;
77570
+ selectedClass?: string | undefined;
77571
+ bgColor?: string | undefined;
77572
+ } & {
77573
+ $children?: vue.VNodeChild | {
77574
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77575
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77576
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77577
+ default?: ((arg: VStepperSlot & {
77578
+ step: unknown;
77579
+ }) => vue.VNodeChild) | undefined;
77580
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77581
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77582
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77583
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
77584
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77585
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77586
+ } | ((arg: VStepperSlot & {
77587
+ step: unknown;
77588
+ }) => vue.VNodeChild);
77589
+ 'v-slots'?: {
77590
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77591
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77592
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77593
+ default?: false | ((arg: VStepperSlot & {
77594
+ step: unknown;
77595
+ }) => vue.VNodeChild) | undefined;
77596
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77597
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77598
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77599
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77600
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77601
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77602
+ } | undefined;
77603
+ } & {
77604
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77605
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77606
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77607
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
77608
+ step: unknown;
77609
+ }) => vue.VNodeChild) | undefined;
77610
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77611
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77612
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77613
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
77614
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77615
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77616
+ } & {
77617
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
77618
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
77619
+ 'update:modelValue': (val: any) => boolean;
77620
+ }, string, {
77621
+ flat: boolean;
77622
+ style: vue.StyleValue;
77623
+ disabled: boolean;
77624
+ tag: string;
77625
+ mobile: boolean;
77626
+ readonly: boolean;
77627
+ modelValue: any;
77628
+ rounded: string | number | boolean;
77629
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77630
+ items: readonly StepperItem[];
77631
+ mandatory: NonNullable<boolean | "force">;
77632
+ multiple: boolean;
77633
+ tile: boolean;
77634
+ eager: boolean;
77635
+ ripple: boolean | {
77636
+ class: string;
77637
+ } | undefined;
77638
+ collapseIcon: IconValue;
77639
+ expandIcon: IconValue;
77640
+ itemTitle: string;
77641
+ itemValue: string;
77642
+ hideActions: boolean;
77643
+ focusable: boolean;
77644
+ prevText: string;
77645
+ nextText: string;
77646
+ editable: boolean;
77647
+ altLabels: boolean;
77648
+ nonLinear: boolean;
77649
+ }, {}, string, vue.SlotsType<Partial<{
77650
+ [x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77651
+ [key: string]: any;
77652
+ }>[];
77653
+ [x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77654
+ [key: string]: any;
77655
+ }>[];
77656
+ actions: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77657
+ [key: string]: any;
77658
+ }>[];
77659
+ default: (arg: VStepperSlot & {
77660
+ step: unknown;
77661
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77662
+ [key: string]: any;
77663
+ }>[];
77664
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77665
+ [key: string]: any;
77666
+ }>[];
77667
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77668
+ [key: string]: any;
77669
+ }>[];
77670
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77671
+ [key: string]: any;
77672
+ }>[];
77673
+ item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77674
+ [key: string]: any;
77675
+ }>[];
77676
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77677
+ [key: string]: any;
77678
+ }>[];
77679
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
77680
+ [key: string]: any;
77681
+ }>[];
77682
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
77683
+ flat: BooleanConstructor;
77684
+ class: vue.PropType<any>;
77685
+ style: {
77686
+ type: vue.PropType<vue.StyleValue>;
77687
+ default: null;
77688
+ };
77689
+ title: StringConstructor;
77690
+ text: StringConstructor;
77691
+ value: null;
77692
+ theme: StringConstructor;
77693
+ color: StringConstructor;
77694
+ disabled: BooleanConstructor;
77695
+ tag: {
77696
+ type: StringConstructor;
77697
+ default: string;
77698
+ };
77699
+ readonly: BooleanConstructor;
77700
+ modelValue: {
77701
+ type: null;
77702
+ default: undefined;
77703
+ };
77704
+ rounded: {
77705
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
77706
+ default: undefined;
77707
+ };
77708
+ variant: Omit<{
77709
+ type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
77710
+ default: string;
77711
+ validator: (v: any) => boolean;
77712
+ }, "default" | "type"> & {
77713
+ type: vue.PropType<NonNullable<"default" | "inset" | "accordion" | "popout">>;
77714
+ default: NonNullable<"default" | "inset" | "accordion" | "popout">;
77715
+ };
77716
+ mandatory: {
77717
+ type: vue.PropType<NonNullable<boolean | "force">>;
77718
+ default: NonNullable<boolean | "force">;
77719
+ };
77720
+ multiple: BooleanConstructor;
77721
+ tile: BooleanConstructor;
77722
+ eager: BooleanConstructor;
77723
+ elevation: {
77724
+ type: (StringConstructor | NumberConstructor)[];
77725
+ validator(v: any): boolean;
77726
+ };
77727
+ max: NumberConstructor;
77728
+ selectedClass: StringConstructor;
77729
+ bgColor: StringConstructor;
77730
+ ripple: {
77731
+ type: vue.PropType<boolean | {
77732
+ class: string;
77733
+ } | undefined>;
77734
+ default: boolean;
77735
+ };
77736
+ collapseIcon: {
77737
+ type: vue.PropType<IconValue>;
77738
+ default: string;
77739
+ };
77740
+ expandIcon: {
77741
+ type: vue.PropType<IconValue>;
77742
+ default: string;
77743
+ };
77744
+ hideActions: BooleanConstructor;
77745
+ focusable: BooleanConstructor;
77746
+ altLabels: BooleanConstructor;
77747
+ editable: BooleanConstructor;
77748
+ items: {
77749
+ type: vue.PropType<readonly StepperItem[]>;
77750
+ default: () => never[];
77751
+ };
77752
+ itemTitle: {
77753
+ type: StringConstructor;
77754
+ default: string;
77755
+ };
77756
+ itemValue: {
77757
+ type: StringConstructor;
77758
+ default: string;
77759
+ };
77760
+ mobile: BooleanConstructor;
77761
+ nonLinear: BooleanConstructor;
77762
+ prevText: {
77763
+ type: StringConstructor;
77764
+ default: string;
77765
+ };
77766
+ nextText: {
77767
+ type: StringConstructor;
77768
+ default: string;
77769
+ };
77770
+ }, vue.ExtractPropTypes<{
77771
+ flat: BooleanConstructor;
77772
+ class: vue.PropType<any>;
77773
+ style: {
77774
+ type: vue.PropType<vue.StyleValue>;
77775
+ default: null;
77776
+ };
77777
+ title: StringConstructor;
77778
+ text: StringConstructor;
77779
+ value: null;
77780
+ theme: StringConstructor;
77781
+ color: StringConstructor;
77782
+ disabled: BooleanConstructor;
77783
+ tag: {
77784
+ type: StringConstructor;
77785
+ default: string;
77786
+ };
77787
+ readonly: BooleanConstructor;
77788
+ modelValue: {
77789
+ type: null;
77790
+ default: undefined;
77791
+ };
77792
+ rounded: {
77793
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
77794
+ default: undefined;
77795
+ };
77796
+ variant: Omit<{
77797
+ type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
77798
+ default: string;
77799
+ validator: (v: any) => boolean;
77800
+ }, "default" | "type"> & {
77801
+ type: vue.PropType<NonNullable<"default" | "inset" | "accordion" | "popout">>;
77802
+ default: NonNullable<"default" | "inset" | "accordion" | "popout">;
77803
+ };
77804
+ mandatory: {
77805
+ type: vue.PropType<NonNullable<boolean | "force">>;
77806
+ default: NonNullable<boolean | "force">;
77807
+ };
77808
+ multiple: BooleanConstructor;
77809
+ tile: BooleanConstructor;
77810
+ eager: BooleanConstructor;
77811
+ elevation: {
77812
+ type: (StringConstructor | NumberConstructor)[];
77813
+ validator(v: any): boolean;
77814
+ };
77815
+ max: NumberConstructor;
77816
+ selectedClass: StringConstructor;
77817
+ bgColor: StringConstructor;
77818
+ ripple: {
77819
+ type: vue.PropType<boolean | {
77820
+ class: string;
77821
+ } | undefined>;
77822
+ default: boolean;
77823
+ };
77824
+ collapseIcon: {
77825
+ type: vue.PropType<IconValue>;
77826
+ default: string;
77827
+ };
77828
+ expandIcon: {
77829
+ type: vue.PropType<IconValue>;
77830
+ default: string;
77831
+ };
77832
+ hideActions: BooleanConstructor;
77833
+ focusable: BooleanConstructor;
77834
+ altLabels: BooleanConstructor;
77835
+ editable: BooleanConstructor;
77836
+ items: {
77837
+ type: vue.PropType<readonly StepperItem[]>;
77838
+ default: () => never[];
77839
+ };
77840
+ itemTitle: {
77841
+ type: StringConstructor;
77842
+ default: string;
77843
+ };
77844
+ itemValue: {
77845
+ type: StringConstructor;
77846
+ default: string;
77847
+ };
77848
+ mobile: BooleanConstructor;
77849
+ nonLinear: BooleanConstructor;
77850
+ prevText: {
77851
+ type: StringConstructor;
77852
+ default: string;
77853
+ };
77854
+ nextText: {
77855
+ type: StringConstructor;
77856
+ default: string;
77857
+ };
77858
+ }>>;
77859
+ type VStepperVertical = InstanceType<typeof VStepperVertical>;
77860
+
77861
+ declare const VStepperVerticalItem: {
77862
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
77863
+ style: vue.StyleValue;
77864
+ error: boolean;
77865
+ disabled: boolean;
77866
+ tag: string;
77867
+ complete: boolean;
77868
+ static: boolean;
77869
+ readonly: boolean;
77870
+ rules: readonly ValidationRule[];
77871
+ tile: boolean;
77872
+ eager: boolean;
77873
+ ripple: boolean | {
77874
+ class: string;
77875
+ } | undefined;
77876
+ collapseIcon: NonNullable<IconValue>;
77877
+ expandIcon: NonNullable<IconValue>;
77878
+ hideActions: boolean;
77879
+ focusable: boolean;
77880
+ completeIcon: string;
77881
+ editable: boolean;
77882
+ editIcon: string;
77883
+ errorIcon: string;
77884
+ } & {
77885
+ class?: any;
77886
+ title?: string | undefined;
77887
+ text?: string | undefined;
77888
+ value?: any;
77889
+ color?: string | undefined;
77890
+ icon?: string | undefined;
77891
+ rounded?: string | number | boolean | undefined;
77892
+ elevation?: string | number | undefined;
77893
+ selectedClass?: string | undefined;
77894
+ bgColor?: string | undefined;
77895
+ subtitle?: string | undefined;
77896
+ } & {
77897
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
77898
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77899
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77900
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77901
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77902
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77903
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77904
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77905
+ actions?: ((arg: StepperItemSlot & {
77906
+ next: () => void;
77907
+ prev: () => void;
77908
+ }) => vue.VNodeChild) | undefined;
77909
+ };
77910
+ 'v-slots'?: {
77911
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77912
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77913
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77914
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77915
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77916
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77917
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77918
+ actions?: false | ((arg: StepperItemSlot & {
77919
+ next: () => void;
77920
+ prev: () => void;
77921
+ }) => vue.VNodeChild) | undefined;
77922
+ } | undefined;
77923
+ } & {
77924
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77925
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77926
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77927
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77928
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77929
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77930
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77931
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
77932
+ next: () => void;
77933
+ prev: () => void;
77934
+ }) => vue.VNodeChild) | undefined;
77935
+ } & {
77936
+ "onClick:prev"?: (() => any) | undefined;
77937
+ "onClick:next"?: (() => any) | undefined;
77938
+ "onClick:finish"?: (() => any) | undefined;
77939
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
77940
+ 'click:next': () => true;
77941
+ 'click:prev': () => true;
77942
+ 'click:finish': () => true;
77943
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
77944
+ style: vue.StyleValue;
77945
+ error: boolean;
77946
+ disabled: boolean;
77947
+ tag: string;
77948
+ complete: boolean;
77949
+ static: boolean;
77950
+ readonly: boolean;
77951
+ rules: readonly ValidationRule[];
77952
+ tile: boolean;
77953
+ eager: boolean;
77954
+ ripple: boolean | {
77955
+ class: string;
77956
+ } | undefined;
77957
+ collapseIcon: NonNullable<IconValue>;
77958
+ expandIcon: NonNullable<IconValue>;
77959
+ hideActions: boolean;
77960
+ focusable: boolean;
77961
+ completeIcon: string;
77962
+ editable: boolean;
77963
+ editIcon: string;
77964
+ errorIcon: string;
77965
+ } & {
77966
+ class?: any;
77967
+ title?: string | undefined;
77968
+ text?: string | undefined;
77969
+ value?: any;
77970
+ color?: string | undefined;
77971
+ icon?: string | undefined;
77972
+ rounded?: string | number | boolean | undefined;
77973
+ elevation?: string | number | undefined;
77974
+ selectedClass?: string | undefined;
77975
+ bgColor?: string | undefined;
77976
+ subtitle?: string | undefined;
77977
+ } & {
77978
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
77979
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77980
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77981
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77982
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77983
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77984
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77985
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77986
+ actions?: ((arg: StepperItemSlot & {
77987
+ next: () => void;
77988
+ prev: () => void;
77989
+ }) => vue.VNodeChild) | undefined;
77990
+ };
77991
+ 'v-slots'?: {
77992
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77993
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77994
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77995
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77996
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77997
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77998
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
77999
+ actions?: false | ((arg: StepperItemSlot & {
78000
+ next: () => void;
78001
+ prev: () => void;
78002
+ }) => vue.VNodeChild) | undefined;
78003
+ } | undefined;
78004
+ } & {
78005
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78006
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78007
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78008
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78009
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78010
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78011
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78012
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
78013
+ next: () => void;
78014
+ prev: () => void;
78015
+ }) => vue.VNodeChild) | undefined;
78016
+ } & {
78017
+ "onClick:prev"?: (() => any) | undefined;
78018
+ "onClick:next"?: (() => any) | undefined;
78019
+ "onClick:finish"?: (() => any) | undefined;
78020
+ }, {
78021
+ style: vue.StyleValue;
78022
+ error: boolean;
78023
+ disabled: boolean;
78024
+ tag: string;
78025
+ complete: boolean;
78026
+ static: boolean;
78027
+ readonly: boolean;
78028
+ rules: readonly ValidationRule[];
78029
+ rounded: string | number | boolean;
78030
+ tile: boolean;
78031
+ eager: boolean;
78032
+ ripple: boolean | {
78033
+ class: string;
78034
+ } | undefined;
78035
+ collapseIcon: NonNullable<IconValue>;
78036
+ expandIcon: NonNullable<IconValue>;
78037
+ hideActions: boolean;
78038
+ focusable: boolean;
78039
+ completeIcon: string;
78040
+ editable: boolean;
78041
+ editIcon: string;
78042
+ errorIcon: string;
78043
+ }, true, {}, vue.SlotsType<Partial<{
78044
+ default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78045
+ [key: string]: any;
78046
+ }>[];
78047
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78048
+ [key: string]: any;
78049
+ }>[];
78050
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78051
+ [key: string]: any;
78052
+ }>[];
78053
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78054
+ [key: string]: any;
78055
+ }>[];
78056
+ text: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78057
+ [key: string]: any;
78058
+ }>[];
78059
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78060
+ [key: string]: any;
78061
+ }>[];
78062
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78063
+ [key: string]: any;
78064
+ }>[];
78065
+ actions: (arg: StepperItemSlot & {
78066
+ next: () => void;
78067
+ prev: () => void;
78068
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78069
+ [key: string]: any;
78070
+ }>[];
78071
+ }>>, {
78072
+ P: {};
78073
+ B: {};
78074
+ D: {};
78075
+ C: {};
78076
+ M: {};
78077
+ Defaults: {};
78078
+ }, {
78079
+ style: vue.StyleValue;
78080
+ error: boolean;
78081
+ disabled: boolean;
78082
+ tag: string;
78083
+ complete: boolean;
78084
+ static: boolean;
78085
+ readonly: boolean;
78086
+ rules: readonly ValidationRule[];
78087
+ tile: boolean;
78088
+ eager: boolean;
78089
+ ripple: boolean | {
78090
+ class: string;
78091
+ } | undefined;
78092
+ collapseIcon: NonNullable<IconValue>;
78093
+ expandIcon: NonNullable<IconValue>;
78094
+ hideActions: boolean;
78095
+ focusable: boolean;
78096
+ completeIcon: string;
78097
+ editable: boolean;
78098
+ editIcon: string;
78099
+ errorIcon: string;
78100
+ } & {
78101
+ class?: any;
78102
+ title?: string | undefined;
78103
+ text?: string | undefined;
78104
+ value?: any;
78105
+ color?: string | undefined;
78106
+ icon?: string | undefined;
78107
+ rounded?: string | number | boolean | undefined;
78108
+ elevation?: string | number | undefined;
78109
+ selectedClass?: string | undefined;
78110
+ bgColor?: string | undefined;
78111
+ subtitle?: string | undefined;
78112
+ } & {
78113
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
78114
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78115
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78116
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78117
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78118
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78119
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78120
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78121
+ actions?: ((arg: StepperItemSlot & {
78122
+ next: () => void;
78123
+ prev: () => void;
78124
+ }) => vue.VNodeChild) | undefined;
78125
+ };
78126
+ 'v-slots'?: {
78127
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78128
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78129
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78130
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78131
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78132
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78133
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78134
+ actions?: false | ((arg: StepperItemSlot & {
78135
+ next: () => void;
78136
+ prev: () => void;
78137
+ }) => vue.VNodeChild) | undefined;
78138
+ } | undefined;
78139
+ } & {
78140
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78141
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78142
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78143
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78144
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78145
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78146
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78147
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
78148
+ next: () => void;
78149
+ prev: () => void;
78150
+ }) => vue.VNodeChild) | undefined;
78151
+ } & {
78152
+ "onClick:prev"?: (() => any) | undefined;
78153
+ "onClick:next"?: (() => any) | undefined;
78154
+ "onClick:finish"?: (() => any) | undefined;
78155
+ }, {}, {}, {}, {}, {
78156
+ style: vue.StyleValue;
78157
+ error: boolean;
78158
+ disabled: boolean;
78159
+ tag: string;
78160
+ complete: boolean;
78161
+ static: boolean;
78162
+ readonly: boolean;
78163
+ rules: readonly ValidationRule[];
78164
+ rounded: string | number | boolean;
78165
+ tile: boolean;
78166
+ eager: boolean;
78167
+ ripple: boolean | {
78168
+ class: string;
78169
+ } | undefined;
78170
+ collapseIcon: NonNullable<IconValue>;
78171
+ expandIcon: NonNullable<IconValue>;
78172
+ hideActions: boolean;
78173
+ focusable: boolean;
78174
+ completeIcon: string;
78175
+ editable: boolean;
78176
+ editIcon: string;
78177
+ errorIcon: string;
78178
+ }>;
78179
+ __isFragment?: undefined;
78180
+ __isTeleport?: undefined;
78181
+ __isSuspense?: undefined;
78182
+ } & vue.ComponentOptionsBase<{
78183
+ style: vue.StyleValue;
78184
+ error: boolean;
78185
+ disabled: boolean;
78186
+ tag: string;
78187
+ complete: boolean;
78188
+ static: boolean;
78189
+ readonly: boolean;
78190
+ rules: readonly ValidationRule[];
78191
+ tile: boolean;
78192
+ eager: boolean;
78193
+ ripple: boolean | {
78194
+ class: string;
78195
+ } | undefined;
78196
+ collapseIcon: NonNullable<IconValue>;
78197
+ expandIcon: NonNullable<IconValue>;
78198
+ hideActions: boolean;
78199
+ focusable: boolean;
78200
+ completeIcon: string;
78201
+ editable: boolean;
78202
+ editIcon: string;
78203
+ errorIcon: string;
78204
+ } & {
78205
+ class?: any;
78206
+ title?: string | undefined;
78207
+ text?: string | undefined;
78208
+ value?: any;
78209
+ color?: string | undefined;
78210
+ icon?: string | undefined;
78211
+ rounded?: string | number | boolean | undefined;
78212
+ elevation?: string | number | undefined;
78213
+ selectedClass?: string | undefined;
78214
+ bgColor?: string | undefined;
78215
+ subtitle?: string | undefined;
78216
+ } & {
78217
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
78218
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78219
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78220
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78221
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78222
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78223
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78224
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78225
+ actions?: ((arg: StepperItemSlot & {
78226
+ next: () => void;
78227
+ prev: () => void;
78228
+ }) => vue.VNodeChild) | undefined;
78229
+ };
78230
+ 'v-slots'?: {
78231
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78232
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78233
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78234
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78235
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78236
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78237
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78238
+ actions?: false | ((arg: StepperItemSlot & {
78239
+ next: () => void;
78240
+ prev: () => void;
78241
+ }) => vue.VNodeChild) | undefined;
78242
+ } | undefined;
78243
+ } & {
78244
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78245
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78246
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78247
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78248
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78249
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78250
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
78251
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
78252
+ next: () => void;
78253
+ prev: () => void;
78254
+ }) => vue.VNodeChild) | undefined;
78255
+ } & {
78256
+ "onClick:prev"?: (() => any) | undefined;
78257
+ "onClick:next"?: (() => any) | undefined;
78258
+ "onClick:finish"?: (() => any) | undefined;
78259
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
78260
+ 'click:next': () => true;
78261
+ 'click:prev': () => true;
78262
+ 'click:finish': () => true;
78263
+ }, string, {
78264
+ style: vue.StyleValue;
78265
+ error: boolean;
78266
+ disabled: boolean;
78267
+ tag: string;
78268
+ complete: boolean;
78269
+ static: boolean;
78270
+ readonly: boolean;
78271
+ rules: readonly ValidationRule[];
78272
+ rounded: string | number | boolean;
78273
+ tile: boolean;
78274
+ eager: boolean;
78275
+ ripple: boolean | {
78276
+ class: string;
78277
+ } | undefined;
78278
+ collapseIcon: NonNullable<IconValue>;
78279
+ expandIcon: NonNullable<IconValue>;
78280
+ hideActions: boolean;
78281
+ focusable: boolean;
78282
+ completeIcon: string;
78283
+ editable: boolean;
78284
+ editIcon: string;
78285
+ errorIcon: string;
78286
+ }, {}, string, vue.SlotsType<Partial<{
78287
+ default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78288
+ [key: string]: any;
78289
+ }>[];
78290
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78291
+ [key: string]: any;
78292
+ }>[];
78293
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78294
+ [key: string]: any;
78295
+ }>[];
78296
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78297
+ [key: string]: any;
78298
+ }>[];
78299
+ text: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78300
+ [key: string]: any;
78301
+ }>[];
78302
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78303
+ [key: string]: any;
78304
+ }>[];
78305
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78306
+ [key: string]: any;
78307
+ }>[];
78308
+ actions: (arg: StepperItemSlot & {
78309
+ next: () => void;
78310
+ prev: () => void;
78311
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78312
+ [key: string]: any;
78313
+ }>[];
78314
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
78315
+ class: vue.PropType<any>;
78316
+ style: {
78317
+ type: vue.PropType<vue.StyleValue>;
78318
+ default: null;
78319
+ };
78320
+ title: StringConstructor;
78321
+ text: StringConstructor;
78322
+ value: null;
78323
+ color: StringConstructor;
78324
+ disabled: BooleanConstructor;
78325
+ tag: {
78326
+ type: StringConstructor;
78327
+ default: string;
78328
+ };
78329
+ static: BooleanConstructor;
78330
+ readonly: BooleanConstructor;
78331
+ rounded: {
78332
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
78333
+ default: undefined;
78334
+ };
78335
+ tile: BooleanConstructor;
78336
+ eager: BooleanConstructor;
78337
+ elevation: {
78338
+ type: (StringConstructor | NumberConstructor)[];
78339
+ validator(v: any): boolean;
78340
+ };
78341
+ selectedClass: StringConstructor;
78342
+ bgColor: StringConstructor;
78343
+ ripple: {
78344
+ type: vue.PropType<boolean | {
78345
+ class: string;
78346
+ } | undefined>;
78347
+ default: boolean;
78348
+ };
78349
+ collapseIcon: Omit<{
78350
+ type: vue.PropType<IconValue>;
78351
+ default: string;
78352
+ }, "default" | "type"> & {
78353
+ type: vue.PropType<NonNullable<IconValue>>;
78354
+ default: NonNullable<IconValue>;
78355
+ };
78356
+ expandIcon: Omit<{
78357
+ type: vue.PropType<IconValue>;
78358
+ default: string;
78359
+ }, "default" | "type"> & {
78360
+ type: vue.PropType<NonNullable<IconValue>>;
78361
+ default: NonNullable<IconValue>;
78362
+ };
78363
+ focusable: BooleanConstructor;
78364
+ subtitle: StringConstructor;
78365
+ complete: BooleanConstructor;
78366
+ completeIcon: {
78367
+ type: StringConstructor;
78368
+ default: string;
78369
+ };
78370
+ editable: BooleanConstructor;
78371
+ editIcon: {
78372
+ type: StringConstructor;
78373
+ default: string;
78374
+ };
78375
+ error: BooleanConstructor;
78376
+ errorIcon: {
78377
+ type: StringConstructor;
78378
+ default: string;
78379
+ };
78380
+ icon: StringConstructor;
78381
+ rules: {
78382
+ type: vue.PropType<readonly ValidationRule[]>;
78383
+ default: () => never[];
78384
+ };
78385
+ hideActions: BooleanConstructor;
78386
+ }, vue.ExtractPropTypes<{
78387
+ class: vue.PropType<any>;
78388
+ style: {
78389
+ type: vue.PropType<vue.StyleValue>;
78390
+ default: null;
78391
+ };
78392
+ title: StringConstructor;
78393
+ text: StringConstructor;
78394
+ value: null;
78395
+ color: StringConstructor;
78396
+ disabled: BooleanConstructor;
78397
+ tag: {
78398
+ type: StringConstructor;
78399
+ default: string;
78400
+ };
78401
+ static: BooleanConstructor;
78402
+ readonly: BooleanConstructor;
78403
+ rounded: {
78404
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
78405
+ default: undefined;
78406
+ };
78407
+ tile: BooleanConstructor;
78408
+ eager: BooleanConstructor;
78409
+ elevation: {
78410
+ type: (StringConstructor | NumberConstructor)[];
78411
+ validator(v: any): boolean;
78412
+ };
78413
+ selectedClass: StringConstructor;
78414
+ bgColor: StringConstructor;
78415
+ ripple: {
78416
+ type: vue.PropType<boolean | {
78417
+ class: string;
78418
+ } | undefined>;
78419
+ default: boolean;
78420
+ };
78421
+ collapseIcon: Omit<{
78422
+ type: vue.PropType<IconValue>;
78423
+ default: string;
78424
+ }, "default" | "type"> & {
78425
+ type: vue.PropType<NonNullable<IconValue>>;
78426
+ default: NonNullable<IconValue>;
78427
+ };
78428
+ expandIcon: Omit<{
78429
+ type: vue.PropType<IconValue>;
78430
+ default: string;
78431
+ }, "default" | "type"> & {
78432
+ type: vue.PropType<NonNullable<IconValue>>;
78433
+ default: NonNullable<IconValue>;
78434
+ };
78435
+ focusable: BooleanConstructor;
78436
+ subtitle: StringConstructor;
78437
+ complete: BooleanConstructor;
78438
+ completeIcon: {
78439
+ type: StringConstructor;
78440
+ default: string;
78441
+ };
78442
+ editable: BooleanConstructor;
78443
+ editIcon: {
78444
+ type: StringConstructor;
78445
+ default: string;
78446
+ };
78447
+ error: BooleanConstructor;
78448
+ errorIcon: {
78449
+ type: StringConstructor;
78450
+ default: string;
78451
+ };
78452
+ icon: StringConstructor;
78453
+ rules: {
78454
+ type: vue.PropType<readonly ValidationRule[]>;
78455
+ default: () => never[];
78456
+ };
78457
+ hideActions: BooleanConstructor;
78458
+ }>>;
78459
+ type VStepperVerticalItem = InstanceType<typeof VStepperVerticalItem>;
78460
+
78461
+ declare const VStepperVerticalActions: {
78462
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
78463
+ disabled: boolean | "next" | "prev";
78464
+ prevText: string;
78465
+ nextText: string;
78466
+ } & {
78467
+ color?: string | undefined;
78468
+ } & {
78469
+ $children?: {} | vue.VNodeChild | {
78470
+ prev?: ((arg: {
78471
+ props: {
78472
+ onClick: () => void;
78473
+ };
78474
+ }) => vue.VNodeChild) | undefined;
78475
+ next?: ((arg: {
78476
+ props: {
78477
+ onClick: () => void;
78478
+ };
78479
+ }) => vue.VNodeChild) | undefined;
78480
+ };
78481
+ 'v-slots'?: {
78482
+ prev?: false | ((arg: {
78483
+ props: {
78484
+ onClick: () => void;
78485
+ };
78486
+ }) => vue.VNodeChild) | undefined;
78487
+ next?: false | ((arg: {
78488
+ props: {
78489
+ onClick: () => void;
78490
+ };
78491
+ }) => vue.VNodeChild) | undefined;
78492
+ } | undefined;
78493
+ } & {
78494
+ "v-slot:prev"?: false | ((arg: {
78495
+ props: {
78496
+ onClick: () => void;
78497
+ };
78498
+ }) => vue.VNodeChild) | undefined;
78499
+ "v-slot:next"?: false | ((arg: {
78500
+ props: {
78501
+ onClick: () => void;
78502
+ };
78503
+ }) => vue.VNodeChild) | undefined;
78504
+ } & {
78505
+ "onClick:prev"?: (() => any) | undefined;
78506
+ "onClick:next"?: (() => any) | undefined;
78507
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
78508
+ 'click:prev': () => true;
78509
+ 'click:next': () => true;
78510
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
78511
+ disabled: boolean | "next" | "prev";
78512
+ prevText: string;
78513
+ nextText: string;
78514
+ } & {
78515
+ color?: string | undefined;
78516
+ } & {
78517
+ $children?: {} | vue.VNodeChild | {
78518
+ prev?: ((arg: {
78519
+ props: {
78520
+ onClick: () => void;
78521
+ };
78522
+ }) => vue.VNodeChild) | undefined;
78523
+ next?: ((arg: {
78524
+ props: {
78525
+ onClick: () => void;
78526
+ };
78527
+ }) => vue.VNodeChild) | undefined;
78528
+ };
78529
+ 'v-slots'?: {
78530
+ prev?: false | ((arg: {
78531
+ props: {
78532
+ onClick: () => void;
78533
+ };
78534
+ }) => vue.VNodeChild) | undefined;
78535
+ next?: false | ((arg: {
78536
+ props: {
78537
+ onClick: () => void;
78538
+ };
78539
+ }) => vue.VNodeChild) | undefined;
78540
+ } | undefined;
78541
+ } & {
78542
+ "v-slot:prev"?: false | ((arg: {
78543
+ props: {
78544
+ onClick: () => void;
78545
+ };
78546
+ }) => vue.VNodeChild) | undefined;
78547
+ "v-slot:next"?: false | ((arg: {
78548
+ props: {
78549
+ onClick: () => void;
78550
+ };
78551
+ }) => vue.VNodeChild) | undefined;
78552
+ } & {
78553
+ "onClick:prev"?: (() => any) | undefined;
78554
+ "onClick:next"?: (() => any) | undefined;
78555
+ }, {
78556
+ disabled: boolean | "next" | "prev";
78557
+ prevText: string;
78558
+ nextText: string;
78559
+ }, true, {}, vue.SlotsType<Partial<{
78560
+ prev: (arg: {
78561
+ props: {
78562
+ onClick: () => void;
78563
+ };
78564
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78565
+ [key: string]: any;
78566
+ }>[];
78567
+ next: (arg: {
78568
+ props: {
78569
+ onClick: () => void;
78570
+ };
78571
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78572
+ [key: string]: any;
78573
+ }>[];
78574
+ }>>, {
78575
+ P: {};
78576
+ B: {};
78577
+ D: {};
78578
+ C: {};
78579
+ M: {};
78580
+ Defaults: {};
78581
+ }, {
78582
+ disabled: boolean | "next" | "prev";
78583
+ prevText: string;
78584
+ nextText: string;
78585
+ } & {
78586
+ color?: string | undefined;
78587
+ } & {
78588
+ $children?: {} | vue.VNodeChild | {
78589
+ prev?: ((arg: {
78590
+ props: {
78591
+ onClick: () => void;
78592
+ };
78593
+ }) => vue.VNodeChild) | undefined;
78594
+ next?: ((arg: {
78595
+ props: {
78596
+ onClick: () => void;
78597
+ };
78598
+ }) => vue.VNodeChild) | undefined;
78599
+ };
78600
+ 'v-slots'?: {
78601
+ prev?: false | ((arg: {
78602
+ props: {
78603
+ onClick: () => void;
78604
+ };
78605
+ }) => vue.VNodeChild) | undefined;
78606
+ next?: false | ((arg: {
78607
+ props: {
78608
+ onClick: () => void;
78609
+ };
78610
+ }) => vue.VNodeChild) | undefined;
78611
+ } | undefined;
78612
+ } & {
78613
+ "v-slot:prev"?: false | ((arg: {
78614
+ props: {
78615
+ onClick: () => void;
78616
+ };
78617
+ }) => vue.VNodeChild) | undefined;
78618
+ "v-slot:next"?: false | ((arg: {
78619
+ props: {
78620
+ onClick: () => void;
78621
+ };
78622
+ }) => vue.VNodeChild) | undefined;
78623
+ } & {
78624
+ "onClick:prev"?: (() => any) | undefined;
78625
+ "onClick:next"?: (() => any) | undefined;
78626
+ }, {}, {}, {}, {}, {
78627
+ disabled: boolean | "next" | "prev";
78628
+ prevText: string;
78629
+ nextText: string;
78630
+ }>;
78631
+ __isFragment?: undefined;
78632
+ __isTeleport?: undefined;
78633
+ __isSuspense?: undefined;
78634
+ } & vue.ComponentOptionsBase<{
78635
+ disabled: boolean | "next" | "prev";
78636
+ prevText: string;
78637
+ nextText: string;
78638
+ } & {
78639
+ color?: string | undefined;
78640
+ } & {
78641
+ $children?: {} | vue.VNodeChild | {
78642
+ prev?: ((arg: {
78643
+ props: {
78644
+ onClick: () => void;
78645
+ };
78646
+ }) => vue.VNodeChild) | undefined;
78647
+ next?: ((arg: {
78648
+ props: {
78649
+ onClick: () => void;
78650
+ };
78651
+ }) => vue.VNodeChild) | undefined;
78652
+ };
78653
+ 'v-slots'?: {
78654
+ prev?: false | ((arg: {
78655
+ props: {
78656
+ onClick: () => void;
78657
+ };
78658
+ }) => vue.VNodeChild) | undefined;
78659
+ next?: false | ((arg: {
78660
+ props: {
78661
+ onClick: () => void;
78662
+ };
78663
+ }) => vue.VNodeChild) | undefined;
78664
+ } | undefined;
78665
+ } & {
78666
+ "v-slot:prev"?: false | ((arg: {
78667
+ props: {
78668
+ onClick: () => void;
78669
+ };
78670
+ }) => vue.VNodeChild) | undefined;
78671
+ "v-slot:next"?: false | ((arg: {
78672
+ props: {
78673
+ onClick: () => void;
78674
+ };
78675
+ }) => vue.VNodeChild) | undefined;
78676
+ } & {
78677
+ "onClick:prev"?: (() => any) | undefined;
78678
+ "onClick:next"?: (() => any) | undefined;
78679
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
78680
+ 'click:prev': () => true;
78681
+ 'click:next': () => true;
78682
+ }, string, {
78683
+ disabled: boolean | "next" | "prev";
78684
+ prevText: string;
78685
+ nextText: string;
78686
+ }, {}, string, vue.SlotsType<Partial<{
78687
+ prev: (arg: {
78688
+ props: {
78689
+ onClick: () => void;
78690
+ };
78691
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78692
+ [key: string]: any;
78693
+ }>[];
78694
+ next: (arg: {
78695
+ props: {
78696
+ onClick: () => void;
78697
+ };
78698
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
78699
+ [key: string]: any;
78700
+ }>[];
78701
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
78702
+ color: StringConstructor;
78703
+ disabled: {
78704
+ type: vue.PropType<boolean | "next" | "prev">;
78705
+ default: boolean;
78706
+ };
78707
+ prevText: {
78708
+ type: StringConstructor;
78709
+ default: string;
78710
+ };
78711
+ nextText: {
78712
+ type: StringConstructor;
78713
+ default: string;
78714
+ };
78715
+ }, vue.ExtractPropTypes<{
78716
+ color: StringConstructor;
78717
+ disabled: {
78718
+ type: vue.PropType<boolean | "next" | "prev">;
78719
+ default: boolean;
78720
+ };
78721
+ prevText: {
78722
+ type: StringConstructor;
78723
+ default: string;
78724
+ };
78725
+ nextText: {
78726
+ type: StringConstructor;
78727
+ default: string;
78728
+ };
78729
+ }>>;
78730
+ type VStepperVerticalActions = InstanceType<typeof VStepperVerticalActions>;
78731
+
77148
78732
  declare const VPullToRefresh: {
77149
78733
  new (...args: any[]): vue.CreateComponentPublicInstance<{
77150
78734
  pullDownThreshold: number;
@@ -80720,6 +82304,9 @@ declare const allComponents_d_VStepper: typeof VStepper;
80720
82304
  declare const allComponents_d_VStepperActions: typeof VStepperActions;
80721
82305
  declare const allComponents_d_VStepperHeader: typeof VStepperHeader;
80722
82306
  declare const allComponents_d_VStepperItem: typeof VStepperItem;
82307
+ declare const allComponents_d_VStepperVertical: typeof VStepperVertical;
82308
+ declare const allComponents_d_VStepperVerticalActions: typeof VStepperVerticalActions;
82309
+ declare const allComponents_d_VStepperVerticalItem: typeof VStepperVerticalItem;
80723
82310
  declare const allComponents_d_VStepperWindow: typeof VStepperWindow;
80724
82311
  declare const allComponents_d_VStepperWindowItem: typeof VStepperWindowItem;
80725
82312
  declare const allComponents_d_VSvgIcon: typeof VSvgIcon;
@@ -80750,7 +82337,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
80750
82337
  declare const allComponents_d_VWindow: typeof VWindow;
80751
82338
  declare const allComponents_d_VWindowItem: typeof VWindowItem;
80752
82339
  declare namespace allComponents_d {
80753
- export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDateInput as VDateInput, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VPullToRefresh as VPullToRefresh, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSnackbarQueue as VSnackbarQueue, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTabsWindow as VTabsWindow, type allComponents_d_VTabsWindowItem as VTabsWindowItem, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimePicker as VTimePicker, type allComponents_d_VTimePickerClock as VTimePickerClock, type allComponents_d_VTimePickerControls as VTimePickerControls, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
82340
+ export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDateInput as VDateInput, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VPullToRefresh as VPullToRefresh, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSnackbarQueue as VSnackbarQueue, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperVertical as VStepperVertical, type allComponents_d_VStepperVerticalActions as VStepperVerticalActions, type allComponents_d_VStepperVerticalItem as VStepperVerticalItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTabsWindow as VTabsWindow, type allComponents_d_VTabsWindowItem as VTabsWindowItem, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimePicker as VTimePicker, type allComponents_d_VTimePickerClock as VTimePickerClock, type allComponents_d_VTimePickerControls as VTimePickerControls, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
80754
82341
  }
80755
82342
 
80756
82343
  declare const md1: Blueprint;