vuetify 3.7.4 → 3.7.5
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/dist/json/attributes.json +3167 -3167
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +170 -170
- package/dist/json/web-types.json +5888 -5888
- package/dist/vuetify-labs.css +2928 -2924
- package/dist/vuetify-labs.d.ts +202 -206
- package/dist/vuetify-labs.esm.js +68 -59
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +68 -59
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1562 -1558
- package/dist/vuetify.d.ts +191 -195
- package/dist/vuetify.esm.js +57 -49
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +57 -49
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +34 -34
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +28 -28
- package/lib/components/VBadge/VBadge.css +4 -0
- package/lib/components/VBadge/VBadge.sass +4 -0
- package/lib/components/VChip/VChip.mjs +3 -2
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.mts +9 -9
- package/lib/components/VCombobox/VCombobox.mjs +4 -4
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +28 -28
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +9 -7
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +3 -7
- package/lib/components/VDatePicker/VDatePickerHeader.mjs +2 -1
- package/lib/components/VDatePicker/VDatePickerHeader.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +6 -6
- package/lib/components/VField/VField.mjs +2 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +3 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +3 -2
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VSelect/VSelect.mjs +3 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +28 -28
- package/lib/components/VStepper/VStepper.mjs +5 -4
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs +5 -4
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +58 -52
- package/lib/components/index.d.mts +129 -133
- package/lib/composables/form.mjs +7 -2
- package/lib/composables/form.mjs.map +1 -1
- package/lib/composables/validation.mjs +10 -12
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +62 -62
- package/lib/labs/VDateInput/VDateInput.mjs +1 -1
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs +7 -5
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +51 -51
- package/lib/labs/VTreeview/VTreeviewItem.mjs +3 -4
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +22 -22
- package/lib/labs/components.d.mts +73 -73
- package/lib/locale/fr.mjs +1 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -4822,8 +4822,8 @@ declare const VList: {
|
|
|
4822
4822
|
activeColor?: string | undefined;
|
|
4823
4823
|
activeClass?: string | undefined;
|
|
4824
4824
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4825
|
-
collapseIcon?:
|
|
4826
|
-
expandIcon?:
|
|
4825
|
+
collapseIcon?: IconValue | undefined;
|
|
4826
|
+
expandIcon?: IconValue | undefined;
|
|
4827
4827
|
} & {
|
|
4828
4828
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
4829
4829
|
"onClick:activate"?: ((value: {
|
|
@@ -4894,8 +4894,8 @@ declare const VList: {
|
|
|
4894
4894
|
activeColor?: string | undefined;
|
|
4895
4895
|
activeClass?: string | undefined;
|
|
4896
4896
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4897
|
-
collapseIcon?:
|
|
4898
|
-
expandIcon?:
|
|
4897
|
+
collapseIcon?: IconValue | undefined;
|
|
4898
|
+
expandIcon?: IconValue | undefined;
|
|
4899
4899
|
} & {
|
|
4900
4900
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
4901
4901
|
"onClick:activate"?: ((value: {
|
|
@@ -4992,8 +4992,8 @@ declare const VList: {
|
|
|
4992
4992
|
activeColor?: string | undefined;
|
|
4993
4993
|
activeClass?: string | undefined;
|
|
4994
4994
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4995
|
-
collapseIcon?:
|
|
4996
|
-
expandIcon?:
|
|
4995
|
+
collapseIcon?: IconValue | undefined;
|
|
4996
|
+
expandIcon?: IconValue | undefined;
|
|
4997
4997
|
} & {
|
|
4998
4998
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
4999
4999
|
"onClick:activate"?: ((value: {
|
|
@@ -5068,8 +5068,8 @@ declare const VList: {
|
|
|
5068
5068
|
activeColor?: string | undefined;
|
|
5069
5069
|
activeClass?: string | undefined;
|
|
5070
5070
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
5071
|
-
collapseIcon?:
|
|
5072
|
-
expandIcon?:
|
|
5071
|
+
collapseIcon?: IconValue | undefined;
|
|
5072
|
+
expandIcon?: IconValue | undefined;
|
|
5073
5073
|
} & {
|
|
5074
5074
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
5075
5075
|
"onClick:activate"?: ((value: {
|
|
@@ -5258,8 +5258,8 @@ declare const VList: {
|
|
|
5258
5258
|
activeClass: StringConstructor;
|
|
5259
5259
|
bgColor: StringConstructor;
|
|
5260
5260
|
disabled: BooleanConstructor;
|
|
5261
|
-
expandIcon:
|
|
5262
|
-
collapseIcon:
|
|
5261
|
+
expandIcon: PropType<IconValue>;
|
|
5262
|
+
collapseIcon: PropType<IconValue>;
|
|
5263
5263
|
lines: {
|
|
5264
5264
|
type: PropType<"one" | "two" | "three" | false>;
|
|
5265
5265
|
default: string;
|
|
@@ -5367,8 +5367,8 @@ declare const VList: {
|
|
|
5367
5367
|
activeClass: StringConstructor;
|
|
5368
5368
|
bgColor: StringConstructor;
|
|
5369
5369
|
disabled: BooleanConstructor;
|
|
5370
|
-
expandIcon:
|
|
5371
|
-
collapseIcon:
|
|
5370
|
+
expandIcon: PropType<IconValue>;
|
|
5371
|
+
collapseIcon: PropType<IconValue>;
|
|
5372
5372
|
lines: {
|
|
5373
5373
|
type: PropType<"one" | "two" | "three" | false>;
|
|
5374
5374
|
default: string;
|
|
@@ -8595,8 +8595,8 @@ declare const VAutocomplete: {
|
|
|
8595
8595
|
activeColor?: string | undefined;
|
|
8596
8596
|
activeClass?: string | undefined;
|
|
8597
8597
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
8598
|
-
collapseIcon?:
|
|
8599
|
-
expandIcon?:
|
|
8598
|
+
collapseIcon?: IconValue | undefined;
|
|
8599
|
+
expandIcon?: IconValue | undefined;
|
|
8600
8600
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
8601
8601
|
"onClick:activate"?: ((value: {
|
|
8602
8602
|
id: unknown;
|
|
@@ -8640,8 +8640,8 @@ declare const VAutocomplete: {
|
|
|
8640
8640
|
activeColor?: string | undefined;
|
|
8641
8641
|
activeClass?: string | undefined;
|
|
8642
8642
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
8643
|
-
collapseIcon?:
|
|
8644
|
-
expandIcon?:
|
|
8643
|
+
collapseIcon?: IconValue | undefined;
|
|
8644
|
+
expandIcon?: IconValue | undefined;
|
|
8645
8645
|
} & {
|
|
8646
8646
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
8647
8647
|
"onClick:activate"?: ((value: {
|
|
@@ -9090,8 +9090,8 @@ declare const VAutocomplete: {
|
|
|
9090
9090
|
activeColor?: string | undefined;
|
|
9091
9091
|
activeClass?: string | undefined;
|
|
9092
9092
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9093
|
-
collapseIcon?:
|
|
9094
|
-
expandIcon?:
|
|
9093
|
+
collapseIcon?: IconValue | undefined;
|
|
9094
|
+
expandIcon?: IconValue | undefined;
|
|
9095
9095
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
9096
9096
|
"onClick:activate"?: ((value: {
|
|
9097
9097
|
id: unknown;
|
|
@@ -9135,8 +9135,8 @@ declare const VAutocomplete: {
|
|
|
9135
9135
|
activeColor?: string | undefined;
|
|
9136
9136
|
activeClass?: string | undefined;
|
|
9137
9137
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9138
|
-
collapseIcon?:
|
|
9139
|
-
expandIcon?:
|
|
9138
|
+
collapseIcon?: IconValue | undefined;
|
|
9139
|
+
expandIcon?: IconValue | undefined;
|
|
9140
9140
|
} & {
|
|
9141
9141
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
9142
9142
|
"onClick:activate"?: ((value: {
|
|
@@ -9669,8 +9669,8 @@ declare const VAutocomplete: {
|
|
|
9669
9669
|
activeColor?: string | undefined;
|
|
9670
9670
|
activeClass?: string | undefined;
|
|
9671
9671
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9672
|
-
collapseIcon?:
|
|
9673
|
-
expandIcon?:
|
|
9672
|
+
collapseIcon?: IconValue | undefined;
|
|
9673
|
+
expandIcon?: IconValue | undefined;
|
|
9674
9674
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
9675
9675
|
"onClick:activate"?: ((value: {
|
|
9676
9676
|
id: unknown;
|
|
@@ -9714,8 +9714,8 @@ declare const VAutocomplete: {
|
|
|
9714
9714
|
activeColor?: string | undefined;
|
|
9715
9715
|
activeClass?: string | undefined;
|
|
9716
9716
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9717
|
-
collapseIcon?:
|
|
9718
|
-
expandIcon?:
|
|
9717
|
+
collapseIcon?: IconValue | undefined;
|
|
9718
|
+
expandIcon?: IconValue | undefined;
|
|
9719
9719
|
} & {
|
|
9720
9720
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
9721
9721
|
"onClick:activate"?: ((value: {
|
|
@@ -10213,8 +10213,8 @@ declare const VAutocomplete: {
|
|
|
10213
10213
|
activeColor?: string | undefined;
|
|
10214
10214
|
activeClass?: string | undefined;
|
|
10215
10215
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
10216
|
-
collapseIcon?:
|
|
10217
|
-
expandIcon?:
|
|
10216
|
+
collapseIcon?: IconValue | undefined;
|
|
10217
|
+
expandIcon?: IconValue | undefined;
|
|
10218
10218
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
10219
10219
|
"onClick:activate"?: ((value: {
|
|
10220
10220
|
id: unknown;
|
|
@@ -10258,8 +10258,8 @@ declare const VAutocomplete: {
|
|
|
10258
10258
|
activeColor?: string | undefined;
|
|
10259
10259
|
activeClass?: string | undefined;
|
|
10260
10260
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
10261
|
-
collapseIcon?:
|
|
10262
|
-
expandIcon?:
|
|
10261
|
+
collapseIcon?: IconValue | undefined;
|
|
10262
|
+
expandIcon?: IconValue | undefined;
|
|
10263
10263
|
} & {
|
|
10264
10264
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
10265
10265
|
"onClick:activate"?: ((value: {
|
|
@@ -18826,7 +18826,7 @@ declare const VChip: {
|
|
|
18826
18826
|
closable: boolean;
|
|
18827
18827
|
closeIcon: IconValue;
|
|
18828
18828
|
closeLabel: string;
|
|
18829
|
-
filterIcon:
|
|
18829
|
+
filterIcon: IconValue;
|
|
18830
18830
|
pill: boolean;
|
|
18831
18831
|
} & {
|
|
18832
18832
|
link?: boolean | undefined;
|
|
@@ -18934,7 +18934,7 @@ declare const VChip: {
|
|
|
18934
18934
|
closable: boolean;
|
|
18935
18935
|
closeIcon: IconValue;
|
|
18936
18936
|
closeLabel: string;
|
|
18937
|
-
filterIcon:
|
|
18937
|
+
filterIcon: IconValue;
|
|
18938
18938
|
pill: boolean;
|
|
18939
18939
|
} & {
|
|
18940
18940
|
link?: boolean | undefined;
|
|
@@ -19037,7 +19037,7 @@ declare const VChip: {
|
|
|
19037
19037
|
closable: boolean;
|
|
19038
19038
|
closeIcon: IconValue;
|
|
19039
19039
|
closeLabel: string;
|
|
19040
|
-
filterIcon:
|
|
19040
|
+
filterIcon: IconValue;
|
|
19041
19041
|
pill: boolean;
|
|
19042
19042
|
}, true, {}, vue.SlotsType<Partial<{
|
|
19043
19043
|
default: (arg: {
|
|
@@ -19080,7 +19080,7 @@ declare const VChip: {
|
|
|
19080
19080
|
closable: boolean;
|
|
19081
19081
|
closeIcon: IconValue;
|
|
19082
19082
|
closeLabel: string;
|
|
19083
|
-
filterIcon:
|
|
19083
|
+
filterIcon: IconValue;
|
|
19084
19084
|
pill: boolean;
|
|
19085
19085
|
} & {
|
|
19086
19086
|
link?: boolean | undefined;
|
|
@@ -19183,7 +19183,7 @@ declare const VChip: {
|
|
|
19183
19183
|
closable: boolean;
|
|
19184
19184
|
closeIcon: IconValue;
|
|
19185
19185
|
closeLabel: string;
|
|
19186
|
-
filterIcon:
|
|
19186
|
+
filterIcon: IconValue;
|
|
19187
19187
|
pill: boolean;
|
|
19188
19188
|
}>;
|
|
19189
19189
|
__isFragment?: never;
|
|
@@ -19209,7 +19209,7 @@ declare const VChip: {
|
|
|
19209
19209
|
closable: boolean;
|
|
19210
19210
|
closeIcon: IconValue;
|
|
19211
19211
|
closeLabel: string;
|
|
19212
|
-
filterIcon:
|
|
19212
|
+
filterIcon: IconValue;
|
|
19213
19213
|
pill: boolean;
|
|
19214
19214
|
} & {
|
|
19215
19215
|
link?: boolean | undefined;
|
|
@@ -19319,7 +19319,7 @@ declare const VChip: {
|
|
|
19319
19319
|
closable: boolean;
|
|
19320
19320
|
closeIcon: IconValue;
|
|
19321
19321
|
closeLabel: string;
|
|
19322
|
-
filterIcon:
|
|
19322
|
+
filterIcon: IconValue;
|
|
19323
19323
|
pill: boolean;
|
|
19324
19324
|
}, {}, string, vue.SlotsType<Partial<{
|
|
19325
19325
|
default: (arg: {
|
|
@@ -19399,7 +19399,7 @@ declare const VChip: {
|
|
|
19399
19399
|
draggable: BooleanConstructor;
|
|
19400
19400
|
filter: BooleanConstructor;
|
|
19401
19401
|
filterIcon: {
|
|
19402
|
-
type:
|
|
19402
|
+
type: PropType<IconValue>;
|
|
19403
19403
|
default: string;
|
|
19404
19404
|
};
|
|
19405
19405
|
label: BooleanConstructor;
|
|
@@ -19485,7 +19485,7 @@ declare const VChip: {
|
|
|
19485
19485
|
draggable: BooleanConstructor;
|
|
19486
19486
|
filter: BooleanConstructor;
|
|
19487
19487
|
filterIcon: {
|
|
19488
|
-
type:
|
|
19488
|
+
type: PropType<IconValue>;
|
|
19489
19489
|
default: string;
|
|
19490
19490
|
};
|
|
19491
19491
|
label: BooleanConstructor;
|
|
@@ -20582,8 +20582,8 @@ declare const VCombobox: {
|
|
|
20582
20582
|
activeColor?: string | undefined;
|
|
20583
20583
|
activeClass?: string | undefined;
|
|
20584
20584
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
20585
|
-
collapseIcon?:
|
|
20586
|
-
expandIcon?:
|
|
20585
|
+
collapseIcon?: IconValue | undefined;
|
|
20586
|
+
expandIcon?: IconValue | undefined;
|
|
20587
20587
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
20588
20588
|
"onClick:activate"?: ((value: {
|
|
20589
20589
|
id: unknown;
|
|
@@ -20627,8 +20627,8 @@ declare const VCombobox: {
|
|
|
20627
20627
|
activeColor?: string | undefined;
|
|
20628
20628
|
activeClass?: string | undefined;
|
|
20629
20629
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
20630
|
-
collapseIcon?:
|
|
20631
|
-
expandIcon?:
|
|
20630
|
+
collapseIcon?: IconValue | undefined;
|
|
20631
|
+
expandIcon?: IconValue | undefined;
|
|
20632
20632
|
} & {
|
|
20633
20633
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
20634
20634
|
"onClick:activate"?: ((value: {
|
|
@@ -21077,8 +21077,8 @@ declare const VCombobox: {
|
|
|
21077
21077
|
activeColor?: string | undefined;
|
|
21078
21078
|
activeClass?: string | undefined;
|
|
21079
21079
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21080
|
-
collapseIcon?:
|
|
21081
|
-
expandIcon?:
|
|
21080
|
+
collapseIcon?: IconValue | undefined;
|
|
21081
|
+
expandIcon?: IconValue | undefined;
|
|
21082
21082
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
21083
21083
|
"onClick:activate"?: ((value: {
|
|
21084
21084
|
id: unknown;
|
|
@@ -21122,8 +21122,8 @@ declare const VCombobox: {
|
|
|
21122
21122
|
activeColor?: string | undefined;
|
|
21123
21123
|
activeClass?: string | undefined;
|
|
21124
21124
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21125
|
-
collapseIcon?:
|
|
21126
|
-
expandIcon?:
|
|
21125
|
+
collapseIcon?: IconValue | undefined;
|
|
21126
|
+
expandIcon?: IconValue | undefined;
|
|
21127
21127
|
} & {
|
|
21128
21128
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
21129
21129
|
"onClick:activate"?: ((value: {
|
|
@@ -21656,8 +21656,8 @@ declare const VCombobox: {
|
|
|
21656
21656
|
activeColor?: string | undefined;
|
|
21657
21657
|
activeClass?: string | undefined;
|
|
21658
21658
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21659
|
-
collapseIcon?:
|
|
21660
|
-
expandIcon?:
|
|
21659
|
+
collapseIcon?: IconValue | undefined;
|
|
21660
|
+
expandIcon?: IconValue | undefined;
|
|
21661
21661
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
21662
21662
|
"onClick:activate"?: ((value: {
|
|
21663
21663
|
id: unknown;
|
|
@@ -21701,8 +21701,8 @@ declare const VCombobox: {
|
|
|
21701
21701
|
activeColor?: string | undefined;
|
|
21702
21702
|
activeClass?: string | undefined;
|
|
21703
21703
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21704
|
-
collapseIcon?:
|
|
21705
|
-
expandIcon?:
|
|
21704
|
+
collapseIcon?: IconValue | undefined;
|
|
21705
|
+
expandIcon?: IconValue | undefined;
|
|
21706
21706
|
} & {
|
|
21707
21707
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
21708
21708
|
"onClick:activate"?: ((value: {
|
|
@@ -22200,8 +22200,8 @@ declare const VCombobox: {
|
|
|
22200
22200
|
activeColor?: string | undefined;
|
|
22201
22201
|
activeClass?: string | undefined;
|
|
22202
22202
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
22203
|
-
collapseIcon?:
|
|
22204
|
-
expandIcon?:
|
|
22203
|
+
collapseIcon?: IconValue | undefined;
|
|
22204
|
+
expandIcon?: IconValue | undefined;
|
|
22205
22205
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
22206
22206
|
"onClick:activate"?: ((value: {
|
|
22207
22207
|
id: unknown;
|
|
@@ -22245,8 +22245,8 @@ declare const VCombobox: {
|
|
|
22245
22245
|
activeColor?: string | undefined;
|
|
22246
22246
|
activeClass?: string | undefined;
|
|
22247
22247
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
22248
|
-
collapseIcon?:
|
|
22249
|
-
expandIcon?:
|
|
22248
|
+
collapseIcon?: IconValue | undefined;
|
|
22249
|
+
expandIcon?: IconValue | undefined;
|
|
22250
22250
|
} & {
|
|
22251
22251
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
22252
22252
|
"onClick:activate"?: ((value: {
|
|
@@ -23094,7 +23094,7 @@ type VConfirmEditSlots<T> = {
|
|
|
23094
23094
|
save: () => void;
|
|
23095
23095
|
cancel: () => void;
|
|
23096
23096
|
isPristine: boolean;
|
|
23097
|
-
get actions(): VNode;
|
|
23097
|
+
get actions(): (props?: {}) => VNode;
|
|
23098
23098
|
};
|
|
23099
23099
|
};
|
|
23100
23100
|
declare const VConfirmEdit: {
|
|
@@ -23129,9 +23129,7 @@ declare const VConfirmEdit: {
|
|
|
23129
23129
|
save: () => void;
|
|
23130
23130
|
cancel: () => void;
|
|
23131
23131
|
isPristine: boolean;
|
|
23132
|
-
readonly actions:
|
|
23133
|
-
[key: string]: any;
|
|
23134
|
-
}>;
|
|
23132
|
+
readonly actions: (props?: {}) => VNode;
|
|
23135
23133
|
}) => VNode[];
|
|
23136
23134
|
}>>, {
|
|
23137
23135
|
P: {};
|
|
@@ -23182,9 +23180,7 @@ declare const VConfirmEdit: {
|
|
|
23182
23180
|
save: () => void;
|
|
23183
23181
|
cancel: () => void;
|
|
23184
23182
|
isPristine: boolean;
|
|
23185
|
-
readonly actions:
|
|
23186
|
-
[key: string]: any;
|
|
23187
|
-
}>;
|
|
23183
|
+
readonly actions: (props?: {}) => VNode;
|
|
23188
23184
|
}) => VNode[];
|
|
23189
23185
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
23190
23186
|
modelValue?: T;
|
|
@@ -28779,7 +28775,7 @@ declare const VDatePickerHeader: {
|
|
|
28779
28775
|
transition?: string | undefined;
|
|
28780
28776
|
header?: string | undefined;
|
|
28781
28777
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
28782
|
-
appendIcon?:
|
|
28778
|
+
appendIcon?: IconValue | undefined;
|
|
28783
28779
|
} & {
|
|
28784
28780
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
28785
28781
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
@@ -28806,7 +28802,7 @@ declare const VDatePickerHeader: {
|
|
|
28806
28802
|
transition?: string | undefined;
|
|
28807
28803
|
header?: string | undefined;
|
|
28808
28804
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
28809
|
-
appendIcon?:
|
|
28805
|
+
appendIcon?: IconValue | undefined;
|
|
28810
28806
|
} & {
|
|
28811
28807
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
28812
28808
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
@@ -28841,7 +28837,7 @@ declare const VDatePickerHeader: {
|
|
|
28841
28837
|
transition?: string | undefined;
|
|
28842
28838
|
header?: string | undefined;
|
|
28843
28839
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
28844
|
-
appendIcon?:
|
|
28840
|
+
appendIcon?: IconValue | undefined;
|
|
28845
28841
|
} & {
|
|
28846
28842
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
28847
28843
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
@@ -28869,7 +28865,7 @@ declare const VDatePickerHeader: {
|
|
|
28869
28865
|
transition?: string | undefined;
|
|
28870
28866
|
header?: string | undefined;
|
|
28871
28867
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
28872
|
-
appendIcon?:
|
|
28868
|
+
appendIcon?: IconValue | undefined;
|
|
28873
28869
|
} & {
|
|
28874
28870
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
28875
28871
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
@@ -28896,13 +28892,13 @@ declare const VDatePickerHeader: {
|
|
|
28896
28892
|
default: () => vue.VNode[];
|
|
28897
28893
|
append: () => vue.VNode[];
|
|
28898
28894
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
28899
|
-
appendIcon:
|
|
28895
|
+
appendIcon: vue.PropType<IconValue>;
|
|
28900
28896
|
color: StringConstructor;
|
|
28901
28897
|
header: StringConstructor;
|
|
28902
28898
|
transition: StringConstructor;
|
|
28903
28899
|
onClick: vue.PropType<(args_0: MouseEvent) => void>;
|
|
28904
28900
|
}, vue.ExtractPropTypes<{
|
|
28905
|
-
appendIcon:
|
|
28901
|
+
appendIcon: vue.PropType<IconValue>;
|
|
28906
28902
|
color: StringConstructor;
|
|
28907
28903
|
header: StringConstructor;
|
|
28908
28904
|
transition: StringConstructor;
|
|
@@ -45260,8 +45256,8 @@ declare const VSelect: {
|
|
|
45260
45256
|
activeColor?: string | undefined;
|
|
45261
45257
|
activeClass?: string | undefined;
|
|
45262
45258
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45263
|
-
collapseIcon?:
|
|
45264
|
-
expandIcon?:
|
|
45259
|
+
collapseIcon?: IconValue | undefined;
|
|
45260
|
+
expandIcon?: IconValue | undefined;
|
|
45265
45261
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
45266
45262
|
"onClick:activate"?: ((value: {
|
|
45267
45263
|
id: unknown;
|
|
@@ -45305,8 +45301,8 @@ declare const VSelect: {
|
|
|
45305
45301
|
activeColor?: string | undefined;
|
|
45306
45302
|
activeClass?: string | undefined;
|
|
45307
45303
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45308
|
-
collapseIcon?:
|
|
45309
|
-
expandIcon?:
|
|
45304
|
+
collapseIcon?: IconValue | undefined;
|
|
45305
|
+
expandIcon?: IconValue | undefined;
|
|
45310
45306
|
} & {
|
|
45311
45307
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
45312
45308
|
"onClick:activate"?: ((value: {
|
|
@@ -45747,8 +45743,8 @@ declare const VSelect: {
|
|
|
45747
45743
|
activeColor?: string | undefined;
|
|
45748
45744
|
activeClass?: string | undefined;
|
|
45749
45745
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45750
|
-
collapseIcon?:
|
|
45751
|
-
expandIcon?:
|
|
45746
|
+
collapseIcon?: IconValue | undefined;
|
|
45747
|
+
expandIcon?: IconValue | undefined;
|
|
45752
45748
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
45753
45749
|
"onClick:activate"?: ((value: {
|
|
45754
45750
|
id: unknown;
|
|
@@ -45792,8 +45788,8 @@ declare const VSelect: {
|
|
|
45792
45788
|
activeColor?: string | undefined;
|
|
45793
45789
|
activeClass?: string | undefined;
|
|
45794
45790
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45795
|
-
collapseIcon?:
|
|
45796
|
-
expandIcon?:
|
|
45791
|
+
collapseIcon?: IconValue | undefined;
|
|
45792
|
+
expandIcon?: IconValue | undefined;
|
|
45797
45793
|
} & {
|
|
45798
45794
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
45799
45795
|
"onClick:activate"?: ((value: {
|
|
@@ -46317,8 +46313,8 @@ declare const VSelect: {
|
|
|
46317
46313
|
activeColor?: string | undefined;
|
|
46318
46314
|
activeClass?: string | undefined;
|
|
46319
46315
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46320
|
-
collapseIcon?:
|
|
46321
|
-
expandIcon?:
|
|
46316
|
+
collapseIcon?: IconValue | undefined;
|
|
46317
|
+
expandIcon?: IconValue | undefined;
|
|
46322
46318
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
46323
46319
|
"onClick:activate"?: ((value: {
|
|
46324
46320
|
id: unknown;
|
|
@@ -46362,8 +46358,8 @@ declare const VSelect: {
|
|
|
46362
46358
|
activeColor?: string | undefined;
|
|
46363
46359
|
activeClass?: string | undefined;
|
|
46364
46360
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46365
|
-
collapseIcon?:
|
|
46366
|
-
expandIcon?:
|
|
46361
|
+
collapseIcon?: IconValue | undefined;
|
|
46362
|
+
expandIcon?: IconValue | undefined;
|
|
46367
46363
|
} & {
|
|
46368
46364
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
46369
46365
|
"onClick:activate"?: ((value: {
|
|
@@ -46852,8 +46848,8 @@ declare const VSelect: {
|
|
|
46852
46848
|
activeColor?: string | undefined;
|
|
46853
46849
|
activeClass?: string | undefined;
|
|
46854
46850
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46855
|
-
collapseIcon?:
|
|
46856
|
-
expandIcon?:
|
|
46851
|
+
collapseIcon?: IconValue | undefined;
|
|
46852
|
+
expandIcon?: IconValue | undefined;
|
|
46857
46853
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
46858
46854
|
"onClick:activate"?: ((value: {
|
|
46859
46855
|
id: unknown;
|
|
@@ -46897,8 +46893,8 @@ declare const VSelect: {
|
|
|
46897
46893
|
activeColor?: string | undefined;
|
|
46898
46894
|
activeClass?: string | undefined;
|
|
46899
46895
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46900
|
-
collapseIcon?:
|
|
46901
|
-
expandIcon?:
|
|
46896
|
+
collapseIcon?: IconValue | undefined;
|
|
46897
|
+
expandIcon?: IconValue | undefined;
|
|
46902
46898
|
} & {
|
|
46903
46899
|
"onUpdate:activated"?: ((value: unknown) => any) | undefined;
|
|
46904
46900
|
"onClick:activate"?: ((value: {
|
|
@@ -52599,15 +52595,15 @@ declare const VStepperItem: {
|
|
|
52599
52595
|
ripple: boolean | {
|
|
52600
52596
|
class: string;
|
|
52601
52597
|
} | undefined;
|
|
52602
|
-
completeIcon:
|
|
52598
|
+
completeIcon: IconValue;
|
|
52603
52599
|
editable: boolean;
|
|
52604
|
-
editIcon:
|
|
52605
|
-
errorIcon:
|
|
52600
|
+
editIcon: IconValue;
|
|
52601
|
+
errorIcon: IconValue;
|
|
52606
52602
|
} & {
|
|
52607
52603
|
color?: string | undefined;
|
|
52608
52604
|
value?: any;
|
|
52609
52605
|
title?: string | undefined;
|
|
52610
|
-
icon?:
|
|
52606
|
+
icon?: IconValue | undefined;
|
|
52611
52607
|
selectedClass?: string | undefined;
|
|
52612
52608
|
subtitle?: string | undefined;
|
|
52613
52609
|
} & {
|
|
@@ -52644,15 +52640,15 @@ declare const VStepperItem: {
|
|
|
52644
52640
|
ripple: boolean | {
|
|
52645
52641
|
class: string;
|
|
52646
52642
|
} | undefined;
|
|
52647
|
-
completeIcon:
|
|
52643
|
+
completeIcon: IconValue;
|
|
52648
52644
|
editable: boolean;
|
|
52649
|
-
editIcon:
|
|
52650
|
-
errorIcon:
|
|
52645
|
+
editIcon: IconValue;
|
|
52646
|
+
errorIcon: IconValue;
|
|
52651
52647
|
} & {
|
|
52652
52648
|
color?: string | undefined;
|
|
52653
52649
|
value?: any;
|
|
52654
52650
|
title?: string | undefined;
|
|
52655
|
-
icon?:
|
|
52651
|
+
icon?: IconValue | undefined;
|
|
52656
52652
|
selectedClass?: string | undefined;
|
|
52657
52653
|
subtitle?: string | undefined;
|
|
52658
52654
|
} & {
|
|
@@ -52685,10 +52681,10 @@ declare const VStepperItem: {
|
|
|
52685
52681
|
ripple: boolean | {
|
|
52686
52682
|
class: string;
|
|
52687
52683
|
} | undefined;
|
|
52688
|
-
completeIcon:
|
|
52684
|
+
completeIcon: IconValue;
|
|
52689
52685
|
editable: boolean;
|
|
52690
|
-
editIcon:
|
|
52691
|
-
errorIcon:
|
|
52686
|
+
editIcon: IconValue;
|
|
52687
|
+
errorIcon: IconValue;
|
|
52692
52688
|
}, true, {}, vue.SlotsType<Partial<{
|
|
52693
52689
|
default: (arg: StepperItemSlot) => vue.VNode[];
|
|
52694
52690
|
icon: (arg: StepperItemSlot) => vue.VNode[];
|
|
@@ -52709,15 +52705,15 @@ declare const VStepperItem: {
|
|
|
52709
52705
|
ripple: boolean | {
|
|
52710
52706
|
class: string;
|
|
52711
52707
|
} | undefined;
|
|
52712
|
-
completeIcon:
|
|
52708
|
+
completeIcon: IconValue;
|
|
52713
52709
|
editable: boolean;
|
|
52714
|
-
editIcon:
|
|
52715
|
-
errorIcon:
|
|
52710
|
+
editIcon: IconValue;
|
|
52711
|
+
errorIcon: IconValue;
|
|
52716
52712
|
} & {
|
|
52717
52713
|
color?: string | undefined;
|
|
52718
52714
|
value?: any;
|
|
52719
52715
|
title?: string | undefined;
|
|
52720
|
-
icon?:
|
|
52716
|
+
icon?: IconValue | undefined;
|
|
52721
52717
|
selectedClass?: string | undefined;
|
|
52722
52718
|
subtitle?: string | undefined;
|
|
52723
52719
|
} & {
|
|
@@ -52750,10 +52746,10 @@ declare const VStepperItem: {
|
|
|
52750
52746
|
ripple: boolean | {
|
|
52751
52747
|
class: string;
|
|
52752
52748
|
} | undefined;
|
|
52753
|
-
completeIcon:
|
|
52749
|
+
completeIcon: IconValue;
|
|
52754
52750
|
editable: boolean;
|
|
52755
|
-
editIcon:
|
|
52756
|
-
errorIcon:
|
|
52751
|
+
editIcon: IconValue;
|
|
52752
|
+
errorIcon: IconValue;
|
|
52757
52753
|
}>;
|
|
52758
52754
|
__isFragment?: never;
|
|
52759
52755
|
__isTeleport?: never;
|
|
@@ -52766,15 +52762,15 @@ declare const VStepperItem: {
|
|
|
52766
52762
|
ripple: boolean | {
|
|
52767
52763
|
class: string;
|
|
52768
52764
|
} | undefined;
|
|
52769
|
-
completeIcon:
|
|
52765
|
+
completeIcon: IconValue;
|
|
52770
52766
|
editable: boolean;
|
|
52771
|
-
editIcon:
|
|
52772
|
-
errorIcon:
|
|
52767
|
+
editIcon: IconValue;
|
|
52768
|
+
errorIcon: IconValue;
|
|
52773
52769
|
} & {
|
|
52774
52770
|
color?: string | undefined;
|
|
52775
52771
|
value?: any;
|
|
52776
52772
|
title?: string | undefined;
|
|
52777
|
-
icon?:
|
|
52773
|
+
icon?: IconValue | undefined;
|
|
52778
52774
|
selectedClass?: string | undefined;
|
|
52779
52775
|
subtitle?: string | undefined;
|
|
52780
52776
|
} & {
|
|
@@ -52811,10 +52807,10 @@ declare const VStepperItem: {
|
|
|
52811
52807
|
ripple: boolean | {
|
|
52812
52808
|
class: string;
|
|
52813
52809
|
} | undefined;
|
|
52814
|
-
completeIcon:
|
|
52810
|
+
completeIcon: IconValue;
|
|
52815
52811
|
editable: boolean;
|
|
52816
|
-
editIcon:
|
|
52817
|
-
errorIcon:
|
|
52812
|
+
editIcon: IconValue;
|
|
52813
|
+
errorIcon: IconValue;
|
|
52818
52814
|
}, {}, string, vue.SlotsType<Partial<{
|
|
52819
52815
|
default: (arg: StepperItemSlot) => vue.VNode[];
|
|
52820
52816
|
icon: (arg: StepperItemSlot) => vue.VNode[];
|
|
@@ -52829,20 +52825,20 @@ declare const VStepperItem: {
|
|
|
52829
52825
|
subtitle: StringConstructor;
|
|
52830
52826
|
complete: BooleanConstructor;
|
|
52831
52827
|
completeIcon: {
|
|
52832
|
-
type:
|
|
52828
|
+
type: PropType<IconValue>;
|
|
52833
52829
|
default: string;
|
|
52834
52830
|
};
|
|
52835
52831
|
editable: BooleanConstructor;
|
|
52836
52832
|
editIcon: {
|
|
52837
|
-
type:
|
|
52833
|
+
type: PropType<IconValue>;
|
|
52838
52834
|
default: string;
|
|
52839
52835
|
};
|
|
52840
52836
|
error: BooleanConstructor;
|
|
52841
52837
|
errorIcon: {
|
|
52842
|
-
type:
|
|
52838
|
+
type: PropType<IconValue>;
|
|
52843
52839
|
default: string;
|
|
52844
52840
|
};
|
|
52845
|
-
icon:
|
|
52841
|
+
icon: PropType<IconValue>;
|
|
52846
52842
|
ripple: {
|
|
52847
52843
|
type: PropType<RippleDirectiveBinding["value"]>;
|
|
52848
52844
|
default: boolean;
|
|
@@ -52860,20 +52856,20 @@ declare const VStepperItem: {
|
|
|
52860
52856
|
subtitle: StringConstructor;
|
|
52861
52857
|
complete: BooleanConstructor;
|
|
52862
52858
|
completeIcon: {
|
|
52863
|
-
type:
|
|
52859
|
+
type: PropType<IconValue>;
|
|
52864
52860
|
default: string;
|
|
52865
52861
|
};
|
|
52866
52862
|
editable: BooleanConstructor;
|
|
52867
52863
|
editIcon: {
|
|
52868
|
-
type:
|
|
52864
|
+
type: PropType<IconValue>;
|
|
52869
52865
|
default: string;
|
|
52870
52866
|
};
|
|
52871
52867
|
error: BooleanConstructor;
|
|
52872
52868
|
errorIcon: {
|
|
52873
|
-
type:
|
|
52869
|
+
type: PropType<IconValue>;
|
|
52874
52870
|
default: string;
|
|
52875
52871
|
};
|
|
52876
|
-
icon:
|
|
52872
|
+
icon: PropType<IconValue>;
|
|
52877
52873
|
ripple: {
|
|
52878
52874
|
type: PropType<RippleDirectiveBinding["value"]>;
|
|
52879
52875
|
default: boolean;
|
|
@@ -52928,9 +52924,9 @@ declare const VStepper: {
|
|
|
52928
52924
|
modelValue?: any;
|
|
52929
52925
|
rounded?: string | number | boolean | undefined;
|
|
52930
52926
|
bgColor?: string | undefined;
|
|
52931
|
-
completeIcon?:
|
|
52932
|
-
editIcon?:
|
|
52933
|
-
errorIcon?:
|
|
52927
|
+
completeIcon?: IconValue | undefined;
|
|
52928
|
+
editIcon?: IconValue | undefined;
|
|
52929
|
+
errorIcon?: IconValue | undefined;
|
|
52934
52930
|
} & {
|
|
52935
52931
|
$children?: vue.VNodeChild | {
|
|
52936
52932
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -53018,9 +53014,9 @@ declare const VStepper: {
|
|
|
53018
53014
|
modelValue?: any;
|
|
53019
53015
|
rounded?: string | number | boolean | undefined;
|
|
53020
53016
|
bgColor?: string | undefined;
|
|
53021
|
-
completeIcon?:
|
|
53022
|
-
editIcon?:
|
|
53023
|
-
errorIcon?:
|
|
53017
|
+
completeIcon?: IconValue | undefined;
|
|
53018
|
+
editIcon?: IconValue | undefined;
|
|
53019
|
+
errorIcon?: IconValue | undefined;
|
|
53024
53020
|
} & {
|
|
53025
53021
|
$children?: vue.VNodeChild | {
|
|
53026
53022
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -53144,9 +53140,9 @@ declare const VStepper: {
|
|
|
53144
53140
|
modelValue?: any;
|
|
53145
53141
|
rounded?: string | number | boolean | undefined;
|
|
53146
53142
|
bgColor?: string | undefined;
|
|
53147
|
-
completeIcon?:
|
|
53148
|
-
editIcon?:
|
|
53149
|
-
errorIcon?:
|
|
53143
|
+
completeIcon?: IconValue | undefined;
|
|
53144
|
+
editIcon?: IconValue | undefined;
|
|
53145
|
+
errorIcon?: IconValue | undefined;
|
|
53150
53146
|
} & {
|
|
53151
53147
|
$children?: vue.VNodeChild | {
|
|
53152
53148
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -53257,9 +53253,9 @@ declare const VStepper: {
|
|
|
53257
53253
|
modelValue?: any;
|
|
53258
53254
|
rounded?: string | number | boolean | undefined;
|
|
53259
53255
|
bgColor?: string | undefined;
|
|
53260
|
-
completeIcon?:
|
|
53261
|
-
editIcon?:
|
|
53262
|
-
errorIcon?:
|
|
53256
|
+
completeIcon?: IconValue | undefined;
|
|
53257
|
+
editIcon?: IconValue | undefined;
|
|
53258
|
+
errorIcon?: IconValue | undefined;
|
|
53263
53259
|
} & {
|
|
53264
53260
|
$children?: vue.VNodeChild | {
|
|
53265
53261
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -53406,10 +53402,10 @@ declare const VStepper: {
|
|
|
53406
53402
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
53407
53403
|
altLabels: BooleanConstructor;
|
|
53408
53404
|
bgColor: StringConstructor;
|
|
53409
|
-
completeIcon:
|
|
53410
|
-
editIcon:
|
|
53405
|
+
completeIcon: PropType<IconValue>;
|
|
53406
|
+
editIcon: PropType<IconValue>;
|
|
53411
53407
|
editable: BooleanConstructor;
|
|
53412
|
-
errorIcon:
|
|
53408
|
+
errorIcon: PropType<IconValue>;
|
|
53413
53409
|
hideActions: BooleanConstructor;
|
|
53414
53410
|
items: {
|
|
53415
53411
|
type: PropType<readonly StepperItem[]>;
|
|
@@ -53488,10 +53484,10 @@ declare const VStepper: {
|
|
|
53488
53484
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
53489
53485
|
altLabels: BooleanConstructor;
|
|
53490
53486
|
bgColor: StringConstructor;
|
|
53491
|
-
completeIcon:
|
|
53492
|
-
editIcon:
|
|
53487
|
+
completeIcon: PropType<IconValue>;
|
|
53488
|
+
editIcon: PropType<IconValue>;
|
|
53493
53489
|
editable: BooleanConstructor;
|
|
53494
|
-
errorIcon:
|
|
53490
|
+
errorIcon: PropType<IconValue>;
|
|
53495
53491
|
hideActions: BooleanConstructor;
|
|
53496
53492
|
items: {
|
|
53497
53493
|
type: PropType<readonly StepperItem[]>;
|
|
@@ -76958,9 +76954,9 @@ declare const VStepperVertical: {
|
|
|
76958
76954
|
rounded?: string | number | boolean | undefined;
|
|
76959
76955
|
selectedClass?: string | undefined;
|
|
76960
76956
|
bgColor?: string | undefined;
|
|
76961
|
-
completeIcon?:
|
|
76962
|
-
editIcon?:
|
|
76963
|
-
errorIcon?:
|
|
76957
|
+
completeIcon?: IconValue | undefined;
|
|
76958
|
+
editIcon?: IconValue | undefined;
|
|
76959
|
+
errorIcon?: IconValue | undefined;
|
|
76964
76960
|
} & {
|
|
76965
76961
|
$children?: vue.VNodeChild | {
|
|
76966
76962
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -77047,9 +77043,9 @@ declare const VStepperVertical: {
|
|
|
77047
77043
|
rounded?: string | number | boolean | undefined;
|
|
77048
77044
|
selectedClass?: string | undefined;
|
|
77049
77045
|
bgColor?: string | undefined;
|
|
77050
|
-
completeIcon?:
|
|
77051
|
-
editIcon?:
|
|
77052
|
-
errorIcon?:
|
|
77046
|
+
completeIcon?: IconValue | undefined;
|
|
77047
|
+
editIcon?: IconValue | undefined;
|
|
77048
|
+
errorIcon?: IconValue | undefined;
|
|
77053
77049
|
} & {
|
|
77054
77050
|
$children?: vue.VNodeChild | {
|
|
77055
77051
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -77183,9 +77179,9 @@ declare const VStepperVertical: {
|
|
|
77183
77179
|
rounded?: string | number | boolean | undefined;
|
|
77184
77180
|
selectedClass?: string | undefined;
|
|
77185
77181
|
bgColor?: string | undefined;
|
|
77186
|
-
completeIcon?:
|
|
77187
|
-
editIcon?:
|
|
77188
|
-
errorIcon?:
|
|
77182
|
+
completeIcon?: IconValue | undefined;
|
|
77183
|
+
editIcon?: IconValue | undefined;
|
|
77184
|
+
errorIcon?: IconValue | undefined;
|
|
77189
77185
|
} & {
|
|
77190
77186
|
$children?: vue.VNodeChild | {
|
|
77191
77187
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -77303,9 +77299,9 @@ declare const VStepperVertical: {
|
|
|
77303
77299
|
rounded?: string | number | boolean | undefined;
|
|
77304
77300
|
selectedClass?: string | undefined;
|
|
77305
77301
|
bgColor?: string | undefined;
|
|
77306
|
-
completeIcon?:
|
|
77307
|
-
editIcon?:
|
|
77308
|
-
errorIcon?:
|
|
77302
|
+
completeIcon?: IconValue | undefined;
|
|
77303
|
+
editIcon?: IconValue | undefined;
|
|
77304
|
+
errorIcon?: IconValue | undefined;
|
|
77309
77305
|
} & {
|
|
77310
77306
|
$children?: vue.VNodeChild | {
|
|
77311
77307
|
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -77461,10 +77457,10 @@ declare const VStepperVertical: {
|
|
|
77461
77457
|
};
|
|
77462
77458
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
77463
77459
|
altLabels: BooleanConstructor;
|
|
77464
|
-
completeIcon:
|
|
77465
|
-
editIcon:
|
|
77460
|
+
completeIcon: vue.PropType<IconValue>;
|
|
77461
|
+
editIcon: vue.PropType<IconValue>;
|
|
77466
77462
|
editable: BooleanConstructor;
|
|
77467
|
-
errorIcon:
|
|
77463
|
+
errorIcon: vue.PropType<IconValue>;
|
|
77468
77464
|
items: {
|
|
77469
77465
|
type: vue.PropType<readonly StepperItem[]>;
|
|
77470
77466
|
default: () => never[];
|
|
@@ -77551,10 +77547,10 @@ declare const VStepperVertical: {
|
|
|
77551
77547
|
};
|
|
77552
77548
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
77553
77549
|
altLabels: BooleanConstructor;
|
|
77554
|
-
completeIcon:
|
|
77555
|
-
editIcon:
|
|
77550
|
+
completeIcon: vue.PropType<IconValue>;
|
|
77551
|
+
editIcon: vue.PropType<IconValue>;
|
|
77556
77552
|
editable: BooleanConstructor;
|
|
77557
|
-
errorIcon:
|
|
77553
|
+
errorIcon: vue.PropType<IconValue>;
|
|
77558
77554
|
items: {
|
|
77559
77555
|
type: vue.PropType<readonly StepperItem[]>;
|
|
77560
77556
|
default: () => never[];
|
|
@@ -77598,10 +77594,10 @@ declare const VStepperVerticalItem: {
|
|
|
77598
77594
|
collapseIcon: IconValue;
|
|
77599
77595
|
expandIcon: IconValue;
|
|
77600
77596
|
hideActions: boolean;
|
|
77601
|
-
completeIcon:
|
|
77597
|
+
completeIcon: IconValue;
|
|
77602
77598
|
editable: boolean;
|
|
77603
|
-
editIcon:
|
|
77604
|
-
errorIcon:
|
|
77599
|
+
editIcon: IconValue;
|
|
77600
|
+
errorIcon: IconValue;
|
|
77605
77601
|
} & {
|
|
77606
77602
|
height?: string | number | undefined;
|
|
77607
77603
|
width?: string | number | undefined;
|
|
@@ -77614,7 +77610,7 @@ declare const VStepperVerticalItem: {
|
|
|
77614
77610
|
title?: string | undefined;
|
|
77615
77611
|
text?: string | undefined;
|
|
77616
77612
|
class?: any;
|
|
77617
|
-
icon?:
|
|
77613
|
+
icon?: IconValue | undefined;
|
|
77618
77614
|
elevation?: string | number | undefined;
|
|
77619
77615
|
rounded?: string | number | boolean | undefined;
|
|
77620
77616
|
selectedClass?: string | undefined;
|
|
@@ -77685,10 +77681,10 @@ declare const VStepperVerticalItem: {
|
|
|
77685
77681
|
collapseIcon: IconValue;
|
|
77686
77682
|
expandIcon: IconValue;
|
|
77687
77683
|
hideActions: boolean;
|
|
77688
|
-
completeIcon:
|
|
77684
|
+
completeIcon: IconValue;
|
|
77689
77685
|
editable: boolean;
|
|
77690
|
-
editIcon:
|
|
77691
|
-
errorIcon:
|
|
77686
|
+
editIcon: IconValue;
|
|
77687
|
+
errorIcon: IconValue;
|
|
77692
77688
|
} & {
|
|
77693
77689
|
height?: string | number | undefined;
|
|
77694
77690
|
width?: string | number | undefined;
|
|
@@ -77701,7 +77697,7 @@ declare const VStepperVerticalItem: {
|
|
|
77701
77697
|
title?: string | undefined;
|
|
77702
77698
|
text?: string | undefined;
|
|
77703
77699
|
class?: any;
|
|
77704
|
-
icon?:
|
|
77700
|
+
icon?: IconValue | undefined;
|
|
77705
77701
|
elevation?: string | number | undefined;
|
|
77706
77702
|
rounded?: string | number | boolean | undefined;
|
|
77707
77703
|
selectedClass?: string | undefined;
|
|
@@ -77769,10 +77765,10 @@ declare const VStepperVerticalItem: {
|
|
|
77769
77765
|
collapseIcon: IconValue;
|
|
77770
77766
|
expandIcon: IconValue;
|
|
77771
77767
|
hideActions: boolean;
|
|
77772
|
-
completeIcon:
|
|
77768
|
+
completeIcon: IconValue;
|
|
77773
77769
|
editable: boolean;
|
|
77774
|
-
editIcon:
|
|
77775
|
-
errorIcon:
|
|
77770
|
+
editIcon: IconValue;
|
|
77771
|
+
errorIcon: IconValue;
|
|
77776
77772
|
}, true, {}, vue.SlotsType<Partial<{
|
|
77777
77773
|
default: (arg: StepperItemSlot) => vue.VNode[];
|
|
77778
77774
|
icon: (arg: StepperItemSlot) => vue.VNode[];
|
|
@@ -77810,10 +77806,10 @@ declare const VStepperVerticalItem: {
|
|
|
77810
77806
|
collapseIcon: IconValue;
|
|
77811
77807
|
expandIcon: IconValue;
|
|
77812
77808
|
hideActions: boolean;
|
|
77813
|
-
completeIcon:
|
|
77809
|
+
completeIcon: IconValue;
|
|
77814
77810
|
editable: boolean;
|
|
77815
|
-
editIcon:
|
|
77816
|
-
errorIcon:
|
|
77811
|
+
editIcon: IconValue;
|
|
77812
|
+
errorIcon: IconValue;
|
|
77817
77813
|
} & {
|
|
77818
77814
|
height?: string | number | undefined;
|
|
77819
77815
|
width?: string | number | undefined;
|
|
@@ -77826,7 +77822,7 @@ declare const VStepperVerticalItem: {
|
|
|
77826
77822
|
title?: string | undefined;
|
|
77827
77823
|
text?: string | undefined;
|
|
77828
77824
|
class?: any;
|
|
77829
|
-
icon?:
|
|
77825
|
+
icon?: IconValue | undefined;
|
|
77830
77826
|
elevation?: string | number | undefined;
|
|
77831
77827
|
rounded?: string | number | boolean | undefined;
|
|
77832
77828
|
selectedClass?: string | undefined;
|
|
@@ -77894,10 +77890,10 @@ declare const VStepperVerticalItem: {
|
|
|
77894
77890
|
collapseIcon: IconValue;
|
|
77895
77891
|
expandIcon: IconValue;
|
|
77896
77892
|
hideActions: boolean;
|
|
77897
|
-
completeIcon:
|
|
77893
|
+
completeIcon: IconValue;
|
|
77898
77894
|
editable: boolean;
|
|
77899
|
-
editIcon:
|
|
77900
|
-
errorIcon:
|
|
77895
|
+
editIcon: IconValue;
|
|
77896
|
+
errorIcon: IconValue;
|
|
77901
77897
|
}>;
|
|
77902
77898
|
__isFragment?: never;
|
|
77903
77899
|
__isTeleport?: never;
|
|
@@ -77920,10 +77916,10 @@ declare const VStepperVerticalItem: {
|
|
|
77920
77916
|
collapseIcon: IconValue;
|
|
77921
77917
|
expandIcon: IconValue;
|
|
77922
77918
|
hideActions: boolean;
|
|
77923
|
-
completeIcon:
|
|
77919
|
+
completeIcon: IconValue;
|
|
77924
77920
|
editable: boolean;
|
|
77925
|
-
editIcon:
|
|
77926
|
-
errorIcon:
|
|
77921
|
+
editIcon: IconValue;
|
|
77922
|
+
errorIcon: IconValue;
|
|
77927
77923
|
} & {
|
|
77928
77924
|
height?: string | number | undefined;
|
|
77929
77925
|
width?: string | number | undefined;
|
|
@@ -77936,7 +77932,7 @@ declare const VStepperVerticalItem: {
|
|
|
77936
77932
|
title?: string | undefined;
|
|
77937
77933
|
text?: string | undefined;
|
|
77938
77934
|
class?: any;
|
|
77939
|
-
icon?:
|
|
77935
|
+
icon?: IconValue | undefined;
|
|
77940
77936
|
elevation?: string | number | undefined;
|
|
77941
77937
|
rounded?: string | number | boolean | undefined;
|
|
77942
77938
|
selectedClass?: string | undefined;
|
|
@@ -78008,10 +78004,10 @@ declare const VStepperVerticalItem: {
|
|
|
78008
78004
|
collapseIcon: IconValue;
|
|
78009
78005
|
expandIcon: IconValue;
|
|
78010
78006
|
hideActions: boolean;
|
|
78011
|
-
completeIcon:
|
|
78007
|
+
completeIcon: IconValue;
|
|
78012
78008
|
editable: boolean;
|
|
78013
|
-
editIcon:
|
|
78014
|
-
errorIcon:
|
|
78009
|
+
editIcon: IconValue;
|
|
78010
|
+
errorIcon: IconValue;
|
|
78015
78011
|
}, {}, string, vue.SlotsType<Partial<{
|
|
78016
78012
|
default: (arg: StepperItemSlot) => vue.VNode[];
|
|
78017
78013
|
icon: (arg: StepperItemSlot) => vue.VNode[];
|
|
@@ -78081,20 +78077,20 @@ declare const VStepperVerticalItem: {
|
|
|
78081
78077
|
subtitle: StringConstructor;
|
|
78082
78078
|
complete: BooleanConstructor;
|
|
78083
78079
|
completeIcon: {
|
|
78084
|
-
type:
|
|
78080
|
+
type: vue.PropType<IconValue>;
|
|
78085
78081
|
default: string;
|
|
78086
78082
|
};
|
|
78087
78083
|
editable: BooleanConstructor;
|
|
78088
78084
|
editIcon: {
|
|
78089
|
-
type:
|
|
78085
|
+
type: vue.PropType<IconValue>;
|
|
78090
78086
|
default: string;
|
|
78091
78087
|
};
|
|
78092
78088
|
error: BooleanConstructor;
|
|
78093
78089
|
errorIcon: {
|
|
78094
|
-
type:
|
|
78090
|
+
type: vue.PropType<IconValue>;
|
|
78095
78091
|
default: string;
|
|
78096
78092
|
};
|
|
78097
|
-
icon:
|
|
78093
|
+
icon: vue.PropType<IconValue>;
|
|
78098
78094
|
rules: {
|
|
78099
78095
|
type: vue.PropType<readonly ValidationRule[]>;
|
|
78100
78096
|
default: () => never[];
|
|
@@ -78157,20 +78153,20 @@ declare const VStepperVerticalItem: {
|
|
|
78157
78153
|
subtitle: StringConstructor;
|
|
78158
78154
|
complete: BooleanConstructor;
|
|
78159
78155
|
completeIcon: {
|
|
78160
|
-
type:
|
|
78156
|
+
type: vue.PropType<IconValue>;
|
|
78161
78157
|
default: string;
|
|
78162
78158
|
};
|
|
78163
78159
|
editable: BooleanConstructor;
|
|
78164
78160
|
editIcon: {
|
|
78165
|
-
type:
|
|
78161
|
+
type: vue.PropType<IconValue>;
|
|
78166
78162
|
default: string;
|
|
78167
78163
|
};
|
|
78168
78164
|
error: BooleanConstructor;
|
|
78169
78165
|
errorIcon: {
|
|
78170
|
-
type:
|
|
78166
|
+
type: vue.PropType<IconValue>;
|
|
78171
78167
|
default: string;
|
|
78172
78168
|
};
|
|
78173
|
-
icon:
|
|
78169
|
+
icon: vue.PropType<IconValue>;
|
|
78174
78170
|
rules: {
|
|
78175
78171
|
type: vue.PropType<readonly ValidationRule[]>;
|
|
78176
78172
|
default: () => never[];
|
|
@@ -80022,8 +80018,8 @@ declare const VTreeview: {
|
|
|
80022
80018
|
activatable: boolean;
|
|
80023
80019
|
selectable: boolean;
|
|
80024
80020
|
selectStrategy: SelectStrategyProp;
|
|
80025
|
-
collapseIcon:
|
|
80026
|
-
expandIcon:
|
|
80021
|
+
collapseIcon: IconValue;
|
|
80022
|
+
expandIcon: IconValue;
|
|
80027
80023
|
returnObject: boolean;
|
|
80028
80024
|
filterMode: FilterMode;
|
|
80029
80025
|
noFilter: boolean;
|
|
@@ -80120,8 +80116,8 @@ declare const VTreeview: {
|
|
|
80120
80116
|
activatable: boolean;
|
|
80121
80117
|
selectable: boolean;
|
|
80122
80118
|
selectStrategy: SelectStrategyProp;
|
|
80123
|
-
collapseIcon:
|
|
80124
|
-
expandIcon:
|
|
80119
|
+
collapseIcon: IconValue;
|
|
80120
|
+
expandIcon: IconValue;
|
|
80125
80121
|
returnObject: boolean;
|
|
80126
80122
|
filterMode: FilterMode;
|
|
80127
80123
|
noFilter: boolean;
|
|
@@ -80204,8 +80200,8 @@ declare const VTreeview: {
|
|
|
80204
80200
|
activatable: boolean;
|
|
80205
80201
|
selectable: boolean;
|
|
80206
80202
|
selectStrategy: SelectStrategyProp;
|
|
80207
|
-
collapseIcon:
|
|
80208
|
-
expandIcon:
|
|
80203
|
+
collapseIcon: IconValue;
|
|
80204
|
+
expandIcon: IconValue;
|
|
80209
80205
|
returnObject: boolean;
|
|
80210
80206
|
filterMode: FilterMode;
|
|
80211
80207
|
noFilter: boolean;
|
|
@@ -80266,8 +80262,8 @@ declare const VTreeview: {
|
|
|
80266
80262
|
activatable: boolean;
|
|
80267
80263
|
selectable: boolean;
|
|
80268
80264
|
selectStrategy: SelectStrategyProp;
|
|
80269
|
-
collapseIcon:
|
|
80270
|
-
expandIcon:
|
|
80265
|
+
collapseIcon: IconValue;
|
|
80266
|
+
expandIcon: IconValue;
|
|
80271
80267
|
returnObject: boolean;
|
|
80272
80268
|
filterMode: FilterMode;
|
|
80273
80269
|
noFilter: boolean;
|
|
@@ -80350,8 +80346,8 @@ declare const VTreeview: {
|
|
|
80350
80346
|
activatable: boolean;
|
|
80351
80347
|
selectable: boolean;
|
|
80352
80348
|
selectStrategy: SelectStrategyProp;
|
|
80353
|
-
collapseIcon:
|
|
80354
|
-
expandIcon:
|
|
80349
|
+
collapseIcon: IconValue;
|
|
80350
|
+
expandIcon: IconValue;
|
|
80355
80351
|
returnObject: boolean;
|
|
80356
80352
|
filterMode: FilterMode;
|
|
80357
80353
|
noFilter: boolean;
|
|
@@ -80383,8 +80379,8 @@ declare const VTreeview: {
|
|
|
80383
80379
|
activatable: boolean;
|
|
80384
80380
|
selectable: boolean;
|
|
80385
80381
|
selectStrategy: SelectStrategyProp;
|
|
80386
|
-
collapseIcon:
|
|
80387
|
-
expandIcon:
|
|
80382
|
+
collapseIcon: IconValue;
|
|
80383
|
+
expandIcon: IconValue;
|
|
80388
80384
|
returnObject: boolean;
|
|
80389
80385
|
filterMode: FilterMode;
|
|
80390
80386
|
noFilter: boolean;
|
|
@@ -80482,8 +80478,8 @@ declare const VTreeview: {
|
|
|
80482
80478
|
activatable: boolean;
|
|
80483
80479
|
selectable: boolean;
|
|
80484
80480
|
selectStrategy: SelectStrategyProp;
|
|
80485
|
-
collapseIcon:
|
|
80486
|
-
expandIcon:
|
|
80481
|
+
collapseIcon: IconValue;
|
|
80482
|
+
expandIcon: IconValue;
|
|
80487
80483
|
returnObject: boolean;
|
|
80488
80484
|
filterMode: FilterMode;
|
|
80489
80485
|
noFilter: boolean;
|
|
@@ -80602,12 +80598,12 @@ declare const VTreeview: {
|
|
|
80602
80598
|
};
|
|
80603
80599
|
'onUpdate:opened': vue.PropType<() => void>;
|
|
80604
80600
|
collapseIcon: {
|
|
80605
|
-
type: vue.PropType<
|
|
80606
|
-
default:
|
|
80601
|
+
type: vue.PropType<IconValue>;
|
|
80602
|
+
default: NonNullable<IconValue>;
|
|
80607
80603
|
};
|
|
80608
80604
|
expandIcon: {
|
|
80609
|
-
type: vue.PropType<
|
|
80610
|
-
default:
|
|
80605
|
+
type: vue.PropType<IconValue>;
|
|
80606
|
+
default: NonNullable<IconValue>;
|
|
80611
80607
|
};
|
|
80612
80608
|
returnObject: BooleanConstructor;
|
|
80613
80609
|
itemTitle: {
|
|
@@ -80744,12 +80740,12 @@ declare const VTreeview: {
|
|
|
80744
80740
|
};
|
|
80745
80741
|
'onUpdate:opened': vue.PropType<() => void>;
|
|
80746
80742
|
collapseIcon: {
|
|
80747
|
-
type: vue.PropType<
|
|
80748
|
-
default:
|
|
80743
|
+
type: vue.PropType<IconValue>;
|
|
80744
|
+
default: NonNullable<IconValue>;
|
|
80749
80745
|
};
|
|
80750
80746
|
expandIcon: {
|
|
80751
|
-
type: vue.PropType<
|
|
80752
|
-
default:
|
|
80747
|
+
type: vue.PropType<IconValue>;
|
|
80748
|
+
default: NonNullable<IconValue>;
|
|
80753
80749
|
};
|
|
80754
80750
|
returnObject: BooleanConstructor;
|
|
80755
80751
|
itemTitle: {
|