@vunk/form 2.10.1 → 2.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (205) hide show
  1. package/components/api-tables-select/index.cjs +37 -36
  2. package/components/api-tables-select/index.d.ts +4 -0
  3. package/components/api-tables-select/index.mjs +37 -36
  4. package/components/api-tables-select/src/ctx.d.ts +374 -0
  5. package/components/api-tables-select/src/index.vue.d.ts +1335 -0
  6. package/components/api-tables-select/src/types.d.ts +19 -0
  7. package/components/button/index.d.ts +4 -0
  8. package/components/button/src/ctx.d.ts +190 -0
  9. package/components/button/src/index.vue.d.ts +822 -0
  10. package/components/button/src/types.d.ts +13 -0
  11. package/components/card-input-collection/index.cjs +67 -70
  12. package/components/card-input-collection/index.d.ts +4 -0
  13. package/components/card-input-collection/index.mjs +68 -71
  14. package/components/card-input-collection/src/ctx.d.ts +119 -0
  15. package/components/card-input-collection/src/index.vue.d.ts +1043 -0
  16. package/components/card-input-collection/src/types.d.ts +10 -0
  17. package/components/cascader/index.d.ts +6 -0
  18. package/components/cascader/src/ctx.d.ts +297 -0
  19. package/components/cascader/src/index.vue.d.ts +650 -0
  20. package/components/cascader/src/types.d.ts +19 -0
  21. package/components/cascader/src/use.d.ts +5 -0
  22. package/components/checkbox/index.cjs +2 -3
  23. package/components/checkbox/index.d.ts +5 -0
  24. package/components/checkbox/index.mjs +2 -3
  25. package/components/checkbox/src/ctx.d.ts +151 -0
  26. package/components/checkbox/src/index.vue.d.ts +1362 -0
  27. package/components/checkbox/src/types.d.ts +8 -0
  28. package/components/color-picker/index.d.ts +4 -0
  29. package/components/color-picker/src/ctx.d.ts +153 -0
  30. package/components/color-picker/src/index.vue.d.ts +341 -0
  31. package/components/color-picker/src/types.d.ts +7 -0
  32. package/components/date-picker/index.d.ts +5 -0
  33. package/components/date-picker/src/ctx.d.ts +325 -0
  34. package/components/date-picker/src/index.vue.d.ts +1422 -0
  35. package/components/date-picker/src/types.d.ts +20 -0
  36. package/components/date-picker-range/index.d.ts +4 -0
  37. package/components/date-picker-range/src/ctx.d.ts +328 -0
  38. package/components/date-picker-range/src/index.vue.d.ts +717 -0
  39. package/components/date-picker-range/src/types.d.ts +12 -0
  40. package/components/download-plus/index.cjs +4 -4
  41. package/components/download-plus/index.d.ts +4 -0
  42. package/components/download-plus/index.mjs +4 -4
  43. package/components/download-plus/src/api.d.ts +13 -0
  44. package/components/download-plus/src/const.d.ts +9 -0
  45. package/components/download-plus/src/ctx.d.ts +129 -0
  46. package/components/download-plus/src/index.vue.d.ts +1432 -0
  47. package/components/download-plus/src/types.d.ts +17 -0
  48. package/components/editable-text/index.cjs +9 -0
  49. package/components/editable-text/index.d.ts +4 -0
  50. package/components/editable-text/index.mjs +9 -0
  51. package/components/editable-text/src/ctx.d.ts +132 -0
  52. package/components/editable-text/src/index.vue.d.ts +3399 -0
  53. package/components/editable-text/src/types.d.ts +1 -0
  54. package/components/esri-input-geojson/index.d.ts +6 -0
  55. package/components/esri-input-geojson/src/append.vue.d.ts +1179 -0
  56. package/components/esri-input-geojson/src/const.d.ts +12 -0
  57. package/components/esri-input-geojson/src/ctx.d.ts +340 -0
  58. package/components/esri-input-geojson/src/default-view.vue.d.ts +133 -0
  59. package/components/esri-input-geojson/src/index.vue.d.ts +1459 -0
  60. package/components/esri-input-geojson/src/types.d.ts +22 -0
  61. package/components/esri-input-geojson/src/viewer.vue.d.ts +427 -0
  62. package/components/fieldset/index.d.ts +4 -0
  63. package/components/fieldset/src/ctx.d.ts +12 -0
  64. package/components/fieldset/src/index.vue.d.ts +23 -0
  65. package/components/fieldset/src/types.d.ts +1 -0
  66. package/components/fieldset/src/use.d.ts +5 -0
  67. package/components/form/index.d.ts +5 -0
  68. package/components/form/src/ctx.d.ts +132 -0
  69. package/components/form/src/index.vue.d.ts +4007 -0
  70. package/components/form/src/types.d.ts +25 -0
  71. package/components/form/src/utils.d.ts +15 -0
  72. package/components/form-item/index.d.ts +5 -0
  73. package/components/form-item/src/ctx.d.ts +107 -0
  74. package/components/form-item/src/index.vue.d.ts +961 -0
  75. package/components/form-item/src/types.d.ts +9 -0
  76. package/components/form-item-renderer/index.d.ts +4 -0
  77. package/components/form-item-renderer/src/core.vue.d.ts +38 -0
  78. package/components/form-item-renderer/src/ctx.d.ts +16 -0
  79. package/components/form-item-renderer/src/index.vue.d.ts +93 -0
  80. package/components/form-item-renderer/src/types.d.ts +5 -0
  81. package/components/form-item-renderer/src/utils.d.ts +5 -0
  82. package/components/form-item-renderer-template/index.d.ts +4 -0
  83. package/components/form-item-renderer-template/src/ctx.d.ts +7 -0
  84. package/components/form-item-renderer-template/src/index.vue.d.ts +16 -0
  85. package/components/form-item-renderer-template/src/types.d.ts +55 -0
  86. package/components/information/index.d.ts +4 -0
  87. package/components/information/src/ctx.d.ts +13 -0
  88. package/components/information/src/index.vue.d.ts +23 -0
  89. package/components/information/src/types.d.ts +3 -0
  90. package/components/information-collection/index.d.ts +4 -0
  91. package/components/information-collection/src/ctx.d.ts +147 -0
  92. package/components/information-collection/src/index.vue.d.ts +302 -0
  93. package/components/information-collection/src/types.d.ts +6 -0
  94. package/components/information-tag/index.d.ts +4 -0
  95. package/components/information-tag/src/ctx.d.ts +64 -0
  96. package/components/information-tag/src/index.vue.d.ts +134 -0
  97. package/components/information-tag/src/types.d.ts +1 -0
  98. package/components/information-templates-default/index.d.ts +4 -0
  99. package/components/information-templates-default/src/ctx.d.ts +2 -0
  100. package/components/information-templates-default/src/index.vue.d.ts +2 -0
  101. package/components/information-templates-default/src/types.d.ts +1 -0
  102. package/components/input/index.d.ts +5 -0
  103. package/components/input/src/ctx.d.ts +269 -0
  104. package/components/input/src/index.vue.d.ts +1192 -0
  105. package/components/input/src/types.d.ts +13 -0
  106. package/components/input-collection/index.cjs +105 -74
  107. package/components/input-collection/index.d.ts +4 -0
  108. package/components/input-collection/index.mjs +107 -76
  109. package/components/input-collection/src/ctx.d.ts +137 -0
  110. package/components/input-collection/src/index.vue.d.ts +1141 -0
  111. package/components/input-collection/src/types.d.ts +29 -0
  112. package/components/input-link/index.d.ts +4 -0
  113. package/components/input-link/src/ctx.d.ts +273 -0
  114. package/components/input-link/src/index.vue.d.ts +577 -0
  115. package/components/input-link/src/types.d.ts +7 -0
  116. package/components/input-number/index.d.ts +4 -0
  117. package/components/input-number/src/ctx.d.ts +208 -0
  118. package/components/input-number/src/index.vue.d.ts +816 -0
  119. package/components/input-number/src/types.d.ts +12 -0
  120. package/components/input-tag/index.d.ts +5 -0
  121. package/components/input-tag/src/ctx.d.ts +239 -0
  122. package/components/input-tag/src/index.vue.d.ts +991 -0
  123. package/components/input-tag/src/types.d.ts +22 -0
  124. package/components/monaco-editor/index.d.ts +4 -0
  125. package/components/monaco-editor/src/ctx.d.ts +115 -0
  126. package/components/monaco-editor/src/index.vue.d.ts +303 -0
  127. package/components/monaco-editor/src/types.d.ts +7 -0
  128. package/components/radio/index.cjs +2 -3
  129. package/components/radio/index.d.ts +4 -0
  130. package/components/radio/index.mjs +2 -3
  131. package/components/radio/src/ctx.d.ts +162 -0
  132. package/components/radio/src/index.vue.d.ts +1311 -0
  133. package/components/radio/src/types.d.ts +8 -0
  134. package/components/renderer-data/index.d.ts +4 -0
  135. package/components/renderer-data/src/ctx.d.ts +12 -0
  136. package/components/renderer-data/src/index.vue.d.ts +20 -0
  137. package/components/renderer-data/src/types.d.ts +1 -0
  138. package/components/select/index.d.ts +5 -0
  139. package/components/select/src/ctx.d.ts +225 -0
  140. package/components/select/src/index.vue.d.ts +1043 -0
  141. package/components/select/src/types.d.ts +11 -0
  142. package/components/slider/index.d.ts +4 -0
  143. package/components/slider/src/ctx.d.ts +253 -0
  144. package/components/slider/src/index.vue.d.ts +588 -0
  145. package/components/slider/src/types.d.ts +7 -0
  146. package/components/switch/index.d.ts +4 -0
  147. package/components/switch/src/ctx.d.ts +208 -0
  148. package/components/switch/src/index.vue.d.ts +895 -0
  149. package/components/switch/src/types.d.ts +8 -0
  150. package/components/tables-select/index.d.ts +5 -0
  151. package/components/tables-select/src/ctx.d.ts +420 -0
  152. package/components/tables-select/src/index.vue.d.ts +5411 -0
  153. package/components/tables-select/src/types.d.ts +9 -0
  154. package/components/template-instances-provider/index.d.ts +3 -0
  155. package/components/template-instances-provider/src/index.vue.d.ts +6 -0
  156. package/components/templates-default/index.d.ts +4 -0
  157. package/components/templates-default/src/ctx.d.ts +19 -0
  158. package/components/templates-default/src/index.vue.d.ts +187 -0
  159. package/components/templates-default/src/types.d.ts +55 -0
  160. package/components/templates-element-plus/index.d.ts +4 -0
  161. package/components/templates-element-plus/src/ctx.d.ts +9 -0
  162. package/components/templates-element-plus/src/index.vue.d.ts +301 -0
  163. package/components/templates-element-plus/src/types.d.ts +13 -0
  164. package/components/templates-esri/index.d.ts +4 -0
  165. package/components/templates-esri/src/ctx.d.ts +11 -0
  166. package/components/templates-esri/src/index.vue.d.ts +43 -0
  167. package/components/templates-esri/src/types.d.ts +2 -0
  168. package/components/templates-layout/index.d.ts +4 -0
  169. package/components/templates-layout/src/ctx.d.ts +9 -0
  170. package/components/templates-layout/src/index.vue.d.ts +446 -0
  171. package/components/templates-layout/src/types.d.ts +32 -0
  172. package/components/templates-variant/index.d.ts +4 -0
  173. package/components/templates-variant/src/ctx.d.ts +11 -0
  174. package/components/templates-variant/src/index.vue.d.ts +43 -0
  175. package/components/templates-variant/src/types.d.ts +2 -0
  176. package/components/upload/index.cjs +2 -2
  177. package/components/upload/index.d.ts +5 -0
  178. package/components/upload/index.mjs +2 -2
  179. package/components/upload/src/ctx.d.ts +294 -0
  180. package/components/upload/src/file.vue.d.ts +492 -0
  181. package/components/upload/src/index.vue.d.ts +1935 -0
  182. package/components/upload/src/types.d.ts +13 -0
  183. package/components/upload-plus/index.cjs +79 -86
  184. package/components/upload-plus/index.d.ts +6 -0
  185. package/components/upload-plus/index.mjs +79 -86
  186. package/components/upload-plus/src/api.d.ts +38 -0
  187. package/components/upload-plus/src/const.d.ts +9 -0
  188. package/components/upload-plus/src/ctx.d.ts +148 -0
  189. package/components/upload-plus/src/index.vue.d.ts +1754 -0
  190. package/components/upload-plus/src/types.d.ts +32 -0
  191. package/components/van-cascader/index.d.ts +4 -0
  192. package/components/van-cascader/src/ctx.d.ts +284 -0
  193. package/components/van-cascader/src/index.vue.d.ts +2116 -0
  194. package/components/van-cascader/src/types.d.ts +1 -0
  195. package/components/var-datetime-picker/index.d.ts +4 -0
  196. package/components/var-datetime-picker/src/const.d.ts +10 -0
  197. package/components/var-datetime-picker/src/ctx.d.ts +112 -0
  198. package/components/var-datetime-picker/src/index.vue.d.ts +1482 -0
  199. package/components/var-datetime-picker/src/types.d.ts +22 -0
  200. package/components/vditor/index.d.ts +4 -0
  201. package/components/vditor/src/ctx.d.ts +122 -0
  202. package/components/vditor/src/index.vue.d.ts +418 -0
  203. package/components/vditor/src/types.d.ts +7 -0
  204. package/package.json +1 -1
  205. package/shared/element-plus/ctx.d.ts +111 -30
@@ -0,0 +1,4007 @@
1
+ import { ElForm } from 'element-plus';
2
+ import { RowItem } from './types';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ data: {
5
+ type: import("vue").PropType<Record<string, any>>;
6
+ default: () => {};
7
+ };
8
+ formItems: {
9
+ type: import("vue").PropType<any[]>;
10
+ default: () => any[];
11
+ };
12
+ readonly: {
13
+ type: BooleanConstructor;
14
+ };
15
+ elRef: {
16
+ type: import("vue").PropType<import("@vunk/core").Func<InstanceType<typeof ElForm>>>;
17
+ default: () => () => void;
18
+ };
19
+ layout: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ rowSource: {
24
+ type: import("vue").PropType<Partial<RowItem>>;
25
+ default: () => {};
26
+ };
27
+ colSource: {
28
+ type: import("vue").PropType<Partial<import("./types").ColItem>>;
29
+ default: () => import("./types").ColItem;
30
+ };
31
+ model: ObjectConstructor;
32
+ rules: {
33
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
34
+ readonly required: false;
35
+ readonly validator: ((val: unknown) => boolean) | undefined;
36
+ __epPropKey: true;
37
+ };
38
+ labelPosition: {
39
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
40
+ readonly required: false;
41
+ readonly validator: ((val: unknown) => boolean) | undefined;
42
+ __epPropKey: true;
43
+ } & {
44
+ readonly default: "right";
45
+ };
46
+ requireAsteriskPosition: {
47
+ readonly type: import("vue").PropType<"left" | "right">;
48
+ readonly required: false;
49
+ readonly validator: ((val: unknown) => boolean) | undefined;
50
+ __epPropKey: true;
51
+ } & {
52
+ readonly default: "left";
53
+ };
54
+ labelWidth: {
55
+ readonly type: import("vue").PropType<string | number>;
56
+ readonly required: false;
57
+ readonly validator: ((val: unknown) => boolean) | undefined;
58
+ __epPropKey: true;
59
+ } & {
60
+ readonly default: "";
61
+ };
62
+ labelSuffix: {
63
+ readonly type: import("vue").PropType<string>;
64
+ readonly required: false;
65
+ readonly validator: ((val: unknown) => boolean) | undefined;
66
+ __epPropKey: true;
67
+ } & {
68
+ readonly default: "";
69
+ };
70
+ inline: BooleanConstructor;
71
+ inlineMessage: BooleanConstructor;
72
+ statusIcon: BooleanConstructor;
73
+ showMessage: {
74
+ readonly type: import("vue").PropType<boolean>;
75
+ readonly required: false;
76
+ readonly validator: ((val: unknown) => boolean) | undefined;
77
+ __epPropKey: true;
78
+ } & {
79
+ readonly default: true;
80
+ };
81
+ validateOnRuleChange: {
82
+ readonly type: import("vue").PropType<boolean>;
83
+ readonly required: false;
84
+ readonly validator: ((val: unknown) => boolean) | undefined;
85
+ __epPropKey: true;
86
+ } & {
87
+ readonly default: true;
88
+ };
89
+ hideRequiredAsterisk: BooleanConstructor;
90
+ scrollToError: BooleanConstructor;
91
+ scrollIntoViewOptions: {
92
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
93
+ readonly required: false;
94
+ readonly validator: ((val: unknown) => boolean) | undefined;
95
+ __epPropKey: true;
96
+ } & {
97
+ readonly default: true;
98
+ };
99
+ size: {
100
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
101
+ readonly required: false;
102
+ readonly validator: ((val: unknown) => boolean) | undefined;
103
+ __epPropKey: true;
104
+ };
105
+ disabled: BooleanConstructor;
106
+ }>, {
107
+ formProps: import("vue").ComputedRef<{
108
+ size: "" | "default" | "small" | "large";
109
+ inline: boolean;
110
+ labelWidth: string | number;
111
+ labelPosition: "top" | "left" | "right";
112
+ rules: Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>;
113
+ inlineMessage: boolean;
114
+ showMessage: boolean;
115
+ disabled: boolean;
116
+ requireAsteriskPosition: "left" | "right";
117
+ labelSuffix: string;
118
+ statusIcon: boolean;
119
+ validateOnRuleChange: boolean;
120
+ hideRequiredAsterisk: boolean;
121
+ scrollToError: boolean;
122
+ scrollIntoViewOptions: boolean | Record<string, any>;
123
+ }>;
124
+ formEmits: {};
125
+ getValue: (obj: any, k: any, intoUndefined?: import("@vunk/core").IntoUndefined, safe?: boolean) => any;
126
+ getRef: (e: InstanceType<typeof ElForm>) => void;
127
+ computed: typeof import("@vue/reactivity").computed;
128
+ rendererSource: import("vue").ComputedRef<any>;
129
+ handleSubmit: (e: Event) => void;
130
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
131
+ setData: (e: import("@vunk/core").SetDataEvent) => import("@vunk/core").SetDataEvent;
132
+ validate: any;
133
+ submit: any;
134
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
135
+ data: {
136
+ type: import("vue").PropType<Record<string, any>>;
137
+ default: () => {};
138
+ };
139
+ formItems: {
140
+ type: import("vue").PropType<any[]>;
141
+ default: () => any[];
142
+ };
143
+ readonly: {
144
+ type: BooleanConstructor;
145
+ };
146
+ elRef: {
147
+ type: import("vue").PropType<import("@vunk/core").Func<InstanceType<typeof ElForm>>>;
148
+ default: () => () => void;
149
+ };
150
+ layout: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ rowSource: {
155
+ type: import("vue").PropType<Partial<RowItem>>;
156
+ default: () => {};
157
+ };
158
+ colSource: {
159
+ type: import("vue").PropType<Partial<import("./types").ColItem>>;
160
+ default: () => import("./types").ColItem;
161
+ };
162
+ model: ObjectConstructor;
163
+ rules: {
164
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
165
+ readonly required: false;
166
+ readonly validator: ((val: unknown) => boolean) | undefined;
167
+ __epPropKey: true;
168
+ };
169
+ labelPosition: {
170
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
171
+ readonly required: false;
172
+ readonly validator: ((val: unknown) => boolean) | undefined;
173
+ __epPropKey: true;
174
+ } & {
175
+ readonly default: "right";
176
+ };
177
+ requireAsteriskPosition: {
178
+ readonly type: import("vue").PropType<"left" | "right">;
179
+ readonly required: false;
180
+ readonly validator: ((val: unknown) => boolean) | undefined;
181
+ __epPropKey: true;
182
+ } & {
183
+ readonly default: "left";
184
+ };
185
+ labelWidth: {
186
+ readonly type: import("vue").PropType<string | number>;
187
+ readonly required: false;
188
+ readonly validator: ((val: unknown) => boolean) | undefined;
189
+ __epPropKey: true;
190
+ } & {
191
+ readonly default: "";
192
+ };
193
+ labelSuffix: {
194
+ readonly type: import("vue").PropType<string>;
195
+ readonly required: false;
196
+ readonly validator: ((val: unknown) => boolean) | undefined;
197
+ __epPropKey: true;
198
+ } & {
199
+ readonly default: "";
200
+ };
201
+ inline: BooleanConstructor;
202
+ inlineMessage: BooleanConstructor;
203
+ statusIcon: BooleanConstructor;
204
+ showMessage: {
205
+ readonly type: import("vue").PropType<boolean>;
206
+ readonly required: false;
207
+ readonly validator: ((val: unknown) => boolean) | undefined;
208
+ __epPropKey: true;
209
+ } & {
210
+ readonly default: true;
211
+ };
212
+ validateOnRuleChange: {
213
+ readonly type: import("vue").PropType<boolean>;
214
+ readonly required: false;
215
+ readonly validator: ((val: unknown) => boolean) | undefined;
216
+ __epPropKey: true;
217
+ } & {
218
+ readonly default: true;
219
+ };
220
+ hideRequiredAsterisk: BooleanConstructor;
221
+ scrollToError: BooleanConstructor;
222
+ scrollIntoViewOptions: {
223
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
224
+ readonly required: false;
225
+ readonly validator: ((val: unknown) => boolean) | undefined;
226
+ __epPropKey: true;
227
+ } & {
228
+ readonly default: true;
229
+ };
230
+ size: {
231
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
232
+ readonly required: false;
233
+ readonly validator: ((val: unknown) => boolean) | undefined;
234
+ __epPropKey: true;
235
+ };
236
+ disabled: BooleanConstructor;
237
+ }>> & Readonly<{
238
+ onSubmit?: (...args: any[] | unknown[]) => any;
239
+ onSetData?: (e: import("@vunk/core").SetDataEvent) => any;
240
+ onValidate?: (...args: any[] | unknown[]) => any;
241
+ }>, {
242
+ elRef: (arg: {
243
+ $: import("vue").ComponentInternalInstance;
244
+ $data: {};
245
+ $props: Partial<{
246
+ readonly disabled: boolean;
247
+ readonly inline: boolean;
248
+ readonly labelWidth: string | number;
249
+ readonly labelPosition: "top" | "left" | "right";
250
+ readonly inlineMessage: boolean;
251
+ readonly showMessage: boolean;
252
+ readonly requireAsteriskPosition: "left" | "right";
253
+ readonly labelSuffix: string;
254
+ readonly validateOnRuleChange: boolean;
255
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
256
+ readonly statusIcon: boolean;
257
+ readonly hideRequiredAsterisk: boolean;
258
+ readonly scrollToError: boolean;
259
+ }> & Omit<{
260
+ readonly inline: boolean;
261
+ readonly labelWidth: string | number;
262
+ readonly labelPosition: "top" | "left" | "right";
263
+ readonly inlineMessage: boolean;
264
+ readonly showMessage: boolean;
265
+ readonly disabled: boolean;
266
+ readonly requireAsteriskPosition: "left" | "right";
267
+ readonly labelSuffix: string;
268
+ readonly statusIcon: boolean;
269
+ readonly validateOnRuleChange: boolean;
270
+ readonly hideRequiredAsterisk: boolean;
271
+ readonly scrollToError: boolean;
272
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
273
+ readonly size?: "" | "default" | "small" | "large";
274
+ readonly rules?: Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>;
275
+ readonly model?: Record<string, any>;
276
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
277
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "inline" | "labelWidth" | "labelPosition" | "inlineMessage" | "showMessage" | "disabled" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions">;
278
+ $attrs: {
279
+ [x: string]: unknown;
280
+ };
281
+ $refs: {
282
+ [x: string]: unknown;
283
+ };
284
+ $slots: Readonly<{
285
+ [name: string]: import("vue").Slot<any>;
286
+ }>;
287
+ $root: import("vue").ComponentPublicInstance | null;
288
+ $parent: import("vue").ComponentPublicInstance | null;
289
+ $host: Element | null;
290
+ $emit: (event: "validate", prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => void;
291
+ $el: any;
292
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
293
+ readonly model: ObjectConstructor;
294
+ readonly rules: {
295
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
296
+ readonly required: false;
297
+ readonly validator: ((val: unknown) => boolean) | undefined;
298
+ __epPropKey: true;
299
+ };
300
+ readonly labelPosition: {
301
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
302
+ readonly required: false;
303
+ readonly validator: ((val: unknown) => boolean) | undefined;
304
+ __epPropKey: true;
305
+ } & {
306
+ readonly default: "right";
307
+ };
308
+ readonly requireAsteriskPosition: {
309
+ readonly type: import("vue").PropType<"left" | "right">;
310
+ readonly required: false;
311
+ readonly validator: ((val: unknown) => boolean) | undefined;
312
+ __epPropKey: true;
313
+ } & {
314
+ readonly default: "left";
315
+ };
316
+ readonly labelWidth: {
317
+ readonly type: import("vue").PropType<string | number>;
318
+ readonly required: false;
319
+ readonly validator: ((val: unknown) => boolean) | undefined;
320
+ __epPropKey: true;
321
+ } & {
322
+ readonly default: "";
323
+ };
324
+ readonly labelSuffix: {
325
+ readonly type: import("vue").PropType<string>;
326
+ readonly required: false;
327
+ readonly validator: ((val: unknown) => boolean) | undefined;
328
+ __epPropKey: true;
329
+ } & {
330
+ readonly default: "";
331
+ };
332
+ readonly inline: BooleanConstructor;
333
+ readonly inlineMessage: BooleanConstructor;
334
+ readonly statusIcon: BooleanConstructor;
335
+ readonly showMessage: {
336
+ readonly type: import("vue").PropType<boolean>;
337
+ readonly required: false;
338
+ readonly validator: ((val: unknown) => boolean) | undefined;
339
+ __epPropKey: true;
340
+ } & {
341
+ readonly default: true;
342
+ };
343
+ readonly validateOnRuleChange: {
344
+ readonly type: import("vue").PropType<boolean>;
345
+ readonly required: false;
346
+ readonly validator: ((val: unknown) => boolean) | undefined;
347
+ __epPropKey: true;
348
+ } & {
349
+ readonly default: true;
350
+ };
351
+ readonly hideRequiredAsterisk: BooleanConstructor;
352
+ readonly scrollToError: BooleanConstructor;
353
+ readonly scrollIntoViewOptions: {
354
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
355
+ readonly required: false;
356
+ readonly validator: ((val: unknown) => boolean) | undefined;
357
+ __epPropKey: true;
358
+ } & {
359
+ readonly default: true;
360
+ };
361
+ readonly size: {
362
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
363
+ readonly required: false;
364
+ readonly validator: ((val: unknown) => boolean) | undefined;
365
+ __epPropKey: true;
366
+ };
367
+ readonly disabled: BooleanConstructor;
368
+ }>> & {
369
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
370
+ }, {
371
+ validate: (callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
372
+ validateField: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[], callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
373
+ resetFields: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
374
+ clearValidate: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
375
+ scrollToField: (prop: import("element-plus").FormItemProp) => void;
376
+ getField: (prop: import("element-plus").FormItemProp) => import("element-plus").FormItemContext | undefined;
377
+ fields: {
378
+ $el: HTMLDivElement | undefined;
379
+ size: import("element-plus").ComponentSize;
380
+ validateMessage: string;
381
+ validateState: import("element-plus").FormItemValidateState;
382
+ isGroup: boolean;
383
+ labelId: string;
384
+ inputIds: string[];
385
+ hasLabel: boolean;
386
+ fieldValue: any;
387
+ propString: string;
388
+ addInputId: (id: string) => void;
389
+ removeInputId: (id: string) => void;
390
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
391
+ resetField: () => void;
392
+ clearValidate: () => void;
393
+ readonly labelWidth: string | number;
394
+ readonly labelPosition: "" | "top" | "left" | "right";
395
+ readonly inlineMessage: string | boolean;
396
+ readonly showMessage: boolean;
397
+ readonly label?: string | undefined;
398
+ readonly prop?: import("element-plus").FormItemProp | undefined;
399
+ readonly required?: boolean | undefined;
400
+ readonly error?: string | undefined;
401
+ readonly rules?: {
402
+ trigger?: (string | string[]) | undefined;
403
+ type?: import("async-validator").RuleType | undefined;
404
+ required?: boolean | undefined;
405
+ pattern?: string | {
406
+ exec: (string: string) => RegExpExecArray | null;
407
+ test: (string: string) => boolean;
408
+ readonly source: string;
409
+ readonly global: boolean;
410
+ readonly ignoreCase: boolean;
411
+ readonly multiline: boolean;
412
+ lastIndex: number;
413
+ compile: (pattern: string, flags?: string) => RegExp;
414
+ readonly flags: string;
415
+ readonly sticky: boolean;
416
+ readonly unicode: boolean;
417
+ readonly dotAll: boolean;
418
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
419
+ [Symbol.replace]: {
420
+ (string: string, replaceValue: string): string;
421
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
422
+ };
423
+ [Symbol.search]: (string: string) => number;
424
+ [Symbol.split]: (string: string, limit?: number) => string[];
425
+ } | undefined;
426
+ min?: number | undefined;
427
+ max?: number | undefined;
428
+ len?: number | undefined;
429
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
430
+ whitespace?: boolean | undefined;
431
+ fields?: Record<string, import("async-validator").Rule> | undefined;
432
+ options?: {
433
+ suppressWarning?: boolean | undefined;
434
+ suppressValidatorError?: boolean | undefined;
435
+ first?: boolean | undefined;
436
+ firstFields?: (boolean | string[]) | undefined;
437
+ messages?: {
438
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
439
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
440
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
441
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
442
+ date?: {
443
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
444
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
445
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
446
+ } | undefined;
447
+ types?: {
448
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
449
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
450
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
451
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
452
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
453
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
454
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
455
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
456
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
457
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
458
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
459
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
460
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
461
+ } | undefined;
462
+ string?: {
463
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
464
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
465
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
466
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
467
+ } | undefined;
468
+ number?: {
469
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
470
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
471
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
472
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
473
+ } | undefined;
474
+ array?: {
475
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
476
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
477
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
478
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
479
+ } | undefined;
480
+ pattern?: {
481
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
482
+ } | undefined;
483
+ } | undefined;
484
+ keys?: string[] | undefined;
485
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
486
+ } | undefined;
487
+ defaultField?: {
488
+ type?: import("async-validator").RuleType | undefined;
489
+ required?: boolean | undefined;
490
+ pattern?: string | {
491
+ exec: (string: string) => RegExpExecArray | null;
492
+ test: (string: string) => boolean;
493
+ readonly source: string;
494
+ readonly global: boolean;
495
+ readonly ignoreCase: boolean;
496
+ readonly multiline: boolean;
497
+ lastIndex: number;
498
+ compile: (pattern: string, flags?: string) => RegExp;
499
+ readonly flags: string;
500
+ readonly sticky: boolean;
501
+ readonly unicode: boolean;
502
+ readonly dotAll: boolean;
503
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
504
+ [Symbol.replace]: {
505
+ (string: string, replaceValue: string): string;
506
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
507
+ };
508
+ [Symbol.search]: (string: string) => number;
509
+ [Symbol.split]: (string: string, limit?: number) => string[];
510
+ } | undefined;
511
+ min?: number | undefined;
512
+ max?: number | undefined;
513
+ len?: number | undefined;
514
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
515
+ whitespace?: boolean | undefined;
516
+ fields?: Record<string, import("async-validator").Rule> | undefined;
517
+ options?: {
518
+ suppressWarning?: boolean | undefined;
519
+ suppressValidatorError?: boolean | undefined;
520
+ first?: boolean | undefined;
521
+ firstFields?: (boolean | string[]) | undefined;
522
+ messages?: {
523
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
524
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
525
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
526
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
527
+ date?: {
528
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
529
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
530
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
531
+ } | undefined;
532
+ types?: {
533
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
534
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
535
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
536
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
537
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
538
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
539
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
540
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
541
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
542
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
543
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
544
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
545
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
546
+ } | undefined;
547
+ string?: {
548
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
549
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
550
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
551
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
552
+ } | undefined;
553
+ number?: {
554
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
555
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
556
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
557
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
558
+ } | undefined;
559
+ array?: {
560
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
561
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
562
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
563
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
564
+ } | undefined;
565
+ pattern?: {
566
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
567
+ } | undefined;
568
+ } | undefined;
569
+ keys?: string[] | undefined;
570
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
571
+ } | undefined;
572
+ defaultField?: any | any[] | undefined;
573
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
574
+ message?: (string | ((a?: string) => string)) | undefined;
575
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
576
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
577
+ } | {
578
+ type?: import("async-validator").RuleType | undefined;
579
+ required?: boolean | undefined;
580
+ pattern?: string | {
581
+ exec: (string: string) => RegExpExecArray | null;
582
+ test: (string: string) => boolean;
583
+ readonly source: string;
584
+ readonly global: boolean;
585
+ readonly ignoreCase: boolean;
586
+ readonly multiline: boolean;
587
+ lastIndex: number;
588
+ compile: (pattern: string, flags?: string) => RegExp;
589
+ readonly flags: string;
590
+ readonly sticky: boolean;
591
+ readonly unicode: boolean;
592
+ readonly dotAll: boolean;
593
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
594
+ [Symbol.replace]: {
595
+ (string: string, replaceValue: string): string;
596
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
597
+ };
598
+ [Symbol.search]: (string: string) => number;
599
+ [Symbol.split]: (string: string, limit?: number) => string[];
600
+ } | undefined;
601
+ min?: number | undefined;
602
+ max?: number | undefined;
603
+ len?: number | undefined;
604
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
605
+ whitespace?: boolean | undefined;
606
+ fields?: Record<string, import("async-validator").Rule> | undefined;
607
+ options?: {
608
+ suppressWarning?: boolean | undefined;
609
+ suppressValidatorError?: boolean | undefined;
610
+ first?: boolean | undefined;
611
+ firstFields?: (boolean | string[]) | undefined;
612
+ messages?: {
613
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
614
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
615
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
616
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
617
+ date?: {
618
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
619
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
620
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
621
+ } | undefined;
622
+ types?: {
623
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
624
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
625
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
626
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
627
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
628
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
629
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
630
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
631
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
632
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
633
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
634
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
635
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
636
+ } | undefined;
637
+ string?: {
638
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
639
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
640
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
641
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
642
+ } | undefined;
643
+ number?: {
644
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
645
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
646
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
647
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
648
+ } | undefined;
649
+ array?: {
650
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
651
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
652
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
653
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
654
+ } | undefined;
655
+ pattern?: {
656
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
657
+ } | undefined;
658
+ } | undefined;
659
+ keys?: string[] | undefined;
660
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
661
+ } | undefined;
662
+ defaultField?: any | any[] | undefined;
663
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
664
+ message?: (string | ((a?: string) => string)) | undefined;
665
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
666
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
667
+ }[] | undefined;
668
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
669
+ message?: (string | ((a?: string) => string)) | undefined;
670
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
671
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
672
+ } | {
673
+ trigger?: (string | string[]) | undefined;
674
+ type?: import("async-validator").RuleType | undefined;
675
+ required?: boolean | undefined;
676
+ pattern?: string | {
677
+ exec: (string: string) => RegExpExecArray | null;
678
+ test: (string: string) => boolean;
679
+ readonly source: string;
680
+ readonly global: boolean;
681
+ readonly ignoreCase: boolean;
682
+ readonly multiline: boolean;
683
+ lastIndex: number;
684
+ compile: (pattern: string, flags?: string) => RegExp;
685
+ readonly flags: string;
686
+ readonly sticky: boolean;
687
+ readonly unicode: boolean;
688
+ readonly dotAll: boolean;
689
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
690
+ [Symbol.replace]: {
691
+ (string: string, replaceValue: string): string;
692
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
693
+ };
694
+ [Symbol.search]: (string: string) => number;
695
+ [Symbol.split]: (string: string, limit?: number) => string[];
696
+ } | undefined;
697
+ min?: number | undefined;
698
+ max?: number | undefined;
699
+ len?: number | undefined;
700
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
701
+ whitespace?: boolean | undefined;
702
+ fields?: Record<string, import("async-validator").Rule> | undefined;
703
+ options?: {
704
+ suppressWarning?: boolean | undefined;
705
+ suppressValidatorError?: boolean | undefined;
706
+ first?: boolean | undefined;
707
+ firstFields?: (boolean | string[]) | undefined;
708
+ messages?: {
709
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
710
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
711
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
712
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
713
+ date?: {
714
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
715
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
716
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
717
+ } | undefined;
718
+ types?: {
719
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
720
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
721
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
722
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
723
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
724
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
725
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
726
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
727
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
728
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
729
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
730
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
731
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
732
+ } | undefined;
733
+ string?: {
734
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
735
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
736
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
737
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
738
+ } | undefined;
739
+ number?: {
740
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
741
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
742
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
743
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
744
+ } | undefined;
745
+ array?: {
746
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
747
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
748
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
749
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
750
+ } | undefined;
751
+ pattern?: {
752
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
753
+ } | undefined;
754
+ } | undefined;
755
+ keys?: string[] | undefined;
756
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
757
+ } | undefined;
758
+ defaultField?: {
759
+ type?: import("async-validator").RuleType | undefined;
760
+ required?: boolean | undefined;
761
+ pattern?: string | {
762
+ exec: (string: string) => RegExpExecArray | null;
763
+ test: (string: string) => boolean;
764
+ readonly source: string;
765
+ readonly global: boolean;
766
+ readonly ignoreCase: boolean;
767
+ readonly multiline: boolean;
768
+ lastIndex: number;
769
+ compile: (pattern: string, flags?: string) => RegExp;
770
+ readonly flags: string;
771
+ readonly sticky: boolean;
772
+ readonly unicode: boolean;
773
+ readonly dotAll: boolean;
774
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
775
+ [Symbol.replace]: {
776
+ (string: string, replaceValue: string): string;
777
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
778
+ };
779
+ [Symbol.search]: (string: string) => number;
780
+ [Symbol.split]: (string: string, limit?: number) => string[];
781
+ } | undefined;
782
+ min?: number | undefined;
783
+ max?: number | undefined;
784
+ len?: number | undefined;
785
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
786
+ whitespace?: boolean | undefined;
787
+ fields?: Record<string, import("async-validator").Rule> | undefined;
788
+ options?: {
789
+ suppressWarning?: boolean | undefined;
790
+ suppressValidatorError?: boolean | undefined;
791
+ first?: boolean | undefined;
792
+ firstFields?: (boolean | string[]) | undefined;
793
+ messages?: {
794
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
795
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
796
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
797
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
798
+ date?: {
799
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
800
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
801
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
802
+ } | undefined;
803
+ types?: {
804
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
805
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
806
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
807
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
808
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
809
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
810
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
811
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
812
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
813
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
814
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
815
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
816
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
817
+ } | undefined;
818
+ string?: {
819
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
820
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
821
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
822
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
823
+ } | undefined;
824
+ number?: {
825
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
826
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
827
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
828
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
829
+ } | undefined;
830
+ array?: {
831
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
832
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
833
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
834
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
835
+ } | undefined;
836
+ pattern?: {
837
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
838
+ } | undefined;
839
+ } | undefined;
840
+ keys?: string[] | undefined;
841
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
842
+ } | undefined;
843
+ defaultField?: any | any[] | undefined;
844
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
845
+ message?: (string | ((a?: string) => string)) | undefined;
846
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
847
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
848
+ } | {
849
+ type?: import("async-validator").RuleType | undefined;
850
+ required?: boolean | undefined;
851
+ pattern?: string | {
852
+ exec: (string: string) => RegExpExecArray | null;
853
+ test: (string: string) => boolean;
854
+ readonly source: string;
855
+ readonly global: boolean;
856
+ readonly ignoreCase: boolean;
857
+ readonly multiline: boolean;
858
+ lastIndex: number;
859
+ compile: (pattern: string, flags?: string) => RegExp;
860
+ readonly flags: string;
861
+ readonly sticky: boolean;
862
+ readonly unicode: boolean;
863
+ readonly dotAll: boolean;
864
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
865
+ [Symbol.replace]: {
866
+ (string: string, replaceValue: string): string;
867
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
868
+ };
869
+ [Symbol.search]: (string: string) => number;
870
+ [Symbol.split]: (string: string, limit?: number) => string[];
871
+ } | undefined;
872
+ min?: number | undefined;
873
+ max?: number | undefined;
874
+ len?: number | undefined;
875
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
876
+ whitespace?: boolean | undefined;
877
+ fields?: Record<string, import("async-validator").Rule> | undefined;
878
+ options?: {
879
+ suppressWarning?: boolean | undefined;
880
+ suppressValidatorError?: boolean | undefined;
881
+ first?: boolean | undefined;
882
+ firstFields?: (boolean | string[]) | undefined;
883
+ messages?: {
884
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
885
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
886
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
887
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
888
+ date?: {
889
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
890
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
891
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
892
+ } | undefined;
893
+ types?: {
894
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
895
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
896
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
897
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
898
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
899
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
900
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
901
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
902
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
903
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
904
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
905
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
906
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
907
+ } | undefined;
908
+ string?: {
909
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
910
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
911
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
912
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
913
+ } | undefined;
914
+ number?: {
915
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
916
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
917
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
918
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
919
+ } | undefined;
920
+ array?: {
921
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
922
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
923
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
924
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
925
+ } | undefined;
926
+ pattern?: {
927
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
928
+ } | undefined;
929
+ } | undefined;
930
+ keys?: string[] | undefined;
931
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
932
+ } | undefined;
933
+ defaultField?: any | any[] | undefined;
934
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
935
+ message?: (string | ((a?: string) => string)) | undefined;
936
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
937
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
938
+ }[] | undefined;
939
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
940
+ message?: (string | ((a?: string) => string)) | undefined;
941
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
942
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
943
+ }[] | undefined;
944
+ readonly validateStatus?: ("" | "error" | "success" | "validating") | undefined;
945
+ readonly for?: string | undefined;
946
+ }[];
947
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
948
+ validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => void;
949
+ }, string, {
950
+ readonly disabled: boolean;
951
+ readonly inline: boolean;
952
+ readonly labelWidth: string | number;
953
+ readonly labelPosition: "top" | "left" | "right";
954
+ readonly inlineMessage: boolean;
955
+ readonly showMessage: boolean;
956
+ readonly requireAsteriskPosition: "left" | "right";
957
+ readonly labelSuffix: string;
958
+ readonly validateOnRuleChange: boolean;
959
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
960
+ readonly statusIcon: boolean;
961
+ readonly hideRequiredAsterisk: boolean;
962
+ readonly scrollToError: boolean;
963
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
964
+ beforeCreate?: (() => void) | (() => void)[];
965
+ created?: (() => void) | (() => void)[];
966
+ beforeMount?: (() => void) | (() => void)[];
967
+ mounted?: (() => void) | (() => void)[];
968
+ beforeUpdate?: (() => void) | (() => void)[];
969
+ updated?: (() => void) | (() => void)[];
970
+ activated?: (() => void) | (() => void)[];
971
+ deactivated?: (() => void) | (() => void)[];
972
+ beforeDestroy?: (() => void) | (() => void)[];
973
+ beforeUnmount?: (() => void) | (() => void)[];
974
+ destroyed?: (() => void) | (() => void)[];
975
+ unmounted?: (() => void) | (() => void)[];
976
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
977
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
978
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
979
+ };
980
+ $forceUpdate: () => void;
981
+ $nextTick: typeof import("vue").nextTick;
982
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
983
+ } & Readonly<{
984
+ readonly disabled: boolean;
985
+ readonly inline: boolean;
986
+ readonly labelWidth: string | number;
987
+ readonly labelPosition: "top" | "left" | "right";
988
+ readonly inlineMessage: boolean;
989
+ readonly showMessage: boolean;
990
+ readonly requireAsteriskPosition: "left" | "right";
991
+ readonly labelSuffix: string;
992
+ readonly validateOnRuleChange: boolean;
993
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
994
+ readonly statusIcon: boolean;
995
+ readonly hideRequiredAsterisk: boolean;
996
+ readonly scrollToError: boolean;
997
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
998
+ readonly model: ObjectConstructor;
999
+ readonly rules: {
1000
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
1001
+ readonly required: false;
1002
+ readonly validator: ((val: unknown) => boolean) | undefined;
1003
+ __epPropKey: true;
1004
+ };
1005
+ readonly labelPosition: {
1006
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
1007
+ readonly required: false;
1008
+ readonly validator: ((val: unknown) => boolean) | undefined;
1009
+ __epPropKey: true;
1010
+ } & {
1011
+ readonly default: "right";
1012
+ };
1013
+ readonly requireAsteriskPosition: {
1014
+ readonly type: import("vue").PropType<"left" | "right">;
1015
+ readonly required: false;
1016
+ readonly validator: ((val: unknown) => boolean) | undefined;
1017
+ __epPropKey: true;
1018
+ } & {
1019
+ readonly default: "left";
1020
+ };
1021
+ readonly labelWidth: {
1022
+ readonly type: import("vue").PropType<string | number>;
1023
+ readonly required: false;
1024
+ readonly validator: ((val: unknown) => boolean) | undefined;
1025
+ __epPropKey: true;
1026
+ } & {
1027
+ readonly default: "";
1028
+ };
1029
+ readonly labelSuffix: {
1030
+ readonly type: import("vue").PropType<string>;
1031
+ readonly required: false;
1032
+ readonly validator: ((val: unknown) => boolean) | undefined;
1033
+ __epPropKey: true;
1034
+ } & {
1035
+ readonly default: "";
1036
+ };
1037
+ readonly inline: BooleanConstructor;
1038
+ readonly inlineMessage: BooleanConstructor;
1039
+ readonly statusIcon: BooleanConstructor;
1040
+ readonly showMessage: {
1041
+ readonly type: import("vue").PropType<boolean>;
1042
+ readonly required: false;
1043
+ readonly validator: ((val: unknown) => boolean) | undefined;
1044
+ __epPropKey: true;
1045
+ } & {
1046
+ readonly default: true;
1047
+ };
1048
+ readonly validateOnRuleChange: {
1049
+ readonly type: import("vue").PropType<boolean>;
1050
+ readonly required: false;
1051
+ readonly validator: ((val: unknown) => boolean) | undefined;
1052
+ __epPropKey: true;
1053
+ } & {
1054
+ readonly default: true;
1055
+ };
1056
+ readonly hideRequiredAsterisk: BooleanConstructor;
1057
+ readonly scrollToError: BooleanConstructor;
1058
+ readonly scrollIntoViewOptions: {
1059
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
1060
+ readonly required: false;
1061
+ readonly validator: ((val: unknown) => boolean) | undefined;
1062
+ __epPropKey: true;
1063
+ } & {
1064
+ readonly default: true;
1065
+ };
1066
+ readonly size: {
1067
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
1068
+ readonly required: false;
1069
+ readonly validator: ((val: unknown) => boolean) | undefined;
1070
+ __epPropKey: true;
1071
+ };
1072
+ readonly disabled: BooleanConstructor;
1073
+ }>> & {
1074
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
1075
+ }, "inline" | "labelWidth" | "labelPosition" | "inlineMessage" | "showMessage" | "disabled" | "fields" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField"> & import("vue").ShallowUnwrapRef<{
1076
+ validate: (callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1077
+ validateField: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[], callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1078
+ resetFields: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
1079
+ clearValidate: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
1080
+ scrollToField: (prop: import("element-plus").FormItemProp) => void;
1081
+ getField: (prop: import("element-plus").FormItemProp) => import("element-plus").FormItemContext | undefined;
1082
+ fields: {
1083
+ $el: HTMLDivElement | undefined;
1084
+ size: import("element-plus").ComponentSize;
1085
+ validateMessage: string;
1086
+ validateState: import("element-plus").FormItemValidateState;
1087
+ isGroup: boolean;
1088
+ labelId: string;
1089
+ inputIds: string[];
1090
+ hasLabel: boolean;
1091
+ fieldValue: any;
1092
+ propString: string;
1093
+ addInputId: (id: string) => void;
1094
+ removeInputId: (id: string) => void;
1095
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1096
+ resetField: () => void;
1097
+ clearValidate: () => void;
1098
+ readonly labelWidth: string | number;
1099
+ readonly labelPosition: "" | "top" | "left" | "right";
1100
+ readonly inlineMessage: string | boolean;
1101
+ readonly showMessage: boolean;
1102
+ readonly label?: string | undefined;
1103
+ readonly prop?: import("element-plus").FormItemProp | undefined;
1104
+ readonly required?: boolean | undefined;
1105
+ readonly error?: string | undefined;
1106
+ readonly rules?: {
1107
+ trigger?: (string | string[]) | undefined;
1108
+ type?: import("async-validator").RuleType | undefined;
1109
+ required?: boolean | undefined;
1110
+ pattern?: string | {
1111
+ exec: (string: string) => RegExpExecArray | null;
1112
+ test: (string: string) => boolean;
1113
+ readonly source: string;
1114
+ readonly global: boolean;
1115
+ readonly ignoreCase: boolean;
1116
+ readonly multiline: boolean;
1117
+ lastIndex: number;
1118
+ compile: (pattern: string, flags?: string) => RegExp;
1119
+ readonly flags: string;
1120
+ readonly sticky: boolean;
1121
+ readonly unicode: boolean;
1122
+ readonly dotAll: boolean;
1123
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1124
+ [Symbol.replace]: {
1125
+ (string: string, replaceValue: string): string;
1126
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1127
+ };
1128
+ [Symbol.search]: (string: string) => number;
1129
+ [Symbol.split]: (string: string, limit?: number) => string[];
1130
+ } | undefined;
1131
+ min?: number | undefined;
1132
+ max?: number | undefined;
1133
+ len?: number | undefined;
1134
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1135
+ whitespace?: boolean | undefined;
1136
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1137
+ options?: {
1138
+ suppressWarning?: boolean | undefined;
1139
+ suppressValidatorError?: boolean | undefined;
1140
+ first?: boolean | undefined;
1141
+ firstFields?: (boolean | string[]) | undefined;
1142
+ messages?: {
1143
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1144
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1145
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1146
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1147
+ date?: {
1148
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1149
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1150
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1151
+ } | undefined;
1152
+ types?: {
1153
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1154
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1155
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1156
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1157
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1158
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1159
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1160
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1161
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1162
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1163
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1164
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1165
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1166
+ } | undefined;
1167
+ string?: {
1168
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1169
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1170
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1171
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1172
+ } | undefined;
1173
+ number?: {
1174
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1175
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1176
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1177
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1178
+ } | undefined;
1179
+ array?: {
1180
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1181
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1182
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1183
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1184
+ } | undefined;
1185
+ pattern?: {
1186
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1187
+ } | undefined;
1188
+ } | undefined;
1189
+ keys?: string[] | undefined;
1190
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1191
+ } | undefined;
1192
+ defaultField?: {
1193
+ type?: import("async-validator").RuleType | undefined;
1194
+ required?: boolean | undefined;
1195
+ pattern?: string | {
1196
+ exec: (string: string) => RegExpExecArray | null;
1197
+ test: (string: string) => boolean;
1198
+ readonly source: string;
1199
+ readonly global: boolean;
1200
+ readonly ignoreCase: boolean;
1201
+ readonly multiline: boolean;
1202
+ lastIndex: number;
1203
+ compile: (pattern: string, flags?: string) => RegExp;
1204
+ readonly flags: string;
1205
+ readonly sticky: boolean;
1206
+ readonly unicode: boolean;
1207
+ readonly dotAll: boolean;
1208
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1209
+ [Symbol.replace]: {
1210
+ (string: string, replaceValue: string): string;
1211
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1212
+ };
1213
+ [Symbol.search]: (string: string) => number;
1214
+ [Symbol.split]: (string: string, limit?: number) => string[];
1215
+ } | undefined;
1216
+ min?: number | undefined;
1217
+ max?: number | undefined;
1218
+ len?: number | undefined;
1219
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1220
+ whitespace?: boolean | undefined;
1221
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1222
+ options?: {
1223
+ suppressWarning?: boolean | undefined;
1224
+ suppressValidatorError?: boolean | undefined;
1225
+ first?: boolean | undefined;
1226
+ firstFields?: (boolean | string[]) | undefined;
1227
+ messages?: {
1228
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1229
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1230
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1231
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1232
+ date?: {
1233
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1234
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1235
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1236
+ } | undefined;
1237
+ types?: {
1238
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1239
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1240
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1241
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1242
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1243
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1244
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1245
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1246
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1247
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1248
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1249
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1250
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1251
+ } | undefined;
1252
+ string?: {
1253
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1254
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1255
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1256
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1257
+ } | undefined;
1258
+ number?: {
1259
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1260
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1261
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1262
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1263
+ } | undefined;
1264
+ array?: {
1265
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1266
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1267
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1268
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1269
+ } | undefined;
1270
+ pattern?: {
1271
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1272
+ } | undefined;
1273
+ } | undefined;
1274
+ keys?: string[] | undefined;
1275
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1276
+ } | undefined;
1277
+ defaultField?: any | any[] | undefined;
1278
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1279
+ message?: (string | ((a?: string) => string)) | undefined;
1280
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1281
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1282
+ } | {
1283
+ type?: import("async-validator").RuleType | undefined;
1284
+ required?: boolean | undefined;
1285
+ pattern?: string | {
1286
+ exec: (string: string) => RegExpExecArray | null;
1287
+ test: (string: string) => boolean;
1288
+ readonly source: string;
1289
+ readonly global: boolean;
1290
+ readonly ignoreCase: boolean;
1291
+ readonly multiline: boolean;
1292
+ lastIndex: number;
1293
+ compile: (pattern: string, flags?: string) => RegExp;
1294
+ readonly flags: string;
1295
+ readonly sticky: boolean;
1296
+ readonly unicode: boolean;
1297
+ readonly dotAll: boolean;
1298
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1299
+ [Symbol.replace]: {
1300
+ (string: string, replaceValue: string): string;
1301
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1302
+ };
1303
+ [Symbol.search]: (string: string) => number;
1304
+ [Symbol.split]: (string: string, limit?: number) => string[];
1305
+ } | undefined;
1306
+ min?: number | undefined;
1307
+ max?: number | undefined;
1308
+ len?: number | undefined;
1309
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1310
+ whitespace?: boolean | undefined;
1311
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1312
+ options?: {
1313
+ suppressWarning?: boolean | undefined;
1314
+ suppressValidatorError?: boolean | undefined;
1315
+ first?: boolean | undefined;
1316
+ firstFields?: (boolean | string[]) | undefined;
1317
+ messages?: {
1318
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1319
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1320
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1321
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1322
+ date?: {
1323
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1324
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1325
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1326
+ } | undefined;
1327
+ types?: {
1328
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1329
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1330
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1331
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1332
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1333
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1334
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1335
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1336
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1337
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1338
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1339
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1340
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1341
+ } | undefined;
1342
+ string?: {
1343
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1344
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1345
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1346
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1347
+ } | undefined;
1348
+ number?: {
1349
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1350
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1351
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1352
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1353
+ } | undefined;
1354
+ array?: {
1355
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1356
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1357
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1358
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1359
+ } | undefined;
1360
+ pattern?: {
1361
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1362
+ } | undefined;
1363
+ } | undefined;
1364
+ keys?: string[] | undefined;
1365
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1366
+ } | undefined;
1367
+ defaultField?: any | any[] | undefined;
1368
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1369
+ message?: (string | ((a?: string) => string)) | undefined;
1370
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1371
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1372
+ }[] | undefined;
1373
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1374
+ message?: (string | ((a?: string) => string)) | undefined;
1375
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1376
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1377
+ } | {
1378
+ trigger?: (string | string[]) | undefined;
1379
+ type?: import("async-validator").RuleType | undefined;
1380
+ required?: boolean | undefined;
1381
+ pattern?: string | {
1382
+ exec: (string: string) => RegExpExecArray | null;
1383
+ test: (string: string) => boolean;
1384
+ readonly source: string;
1385
+ readonly global: boolean;
1386
+ readonly ignoreCase: boolean;
1387
+ readonly multiline: boolean;
1388
+ lastIndex: number;
1389
+ compile: (pattern: string, flags?: string) => RegExp;
1390
+ readonly flags: string;
1391
+ readonly sticky: boolean;
1392
+ readonly unicode: boolean;
1393
+ readonly dotAll: boolean;
1394
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1395
+ [Symbol.replace]: {
1396
+ (string: string, replaceValue: string): string;
1397
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1398
+ };
1399
+ [Symbol.search]: (string: string) => number;
1400
+ [Symbol.split]: (string: string, limit?: number) => string[];
1401
+ } | undefined;
1402
+ min?: number | undefined;
1403
+ max?: number | undefined;
1404
+ len?: number | undefined;
1405
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1406
+ whitespace?: boolean | undefined;
1407
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1408
+ options?: {
1409
+ suppressWarning?: boolean | undefined;
1410
+ suppressValidatorError?: boolean | undefined;
1411
+ first?: boolean | undefined;
1412
+ firstFields?: (boolean | string[]) | undefined;
1413
+ messages?: {
1414
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1415
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1416
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1417
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1418
+ date?: {
1419
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1420
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1421
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1422
+ } | undefined;
1423
+ types?: {
1424
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1425
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1426
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1427
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1428
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1429
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1430
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1431
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1432
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1433
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1434
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1435
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1436
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1437
+ } | undefined;
1438
+ string?: {
1439
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1440
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1441
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1442
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1443
+ } | undefined;
1444
+ number?: {
1445
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1446
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1447
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1448
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1449
+ } | undefined;
1450
+ array?: {
1451
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1452
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1453
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1454
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1455
+ } | undefined;
1456
+ pattern?: {
1457
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1458
+ } | undefined;
1459
+ } | undefined;
1460
+ keys?: string[] | undefined;
1461
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1462
+ } | undefined;
1463
+ defaultField?: {
1464
+ type?: import("async-validator").RuleType | undefined;
1465
+ required?: boolean | undefined;
1466
+ pattern?: string | {
1467
+ exec: (string: string) => RegExpExecArray | null;
1468
+ test: (string: string) => boolean;
1469
+ readonly source: string;
1470
+ readonly global: boolean;
1471
+ readonly ignoreCase: boolean;
1472
+ readonly multiline: boolean;
1473
+ lastIndex: number;
1474
+ compile: (pattern: string, flags?: string) => RegExp;
1475
+ readonly flags: string;
1476
+ readonly sticky: boolean;
1477
+ readonly unicode: boolean;
1478
+ readonly dotAll: boolean;
1479
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1480
+ [Symbol.replace]: {
1481
+ (string: string, replaceValue: string): string;
1482
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1483
+ };
1484
+ [Symbol.search]: (string: string) => number;
1485
+ [Symbol.split]: (string: string, limit?: number) => string[];
1486
+ } | undefined;
1487
+ min?: number | undefined;
1488
+ max?: number | undefined;
1489
+ len?: number | undefined;
1490
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1491
+ whitespace?: boolean | undefined;
1492
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1493
+ options?: {
1494
+ suppressWarning?: boolean | undefined;
1495
+ suppressValidatorError?: boolean | undefined;
1496
+ first?: boolean | undefined;
1497
+ firstFields?: (boolean | string[]) | undefined;
1498
+ messages?: {
1499
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1500
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1501
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1502
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1503
+ date?: {
1504
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1505
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1506
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1507
+ } | undefined;
1508
+ types?: {
1509
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1510
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1511
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1512
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1513
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1514
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1515
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1516
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1517
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1518
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1519
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1520
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1521
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1522
+ } | undefined;
1523
+ string?: {
1524
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1525
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1526
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1527
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1528
+ } | undefined;
1529
+ number?: {
1530
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1531
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1532
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1533
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1534
+ } | undefined;
1535
+ array?: {
1536
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1537
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1538
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1539
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1540
+ } | undefined;
1541
+ pattern?: {
1542
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1543
+ } | undefined;
1544
+ } | undefined;
1545
+ keys?: string[] | undefined;
1546
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1547
+ } | undefined;
1548
+ defaultField?: any | any[] | undefined;
1549
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1550
+ message?: (string | ((a?: string) => string)) | undefined;
1551
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1552
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1553
+ } | {
1554
+ type?: import("async-validator").RuleType | undefined;
1555
+ required?: boolean | undefined;
1556
+ pattern?: string | {
1557
+ exec: (string: string) => RegExpExecArray | null;
1558
+ test: (string: string) => boolean;
1559
+ readonly source: string;
1560
+ readonly global: boolean;
1561
+ readonly ignoreCase: boolean;
1562
+ readonly multiline: boolean;
1563
+ lastIndex: number;
1564
+ compile: (pattern: string, flags?: string) => RegExp;
1565
+ readonly flags: string;
1566
+ readonly sticky: boolean;
1567
+ readonly unicode: boolean;
1568
+ readonly dotAll: boolean;
1569
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1570
+ [Symbol.replace]: {
1571
+ (string: string, replaceValue: string): string;
1572
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1573
+ };
1574
+ [Symbol.search]: (string: string) => number;
1575
+ [Symbol.split]: (string: string, limit?: number) => string[];
1576
+ } | undefined;
1577
+ min?: number | undefined;
1578
+ max?: number | undefined;
1579
+ len?: number | undefined;
1580
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1581
+ whitespace?: boolean | undefined;
1582
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1583
+ options?: {
1584
+ suppressWarning?: boolean | undefined;
1585
+ suppressValidatorError?: boolean | undefined;
1586
+ first?: boolean | undefined;
1587
+ firstFields?: (boolean | string[]) | undefined;
1588
+ messages?: {
1589
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1590
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1591
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1592
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1593
+ date?: {
1594
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1595
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1596
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1597
+ } | undefined;
1598
+ types?: {
1599
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1600
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1601
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1602
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1603
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1604
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1605
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1606
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1607
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1608
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1609
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1610
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1611
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1612
+ } | undefined;
1613
+ string?: {
1614
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1615
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1616
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1617
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1618
+ } | undefined;
1619
+ number?: {
1620
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1621
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1622
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1623
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1624
+ } | undefined;
1625
+ array?: {
1626
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1627
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1628
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1629
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1630
+ } | undefined;
1631
+ pattern?: {
1632
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1633
+ } | undefined;
1634
+ } | undefined;
1635
+ keys?: string[] | undefined;
1636
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1637
+ } | undefined;
1638
+ defaultField?: any | any[] | undefined;
1639
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1640
+ message?: (string | ((a?: string) => string)) | undefined;
1641
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1642
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1643
+ }[] | undefined;
1644
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1645
+ message?: (string | ((a?: string) => string)) | undefined;
1646
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1647
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1648
+ }[] | undefined;
1649
+ readonly validateStatus?: ("" | "error" | "success" | "validating") | undefined;
1650
+ readonly for?: string | undefined;
1651
+ }[];
1652
+ }> & {} & import("@vue/runtime-core").ComponentCustomProperties & {} & {
1653
+ $slots: {
1654
+ default?(_: {}): any;
1655
+ };
1656
+ }) => any;
1657
+ inline: boolean;
1658
+ readonly: boolean;
1659
+ labelWidth: string | number;
1660
+ labelPosition: "top" | "left" | "right";
1661
+ inlineMessage: boolean;
1662
+ showMessage: boolean;
1663
+ disabled: boolean;
1664
+ data: Record<string, any>;
1665
+ layout: boolean;
1666
+ requireAsteriskPosition: "left" | "right";
1667
+ labelSuffix: string;
1668
+ statusIcon: boolean;
1669
+ validateOnRuleChange: boolean;
1670
+ hideRequiredAsterisk: boolean;
1671
+ scrollToError: boolean;
1672
+ scrollIntoViewOptions: boolean | Record<string, any>;
1673
+ formItems: any[];
1674
+ rowSource: Partial<RowItem>;
1675
+ colSource: Partial<import("./types").ColItem>;
1676
+ }, {}, {
1677
+ VkfRendererData: {
1678
+ new (...args: any[]): any;
1679
+ __isFragment?: never;
1680
+ __isTeleport?: never;
1681
+ __isSuspense?: never;
1682
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1683
+ [x: string]: any;
1684
+ [x: symbol]: any;
1685
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1686
+ install(app: import("vue").App): void;
1687
+ };
1688
+ ElForm: ({
1689
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1690
+ readonly model: ObjectConstructor;
1691
+ readonly rules: {
1692
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
1693
+ readonly required: false;
1694
+ readonly validator: ((val: unknown) => boolean) | undefined;
1695
+ __epPropKey: true;
1696
+ };
1697
+ readonly labelPosition: {
1698
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
1699
+ readonly required: false;
1700
+ readonly validator: ((val: unknown) => boolean) | undefined;
1701
+ __epPropKey: true;
1702
+ } & {
1703
+ readonly default: "right";
1704
+ };
1705
+ readonly requireAsteriskPosition: {
1706
+ readonly type: import("vue").PropType<"left" | "right">;
1707
+ readonly required: false;
1708
+ readonly validator: ((val: unknown) => boolean) | undefined;
1709
+ __epPropKey: true;
1710
+ } & {
1711
+ readonly default: "left";
1712
+ };
1713
+ readonly labelWidth: {
1714
+ readonly type: import("vue").PropType<string | number>;
1715
+ readonly required: false;
1716
+ readonly validator: ((val: unknown) => boolean) | undefined;
1717
+ __epPropKey: true;
1718
+ } & {
1719
+ readonly default: "";
1720
+ };
1721
+ readonly labelSuffix: {
1722
+ readonly type: import("vue").PropType<string>;
1723
+ readonly required: false;
1724
+ readonly validator: ((val: unknown) => boolean) | undefined;
1725
+ __epPropKey: true;
1726
+ } & {
1727
+ readonly default: "";
1728
+ };
1729
+ readonly inline: BooleanConstructor;
1730
+ readonly inlineMessage: BooleanConstructor;
1731
+ readonly statusIcon: BooleanConstructor;
1732
+ readonly showMessage: {
1733
+ readonly type: import("vue").PropType<boolean>;
1734
+ readonly required: false;
1735
+ readonly validator: ((val: unknown) => boolean) | undefined;
1736
+ __epPropKey: true;
1737
+ } & {
1738
+ readonly default: true;
1739
+ };
1740
+ readonly validateOnRuleChange: {
1741
+ readonly type: import("vue").PropType<boolean>;
1742
+ readonly required: false;
1743
+ readonly validator: ((val: unknown) => boolean) | undefined;
1744
+ __epPropKey: true;
1745
+ } & {
1746
+ readonly default: true;
1747
+ };
1748
+ readonly hideRequiredAsterisk: BooleanConstructor;
1749
+ readonly scrollToError: BooleanConstructor;
1750
+ readonly scrollIntoViewOptions: {
1751
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
1752
+ readonly required: false;
1753
+ readonly validator: ((val: unknown) => boolean) | undefined;
1754
+ __epPropKey: true;
1755
+ } & {
1756
+ readonly default: true;
1757
+ };
1758
+ readonly size: {
1759
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
1760
+ readonly required: false;
1761
+ readonly validator: ((val: unknown) => boolean) | undefined;
1762
+ __epPropKey: true;
1763
+ };
1764
+ readonly disabled: BooleanConstructor;
1765
+ }>> & {
1766
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
1767
+ }, {
1768
+ validate: (callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1769
+ validateField: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[], callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1770
+ resetFields: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
1771
+ clearValidate: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
1772
+ scrollToField: (prop: import("element-plus").FormItemProp) => void;
1773
+ getField: (prop: import("element-plus").FormItemProp) => import("element-plus").FormItemContext | undefined;
1774
+ fields: {
1775
+ $el: HTMLDivElement | undefined;
1776
+ size: import("element-plus").ComponentSize;
1777
+ validateMessage: string;
1778
+ validateState: import("element-plus").FormItemValidateState;
1779
+ isGroup: boolean;
1780
+ labelId: string;
1781
+ inputIds: string[];
1782
+ hasLabel: boolean;
1783
+ fieldValue: any;
1784
+ propString: string;
1785
+ addInputId: (id: string) => void;
1786
+ removeInputId: (id: string) => void;
1787
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
1788
+ resetField: () => void;
1789
+ clearValidate: () => void;
1790
+ readonly labelWidth: string | number;
1791
+ readonly labelPosition: "" | "top" | "left" | "right";
1792
+ readonly inlineMessage: string | boolean;
1793
+ readonly showMessage: boolean;
1794
+ readonly label?: string | undefined;
1795
+ readonly prop?: import("element-plus").FormItemProp | undefined;
1796
+ readonly required?: boolean | undefined;
1797
+ readonly error?: string | undefined;
1798
+ readonly rules?: {
1799
+ trigger?: (string | string[]) | undefined;
1800
+ type?: import("async-validator").RuleType | undefined;
1801
+ required?: boolean | undefined;
1802
+ pattern?: string | {
1803
+ exec: (string: string) => RegExpExecArray | null;
1804
+ test: (string: string) => boolean;
1805
+ readonly source: string;
1806
+ readonly global: boolean;
1807
+ readonly ignoreCase: boolean;
1808
+ readonly multiline: boolean;
1809
+ lastIndex: number;
1810
+ compile: (pattern: string, flags?: string) => RegExp;
1811
+ readonly flags: string;
1812
+ readonly sticky: boolean;
1813
+ readonly unicode: boolean;
1814
+ readonly dotAll: boolean;
1815
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1816
+ [Symbol.replace]: {
1817
+ (string: string, replaceValue: string): string;
1818
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1819
+ };
1820
+ [Symbol.search]: (string: string) => number;
1821
+ [Symbol.split]: (string: string, limit?: number) => string[];
1822
+ } | undefined;
1823
+ min?: number | undefined;
1824
+ max?: number | undefined;
1825
+ len?: number | undefined;
1826
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1827
+ whitespace?: boolean | undefined;
1828
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1829
+ options?: {
1830
+ suppressWarning?: boolean | undefined;
1831
+ suppressValidatorError?: boolean | undefined;
1832
+ first?: boolean | undefined;
1833
+ firstFields?: (boolean | string[]) | undefined;
1834
+ messages?: {
1835
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1836
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1837
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1838
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1839
+ date?: {
1840
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1841
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1842
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1843
+ } | undefined;
1844
+ types?: {
1845
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1846
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1847
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1848
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1849
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1850
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1851
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1852
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1853
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1854
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1855
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1856
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1857
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1858
+ } | undefined;
1859
+ string?: {
1860
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1861
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1862
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1863
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1864
+ } | undefined;
1865
+ number?: {
1866
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1867
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1868
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1869
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1870
+ } | undefined;
1871
+ array?: {
1872
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1873
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1874
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1875
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1876
+ } | undefined;
1877
+ pattern?: {
1878
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1879
+ } | undefined;
1880
+ } | undefined;
1881
+ keys?: string[] | undefined;
1882
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1883
+ } | undefined;
1884
+ defaultField?: {
1885
+ type?: import("async-validator").RuleType | undefined;
1886
+ required?: boolean | undefined;
1887
+ pattern?: string | {
1888
+ exec: (string: string) => RegExpExecArray | null;
1889
+ test: (string: string) => boolean;
1890
+ readonly source: string;
1891
+ readonly global: boolean;
1892
+ readonly ignoreCase: boolean;
1893
+ readonly multiline: boolean;
1894
+ lastIndex: number;
1895
+ compile: (pattern: string, flags?: string) => RegExp;
1896
+ readonly flags: string;
1897
+ readonly sticky: boolean;
1898
+ readonly unicode: boolean;
1899
+ readonly dotAll: boolean;
1900
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1901
+ [Symbol.replace]: {
1902
+ (string: string, replaceValue: string): string;
1903
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1904
+ };
1905
+ [Symbol.search]: (string: string) => number;
1906
+ [Symbol.split]: (string: string, limit?: number) => string[];
1907
+ } | undefined;
1908
+ min?: number | undefined;
1909
+ max?: number | undefined;
1910
+ len?: number | undefined;
1911
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
1912
+ whitespace?: boolean | undefined;
1913
+ fields?: Record<string, import("async-validator").Rule> | undefined;
1914
+ options?: {
1915
+ suppressWarning?: boolean | undefined;
1916
+ suppressValidatorError?: boolean | undefined;
1917
+ first?: boolean | undefined;
1918
+ firstFields?: (boolean | string[]) | undefined;
1919
+ messages?: {
1920
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
1921
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
1922
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1923
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1924
+ date?: {
1925
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
1926
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
1927
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1928
+ } | undefined;
1929
+ types?: {
1930
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1931
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1932
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1933
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1934
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1935
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1936
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1937
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1938
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1939
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1940
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1941
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1942
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1943
+ } | undefined;
1944
+ string?: {
1945
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1946
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1947
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1948
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1949
+ } | undefined;
1950
+ number?: {
1951
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1952
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1953
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1954
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1955
+ } | undefined;
1956
+ array?: {
1957
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1958
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1959
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1960
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1961
+ } | undefined;
1962
+ pattern?: {
1963
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1964
+ } | undefined;
1965
+ } | undefined;
1966
+ keys?: string[] | undefined;
1967
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
1968
+ } | undefined;
1969
+ defaultField?: any | any[] | undefined;
1970
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
1971
+ message?: (string | ((a?: string) => string)) | undefined;
1972
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
1973
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
1974
+ } | {
1975
+ type?: import("async-validator").RuleType | undefined;
1976
+ required?: boolean | undefined;
1977
+ pattern?: string | {
1978
+ exec: (string: string) => RegExpExecArray | null;
1979
+ test: (string: string) => boolean;
1980
+ readonly source: string;
1981
+ readonly global: boolean;
1982
+ readonly ignoreCase: boolean;
1983
+ readonly multiline: boolean;
1984
+ lastIndex: number;
1985
+ compile: (pattern: string, flags?: string) => RegExp;
1986
+ readonly flags: string;
1987
+ readonly sticky: boolean;
1988
+ readonly unicode: boolean;
1989
+ readonly dotAll: boolean;
1990
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1991
+ [Symbol.replace]: {
1992
+ (string: string, replaceValue: string): string;
1993
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1994
+ };
1995
+ [Symbol.search]: (string: string) => number;
1996
+ [Symbol.split]: (string: string, limit?: number) => string[];
1997
+ } | undefined;
1998
+ min?: number | undefined;
1999
+ max?: number | undefined;
2000
+ len?: number | undefined;
2001
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2002
+ whitespace?: boolean | undefined;
2003
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2004
+ options?: {
2005
+ suppressWarning?: boolean | undefined;
2006
+ suppressValidatorError?: boolean | undefined;
2007
+ first?: boolean | undefined;
2008
+ firstFields?: (boolean | string[]) | undefined;
2009
+ messages?: {
2010
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2011
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2012
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2013
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2014
+ date?: {
2015
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2016
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2017
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2018
+ } | undefined;
2019
+ types?: {
2020
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2021
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2022
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2023
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2024
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2025
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2026
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2027
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2028
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2029
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2030
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2031
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2032
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2033
+ } | undefined;
2034
+ string?: {
2035
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2036
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2037
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2038
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2039
+ } | undefined;
2040
+ number?: {
2041
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2042
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2043
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2044
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2045
+ } | undefined;
2046
+ array?: {
2047
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2048
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2049
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2050
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2051
+ } | undefined;
2052
+ pattern?: {
2053
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2054
+ } | undefined;
2055
+ } | undefined;
2056
+ keys?: string[] | undefined;
2057
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2058
+ } | undefined;
2059
+ defaultField?: any | any[] | undefined;
2060
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2061
+ message?: (string | ((a?: string) => string)) | undefined;
2062
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2063
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2064
+ }[] | undefined;
2065
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2066
+ message?: (string | ((a?: string) => string)) | undefined;
2067
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2068
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2069
+ } | {
2070
+ trigger?: (string | string[]) | undefined;
2071
+ type?: import("async-validator").RuleType | undefined;
2072
+ required?: boolean | undefined;
2073
+ pattern?: string | {
2074
+ exec: (string: string) => RegExpExecArray | null;
2075
+ test: (string: string) => boolean;
2076
+ readonly source: string;
2077
+ readonly global: boolean;
2078
+ readonly ignoreCase: boolean;
2079
+ readonly multiline: boolean;
2080
+ lastIndex: number;
2081
+ compile: (pattern: string, flags?: string) => RegExp;
2082
+ readonly flags: string;
2083
+ readonly sticky: boolean;
2084
+ readonly unicode: boolean;
2085
+ readonly dotAll: boolean;
2086
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2087
+ [Symbol.replace]: {
2088
+ (string: string, replaceValue: string): string;
2089
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2090
+ };
2091
+ [Symbol.search]: (string: string) => number;
2092
+ [Symbol.split]: (string: string, limit?: number) => string[];
2093
+ } | undefined;
2094
+ min?: number | undefined;
2095
+ max?: number | undefined;
2096
+ len?: number | undefined;
2097
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2098
+ whitespace?: boolean | undefined;
2099
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2100
+ options?: {
2101
+ suppressWarning?: boolean | undefined;
2102
+ suppressValidatorError?: boolean | undefined;
2103
+ first?: boolean | undefined;
2104
+ firstFields?: (boolean | string[]) | undefined;
2105
+ messages?: {
2106
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2107
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2108
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2109
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2110
+ date?: {
2111
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2112
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2113
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2114
+ } | undefined;
2115
+ types?: {
2116
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2117
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2118
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2119
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2120
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2121
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2122
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2123
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2124
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2125
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2126
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2127
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2128
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2129
+ } | undefined;
2130
+ string?: {
2131
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2132
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2133
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2134
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2135
+ } | undefined;
2136
+ number?: {
2137
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2138
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2139
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2140
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2141
+ } | undefined;
2142
+ array?: {
2143
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2144
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2145
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2146
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2147
+ } | undefined;
2148
+ pattern?: {
2149
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2150
+ } | undefined;
2151
+ } | undefined;
2152
+ keys?: string[] | undefined;
2153
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2154
+ } | undefined;
2155
+ defaultField?: {
2156
+ type?: import("async-validator").RuleType | undefined;
2157
+ required?: boolean | undefined;
2158
+ pattern?: string | {
2159
+ exec: (string: string) => RegExpExecArray | null;
2160
+ test: (string: string) => boolean;
2161
+ readonly source: string;
2162
+ readonly global: boolean;
2163
+ readonly ignoreCase: boolean;
2164
+ readonly multiline: boolean;
2165
+ lastIndex: number;
2166
+ compile: (pattern: string, flags?: string) => RegExp;
2167
+ readonly flags: string;
2168
+ readonly sticky: boolean;
2169
+ readonly unicode: boolean;
2170
+ readonly dotAll: boolean;
2171
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2172
+ [Symbol.replace]: {
2173
+ (string: string, replaceValue: string): string;
2174
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2175
+ };
2176
+ [Symbol.search]: (string: string) => number;
2177
+ [Symbol.split]: (string: string, limit?: number) => string[];
2178
+ } | undefined;
2179
+ min?: number | undefined;
2180
+ max?: number | undefined;
2181
+ len?: number | undefined;
2182
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2183
+ whitespace?: boolean | undefined;
2184
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2185
+ options?: {
2186
+ suppressWarning?: boolean | undefined;
2187
+ suppressValidatorError?: boolean | undefined;
2188
+ first?: boolean | undefined;
2189
+ firstFields?: (boolean | string[]) | undefined;
2190
+ messages?: {
2191
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2192
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2193
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2194
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2195
+ date?: {
2196
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2197
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2198
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2199
+ } | undefined;
2200
+ types?: {
2201
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2202
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2203
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2204
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2205
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2206
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2207
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2208
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2209
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2210
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2211
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2212
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2213
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2214
+ } | undefined;
2215
+ string?: {
2216
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2217
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2218
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2219
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2220
+ } | undefined;
2221
+ number?: {
2222
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2223
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2224
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2225
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2226
+ } | undefined;
2227
+ array?: {
2228
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2229
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2230
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2231
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2232
+ } | undefined;
2233
+ pattern?: {
2234
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2235
+ } | undefined;
2236
+ } | undefined;
2237
+ keys?: string[] | undefined;
2238
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2239
+ } | undefined;
2240
+ defaultField?: any | any[] | undefined;
2241
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2242
+ message?: (string | ((a?: string) => string)) | undefined;
2243
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2244
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2245
+ } | {
2246
+ type?: import("async-validator").RuleType | undefined;
2247
+ required?: boolean | undefined;
2248
+ pattern?: string | {
2249
+ exec: (string: string) => RegExpExecArray | null;
2250
+ test: (string: string) => boolean;
2251
+ readonly source: string;
2252
+ readonly global: boolean;
2253
+ readonly ignoreCase: boolean;
2254
+ readonly multiline: boolean;
2255
+ lastIndex: number;
2256
+ compile: (pattern: string, flags?: string) => RegExp;
2257
+ readonly flags: string;
2258
+ readonly sticky: boolean;
2259
+ readonly unicode: boolean;
2260
+ readonly dotAll: boolean;
2261
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2262
+ [Symbol.replace]: {
2263
+ (string: string, replaceValue: string): string;
2264
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2265
+ };
2266
+ [Symbol.search]: (string: string) => number;
2267
+ [Symbol.split]: (string: string, limit?: number) => string[];
2268
+ } | undefined;
2269
+ min?: number | undefined;
2270
+ max?: number | undefined;
2271
+ len?: number | undefined;
2272
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2273
+ whitespace?: boolean | undefined;
2274
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2275
+ options?: {
2276
+ suppressWarning?: boolean | undefined;
2277
+ suppressValidatorError?: boolean | undefined;
2278
+ first?: boolean | undefined;
2279
+ firstFields?: (boolean | string[]) | undefined;
2280
+ messages?: {
2281
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2282
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2283
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2284
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2285
+ date?: {
2286
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2287
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2288
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2289
+ } | undefined;
2290
+ types?: {
2291
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2292
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2293
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2294
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2295
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2296
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2297
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2298
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2299
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2300
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2301
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2302
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2303
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2304
+ } | undefined;
2305
+ string?: {
2306
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2307
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2308
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2309
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2310
+ } | undefined;
2311
+ number?: {
2312
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2313
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2314
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2315
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2316
+ } | undefined;
2317
+ array?: {
2318
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2319
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2320
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2321
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2322
+ } | undefined;
2323
+ pattern?: {
2324
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2325
+ } | undefined;
2326
+ } | undefined;
2327
+ keys?: string[] | undefined;
2328
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2329
+ } | undefined;
2330
+ defaultField?: any | any[] | undefined;
2331
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2332
+ message?: (string | ((a?: string) => string)) | undefined;
2333
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2334
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2335
+ }[] | undefined;
2336
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2337
+ message?: (string | ((a?: string) => string)) | undefined;
2338
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2339
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2340
+ }[] | undefined;
2341
+ readonly validateStatus?: ("" | "error" | "success" | "validating") | undefined;
2342
+ readonly for?: string | undefined;
2343
+ }[];
2344
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2345
+ validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => void;
2346
+ }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
2347
+ readonly disabled: boolean;
2348
+ readonly inline: boolean;
2349
+ readonly labelWidth: string | number;
2350
+ readonly labelPosition: "top" | "left" | "right";
2351
+ readonly inlineMessage: boolean;
2352
+ readonly showMessage: boolean;
2353
+ readonly requireAsteriskPosition: "left" | "right";
2354
+ readonly labelSuffix: string;
2355
+ readonly validateOnRuleChange: boolean;
2356
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
2357
+ readonly statusIcon: boolean;
2358
+ readonly hideRequiredAsterisk: boolean;
2359
+ readonly scrollToError: boolean;
2360
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2361
+ P: {};
2362
+ B: {};
2363
+ D: {};
2364
+ C: {};
2365
+ M: {};
2366
+ Defaults: {};
2367
+ }, Readonly<import("vue").ExtractPropTypes<{
2368
+ readonly model: ObjectConstructor;
2369
+ readonly rules: {
2370
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
2371
+ readonly required: false;
2372
+ readonly validator: ((val: unknown) => boolean) | undefined;
2373
+ __epPropKey: true;
2374
+ };
2375
+ readonly labelPosition: {
2376
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
2377
+ readonly required: false;
2378
+ readonly validator: ((val: unknown) => boolean) | undefined;
2379
+ __epPropKey: true;
2380
+ } & {
2381
+ readonly default: "right";
2382
+ };
2383
+ readonly requireAsteriskPosition: {
2384
+ readonly type: import("vue").PropType<"left" | "right">;
2385
+ readonly required: false;
2386
+ readonly validator: ((val: unknown) => boolean) | undefined;
2387
+ __epPropKey: true;
2388
+ } & {
2389
+ readonly default: "left";
2390
+ };
2391
+ readonly labelWidth: {
2392
+ readonly type: import("vue").PropType<string | number>;
2393
+ readonly required: false;
2394
+ readonly validator: ((val: unknown) => boolean) | undefined;
2395
+ __epPropKey: true;
2396
+ } & {
2397
+ readonly default: "";
2398
+ };
2399
+ readonly labelSuffix: {
2400
+ readonly type: import("vue").PropType<string>;
2401
+ readonly required: false;
2402
+ readonly validator: ((val: unknown) => boolean) | undefined;
2403
+ __epPropKey: true;
2404
+ } & {
2405
+ readonly default: "";
2406
+ };
2407
+ readonly inline: BooleanConstructor;
2408
+ readonly inlineMessage: BooleanConstructor;
2409
+ readonly statusIcon: BooleanConstructor;
2410
+ readonly showMessage: {
2411
+ readonly type: import("vue").PropType<boolean>;
2412
+ readonly required: false;
2413
+ readonly validator: ((val: unknown) => boolean) | undefined;
2414
+ __epPropKey: true;
2415
+ } & {
2416
+ readonly default: true;
2417
+ };
2418
+ readonly validateOnRuleChange: {
2419
+ readonly type: import("vue").PropType<boolean>;
2420
+ readonly required: false;
2421
+ readonly validator: ((val: unknown) => boolean) | undefined;
2422
+ __epPropKey: true;
2423
+ } & {
2424
+ readonly default: true;
2425
+ };
2426
+ readonly hideRequiredAsterisk: BooleanConstructor;
2427
+ readonly scrollToError: BooleanConstructor;
2428
+ readonly scrollIntoViewOptions: {
2429
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
2430
+ readonly required: false;
2431
+ readonly validator: ((val: unknown) => boolean) | undefined;
2432
+ __epPropKey: true;
2433
+ } & {
2434
+ readonly default: true;
2435
+ };
2436
+ readonly size: {
2437
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
2438
+ readonly required: false;
2439
+ readonly validator: ((val: unknown) => boolean) | undefined;
2440
+ __epPropKey: true;
2441
+ };
2442
+ readonly disabled: BooleanConstructor;
2443
+ }>> & {
2444
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
2445
+ }, {
2446
+ validate: (callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
2447
+ validateField: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[], callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
2448
+ resetFields: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
2449
+ clearValidate: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
2450
+ scrollToField: (prop: import("element-plus").FormItemProp) => void;
2451
+ getField: (prop: import("element-plus").FormItemProp) => import("element-plus").FormItemContext | undefined;
2452
+ fields: {
2453
+ $el: HTMLDivElement | undefined;
2454
+ size: import("element-plus").ComponentSize;
2455
+ validateMessage: string;
2456
+ validateState: import("element-plus").FormItemValidateState;
2457
+ isGroup: boolean;
2458
+ labelId: string;
2459
+ inputIds: string[];
2460
+ hasLabel: boolean;
2461
+ fieldValue: any;
2462
+ propString: string;
2463
+ addInputId: (id: string) => void;
2464
+ removeInputId: (id: string) => void;
2465
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
2466
+ resetField: () => void;
2467
+ clearValidate: () => void;
2468
+ readonly labelWidth: string | number;
2469
+ readonly labelPosition: "" | "top" | "left" | "right";
2470
+ readonly inlineMessage: string | boolean;
2471
+ readonly showMessage: boolean;
2472
+ readonly label?: string | undefined;
2473
+ readonly prop?: import("element-plus").FormItemProp | undefined;
2474
+ readonly required?: boolean | undefined;
2475
+ readonly error?: string | undefined;
2476
+ readonly rules?: {
2477
+ trigger?: (string | string[]) | undefined;
2478
+ type?: import("async-validator").RuleType | undefined;
2479
+ required?: boolean | undefined;
2480
+ pattern?: string | {
2481
+ exec: (string: string) => RegExpExecArray | null;
2482
+ test: (string: string) => boolean;
2483
+ readonly source: string;
2484
+ readonly global: boolean;
2485
+ readonly ignoreCase: boolean;
2486
+ readonly multiline: boolean;
2487
+ lastIndex: number;
2488
+ compile: (pattern: string, flags?: string) => RegExp;
2489
+ readonly flags: string;
2490
+ readonly sticky: boolean;
2491
+ readonly unicode: boolean;
2492
+ readonly dotAll: boolean;
2493
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2494
+ [Symbol.replace]: {
2495
+ (string: string, replaceValue: string): string;
2496
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2497
+ };
2498
+ [Symbol.search]: (string: string) => number;
2499
+ [Symbol.split]: (string: string, limit?: number) => string[];
2500
+ } | undefined;
2501
+ min?: number | undefined;
2502
+ max?: number | undefined;
2503
+ len?: number | undefined;
2504
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2505
+ whitespace?: boolean | undefined;
2506
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2507
+ options?: {
2508
+ suppressWarning?: boolean | undefined;
2509
+ suppressValidatorError?: boolean | undefined;
2510
+ first?: boolean | undefined;
2511
+ firstFields?: (boolean | string[]) | undefined;
2512
+ messages?: {
2513
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2514
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2515
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2516
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2517
+ date?: {
2518
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2519
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2520
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2521
+ } | undefined;
2522
+ types?: {
2523
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2524
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2525
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2526
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2527
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2528
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2529
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2530
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2531
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2532
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2533
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2534
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2535
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2536
+ } | undefined;
2537
+ string?: {
2538
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2539
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2540
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2541
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2542
+ } | undefined;
2543
+ number?: {
2544
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2545
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2546
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2547
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2548
+ } | undefined;
2549
+ array?: {
2550
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2551
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2552
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2553
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2554
+ } | undefined;
2555
+ pattern?: {
2556
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2557
+ } | undefined;
2558
+ } | undefined;
2559
+ keys?: string[] | undefined;
2560
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2561
+ } | undefined;
2562
+ defaultField?: {
2563
+ type?: import("async-validator").RuleType | undefined;
2564
+ required?: boolean | undefined;
2565
+ pattern?: string | {
2566
+ exec: (string: string) => RegExpExecArray | null;
2567
+ test: (string: string) => boolean;
2568
+ readonly source: string;
2569
+ readonly global: boolean;
2570
+ readonly ignoreCase: boolean;
2571
+ readonly multiline: boolean;
2572
+ lastIndex: number;
2573
+ compile: (pattern: string, flags?: string) => RegExp;
2574
+ readonly flags: string;
2575
+ readonly sticky: boolean;
2576
+ readonly unicode: boolean;
2577
+ readonly dotAll: boolean;
2578
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2579
+ [Symbol.replace]: {
2580
+ (string: string, replaceValue: string): string;
2581
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2582
+ };
2583
+ [Symbol.search]: (string: string) => number;
2584
+ [Symbol.split]: (string: string, limit?: number) => string[];
2585
+ } | undefined;
2586
+ min?: number | undefined;
2587
+ max?: number | undefined;
2588
+ len?: number | undefined;
2589
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2590
+ whitespace?: boolean | undefined;
2591
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2592
+ options?: {
2593
+ suppressWarning?: boolean | undefined;
2594
+ suppressValidatorError?: boolean | undefined;
2595
+ first?: boolean | undefined;
2596
+ firstFields?: (boolean | string[]) | undefined;
2597
+ messages?: {
2598
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2599
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2600
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2601
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2602
+ date?: {
2603
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2604
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2605
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2606
+ } | undefined;
2607
+ types?: {
2608
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2609
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2610
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2611
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2612
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2613
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2614
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2615
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2616
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2617
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2618
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2619
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2620
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2621
+ } | undefined;
2622
+ string?: {
2623
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2624
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2625
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2626
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2627
+ } | undefined;
2628
+ number?: {
2629
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2630
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2631
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2632
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2633
+ } | undefined;
2634
+ array?: {
2635
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2636
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2637
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2638
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2639
+ } | undefined;
2640
+ pattern?: {
2641
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2642
+ } | undefined;
2643
+ } | undefined;
2644
+ keys?: string[] | undefined;
2645
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2646
+ } | undefined;
2647
+ defaultField?: any | any[] | undefined;
2648
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2649
+ message?: (string | ((a?: string) => string)) | undefined;
2650
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2651
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2652
+ } | {
2653
+ type?: import("async-validator").RuleType | undefined;
2654
+ required?: boolean | undefined;
2655
+ pattern?: string | {
2656
+ exec: (string: string) => RegExpExecArray | null;
2657
+ test: (string: string) => boolean;
2658
+ readonly source: string;
2659
+ readonly global: boolean;
2660
+ readonly ignoreCase: boolean;
2661
+ readonly multiline: boolean;
2662
+ lastIndex: number;
2663
+ compile: (pattern: string, flags?: string) => RegExp;
2664
+ readonly flags: string;
2665
+ readonly sticky: boolean;
2666
+ readonly unicode: boolean;
2667
+ readonly dotAll: boolean;
2668
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2669
+ [Symbol.replace]: {
2670
+ (string: string, replaceValue: string): string;
2671
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2672
+ };
2673
+ [Symbol.search]: (string: string) => number;
2674
+ [Symbol.split]: (string: string, limit?: number) => string[];
2675
+ } | undefined;
2676
+ min?: number | undefined;
2677
+ max?: number | undefined;
2678
+ len?: number | undefined;
2679
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2680
+ whitespace?: boolean | undefined;
2681
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2682
+ options?: {
2683
+ suppressWarning?: boolean | undefined;
2684
+ suppressValidatorError?: boolean | undefined;
2685
+ first?: boolean | undefined;
2686
+ firstFields?: (boolean | string[]) | undefined;
2687
+ messages?: {
2688
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2689
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2690
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2691
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2692
+ date?: {
2693
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2694
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2695
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2696
+ } | undefined;
2697
+ types?: {
2698
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2699
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2700
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2701
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2702
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2703
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2704
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2705
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2706
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2707
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2708
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2709
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2710
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2711
+ } | undefined;
2712
+ string?: {
2713
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2714
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2715
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2716
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2717
+ } | undefined;
2718
+ number?: {
2719
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2720
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2721
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2722
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2723
+ } | undefined;
2724
+ array?: {
2725
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2726
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2727
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2728
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2729
+ } | undefined;
2730
+ pattern?: {
2731
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2732
+ } | undefined;
2733
+ } | undefined;
2734
+ keys?: string[] | undefined;
2735
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2736
+ } | undefined;
2737
+ defaultField?: any | any[] | undefined;
2738
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2739
+ message?: (string | ((a?: string) => string)) | undefined;
2740
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2741
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2742
+ }[] | undefined;
2743
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2744
+ message?: (string | ((a?: string) => string)) | undefined;
2745
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2746
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2747
+ } | {
2748
+ trigger?: (string | string[]) | undefined;
2749
+ type?: import("async-validator").RuleType | undefined;
2750
+ required?: boolean | undefined;
2751
+ pattern?: string | {
2752
+ exec: (string: string) => RegExpExecArray | null;
2753
+ test: (string: string) => boolean;
2754
+ readonly source: string;
2755
+ readonly global: boolean;
2756
+ readonly ignoreCase: boolean;
2757
+ readonly multiline: boolean;
2758
+ lastIndex: number;
2759
+ compile: (pattern: string, flags?: string) => RegExp;
2760
+ readonly flags: string;
2761
+ readonly sticky: boolean;
2762
+ readonly unicode: boolean;
2763
+ readonly dotAll: boolean;
2764
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2765
+ [Symbol.replace]: {
2766
+ (string: string, replaceValue: string): string;
2767
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2768
+ };
2769
+ [Symbol.search]: (string: string) => number;
2770
+ [Symbol.split]: (string: string, limit?: number) => string[];
2771
+ } | undefined;
2772
+ min?: number | undefined;
2773
+ max?: number | undefined;
2774
+ len?: number | undefined;
2775
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2776
+ whitespace?: boolean | undefined;
2777
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2778
+ options?: {
2779
+ suppressWarning?: boolean | undefined;
2780
+ suppressValidatorError?: boolean | undefined;
2781
+ first?: boolean | undefined;
2782
+ firstFields?: (boolean | string[]) | undefined;
2783
+ messages?: {
2784
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2785
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2786
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2787
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2788
+ date?: {
2789
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2790
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2791
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2792
+ } | undefined;
2793
+ types?: {
2794
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2795
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2796
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2797
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2798
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2799
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2800
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2801
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2802
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2803
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2804
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2805
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2806
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2807
+ } | undefined;
2808
+ string?: {
2809
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2810
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2811
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2812
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2813
+ } | undefined;
2814
+ number?: {
2815
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2816
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2817
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2818
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2819
+ } | undefined;
2820
+ array?: {
2821
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2822
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2823
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2824
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2825
+ } | undefined;
2826
+ pattern?: {
2827
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2828
+ } | undefined;
2829
+ } | undefined;
2830
+ keys?: string[] | undefined;
2831
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2832
+ } | undefined;
2833
+ defaultField?: {
2834
+ type?: import("async-validator").RuleType | undefined;
2835
+ required?: boolean | undefined;
2836
+ pattern?: string | {
2837
+ exec: (string: string) => RegExpExecArray | null;
2838
+ test: (string: string) => boolean;
2839
+ readonly source: string;
2840
+ readonly global: boolean;
2841
+ readonly ignoreCase: boolean;
2842
+ readonly multiline: boolean;
2843
+ lastIndex: number;
2844
+ compile: (pattern: string, flags?: string) => RegExp;
2845
+ readonly flags: string;
2846
+ readonly sticky: boolean;
2847
+ readonly unicode: boolean;
2848
+ readonly dotAll: boolean;
2849
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2850
+ [Symbol.replace]: {
2851
+ (string: string, replaceValue: string): string;
2852
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2853
+ };
2854
+ [Symbol.search]: (string: string) => number;
2855
+ [Symbol.split]: (string: string, limit?: number) => string[];
2856
+ } | undefined;
2857
+ min?: number | undefined;
2858
+ max?: number | undefined;
2859
+ len?: number | undefined;
2860
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2861
+ whitespace?: boolean | undefined;
2862
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2863
+ options?: {
2864
+ suppressWarning?: boolean | undefined;
2865
+ suppressValidatorError?: boolean | undefined;
2866
+ first?: boolean | undefined;
2867
+ firstFields?: (boolean | string[]) | undefined;
2868
+ messages?: {
2869
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2870
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2871
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2872
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2873
+ date?: {
2874
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2875
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2876
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2877
+ } | undefined;
2878
+ types?: {
2879
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2880
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2881
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2882
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2883
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2884
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2885
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2886
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2887
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2888
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2889
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2890
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2891
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2892
+ } | undefined;
2893
+ string?: {
2894
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2895
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2896
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2897
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2898
+ } | undefined;
2899
+ number?: {
2900
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2901
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2902
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2903
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2904
+ } | undefined;
2905
+ array?: {
2906
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2907
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2908
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2909
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2910
+ } | undefined;
2911
+ pattern?: {
2912
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
2913
+ } | undefined;
2914
+ } | undefined;
2915
+ keys?: string[] | undefined;
2916
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
2917
+ } | undefined;
2918
+ defaultField?: any | any[] | undefined;
2919
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
2920
+ message?: (string | ((a?: string) => string)) | undefined;
2921
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
2922
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
2923
+ } | {
2924
+ type?: import("async-validator").RuleType | undefined;
2925
+ required?: boolean | undefined;
2926
+ pattern?: string | {
2927
+ exec: (string: string) => RegExpExecArray | null;
2928
+ test: (string: string) => boolean;
2929
+ readonly source: string;
2930
+ readonly global: boolean;
2931
+ readonly ignoreCase: boolean;
2932
+ readonly multiline: boolean;
2933
+ lastIndex: number;
2934
+ compile: (pattern: string, flags?: string) => RegExp;
2935
+ readonly flags: string;
2936
+ readonly sticky: boolean;
2937
+ readonly unicode: boolean;
2938
+ readonly dotAll: boolean;
2939
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2940
+ [Symbol.replace]: {
2941
+ (string: string, replaceValue: string): string;
2942
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2943
+ };
2944
+ [Symbol.search]: (string: string) => number;
2945
+ [Symbol.split]: (string: string, limit?: number) => string[];
2946
+ } | undefined;
2947
+ min?: number | undefined;
2948
+ max?: number | undefined;
2949
+ len?: number | undefined;
2950
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
2951
+ whitespace?: boolean | undefined;
2952
+ fields?: Record<string, import("async-validator").Rule> | undefined;
2953
+ options?: {
2954
+ suppressWarning?: boolean | undefined;
2955
+ suppressValidatorError?: boolean | undefined;
2956
+ first?: boolean | undefined;
2957
+ firstFields?: (boolean | string[]) | undefined;
2958
+ messages?: {
2959
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
2960
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
2961
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2962
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
2963
+ date?: {
2964
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
2965
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
2966
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
2967
+ } | undefined;
2968
+ types?: {
2969
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2970
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2971
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2972
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2973
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2974
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2975
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2976
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2977
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2978
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2979
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2980
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2981
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
2982
+ } | undefined;
2983
+ string?: {
2984
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2985
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2986
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2987
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2988
+ } | undefined;
2989
+ number?: {
2990
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2991
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2992
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2993
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
2994
+ } | undefined;
2995
+ array?: {
2996
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2997
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2998
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
2999
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3000
+ } | undefined;
3001
+ pattern?: {
3002
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3003
+ } | undefined;
3004
+ } | undefined;
3005
+ keys?: string[] | undefined;
3006
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3007
+ } | undefined;
3008
+ defaultField?: any | any[] | undefined;
3009
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3010
+ message?: (string | ((a?: string) => string)) | undefined;
3011
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3012
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3013
+ }[] | undefined;
3014
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3015
+ message?: (string | ((a?: string) => string)) | undefined;
3016
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3017
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3018
+ }[] | undefined;
3019
+ readonly validateStatus?: ("" | "error" | "success" | "validating") | undefined;
3020
+ readonly for?: string | undefined;
3021
+ }[];
3022
+ }, {}, {}, {}, {
3023
+ readonly disabled: boolean;
3024
+ readonly inline: boolean;
3025
+ readonly labelWidth: string | number;
3026
+ readonly labelPosition: "top" | "left" | "right";
3027
+ readonly inlineMessage: boolean;
3028
+ readonly showMessage: boolean;
3029
+ readonly requireAsteriskPosition: "left" | "right";
3030
+ readonly labelSuffix: string;
3031
+ readonly validateOnRuleChange: boolean;
3032
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
3033
+ readonly statusIcon: boolean;
3034
+ readonly hideRequiredAsterisk: boolean;
3035
+ readonly scrollToError: boolean;
3036
+ }>;
3037
+ __isFragment?: never;
3038
+ __isTeleport?: never;
3039
+ __isSuspense?: never;
3040
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3041
+ readonly model: ObjectConstructor;
3042
+ readonly rules: {
3043
+ readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").FormItemRule | import("element-plus").FormItemRule[]>>>;
3044
+ readonly required: false;
3045
+ readonly validator: ((val: unknown) => boolean) | undefined;
3046
+ __epPropKey: true;
3047
+ };
3048
+ readonly labelPosition: {
3049
+ readonly type: import("vue").PropType<"top" | "left" | "right">;
3050
+ readonly required: false;
3051
+ readonly validator: ((val: unknown) => boolean) | undefined;
3052
+ __epPropKey: true;
3053
+ } & {
3054
+ readonly default: "right";
3055
+ };
3056
+ readonly requireAsteriskPosition: {
3057
+ readonly type: import("vue").PropType<"left" | "right">;
3058
+ readonly required: false;
3059
+ readonly validator: ((val: unknown) => boolean) | undefined;
3060
+ __epPropKey: true;
3061
+ } & {
3062
+ readonly default: "left";
3063
+ };
3064
+ readonly labelWidth: {
3065
+ readonly type: import("vue").PropType<string | number>;
3066
+ readonly required: false;
3067
+ readonly validator: ((val: unknown) => boolean) | undefined;
3068
+ __epPropKey: true;
3069
+ } & {
3070
+ readonly default: "";
3071
+ };
3072
+ readonly labelSuffix: {
3073
+ readonly type: import("vue").PropType<string>;
3074
+ readonly required: false;
3075
+ readonly validator: ((val: unknown) => boolean) | undefined;
3076
+ __epPropKey: true;
3077
+ } & {
3078
+ readonly default: "";
3079
+ };
3080
+ readonly inline: BooleanConstructor;
3081
+ readonly inlineMessage: BooleanConstructor;
3082
+ readonly statusIcon: BooleanConstructor;
3083
+ readonly showMessage: {
3084
+ readonly type: import("vue").PropType<boolean>;
3085
+ readonly required: false;
3086
+ readonly validator: ((val: unknown) => boolean) | undefined;
3087
+ __epPropKey: true;
3088
+ } & {
3089
+ readonly default: true;
3090
+ };
3091
+ readonly validateOnRuleChange: {
3092
+ readonly type: import("vue").PropType<boolean>;
3093
+ readonly required: false;
3094
+ readonly validator: ((val: unknown) => boolean) | undefined;
3095
+ __epPropKey: true;
3096
+ } & {
3097
+ readonly default: true;
3098
+ };
3099
+ readonly hideRequiredAsterisk: BooleanConstructor;
3100
+ readonly scrollToError: BooleanConstructor;
3101
+ readonly scrollIntoViewOptions: {
3102
+ readonly type: import("vue").PropType<boolean | Record<string, any>>;
3103
+ readonly required: false;
3104
+ readonly validator: ((val: unknown) => boolean) | undefined;
3105
+ __epPropKey: true;
3106
+ } & {
3107
+ readonly default: true;
3108
+ };
3109
+ readonly size: {
3110
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
3111
+ readonly required: false;
3112
+ readonly validator: ((val: unknown) => boolean) | undefined;
3113
+ __epPropKey: true;
3114
+ };
3115
+ readonly disabled: BooleanConstructor;
3116
+ }>> & {
3117
+ onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
3118
+ }, {
3119
+ validate: (callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3120
+ validateField: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[], callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3121
+ resetFields: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
3122
+ clearValidate: (props?: import("element-plus").FormItemProp | import("element-plus").FormItemProp[]) => void;
3123
+ scrollToField: (prop: import("element-plus").FormItemProp) => void;
3124
+ getField: (prop: import("element-plus").FormItemProp) => import("element-plus").FormItemContext | undefined;
3125
+ fields: {
3126
+ $el: HTMLDivElement | undefined;
3127
+ size: import("element-plus").ComponentSize;
3128
+ validateMessage: string;
3129
+ validateState: import("element-plus").FormItemValidateState;
3130
+ isGroup: boolean;
3131
+ labelId: string;
3132
+ inputIds: string[];
3133
+ hasLabel: boolean;
3134
+ fieldValue: any;
3135
+ propString: string;
3136
+ addInputId: (id: string) => void;
3137
+ removeInputId: (id: string) => void;
3138
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3139
+ resetField: () => void;
3140
+ clearValidate: () => void;
3141
+ readonly labelWidth: string | number;
3142
+ readonly labelPosition: "" | "top" | "left" | "right";
3143
+ readonly inlineMessage: string | boolean;
3144
+ readonly showMessage: boolean;
3145
+ readonly label?: string | undefined;
3146
+ readonly prop?: import("element-plus").FormItemProp | undefined;
3147
+ readonly required?: boolean | undefined;
3148
+ readonly error?: string | undefined;
3149
+ readonly rules?: {
3150
+ trigger?: (string | string[]) | undefined;
3151
+ type?: import("async-validator").RuleType | undefined;
3152
+ required?: boolean | undefined;
3153
+ pattern?: string | {
3154
+ exec: (string: string) => RegExpExecArray | null;
3155
+ test: (string: string) => boolean;
3156
+ readonly source: string;
3157
+ readonly global: boolean;
3158
+ readonly ignoreCase: boolean;
3159
+ readonly multiline: boolean;
3160
+ lastIndex: number;
3161
+ compile: (pattern: string, flags?: string) => RegExp;
3162
+ readonly flags: string;
3163
+ readonly sticky: boolean;
3164
+ readonly unicode: boolean;
3165
+ readonly dotAll: boolean;
3166
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3167
+ [Symbol.replace]: {
3168
+ (string: string, replaceValue: string): string;
3169
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3170
+ };
3171
+ [Symbol.search]: (string: string) => number;
3172
+ [Symbol.split]: (string: string, limit?: number) => string[];
3173
+ } | undefined;
3174
+ min?: number | undefined;
3175
+ max?: number | undefined;
3176
+ len?: number | undefined;
3177
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3178
+ whitespace?: boolean | undefined;
3179
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3180
+ options?: {
3181
+ suppressWarning?: boolean | undefined;
3182
+ suppressValidatorError?: boolean | undefined;
3183
+ first?: boolean | undefined;
3184
+ firstFields?: (boolean | string[]) | undefined;
3185
+ messages?: {
3186
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3187
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3188
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3189
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3190
+ date?: {
3191
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3192
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3193
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3194
+ } | undefined;
3195
+ types?: {
3196
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3197
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3198
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3199
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3200
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3201
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3202
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3203
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3204
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3205
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3206
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3207
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3208
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3209
+ } | undefined;
3210
+ string?: {
3211
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3212
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3213
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3214
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3215
+ } | undefined;
3216
+ number?: {
3217
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3218
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3219
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3220
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3221
+ } | undefined;
3222
+ array?: {
3223
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3224
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3225
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3226
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3227
+ } | undefined;
3228
+ pattern?: {
3229
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3230
+ } | undefined;
3231
+ } | undefined;
3232
+ keys?: string[] | undefined;
3233
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3234
+ } | undefined;
3235
+ defaultField?: {
3236
+ type?: import("async-validator").RuleType | undefined;
3237
+ required?: boolean | undefined;
3238
+ pattern?: string | {
3239
+ exec: (string: string) => RegExpExecArray | null;
3240
+ test: (string: string) => boolean;
3241
+ readonly source: string;
3242
+ readonly global: boolean;
3243
+ readonly ignoreCase: boolean;
3244
+ readonly multiline: boolean;
3245
+ lastIndex: number;
3246
+ compile: (pattern: string, flags?: string) => RegExp;
3247
+ readonly flags: string;
3248
+ readonly sticky: boolean;
3249
+ readonly unicode: boolean;
3250
+ readonly dotAll: boolean;
3251
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3252
+ [Symbol.replace]: {
3253
+ (string: string, replaceValue: string): string;
3254
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3255
+ };
3256
+ [Symbol.search]: (string: string) => number;
3257
+ [Symbol.split]: (string: string, limit?: number) => string[];
3258
+ } | undefined;
3259
+ min?: number | undefined;
3260
+ max?: number | undefined;
3261
+ len?: number | undefined;
3262
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3263
+ whitespace?: boolean | undefined;
3264
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3265
+ options?: {
3266
+ suppressWarning?: boolean | undefined;
3267
+ suppressValidatorError?: boolean | undefined;
3268
+ first?: boolean | undefined;
3269
+ firstFields?: (boolean | string[]) | undefined;
3270
+ messages?: {
3271
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3272
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3273
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3274
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3275
+ date?: {
3276
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3277
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3278
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3279
+ } | undefined;
3280
+ types?: {
3281
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3282
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3283
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3284
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3285
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3286
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3287
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3288
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3289
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3290
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3291
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3292
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3293
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3294
+ } | undefined;
3295
+ string?: {
3296
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3297
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3298
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3299
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3300
+ } | undefined;
3301
+ number?: {
3302
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3303
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3304
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3305
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3306
+ } | undefined;
3307
+ array?: {
3308
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3309
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3310
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3311
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3312
+ } | undefined;
3313
+ pattern?: {
3314
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3315
+ } | undefined;
3316
+ } | undefined;
3317
+ keys?: string[] | undefined;
3318
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3319
+ } | undefined;
3320
+ defaultField?: any | any[] | undefined;
3321
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3322
+ message?: (string | ((a?: string) => string)) | undefined;
3323
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3324
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3325
+ } | {
3326
+ type?: import("async-validator").RuleType | undefined;
3327
+ required?: boolean | undefined;
3328
+ pattern?: string | {
3329
+ exec: (string: string) => RegExpExecArray | null;
3330
+ test: (string: string) => boolean;
3331
+ readonly source: string;
3332
+ readonly global: boolean;
3333
+ readonly ignoreCase: boolean;
3334
+ readonly multiline: boolean;
3335
+ lastIndex: number;
3336
+ compile: (pattern: string, flags?: string) => RegExp;
3337
+ readonly flags: string;
3338
+ readonly sticky: boolean;
3339
+ readonly unicode: boolean;
3340
+ readonly dotAll: boolean;
3341
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3342
+ [Symbol.replace]: {
3343
+ (string: string, replaceValue: string): string;
3344
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3345
+ };
3346
+ [Symbol.search]: (string: string) => number;
3347
+ [Symbol.split]: (string: string, limit?: number) => string[];
3348
+ } | undefined;
3349
+ min?: number | undefined;
3350
+ max?: number | undefined;
3351
+ len?: number | undefined;
3352
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3353
+ whitespace?: boolean | undefined;
3354
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3355
+ options?: {
3356
+ suppressWarning?: boolean | undefined;
3357
+ suppressValidatorError?: boolean | undefined;
3358
+ first?: boolean | undefined;
3359
+ firstFields?: (boolean | string[]) | undefined;
3360
+ messages?: {
3361
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3362
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3363
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3364
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3365
+ date?: {
3366
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3367
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3368
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3369
+ } | undefined;
3370
+ types?: {
3371
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3372
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3373
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3374
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3375
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3376
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3377
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3378
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3379
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3380
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3381
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3382
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3383
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3384
+ } | undefined;
3385
+ string?: {
3386
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3387
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3388
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3389
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3390
+ } | undefined;
3391
+ number?: {
3392
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3393
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3394
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3395
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3396
+ } | undefined;
3397
+ array?: {
3398
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3399
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3400
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3401
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3402
+ } | undefined;
3403
+ pattern?: {
3404
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3405
+ } | undefined;
3406
+ } | undefined;
3407
+ keys?: string[] | undefined;
3408
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3409
+ } | undefined;
3410
+ defaultField?: any | any[] | undefined;
3411
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3412
+ message?: (string | ((a?: string) => string)) | undefined;
3413
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3414
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3415
+ }[] | undefined;
3416
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3417
+ message?: (string | ((a?: string) => string)) | undefined;
3418
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3419
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3420
+ } | {
3421
+ trigger?: (string | string[]) | undefined;
3422
+ type?: import("async-validator").RuleType | undefined;
3423
+ required?: boolean | undefined;
3424
+ pattern?: string | {
3425
+ exec: (string: string) => RegExpExecArray | null;
3426
+ test: (string: string) => boolean;
3427
+ readonly source: string;
3428
+ readonly global: boolean;
3429
+ readonly ignoreCase: boolean;
3430
+ readonly multiline: boolean;
3431
+ lastIndex: number;
3432
+ compile: (pattern: string, flags?: string) => RegExp;
3433
+ readonly flags: string;
3434
+ readonly sticky: boolean;
3435
+ readonly unicode: boolean;
3436
+ readonly dotAll: boolean;
3437
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3438
+ [Symbol.replace]: {
3439
+ (string: string, replaceValue: string): string;
3440
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3441
+ };
3442
+ [Symbol.search]: (string: string) => number;
3443
+ [Symbol.split]: (string: string, limit?: number) => string[];
3444
+ } | undefined;
3445
+ min?: number | undefined;
3446
+ max?: number | undefined;
3447
+ len?: number | undefined;
3448
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3449
+ whitespace?: boolean | undefined;
3450
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3451
+ options?: {
3452
+ suppressWarning?: boolean | undefined;
3453
+ suppressValidatorError?: boolean | undefined;
3454
+ first?: boolean | undefined;
3455
+ firstFields?: (boolean | string[]) | undefined;
3456
+ messages?: {
3457
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3458
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3459
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3460
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3461
+ date?: {
3462
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3463
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3464
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3465
+ } | undefined;
3466
+ types?: {
3467
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3468
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3469
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3470
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3471
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3472
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3473
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3474
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3475
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3476
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3477
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3478
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3479
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3480
+ } | undefined;
3481
+ string?: {
3482
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3483
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3484
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3485
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3486
+ } | undefined;
3487
+ number?: {
3488
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3489
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3490
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3491
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3492
+ } | undefined;
3493
+ array?: {
3494
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3495
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3496
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3497
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3498
+ } | undefined;
3499
+ pattern?: {
3500
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3501
+ } | undefined;
3502
+ } | undefined;
3503
+ keys?: string[] | undefined;
3504
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3505
+ } | undefined;
3506
+ defaultField?: {
3507
+ type?: import("async-validator").RuleType | undefined;
3508
+ required?: boolean | undefined;
3509
+ pattern?: string | {
3510
+ exec: (string: string) => RegExpExecArray | null;
3511
+ test: (string: string) => boolean;
3512
+ readonly source: string;
3513
+ readonly global: boolean;
3514
+ readonly ignoreCase: boolean;
3515
+ readonly multiline: boolean;
3516
+ lastIndex: number;
3517
+ compile: (pattern: string, flags?: string) => RegExp;
3518
+ readonly flags: string;
3519
+ readonly sticky: boolean;
3520
+ readonly unicode: boolean;
3521
+ readonly dotAll: boolean;
3522
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3523
+ [Symbol.replace]: {
3524
+ (string: string, replaceValue: string): string;
3525
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3526
+ };
3527
+ [Symbol.search]: (string: string) => number;
3528
+ [Symbol.split]: (string: string, limit?: number) => string[];
3529
+ } | undefined;
3530
+ min?: number | undefined;
3531
+ max?: number | undefined;
3532
+ len?: number | undefined;
3533
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3534
+ whitespace?: boolean | undefined;
3535
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3536
+ options?: {
3537
+ suppressWarning?: boolean | undefined;
3538
+ suppressValidatorError?: boolean | undefined;
3539
+ first?: boolean | undefined;
3540
+ firstFields?: (boolean | string[]) | undefined;
3541
+ messages?: {
3542
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3543
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3544
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3545
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3546
+ date?: {
3547
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3548
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3549
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3550
+ } | undefined;
3551
+ types?: {
3552
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3553
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3554
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3555
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3556
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3557
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3558
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3559
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3560
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3561
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3562
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3563
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3564
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3565
+ } | undefined;
3566
+ string?: {
3567
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3568
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3569
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3570
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3571
+ } | undefined;
3572
+ number?: {
3573
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3574
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3575
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3576
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3577
+ } | undefined;
3578
+ array?: {
3579
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3580
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3581
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3582
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3583
+ } | undefined;
3584
+ pattern?: {
3585
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3586
+ } | undefined;
3587
+ } | undefined;
3588
+ keys?: string[] | undefined;
3589
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3590
+ } | undefined;
3591
+ defaultField?: any | any[] | undefined;
3592
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3593
+ message?: (string | ((a?: string) => string)) | undefined;
3594
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3595
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3596
+ } | {
3597
+ type?: import("async-validator").RuleType | undefined;
3598
+ required?: boolean | undefined;
3599
+ pattern?: string | {
3600
+ exec: (string: string) => RegExpExecArray | null;
3601
+ test: (string: string) => boolean;
3602
+ readonly source: string;
3603
+ readonly global: boolean;
3604
+ readonly ignoreCase: boolean;
3605
+ readonly multiline: boolean;
3606
+ lastIndex: number;
3607
+ compile: (pattern: string, flags?: string) => RegExp;
3608
+ readonly flags: string;
3609
+ readonly sticky: boolean;
3610
+ readonly unicode: boolean;
3611
+ readonly dotAll: boolean;
3612
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3613
+ [Symbol.replace]: {
3614
+ (string: string, replaceValue: string): string;
3615
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3616
+ };
3617
+ [Symbol.search]: (string: string) => number;
3618
+ [Symbol.split]: (string: string, limit?: number) => string[];
3619
+ } | undefined;
3620
+ min?: number | undefined;
3621
+ max?: number | undefined;
3622
+ len?: number | undefined;
3623
+ enum?: Array<string | number | boolean | null | undefined> | undefined;
3624
+ whitespace?: boolean | undefined;
3625
+ fields?: Record<string, import("async-validator").Rule> | undefined;
3626
+ options?: {
3627
+ suppressWarning?: boolean | undefined;
3628
+ suppressValidatorError?: boolean | undefined;
3629
+ first?: boolean | undefined;
3630
+ firstFields?: (boolean | string[]) | undefined;
3631
+ messages?: {
3632
+ default?: (string | ((...args: unknown[]) => string)) | undefined;
3633
+ required?: (string | ((args_0: string | undefined) => string)) | undefined;
3634
+ enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3635
+ whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
3636
+ date?: {
3637
+ format?: (string | ((...args: unknown[]) => string)) | undefined;
3638
+ parse?: (string | ((...args: unknown[]) => string)) | undefined;
3639
+ invalid?: (string | ((...args: unknown[]) => string)) | undefined;
3640
+ } | undefined;
3641
+ types?: {
3642
+ string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3643
+ method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3644
+ array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3645
+ object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3646
+ number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3647
+ date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3648
+ boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3649
+ integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3650
+ float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3651
+ regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3652
+ email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3653
+ url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3654
+ hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
3655
+ } | undefined;
3656
+ string?: {
3657
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3658
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3659
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3660
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3661
+ } | undefined;
3662
+ number?: {
3663
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3664
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3665
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3666
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3667
+ } | undefined;
3668
+ array?: {
3669
+ len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3670
+ min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3671
+ max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
3672
+ range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
3673
+ } | undefined;
3674
+ pattern?: {
3675
+ mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
3676
+ } | undefined;
3677
+ } | undefined;
3678
+ keys?: string[] | undefined;
3679
+ error?: ((rule: import("async-validator").InternalRuleItem, message: string) => import("async-validator").ValidateError) | undefined;
3680
+ } | undefined;
3681
+ defaultField?: any | any[] | undefined;
3682
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3683
+ message?: (string | ((a?: string) => string)) | undefined;
3684
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3685
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3686
+ }[] | undefined;
3687
+ transform?: ((value: import("async-validator").Value) => import("async-validator").Value) | undefined;
3688
+ message?: (string | ((a?: string) => string)) | undefined;
3689
+ asyncValidator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => void | Promise<void>) | undefined;
3690
+ validator?: ((rule: import("async-validator").InternalRuleItem, value: import("async-validator").Value, callback: (error?: string | Error) => void, source: import("async-validator").Values, options: import("async-validator").ValidateOption) => import("async-validator").SyncValidateResult | void) | undefined;
3691
+ }[] | undefined;
3692
+ readonly validateStatus?: ("" | "error" | "success" | "validating") | undefined;
3693
+ readonly for?: string | undefined;
3694
+ }[];
3695
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3696
+ validate: (prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => void;
3697
+ }, string, {
3698
+ readonly disabled: boolean;
3699
+ readonly inline: boolean;
3700
+ readonly labelWidth: string | number;
3701
+ readonly labelPosition: "top" | "left" | "right";
3702
+ readonly inlineMessage: boolean;
3703
+ readonly showMessage: boolean;
3704
+ readonly requireAsteriskPosition: "left" | "right";
3705
+ readonly labelSuffix: string;
3706
+ readonly validateOnRuleChange: boolean;
3707
+ readonly scrollIntoViewOptions: boolean | Record<string, any>;
3708
+ readonly statusIcon: boolean;
3709
+ readonly hideRequiredAsterisk: boolean;
3710
+ readonly scrollToError: boolean;
3711
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3712
+ $slots: {
3713
+ default?(_: {}): any;
3714
+ };
3715
+ }) & import("vue").Plugin) & {
3716
+ FormItem: {
3717
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3718
+ readonly label: StringConstructor;
3719
+ readonly labelWidth: {
3720
+ readonly type: import("vue").PropType<string | number>;
3721
+ readonly required: false;
3722
+ readonly validator: ((val: unknown) => boolean) | undefined;
3723
+ __epPropKey: true;
3724
+ } & {
3725
+ readonly default: "";
3726
+ };
3727
+ readonly labelPosition: {
3728
+ readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
3729
+ readonly required: false;
3730
+ readonly validator: ((val: unknown) => boolean) | undefined;
3731
+ __epPropKey: true;
3732
+ } & {
3733
+ readonly default: "";
3734
+ };
3735
+ readonly prop: {
3736
+ readonly type: import("vue").PropType<import("element-plus").FormItemProp>;
3737
+ readonly required: false;
3738
+ readonly validator: ((val: unknown) => boolean) | undefined;
3739
+ __epPropKey: true;
3740
+ };
3741
+ readonly required: {
3742
+ readonly type: import("vue").PropType<boolean>;
3743
+ readonly required: false;
3744
+ readonly validator: ((val: unknown) => boolean) | undefined;
3745
+ __epPropKey: true;
3746
+ } & {
3747
+ readonly default: undefined;
3748
+ };
3749
+ readonly rules: {
3750
+ readonly type: import("vue").PropType<unknown>;
3751
+ readonly required: false;
3752
+ readonly validator: ((val: unknown) => boolean) | undefined;
3753
+ __epPropKey: true;
3754
+ };
3755
+ readonly error: StringConstructor;
3756
+ readonly validateStatus: {
3757
+ readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
3758
+ readonly required: false;
3759
+ readonly validator: ((val: unknown) => boolean) | undefined;
3760
+ __epPropKey: true;
3761
+ };
3762
+ readonly for: StringConstructor;
3763
+ readonly inlineMessage: {
3764
+ readonly type: import("vue").PropType<string | boolean>;
3765
+ readonly required: false;
3766
+ readonly validator: ((val: unknown) => boolean) | undefined;
3767
+ __epPropKey: true;
3768
+ } & {
3769
+ readonly default: "";
3770
+ };
3771
+ readonly showMessage: {
3772
+ readonly type: import("vue").PropType<boolean>;
3773
+ readonly required: false;
3774
+ readonly validator: ((val: unknown) => boolean) | undefined;
3775
+ __epPropKey: true;
3776
+ } & {
3777
+ readonly default: true;
3778
+ };
3779
+ readonly size: {
3780
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
3781
+ readonly required: false;
3782
+ readonly validator: ((val: unknown) => boolean) | undefined;
3783
+ __epPropKey: true;
3784
+ };
3785
+ }>>, {
3786
+ size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
3787
+ validateMessage: import("vue").Ref<string>;
3788
+ validateState: import("vue").Ref<"" | "error" | "validating" | "success">;
3789
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3790
+ clearValidate: () => void;
3791
+ resetField: () => void;
3792
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
3793
+ readonly required: boolean;
3794
+ readonly labelWidth: string | number;
3795
+ readonly labelPosition: "" | "top" | "left" | "right";
3796
+ readonly inlineMessage: string | boolean;
3797
+ readonly showMessage: boolean;
3798
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3799
+ P: {};
3800
+ B: {};
3801
+ D: {};
3802
+ C: {};
3803
+ M: {};
3804
+ Defaults: {};
3805
+ }, Readonly<import("vue").ExtractPropTypes<{
3806
+ readonly label: StringConstructor;
3807
+ readonly labelWidth: {
3808
+ readonly type: import("vue").PropType<string | number>;
3809
+ readonly required: false;
3810
+ readonly validator: ((val: unknown) => boolean) | undefined;
3811
+ __epPropKey: true;
3812
+ } & {
3813
+ readonly default: "";
3814
+ };
3815
+ readonly labelPosition: {
3816
+ readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
3817
+ readonly required: false;
3818
+ readonly validator: ((val: unknown) => boolean) | undefined;
3819
+ __epPropKey: true;
3820
+ } & {
3821
+ readonly default: "";
3822
+ };
3823
+ readonly prop: {
3824
+ readonly type: import("vue").PropType<import("element-plus").FormItemProp>;
3825
+ readonly required: false;
3826
+ readonly validator: ((val: unknown) => boolean) | undefined;
3827
+ __epPropKey: true;
3828
+ };
3829
+ readonly required: {
3830
+ readonly type: import("vue").PropType<boolean>;
3831
+ readonly required: false;
3832
+ readonly validator: ((val: unknown) => boolean) | undefined;
3833
+ __epPropKey: true;
3834
+ } & {
3835
+ readonly default: undefined;
3836
+ };
3837
+ readonly rules: {
3838
+ readonly type: import("vue").PropType<unknown>;
3839
+ readonly required: false;
3840
+ readonly validator: ((val: unknown) => boolean) | undefined;
3841
+ __epPropKey: true;
3842
+ };
3843
+ readonly error: StringConstructor;
3844
+ readonly validateStatus: {
3845
+ readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
3846
+ readonly required: false;
3847
+ readonly validator: ((val: unknown) => boolean) | undefined;
3848
+ __epPropKey: true;
3849
+ };
3850
+ readonly for: StringConstructor;
3851
+ readonly inlineMessage: {
3852
+ readonly type: import("vue").PropType<string | boolean>;
3853
+ readonly required: false;
3854
+ readonly validator: ((val: unknown) => boolean) | undefined;
3855
+ __epPropKey: true;
3856
+ } & {
3857
+ readonly default: "";
3858
+ };
3859
+ readonly showMessage: {
3860
+ readonly type: import("vue").PropType<boolean>;
3861
+ readonly required: false;
3862
+ readonly validator: ((val: unknown) => boolean) | undefined;
3863
+ __epPropKey: true;
3864
+ } & {
3865
+ readonly default: true;
3866
+ };
3867
+ readonly size: {
3868
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
3869
+ readonly required: false;
3870
+ readonly validator: ((val: unknown) => boolean) | undefined;
3871
+ __epPropKey: true;
3872
+ };
3873
+ }>>, {
3874
+ size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
3875
+ validateMessage: import("vue").Ref<string>;
3876
+ validateState: import("vue").Ref<"" | "error" | "validating" | "success">;
3877
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3878
+ clearValidate: () => void;
3879
+ resetField: () => void;
3880
+ }, {}, {}, {}, {
3881
+ readonly required: boolean;
3882
+ readonly labelWidth: string | number;
3883
+ readonly labelPosition: "" | "top" | "left" | "right";
3884
+ readonly inlineMessage: string | boolean;
3885
+ readonly showMessage: boolean;
3886
+ }>;
3887
+ __isFragment?: never;
3888
+ __isTeleport?: never;
3889
+ __isSuspense?: never;
3890
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3891
+ readonly label: StringConstructor;
3892
+ readonly labelWidth: {
3893
+ readonly type: import("vue").PropType<string | number>;
3894
+ readonly required: false;
3895
+ readonly validator: ((val: unknown) => boolean) | undefined;
3896
+ __epPropKey: true;
3897
+ } & {
3898
+ readonly default: "";
3899
+ };
3900
+ readonly labelPosition: {
3901
+ readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
3902
+ readonly required: false;
3903
+ readonly validator: ((val: unknown) => boolean) | undefined;
3904
+ __epPropKey: true;
3905
+ } & {
3906
+ readonly default: "";
3907
+ };
3908
+ readonly prop: {
3909
+ readonly type: import("vue").PropType<import("element-plus").FormItemProp>;
3910
+ readonly required: false;
3911
+ readonly validator: ((val: unknown) => boolean) | undefined;
3912
+ __epPropKey: true;
3913
+ };
3914
+ readonly required: {
3915
+ readonly type: import("vue").PropType<boolean>;
3916
+ readonly required: false;
3917
+ readonly validator: ((val: unknown) => boolean) | undefined;
3918
+ __epPropKey: true;
3919
+ } & {
3920
+ readonly default: undefined;
3921
+ };
3922
+ readonly rules: {
3923
+ readonly type: import("vue").PropType<unknown>;
3924
+ readonly required: false;
3925
+ readonly validator: ((val: unknown) => boolean) | undefined;
3926
+ __epPropKey: true;
3927
+ };
3928
+ readonly error: StringConstructor;
3929
+ readonly validateStatus: {
3930
+ readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
3931
+ readonly required: false;
3932
+ readonly validator: ((val: unknown) => boolean) | undefined;
3933
+ __epPropKey: true;
3934
+ };
3935
+ readonly for: StringConstructor;
3936
+ readonly inlineMessage: {
3937
+ readonly type: import("vue").PropType<string | boolean>;
3938
+ readonly required: false;
3939
+ readonly validator: ((val: unknown) => boolean) | undefined;
3940
+ __epPropKey: true;
3941
+ } & {
3942
+ readonly default: "";
3943
+ };
3944
+ readonly showMessage: {
3945
+ readonly type: import("vue").PropType<boolean>;
3946
+ readonly required: false;
3947
+ readonly validator: ((val: unknown) => boolean) | undefined;
3948
+ __epPropKey: true;
3949
+ } & {
3950
+ readonly default: true;
3951
+ };
3952
+ readonly size: {
3953
+ readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
3954
+ readonly required: false;
3955
+ readonly validator: ((val: unknown) => boolean) | undefined;
3956
+ __epPropKey: true;
3957
+ };
3958
+ }>>, {
3959
+ size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
3960
+ validateMessage: import("vue").Ref<string>;
3961
+ validateState: import("vue").Ref<"" | "error" | "validating" | "success">;
3962
+ validate: (trigger: string, callback?: import("element-plus").FormValidateCallback) => import("element-plus").FormValidationResult;
3963
+ clearValidate: () => void;
3964
+ resetField: () => void;
3965
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
3966
+ readonly required: boolean;
3967
+ readonly labelWidth: string | number;
3968
+ readonly labelPosition: "" | "top" | "left" | "right";
3969
+ readonly inlineMessage: string | boolean;
3970
+ readonly showMessage: boolean;
3971
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3972
+ $slots: {
3973
+ label?(_: {
3974
+ label: string;
3975
+ }): any;
3976
+ default?(_: {}): any;
3977
+ error?(_: {
3978
+ error: string;
3979
+ }): any;
3980
+ };
3981
+ });
3982
+ };
3983
+ VkfFormItemRenderer: {
3984
+ new (...args: any[]): any;
3985
+ __isFragment?: never;
3986
+ __isTeleport?: never;
3987
+ __isSuspense?: never;
3988
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
3989
+ [x: string]: any;
3990
+ [x: symbol]: any;
3991
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3992
+ install(app: import("vue").App): void;
3993
+ };
3994
+ VkfTemplatesDefault: never;
3995
+ VkfTemplatesLayout: {
3996
+ new (...args: any[]): any;
3997
+ __isFragment?: never;
3998
+ __isTeleport?: never;
3999
+ __isSuspense?: never;
4000
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
4001
+ [x: string]: any;
4002
+ [x: symbol]: any;
4003
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
4004
+ install(app: import("vue").App): void;
4005
+ };
4006
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4007
+ export default _default;