@vuetify/nightly 3.7.7-master.2025-01-23 → 3.7.7-master.2025-01-25
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.
- package/CHANGELOG.md +25 -8
- package/dist/json/attributes.json +3992 -3992
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +6640 -6749
- package/dist/vuetify-labs.css +3224 -3224
- package/dist/vuetify-labs.d.ts +625 -839
- package/dist/vuetify-labs.esm.js +29 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +6079 -6079
- package/dist/vuetify.d.ts +122 -122
- package/dist/vuetify.esm.js +28 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +28 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +31 -31
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +1 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +2 -2
- package/lib/components/VDataTable/VDataTable.sass +2 -2
- package/lib/components/VDataTable/composables/group.mjs +1 -1
- package/lib/components/VDataTable/composables/group.mjs.map +1 -1
- package/lib/components/VDataTable/composables/paginate.mjs +2 -0
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VField/VField.css +1 -1
- package/lib/components/VField/VField.mjs +6 -5
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/VField.sass +1 -1
- package/lib/components/VImg/VImg.mjs +2 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VInput/VInput.mjs +4 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMessages/VMessages.mjs +1 -3
- package/lib/components/VMessages/VMessages.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +66 -66
- package/lib/components/index.d.mts +66 -66
- package/lib/composables/calendar.mjs +4 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/router.mjs +2 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -56
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +1 -2
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +585 -774
- package/lib/labs/components.d.mts +567 -781
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -52583,13 +52583,13 @@ declare const VSpeedDial: {
|
|
52583
52583
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
52584
52584
|
|
52585
52585
|
type StepperItem = string | Record<string, any>;
|
52586
|
-
type StepperItemSlot = {
|
52586
|
+
type StepperItemSlot<T = any> = {
|
52587
52587
|
canEdit: boolean;
|
52588
52588
|
hasError: boolean;
|
52589
52589
|
hasCompleted: boolean;
|
52590
52590
|
title?: string | number;
|
52591
52591
|
subtitle?: string | number;
|
52592
|
-
step:
|
52592
|
+
step: T;
|
52593
52593
|
};
|
52594
52594
|
type ValidationRule = () => string | boolean;
|
52595
52595
|
declare const VStepperItem: {
|
@@ -52613,23 +52613,23 @@ declare const VStepperItem: {
|
|
52613
52613
|
selectedClass?: string | undefined;
|
52614
52614
|
subtitle?: string | undefined;
|
52615
52615
|
} & {
|
52616
|
-
$children?: vue.VNodeChild |
|
52617
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52618
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52619
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52620
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52621
|
-
};
|
52616
|
+
$children?: vue.VNodeChild | {
|
52617
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52618
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52619
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52620
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52621
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52622
52622
|
'v-slots'?: {
|
52623
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52624
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52625
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52626
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52623
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52624
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52625
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52626
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52627
52627
|
} | undefined;
|
52628
52628
|
} & {
|
52629
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52630
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52631
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52632
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52629
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52630
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52631
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52632
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52633
52633
|
} & {
|
52634
52634
|
"onGroup:selected"?: ((val: {
|
52635
52635
|
value: boolean;
|
@@ -52658,23 +52658,23 @@ declare const VStepperItem: {
|
|
52658
52658
|
selectedClass?: string | undefined;
|
52659
52659
|
subtitle?: string | undefined;
|
52660
52660
|
} & {
|
52661
|
-
$children?: vue.VNodeChild |
|
52662
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52663
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52664
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52665
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52666
|
-
};
|
52661
|
+
$children?: vue.VNodeChild | {
|
52662
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52663
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52664
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52665
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52666
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52667
52667
|
'v-slots'?: {
|
52668
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52669
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52670
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52671
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52668
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52669
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52670
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52671
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52672
52672
|
} | undefined;
|
52673
52673
|
} & {
|
52674
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52675
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52676
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52677
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52674
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52675
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52676
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52677
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52678
52678
|
} & {
|
52679
52679
|
"onGroup:selected"?: ((val: {
|
52680
52680
|
value: boolean;
|
@@ -52692,10 +52692,10 @@ declare const VStepperItem: {
|
|
52692
52692
|
editIcon: IconValue;
|
52693
52693
|
errorIcon: IconValue;
|
52694
52694
|
}, true, {}, vue.SlotsType<Partial<{
|
52695
|
-
default: (arg: StepperItemSlot) => vue.VNode[];
|
52696
|
-
icon: (arg: StepperItemSlot) => vue.VNode[];
|
52697
|
-
title: (arg: StepperItemSlot) => vue.VNode[];
|
52698
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
52695
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52696
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52697
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52698
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52699
52699
|
}>>, {
|
52700
52700
|
P: {};
|
52701
52701
|
B: {};
|
@@ -52723,23 +52723,23 @@ declare const VStepperItem: {
|
|
52723
52723
|
selectedClass?: string | undefined;
|
52724
52724
|
subtitle?: string | undefined;
|
52725
52725
|
} & {
|
52726
|
-
$children?: vue.VNodeChild |
|
52727
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52728
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52729
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52730
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52731
|
-
};
|
52726
|
+
$children?: vue.VNodeChild | {
|
52727
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52728
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52729
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52730
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52731
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52732
52732
|
'v-slots'?: {
|
52733
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52734
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52735
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52736
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52733
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52734
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52735
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52736
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52737
52737
|
} | undefined;
|
52738
52738
|
} & {
|
52739
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52740
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52741
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52742
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52739
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52740
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52741
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52742
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52743
52743
|
} & {
|
52744
52744
|
"onGroup:selected"?: ((val: {
|
52745
52745
|
value: boolean;
|
@@ -52780,23 +52780,23 @@ declare const VStepperItem: {
|
|
52780
52780
|
selectedClass?: string | undefined;
|
52781
52781
|
subtitle?: string | undefined;
|
52782
52782
|
} & {
|
52783
|
-
$children?: vue.VNodeChild |
|
52784
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52785
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52786
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52787
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52788
|
-
};
|
52783
|
+
$children?: vue.VNodeChild | {
|
52784
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52785
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52786
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52787
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52788
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52789
52789
|
'v-slots'?: {
|
52790
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52791
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52792
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52793
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52790
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52791
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52792
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52793
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52794
52794
|
} | undefined;
|
52795
52795
|
} & {
|
52796
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52797
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52798
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52799
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52796
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52797
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52798
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52799
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52800
52800
|
} & {
|
52801
52801
|
"onGroup:selected"?: ((val: {
|
52802
52802
|
value: boolean;
|
@@ -52818,10 +52818,10 @@ declare const VStepperItem: {
|
|
52818
52818
|
editIcon: IconValue;
|
52819
52819
|
errorIcon: IconValue;
|
52820
52820
|
}, {}, string, vue.SlotsType<Partial<{
|
52821
|
-
default: (arg: StepperItemSlot) => vue.VNode[];
|
52822
|
-
icon: (arg: StepperItemSlot) => vue.VNode[];
|
52823
|
-
title: (arg: StepperItemSlot) => vue.VNode[];
|
52824
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
52821
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52822
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52823
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52824
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52825
52825
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
52826
52826
|
value: null;
|
52827
52827
|
disabled: BooleanConstructor;
|
@@ -78260,225 +78260,195 @@ declare const VPickerTitle: {
|
|
78260
78260
|
}>>;
|
78261
78261
|
type VPickerTitle = InstanceType<typeof VPickerTitle>;
|
78262
78262
|
|
78263
|
-
|
78263
|
+
type StepperVerticalItemActionSlot<T = any> = StepperItemSlot<T> & {
|
78264
|
+
next: () => void;
|
78265
|
+
prev: () => void;
|
78266
|
+
};
|
78267
|
+
declare const VStepperVerticalItem: {
|
78264
78268
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
78265
|
-
|
78266
|
-
|
78269
|
+
error: boolean;
|
78270
|
+
complete: boolean;
|
78267
78271
|
style: vue.StyleValue;
|
78268
78272
|
eager: boolean;
|
78269
|
-
mobile: boolean | null;
|
78270
78273
|
disabled: boolean;
|
78271
|
-
multiple: boolean;
|
78272
78274
|
readonly: boolean;
|
78273
78275
|
tag: string;
|
78274
|
-
|
78276
|
+
static: boolean;
|
78275
78277
|
focusable: boolean;
|
78276
|
-
|
78278
|
+
rules: readonly ValidationRule[];
|
78277
78279
|
tile: boolean;
|
78278
78280
|
ripple: boolean | {
|
78279
78281
|
class: string;
|
78280
78282
|
} | undefined;
|
78281
78283
|
collapseIcon: IconValue;
|
78282
78284
|
expandIcon: IconValue;
|
78283
|
-
itemTitle: string;
|
78284
|
-
itemValue: string;
|
78285
78285
|
hideActions: boolean;
|
78286
|
-
|
78287
|
-
nextText: string;
|
78286
|
+
completeIcon: IconValue;
|
78288
78287
|
editable: boolean;
|
78289
|
-
|
78290
|
-
|
78288
|
+
editIcon: IconValue;
|
78289
|
+
errorIcon: IconValue;
|
78291
78290
|
} & {
|
78292
|
-
|
78291
|
+
height?: string | number | undefined;
|
78292
|
+
width?: string | number | undefined;
|
78293
78293
|
color?: string | undefined;
|
78294
|
+
maxHeight?: string | number | undefined;
|
78295
|
+
maxWidth?: string | number | undefined;
|
78296
|
+
minHeight?: string | number | undefined;
|
78297
|
+
minWidth?: string | number | undefined;
|
78298
|
+
value?: any;
|
78299
|
+
title?: string | undefined;
|
78300
|
+
text?: string | undefined;
|
78294
78301
|
class?: any;
|
78295
|
-
|
78302
|
+
icon?: IconValue | undefined;
|
78296
78303
|
elevation?: string | number | undefined;
|
78297
|
-
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
78298
|
-
modelValue?: any;
|
78299
78304
|
rounded?: string | number | boolean | undefined;
|
78300
78305
|
selectedClass?: string | undefined;
|
78301
78306
|
bgColor?: string | undefined;
|
78302
|
-
|
78303
|
-
editIcon?: IconValue | undefined;
|
78304
|
-
errorIcon?: IconValue | undefined;
|
78307
|
+
subtitle?: string | undefined;
|
78305
78308
|
} & {
|
78306
|
-
$children?: vue.VNodeChild | {
|
78307
|
-
|
78308
|
-
|
78309
|
-
|
78310
|
-
|
78311
|
-
|
78312
|
-
|
78313
|
-
|
78314
|
-
|
78315
|
-
|
78316
|
-
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78317
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78318
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78319
|
-
} | ((arg: VStepperSlot & {
|
78320
|
-
step: unknown;
|
78321
|
-
}) => vue.VNodeChild);
|
78309
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | {
|
78310
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78311
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78312
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78313
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78314
|
+
text?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78315
|
+
prev?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78316
|
+
next?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78317
|
+
actions?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78318
|
+
};
|
78322
78319
|
'v-slots'?: {
|
78323
|
-
|
78324
|
-
|
78325
|
-
|
78326
|
-
|
78327
|
-
|
78328
|
-
|
78329
|
-
|
78330
|
-
|
78331
|
-
|
78332
|
-
|
78333
|
-
|
78334
|
-
|
78335
|
-
|
78336
|
-
|
78337
|
-
|
78338
|
-
|
78339
|
-
"v-slot:
|
78340
|
-
"v-slot:
|
78341
|
-
step: unknown;
|
78342
|
-
}) => vue.VNodeChild) | undefined;
|
78343
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78344
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78345
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78346
|
-
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78347
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78348
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78320
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78321
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78322
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78323
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78324
|
+
text?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78325
|
+
prev?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78326
|
+
next?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78327
|
+
actions?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78328
|
+
} | undefined;
|
78329
|
+
} & {
|
78330
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78331
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78332
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78333
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78334
|
+
"v-slot:text"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78335
|
+
"v-slot:prev"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78336
|
+
"v-slot:next"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78337
|
+
"v-slot:actions"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78349
78338
|
} & {
|
78350
|
-
"
|
78339
|
+
"onClick:prev"?: (() => any) | undefined;
|
78340
|
+
"onClick:next"?: (() => any) | undefined;
|
78341
|
+
"onClick:finish"?: (() => any) | undefined;
|
78351
78342
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
78352
|
-
'
|
78343
|
+
'click:next': () => true;
|
78344
|
+
'click:prev': () => true;
|
78345
|
+
'click:finish': () => true;
|
78353
78346
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
78354
|
-
|
78355
|
-
|
78347
|
+
error: boolean;
|
78348
|
+
complete: boolean;
|
78356
78349
|
style: vue.StyleValue;
|
78357
78350
|
eager: boolean;
|
78358
|
-
mobile: boolean | null;
|
78359
78351
|
disabled: boolean;
|
78360
|
-
multiple: boolean;
|
78361
78352
|
readonly: boolean;
|
78362
78353
|
tag: string;
|
78363
|
-
|
78354
|
+
static: boolean;
|
78364
78355
|
focusable: boolean;
|
78365
|
-
|
78356
|
+
rules: readonly ValidationRule[];
|
78366
78357
|
tile: boolean;
|
78367
78358
|
ripple: boolean | {
|
78368
78359
|
class: string;
|
78369
78360
|
} | undefined;
|
78370
78361
|
collapseIcon: IconValue;
|
78371
78362
|
expandIcon: IconValue;
|
78372
|
-
itemTitle: string;
|
78373
|
-
itemValue: string;
|
78374
78363
|
hideActions: boolean;
|
78375
|
-
|
78376
|
-
nextText: string;
|
78364
|
+
completeIcon: IconValue;
|
78377
78365
|
editable: boolean;
|
78378
|
-
|
78379
|
-
|
78366
|
+
editIcon: IconValue;
|
78367
|
+
errorIcon: IconValue;
|
78380
78368
|
} & {
|
78381
|
-
|
78369
|
+
height?: string | number | undefined;
|
78370
|
+
width?: string | number | undefined;
|
78382
78371
|
color?: string | undefined;
|
78372
|
+
maxHeight?: string | number | undefined;
|
78373
|
+
maxWidth?: string | number | undefined;
|
78374
|
+
minHeight?: string | number | undefined;
|
78375
|
+
minWidth?: string | number | undefined;
|
78376
|
+
value?: any;
|
78377
|
+
title?: string | undefined;
|
78378
|
+
text?: string | undefined;
|
78383
78379
|
class?: any;
|
78384
|
-
|
78380
|
+
icon?: IconValue | undefined;
|
78385
78381
|
elevation?: string | number | undefined;
|
78386
|
-
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
78387
|
-
modelValue?: any;
|
78388
78382
|
rounded?: string | number | boolean | undefined;
|
78389
78383
|
selectedClass?: string | undefined;
|
78390
78384
|
bgColor?: string | undefined;
|
78391
|
-
|
78392
|
-
editIcon?: IconValue | undefined;
|
78393
|
-
errorIcon?: IconValue | undefined;
|
78385
|
+
subtitle?: string | undefined;
|
78394
78386
|
} & {
|
78395
|
-
$children?: vue.VNodeChild | {
|
78396
|
-
|
78397
|
-
|
78398
|
-
|
78399
|
-
|
78400
|
-
|
78401
|
-
|
78402
|
-
|
78403
|
-
|
78404
|
-
|
78405
|
-
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78406
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78407
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78408
|
-
} | ((arg: VStepperSlot & {
|
78409
|
-
step: unknown;
|
78410
|
-
}) => vue.VNodeChild);
|
78387
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | {
|
78388
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78389
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78390
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78391
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78392
|
+
text?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78393
|
+
prev?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78394
|
+
next?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78395
|
+
actions?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78396
|
+
};
|
78411
78397
|
'v-slots'?: {
|
78412
|
-
|
78413
|
-
|
78414
|
-
|
78415
|
-
|
78416
|
-
|
78417
|
-
|
78418
|
-
|
78419
|
-
|
78420
|
-
|
78421
|
-
|
78422
|
-
|
78423
|
-
|
78424
|
-
|
78425
|
-
|
78426
|
-
|
78427
|
-
|
78428
|
-
"v-slot:
|
78429
|
-
"v-slot:
|
78430
|
-
step: unknown;
|
78431
|
-
}) => vue.VNodeChild) | undefined;
|
78432
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78433
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78434
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78435
|
-
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78436
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78437
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78398
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78399
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78400
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78401
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78402
|
+
text?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78403
|
+
prev?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78404
|
+
next?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78405
|
+
actions?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78406
|
+
} | undefined;
|
78407
|
+
} & {
|
78408
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78409
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78410
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78411
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78412
|
+
"v-slot:text"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78413
|
+
"v-slot:prev"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78414
|
+
"v-slot:next"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78415
|
+
"v-slot:actions"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78438
78416
|
} & {
|
78439
|
-
"
|
78417
|
+
"onClick:prev"?: (() => any) | undefined;
|
78418
|
+
"onClick:next"?: (() => any) | undefined;
|
78419
|
+
"onClick:finish"?: (() => any) | undefined;
|
78440
78420
|
}, {
|
78441
|
-
|
78442
|
-
|
78421
|
+
error: boolean;
|
78422
|
+
complete: boolean;
|
78443
78423
|
style: vue.StyleValue;
|
78444
78424
|
eager: boolean;
|
78445
|
-
mobile: boolean | null;
|
78446
78425
|
disabled: boolean;
|
78447
|
-
multiple: boolean;
|
78448
78426
|
readonly: boolean;
|
78449
78427
|
tag: string;
|
78450
|
-
|
78428
|
+
static: boolean;
|
78451
78429
|
focusable: boolean;
|
78452
|
-
|
78430
|
+
rules: readonly ValidationRule[];
|
78453
78431
|
rounded: string | number | boolean;
|
78454
|
-
items: readonly StepperItem[];
|
78455
78432
|
tile: boolean;
|
78456
78433
|
ripple: boolean | {
|
78457
78434
|
class: string;
|
78458
78435
|
} | undefined;
|
78459
78436
|
collapseIcon: IconValue;
|
78460
78437
|
expandIcon: IconValue;
|
78461
|
-
itemTitle: string;
|
78462
|
-
itemValue: string;
|
78463
78438
|
hideActions: boolean;
|
78464
|
-
|
78465
|
-
nextText: string;
|
78439
|
+
completeIcon: IconValue;
|
78466
78440
|
editable: boolean;
|
78467
|
-
|
78468
|
-
|
78441
|
+
editIcon: IconValue;
|
78442
|
+
errorIcon: IconValue;
|
78469
78443
|
}, true, {}, vue.SlotsType<Partial<{
|
78470
|
-
|
78471
|
-
|
78472
|
-
|
78473
|
-
|
78474
|
-
|
78475
|
-
|
78476
|
-
|
78477
|
-
|
78478
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
78479
|
-
item: (arg: StepperItem) => vue.VNode[];
|
78480
|
-
prev: (arg: StepperItemSlot) => vue.VNode[];
|
78481
|
-
next: (arg: StepperItemSlot) => vue.VNode[];
|
78444
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78445
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78446
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78447
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78448
|
+
text: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78449
|
+
prev: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78450
|
+
next: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78451
|
+
actions: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78482
78452
|
}>>, {
|
78483
78453
|
P: {};
|
78484
78454
|
B: {};
|
@@ -78487,295 +78457,245 @@ declare const VStepperVertical: {
|
|
78487
78457
|
M: {};
|
78488
78458
|
Defaults: {};
|
78489
78459
|
}, {
|
78490
|
-
|
78491
|
-
|
78460
|
+
error: boolean;
|
78461
|
+
complete: boolean;
|
78492
78462
|
style: vue.StyleValue;
|
78493
78463
|
eager: boolean;
|
78494
|
-
mobile: boolean | null;
|
78495
78464
|
disabled: boolean;
|
78496
|
-
multiple: boolean;
|
78497
78465
|
readonly: boolean;
|
78498
78466
|
tag: string;
|
78499
|
-
|
78467
|
+
static: boolean;
|
78500
78468
|
focusable: boolean;
|
78501
|
-
|
78469
|
+
rules: readonly ValidationRule[];
|
78502
78470
|
tile: boolean;
|
78503
78471
|
ripple: boolean | {
|
78504
78472
|
class: string;
|
78505
78473
|
} | undefined;
|
78506
78474
|
collapseIcon: IconValue;
|
78507
78475
|
expandIcon: IconValue;
|
78508
|
-
itemTitle: string;
|
78509
|
-
itemValue: string;
|
78510
78476
|
hideActions: boolean;
|
78511
|
-
|
78512
|
-
nextText: string;
|
78477
|
+
completeIcon: IconValue;
|
78513
78478
|
editable: boolean;
|
78514
|
-
|
78515
|
-
|
78479
|
+
editIcon: IconValue;
|
78480
|
+
errorIcon: IconValue;
|
78516
78481
|
} & {
|
78517
|
-
|
78482
|
+
height?: string | number | undefined;
|
78483
|
+
width?: string | number | undefined;
|
78518
78484
|
color?: string | undefined;
|
78485
|
+
maxHeight?: string | number | undefined;
|
78486
|
+
maxWidth?: string | number | undefined;
|
78487
|
+
minHeight?: string | number | undefined;
|
78488
|
+
minWidth?: string | number | undefined;
|
78489
|
+
value?: any;
|
78490
|
+
title?: string | undefined;
|
78491
|
+
text?: string | undefined;
|
78519
78492
|
class?: any;
|
78520
|
-
|
78493
|
+
icon?: IconValue | undefined;
|
78521
78494
|
elevation?: string | number | undefined;
|
78522
|
-
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
78523
|
-
modelValue?: any;
|
78524
78495
|
rounded?: string | number | boolean | undefined;
|
78525
78496
|
selectedClass?: string | undefined;
|
78526
78497
|
bgColor?: string | undefined;
|
78527
|
-
|
78528
|
-
editIcon?: IconValue | undefined;
|
78529
|
-
errorIcon?: IconValue | undefined;
|
78498
|
+
subtitle?: string | undefined;
|
78530
78499
|
} & {
|
78531
|
-
$children?: vue.VNodeChild | {
|
78532
|
-
|
78533
|
-
|
78534
|
-
|
78535
|
-
|
78536
|
-
|
78537
|
-
|
78538
|
-
|
78539
|
-
|
78540
|
-
|
78541
|
-
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78542
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78543
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78544
|
-
} | ((arg: VStepperSlot & {
|
78545
|
-
step: unknown;
|
78546
|
-
}) => vue.VNodeChild);
|
78500
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | {
|
78501
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78502
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78503
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78504
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78505
|
+
text?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78506
|
+
prev?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78507
|
+
next?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78508
|
+
actions?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78509
|
+
};
|
78547
78510
|
'v-slots'?: {
|
78548
|
-
|
78549
|
-
|
78550
|
-
|
78551
|
-
|
78552
|
-
|
78553
|
-
|
78554
|
-
|
78555
|
-
|
78556
|
-
|
78557
|
-
|
78558
|
-
|
78559
|
-
|
78560
|
-
|
78561
|
-
|
78562
|
-
|
78563
|
-
|
78564
|
-
"v-slot:
|
78565
|
-
"v-slot:
|
78566
|
-
step: unknown;
|
78567
|
-
}) => vue.VNodeChild) | undefined;
|
78568
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78569
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78570
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78571
|
-
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78572
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78573
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78511
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78512
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78513
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78514
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78515
|
+
text?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78516
|
+
prev?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78517
|
+
next?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78518
|
+
actions?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78519
|
+
} | undefined;
|
78520
|
+
} & {
|
78521
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78522
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78523
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78524
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78525
|
+
"v-slot:text"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78526
|
+
"v-slot:prev"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78527
|
+
"v-slot:next"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78528
|
+
"v-slot:actions"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78574
78529
|
} & {
|
78575
|
-
"
|
78530
|
+
"onClick:prev"?: (() => any) | undefined;
|
78531
|
+
"onClick:next"?: (() => any) | undefined;
|
78532
|
+
"onClick:finish"?: (() => any) | undefined;
|
78576
78533
|
}, {}, {}, {}, {}, {
|
78577
|
-
|
78578
|
-
|
78534
|
+
error: boolean;
|
78535
|
+
complete: boolean;
|
78579
78536
|
style: vue.StyleValue;
|
78580
78537
|
eager: boolean;
|
78581
|
-
mobile: boolean | null;
|
78582
78538
|
disabled: boolean;
|
78583
|
-
multiple: boolean;
|
78584
78539
|
readonly: boolean;
|
78585
78540
|
tag: string;
|
78586
|
-
|
78541
|
+
static: boolean;
|
78587
78542
|
focusable: boolean;
|
78588
|
-
|
78543
|
+
rules: readonly ValidationRule[];
|
78589
78544
|
rounded: string | number | boolean;
|
78590
|
-
items: readonly StepperItem[];
|
78591
78545
|
tile: boolean;
|
78592
78546
|
ripple: boolean | {
|
78593
78547
|
class: string;
|
78594
78548
|
} | undefined;
|
78595
78549
|
collapseIcon: IconValue;
|
78596
78550
|
expandIcon: IconValue;
|
78597
|
-
itemTitle: string;
|
78598
|
-
itemValue: string;
|
78599
78551
|
hideActions: boolean;
|
78600
|
-
|
78601
|
-
nextText: string;
|
78552
|
+
completeIcon: IconValue;
|
78602
78553
|
editable: boolean;
|
78603
|
-
|
78604
|
-
|
78554
|
+
editIcon: IconValue;
|
78555
|
+
errorIcon: IconValue;
|
78605
78556
|
}>;
|
78606
78557
|
__isFragment?: never;
|
78607
78558
|
__isTeleport?: never;
|
78608
78559
|
__isSuspense?: never;
|
78609
78560
|
} & vue.ComponentOptionsBase<{
|
78610
|
-
|
78611
|
-
|
78561
|
+
error: boolean;
|
78562
|
+
complete: boolean;
|
78612
78563
|
style: vue.StyleValue;
|
78613
78564
|
eager: boolean;
|
78614
|
-
mobile: boolean | null;
|
78615
78565
|
disabled: boolean;
|
78616
|
-
multiple: boolean;
|
78617
78566
|
readonly: boolean;
|
78618
78567
|
tag: string;
|
78619
|
-
|
78568
|
+
static: boolean;
|
78620
78569
|
focusable: boolean;
|
78621
|
-
|
78570
|
+
rules: readonly ValidationRule[];
|
78622
78571
|
tile: boolean;
|
78623
78572
|
ripple: boolean | {
|
78624
78573
|
class: string;
|
78625
78574
|
} | undefined;
|
78626
78575
|
collapseIcon: IconValue;
|
78627
78576
|
expandIcon: IconValue;
|
78628
|
-
itemTitle: string;
|
78629
|
-
itemValue: string;
|
78630
78577
|
hideActions: boolean;
|
78631
|
-
|
78632
|
-
nextText: string;
|
78578
|
+
completeIcon: IconValue;
|
78633
78579
|
editable: boolean;
|
78634
|
-
|
78635
|
-
|
78580
|
+
editIcon: IconValue;
|
78581
|
+
errorIcon: IconValue;
|
78636
78582
|
} & {
|
78637
|
-
|
78583
|
+
height?: string | number | undefined;
|
78584
|
+
width?: string | number | undefined;
|
78638
78585
|
color?: string | undefined;
|
78586
|
+
maxHeight?: string | number | undefined;
|
78587
|
+
maxWidth?: string | number | undefined;
|
78588
|
+
minHeight?: string | number | undefined;
|
78589
|
+
minWidth?: string | number | undefined;
|
78590
|
+
value?: any;
|
78591
|
+
title?: string | undefined;
|
78592
|
+
text?: string | undefined;
|
78639
78593
|
class?: any;
|
78640
|
-
|
78594
|
+
icon?: IconValue | undefined;
|
78641
78595
|
elevation?: string | number | undefined;
|
78642
|
-
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
78643
|
-
modelValue?: any;
|
78644
78596
|
rounded?: string | number | boolean | undefined;
|
78645
78597
|
selectedClass?: string | undefined;
|
78646
78598
|
bgColor?: string | undefined;
|
78647
|
-
|
78648
|
-
editIcon?: IconValue | undefined;
|
78649
|
-
errorIcon?: IconValue | undefined;
|
78599
|
+
subtitle?: string | undefined;
|
78650
78600
|
} & {
|
78651
|
-
$children?: vue.VNodeChild | {
|
78652
|
-
|
78653
|
-
|
78654
|
-
|
78655
|
-
|
78656
|
-
|
78657
|
-
|
78658
|
-
|
78659
|
-
|
78660
|
-
|
78661
|
-
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78662
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78663
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78664
|
-
} | ((arg: VStepperSlot & {
|
78665
|
-
step: unknown;
|
78666
|
-
}) => vue.VNodeChild);
|
78601
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | {
|
78602
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78603
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78604
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78605
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78606
|
+
text?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78607
|
+
prev?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78608
|
+
next?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78609
|
+
actions?: ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78610
|
+
};
|
78667
78611
|
'v-slots'?: {
|
78668
|
-
|
78669
|
-
|
78670
|
-
|
78671
|
-
|
78672
|
-
|
78673
|
-
|
78674
|
-
|
78675
|
-
|
78676
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78677
|
-
item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78678
|
-
prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78679
|
-
next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78612
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78613
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78614
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78615
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78616
|
+
text?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78617
|
+
prev?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78618
|
+
next?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78619
|
+
actions?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78680
78620
|
} | undefined;
|
78681
78621
|
} & {
|
78682
|
-
|
78683
|
-
|
78684
|
-
"v-slot:
|
78685
|
-
"v-slot:
|
78686
|
-
|
78687
|
-
|
78688
|
-
"v-slot:
|
78689
|
-
"v-slot:
|
78690
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78691
|
-
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
78692
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78693
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78622
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78623
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78624
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78625
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78626
|
+
"v-slot:text"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
78627
|
+
"v-slot:prev"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78628
|
+
"v-slot:next"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78629
|
+
"v-slot:actions"?: false | ((arg: StepperVerticalItemActionSlot<any>) => vue.VNodeChild) | undefined;
|
78694
78630
|
} & {
|
78695
|
-
"
|
78631
|
+
"onClick:prev"?: (() => any) | undefined;
|
78632
|
+
"onClick:next"?: (() => any) | undefined;
|
78633
|
+
"onClick:finish"?: (() => any) | undefined;
|
78696
78634
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
78697
|
-
'
|
78635
|
+
'click:next': () => true;
|
78636
|
+
'click:prev': () => true;
|
78637
|
+
'click:finish': () => true;
|
78698
78638
|
}, string, {
|
78699
|
-
|
78700
|
-
|
78639
|
+
error: boolean;
|
78640
|
+
complete: boolean;
|
78701
78641
|
style: vue.StyleValue;
|
78702
78642
|
eager: boolean;
|
78703
|
-
mobile: boolean | null;
|
78704
78643
|
disabled: boolean;
|
78705
|
-
multiple: boolean;
|
78706
78644
|
readonly: boolean;
|
78707
78645
|
tag: string;
|
78708
|
-
|
78646
|
+
static: boolean;
|
78709
78647
|
focusable: boolean;
|
78710
|
-
|
78648
|
+
rules: readonly ValidationRule[];
|
78711
78649
|
rounded: string | number | boolean;
|
78712
|
-
items: readonly StepperItem[];
|
78713
78650
|
tile: boolean;
|
78714
78651
|
ripple: boolean | {
|
78715
78652
|
class: string;
|
78716
78653
|
} | undefined;
|
78717
78654
|
collapseIcon: IconValue;
|
78718
78655
|
expandIcon: IconValue;
|
78719
|
-
itemTitle: string;
|
78720
|
-
itemValue: string;
|
78721
78656
|
hideActions: boolean;
|
78722
|
-
|
78723
|
-
nextText: string;
|
78657
|
+
completeIcon: IconValue;
|
78724
78658
|
editable: boolean;
|
78725
|
-
|
78726
|
-
|
78659
|
+
editIcon: IconValue;
|
78660
|
+
errorIcon: IconValue;
|
78727
78661
|
}, {}, string, vue.SlotsType<Partial<{
|
78728
|
-
|
78729
|
-
|
78730
|
-
|
78731
|
-
|
78732
|
-
|
78733
|
-
|
78734
|
-
|
78735
|
-
|
78736
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
78737
|
-
item: (arg: StepperItem) => vue.VNode[];
|
78738
|
-
prev: (arg: StepperItemSlot) => vue.VNode[];
|
78739
|
-
next: (arg: StepperItemSlot) => vue.VNode[];
|
78662
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78663
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78664
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78665
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78666
|
+
text: (arg: StepperItemSlot<any>) => vue.VNode[];
|
78667
|
+
prev: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78668
|
+
next: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78669
|
+
actions: (arg: StepperVerticalItemActionSlot<any>) => vue.VNode[];
|
78740
78670
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
78741
|
-
|
78742
|
-
|
78743
|
-
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
78744
|
-
default: string;
|
78745
|
-
validator: (v: any) => boolean;
|
78746
|
-
}, "type" | "default"> & {
|
78747
|
-
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
78748
|
-
default: NonNullable<"default" | "inset" | "accordion" | "popout">;
|
78749
|
-
};
|
78750
|
-
max: NumberConstructor;
|
78671
|
+
height: (StringConstructor | NumberConstructor)[];
|
78672
|
+
width: (StringConstructor | NumberConstructor)[];
|
78751
78673
|
color: StringConstructor;
|
78674
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
78675
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
78676
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
78677
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
78678
|
+
value: null;
|
78752
78679
|
style: {
|
78753
78680
|
type: vue.PropType<vue.StyleValue>;
|
78754
78681
|
default: null;
|
78755
78682
|
};
|
78683
|
+
title: StringConstructor;
|
78684
|
+
text: StringConstructor;
|
78756
78685
|
eager: BooleanConstructor;
|
78757
78686
|
disabled: BooleanConstructor;
|
78758
|
-
multiple: BooleanConstructor;
|
78759
78687
|
readonly: BooleanConstructor;
|
78760
78688
|
class: vue.PropType<ClassValue>;
|
78761
|
-
theme: StringConstructor;
|
78762
78689
|
tag: {
|
78763
78690
|
type: StringConstructor;
|
78764
78691
|
default: string;
|
78765
78692
|
};
|
78766
|
-
|
78767
|
-
type: vue.PropType<boolean | "force">;
|
78768
|
-
default: NonNullable<boolean | "force">;
|
78769
|
-
};
|
78693
|
+
static: BooleanConstructor;
|
78770
78694
|
elevation: {
|
78771
78695
|
type: (StringConstructor | NumberConstructor)[];
|
78772
78696
|
validator(v: any): boolean;
|
78773
78697
|
};
|
78774
78698
|
focusable: BooleanConstructor;
|
78775
|
-
modelValue: {
|
78776
|
-
type: null;
|
78777
|
-
default: undefined;
|
78778
|
-
};
|
78779
78699
|
rounded: {
|
78780
78700
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
78781
78701
|
default: undefined;
|
@@ -78787,85 +78707,71 @@ declare const VStepperVertical: {
|
|
78787
78707
|
type: vue.PropType<RippleDirectiveBinding["value"]>;
|
78788
78708
|
default: boolean;
|
78789
78709
|
};
|
78790
|
-
collapseIcon: {
|
78710
|
+
collapseIcon: Omit<{
|
78791
78711
|
type: vue.PropType<IconValue>;
|
78792
78712
|
default: string;
|
78713
|
+
}, "type" | "default"> & {
|
78714
|
+
type: vue.PropType<IconValue>;
|
78715
|
+
default: NonNullable<IconValue>;
|
78793
78716
|
};
|
78794
|
-
expandIcon: {
|
78717
|
+
expandIcon: Omit<{
|
78795
78718
|
type: vue.PropType<IconValue>;
|
78796
78719
|
default: string;
|
78720
|
+
}, "type" | "default"> & {
|
78721
|
+
type: vue.PropType<IconValue>;
|
78722
|
+
default: NonNullable<IconValue>;
|
78797
78723
|
};
|
78798
|
-
|
78799
|
-
|
78800
|
-
|
78801
|
-
|
78802
|
-
};
|
78803
|
-
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
78804
|
-
altLabels: BooleanConstructor;
|
78805
|
-
completeIcon: vue.PropType<IconValue>;
|
78806
|
-
editIcon: vue.PropType<IconValue>;
|
78807
|
-
editable: BooleanConstructor;
|
78808
|
-
errorIcon: vue.PropType<IconValue>;
|
78809
|
-
items: {
|
78810
|
-
type: vue.PropType<readonly StepperItem[]>;
|
78811
|
-
default: () => never[];
|
78812
|
-
};
|
78813
|
-
itemTitle: {
|
78814
|
-
type: StringConstructor;
|
78724
|
+
subtitle: StringConstructor;
|
78725
|
+
complete: BooleanConstructor;
|
78726
|
+
completeIcon: {
|
78727
|
+
type: vue.PropType<IconValue>;
|
78815
78728
|
default: string;
|
78816
78729
|
};
|
78817
|
-
|
78818
|
-
|
78730
|
+
editable: BooleanConstructor;
|
78731
|
+
editIcon: {
|
78732
|
+
type: vue.PropType<IconValue>;
|
78819
78733
|
default: string;
|
78820
78734
|
};
|
78821
|
-
|
78822
|
-
|
78823
|
-
type:
|
78735
|
+
error: BooleanConstructor;
|
78736
|
+
errorIcon: {
|
78737
|
+
type: vue.PropType<IconValue>;
|
78824
78738
|
default: string;
|
78825
78739
|
};
|
78826
|
-
|
78827
|
-
|
78828
|
-
|
78740
|
+
icon: vue.PropType<IconValue>;
|
78741
|
+
rules: {
|
78742
|
+
type: vue.PropType<readonly ValidationRule[]>;
|
78743
|
+
default: () => never[];
|
78829
78744
|
};
|
78745
|
+
hideActions: BooleanConstructor;
|
78830
78746
|
}, vue.ExtractPropTypes<{
|
78831
|
-
|
78832
|
-
|
78833
|
-
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
78834
|
-
default: string;
|
78835
|
-
validator: (v: any) => boolean;
|
78836
|
-
}, "type" | "default"> & {
|
78837
|
-
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
78838
|
-
default: NonNullable<"default" | "inset" | "accordion" | "popout">;
|
78839
|
-
};
|
78840
|
-
max: NumberConstructor;
|
78747
|
+
height: (StringConstructor | NumberConstructor)[];
|
78748
|
+
width: (StringConstructor | NumberConstructor)[];
|
78841
78749
|
color: StringConstructor;
|
78750
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
78751
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
78752
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
78753
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
78754
|
+
value: null;
|
78842
78755
|
style: {
|
78843
78756
|
type: vue.PropType<vue.StyleValue>;
|
78844
78757
|
default: null;
|
78845
78758
|
};
|
78759
|
+
title: StringConstructor;
|
78760
|
+
text: StringConstructor;
|
78846
78761
|
eager: BooleanConstructor;
|
78847
78762
|
disabled: BooleanConstructor;
|
78848
|
-
multiple: BooleanConstructor;
|
78849
78763
|
readonly: BooleanConstructor;
|
78850
78764
|
class: vue.PropType<ClassValue>;
|
78851
|
-
theme: StringConstructor;
|
78852
78765
|
tag: {
|
78853
78766
|
type: StringConstructor;
|
78854
78767
|
default: string;
|
78855
78768
|
};
|
78856
|
-
|
78857
|
-
type: vue.PropType<boolean | "force">;
|
78858
|
-
default: NonNullable<boolean | "force">;
|
78859
|
-
};
|
78769
|
+
static: BooleanConstructor;
|
78860
78770
|
elevation: {
|
78861
78771
|
type: (StringConstructor | NumberConstructor)[];
|
78862
78772
|
validator(v: any): boolean;
|
78863
78773
|
};
|
78864
78774
|
focusable: BooleanConstructor;
|
78865
|
-
modelValue: {
|
78866
|
-
type: null;
|
78867
|
-
default: undefined;
|
78868
|
-
};
|
78869
78775
|
rounded: {
|
78870
78776
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
78871
78777
|
default: undefined;
|
@@ -78877,255 +78783,182 @@ declare const VStepperVertical: {
|
|
78877
78783
|
type: vue.PropType<RippleDirectiveBinding["value"]>;
|
78878
78784
|
default: boolean;
|
78879
78785
|
};
|
78880
|
-
collapseIcon: {
|
78786
|
+
collapseIcon: Omit<{
|
78881
78787
|
type: vue.PropType<IconValue>;
|
78882
78788
|
default: string;
|
78789
|
+
}, "type" | "default"> & {
|
78790
|
+
type: vue.PropType<IconValue>;
|
78791
|
+
default: NonNullable<IconValue>;
|
78883
78792
|
};
|
78884
|
-
expandIcon: {
|
78793
|
+
expandIcon: Omit<{
|
78885
78794
|
type: vue.PropType<IconValue>;
|
78886
78795
|
default: string;
|
78796
|
+
}, "type" | "default"> & {
|
78797
|
+
type: vue.PropType<IconValue>;
|
78798
|
+
default: NonNullable<IconValue>;
|
78887
78799
|
};
|
78888
|
-
|
78889
|
-
|
78890
|
-
|
78891
|
-
|
78892
|
-
};
|
78893
|
-
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
78894
|
-
altLabels: BooleanConstructor;
|
78895
|
-
completeIcon: vue.PropType<IconValue>;
|
78896
|
-
editIcon: vue.PropType<IconValue>;
|
78897
|
-
editable: BooleanConstructor;
|
78898
|
-
errorIcon: vue.PropType<IconValue>;
|
78899
|
-
items: {
|
78900
|
-
type: vue.PropType<readonly StepperItem[]>;
|
78901
|
-
default: () => never[];
|
78902
|
-
};
|
78903
|
-
itemTitle: {
|
78904
|
-
type: StringConstructor;
|
78800
|
+
subtitle: StringConstructor;
|
78801
|
+
complete: BooleanConstructor;
|
78802
|
+
completeIcon: {
|
78803
|
+
type: vue.PropType<IconValue>;
|
78905
78804
|
default: string;
|
78906
78805
|
};
|
78907
|
-
|
78908
|
-
|
78806
|
+
editable: BooleanConstructor;
|
78807
|
+
editIcon: {
|
78808
|
+
type: vue.PropType<IconValue>;
|
78909
78809
|
default: string;
|
78910
78810
|
};
|
78911
|
-
|
78912
|
-
|
78913
|
-
type:
|
78811
|
+
error: BooleanConstructor;
|
78812
|
+
errorIcon: {
|
78813
|
+
type: vue.PropType<IconValue>;
|
78914
78814
|
default: string;
|
78915
78815
|
};
|
78916
|
-
|
78917
|
-
|
78918
|
-
|
78816
|
+
icon: vue.PropType<IconValue>;
|
78817
|
+
rules: {
|
78818
|
+
type: vue.PropType<readonly ValidationRule[]>;
|
78819
|
+
default: () => never[];
|
78919
78820
|
};
|
78821
|
+
hideActions: BooleanConstructor;
|
78920
78822
|
}>>;
|
78921
|
-
type
|
78823
|
+
type VStepperVerticalItem = InstanceType<typeof VStepperVerticalItem>;
|
78922
78824
|
|
78923
|
-
|
78825
|
+
type VStepperVerticalSlots<T> = {
|
78826
|
+
actions: StepperVerticalItemActionSlot<T>;
|
78827
|
+
default: VStepperSlot & {
|
78828
|
+
step: T;
|
78829
|
+
};
|
78830
|
+
icon: StepperItemSlot<T>;
|
78831
|
+
title: StepperItemSlot<T>;
|
78832
|
+
subtitle: StepperItemSlot<T>;
|
78833
|
+
prev: StepperVerticalItemActionSlot<T>;
|
78834
|
+
next: StepperVerticalItemActionSlot<T>;
|
78835
|
+
} & {
|
78836
|
+
[key: `header-item.${string}`]: StepperItemSlot<T>;
|
78837
|
+
[key: `item.${string}`]: StepperItemSlot<T>;
|
78838
|
+
};
|
78839
|
+
declare const VStepperVertical: {
|
78924
78840
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
78925
|
-
|
78926
|
-
|
78841
|
+
flat: boolean;
|
78842
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
78927
78843
|
style: vue.StyleValue;
|
78928
78844
|
eager: boolean;
|
78845
|
+
mobile: boolean | null;
|
78929
78846
|
disabled: boolean;
|
78847
|
+
multiple: boolean;
|
78930
78848
|
readonly: boolean;
|
78931
78849
|
tag: string;
|
78932
|
-
|
78850
|
+
mandatory: boolean | "force";
|
78933
78851
|
focusable: boolean;
|
78934
|
-
|
78852
|
+
items: readonly StepperItem[];
|
78935
78853
|
tile: boolean;
|
78936
78854
|
ripple: boolean | {
|
78937
78855
|
class: string;
|
78938
78856
|
} | undefined;
|
78939
78857
|
collapseIcon: IconValue;
|
78940
78858
|
expandIcon: IconValue;
|
78859
|
+
itemTitle: string;
|
78860
|
+
itemValue: string;
|
78941
78861
|
hideActions: boolean;
|
78942
|
-
|
78862
|
+
prevText: string;
|
78863
|
+
nextText: string;
|
78943
78864
|
editable: boolean;
|
78944
|
-
|
78945
|
-
|
78865
|
+
altLabels: boolean;
|
78866
|
+
nonLinear: boolean;
|
78946
78867
|
} & {
|
78947
|
-
|
78948
|
-
width?: string | number | undefined;
|
78868
|
+
max?: number | undefined;
|
78949
78869
|
color?: string | undefined;
|
78950
|
-
maxHeight?: string | number | undefined;
|
78951
|
-
maxWidth?: string | number | undefined;
|
78952
|
-
minHeight?: string | number | undefined;
|
78953
|
-
minWidth?: string | number | undefined;
|
78954
|
-
value?: any;
|
78955
|
-
title?: string | undefined;
|
78956
|
-
text?: string | undefined;
|
78957
78870
|
class?: any;
|
78958
|
-
|
78871
|
+
theme?: string | undefined;
|
78959
78872
|
elevation?: string | number | undefined;
|
78873
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
78960
78874
|
rounded?: string | number | boolean | undefined;
|
78961
78875
|
selectedClass?: string | undefined;
|
78962
78876
|
bgColor?: string | undefined;
|
78963
|
-
|
78964
|
-
|
78965
|
-
|
78966
|
-
|
78967
|
-
|
78968
|
-
|
78969
|
-
|
78970
|
-
|
78971
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78972
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78973
|
-
actions?: ((arg: StepperItemSlot & {
|
78974
|
-
next: () => void;
|
78975
|
-
prev: () => void;
|
78976
|
-
}) => vue.VNodeChild) | undefined;
|
78977
|
-
};
|
78978
|
-
'v-slots'?: {
|
78979
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78980
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78981
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78982
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78983
|
-
text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78984
|
-
prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78985
|
-
next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78986
|
-
actions?: false | ((arg: StepperItemSlot & {
|
78987
|
-
next: () => void;
|
78988
|
-
prev: () => void;
|
78989
|
-
}) => vue.VNodeChild) | undefined;
|
78990
|
-
} | undefined;
|
78991
|
-
} & {
|
78992
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78993
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78994
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78995
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78996
|
-
"v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78997
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78998
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
78999
|
-
"v-slot:actions"?: false | ((arg: StepperItemSlot & {
|
79000
|
-
next: () => void;
|
79001
|
-
prev: () => void;
|
79002
|
-
}) => vue.VNodeChild) | undefined;
|
79003
|
-
} & {
|
79004
|
-
"onClick:prev"?: (() => any) | undefined;
|
79005
|
-
"onClick:next"?: (() => any) | undefined;
|
79006
|
-
"onClick:finish"?: (() => any) | undefined;
|
79007
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
79008
|
-
'click:next': () => true;
|
79009
|
-
'click:prev': () => true;
|
79010
|
-
'click:finish': () => true;
|
79011
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
79012
|
-
error: boolean;
|
79013
|
-
complete: boolean;
|
78877
|
+
completeIcon?: IconValue | undefined;
|
78878
|
+
editIcon?: IconValue | undefined;
|
78879
|
+
errorIcon?: IconValue | undefined;
|
78880
|
+
} & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
78881
|
+
'update:modelValue': (val: any) => true;
|
78882
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:subtitle" | "v-slot:actions" | `v-slot:item.${string}` | "v-slot:icon" | `v-slot:header-item.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
78883
|
+
flat: boolean;
|
78884
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79014
78885
|
style: vue.StyleValue;
|
79015
78886
|
eager: boolean;
|
78887
|
+
mobile: boolean | null;
|
79016
78888
|
disabled: boolean;
|
78889
|
+
multiple: boolean;
|
79017
78890
|
readonly: boolean;
|
79018
78891
|
tag: string;
|
79019
|
-
|
78892
|
+
mandatory: boolean | "force";
|
79020
78893
|
focusable: boolean;
|
79021
|
-
|
78894
|
+
items: readonly StepperItem[];
|
79022
78895
|
tile: boolean;
|
79023
78896
|
ripple: boolean | {
|
79024
78897
|
class: string;
|
79025
78898
|
} | undefined;
|
79026
78899
|
collapseIcon: IconValue;
|
79027
78900
|
expandIcon: IconValue;
|
78901
|
+
itemTitle: string;
|
78902
|
+
itemValue: string;
|
79028
78903
|
hideActions: boolean;
|
79029
|
-
|
78904
|
+
prevText: string;
|
78905
|
+
nextText: string;
|
79030
78906
|
editable: boolean;
|
79031
|
-
|
79032
|
-
|
78907
|
+
altLabels: boolean;
|
78908
|
+
nonLinear: boolean;
|
79033
78909
|
} & {
|
79034
|
-
|
79035
|
-
width?: string | number | undefined;
|
78910
|
+
max?: number | undefined;
|
79036
78911
|
color?: string | undefined;
|
79037
|
-
maxHeight?: string | number | undefined;
|
79038
|
-
maxWidth?: string | number | undefined;
|
79039
|
-
minHeight?: string | number | undefined;
|
79040
|
-
minWidth?: string | number | undefined;
|
79041
|
-
value?: any;
|
79042
|
-
title?: string | undefined;
|
79043
|
-
text?: string | undefined;
|
79044
78912
|
class?: any;
|
79045
|
-
|
78913
|
+
theme?: string | undefined;
|
79046
78914
|
elevation?: string | number | undefined;
|
78915
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
79047
78916
|
rounded?: string | number | boolean | undefined;
|
79048
78917
|
selectedClass?: string | undefined;
|
79049
78918
|
bgColor?: string | undefined;
|
79050
|
-
|
79051
|
-
|
79052
|
-
|
79053
|
-
|
79054
|
-
|
79055
|
-
|
79056
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79057
|
-
text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79058
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79059
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79060
|
-
actions?: ((arg: StepperItemSlot & {
|
79061
|
-
next: () => void;
|
79062
|
-
prev: () => void;
|
79063
|
-
}) => vue.VNodeChild) | undefined;
|
79064
|
-
};
|
79065
|
-
'v-slots'?: {
|
79066
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79067
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79068
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79069
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79070
|
-
text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79071
|
-
prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79072
|
-
next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79073
|
-
actions?: false | ((arg: StepperItemSlot & {
|
79074
|
-
next: () => void;
|
79075
|
-
prev: () => void;
|
79076
|
-
}) => vue.VNodeChild) | undefined;
|
79077
|
-
} | undefined;
|
79078
|
-
} & {
|
79079
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79080
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79081
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79082
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79083
|
-
"v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79084
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79085
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79086
|
-
"v-slot:actions"?: false | ((arg: StepperItemSlot & {
|
79087
|
-
next: () => void;
|
79088
|
-
prev: () => void;
|
79089
|
-
}) => vue.VNodeChild) | undefined;
|
79090
|
-
} & {
|
79091
|
-
"onClick:prev"?: (() => any) | undefined;
|
79092
|
-
"onClick:next"?: (() => any) | undefined;
|
79093
|
-
"onClick:finish"?: (() => any) | undefined;
|
79094
|
-
}, {
|
79095
|
-
error: boolean;
|
79096
|
-
complete: boolean;
|
78919
|
+
completeIcon?: IconValue | undefined;
|
78920
|
+
editIcon?: IconValue | undefined;
|
78921
|
+
errorIcon?: IconValue | undefined;
|
78922
|
+
} & {}, {
|
78923
|
+
flat: boolean;
|
78924
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79097
78925
|
style: vue.StyleValue;
|
79098
78926
|
eager: boolean;
|
78927
|
+
mobile: boolean | null;
|
79099
78928
|
disabled: boolean;
|
78929
|
+
multiple: boolean;
|
79100
78930
|
readonly: boolean;
|
79101
78931
|
tag: string;
|
79102
|
-
|
78932
|
+
mandatory: boolean | "force";
|
79103
78933
|
focusable: boolean;
|
79104
|
-
rules: readonly ValidationRule[];
|
79105
78934
|
rounded: string | number | boolean;
|
78935
|
+
items: readonly StepperItem[];
|
79106
78936
|
tile: boolean;
|
79107
78937
|
ripple: boolean | {
|
79108
78938
|
class: string;
|
79109
78939
|
} | undefined;
|
79110
78940
|
collapseIcon: IconValue;
|
79111
78941
|
expandIcon: IconValue;
|
78942
|
+
itemTitle: string;
|
78943
|
+
itemValue: string;
|
79112
78944
|
hideActions: boolean;
|
79113
|
-
|
78945
|
+
prevText: string;
|
78946
|
+
nextText: string;
|
79114
78947
|
editable: boolean;
|
79115
|
-
|
79116
|
-
|
78948
|
+
altLabels: boolean;
|
78949
|
+
nonLinear: boolean;
|
79117
78950
|
}, true, {}, vue.SlotsType<Partial<{
|
79118
|
-
|
79119
|
-
|
79120
|
-
|
79121
|
-
|
79122
|
-
|
79123
|
-
prev: (arg: StepperItemSlot) => vue.VNode[];
|
79124
|
-
next: (arg: StepperItemSlot) => vue.VNode[];
|
79125
|
-
actions: (arg: StepperItemSlot & {
|
79126
|
-
next: () => void;
|
79127
|
-
prev: () => void;
|
78951
|
+
[x: `header-item.${string}`]: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
78952
|
+
[x: `item.${string}`]: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
78953
|
+
actions: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
78954
|
+
default: (arg: VStepperSlot & {
|
78955
|
+
step: unknown;
|
79128
78956
|
}) => vue.VNode[];
|
78957
|
+
icon: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
78958
|
+
title: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
78959
|
+
subtitle: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
78960
|
+
prev: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
78961
|
+
next: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
79129
78962
|
}>>, {
|
79130
78963
|
P: {};
|
79131
78964
|
B: {};
|
@@ -79134,266 +78967,201 @@ declare const VStepperVerticalItem: {
|
|
79134
78967
|
M: {};
|
79135
78968
|
Defaults: {};
|
79136
78969
|
}, {
|
79137
|
-
|
79138
|
-
|
78970
|
+
flat: boolean;
|
78971
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79139
78972
|
style: vue.StyleValue;
|
79140
78973
|
eager: boolean;
|
78974
|
+
mobile: boolean | null;
|
79141
78975
|
disabled: boolean;
|
78976
|
+
multiple: boolean;
|
79142
78977
|
readonly: boolean;
|
79143
78978
|
tag: string;
|
79144
|
-
|
78979
|
+
mandatory: boolean | "force";
|
79145
78980
|
focusable: boolean;
|
79146
|
-
|
78981
|
+
items: readonly StepperItem[];
|
79147
78982
|
tile: boolean;
|
79148
78983
|
ripple: boolean | {
|
79149
78984
|
class: string;
|
79150
78985
|
} | undefined;
|
79151
78986
|
collapseIcon: IconValue;
|
79152
78987
|
expandIcon: IconValue;
|
78988
|
+
itemTitle: string;
|
78989
|
+
itemValue: string;
|
79153
78990
|
hideActions: boolean;
|
79154
|
-
|
78991
|
+
prevText: string;
|
78992
|
+
nextText: string;
|
79155
78993
|
editable: boolean;
|
79156
|
-
|
79157
|
-
|
78994
|
+
altLabels: boolean;
|
78995
|
+
nonLinear: boolean;
|
79158
78996
|
} & {
|
79159
|
-
|
79160
|
-
width?: string | number | undefined;
|
78997
|
+
max?: number | undefined;
|
79161
78998
|
color?: string | undefined;
|
79162
|
-
maxHeight?: string | number | undefined;
|
79163
|
-
maxWidth?: string | number | undefined;
|
79164
|
-
minHeight?: string | number | undefined;
|
79165
|
-
minWidth?: string | number | undefined;
|
79166
|
-
value?: any;
|
79167
|
-
title?: string | undefined;
|
79168
|
-
text?: string | undefined;
|
79169
78999
|
class?: any;
|
79170
|
-
|
79000
|
+
theme?: string | undefined;
|
79171
79001
|
elevation?: string | number | undefined;
|
79002
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
79172
79003
|
rounded?: string | number | boolean | undefined;
|
79173
79004
|
selectedClass?: string | undefined;
|
79174
79005
|
bgColor?: string | undefined;
|
79175
|
-
|
79176
|
-
|
79177
|
-
|
79178
|
-
|
79179
|
-
|
79180
|
-
|
79181
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79182
|
-
text?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79183
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79184
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79185
|
-
actions?: ((arg: StepperItemSlot & {
|
79186
|
-
next: () => void;
|
79187
|
-
prev: () => void;
|
79188
|
-
}) => vue.VNodeChild) | undefined;
|
79189
|
-
};
|
79190
|
-
'v-slots'?: {
|
79191
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79192
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79193
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79194
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79195
|
-
text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79196
|
-
prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79197
|
-
next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79198
|
-
actions?: false | ((arg: StepperItemSlot & {
|
79199
|
-
next: () => void;
|
79200
|
-
prev: () => void;
|
79201
|
-
}) => vue.VNodeChild) | undefined;
|
79202
|
-
} | undefined;
|
79203
|
-
} & {
|
79204
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79205
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79206
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79207
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79208
|
-
"v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79209
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79210
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79211
|
-
"v-slot:actions"?: false | ((arg: StepperItemSlot & {
|
79212
|
-
next: () => void;
|
79213
|
-
prev: () => void;
|
79214
|
-
}) => vue.VNodeChild) | undefined;
|
79215
|
-
} & {
|
79216
|
-
"onClick:prev"?: (() => any) | undefined;
|
79217
|
-
"onClick:next"?: (() => any) | undefined;
|
79218
|
-
"onClick:finish"?: (() => any) | undefined;
|
79219
|
-
}, {}, {}, {}, {}, {
|
79220
|
-
error: boolean;
|
79221
|
-
complete: boolean;
|
79006
|
+
completeIcon?: IconValue | undefined;
|
79007
|
+
editIcon?: IconValue | undefined;
|
79008
|
+
errorIcon?: IconValue | undefined;
|
79009
|
+
} & {}, {}, {}, {}, {}, {
|
79010
|
+
flat: boolean;
|
79011
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79222
79012
|
style: vue.StyleValue;
|
79223
79013
|
eager: boolean;
|
79014
|
+
mobile: boolean | null;
|
79224
79015
|
disabled: boolean;
|
79016
|
+
multiple: boolean;
|
79225
79017
|
readonly: boolean;
|
79226
79018
|
tag: string;
|
79227
|
-
|
79019
|
+
mandatory: boolean | "force";
|
79228
79020
|
focusable: boolean;
|
79229
|
-
rules: readonly ValidationRule[];
|
79230
79021
|
rounded: string | number | boolean;
|
79022
|
+
items: readonly StepperItem[];
|
79231
79023
|
tile: boolean;
|
79232
79024
|
ripple: boolean | {
|
79233
79025
|
class: string;
|
79234
79026
|
} | undefined;
|
79235
79027
|
collapseIcon: IconValue;
|
79236
79028
|
expandIcon: IconValue;
|
79029
|
+
itemTitle: string;
|
79030
|
+
itemValue: string;
|
79237
79031
|
hideActions: boolean;
|
79238
|
-
|
79032
|
+
prevText: string;
|
79033
|
+
nextText: string;
|
79239
79034
|
editable: boolean;
|
79240
|
-
|
79241
|
-
|
79035
|
+
altLabels: boolean;
|
79036
|
+
nonLinear: boolean;
|
79242
79037
|
}>;
|
79243
79038
|
__isFragment?: never;
|
79244
79039
|
__isTeleport?: never;
|
79245
79040
|
__isSuspense?: never;
|
79246
79041
|
} & vue.ComponentOptionsBase<{
|
79247
|
-
|
79248
|
-
|
79042
|
+
flat: boolean;
|
79043
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79249
79044
|
style: vue.StyleValue;
|
79250
79045
|
eager: boolean;
|
79046
|
+
mobile: boolean | null;
|
79251
79047
|
disabled: boolean;
|
79048
|
+
multiple: boolean;
|
79252
79049
|
readonly: boolean;
|
79253
79050
|
tag: string;
|
79254
|
-
|
79051
|
+
mandatory: boolean | "force";
|
79255
79052
|
focusable: boolean;
|
79256
|
-
|
79053
|
+
items: readonly StepperItem[];
|
79257
79054
|
tile: boolean;
|
79258
79055
|
ripple: boolean | {
|
79259
79056
|
class: string;
|
79260
79057
|
} | undefined;
|
79261
79058
|
collapseIcon: IconValue;
|
79262
79059
|
expandIcon: IconValue;
|
79060
|
+
itemTitle: string;
|
79061
|
+
itemValue: string;
|
79263
79062
|
hideActions: boolean;
|
79264
|
-
|
79063
|
+
prevText: string;
|
79064
|
+
nextText: string;
|
79265
79065
|
editable: boolean;
|
79266
|
-
|
79267
|
-
|
79066
|
+
altLabels: boolean;
|
79067
|
+
nonLinear: boolean;
|
79268
79068
|
} & {
|
79269
|
-
|
79270
|
-
width?: string | number | undefined;
|
79069
|
+
max?: number | undefined;
|
79271
79070
|
color?: string | undefined;
|
79272
|
-
maxHeight?: string | number | undefined;
|
79273
|
-
maxWidth?: string | number | undefined;
|
79274
|
-
minHeight?: string | number | undefined;
|
79275
|
-
minWidth?: string | number | undefined;
|
79276
|
-
value?: any;
|
79277
|
-
title?: string | undefined;
|
79278
|
-
text?: string | undefined;
|
79279
79071
|
class?: any;
|
79280
|
-
|
79072
|
+
theme?: string | undefined;
|
79281
79073
|
elevation?: string | number | undefined;
|
79074
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
79282
79075
|
rounded?: string | number | boolean | undefined;
|
79283
79076
|
selectedClass?: string | undefined;
|
79284
79077
|
bgColor?: string | undefined;
|
79285
|
-
|
79286
|
-
|
79287
|
-
|
79288
|
-
|
79289
|
-
|
79290
|
-
|
79291
|
-
|
79292
|
-
|
79293
|
-
prev?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79294
|
-
next?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79295
|
-
actions?: ((arg: StepperItemSlot & {
|
79296
|
-
next: () => void;
|
79297
|
-
prev: () => void;
|
79298
|
-
}) => vue.VNodeChild) | undefined;
|
79299
|
-
};
|
79300
|
-
'v-slots'?: {
|
79301
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79302
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79303
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79304
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79305
|
-
text?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79306
|
-
prev?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79307
|
-
next?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79308
|
-
actions?: false | ((arg: StepperItemSlot & {
|
79309
|
-
next: () => void;
|
79310
|
-
prev: () => void;
|
79311
|
-
}) => vue.VNodeChild) | undefined;
|
79312
|
-
} | undefined;
|
79313
|
-
} & {
|
79314
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79315
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79316
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79317
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79318
|
-
"v-slot:text"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79319
|
-
"v-slot:prev"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79320
|
-
"v-slot:next"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
79321
|
-
"v-slot:actions"?: false | ((arg: StepperItemSlot & {
|
79322
|
-
next: () => void;
|
79323
|
-
prev: () => void;
|
79324
|
-
}) => vue.VNodeChild) | undefined;
|
79325
|
-
} & {
|
79326
|
-
"onClick:prev"?: (() => any) | undefined;
|
79327
|
-
"onClick:next"?: (() => any) | undefined;
|
79328
|
-
"onClick:finish"?: (() => any) | undefined;
|
79329
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
79330
|
-
'click:next': () => true;
|
79331
|
-
'click:prev': () => true;
|
79332
|
-
'click:finish': () => true;
|
79333
|
-
}, string, {
|
79334
|
-
error: boolean;
|
79335
|
-
complete: boolean;
|
79078
|
+
completeIcon?: IconValue | undefined;
|
79079
|
+
editIcon?: IconValue | undefined;
|
79080
|
+
errorIcon?: IconValue | undefined;
|
79081
|
+
} & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
79082
|
+
'update:modelValue': (val: any) => true;
|
79083
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:subtitle" | "v-slot:actions" | `v-slot:item.${string}` | "v-slot:icon" | `v-slot:header-item.${string}`>, string, {
|
79084
|
+
flat: boolean;
|
79085
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
79336
79086
|
style: vue.StyleValue;
|
79337
79087
|
eager: boolean;
|
79088
|
+
mobile: boolean | null;
|
79338
79089
|
disabled: boolean;
|
79090
|
+
multiple: boolean;
|
79339
79091
|
readonly: boolean;
|
79340
79092
|
tag: string;
|
79341
|
-
|
79093
|
+
mandatory: boolean | "force";
|
79342
79094
|
focusable: boolean;
|
79343
|
-
rules: readonly ValidationRule[];
|
79344
79095
|
rounded: string | number | boolean;
|
79096
|
+
items: readonly StepperItem[];
|
79345
79097
|
tile: boolean;
|
79346
79098
|
ripple: boolean | {
|
79347
79099
|
class: string;
|
79348
79100
|
} | undefined;
|
79349
79101
|
collapseIcon: IconValue;
|
79350
79102
|
expandIcon: IconValue;
|
79103
|
+
itemTitle: string;
|
79104
|
+
itemValue: string;
|
79351
79105
|
hideActions: boolean;
|
79352
|
-
|
79106
|
+
prevText: string;
|
79107
|
+
nextText: string;
|
79353
79108
|
editable: boolean;
|
79354
|
-
|
79355
|
-
|
79109
|
+
altLabels: boolean;
|
79110
|
+
nonLinear: boolean;
|
79356
79111
|
}, {}, string, vue.SlotsType<Partial<{
|
79357
|
-
|
79358
|
-
|
79359
|
-
|
79360
|
-
|
79361
|
-
|
79362
|
-
prev: (arg: StepperItemSlot) => vue.VNode[];
|
79363
|
-
next: (arg: StepperItemSlot) => vue.VNode[];
|
79364
|
-
actions: (arg: StepperItemSlot & {
|
79365
|
-
next: () => void;
|
79366
|
-
prev: () => void;
|
79112
|
+
[x: `header-item.${string}`]: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
79113
|
+
[x: `item.${string}`]: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
79114
|
+
actions: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
79115
|
+
default: (arg: VStepperSlot & {
|
79116
|
+
step: unknown;
|
79367
79117
|
}) => vue.VNode[];
|
79368
|
-
|
79369
|
-
|
79370
|
-
|
79118
|
+
icon: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
79119
|
+
title: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
79120
|
+
subtitle: (arg: StepperItemSlot<unknown>) => vue.VNode[];
|
79121
|
+
prev: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
79122
|
+
next: (arg: StepperVerticalItemActionSlot<unknown>) => vue.VNode[];
|
79123
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = number>(props: {
|
79124
|
+
modelValue?: T;
|
79125
|
+
"onUpdate:modelValue"?: (value: T) => void;
|
79126
|
+
}, slots: VStepperVerticalSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
79127
|
+
flat: BooleanConstructor;
|
79128
|
+
variant: Omit<{
|
79129
|
+
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
79130
|
+
default: string;
|
79131
|
+
validator: (v: any) => boolean;
|
79132
|
+
}, "type" | "default"> & {
|
79133
|
+
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
79134
|
+
default: NonNullable<"default" | "inset" | "accordion" | "popout">;
|
79135
|
+
};
|
79136
|
+
max: NumberConstructor;
|
79371
79137
|
color: StringConstructor;
|
79372
|
-
maxHeight: (StringConstructor | NumberConstructor)[];
|
79373
|
-
maxWidth: (StringConstructor | NumberConstructor)[];
|
79374
|
-
minHeight: (StringConstructor | NumberConstructor)[];
|
79375
|
-
minWidth: (StringConstructor | NumberConstructor)[];
|
79376
|
-
value: null;
|
79377
79138
|
style: {
|
79378
79139
|
type: vue.PropType<vue.StyleValue>;
|
79379
79140
|
default: null;
|
79380
79141
|
};
|
79381
|
-
title: StringConstructor;
|
79382
|
-
text: StringConstructor;
|
79383
79142
|
eager: BooleanConstructor;
|
79384
79143
|
disabled: BooleanConstructor;
|
79144
|
+
multiple: BooleanConstructor;
|
79385
79145
|
readonly: BooleanConstructor;
|
79386
79146
|
class: vue.PropType<ClassValue>;
|
79147
|
+
theme: StringConstructor;
|
79387
79148
|
tag: {
|
79388
79149
|
type: StringConstructor;
|
79389
79150
|
default: string;
|
79390
79151
|
};
|
79391
|
-
|
79152
|
+
mandatory: {
|
79153
|
+
type: vue.PropType<boolean | "force">;
|
79154
|
+
default: NonNullable<boolean | "force">;
|
79155
|
+
};
|
79392
79156
|
elevation: {
|
79393
79157
|
type: (StringConstructor | NumberConstructor)[];
|
79394
79158
|
validator(v: any): boolean;
|
79395
79159
|
};
|
79396
79160
|
focusable: BooleanConstructor;
|
79161
|
+
modelValue: {
|
79162
|
+
type: null;
|
79163
|
+
default: undefined;
|
79164
|
+
};
|
79397
79165
|
rounded: {
|
79398
79166
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
79399
79167
|
default: undefined;
|
@@ -79405,71 +79173,85 @@ declare const VStepperVerticalItem: {
|
|
79405
79173
|
type: vue.PropType<RippleDirectiveBinding["value"]>;
|
79406
79174
|
default: boolean;
|
79407
79175
|
};
|
79408
|
-
collapseIcon:
|
79176
|
+
collapseIcon: {
|
79409
79177
|
type: vue.PropType<IconValue>;
|
79410
79178
|
default: string;
|
79411
|
-
}, "type" | "default"> & {
|
79412
|
-
type: vue.PropType<IconValue>;
|
79413
|
-
default: NonNullable<IconValue>;
|
79414
79179
|
};
|
79415
|
-
expandIcon:
|
79180
|
+
expandIcon: {
|
79416
79181
|
type: vue.PropType<IconValue>;
|
79417
79182
|
default: string;
|
79418
|
-
}, "type" | "default"> & {
|
79419
|
-
type: vue.PropType<IconValue>;
|
79420
|
-
default: NonNullable<IconValue>;
|
79421
79183
|
};
|
79422
|
-
|
79423
|
-
|
79424
|
-
|
79425
|
-
|
79426
|
-
default: string;
|
79184
|
+
hideActions: BooleanConstructor;
|
79185
|
+
mobile: {
|
79186
|
+
type: vue.PropType<boolean | null>;
|
79187
|
+
default: boolean;
|
79427
79188
|
};
|
79189
|
+
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
79190
|
+
altLabels: BooleanConstructor;
|
79191
|
+
completeIcon: vue.PropType<IconValue>;
|
79192
|
+
editIcon: vue.PropType<IconValue>;
|
79428
79193
|
editable: BooleanConstructor;
|
79429
|
-
|
79430
|
-
|
79194
|
+
errorIcon: vue.PropType<IconValue>;
|
79195
|
+
items: {
|
79196
|
+
type: vue.PropType<readonly StepperItem[]>;
|
79197
|
+
default: () => never[];
|
79198
|
+
};
|
79199
|
+
itemTitle: {
|
79200
|
+
type: StringConstructor;
|
79431
79201
|
default: string;
|
79432
79202
|
};
|
79433
|
-
|
79434
|
-
|
79435
|
-
type: vue.PropType<IconValue>;
|
79203
|
+
itemValue: {
|
79204
|
+
type: StringConstructor;
|
79436
79205
|
default: string;
|
79437
79206
|
};
|
79438
|
-
|
79439
|
-
|
79440
|
-
type:
|
79441
|
-
default:
|
79207
|
+
nonLinear: BooleanConstructor;
|
79208
|
+
prevText: {
|
79209
|
+
type: StringConstructor;
|
79210
|
+
default: string;
|
79211
|
+
};
|
79212
|
+
nextText: {
|
79213
|
+
type: StringConstructor;
|
79214
|
+
default: string;
|
79442
79215
|
};
|
79443
|
-
hideActions: BooleanConstructor;
|
79444
79216
|
}, vue.ExtractPropTypes<{
|
79445
|
-
|
79446
|
-
|
79217
|
+
flat: BooleanConstructor;
|
79218
|
+
variant: Omit<{
|
79219
|
+
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
79220
|
+
default: string;
|
79221
|
+
validator: (v: any) => boolean;
|
79222
|
+
}, "type" | "default"> & {
|
79223
|
+
type: vue.PropType<"default" | "inset" | "accordion" | "popout">;
|
79224
|
+
default: NonNullable<"default" | "inset" | "accordion" | "popout">;
|
79225
|
+
};
|
79226
|
+
max: NumberConstructor;
|
79447
79227
|
color: StringConstructor;
|
79448
|
-
maxHeight: (StringConstructor | NumberConstructor)[];
|
79449
|
-
maxWidth: (StringConstructor | NumberConstructor)[];
|
79450
|
-
minHeight: (StringConstructor | NumberConstructor)[];
|
79451
|
-
minWidth: (StringConstructor | NumberConstructor)[];
|
79452
|
-
value: null;
|
79453
79228
|
style: {
|
79454
79229
|
type: vue.PropType<vue.StyleValue>;
|
79455
79230
|
default: null;
|
79456
79231
|
};
|
79457
|
-
title: StringConstructor;
|
79458
|
-
text: StringConstructor;
|
79459
79232
|
eager: BooleanConstructor;
|
79460
79233
|
disabled: BooleanConstructor;
|
79234
|
+
multiple: BooleanConstructor;
|
79461
79235
|
readonly: BooleanConstructor;
|
79462
79236
|
class: vue.PropType<ClassValue>;
|
79237
|
+
theme: StringConstructor;
|
79463
79238
|
tag: {
|
79464
79239
|
type: StringConstructor;
|
79465
79240
|
default: string;
|
79466
79241
|
};
|
79467
|
-
|
79242
|
+
mandatory: {
|
79243
|
+
type: vue.PropType<boolean | "force">;
|
79244
|
+
default: NonNullable<boolean | "force">;
|
79245
|
+
};
|
79468
79246
|
elevation: {
|
79469
79247
|
type: (StringConstructor | NumberConstructor)[];
|
79470
79248
|
validator(v: any): boolean;
|
79471
79249
|
};
|
79472
79250
|
focusable: BooleanConstructor;
|
79251
|
+
modelValue: {
|
79252
|
+
type: null;
|
79253
|
+
default: undefined;
|
79254
|
+
};
|
79473
79255
|
rounded: {
|
79474
79256
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
79475
79257
|
default: undefined;
|
@@ -79481,44 +79263,48 @@ declare const VStepperVerticalItem: {
|
|
79481
79263
|
type: vue.PropType<RippleDirectiveBinding["value"]>;
|
79482
79264
|
default: boolean;
|
79483
79265
|
};
|
79484
|
-
collapseIcon:
|
79266
|
+
collapseIcon: {
|
79485
79267
|
type: vue.PropType<IconValue>;
|
79486
79268
|
default: string;
|
79487
|
-
}, "type" | "default"> & {
|
79488
|
-
type: vue.PropType<IconValue>;
|
79489
|
-
default: NonNullable<IconValue>;
|
79490
79269
|
};
|
79491
|
-
expandIcon:
|
79270
|
+
expandIcon: {
|
79492
79271
|
type: vue.PropType<IconValue>;
|
79493
79272
|
default: string;
|
79494
|
-
}, "type" | "default"> & {
|
79495
|
-
type: vue.PropType<IconValue>;
|
79496
|
-
default: NonNullable<IconValue>;
|
79497
79273
|
};
|
79498
|
-
|
79499
|
-
|
79500
|
-
|
79501
|
-
|
79502
|
-
default: string;
|
79274
|
+
hideActions: BooleanConstructor;
|
79275
|
+
mobile: {
|
79276
|
+
type: vue.PropType<boolean | null>;
|
79277
|
+
default: boolean;
|
79503
79278
|
};
|
79279
|
+
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
79280
|
+
altLabels: BooleanConstructor;
|
79281
|
+
completeIcon: vue.PropType<IconValue>;
|
79282
|
+
editIcon: vue.PropType<IconValue>;
|
79504
79283
|
editable: BooleanConstructor;
|
79505
|
-
|
79506
|
-
|
79284
|
+
errorIcon: vue.PropType<IconValue>;
|
79285
|
+
items: {
|
79286
|
+
type: vue.PropType<readonly StepperItem[]>;
|
79287
|
+
default: () => never[];
|
79288
|
+
};
|
79289
|
+
itemTitle: {
|
79290
|
+
type: StringConstructor;
|
79507
79291
|
default: string;
|
79508
79292
|
};
|
79509
|
-
|
79510
|
-
|
79511
|
-
type: vue.PropType<IconValue>;
|
79293
|
+
itemValue: {
|
79294
|
+
type: StringConstructor;
|
79512
79295
|
default: string;
|
79513
79296
|
};
|
79514
|
-
|
79515
|
-
|
79516
|
-
type:
|
79517
|
-
default:
|
79297
|
+
nonLinear: BooleanConstructor;
|
79298
|
+
prevText: {
|
79299
|
+
type: StringConstructor;
|
79300
|
+
default: string;
|
79301
|
+
};
|
79302
|
+
nextText: {
|
79303
|
+
type: StringConstructor;
|
79304
|
+
default: string;
|
79518
79305
|
};
|
79519
|
-
hideActions: BooleanConstructor;
|
79520
79306
|
}>>;
|
79521
|
-
type
|
79307
|
+
type VStepperVertical = InstanceType<typeof VStepperVertical>;
|
79522
79308
|
|
79523
79309
|
declare const VStepperVerticalActions: {
|
79524
79310
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|