sd-render 1.0.25 → 1.0.26

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 (34) hide show
  1. package/package.json +1 -1
  2. package/{sd-lib-Beap5Rlw.js → sd-lib-BRDqWpkQ.js} +3 -3
  3. package/{sd-render-E0INO1rV.js → sd-render-DK3Yjbxt.js} +2 -2
  4. package/sd-render.es.js +2 -2
  5. package/sd-render.style.css +1 -1
  6. package/types/src/components/input3/eltiptap/widget/ExtensionViews/ImageView.vue.d.ts +128 -622
  7. package/types/src/components/input3/eltiptap/widget/ExtensionViews/TaskItemView.vue.d.ts +109 -623
  8. package/types/src/components/input3/eltiptap/widget/MenuCommands/AddYoutubeCommandButton.vue.d.ts +541 -4734
  9. package/types/src/components/input3/eltiptap/widget/MenuCommands/ColorPopover.vue.d.ts +314 -1649
  10. package/types/src/components/input3/eltiptap/widget/MenuCommands/CommandButton.vue.d.ts +117 -1061
  11. package/types/src/components/input3/eltiptap/widget/MenuCommands/FontFamilyDropdown.vue.d.ts +1925 -645
  12. package/types/src/components/input3/eltiptap/widget/MenuCommands/FontSizeDropdown.vue.d.ts +1923 -645
  13. package/types/src/components/input3/eltiptap/widget/MenuCommands/HeadingDropdown.vue.d.ts +1923 -645
  14. package/types/src/components/input3/eltiptap/widget/MenuCommands/HighlightPopover.vue.d.ts +314 -1649
  15. package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/EditImageCommandButton.vue.d.ts +444 -4366
  16. package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/ImageDisplayCommandButton.vue.d.ts +129 -623
  17. package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/InsertImageCommandButton.vue.d.ts +291 -1843
  18. package/types/src/components/input3/eltiptap/widget/MenuCommands/LineHeightDropdown.vue.d.ts +1923 -645
  19. package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/AddLinkCommandButton.vue.d.ts +541 -4734
  20. package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/EditLinkCommandButton.vue.d.ts +541 -4734
  21. package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/UploadFileCommandButton.vue.d.ts +541 -4734
  22. package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/CreateTablePopover.vue.d.ts +129 -623
  23. package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/index.vue.d.ts +129 -623
  24. package/types/src/components/sdwidget/SDImportAndModified.vue.d.ts +1 -1
  25. package/types/src/components/sdwidget/SDImportData.vue.d.ts +1 -1
  26. package/types/src/components/sdwidget/SDImportMapData.vue.d.ts +1 -1
  27. package/types/src/components/sdwidget/SdCrudForm.vue.d.ts +38 -30
  28. package/types/src/components/sdwidget/SdCrudPopupForm.vue.d.ts +38 -30
  29. package/types/src/components/sdwidget/SdFormSchema.vue.d.ts +48 -1362
  30. package/types/src/components/sdwidget/SdFormSchemaForm.vue.d.ts +48 -1362
  31. package/types/src/components/sdwidget/SdGallery.vue.d.ts +144 -616
  32. package/types/src/components/sdwidget/SdReport.vue.d.ts +38 -30
  33. package/types/src/types/Connect.d.ts +1 -1
  34. package/types/src/types/StateStore.d.ts +1 -0
@@ -18,39 +18,25 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
18
18
  joinFormRef: ({
19
19
  $: import('vue').ComponentInternalInstance;
20
20
  $data: {};
21
- $props: Partial<{
22
- readonly disabled: boolean;
23
- readonly inline: boolean;
24
- readonly labelWidth: string | number;
25
- readonly labelPosition: "left" | "right" | "top";
26
- readonly inlineMessage: boolean;
27
- readonly showMessage: boolean;
28
- readonly requireAsteriskPosition: "left" | "right";
29
- readonly labelSuffix: string;
30
- readonly validateOnRuleChange: boolean;
31
- readonly scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
32
- readonly statusIcon: boolean;
33
- readonly hideRequiredAsterisk: boolean;
34
- readonly scrollToError: boolean;
35
- }> & Omit<{
36
- readonly disabled: boolean;
37
- readonly inline: boolean;
38
- readonly labelPosition: "left" | "right" | "top";
39
- readonly requireAsteriskPosition: "left" | "right";
40
- readonly labelWidth: string | number;
41
- readonly labelSuffix: string;
42
- readonly inlineMessage: boolean;
43
- readonly statusIcon: boolean;
44
- readonly showMessage: boolean;
45
- readonly validateOnRuleChange: boolean;
46
- readonly hideRequiredAsterisk: boolean;
47
- readonly scrollToError: boolean;
48
- readonly scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
49
- readonly size?: ("" | "default" | "small" | "large") | undefined;
21
+ $props: {
50
22
  readonly model?: Record<string, any> | undefined;
51
- readonly rules?: Partial<Record<string, import('element-plus').FormItemRule | import('element-plus').FormItemRule[]>> | undefined;
52
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
53
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "inline" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions">;
23
+ readonly rules?: import('element-plus').FormRules | undefined;
24
+ readonly labelPosition?: "left" | "right" | "top" | undefined;
25
+ readonly requireAsteriskPosition?: "left" | "right" | undefined;
26
+ readonly labelWidth?: string | number | undefined;
27
+ readonly labelSuffix?: string | undefined;
28
+ readonly inline?: boolean | undefined;
29
+ readonly inlineMessage?: boolean | undefined;
30
+ readonly statusIcon?: boolean | undefined;
31
+ readonly showMessage?: boolean | undefined;
32
+ readonly validateOnRuleChange?: boolean | undefined;
33
+ readonly hideRequiredAsterisk?: boolean | undefined;
34
+ readonly scrollToError?: boolean | undefined;
35
+ readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
36
+ readonly size?: import('element-plus').ComponentSize | undefined;
37
+ readonly disabled?: boolean | undefined;
38
+ readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
39
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
54
40
  $attrs: {
55
41
  [x: string]: unknown;
56
42
  };
@@ -65,677 +51,27 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
65
51
  $host: Element | null;
66
52
  $emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
67
53
  $el: any;
68
- $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
69
- readonly model: ObjectConstructor;
70
- readonly rules: {
71
- readonly type: import('vue').PropType<Partial<Record<string, import('element-plus').FormItemRule | import('element-plus').FormItemRule[]>>>;
72
- readonly required: false;
73
- readonly validator: ((val: unknown) => boolean) | undefined;
74
- __epPropKey: true;
75
- };
76
- readonly labelPosition: {
77
- readonly type: import('vue').PropType<"left" | "right" | "top">;
78
- readonly required: false;
79
- readonly validator: ((val: unknown) => boolean) | undefined;
80
- __epPropKey: true;
81
- } & {
82
- readonly default: "right";
83
- };
84
- readonly requireAsteriskPosition: {
85
- readonly type: import('vue').PropType<"left" | "right">;
86
- readonly required: false;
87
- readonly validator: ((val: unknown) => boolean) | undefined;
88
- __epPropKey: true;
89
- } & {
90
- readonly default: "left";
91
- };
92
- readonly labelWidth: {
93
- readonly type: import('vue').PropType<string | number>;
94
- readonly required: false;
95
- readonly validator: ((val: unknown) => boolean) | undefined;
96
- __epPropKey: true;
97
- } & {
98
- readonly default: "";
99
- };
100
- readonly labelSuffix: {
101
- readonly type: import('vue').PropType<string>;
102
- readonly required: false;
103
- readonly validator: ((val: unknown) => boolean) | undefined;
104
- __epPropKey: true;
105
- } & {
106
- readonly default: "";
107
- };
108
- readonly inline: BooleanConstructor;
109
- readonly inlineMessage: BooleanConstructor;
110
- readonly statusIcon: BooleanConstructor;
111
- readonly showMessage: {
112
- readonly type: import('vue').PropType<boolean>;
113
- readonly required: false;
114
- readonly validator: ((val: unknown) => boolean) | undefined;
115
- __epPropKey: true;
116
- } & {
117
- readonly default: true;
118
- };
119
- readonly validateOnRuleChange: {
120
- readonly type: import('vue').PropType<boolean>;
121
- readonly required: false;
122
- readonly validator: ((val: unknown) => boolean) | undefined;
123
- __epPropKey: true;
124
- } & {
125
- readonly default: true;
126
- };
127
- readonly hideRequiredAsterisk: BooleanConstructor;
128
- readonly scrollToError: BooleanConstructor;
129
- readonly scrollIntoViewOptions: {
130
- readonly type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
131
- readonly required: false;
132
- readonly validator: ((val: unknown) => boolean) | undefined;
133
- __epPropKey: true;
134
- } & {
135
- readonly default: true;
136
- };
137
- readonly size: {
138
- readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
139
- readonly required: false;
140
- readonly validator: ((val: unknown) => boolean) | undefined;
141
- __epPropKey: true;
142
- };
143
- readonly disabled: BooleanConstructor;
144
- }>> & {
54
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
145
55
  onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
146
- }, {
56
+ }>, {
147
57
  validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
148
- validateField: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[], callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
149
- resetFields: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[]) => void;
150
- clearValidate: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[]) => void;
58
+ validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
59
+ resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
60
+ clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
151
61
  scrollToField: (prop: import('element-plus').FormItemProp) => void;
152
62
  getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
153
- fields: {
154
- $el: HTMLDivElement | undefined;
155
- size: import('element-plus').ComponentSize;
156
- validateMessage: string;
157
- validateState: import('element-plus').FormItemValidateState;
158
- isGroup: boolean;
159
- labelId: string;
160
- inputIds: string[];
161
- hasLabel: boolean;
162
- fieldValue: any;
163
- propString: string;
164
- addInputId: (id: string) => void;
165
- removeInputId: (id: string) => void;
166
- validate: (trigger: string, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
167
- resetField: () => void;
168
- clearValidate: () => void;
169
- readonly labelWidth: string | number;
170
- readonly labelPosition: "" | "left" | "right" | "top";
171
- readonly showMessage: boolean;
172
- readonly label?: string | undefined;
173
- readonly prop?: import('element-plus').FormItemProp | undefined;
174
- readonly required?: boolean | undefined;
175
- readonly error?: string | undefined;
176
- readonly rules?: {
177
- trigger?: (string | string[]) | undefined;
178
- type?: import('async-validator').RuleType | undefined;
179
- required?: boolean | undefined;
180
- pattern?: string | {
181
- exec: (string: string) => RegExpExecArray | null;
182
- test: (string: string) => boolean;
183
- readonly source: string;
184
- readonly global: boolean;
185
- readonly ignoreCase: boolean;
186
- readonly multiline: boolean;
187
- lastIndex: number;
188
- compile: (pattern: string, flags?: string) => RegExp;
189
- readonly flags: string;
190
- readonly sticky: boolean;
191
- readonly unicode: boolean;
192
- readonly dotAll: boolean;
193
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
194
- [Symbol.replace]: {
195
- (string: string, replaceValue: string): string;
196
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
197
- };
198
- [Symbol.search]: (string: string) => number;
199
- [Symbol.split]: (string: string, limit?: number) => string[];
200
- } | undefined;
201
- min?: number | undefined;
202
- max?: number | undefined;
203
- len?: number | undefined;
204
- enum?: Array<string | number | boolean | null | undefined> | undefined;
205
- whitespace?: boolean | undefined;
206
- fields?: Record<string, import('async-validator').Rule> | undefined;
207
- options?: {
208
- suppressWarning?: boolean | undefined;
209
- suppressValidatorError?: boolean | undefined;
210
- first?: boolean | undefined;
211
- firstFields?: (boolean | string[]) | undefined;
212
- messages?: {
213
- default?: (string | ((...args: unknown[]) => string)) | undefined;
214
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
215
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
216
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
217
- date?: {
218
- format?: (string | ((...args: unknown[]) => string)) | undefined;
219
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
220
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
221
- } | undefined;
222
- types?: {
223
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
224
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
225
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
226
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
227
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
228
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
229
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
230
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
231
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
232
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
233
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
234
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
235
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
236
- } | undefined;
237
- string?: {
238
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
239
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
240
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
241
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
242
- } | undefined;
243
- number?: {
244
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
245
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
246
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
247
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
248
- } | undefined;
249
- array?: {
250
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
251
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
252
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
253
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
254
- } | undefined;
255
- pattern?: {
256
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
257
- } | undefined;
258
- } | undefined;
259
- keys?: string[] | undefined;
260
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
261
- } | undefined;
262
- defaultField?: {
263
- type?: import('async-validator').RuleType | undefined;
264
- required?: boolean | undefined;
265
- pattern?: string | {
266
- exec: (string: string) => RegExpExecArray | null;
267
- test: (string: string) => boolean;
268
- readonly source: string;
269
- readonly global: boolean;
270
- readonly ignoreCase: boolean;
271
- readonly multiline: boolean;
272
- lastIndex: number;
273
- compile: (pattern: string, flags?: string) => RegExp;
274
- readonly flags: string;
275
- readonly sticky: boolean;
276
- readonly unicode: boolean;
277
- readonly dotAll: boolean;
278
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
279
- [Symbol.replace]: {
280
- (string: string, replaceValue: string): string;
281
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
282
- };
283
- [Symbol.search]: (string: string) => number;
284
- [Symbol.split]: (string: string, limit?: number) => string[];
285
- } | undefined;
286
- min?: number | undefined;
287
- max?: number | undefined;
288
- len?: number | undefined;
289
- enum?: Array<string | number | boolean | null | undefined> | undefined;
290
- whitespace?: boolean | undefined;
291
- fields?: Record<string, import('async-validator').Rule> | undefined;
292
- options?: {
293
- suppressWarning?: boolean | undefined;
294
- suppressValidatorError?: boolean | undefined;
295
- first?: boolean | undefined;
296
- firstFields?: (boolean | string[]) | undefined;
297
- messages?: {
298
- default?: (string | ((...args: unknown[]) => string)) | undefined;
299
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
300
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
301
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
302
- date?: {
303
- format?: (string | ((...args: unknown[]) => string)) | undefined;
304
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
305
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
306
- } | undefined;
307
- types?: {
308
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
309
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
310
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
311
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
312
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
313
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
314
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
315
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
316
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
317
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
318
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
319
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
320
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
321
- } | undefined;
322
- string?: {
323
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
324
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
325
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
326
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
327
- } | undefined;
328
- number?: {
329
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
330
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
331
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
332
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
333
- } | undefined;
334
- array?: {
335
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
336
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
337
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
338
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
339
- } | undefined;
340
- pattern?: {
341
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
342
- } | undefined;
343
- } | undefined;
344
- keys?: string[] | undefined;
345
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
346
- } | undefined;
347
- defaultField?: any | any[] | undefined;
348
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
349
- message?: (string | ((a?: string) => string)) | undefined;
350
- 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;
351
- 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;
352
- } | {
353
- type?: import('async-validator').RuleType | undefined;
354
- required?: boolean | undefined;
355
- pattern?: string | {
356
- exec: (string: string) => RegExpExecArray | null;
357
- test: (string: string) => boolean;
358
- readonly source: string;
359
- readonly global: boolean;
360
- readonly ignoreCase: boolean;
361
- readonly multiline: boolean;
362
- lastIndex: number;
363
- compile: (pattern: string, flags?: string) => RegExp;
364
- readonly flags: string;
365
- readonly sticky: boolean;
366
- readonly unicode: boolean;
367
- readonly dotAll: boolean;
368
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
369
- [Symbol.replace]: {
370
- (string: string, replaceValue: string): string;
371
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
372
- };
373
- [Symbol.search]: (string: string) => number;
374
- [Symbol.split]: (string: string, limit?: number) => string[];
375
- } | undefined;
376
- min?: number | undefined;
377
- max?: number | undefined;
378
- len?: number | undefined;
379
- enum?: Array<string | number | boolean | null | undefined> | undefined;
380
- whitespace?: boolean | undefined;
381
- fields?: Record<string, import('async-validator').Rule> | undefined;
382
- options?: {
383
- suppressWarning?: boolean | undefined;
384
- suppressValidatorError?: boolean | undefined;
385
- first?: boolean | undefined;
386
- firstFields?: (boolean | string[]) | undefined;
387
- messages?: {
388
- default?: (string | ((...args: unknown[]) => string)) | undefined;
389
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
390
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
391
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
392
- date?: {
393
- format?: (string | ((...args: unknown[]) => string)) | undefined;
394
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
395
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
396
- } | undefined;
397
- types?: {
398
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
399
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
400
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
401
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
402
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
403
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
404
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
405
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
406
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
407
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
408
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
409
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
410
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
411
- } | undefined;
412
- string?: {
413
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
414
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
415
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
416
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
417
- } | undefined;
418
- number?: {
419
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
420
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
421
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
422
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
423
- } | undefined;
424
- array?: {
425
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
426
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
427
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
428
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
429
- } | undefined;
430
- pattern?: {
431
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
432
- } | undefined;
433
- } | undefined;
434
- keys?: string[] | undefined;
435
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
436
- } | undefined;
437
- defaultField?: any | any[] | undefined;
438
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
439
- message?: (string | ((a?: string) => string)) | undefined;
440
- 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;
441
- 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;
442
- }[] | undefined;
443
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
444
- message?: (string | ((a?: string) => string)) | undefined;
445
- 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;
446
- 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;
447
- } | {
448
- trigger?: (string | string[]) | undefined;
449
- type?: import('async-validator').RuleType | undefined;
450
- required?: boolean | undefined;
451
- pattern?: string | {
452
- exec: (string: string) => RegExpExecArray | null;
453
- test: (string: string) => boolean;
454
- readonly source: string;
455
- readonly global: boolean;
456
- readonly ignoreCase: boolean;
457
- readonly multiline: boolean;
458
- lastIndex: number;
459
- compile: (pattern: string, flags?: string) => RegExp;
460
- readonly flags: string;
461
- readonly sticky: boolean;
462
- readonly unicode: boolean;
463
- readonly dotAll: boolean;
464
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
465
- [Symbol.replace]: {
466
- (string: string, replaceValue: string): string;
467
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
468
- };
469
- [Symbol.search]: (string: string) => number;
470
- [Symbol.split]: (string: string, limit?: number) => string[];
471
- } | undefined;
472
- min?: number | undefined;
473
- max?: number | undefined;
474
- len?: number | undefined;
475
- enum?: Array<string | number | boolean | null | undefined> | undefined;
476
- whitespace?: boolean | undefined;
477
- fields?: Record<string, import('async-validator').Rule> | undefined;
478
- options?: {
479
- suppressWarning?: boolean | undefined;
480
- suppressValidatorError?: boolean | undefined;
481
- first?: boolean | undefined;
482
- firstFields?: (boolean | string[]) | undefined;
483
- messages?: {
484
- default?: (string | ((...args: unknown[]) => string)) | undefined;
485
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
486
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
487
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
488
- date?: {
489
- format?: (string | ((...args: unknown[]) => string)) | undefined;
490
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
491
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
492
- } | undefined;
493
- types?: {
494
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
495
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
496
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
497
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
498
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
499
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
500
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
501
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
502
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
503
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
504
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
505
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
506
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
507
- } | undefined;
508
- string?: {
509
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
510
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
511
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
512
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
513
- } | undefined;
514
- number?: {
515
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
516
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
517
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
518
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
519
- } | undefined;
520
- array?: {
521
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
522
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
523
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
524
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
525
- } | undefined;
526
- pattern?: {
527
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
528
- } | undefined;
529
- } | undefined;
530
- keys?: string[] | undefined;
531
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
532
- } | undefined;
533
- defaultField?: {
534
- type?: import('async-validator').RuleType | undefined;
535
- required?: boolean | undefined;
536
- pattern?: string | {
537
- exec: (string: string) => RegExpExecArray | null;
538
- test: (string: string) => boolean;
539
- readonly source: string;
540
- readonly global: boolean;
541
- readonly ignoreCase: boolean;
542
- readonly multiline: boolean;
543
- lastIndex: number;
544
- compile: (pattern: string, flags?: string) => RegExp;
545
- readonly flags: string;
546
- readonly sticky: boolean;
547
- readonly unicode: boolean;
548
- readonly dotAll: boolean;
549
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
550
- [Symbol.replace]: {
551
- (string: string, replaceValue: string): string;
552
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
553
- };
554
- [Symbol.search]: (string: string) => number;
555
- [Symbol.split]: (string: string, limit?: number) => string[];
556
- } | undefined;
557
- min?: number | undefined;
558
- max?: number | undefined;
559
- len?: number | undefined;
560
- enum?: Array<string | number | boolean | null | undefined> | undefined;
561
- whitespace?: boolean | undefined;
562
- fields?: Record<string, import('async-validator').Rule> | undefined;
563
- options?: {
564
- suppressWarning?: boolean | undefined;
565
- suppressValidatorError?: boolean | undefined;
566
- first?: boolean | undefined;
567
- firstFields?: (boolean | string[]) | undefined;
568
- messages?: {
569
- default?: (string | ((...args: unknown[]) => string)) | undefined;
570
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
571
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
572
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
573
- date?: {
574
- format?: (string | ((...args: unknown[]) => string)) | undefined;
575
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
576
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
577
- } | undefined;
578
- types?: {
579
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
580
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
581
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
582
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
583
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
584
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
585
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
586
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
587
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
588
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
589
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
590
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
591
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
592
- } | undefined;
593
- string?: {
594
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
595
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
596
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
597
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
598
- } | undefined;
599
- number?: {
600
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
601
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
602
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
603
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
604
- } | undefined;
605
- array?: {
606
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
607
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
608
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
609
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
610
- } | undefined;
611
- pattern?: {
612
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
613
- } | undefined;
614
- } | undefined;
615
- keys?: string[] | undefined;
616
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
617
- } | undefined;
618
- defaultField?: any | any[] | undefined;
619
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
620
- message?: (string | ((a?: string) => string)) | undefined;
621
- 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;
622
- 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;
623
- } | {
624
- type?: import('async-validator').RuleType | undefined;
625
- required?: boolean | undefined;
626
- pattern?: string | {
627
- exec: (string: string) => RegExpExecArray | null;
628
- test: (string: string) => boolean;
629
- readonly source: string;
630
- readonly global: boolean;
631
- readonly ignoreCase: boolean;
632
- readonly multiline: boolean;
633
- lastIndex: number;
634
- compile: (pattern: string, flags?: string) => RegExp;
635
- readonly flags: string;
636
- readonly sticky: boolean;
637
- readonly unicode: boolean;
638
- readonly dotAll: boolean;
639
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
640
- [Symbol.replace]: {
641
- (string: string, replaceValue: string): string;
642
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
643
- };
644
- [Symbol.search]: (string: string) => number;
645
- [Symbol.split]: (string: string, limit?: number) => string[];
646
- } | undefined;
647
- min?: number | undefined;
648
- max?: number | undefined;
649
- len?: number | undefined;
650
- enum?: Array<string | number | boolean | null | undefined> | undefined;
651
- whitespace?: boolean | undefined;
652
- fields?: Record<string, import('async-validator').Rule> | undefined;
653
- options?: {
654
- suppressWarning?: boolean | undefined;
655
- suppressValidatorError?: boolean | undefined;
656
- first?: boolean | undefined;
657
- firstFields?: (boolean | string[]) | undefined;
658
- messages?: {
659
- default?: (string | ((...args: unknown[]) => string)) | undefined;
660
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
661
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
662
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
663
- date?: {
664
- format?: (string | ((...args: unknown[]) => string)) | undefined;
665
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
666
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
667
- } | undefined;
668
- types?: {
669
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
670
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
671
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
672
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
673
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
674
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
675
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
676
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
677
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
678
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
679
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
680
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
681
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
682
- } | undefined;
683
- string?: {
684
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
685
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
686
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
687
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
688
- } | undefined;
689
- number?: {
690
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
691
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
692
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
693
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
694
- } | undefined;
695
- array?: {
696
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
697
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
698
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
699
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
700
- } | undefined;
701
- pattern?: {
702
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
703
- } | undefined;
704
- } | undefined;
705
- keys?: string[] | undefined;
706
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
707
- } | undefined;
708
- defaultField?: any | any[] | undefined;
709
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
710
- message?: (string | ((a?: string) => string)) | undefined;
711
- 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;
712
- 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;
713
- }[] | undefined;
714
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
715
- message?: (string | ((a?: string) => string)) | undefined;
716
- 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;
717
- 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;
718
- }[] | undefined;
719
- readonly validateStatus?: ("" | "success" | "error" | "validating") | undefined;
720
- readonly inlineMessage?: boolean | undefined;
721
- readonly for?: string | undefined;
722
- }[];
723
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
63
+ fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
64
+ setInitialValues: (initModel: Record<string, any>) => void;
65
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
724
66
  validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
725
67
  }, string, {
726
- readonly disabled: boolean;
727
- readonly inline: boolean;
728
- readonly labelWidth: string | number;
729
- readonly labelPosition: "left" | "right" | "top";
730
- readonly inlineMessage: boolean;
731
- readonly showMessage: boolean;
732
- readonly requireAsteriskPosition: "left" | "right";
733
- readonly labelSuffix: string;
734
- readonly validateOnRuleChange: boolean;
735
- readonly scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
736
- readonly statusIcon: boolean;
737
- readonly hideRequiredAsterisk: boolean;
738
- readonly scrollToError: boolean;
68
+ scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
69
+ labelWidth: string | number;
70
+ labelPosition: "left" | "right" | "top";
71
+ requireAsteriskPosition: "left" | "right";
72
+ labelSuffix: string;
73
+ showMessage: boolean;
74
+ validateOnRuleChange: boolean;
739
75
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
740
76
  beforeCreate?: (() => void) | (() => void)[];
741
77
  created?: (() => void) | (() => void)[];
@@ -757,677 +93,27 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
757
93
  $nextTick: typeof nextTick;
758
94
  $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;
759
95
  } & Readonly<{
760
- readonly disabled: boolean;
761
- readonly inline: boolean;
762
- readonly labelWidth: string | number;
763
- readonly labelPosition: "left" | "right" | "top";
764
- readonly inlineMessage: boolean;
765
- readonly showMessage: boolean;
766
- readonly requireAsteriskPosition: "left" | "right";
767
- readonly labelSuffix: string;
768
- readonly validateOnRuleChange: boolean;
769
- readonly scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
770
- readonly statusIcon: boolean;
771
- readonly hideRequiredAsterisk: boolean;
772
- readonly scrollToError: boolean;
773
- }> & Omit<Readonly<import('vue').ExtractPropTypes<{
774
- readonly model: ObjectConstructor;
775
- readonly rules: {
776
- readonly type: import('vue').PropType<Partial<Record<string, import('element-plus').FormItemRule | import('element-plus').FormItemRule[]>>>;
777
- readonly required: false;
778
- readonly validator: ((val: unknown) => boolean) | undefined;
779
- __epPropKey: true;
780
- };
781
- readonly labelPosition: {
782
- readonly type: import('vue').PropType<"left" | "right" | "top">;
783
- readonly required: false;
784
- readonly validator: ((val: unknown) => boolean) | undefined;
785
- __epPropKey: true;
786
- } & {
787
- readonly default: "right";
788
- };
789
- readonly requireAsteriskPosition: {
790
- readonly type: import('vue').PropType<"left" | "right">;
791
- readonly required: false;
792
- readonly validator: ((val: unknown) => boolean) | undefined;
793
- __epPropKey: true;
794
- } & {
795
- readonly default: "left";
796
- };
797
- readonly labelWidth: {
798
- readonly type: import('vue').PropType<string | number>;
799
- readonly required: false;
800
- readonly validator: ((val: unknown) => boolean) | undefined;
801
- __epPropKey: true;
802
- } & {
803
- readonly default: "";
804
- };
805
- readonly labelSuffix: {
806
- readonly type: import('vue').PropType<string>;
807
- readonly required: false;
808
- readonly validator: ((val: unknown) => boolean) | undefined;
809
- __epPropKey: true;
810
- } & {
811
- readonly default: "";
812
- };
813
- readonly inline: BooleanConstructor;
814
- readonly inlineMessage: BooleanConstructor;
815
- readonly statusIcon: BooleanConstructor;
816
- readonly showMessage: {
817
- readonly type: import('vue').PropType<boolean>;
818
- readonly required: false;
819
- readonly validator: ((val: unknown) => boolean) | undefined;
820
- __epPropKey: true;
821
- } & {
822
- readonly default: true;
823
- };
824
- readonly validateOnRuleChange: {
825
- readonly type: import('vue').PropType<boolean>;
826
- readonly required: false;
827
- readonly validator: ((val: unknown) => boolean) | undefined;
828
- __epPropKey: true;
829
- } & {
830
- readonly default: true;
831
- };
832
- readonly hideRequiredAsterisk: BooleanConstructor;
833
- readonly scrollToError: BooleanConstructor;
834
- readonly scrollIntoViewOptions: {
835
- readonly type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
836
- readonly required: false;
837
- readonly validator: ((val: unknown) => boolean) | undefined;
838
- __epPropKey: true;
839
- } & {
840
- readonly default: true;
841
- };
842
- readonly size: {
843
- readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
844
- readonly required: false;
845
- readonly validator: ((val: unknown) => boolean) | undefined;
846
- __epPropKey: true;
847
- };
848
- readonly disabled: BooleanConstructor;
849
- }>> & {
96
+ scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
97
+ labelWidth: string | number;
98
+ labelPosition: "left" | "right" | "top";
99
+ requireAsteriskPosition: "left" | "right";
100
+ labelSuffix: string;
101
+ showMessage: boolean;
102
+ validateOnRuleChange: boolean;
103
+ }> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
850
104
  onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
851
- }, "disabled" | "inline" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields"> & import('vue').ShallowUnwrapRef<{
105
+ }>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & import('vue').ShallowUnwrapRef<{
852
106
  validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
853
- validateField: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[], callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
854
- resetFields: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[]) => void;
855
- clearValidate: (props?: import('element-plus').FormItemProp | import('element-plus').FormItemProp[]) => void;
107
+ validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
108
+ resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
109
+ clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
856
110
  scrollToField: (prop: import('element-plus').FormItemProp) => void;
857
111
  getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
858
- fields: {
859
- $el: HTMLDivElement | undefined;
860
- size: import('element-plus').ComponentSize;
861
- validateMessage: string;
862
- validateState: import('element-plus').FormItemValidateState;
863
- isGroup: boolean;
864
- labelId: string;
865
- inputIds: string[];
866
- hasLabel: boolean;
867
- fieldValue: any;
868
- propString: string;
869
- addInputId: (id: string) => void;
870
- removeInputId: (id: string) => void;
871
- validate: (trigger: string, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
872
- resetField: () => void;
873
- clearValidate: () => void;
874
- readonly labelWidth: string | number;
875
- readonly labelPosition: "" | "left" | "right" | "top";
876
- readonly showMessage: boolean;
877
- readonly label?: string | undefined;
878
- readonly prop?: import('element-plus').FormItemProp | undefined;
879
- readonly required?: boolean | undefined;
880
- readonly error?: string | undefined;
881
- readonly rules?: {
882
- trigger?: (string | string[]) | undefined;
883
- type?: import('async-validator').RuleType | undefined;
884
- required?: boolean | undefined;
885
- pattern?: string | {
886
- exec: (string: string) => RegExpExecArray | null;
887
- test: (string: string) => boolean;
888
- readonly source: string;
889
- readonly global: boolean;
890
- readonly ignoreCase: boolean;
891
- readonly multiline: boolean;
892
- lastIndex: number;
893
- compile: (pattern: string, flags?: string) => RegExp;
894
- readonly flags: string;
895
- readonly sticky: boolean;
896
- readonly unicode: boolean;
897
- readonly dotAll: boolean;
898
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
899
- [Symbol.replace]: {
900
- (string: string, replaceValue: string): string;
901
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
902
- };
903
- [Symbol.search]: (string: string) => number;
904
- [Symbol.split]: (string: string, limit?: number) => string[];
905
- } | undefined;
906
- min?: number | undefined;
907
- max?: number | undefined;
908
- len?: number | undefined;
909
- enum?: Array<string | number | boolean | null | undefined> | undefined;
910
- whitespace?: boolean | undefined;
911
- fields?: Record<string, import('async-validator').Rule> | undefined;
912
- options?: {
913
- suppressWarning?: boolean | undefined;
914
- suppressValidatorError?: boolean | undefined;
915
- first?: boolean | undefined;
916
- firstFields?: (boolean | string[]) | undefined;
917
- messages?: {
918
- default?: (string | ((...args: unknown[]) => string)) | undefined;
919
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
920
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
921
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
922
- date?: {
923
- format?: (string | ((...args: unknown[]) => string)) | undefined;
924
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
925
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
926
- } | undefined;
927
- types?: {
928
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
929
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
930
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
931
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
932
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
933
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
934
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
935
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
936
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
937
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
938
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
939
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
940
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
941
- } | undefined;
942
- string?: {
943
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
944
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
945
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
946
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
947
- } | undefined;
948
- number?: {
949
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
950
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
951
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
952
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
953
- } | undefined;
954
- array?: {
955
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
956
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
957
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
958
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
959
- } | undefined;
960
- pattern?: {
961
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
962
- } | undefined;
963
- } | undefined;
964
- keys?: string[] | undefined;
965
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
966
- } | undefined;
967
- defaultField?: {
968
- type?: import('async-validator').RuleType | undefined;
969
- required?: boolean | undefined;
970
- pattern?: string | {
971
- exec: (string: string) => RegExpExecArray | null;
972
- test: (string: string) => boolean;
973
- readonly source: string;
974
- readonly global: boolean;
975
- readonly ignoreCase: boolean;
976
- readonly multiline: boolean;
977
- lastIndex: number;
978
- compile: (pattern: string, flags?: string) => RegExp;
979
- readonly flags: string;
980
- readonly sticky: boolean;
981
- readonly unicode: boolean;
982
- readonly dotAll: boolean;
983
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
984
- [Symbol.replace]: {
985
- (string: string, replaceValue: string): string;
986
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
987
- };
988
- [Symbol.search]: (string: string) => number;
989
- [Symbol.split]: (string: string, limit?: number) => string[];
990
- } | undefined;
991
- min?: number | undefined;
992
- max?: number | undefined;
993
- len?: number | undefined;
994
- enum?: Array<string | number | boolean | null | undefined> | undefined;
995
- whitespace?: boolean | undefined;
996
- fields?: Record<string, import('async-validator').Rule> | undefined;
997
- options?: {
998
- suppressWarning?: boolean | undefined;
999
- suppressValidatorError?: boolean | undefined;
1000
- first?: boolean | undefined;
1001
- firstFields?: (boolean | string[]) | undefined;
1002
- messages?: {
1003
- default?: (string | ((...args: unknown[]) => string)) | undefined;
1004
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
1005
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1006
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1007
- date?: {
1008
- format?: (string | ((...args: unknown[]) => string)) | undefined;
1009
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
1010
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1011
- } | undefined;
1012
- types?: {
1013
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1014
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1015
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1016
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1017
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1018
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1019
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1020
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1021
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1022
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1023
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1024
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1025
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1026
- } | undefined;
1027
- string?: {
1028
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1029
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1030
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1031
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1032
- } | undefined;
1033
- number?: {
1034
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1035
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1036
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1037
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1038
- } | undefined;
1039
- array?: {
1040
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1041
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1042
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1043
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1044
- } | undefined;
1045
- pattern?: {
1046
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1047
- } | undefined;
1048
- } | undefined;
1049
- keys?: string[] | undefined;
1050
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
1051
- } | undefined;
1052
- defaultField?: any | any[] | undefined;
1053
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1054
- message?: (string | ((a?: string) => string)) | undefined;
1055
- 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;
1056
- 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;
1057
- } | {
1058
- type?: import('async-validator').RuleType | undefined;
1059
- required?: boolean | undefined;
1060
- pattern?: string | {
1061
- exec: (string: string) => RegExpExecArray | null;
1062
- test: (string: string) => boolean;
1063
- readonly source: string;
1064
- readonly global: boolean;
1065
- readonly ignoreCase: boolean;
1066
- readonly multiline: boolean;
1067
- lastIndex: number;
1068
- compile: (pattern: string, flags?: string) => RegExp;
1069
- readonly flags: string;
1070
- readonly sticky: boolean;
1071
- readonly unicode: boolean;
1072
- readonly dotAll: boolean;
1073
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1074
- [Symbol.replace]: {
1075
- (string: string, replaceValue: string): string;
1076
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1077
- };
1078
- [Symbol.search]: (string: string) => number;
1079
- [Symbol.split]: (string: string, limit?: number) => string[];
1080
- } | undefined;
1081
- min?: number | undefined;
1082
- max?: number | undefined;
1083
- len?: number | undefined;
1084
- enum?: Array<string | number | boolean | null | undefined> | undefined;
1085
- whitespace?: boolean | undefined;
1086
- fields?: Record<string, import('async-validator').Rule> | undefined;
1087
- options?: {
1088
- suppressWarning?: boolean | undefined;
1089
- suppressValidatorError?: boolean | undefined;
1090
- first?: boolean | undefined;
1091
- firstFields?: (boolean | string[]) | undefined;
1092
- messages?: {
1093
- default?: (string | ((...args: unknown[]) => string)) | undefined;
1094
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
1095
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1096
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1097
- date?: {
1098
- format?: (string | ((...args: unknown[]) => string)) | undefined;
1099
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
1100
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1101
- } | undefined;
1102
- types?: {
1103
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1104
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1105
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1106
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1107
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1108
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1109
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1110
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1111
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1112
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1113
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1114
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1115
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1116
- } | undefined;
1117
- string?: {
1118
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1119
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1120
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1121
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1122
- } | undefined;
1123
- number?: {
1124
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1125
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1126
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1127
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1128
- } | undefined;
1129
- array?: {
1130
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1131
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1132
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1133
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1134
- } | undefined;
1135
- pattern?: {
1136
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1137
- } | undefined;
1138
- } | undefined;
1139
- keys?: string[] | undefined;
1140
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
1141
- } | undefined;
1142
- defaultField?: any | any[] | undefined;
1143
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1144
- message?: (string | ((a?: string) => string)) | undefined;
1145
- 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;
1146
- 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;
1147
- }[] | undefined;
1148
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1149
- message?: (string | ((a?: string) => string)) | undefined;
1150
- 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;
1151
- 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;
1152
- } | {
1153
- trigger?: (string | string[]) | undefined;
1154
- type?: import('async-validator').RuleType | undefined;
1155
- required?: boolean | undefined;
1156
- pattern?: string | {
1157
- exec: (string: string) => RegExpExecArray | null;
1158
- test: (string: string) => boolean;
1159
- readonly source: string;
1160
- readonly global: boolean;
1161
- readonly ignoreCase: boolean;
1162
- readonly multiline: boolean;
1163
- lastIndex: number;
1164
- compile: (pattern: string, flags?: string) => RegExp;
1165
- readonly flags: string;
1166
- readonly sticky: boolean;
1167
- readonly unicode: boolean;
1168
- readonly dotAll: boolean;
1169
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1170
- [Symbol.replace]: {
1171
- (string: string, replaceValue: string): string;
1172
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1173
- };
1174
- [Symbol.search]: (string: string) => number;
1175
- [Symbol.split]: (string: string, limit?: number) => string[];
1176
- } | undefined;
1177
- min?: number | undefined;
1178
- max?: number | undefined;
1179
- len?: number | undefined;
1180
- enum?: Array<string | number | boolean | null | undefined> | undefined;
1181
- whitespace?: boolean | undefined;
1182
- fields?: Record<string, import('async-validator').Rule> | undefined;
1183
- options?: {
1184
- suppressWarning?: boolean | undefined;
1185
- suppressValidatorError?: boolean | undefined;
1186
- first?: boolean | undefined;
1187
- firstFields?: (boolean | string[]) | undefined;
1188
- messages?: {
1189
- default?: (string | ((...args: unknown[]) => string)) | undefined;
1190
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
1191
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1192
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1193
- date?: {
1194
- format?: (string | ((...args: unknown[]) => string)) | undefined;
1195
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
1196
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1197
- } | undefined;
1198
- types?: {
1199
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1200
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1201
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1202
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1203
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1204
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1205
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1206
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1207
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1208
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1209
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1210
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1211
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1212
- } | undefined;
1213
- string?: {
1214
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1215
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1216
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1217
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1218
- } | undefined;
1219
- number?: {
1220
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1221
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1222
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1223
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1224
- } | undefined;
1225
- array?: {
1226
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1227
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1228
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1229
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1230
- } | undefined;
1231
- pattern?: {
1232
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1233
- } | undefined;
1234
- } | undefined;
1235
- keys?: string[] | undefined;
1236
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
1237
- } | undefined;
1238
- defaultField?: {
1239
- type?: import('async-validator').RuleType | undefined;
1240
- required?: boolean | undefined;
1241
- pattern?: string | {
1242
- exec: (string: string) => RegExpExecArray | null;
1243
- test: (string: string) => boolean;
1244
- readonly source: string;
1245
- readonly global: boolean;
1246
- readonly ignoreCase: boolean;
1247
- readonly multiline: boolean;
1248
- lastIndex: number;
1249
- compile: (pattern: string, flags?: string) => RegExp;
1250
- readonly flags: string;
1251
- readonly sticky: boolean;
1252
- readonly unicode: boolean;
1253
- readonly dotAll: boolean;
1254
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1255
- [Symbol.replace]: {
1256
- (string: string, replaceValue: string): string;
1257
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1258
- };
1259
- [Symbol.search]: (string: string) => number;
1260
- [Symbol.split]: (string: string, limit?: number) => string[];
1261
- } | undefined;
1262
- min?: number | undefined;
1263
- max?: number | undefined;
1264
- len?: number | undefined;
1265
- enum?: Array<string | number | boolean | null | undefined> | undefined;
1266
- whitespace?: boolean | undefined;
1267
- fields?: Record<string, import('async-validator').Rule> | undefined;
1268
- options?: {
1269
- suppressWarning?: boolean | undefined;
1270
- suppressValidatorError?: boolean | undefined;
1271
- first?: boolean | undefined;
1272
- firstFields?: (boolean | string[]) | undefined;
1273
- messages?: {
1274
- default?: (string | ((...args: unknown[]) => string)) | undefined;
1275
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
1276
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1277
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1278
- date?: {
1279
- format?: (string | ((...args: unknown[]) => string)) | undefined;
1280
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
1281
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1282
- } | undefined;
1283
- types?: {
1284
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1285
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1286
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1287
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1288
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1289
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1290
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1291
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1292
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1293
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1294
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1295
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1296
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1297
- } | undefined;
1298
- string?: {
1299
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1300
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1301
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1302
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1303
- } | undefined;
1304
- number?: {
1305
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1306
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1307
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1308
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1309
- } | undefined;
1310
- array?: {
1311
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1312
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1313
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1314
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1315
- } | undefined;
1316
- pattern?: {
1317
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1318
- } | undefined;
1319
- } | undefined;
1320
- keys?: string[] | undefined;
1321
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
1322
- } | undefined;
1323
- defaultField?: any | any[] | undefined;
1324
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1325
- message?: (string | ((a?: string) => string)) | undefined;
1326
- 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;
1327
- 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;
1328
- } | {
1329
- type?: import('async-validator').RuleType | undefined;
1330
- required?: boolean | undefined;
1331
- pattern?: string | {
1332
- exec: (string: string) => RegExpExecArray | null;
1333
- test: (string: string) => boolean;
1334
- readonly source: string;
1335
- readonly global: boolean;
1336
- readonly ignoreCase: boolean;
1337
- readonly multiline: boolean;
1338
- lastIndex: number;
1339
- compile: (pattern: string, flags?: string) => RegExp;
1340
- readonly flags: string;
1341
- readonly sticky: boolean;
1342
- readonly unicode: boolean;
1343
- readonly dotAll: boolean;
1344
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1345
- [Symbol.replace]: {
1346
- (string: string, replaceValue: string): string;
1347
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1348
- };
1349
- [Symbol.search]: (string: string) => number;
1350
- [Symbol.split]: (string: string, limit?: number) => string[];
1351
- } | undefined;
1352
- min?: number | undefined;
1353
- max?: number | undefined;
1354
- len?: number | undefined;
1355
- enum?: Array<string | number | boolean | null | undefined> | undefined;
1356
- whitespace?: boolean | undefined;
1357
- fields?: Record<string, import('async-validator').Rule> | undefined;
1358
- options?: {
1359
- suppressWarning?: boolean | undefined;
1360
- suppressValidatorError?: boolean | undefined;
1361
- first?: boolean | undefined;
1362
- firstFields?: (boolean | string[]) | undefined;
1363
- messages?: {
1364
- default?: (string | ((...args: unknown[]) => string)) | undefined;
1365
- required?: (string | ((args_0: string | undefined) => string)) | undefined;
1366
- enum?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1367
- whitespace?: (string | ((args_0: string | undefined) => string)) | undefined;
1368
- date?: {
1369
- format?: (string | ((...args: unknown[]) => string)) | undefined;
1370
- parse?: (string | ((...args: unknown[]) => string)) | undefined;
1371
- invalid?: (string | ((...args: unknown[]) => string)) | undefined;
1372
- } | undefined;
1373
- types?: {
1374
- string?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1375
- method?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1376
- array?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1377
- object?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1378
- number?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1379
- date?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1380
- boolean?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1381
- integer?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1382
- float?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1383
- regexp?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1384
- email?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1385
- url?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1386
- hex?: (string | ((args_0: string | undefined, args_1: string | undefined) => string)) | undefined;
1387
- } | undefined;
1388
- string?: {
1389
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1390
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1391
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1392
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1393
- } | undefined;
1394
- number?: {
1395
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1396
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1397
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1398
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1399
- } | undefined;
1400
- array?: {
1401
- len?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1402
- min?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1403
- max?: (string | ((args_0: string | undefined, args_1: number | undefined) => string)) | undefined;
1404
- range?: (string | ((args_0: string | undefined, args_1: number | undefined, args_2: number | undefined) => string)) | undefined;
1405
- } | undefined;
1406
- pattern?: {
1407
- mismatch?: (string | ((args_0: string | undefined, args_1: any, args_2: string | RegExp | undefined) => string)) | undefined;
1408
- } | undefined;
1409
- } | undefined;
1410
- keys?: string[] | undefined;
1411
- error?: ((rule: import('async-validator').InternalRuleItem, message: string) => import('async-validator').ValidateError) | undefined;
1412
- } | undefined;
1413
- defaultField?: any | any[] | undefined;
1414
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1415
- message?: (string | ((a?: string) => string)) | undefined;
1416
- 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;
1417
- 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;
1418
- }[] | undefined;
1419
- transform?: ((value: import('async-validator').Value) => import('async-validator').Value) | undefined;
1420
- message?: (string | ((a?: string) => string)) | undefined;
1421
- 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;
1422
- 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;
1423
- }[] | undefined;
1424
- readonly validateStatus?: ("" | "success" | "error" | "validating") | undefined;
1425
- readonly inlineMessage?: boolean | undefined;
1426
- readonly for?: string | undefined;
1427
- }[];
112
+ fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
113
+ setInitialValues: (initModel: Record<string, any>) => void;
1428
114
  }> & {} & import('vue').ComponentCustomProperties & {} & {
1429
115
  $slots: {
1430
- default?(_: {}): any;
116
+ default?: (props: {}) => any;
1431
117
  };
1432
118
  }) | null;
1433
119
  }, any>;