ra-element 0.1.6 → 0.1.7

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