@vuetify/nightly 3.6.4-master.2024-05-09 → 3.6.5-master.2024-05-11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +2 -11
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +292 -4
  4. package/dist/json/importMap-labs.json +28 -16
  5. package/dist/json/importMap.json +120 -120
  6. package/dist/json/tags.json +87 -0
  7. package/dist/json/web-types.json +1313 -6
  8. package/dist/vuetify-labs.css +1683 -1615
  9. package/dist/vuetify-labs.d.ts +1669 -28
  10. package/dist/vuetify-labs.esm.js +310 -16
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +310 -16
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.css +963 -963
  15. package/dist/vuetify.d.ts +147 -69
  16. package/dist/vuetify.esm.js +50 -16
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +50 -16
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +2 -2
  21. package/dist/vuetify.min.js +51 -52
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/components/VBtn/index.d.mts +2 -0
  24. package/lib/components/VDataTable/VDataTable.mjs +6 -2
  25. package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
  26. package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
  27. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  28. package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
  29. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  30. package/lib/components/VDataTable/index.d.mts +54 -0
  31. package/lib/components/VExpansionPanel/VExpansionPanel.mjs +3 -1
  32. package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
  33. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +15 -4
  34. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  35. package/lib/components/VExpansionPanel/index.d.mts +82 -27
  36. package/lib/components/VSlideGroup/index.d.mts +2 -0
  37. package/lib/components/VStepper/VStepper.mjs +5 -2
  38. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  39. package/lib/components/VStepper/VStepperItem.mjs +5 -2
  40. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  41. package/lib/components/VStepper/index.d.mts +1 -1
  42. package/lib/components/VTabs/index.d.mts +2 -0
  43. package/lib/components/VWindow/index.d.mts +2 -0
  44. package/lib/components/index.d.mts +102 -27
  45. package/lib/composables/group.mjs +8 -0
  46. package/lib/composables/group.mjs.map +1 -1
  47. package/lib/entry-bundler.mjs +1 -1
  48. package/lib/framework.mjs +1 -1
  49. package/lib/index.d.mts +45 -42
  50. package/lib/labs/VStepperVertical/VStepperVertical.mjs +106 -0
  51. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -0
  52. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs +38 -0
  53. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs.map +1 -0
  54. package/lib/labs/VStepperVertical/VStepperVerticalItem.css +69 -0
  55. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +134 -0
  56. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -0
  57. package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +74 -0
  58. package/lib/labs/VStepperVertical/_variables.scss +3 -0
  59. package/lib/labs/VStepperVertical/index.d.mts +1590 -0
  60. package/lib/labs/VStepperVertical/index.mjs +4 -0
  61. package/lib/labs/VStepperVertical/index.mjs.map +1 -0
  62. package/lib/labs/components.d.mts +1599 -20
  63. package/lib/labs/components.mjs +1 -0
  64. package/lib/labs/components.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -1813,7 +1813,7 @@ type VCalendarMonthDay = InstanceType<typeof VCalendarMonthDay>;
1813
1813
  type Density = null | 'default' | 'comfortable' | 'compact';
1814
1814
 
1815
1815
  type ValidationResult = string | boolean;
1816
- type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
1816
+ type ValidationRule$1 = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
1817
1817
 
1818
1818
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
1819
1819
  declare const IconValue: PropType<IconValue>;
@@ -1837,7 +1837,7 @@ declare const VDateInput: {
1837
1837
  errorMessages: string | readonly string[] | null;
1838
1838
  maxErrors: string | number;
1839
1839
  readonly: boolean | null;
1840
- rules: readonly ValidationRule[];
1840
+ rules: readonly ValidationRule$1[];
1841
1841
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
1842
1842
  tile: boolean;
1843
1843
  density: Density;
@@ -1949,7 +1949,7 @@ declare const VDateInput: {
1949
1949
  errorMessages: string | readonly string[] | null;
1950
1950
  maxErrors: string | number;
1951
1951
  readonly: boolean | null;
1952
- rules: readonly ValidationRule[];
1952
+ rules: readonly ValidationRule$1[];
1953
1953
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
1954
1954
  tile: boolean;
1955
1955
  density: Density;
@@ -2059,7 +2059,7 @@ declare const VDateInput: {
2059
2059
  errorMessages: string | readonly string[] | null;
2060
2060
  maxErrors: string | number;
2061
2061
  readonly: boolean | null;
2062
- rules: readonly ValidationRule[];
2062
+ rules: readonly ValidationRule$1[];
2063
2063
  rounded: string | number | boolean;
2064
2064
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2065
2065
  tile: boolean;
@@ -2121,7 +2121,7 @@ declare const VDateInput: {
2121
2121
  errorMessages: string | readonly string[] | null;
2122
2122
  maxErrors: string | number;
2123
2123
  readonly: boolean | null;
2124
- rules: readonly ValidationRule[];
2124
+ rules: readonly ValidationRule$1[];
2125
2125
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2126
2126
  tile: boolean;
2127
2127
  density: Density;
@@ -2231,7 +2231,7 @@ declare const VDateInput: {
2231
2231
  errorMessages: string | readonly string[] | null;
2232
2232
  maxErrors: string | number;
2233
2233
  readonly: boolean | null;
2234
- rules: readonly ValidationRule[];
2234
+ rules: readonly ValidationRule$1[];
2235
2235
  rounded: string | number | boolean;
2236
2236
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2237
2237
  tile: boolean;
@@ -2286,7 +2286,7 @@ declare const VDateInput: {
2286
2286
  errorMessages: string | readonly string[] | null;
2287
2287
  maxErrors: string | number;
2288
2288
  readonly: boolean | null;
2289
- rules: readonly ValidationRule[];
2289
+ rules: readonly ValidationRule$1[];
2290
2290
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2291
2291
  tile: boolean;
2292
2292
  density: Density;
@@ -2398,7 +2398,7 @@ declare const VDateInput: {
2398
2398
  errorMessages: string | readonly string[] | null;
2399
2399
  maxErrors: string | number;
2400
2400
  readonly: boolean | null;
2401
- rules: readonly ValidationRule[];
2401
+ rules: readonly ValidationRule$1[];
2402
2402
  rounded: string | number | boolean;
2403
2403
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2404
2404
  tile: boolean;
@@ -2591,7 +2591,7 @@ declare const VDateInput: {
2591
2591
  default: null;
2592
2592
  };
2593
2593
  rules: {
2594
- type: vue.PropType<readonly ValidationRule[]>;
2594
+ type: vue.PropType<readonly ValidationRule$1[]>;
2595
2595
  default: () => never[];
2596
2596
  };
2597
2597
  validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
@@ -2804,7 +2804,7 @@ declare const VDateInput: {
2804
2804
  default: null;
2805
2805
  };
2806
2806
  rules: {
2807
- type: vue.PropType<readonly ValidationRule[]>;
2807
+ type: vue.PropType<readonly ValidationRule$1[]>;
2808
2808
  default: () => never[];
2809
2809
  };
2810
2810
  validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
@@ -2919,7 +2919,7 @@ declare const VNumberInput: {
2919
2919
  errorMessages: string | readonly string[] | null;
2920
2920
  maxErrors: string | number;
2921
2921
  readonly: boolean | null;
2922
- rules: readonly ValidationRule[];
2922
+ rules: readonly ValidationRule$1[];
2923
2923
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2924
2924
  inset: boolean;
2925
2925
  tile: boolean;
@@ -3049,7 +3049,7 @@ declare const VNumberInput: {
3049
3049
  errorMessages: string | readonly string[] | null;
3050
3050
  maxErrors: string | number;
3051
3051
  readonly: boolean | null;
3052
- rules: readonly ValidationRule[];
3052
+ rules: readonly ValidationRule$1[];
3053
3053
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3054
3054
  inset: boolean;
3055
3055
  tile: boolean;
@@ -3177,7 +3177,7 @@ declare const VNumberInput: {
3177
3177
  errorMessages: string | readonly string[] | null;
3178
3178
  maxErrors: string | number;
3179
3179
  readonly: boolean | null;
3180
- rules: readonly ValidationRule[];
3180
+ rules: readonly ValidationRule$1[];
3181
3181
  rounded: string | number | boolean;
3182
3182
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3183
3183
  inset: boolean;
@@ -3262,7 +3262,7 @@ declare const VNumberInput: {
3262
3262
  errorMessages: string | readonly string[] | null;
3263
3263
  maxErrors: string | number;
3264
3264
  readonly: boolean | null;
3265
- rules: readonly ValidationRule[];
3265
+ rules: readonly ValidationRule$1[];
3266
3266
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3267
3267
  inset: boolean;
3268
3268
  tile: boolean;
@@ -3390,7 +3390,7 @@ declare const VNumberInput: {
3390
3390
  errorMessages: string | readonly string[] | null;
3391
3391
  maxErrors: string | number;
3392
3392
  readonly: boolean | null;
3393
- rules: readonly ValidationRule[];
3393
+ rules: readonly ValidationRule$1[];
3394
3394
  rounded: string | number | boolean;
3395
3395
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3396
3396
  inset: boolean;
@@ -3430,7 +3430,7 @@ declare const VNumberInput: {
3430
3430
  errorMessages: string | readonly string[] | null;
3431
3431
  maxErrors: string | number;
3432
3432
  readonly: boolean | null;
3433
- rules: readonly ValidationRule[];
3433
+ rules: readonly ValidationRule$1[];
3434
3434
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3435
3435
  inset: boolean;
3436
3436
  tile: boolean;
@@ -3560,7 +3560,7 @@ declare const VNumberInput: {
3560
3560
  errorMessages: string | readonly string[] | null;
3561
3561
  maxErrors: string | number;
3562
3562
  readonly: boolean | null;
3563
- rules: readonly ValidationRule[];
3563
+ rules: readonly ValidationRule$1[];
3564
3564
  rounded: string | number | boolean;
3565
3565
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3566
3566
  inset: boolean;
@@ -3672,7 +3672,7 @@ declare const VNumberInput: {
3672
3672
  default: null;
3673
3673
  };
3674
3674
  rules: {
3675
- type: PropType<readonly ValidationRule[]>;
3675
+ type: PropType<readonly ValidationRule$1[]>;
3676
3676
  default: () => never[];
3677
3677
  };
3678
3678
  modelValue: null;
@@ -3797,7 +3797,7 @@ declare const VNumberInput: {
3797
3797
  default: null;
3798
3798
  };
3799
3799
  rules: {
3800
- type: PropType<readonly ValidationRule[]>;
3800
+ type: PropType<readonly ValidationRule$1[]>;
3801
3801
  default: () => never[];
3802
3802
  };
3803
3803
  modelValue: null;
@@ -4292,6 +4292,1585 @@ declare const VPickerTitle: {
4292
4292
  }>>;
4293
4293
  type VPickerTitle = InstanceType<typeof VPickerTitle>;
4294
4294
 
4295
+ type StepperItem = string | Record<string, any>;
4296
+ type StepperItemSlot = {
4297
+ canEdit: boolean;
4298
+ hasError: boolean;
4299
+ hasCompleted: boolean;
4300
+ title?: string | number;
4301
+ subtitle?: string | number;
4302
+ step: any;
4303
+ };
4304
+ type ValidationRule = () => string | boolean;
4305
+
4306
+ type VStepperSlot = {
4307
+ prev: () => void;
4308
+ next: () => void;
4309
+ };
4310
+
4311
+ declare const VStepperVertical: {
4312
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
4313
+ flat: boolean;
4314
+ style: vue.StyleValue;
4315
+ disabled: boolean;
4316
+ tag: string;
4317
+ mobile: boolean;
4318
+ readonly: boolean;
4319
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4320
+ items: readonly StepperItem[];
4321
+ mandatory: NonNullable<boolean | "force">;
4322
+ multiple: boolean;
4323
+ tile: boolean;
4324
+ eager: boolean;
4325
+ ripple: boolean | {
4326
+ class: string;
4327
+ } | undefined;
4328
+ collapseIcon: IconValue;
4329
+ expandIcon: IconValue;
4330
+ itemTitle: string;
4331
+ itemValue: string;
4332
+ hideActions: boolean;
4333
+ focusable: boolean;
4334
+ prevText: string;
4335
+ nextText: string;
4336
+ editable: boolean;
4337
+ altLabels: boolean;
4338
+ nonLinear: boolean;
4339
+ } & {
4340
+ class?: any;
4341
+ title?: string | undefined;
4342
+ text?: string | undefined;
4343
+ value?: any;
4344
+ theme?: string | undefined;
4345
+ color?: string | undefined;
4346
+ modelValue?: any;
4347
+ rounded?: string | number | boolean | undefined;
4348
+ elevation?: string | number | undefined;
4349
+ max?: number | undefined;
4350
+ selectedClass?: string | undefined;
4351
+ bgColor?: string | undefined;
4352
+ } & {
4353
+ $children?: vue.VNodeChild | {
4354
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4355
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4356
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4357
+ default?: ((arg: VStepperSlot & {
4358
+ step: unknown;
4359
+ }) => vue.VNodeChild) | undefined;
4360
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4361
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4362
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4363
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4364
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4365
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4366
+ } | ((arg: VStepperSlot & {
4367
+ step: unknown;
4368
+ }) => vue.VNodeChild);
4369
+ 'v-slots'?: {
4370
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4371
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4372
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4373
+ default?: false | ((arg: VStepperSlot & {
4374
+ step: unknown;
4375
+ }) => vue.VNodeChild) | undefined;
4376
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4377
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4378
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4379
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4380
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4381
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4382
+ } | undefined;
4383
+ } & {
4384
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4385
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4386
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4387
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
4388
+ step: unknown;
4389
+ }) => vue.VNodeChild) | undefined;
4390
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4391
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4392
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4393
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4394
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4395
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4396
+ } & {
4397
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
4398
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4399
+ 'update:modelValue': (val: any) => boolean;
4400
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
4401
+ flat: boolean;
4402
+ style: vue.StyleValue;
4403
+ disabled: boolean;
4404
+ tag: string;
4405
+ mobile: boolean;
4406
+ readonly: boolean;
4407
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4408
+ items: readonly StepperItem[];
4409
+ mandatory: NonNullable<boolean | "force">;
4410
+ multiple: boolean;
4411
+ tile: boolean;
4412
+ eager: boolean;
4413
+ ripple: boolean | {
4414
+ class: string;
4415
+ } | undefined;
4416
+ collapseIcon: IconValue;
4417
+ expandIcon: IconValue;
4418
+ itemTitle: string;
4419
+ itemValue: string;
4420
+ hideActions: boolean;
4421
+ focusable: boolean;
4422
+ prevText: string;
4423
+ nextText: string;
4424
+ editable: boolean;
4425
+ altLabels: boolean;
4426
+ nonLinear: boolean;
4427
+ } & {
4428
+ class?: any;
4429
+ title?: string | undefined;
4430
+ text?: string | undefined;
4431
+ value?: any;
4432
+ theme?: string | undefined;
4433
+ color?: string | undefined;
4434
+ modelValue?: any;
4435
+ rounded?: string | number | boolean | undefined;
4436
+ elevation?: string | number | undefined;
4437
+ max?: number | undefined;
4438
+ selectedClass?: string | undefined;
4439
+ bgColor?: string | undefined;
4440
+ } & {
4441
+ $children?: vue.VNodeChild | {
4442
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4443
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4444
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4445
+ default?: ((arg: VStepperSlot & {
4446
+ step: unknown;
4447
+ }) => vue.VNodeChild) | undefined;
4448
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4449
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4450
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4451
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4452
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4453
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4454
+ } | ((arg: VStepperSlot & {
4455
+ step: unknown;
4456
+ }) => vue.VNodeChild);
4457
+ 'v-slots'?: {
4458
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4459
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4460
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4461
+ default?: false | ((arg: VStepperSlot & {
4462
+ step: unknown;
4463
+ }) => vue.VNodeChild) | undefined;
4464
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4465
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4466
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4467
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4468
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4469
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4470
+ } | undefined;
4471
+ } & {
4472
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4473
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4474
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4475
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
4476
+ step: unknown;
4477
+ }) => vue.VNodeChild) | undefined;
4478
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4479
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4480
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4481
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4482
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4483
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4484
+ } & {
4485
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
4486
+ }, {
4487
+ flat: boolean;
4488
+ style: vue.StyleValue;
4489
+ disabled: boolean;
4490
+ tag: string;
4491
+ mobile: boolean;
4492
+ readonly: boolean;
4493
+ modelValue: any;
4494
+ rounded: string | number | boolean;
4495
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4496
+ items: readonly StepperItem[];
4497
+ mandatory: NonNullable<boolean | "force">;
4498
+ multiple: boolean;
4499
+ tile: boolean;
4500
+ eager: boolean;
4501
+ ripple: boolean | {
4502
+ class: string;
4503
+ } | undefined;
4504
+ collapseIcon: IconValue;
4505
+ expandIcon: IconValue;
4506
+ itemTitle: string;
4507
+ itemValue: string;
4508
+ hideActions: boolean;
4509
+ focusable: boolean;
4510
+ prevText: string;
4511
+ nextText: string;
4512
+ editable: boolean;
4513
+ altLabels: boolean;
4514
+ nonLinear: boolean;
4515
+ }, true, {}, vue.SlotsType<Partial<{
4516
+ [x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4517
+ [key: string]: any;
4518
+ }>[];
4519
+ [x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4520
+ [key: string]: any;
4521
+ }>[];
4522
+ actions: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4523
+ [key: string]: any;
4524
+ }>[];
4525
+ default: (arg: VStepperSlot & {
4526
+ step: unknown;
4527
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4528
+ [key: string]: any;
4529
+ }>[];
4530
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4531
+ [key: string]: any;
4532
+ }>[];
4533
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4534
+ [key: string]: any;
4535
+ }>[];
4536
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4537
+ [key: string]: any;
4538
+ }>[];
4539
+ item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4540
+ [key: string]: any;
4541
+ }>[];
4542
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4543
+ [key: string]: any;
4544
+ }>[];
4545
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4546
+ [key: string]: any;
4547
+ }>[];
4548
+ }>>, {
4549
+ P: {};
4550
+ B: {};
4551
+ D: {};
4552
+ C: {};
4553
+ M: {};
4554
+ Defaults: {};
4555
+ }, {
4556
+ flat: boolean;
4557
+ style: vue.StyleValue;
4558
+ disabled: boolean;
4559
+ tag: string;
4560
+ mobile: boolean;
4561
+ readonly: boolean;
4562
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4563
+ items: readonly StepperItem[];
4564
+ mandatory: NonNullable<boolean | "force">;
4565
+ multiple: boolean;
4566
+ tile: boolean;
4567
+ eager: boolean;
4568
+ ripple: boolean | {
4569
+ class: string;
4570
+ } | undefined;
4571
+ collapseIcon: IconValue;
4572
+ expandIcon: IconValue;
4573
+ itemTitle: string;
4574
+ itemValue: string;
4575
+ hideActions: boolean;
4576
+ focusable: boolean;
4577
+ prevText: string;
4578
+ nextText: string;
4579
+ editable: boolean;
4580
+ altLabels: boolean;
4581
+ nonLinear: boolean;
4582
+ } & {
4583
+ class?: any;
4584
+ title?: string | undefined;
4585
+ text?: string | undefined;
4586
+ value?: any;
4587
+ theme?: string | undefined;
4588
+ color?: string | undefined;
4589
+ modelValue?: any;
4590
+ rounded?: string | number | boolean | undefined;
4591
+ elevation?: string | number | undefined;
4592
+ max?: number | undefined;
4593
+ selectedClass?: string | undefined;
4594
+ bgColor?: string | undefined;
4595
+ } & {
4596
+ $children?: vue.VNodeChild | {
4597
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4598
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4599
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4600
+ default?: ((arg: VStepperSlot & {
4601
+ step: unknown;
4602
+ }) => vue.VNodeChild) | undefined;
4603
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4604
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4605
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4606
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4607
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4608
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4609
+ } | ((arg: VStepperSlot & {
4610
+ step: unknown;
4611
+ }) => vue.VNodeChild);
4612
+ 'v-slots'?: {
4613
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4614
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4615
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4616
+ default?: false | ((arg: VStepperSlot & {
4617
+ step: unknown;
4618
+ }) => vue.VNodeChild) | undefined;
4619
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4620
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4621
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4622
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4623
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4624
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4625
+ } | undefined;
4626
+ } & {
4627
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4628
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4629
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4630
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
4631
+ step: unknown;
4632
+ }) => vue.VNodeChild) | undefined;
4633
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4634
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4635
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4636
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4637
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4638
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4639
+ } & {
4640
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
4641
+ }, {}, {}, {}, {}, {
4642
+ flat: boolean;
4643
+ style: vue.StyleValue;
4644
+ disabled: boolean;
4645
+ tag: string;
4646
+ mobile: boolean;
4647
+ readonly: boolean;
4648
+ modelValue: any;
4649
+ rounded: string | number | boolean;
4650
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4651
+ items: readonly StepperItem[];
4652
+ mandatory: NonNullable<boolean | "force">;
4653
+ multiple: boolean;
4654
+ tile: boolean;
4655
+ eager: boolean;
4656
+ ripple: boolean | {
4657
+ class: string;
4658
+ } | undefined;
4659
+ collapseIcon: IconValue;
4660
+ expandIcon: IconValue;
4661
+ itemTitle: string;
4662
+ itemValue: string;
4663
+ hideActions: boolean;
4664
+ focusable: boolean;
4665
+ prevText: string;
4666
+ nextText: string;
4667
+ editable: boolean;
4668
+ altLabels: boolean;
4669
+ nonLinear: boolean;
4670
+ }>;
4671
+ __isFragment?: undefined;
4672
+ __isTeleport?: undefined;
4673
+ __isSuspense?: undefined;
4674
+ } & vue.ComponentOptionsBase<{
4675
+ flat: boolean;
4676
+ style: vue.StyleValue;
4677
+ disabled: boolean;
4678
+ tag: string;
4679
+ mobile: boolean;
4680
+ readonly: boolean;
4681
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4682
+ items: readonly StepperItem[];
4683
+ mandatory: NonNullable<boolean | "force">;
4684
+ multiple: boolean;
4685
+ tile: boolean;
4686
+ eager: boolean;
4687
+ ripple: boolean | {
4688
+ class: string;
4689
+ } | undefined;
4690
+ collapseIcon: IconValue;
4691
+ expandIcon: IconValue;
4692
+ itemTitle: string;
4693
+ itemValue: string;
4694
+ hideActions: boolean;
4695
+ focusable: boolean;
4696
+ prevText: string;
4697
+ nextText: string;
4698
+ editable: boolean;
4699
+ altLabels: boolean;
4700
+ nonLinear: boolean;
4701
+ } & {
4702
+ class?: any;
4703
+ title?: string | undefined;
4704
+ text?: string | undefined;
4705
+ value?: any;
4706
+ theme?: string | undefined;
4707
+ color?: string | undefined;
4708
+ modelValue?: any;
4709
+ rounded?: string | number | boolean | undefined;
4710
+ elevation?: string | number | undefined;
4711
+ max?: number | undefined;
4712
+ selectedClass?: string | undefined;
4713
+ bgColor?: string | undefined;
4714
+ } & {
4715
+ $children?: vue.VNodeChild | {
4716
+ [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4717
+ [x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4718
+ actions?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4719
+ default?: ((arg: VStepperSlot & {
4720
+ step: unknown;
4721
+ }) => vue.VNodeChild) | undefined;
4722
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4723
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4724
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4725
+ item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
4726
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4727
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4728
+ } | ((arg: VStepperSlot & {
4729
+ step: unknown;
4730
+ }) => vue.VNodeChild);
4731
+ 'v-slots'?: {
4732
+ [x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4733
+ [x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4734
+ actions?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4735
+ default?: false | ((arg: VStepperSlot & {
4736
+ step: unknown;
4737
+ }) => vue.VNodeChild) | undefined;
4738
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4739
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4740
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4741
+ item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4742
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4743
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4744
+ } | undefined;
4745
+ } & {
4746
+ [x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4747
+ [x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4748
+ "v-slot:actions"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4749
+ "v-slot:default"?: false | ((arg: VStepperSlot & {
4750
+ step: unknown;
4751
+ }) => vue.VNodeChild) | undefined;
4752
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4753
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4754
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4755
+ "v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
4756
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4757
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
4758
+ } & {
4759
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
4760
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4761
+ 'update:modelValue': (val: any) => boolean;
4762
+ }, string, {
4763
+ flat: boolean;
4764
+ style: vue.StyleValue;
4765
+ disabled: boolean;
4766
+ tag: string;
4767
+ mobile: boolean;
4768
+ readonly: boolean;
4769
+ modelValue: any;
4770
+ rounded: string | number | boolean;
4771
+ variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
4772
+ items: readonly StepperItem[];
4773
+ mandatory: NonNullable<boolean | "force">;
4774
+ multiple: boolean;
4775
+ tile: boolean;
4776
+ eager: boolean;
4777
+ ripple: boolean | {
4778
+ class: string;
4779
+ } | undefined;
4780
+ collapseIcon: IconValue;
4781
+ expandIcon: IconValue;
4782
+ itemTitle: string;
4783
+ itemValue: string;
4784
+ hideActions: boolean;
4785
+ focusable: boolean;
4786
+ prevText: string;
4787
+ nextText: string;
4788
+ editable: boolean;
4789
+ altLabels: boolean;
4790
+ nonLinear: boolean;
4791
+ }, {}, string, vue.SlotsType<Partial<{
4792
+ [x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4793
+ [key: string]: any;
4794
+ }>[];
4795
+ [x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4796
+ [key: string]: any;
4797
+ }>[];
4798
+ actions: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4799
+ [key: string]: any;
4800
+ }>[];
4801
+ default: (arg: VStepperSlot & {
4802
+ step: unknown;
4803
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4804
+ [key: string]: any;
4805
+ }>[];
4806
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4807
+ [key: string]: any;
4808
+ }>[];
4809
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4810
+ [key: string]: any;
4811
+ }>[];
4812
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4813
+ [key: string]: any;
4814
+ }>[];
4815
+ item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4816
+ [key: string]: any;
4817
+ }>[];
4818
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4819
+ [key: string]: any;
4820
+ }>[];
4821
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4822
+ [key: string]: any;
4823
+ }>[];
4824
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
4825
+ flat: BooleanConstructor;
4826
+ class: vue.PropType<any>;
4827
+ style: {
4828
+ type: vue.PropType<vue.StyleValue>;
4829
+ default: null;
4830
+ };
4831
+ title: StringConstructor;
4832
+ text: StringConstructor;
4833
+ value: null;
4834
+ theme: StringConstructor;
4835
+ color: StringConstructor;
4836
+ disabled: BooleanConstructor;
4837
+ tag: {
4838
+ type: StringConstructor;
4839
+ default: string;
4840
+ };
4841
+ readonly: BooleanConstructor;
4842
+ modelValue: {
4843
+ type: null;
4844
+ default: undefined;
4845
+ };
4846
+ rounded: {
4847
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
4848
+ default: undefined;
4849
+ };
4850
+ variant: Omit<{
4851
+ type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
4852
+ default: string;
4853
+ validator: (v: any) => boolean;
4854
+ }, "default" | "type"> & {
4855
+ type: vue.PropType<NonNullable<"default" | "inset" | "accordion" | "popout">>;
4856
+ default: NonNullable<"default" | "inset" | "accordion" | "popout">;
4857
+ };
4858
+ mandatory: {
4859
+ type: vue.PropType<NonNullable<boolean | "force">>;
4860
+ default: NonNullable<boolean | "force">;
4861
+ };
4862
+ multiple: BooleanConstructor;
4863
+ tile: BooleanConstructor;
4864
+ eager: BooleanConstructor;
4865
+ elevation: {
4866
+ type: (StringConstructor | NumberConstructor)[];
4867
+ validator(v: any): boolean;
4868
+ };
4869
+ max: NumberConstructor;
4870
+ selectedClass: StringConstructor;
4871
+ bgColor: StringConstructor;
4872
+ ripple: {
4873
+ type: vue.PropType<boolean | {
4874
+ class: string;
4875
+ } | undefined>;
4876
+ default: boolean;
4877
+ };
4878
+ collapseIcon: {
4879
+ type: vue.PropType<IconValue>;
4880
+ default: string;
4881
+ };
4882
+ expandIcon: {
4883
+ type: vue.PropType<IconValue>;
4884
+ default: string;
4885
+ };
4886
+ hideActions: BooleanConstructor;
4887
+ focusable: BooleanConstructor;
4888
+ altLabels: BooleanConstructor;
4889
+ editable: BooleanConstructor;
4890
+ items: {
4891
+ type: vue.PropType<readonly StepperItem[]>;
4892
+ default: () => never[];
4893
+ };
4894
+ itemTitle: {
4895
+ type: StringConstructor;
4896
+ default: string;
4897
+ };
4898
+ itemValue: {
4899
+ type: StringConstructor;
4900
+ default: string;
4901
+ };
4902
+ mobile: BooleanConstructor;
4903
+ nonLinear: BooleanConstructor;
4904
+ prevText: {
4905
+ type: StringConstructor;
4906
+ default: string;
4907
+ };
4908
+ nextText: {
4909
+ type: StringConstructor;
4910
+ default: string;
4911
+ };
4912
+ }, vue.ExtractPropTypes<{
4913
+ flat: BooleanConstructor;
4914
+ class: vue.PropType<any>;
4915
+ style: {
4916
+ type: vue.PropType<vue.StyleValue>;
4917
+ default: null;
4918
+ };
4919
+ title: StringConstructor;
4920
+ text: StringConstructor;
4921
+ value: null;
4922
+ theme: StringConstructor;
4923
+ color: StringConstructor;
4924
+ disabled: BooleanConstructor;
4925
+ tag: {
4926
+ type: StringConstructor;
4927
+ default: string;
4928
+ };
4929
+ readonly: BooleanConstructor;
4930
+ modelValue: {
4931
+ type: null;
4932
+ default: undefined;
4933
+ };
4934
+ rounded: {
4935
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
4936
+ default: undefined;
4937
+ };
4938
+ variant: Omit<{
4939
+ type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
4940
+ default: string;
4941
+ validator: (v: any) => boolean;
4942
+ }, "default" | "type"> & {
4943
+ type: vue.PropType<NonNullable<"default" | "inset" | "accordion" | "popout">>;
4944
+ default: NonNullable<"default" | "inset" | "accordion" | "popout">;
4945
+ };
4946
+ mandatory: {
4947
+ type: vue.PropType<NonNullable<boolean | "force">>;
4948
+ default: NonNullable<boolean | "force">;
4949
+ };
4950
+ multiple: BooleanConstructor;
4951
+ tile: BooleanConstructor;
4952
+ eager: BooleanConstructor;
4953
+ elevation: {
4954
+ type: (StringConstructor | NumberConstructor)[];
4955
+ validator(v: any): boolean;
4956
+ };
4957
+ max: NumberConstructor;
4958
+ selectedClass: StringConstructor;
4959
+ bgColor: StringConstructor;
4960
+ ripple: {
4961
+ type: vue.PropType<boolean | {
4962
+ class: string;
4963
+ } | undefined>;
4964
+ default: boolean;
4965
+ };
4966
+ collapseIcon: {
4967
+ type: vue.PropType<IconValue>;
4968
+ default: string;
4969
+ };
4970
+ expandIcon: {
4971
+ type: vue.PropType<IconValue>;
4972
+ default: string;
4973
+ };
4974
+ hideActions: BooleanConstructor;
4975
+ focusable: BooleanConstructor;
4976
+ altLabels: BooleanConstructor;
4977
+ editable: BooleanConstructor;
4978
+ items: {
4979
+ type: vue.PropType<readonly StepperItem[]>;
4980
+ default: () => never[];
4981
+ };
4982
+ itemTitle: {
4983
+ type: StringConstructor;
4984
+ default: string;
4985
+ };
4986
+ itemValue: {
4987
+ type: StringConstructor;
4988
+ default: string;
4989
+ };
4990
+ mobile: BooleanConstructor;
4991
+ nonLinear: BooleanConstructor;
4992
+ prevText: {
4993
+ type: StringConstructor;
4994
+ default: string;
4995
+ };
4996
+ nextText: {
4997
+ type: StringConstructor;
4998
+ default: string;
4999
+ };
5000
+ }>>;
5001
+ type VStepperVertical = InstanceType<typeof VStepperVertical>;
5002
+
5003
+ declare const VStepperVerticalItem: {
5004
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
5005
+ style: vue.StyleValue;
5006
+ error: boolean;
5007
+ disabled: boolean;
5008
+ tag: string;
5009
+ complete: boolean;
5010
+ static: boolean;
5011
+ readonly: boolean;
5012
+ rules: readonly ValidationRule[];
5013
+ tile: boolean;
5014
+ eager: boolean;
5015
+ ripple: boolean | {
5016
+ class: string;
5017
+ } | undefined;
5018
+ collapseIcon: NonNullable<IconValue>;
5019
+ expandIcon: NonNullable<IconValue>;
5020
+ hideActions: boolean;
5021
+ focusable: boolean;
5022
+ completeIcon: string;
5023
+ editable: boolean;
5024
+ editIcon: string;
5025
+ errorIcon: string;
5026
+ } & {
5027
+ class?: any;
5028
+ title?: string | undefined;
5029
+ text?: string | undefined;
5030
+ value?: any;
5031
+ color?: string | undefined;
5032
+ icon?: string | undefined;
5033
+ rounded?: string | number | boolean | undefined;
5034
+ elevation?: string | number | undefined;
5035
+ selectedClass?: string | undefined;
5036
+ bgColor?: string | undefined;
5037
+ subtitle?: string | undefined;
5038
+ } & {
5039
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
5040
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5041
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5042
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5043
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5044
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5045
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5046
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5047
+ actions?: ((arg: StepperItemSlot & {
5048
+ next: () => void;
5049
+ prev: () => void;
5050
+ }) => vue.VNodeChild) | undefined;
5051
+ };
5052
+ 'v-slots'?: {
5053
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5054
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5055
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5056
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5057
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5058
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5059
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5060
+ actions?: false | ((arg: StepperItemSlot & {
5061
+ next: () => void;
5062
+ prev: () => void;
5063
+ }) => vue.VNodeChild) | undefined;
5064
+ } | undefined;
5065
+ } & {
5066
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5067
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5068
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5069
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5070
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5071
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5072
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5073
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
5074
+ next: () => void;
5075
+ prev: () => void;
5076
+ }) => vue.VNodeChild) | undefined;
5077
+ } & {
5078
+ "onClick:prev"?: (() => any) | undefined;
5079
+ "onClick:next"?: (() => any) | undefined;
5080
+ "onClick:finish"?: (() => any) | undefined;
5081
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5082
+ 'click:next': () => true;
5083
+ 'click:prev': () => true;
5084
+ 'click:finish': () => true;
5085
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
5086
+ style: vue.StyleValue;
5087
+ error: boolean;
5088
+ disabled: boolean;
5089
+ tag: string;
5090
+ complete: boolean;
5091
+ static: boolean;
5092
+ readonly: boolean;
5093
+ rules: readonly ValidationRule[];
5094
+ tile: boolean;
5095
+ eager: boolean;
5096
+ ripple: boolean | {
5097
+ class: string;
5098
+ } | undefined;
5099
+ collapseIcon: NonNullable<IconValue>;
5100
+ expandIcon: NonNullable<IconValue>;
5101
+ hideActions: boolean;
5102
+ focusable: boolean;
5103
+ completeIcon: string;
5104
+ editable: boolean;
5105
+ editIcon: string;
5106
+ errorIcon: string;
5107
+ } & {
5108
+ class?: any;
5109
+ title?: string | undefined;
5110
+ text?: string | undefined;
5111
+ value?: any;
5112
+ color?: string | undefined;
5113
+ icon?: string | undefined;
5114
+ rounded?: string | number | boolean | undefined;
5115
+ elevation?: string | number | undefined;
5116
+ selectedClass?: string | undefined;
5117
+ bgColor?: string | undefined;
5118
+ subtitle?: string | undefined;
5119
+ } & {
5120
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
5121
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5122
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5123
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5124
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5125
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5126
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5127
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5128
+ actions?: ((arg: StepperItemSlot & {
5129
+ next: () => void;
5130
+ prev: () => void;
5131
+ }) => vue.VNodeChild) | undefined;
5132
+ };
5133
+ 'v-slots'?: {
5134
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5135
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5136
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5137
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5138
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5139
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5140
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5141
+ actions?: false | ((arg: StepperItemSlot & {
5142
+ next: () => void;
5143
+ prev: () => void;
5144
+ }) => vue.VNodeChild) | undefined;
5145
+ } | undefined;
5146
+ } & {
5147
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5148
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5149
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5150
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5151
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5152
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5153
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5154
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
5155
+ next: () => void;
5156
+ prev: () => void;
5157
+ }) => vue.VNodeChild) | undefined;
5158
+ } & {
5159
+ "onClick:prev"?: (() => any) | undefined;
5160
+ "onClick:next"?: (() => any) | undefined;
5161
+ "onClick:finish"?: (() => any) | undefined;
5162
+ }, {
5163
+ style: vue.StyleValue;
5164
+ error: boolean;
5165
+ disabled: boolean;
5166
+ tag: string;
5167
+ complete: boolean;
5168
+ static: boolean;
5169
+ readonly: boolean;
5170
+ rules: readonly ValidationRule[];
5171
+ rounded: string | number | boolean;
5172
+ tile: boolean;
5173
+ eager: boolean;
5174
+ ripple: boolean | {
5175
+ class: string;
5176
+ } | undefined;
5177
+ collapseIcon: NonNullable<IconValue>;
5178
+ expandIcon: NonNullable<IconValue>;
5179
+ hideActions: boolean;
5180
+ focusable: boolean;
5181
+ completeIcon: string;
5182
+ editable: boolean;
5183
+ editIcon: string;
5184
+ errorIcon: string;
5185
+ }, true, {}, vue.SlotsType<Partial<{
5186
+ default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5187
+ [key: string]: any;
5188
+ }>[];
5189
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5190
+ [key: string]: any;
5191
+ }>[];
5192
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5193
+ [key: string]: any;
5194
+ }>[];
5195
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5196
+ [key: string]: any;
5197
+ }>[];
5198
+ text: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5199
+ [key: string]: any;
5200
+ }>[];
5201
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5202
+ [key: string]: any;
5203
+ }>[];
5204
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5205
+ [key: string]: any;
5206
+ }>[];
5207
+ actions: (arg: StepperItemSlot & {
5208
+ next: () => void;
5209
+ prev: () => void;
5210
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5211
+ [key: string]: any;
5212
+ }>[];
5213
+ }>>, {
5214
+ P: {};
5215
+ B: {};
5216
+ D: {};
5217
+ C: {};
5218
+ M: {};
5219
+ Defaults: {};
5220
+ }, {
5221
+ style: vue.StyleValue;
5222
+ error: boolean;
5223
+ disabled: boolean;
5224
+ tag: string;
5225
+ complete: boolean;
5226
+ static: boolean;
5227
+ readonly: boolean;
5228
+ rules: readonly ValidationRule[];
5229
+ tile: boolean;
5230
+ eager: boolean;
5231
+ ripple: boolean | {
5232
+ class: string;
5233
+ } | undefined;
5234
+ collapseIcon: NonNullable<IconValue>;
5235
+ expandIcon: NonNullable<IconValue>;
5236
+ hideActions: boolean;
5237
+ focusable: boolean;
5238
+ completeIcon: string;
5239
+ editable: boolean;
5240
+ editIcon: string;
5241
+ errorIcon: string;
5242
+ } & {
5243
+ class?: any;
5244
+ title?: string | undefined;
5245
+ text?: string | undefined;
5246
+ value?: any;
5247
+ color?: string | undefined;
5248
+ icon?: string | undefined;
5249
+ rounded?: string | number | boolean | undefined;
5250
+ elevation?: string | number | undefined;
5251
+ selectedClass?: string | undefined;
5252
+ bgColor?: string | undefined;
5253
+ subtitle?: string | undefined;
5254
+ } & {
5255
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
5256
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5257
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5258
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5259
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5260
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5261
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5262
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5263
+ actions?: ((arg: StepperItemSlot & {
5264
+ next: () => void;
5265
+ prev: () => void;
5266
+ }) => vue.VNodeChild) | undefined;
5267
+ };
5268
+ 'v-slots'?: {
5269
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5270
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5271
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5272
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5273
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5274
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5275
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5276
+ actions?: false | ((arg: StepperItemSlot & {
5277
+ next: () => void;
5278
+ prev: () => void;
5279
+ }) => vue.VNodeChild) | undefined;
5280
+ } | undefined;
5281
+ } & {
5282
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5283
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5284
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5285
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5286
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5287
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5288
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5289
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
5290
+ next: () => void;
5291
+ prev: () => void;
5292
+ }) => vue.VNodeChild) | undefined;
5293
+ } & {
5294
+ "onClick:prev"?: (() => any) | undefined;
5295
+ "onClick:next"?: (() => any) | undefined;
5296
+ "onClick:finish"?: (() => any) | undefined;
5297
+ }, {}, {}, {}, {}, {
5298
+ style: vue.StyleValue;
5299
+ error: boolean;
5300
+ disabled: boolean;
5301
+ tag: string;
5302
+ complete: boolean;
5303
+ static: boolean;
5304
+ readonly: boolean;
5305
+ rules: readonly ValidationRule[];
5306
+ rounded: string | number | boolean;
5307
+ tile: boolean;
5308
+ eager: boolean;
5309
+ ripple: boolean | {
5310
+ class: string;
5311
+ } | undefined;
5312
+ collapseIcon: NonNullable<IconValue>;
5313
+ expandIcon: NonNullable<IconValue>;
5314
+ hideActions: boolean;
5315
+ focusable: boolean;
5316
+ completeIcon: string;
5317
+ editable: boolean;
5318
+ editIcon: string;
5319
+ errorIcon: string;
5320
+ }>;
5321
+ __isFragment?: undefined;
5322
+ __isTeleport?: undefined;
5323
+ __isSuspense?: undefined;
5324
+ } & vue.ComponentOptionsBase<{
5325
+ style: vue.StyleValue;
5326
+ error: boolean;
5327
+ disabled: boolean;
5328
+ tag: string;
5329
+ complete: boolean;
5330
+ static: boolean;
5331
+ readonly: boolean;
5332
+ rules: readonly ValidationRule[];
5333
+ tile: boolean;
5334
+ eager: boolean;
5335
+ ripple: boolean | {
5336
+ class: string;
5337
+ } | undefined;
5338
+ collapseIcon: NonNullable<IconValue>;
5339
+ expandIcon: NonNullable<IconValue>;
5340
+ hideActions: boolean;
5341
+ focusable: boolean;
5342
+ completeIcon: string;
5343
+ editable: boolean;
5344
+ editIcon: string;
5345
+ errorIcon: string;
5346
+ } & {
5347
+ class?: any;
5348
+ title?: string | undefined;
5349
+ text?: string | undefined;
5350
+ value?: any;
5351
+ color?: string | undefined;
5352
+ icon?: string | undefined;
5353
+ rounded?: string | number | boolean | undefined;
5354
+ elevation?: string | number | undefined;
5355
+ selectedClass?: string | undefined;
5356
+ bgColor?: string | undefined;
5357
+ subtitle?: string | undefined;
5358
+ } & {
5359
+ $children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
5360
+ default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5361
+ icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5362
+ subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5363
+ title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5364
+ text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5365
+ prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5366
+ next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5367
+ actions?: ((arg: StepperItemSlot & {
5368
+ next: () => void;
5369
+ prev: () => void;
5370
+ }) => vue.VNodeChild) | undefined;
5371
+ };
5372
+ 'v-slots'?: {
5373
+ default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5374
+ icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5375
+ subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5376
+ title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5377
+ text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5378
+ prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5379
+ next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5380
+ actions?: false | ((arg: StepperItemSlot & {
5381
+ next: () => void;
5382
+ prev: () => void;
5383
+ }) => vue.VNodeChild) | undefined;
5384
+ } | undefined;
5385
+ } & {
5386
+ "v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5387
+ "v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5388
+ "v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5389
+ "v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5390
+ "v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5391
+ "v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5392
+ "v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
5393
+ "v-slot:actions"?: false | ((arg: StepperItemSlot & {
5394
+ next: () => void;
5395
+ prev: () => void;
5396
+ }) => vue.VNodeChild) | undefined;
5397
+ } & {
5398
+ "onClick:prev"?: (() => any) | undefined;
5399
+ "onClick:next"?: (() => any) | undefined;
5400
+ "onClick:finish"?: (() => any) | undefined;
5401
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5402
+ 'click:next': () => true;
5403
+ 'click:prev': () => true;
5404
+ 'click:finish': () => true;
5405
+ }, string, {
5406
+ style: vue.StyleValue;
5407
+ error: boolean;
5408
+ disabled: boolean;
5409
+ tag: string;
5410
+ complete: boolean;
5411
+ static: boolean;
5412
+ readonly: boolean;
5413
+ rules: readonly ValidationRule[];
5414
+ rounded: string | number | boolean;
5415
+ tile: boolean;
5416
+ eager: boolean;
5417
+ ripple: boolean | {
5418
+ class: string;
5419
+ } | undefined;
5420
+ collapseIcon: NonNullable<IconValue>;
5421
+ expandIcon: NonNullable<IconValue>;
5422
+ hideActions: boolean;
5423
+ focusable: boolean;
5424
+ completeIcon: string;
5425
+ editable: boolean;
5426
+ editIcon: string;
5427
+ errorIcon: string;
5428
+ }, {}, string, vue.SlotsType<Partial<{
5429
+ default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5430
+ [key: string]: any;
5431
+ }>[];
5432
+ icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5433
+ [key: string]: any;
5434
+ }>[];
5435
+ subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5436
+ [key: string]: any;
5437
+ }>[];
5438
+ title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5439
+ [key: string]: any;
5440
+ }>[];
5441
+ text: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5442
+ [key: string]: any;
5443
+ }>[];
5444
+ prev: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5445
+ [key: string]: any;
5446
+ }>[];
5447
+ next: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5448
+ [key: string]: any;
5449
+ }>[];
5450
+ actions: (arg: StepperItemSlot & {
5451
+ next: () => void;
5452
+ prev: () => void;
5453
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5454
+ [key: string]: any;
5455
+ }>[];
5456
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
5457
+ class: vue.PropType<any>;
5458
+ style: {
5459
+ type: vue.PropType<vue.StyleValue>;
5460
+ default: null;
5461
+ };
5462
+ title: StringConstructor;
5463
+ text: StringConstructor;
5464
+ value: null;
5465
+ color: StringConstructor;
5466
+ disabled: BooleanConstructor;
5467
+ tag: {
5468
+ type: StringConstructor;
5469
+ default: string;
5470
+ };
5471
+ static: BooleanConstructor;
5472
+ readonly: BooleanConstructor;
5473
+ rounded: {
5474
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
5475
+ default: undefined;
5476
+ };
5477
+ tile: BooleanConstructor;
5478
+ eager: BooleanConstructor;
5479
+ elevation: {
5480
+ type: (StringConstructor | NumberConstructor)[];
5481
+ validator(v: any): boolean;
5482
+ };
5483
+ selectedClass: StringConstructor;
5484
+ bgColor: StringConstructor;
5485
+ ripple: {
5486
+ type: vue.PropType<boolean | {
5487
+ class: string;
5488
+ } | undefined>;
5489
+ default: boolean;
5490
+ };
5491
+ collapseIcon: Omit<{
5492
+ type: vue.PropType<IconValue>;
5493
+ default: string;
5494
+ }, "default" | "type"> & {
5495
+ type: vue.PropType<NonNullable<IconValue>>;
5496
+ default: NonNullable<IconValue>;
5497
+ };
5498
+ expandIcon: Omit<{
5499
+ type: vue.PropType<IconValue>;
5500
+ default: string;
5501
+ }, "default" | "type"> & {
5502
+ type: vue.PropType<NonNullable<IconValue>>;
5503
+ default: NonNullable<IconValue>;
5504
+ };
5505
+ focusable: BooleanConstructor;
5506
+ subtitle: StringConstructor;
5507
+ complete: BooleanConstructor;
5508
+ completeIcon: {
5509
+ type: StringConstructor;
5510
+ default: string;
5511
+ };
5512
+ editable: BooleanConstructor;
5513
+ editIcon: {
5514
+ type: StringConstructor;
5515
+ default: string;
5516
+ };
5517
+ error: BooleanConstructor;
5518
+ errorIcon: {
5519
+ type: StringConstructor;
5520
+ default: string;
5521
+ };
5522
+ icon: StringConstructor;
5523
+ rules: {
5524
+ type: vue.PropType<readonly ValidationRule[]>;
5525
+ default: () => never[];
5526
+ };
5527
+ hideActions: BooleanConstructor;
5528
+ }, vue.ExtractPropTypes<{
5529
+ class: vue.PropType<any>;
5530
+ style: {
5531
+ type: vue.PropType<vue.StyleValue>;
5532
+ default: null;
5533
+ };
5534
+ title: StringConstructor;
5535
+ text: StringConstructor;
5536
+ value: null;
5537
+ color: StringConstructor;
5538
+ disabled: BooleanConstructor;
5539
+ tag: {
5540
+ type: StringConstructor;
5541
+ default: string;
5542
+ };
5543
+ static: BooleanConstructor;
5544
+ readonly: BooleanConstructor;
5545
+ rounded: {
5546
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
5547
+ default: undefined;
5548
+ };
5549
+ tile: BooleanConstructor;
5550
+ eager: BooleanConstructor;
5551
+ elevation: {
5552
+ type: (StringConstructor | NumberConstructor)[];
5553
+ validator(v: any): boolean;
5554
+ };
5555
+ selectedClass: StringConstructor;
5556
+ bgColor: StringConstructor;
5557
+ ripple: {
5558
+ type: vue.PropType<boolean | {
5559
+ class: string;
5560
+ } | undefined>;
5561
+ default: boolean;
5562
+ };
5563
+ collapseIcon: Omit<{
5564
+ type: vue.PropType<IconValue>;
5565
+ default: string;
5566
+ }, "default" | "type"> & {
5567
+ type: vue.PropType<NonNullable<IconValue>>;
5568
+ default: NonNullable<IconValue>;
5569
+ };
5570
+ expandIcon: Omit<{
5571
+ type: vue.PropType<IconValue>;
5572
+ default: string;
5573
+ }, "default" | "type"> & {
5574
+ type: vue.PropType<NonNullable<IconValue>>;
5575
+ default: NonNullable<IconValue>;
5576
+ };
5577
+ focusable: BooleanConstructor;
5578
+ subtitle: StringConstructor;
5579
+ complete: BooleanConstructor;
5580
+ completeIcon: {
5581
+ type: StringConstructor;
5582
+ default: string;
5583
+ };
5584
+ editable: BooleanConstructor;
5585
+ editIcon: {
5586
+ type: StringConstructor;
5587
+ default: string;
5588
+ };
5589
+ error: BooleanConstructor;
5590
+ errorIcon: {
5591
+ type: StringConstructor;
5592
+ default: string;
5593
+ };
5594
+ icon: StringConstructor;
5595
+ rules: {
5596
+ type: vue.PropType<readonly ValidationRule[]>;
5597
+ default: () => never[];
5598
+ };
5599
+ hideActions: BooleanConstructor;
5600
+ }>>;
5601
+ type VStepperVerticalItem = InstanceType<typeof VStepperVerticalItem>;
5602
+
5603
+ declare const VStepperVerticalActions: {
5604
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
5605
+ disabled: boolean | "next" | "prev";
5606
+ prevText: string;
5607
+ nextText: string;
5608
+ } & {
5609
+ color?: string | undefined;
5610
+ } & {
5611
+ $children?: {} | vue.VNodeChild | {
5612
+ prev?: ((arg: {
5613
+ props: {
5614
+ onClick: () => void;
5615
+ };
5616
+ }) => vue.VNodeChild) | undefined;
5617
+ next?: ((arg: {
5618
+ props: {
5619
+ onClick: () => void;
5620
+ };
5621
+ }) => vue.VNodeChild) | undefined;
5622
+ };
5623
+ 'v-slots'?: {
5624
+ prev?: false | ((arg: {
5625
+ props: {
5626
+ onClick: () => void;
5627
+ };
5628
+ }) => vue.VNodeChild) | undefined;
5629
+ next?: false | ((arg: {
5630
+ props: {
5631
+ onClick: () => void;
5632
+ };
5633
+ }) => vue.VNodeChild) | undefined;
5634
+ } | undefined;
5635
+ } & {
5636
+ "v-slot:prev"?: false | ((arg: {
5637
+ props: {
5638
+ onClick: () => void;
5639
+ };
5640
+ }) => vue.VNodeChild) | undefined;
5641
+ "v-slot:next"?: false | ((arg: {
5642
+ props: {
5643
+ onClick: () => void;
5644
+ };
5645
+ }) => vue.VNodeChild) | undefined;
5646
+ } & {
5647
+ "onClick:prev"?: (() => any) | undefined;
5648
+ "onClick:next"?: (() => any) | undefined;
5649
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5650
+ 'click:prev': () => true;
5651
+ 'click:next': () => true;
5652
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
5653
+ disabled: boolean | "next" | "prev";
5654
+ prevText: string;
5655
+ nextText: string;
5656
+ } & {
5657
+ color?: string | undefined;
5658
+ } & {
5659
+ $children?: {} | vue.VNodeChild | {
5660
+ prev?: ((arg: {
5661
+ props: {
5662
+ onClick: () => void;
5663
+ };
5664
+ }) => vue.VNodeChild) | undefined;
5665
+ next?: ((arg: {
5666
+ props: {
5667
+ onClick: () => void;
5668
+ };
5669
+ }) => vue.VNodeChild) | undefined;
5670
+ };
5671
+ 'v-slots'?: {
5672
+ prev?: false | ((arg: {
5673
+ props: {
5674
+ onClick: () => void;
5675
+ };
5676
+ }) => vue.VNodeChild) | undefined;
5677
+ next?: false | ((arg: {
5678
+ props: {
5679
+ onClick: () => void;
5680
+ };
5681
+ }) => vue.VNodeChild) | undefined;
5682
+ } | undefined;
5683
+ } & {
5684
+ "v-slot:prev"?: false | ((arg: {
5685
+ props: {
5686
+ onClick: () => void;
5687
+ };
5688
+ }) => vue.VNodeChild) | undefined;
5689
+ "v-slot:next"?: false | ((arg: {
5690
+ props: {
5691
+ onClick: () => void;
5692
+ };
5693
+ }) => vue.VNodeChild) | undefined;
5694
+ } & {
5695
+ "onClick:prev"?: (() => any) | undefined;
5696
+ "onClick:next"?: (() => any) | undefined;
5697
+ }, {
5698
+ disabled: boolean | "next" | "prev";
5699
+ prevText: string;
5700
+ nextText: string;
5701
+ }, true, {}, vue.SlotsType<Partial<{
5702
+ prev: (arg: {
5703
+ props: {
5704
+ onClick: () => void;
5705
+ };
5706
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5707
+ [key: string]: any;
5708
+ }>[];
5709
+ next: (arg: {
5710
+ props: {
5711
+ onClick: () => void;
5712
+ };
5713
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5714
+ [key: string]: any;
5715
+ }>[];
5716
+ }>>, {
5717
+ P: {};
5718
+ B: {};
5719
+ D: {};
5720
+ C: {};
5721
+ M: {};
5722
+ Defaults: {};
5723
+ }, {
5724
+ disabled: boolean | "next" | "prev";
5725
+ prevText: string;
5726
+ nextText: string;
5727
+ } & {
5728
+ color?: string | undefined;
5729
+ } & {
5730
+ $children?: {} | vue.VNodeChild | {
5731
+ prev?: ((arg: {
5732
+ props: {
5733
+ onClick: () => void;
5734
+ };
5735
+ }) => vue.VNodeChild) | undefined;
5736
+ next?: ((arg: {
5737
+ props: {
5738
+ onClick: () => void;
5739
+ };
5740
+ }) => vue.VNodeChild) | undefined;
5741
+ };
5742
+ 'v-slots'?: {
5743
+ prev?: false | ((arg: {
5744
+ props: {
5745
+ onClick: () => void;
5746
+ };
5747
+ }) => vue.VNodeChild) | undefined;
5748
+ next?: false | ((arg: {
5749
+ props: {
5750
+ onClick: () => void;
5751
+ };
5752
+ }) => vue.VNodeChild) | undefined;
5753
+ } | undefined;
5754
+ } & {
5755
+ "v-slot:prev"?: false | ((arg: {
5756
+ props: {
5757
+ onClick: () => void;
5758
+ };
5759
+ }) => vue.VNodeChild) | undefined;
5760
+ "v-slot:next"?: false | ((arg: {
5761
+ props: {
5762
+ onClick: () => void;
5763
+ };
5764
+ }) => vue.VNodeChild) | undefined;
5765
+ } & {
5766
+ "onClick:prev"?: (() => any) | undefined;
5767
+ "onClick:next"?: (() => any) | undefined;
5768
+ }, {}, {}, {}, {}, {
5769
+ disabled: boolean | "next" | "prev";
5770
+ prevText: string;
5771
+ nextText: string;
5772
+ }>;
5773
+ __isFragment?: undefined;
5774
+ __isTeleport?: undefined;
5775
+ __isSuspense?: undefined;
5776
+ } & vue.ComponentOptionsBase<{
5777
+ disabled: boolean | "next" | "prev";
5778
+ prevText: string;
5779
+ nextText: string;
5780
+ } & {
5781
+ color?: string | undefined;
5782
+ } & {
5783
+ $children?: {} | vue.VNodeChild | {
5784
+ prev?: ((arg: {
5785
+ props: {
5786
+ onClick: () => void;
5787
+ };
5788
+ }) => vue.VNodeChild) | undefined;
5789
+ next?: ((arg: {
5790
+ props: {
5791
+ onClick: () => void;
5792
+ };
5793
+ }) => vue.VNodeChild) | undefined;
5794
+ };
5795
+ 'v-slots'?: {
5796
+ prev?: false | ((arg: {
5797
+ props: {
5798
+ onClick: () => void;
5799
+ };
5800
+ }) => vue.VNodeChild) | undefined;
5801
+ next?: false | ((arg: {
5802
+ props: {
5803
+ onClick: () => void;
5804
+ };
5805
+ }) => vue.VNodeChild) | undefined;
5806
+ } | undefined;
5807
+ } & {
5808
+ "v-slot:prev"?: false | ((arg: {
5809
+ props: {
5810
+ onClick: () => void;
5811
+ };
5812
+ }) => vue.VNodeChild) | undefined;
5813
+ "v-slot:next"?: false | ((arg: {
5814
+ props: {
5815
+ onClick: () => void;
5816
+ };
5817
+ }) => vue.VNodeChild) | undefined;
5818
+ } & {
5819
+ "onClick:prev"?: (() => any) | undefined;
5820
+ "onClick:next"?: (() => any) | undefined;
5821
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5822
+ 'click:prev': () => true;
5823
+ 'click:next': () => true;
5824
+ }, string, {
5825
+ disabled: boolean | "next" | "prev";
5826
+ prevText: string;
5827
+ nextText: string;
5828
+ }, {}, string, vue.SlotsType<Partial<{
5829
+ prev: (arg: {
5830
+ props: {
5831
+ onClick: () => void;
5832
+ };
5833
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5834
+ [key: string]: any;
5835
+ }>[];
5836
+ next: (arg: {
5837
+ props: {
5838
+ onClick: () => void;
5839
+ };
5840
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5841
+ [key: string]: any;
5842
+ }>[];
5843
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
5844
+ color: StringConstructor;
5845
+ disabled: {
5846
+ type: vue.PropType<boolean | "next" | "prev">;
5847
+ default: boolean;
5848
+ };
5849
+ prevText: {
5850
+ type: StringConstructor;
5851
+ default: string;
5852
+ };
5853
+ nextText: {
5854
+ type: StringConstructor;
5855
+ default: string;
5856
+ };
5857
+ }, vue.ExtractPropTypes<{
5858
+ color: StringConstructor;
5859
+ disabled: {
5860
+ type: vue.PropType<boolean | "next" | "prev">;
5861
+ default: boolean;
5862
+ };
5863
+ prevText: {
5864
+ type: StringConstructor;
5865
+ default: string;
5866
+ };
5867
+ nextText: {
5868
+ type: StringConstructor;
5869
+ default: string;
5870
+ };
5871
+ }>>;
5872
+ type VStepperVerticalActions = InstanceType<typeof VStepperVerticalActions>;
5873
+
4295
5874
  declare const VPullToRefresh: {
4296
5875
  new (...args: any[]): vue.CreateComponentPublicInstance<{
4297
5876
  pullDownThreshold: number;
@@ -9963,4 +11542,4 @@ declare const VTreeviewGroup: {
9963
11542
  }>>;
9964
11543
  type VTreeviewGroup = InstanceType<typeof VTreeviewGroup>;
9965
11544
 
9966
- export { VCalendar, VCalendarDay, VCalendarHeader, VCalendarInterval, VCalendarIntervalEvent, VCalendarMonthDay, VDateInput, VNumberInput, VPicker, VPickerTitle, VPullToRefresh, VSnackbarQueue, VTimePicker, VTimePickerClock, VTimePickerControls, VTreeview, VTreeviewGroup, VTreeviewItem };
11545
+ export { VCalendar, VCalendarDay, VCalendarHeader, VCalendarInterval, VCalendarIntervalEvent, VCalendarMonthDay, VDateInput, VNumberInput, VPicker, VPickerTitle, VPullToRefresh, VSnackbarQueue, VStepperVertical, VStepperVerticalActions, VStepperVerticalItem, VTimePicker, VTimePickerClock, VTimePickerControls, VTreeview, VTreeviewGroup, VTreeviewItem };