@hinen/pro-element-plus 1.6.1 → 1.7.0

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