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