@vunk/form 1.1.6 → 1.1.7
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/components/cascader/index.d.ts +2 -0
- package/components/cascader/index.js +45 -26
- package/components/cascader/src/ctx.d.ts +41 -49
- package/components/cascader/src/ctx.js +1 -1
- package/components/cascader/src/index.vue.d.ts +89 -105
- package/components/cascader/src/use.d.ts +5 -0
- package/components/cascader/src/use.js +28 -0
- package/components/checkbox/src/index.vue.d.ts +2 -2
- package/components/color-picker/src/index.vue.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +2 -2
- package/components/form/src/ctx.d.ts +18 -18
- package/components/form/src/index.vue.d.ts +56 -56
- package/components/form-item-renderer/src/index.vue.d.ts +1 -1
- package/components/geoinput/src/index.vue.d.ts +26 -26
- package/components/geoinput-read/src/core.vue.d.ts +11 -11
- package/components/geoinput-read/src/ctx.d.ts +2 -2
- package/components/geoinput-read/src/index.vue.d.ts +14 -14
- package/components/geoinput-update/src/ctx.d.ts +2 -2
- package/components/geoinput-update/src/index.vue.d.ts +10 -10
- package/components/input/src/ctx.d.ts +2 -2
- package/components/input/src/index.vue.d.ts +14 -14
- package/components/input-link/src/index.vue.d.ts +14 -14
- package/components/input-number/src/index.vue.d.ts +5 -5
- package/components/radio/src/index.vue.d.ts +1 -1
- package/components/select/index.js +4 -4
- package/components/select/src/index.vue.d.ts +4 -4
- package/components/switch/src/index.vue.d.ts +5 -5
- package/components/upload/src/ctx.d.ts +1 -1
- package/components/upload/src/index.vue.d.ts +4 -4
- package/components/van-cascader/index.css +4 -0
- package/components/van-cascader/index.d.ts +4 -0
- package/components/van-cascader/index.js +128 -0
- package/components/van-cascader/src/ctx.d.ts +111 -0
- package/components/van-cascader/src/ctx.js +22 -0
- package/components/van-cascader/src/index.vue.d.ts +273 -0
- package/components/van-cascader/src/types.d.ts +1 -0
- package/components/van-cascader/src/types.js +1 -0
- package/index.css +5 -0
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +23 -23
- package/shared/element-plus/index.js +2 -18088
- package/shared/element-plus/instances.d.ts +0 -71
|
@@ -96,8 +96,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
96
|
predefine: string[] | undefined;
|
|
97
97
|
}>;
|
|
98
98
|
coreOnEmits: {
|
|
99
|
-
change: (val: string | null) => void;
|
|
100
99
|
"update:modelValue": (val: string | null) => void;
|
|
100
|
+
change: (val: string | null) => void;
|
|
101
101
|
activeChange: (val: string | null) => void;
|
|
102
102
|
};
|
|
103
103
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -179,11 +179,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
179
179
|
isRange: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
180
180
|
}>;
|
|
181
181
|
datePickerOnEmits: {
|
|
182
|
-
|
|
182
|
+
"update:modelValue": (...e: any[]) => void;
|
|
183
183
|
change: (...e: any[]) => void;
|
|
184
184
|
focus: (...e: any[]) => void;
|
|
185
|
+
blur: (...e: any[]) => void;
|
|
185
186
|
keydown: (...e: any[]) => void;
|
|
186
|
-
"update:modelValue": (...e: any[]) => void;
|
|
187
187
|
"calendar-change": (...e: any[]) => void;
|
|
188
188
|
"panel-change": (...e: any[]) => void;
|
|
189
189
|
"visible-change": (...e: any[]) => void;
|
|
@@ -18,8 +18,8 @@ export declare const props: {
|
|
|
18
18
|
$data: {};
|
|
19
19
|
$props: Partial<{
|
|
20
20
|
readonly disabled: boolean;
|
|
21
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
22
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
21
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
22
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
23
23
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
24
24
|
readonly labelSuffix: string;
|
|
25
25
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -37,8 +37,8 @@ export declare const props: {
|
|
|
37
37
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
38
38
|
__epPropKey: true;
|
|
39
39
|
};
|
|
40
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
41
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
40
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
41
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
42
42
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
43
43
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
44
44
|
readonly inline: BooleanConstructor;
|
|
@@ -85,8 +85,8 @@ export declare const props: {
|
|
|
85
85
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
86
86
|
__epPropKey: true;
|
|
87
87
|
};
|
|
88
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
89
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
88
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
89
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
90
90
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
91
91
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
92
92
|
readonly inline: BooleanConstructor;
|
|
@@ -121,8 +121,8 @@ export declare const props: {
|
|
|
121
121
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
122
122
|
__epPropKey: true;
|
|
123
123
|
};
|
|
124
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
125
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
124
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
125
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
126
126
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
127
127
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
128
128
|
readonly inline: BooleanConstructor;
|
|
@@ -170,7 +170,7 @@ export declare const props: {
|
|
|
170
170
|
cssVarBlockName: (name: string) => string;
|
|
171
171
|
};
|
|
172
172
|
formClasses: import("vue").ComputedRef<(string | {
|
|
173
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
173
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
174
174
|
})[]>;
|
|
175
175
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
176
176
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -186,8 +186,8 @@ export declare const props: {
|
|
|
186
186
|
validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => boolean;
|
|
187
187
|
}, string, {
|
|
188
188
|
readonly disabled: boolean;
|
|
189
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
190
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
189
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
190
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
191
191
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
192
192
|
readonly labelSuffix: string;
|
|
193
193
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -225,8 +225,8 @@ export declare const props: {
|
|
|
225
225
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
226
226
|
__epPropKey: true;
|
|
227
227
|
};
|
|
228
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
229
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
228
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
229
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
230
230
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
231
231
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
232
232
|
readonly inline: BooleanConstructor;
|
|
@@ -261,8 +261,8 @@ export declare const props: {
|
|
|
261
261
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
262
262
|
__epPropKey: true;
|
|
263
263
|
};
|
|
264
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
265
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
264
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
265
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
266
266
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
267
267
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
268
268
|
readonly inline: BooleanConstructor;
|
|
@@ -310,7 +310,7 @@ export declare const props: {
|
|
|
310
310
|
cssVarBlockName: (name: string) => string;
|
|
311
311
|
};
|
|
312
312
|
formClasses: import("vue").ComputedRef<(string | {
|
|
313
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
313
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
314
314
|
})[]>;
|
|
315
315
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
316
316
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -332,8 +332,8 @@ export declare const props: {
|
|
|
332
332
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
333
333
|
__epPropKey: true;
|
|
334
334
|
};
|
|
335
|
-
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
336
|
-
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
335
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
336
|
+
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
337
337
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
338
338
|
labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
339
339
|
inline: BooleanConstructor;
|
|
@@ -17,8 +17,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
$data: {};
|
|
18
18
|
$props: Partial<{
|
|
19
19
|
readonly disabled: boolean;
|
|
20
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
21
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
20
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
21
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
22
22
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
23
23
|
readonly labelSuffix: string;
|
|
24
24
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -36,8 +36,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
36
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
37
37
|
__epPropKey: true;
|
|
38
38
|
};
|
|
39
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
40
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
39
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
40
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
41
41
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
42
42
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
43
43
|
readonly inline: BooleanConstructor;
|
|
@@ -84,8 +84,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
84
84
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
85
85
|
__epPropKey: true;
|
|
86
86
|
};
|
|
87
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
88
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
87
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
88
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
89
89
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
90
90
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
91
91
|
readonly inline: BooleanConstructor;
|
|
@@ -120,8 +120,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
120
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
121
121
|
__epPropKey: true;
|
|
122
122
|
};
|
|
123
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
124
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
123
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
124
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
125
125
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
126
126
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
127
127
|
readonly inline: BooleanConstructor;
|
|
@@ -169,7 +169,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
169
169
|
cssVarBlockName: (name: string) => string;
|
|
170
170
|
};
|
|
171
171
|
formClasses: import("vue").ComputedRef<(string | {
|
|
172
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
172
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
173
173
|
})[]>;
|
|
174
174
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
175
175
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -185,8 +185,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
185
185
|
validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => boolean;
|
|
186
186
|
}, string, {
|
|
187
187
|
readonly disabled: boolean;
|
|
188
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
189
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
188
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
189
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
190
190
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
191
191
|
readonly labelSuffix: string;
|
|
192
192
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -224,8 +224,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
224
224
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
225
225
|
__epPropKey: true;
|
|
226
226
|
};
|
|
227
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
228
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
227
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
228
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
229
229
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
230
230
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
231
231
|
readonly inline: BooleanConstructor;
|
|
@@ -260,8 +260,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
260
260
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
261
261
|
__epPropKey: true;
|
|
262
262
|
};
|
|
263
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
264
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
263
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
264
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
265
265
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
266
266
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
267
267
|
readonly inline: BooleanConstructor;
|
|
@@ -309,7 +309,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
309
309
|
cssVarBlockName: (name: string) => string;
|
|
310
310
|
};
|
|
311
311
|
formClasses: import("vue").ComputedRef<(string | {
|
|
312
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
312
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
313
313
|
})[]>;
|
|
314
314
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
315
315
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -331,8 +331,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
331
331
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
332
332
|
__epPropKey: true;
|
|
333
333
|
};
|
|
334
|
-
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
335
|
-
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
334
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
335
|
+
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
336
336
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
337
337
|
labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
338
338
|
inline: BooleanConstructor;
|
|
@@ -364,8 +364,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
364
364
|
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", unknown> | undefined;
|
|
365
365
|
inline: boolean;
|
|
366
366
|
disabled: boolean;
|
|
367
|
-
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
368
|
-
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
367
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
368
|
+
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
369
369
|
labelSuffix: string;
|
|
370
370
|
statusIcon: boolean;
|
|
371
371
|
validateOnRuleChange: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -399,8 +399,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
399
399
|
$data: {};
|
|
400
400
|
$props: Partial<{
|
|
401
401
|
readonly disabled: boolean;
|
|
402
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
403
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
402
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
403
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
404
404
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
405
405
|
readonly labelSuffix: string;
|
|
406
406
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -418,8 +418,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
418
418
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
419
419
|
__epPropKey: true;
|
|
420
420
|
};
|
|
421
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
422
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
421
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
422
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
423
423
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
424
424
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
425
425
|
readonly inline: BooleanConstructor;
|
|
@@ -466,8 +466,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
466
466
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
467
467
|
__epPropKey: true;
|
|
468
468
|
};
|
|
469
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
470
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
469
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
470
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
471
471
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
472
472
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
473
473
|
readonly inline: BooleanConstructor;
|
|
@@ -502,8 +502,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
502
502
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
503
503
|
__epPropKey: true;
|
|
504
504
|
};
|
|
505
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
506
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
505
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
506
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
507
507
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
508
508
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
509
509
|
readonly inline: BooleanConstructor;
|
|
@@ -551,7 +551,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
551
551
|
cssVarBlockName: (name: string) => string;
|
|
552
552
|
};
|
|
553
553
|
formClasses: import("vue").ComputedRef<(string | {
|
|
554
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
554
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
555
555
|
})[]>;
|
|
556
556
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
557
557
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -567,8 +567,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
567
567
|
validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => boolean;
|
|
568
568
|
}, string, {
|
|
569
569
|
readonly disabled: boolean;
|
|
570
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
571
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
570
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
571
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
572
572
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
573
573
|
readonly labelSuffix: string;
|
|
574
574
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -606,8 +606,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
606
606
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
607
607
|
__epPropKey: true;
|
|
608
608
|
};
|
|
609
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
610
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
609
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
610
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
611
611
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
612
612
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
613
613
|
readonly inline: BooleanConstructor;
|
|
@@ -642,8 +642,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
642
642
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
643
643
|
__epPropKey: true;
|
|
644
644
|
};
|
|
645
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
646
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
645
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
646
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
647
647
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
648
648
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
649
649
|
readonly inline: BooleanConstructor;
|
|
@@ -691,7 +691,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
691
691
|
cssVarBlockName: (name: string) => string;
|
|
692
692
|
};
|
|
693
693
|
formClasses: import("vue").ComputedRef<(string | {
|
|
694
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
694
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
695
695
|
})[]>;
|
|
696
696
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
697
697
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -713,8 +713,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
713
713
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
714
714
|
__epPropKey: true;
|
|
715
715
|
};
|
|
716
|
-
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
717
|
-
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
716
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
717
|
+
requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
718
718
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
719
719
|
labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
720
720
|
inline: BooleanConstructor;
|
|
@@ -749,8 +749,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
749
749
|
$data: {};
|
|
750
750
|
$props: Partial<{
|
|
751
751
|
readonly disabled: boolean;
|
|
752
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
753
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
752
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
753
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
754
754
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
755
755
|
readonly labelSuffix: string;
|
|
756
756
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -768,8 +768,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
768
768
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
769
769
|
__epPropKey: true;
|
|
770
770
|
};
|
|
771
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
772
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
771
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
772
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
773
773
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
774
774
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
775
775
|
readonly inline: BooleanConstructor;
|
|
@@ -816,8 +816,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
816
816
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
817
817
|
__epPropKey: true;
|
|
818
818
|
};
|
|
819
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
820
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
819
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
820
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
821
821
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
822
822
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
823
823
|
readonly inline: BooleanConstructor;
|
|
@@ -852,8 +852,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
852
852
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
853
853
|
__epPropKey: true;
|
|
854
854
|
};
|
|
855
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
856
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
855
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
856
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
857
857
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
858
858
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
859
859
|
readonly inline: BooleanConstructor;
|
|
@@ -901,7 +901,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
901
901
|
cssVarBlockName: (name: string) => string;
|
|
902
902
|
};
|
|
903
903
|
formClasses: import("vue").ComputedRef<(string | {
|
|
904
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
904
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
905
905
|
})[]>;
|
|
906
906
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
907
907
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -917,8 +917,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
917
917
|
validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => boolean;
|
|
918
918
|
}, string, {
|
|
919
919
|
readonly disabled: boolean;
|
|
920
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
921
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
920
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
921
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
922
922
|
readonly labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
923
923
|
readonly labelSuffix: string;
|
|
924
924
|
readonly showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -956,8 +956,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
956
956
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
957
957
|
__epPropKey: true;
|
|
958
958
|
};
|
|
959
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
960
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
959
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
960
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
961
961
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
962
962
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
963
963
|
readonly inline: BooleanConstructor;
|
|
@@ -992,8 +992,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
992
992
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
993
993
|
__epPropKey: true;
|
|
994
994
|
};
|
|
995
|
-
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
996
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
995
|
+
readonly labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "top" | "left", unknown, "right", boolean>;
|
|
996
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
997
997
|
readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
998
998
|
readonly labelSuffix: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
999
999
|
readonly inline: BooleanConstructor;
|
|
@@ -1041,7 +1041,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1041
1041
|
cssVarBlockName: (name: string) => string;
|
|
1042
1042
|
};
|
|
1043
1043
|
formClasses: import("vue").ComputedRef<(string | {
|
|
1044
|
-
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
1044
|
+
[x: string]: boolean | import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
1045
1045
|
})[]>;
|
|
1046
1046
|
addField: (field: import("element-plus").FormItemContext) => void;
|
|
1047
1047
|
removeField: (field: import("element-plus").FormItemContext) => void;
|
|
@@ -1058,8 +1058,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1058
1058
|
readonly: boolean;
|
|
1059
1059
|
data: Record<string, any>;
|
|
1060
1060
|
disabled: boolean;
|
|
1061
|
-
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
1062
|
-
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
1061
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
1062
|
+
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
1063
1063
|
labelSuffix: string;
|
|
1064
1064
|
statusIcon: boolean;
|
|
1065
1065
|
validateOnRuleChange: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -31,8 +31,8 @@ declare const VkfFormItemRenderer: import("vue").DefineComponent<{
|
|
|
31
31
|
default: () => never[];
|
|
32
32
|
};
|
|
33
33
|
}>>, {
|
|
34
|
-
source: RendererTreeData[];
|
|
35
34
|
templateInstances: Record<string, ComponentInternalInstance>;
|
|
35
|
+
source: RendererTreeData[];
|
|
36
36
|
k: (string | number)[];
|
|
37
37
|
}>;
|
|
38
38
|
export default VkfFormItemRenderer;
|