@oiij/naive-ui 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/components/bubble/Bubble.vue.d.ts +1 -1
  2. package/dist/components/config-providers/ConfigProviders.vue.d.ts +1 -1
  3. package/dist/components/copy-button/CopyButton.vue.d.ts +1 -1
  4. package/dist/components/data-table-plus/DataTablePlus.vue.d.ts +59 -0
  5. package/dist/components/data-table-plus/index.d.ts +50 -0
  6. package/dist/components/icons/EosIconsThreeDotsLoading.vue.d.ts +2 -0
  7. package/dist/components/index.d.ts +6 -0
  8. package/dist/components/preset-form/PresetForm.vue.d.ts +68 -0
  9. package/dist/components/preset-form/index.d.ts +15 -0
  10. package/dist/components/preset-input/PresetInput.vue.d.ts +20 -0
  11. package/dist/components/preset-input/index.d.ts +26 -0
  12. package/dist/components/preset-select/PresetSelect.vue.d.ts +51 -0
  13. package/dist/components/preset-select/index.d.ts +17 -0
  14. package/dist/components/remote-request/RemoteRequest.vue.d.ts +70 -0
  15. package/dist/components/remote-request/index.d.ts +2 -0
  16. package/dist/components/search-input/SearchInput.vue.d.ts +2074 -6
  17. package/dist/components/search-input/index.d.ts +1 -0
  18. package/dist/components/toggle-editor/ToggleEditor.vue.d.ts +1046 -0
  19. package/dist/components/toggle-editor/index.d.ts +1 -0
  20. package/dist/components/tooltip-button/TooltipButton.vue.d.ts +1 -1
  21. package/dist/components/type-writer/TypeWriter.vue.d.ts +1 -1
  22. package/dist/components.cjs +23 -23
  23. package/dist/components.js +4051 -2514
  24. package/dist/components.umd.cjs +22 -22
  25. package/dist/composables/useNaiveForm.cjs +7 -4
  26. package/dist/composables/useNaiveForm.d.cts +13 -14
  27. package/dist/composables/useNaiveForm.d.ts +13 -14
  28. package/dist/composables/useNaiveForm.js +8 -5
  29. package/package.json +13 -10
@@ -1,19 +1,2087 @@
1
- import { SearchInputProps } from './index';
1
+ import { SearchInputProps } from '.';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
5
- icon?(_: {}): any;
5
+ prefix?(_: {}): any;
6
+ 'prefix-icon'?(_: {}): any;
6
7
  button?(_: {}): any;
8
+ 'button-icon'?(_: {}): any;
9
+ };
10
+ refs: {
11
+ inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
12
+ bordered: {
13
+ type: import('vue').PropType<boolean | undefined>;
14
+ default: undefined;
15
+ };
16
+ type: {
17
+ type: import('vue').PropType<"text" | "textarea" | "password">;
18
+ default: string;
19
+ };
20
+ placeholder: import('vue').PropType<string | [string, string]>;
21
+ defaultValue: {
22
+ type: import('vue').PropType<null | string | [string, string]>;
23
+ default: null;
24
+ };
25
+ value: import('vue').PropType<null | string | [string, string]>;
26
+ disabled: {
27
+ type: import('vue').PropType<boolean | undefined>;
28
+ default: undefined;
29
+ };
30
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
31
+ rows: {
32
+ type: import('vue').PropType<number | string>;
33
+ default: number;
34
+ };
35
+ round: BooleanConstructor;
36
+ minlength: import('vue').PropType<number | string>;
37
+ maxlength: import('vue').PropType<number | string>;
38
+ clearable: BooleanConstructor;
39
+ autosize: {
40
+ type: import('vue').PropType<boolean | {
41
+ minRows?: number;
42
+ maxRows?: number;
43
+ }>;
44
+ default: boolean;
45
+ };
46
+ pair: BooleanConstructor;
47
+ separator: StringConstructor;
48
+ readonly: {
49
+ type: (BooleanConstructor | StringConstructor)[];
50
+ default: boolean;
51
+ };
52
+ passivelyActivated: BooleanConstructor;
53
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
54
+ stateful: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ autofocus: BooleanConstructor;
59
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
60
+ resizable: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ showCount: BooleanConstructor;
65
+ loading: {
66
+ type: BooleanConstructor;
67
+ default: undefined;
68
+ };
69
+ allowInput: import('vue').PropType<(value: string) => boolean>;
70
+ renderCount: import('vue').PropType<(props: {
71
+ value: string;
72
+ }) => import('vue').VNodeChild>;
73
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
74
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
75
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
76
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
77
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
78
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
79
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
80
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
81
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
82
+ countGraphemes: import('vue').PropType<(value: string) => number>;
83
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
84
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
85
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
86
+ textDecoration: import('vue').PropType<string | [string, string]>;
87
+ attrSize: {
88
+ type: NumberConstructor;
89
+ default: number;
90
+ };
91
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
92
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
93
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
94
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
95
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
96
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
97
+ internalDeactivateOnEnter: BooleanConstructor;
98
+ internalForceFocus: BooleanConstructor;
99
+ internalLoadingBeforeSuffix: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ showPasswordToggle: BooleanConstructor;
104
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
105
+ fontWeight: string;
106
+ countTextColorDisabled: string;
107
+ countTextColor: string;
108
+ heightTiny: string;
109
+ heightSmall: string;
110
+ heightMedium: string;
111
+ heightLarge: string;
112
+ fontSizeTiny: string;
113
+ fontSizeSmall: string;
114
+ fontSizeMedium: string;
115
+ fontSizeLarge: string;
116
+ lineHeight: string;
117
+ lineHeightTextarea: string;
118
+ borderRadius: string;
119
+ iconSize: string;
120
+ groupLabelColor: string;
121
+ groupLabelTextColor: string;
122
+ textColor: string;
123
+ textColorDisabled: string;
124
+ textDecorationColor: string;
125
+ caretColor: string;
126
+ placeholderColor: string;
127
+ placeholderColorDisabled: string;
128
+ color: string;
129
+ colorDisabled: string;
130
+ colorFocus: string;
131
+ groupLabelBorder: string;
132
+ border: string;
133
+ borderHover: string;
134
+ borderDisabled: string;
135
+ borderFocus: string;
136
+ boxShadowFocus: string;
137
+ loadingColor: string;
138
+ loadingColorWarning: string;
139
+ borderWarning: string;
140
+ borderHoverWarning: string;
141
+ colorFocusWarning: string;
142
+ borderFocusWarning: string;
143
+ boxShadowFocusWarning: string;
144
+ caretColorWarning: string;
145
+ loadingColorError: string;
146
+ borderError: string;
147
+ borderHoverError: string;
148
+ colorFocusError: string;
149
+ borderFocusError: string;
150
+ boxShadowFocusError: string;
151
+ caretColorError: string;
152
+ clearColor: string;
153
+ clearColorHover: string;
154
+ clearColorPressed: string;
155
+ iconColor: string;
156
+ iconColorDisabled: string;
157
+ iconColorHover: string;
158
+ iconColorPressed: string;
159
+ suffixTextColor: string;
160
+ paddingTiny: string;
161
+ paddingSmall: string;
162
+ paddingMedium: string;
163
+ paddingLarge: string;
164
+ clearSize: string;
165
+ }, any>>;
166
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
167
+ fontWeight: string;
168
+ countTextColorDisabled: string;
169
+ countTextColor: string;
170
+ heightTiny: string;
171
+ heightSmall: string;
172
+ heightMedium: string;
173
+ heightLarge: string;
174
+ fontSizeTiny: string;
175
+ fontSizeSmall: string;
176
+ fontSizeMedium: string;
177
+ fontSizeLarge: string;
178
+ lineHeight: string;
179
+ lineHeightTextarea: string;
180
+ borderRadius: string;
181
+ iconSize: string;
182
+ groupLabelColor: string;
183
+ groupLabelTextColor: string;
184
+ textColor: string;
185
+ textColorDisabled: string;
186
+ textDecorationColor: string;
187
+ caretColor: string;
188
+ placeholderColor: string;
189
+ placeholderColorDisabled: string;
190
+ color: string;
191
+ colorDisabled: string;
192
+ colorFocus: string;
193
+ groupLabelBorder: string;
194
+ border: string;
195
+ borderHover: string;
196
+ borderDisabled: string;
197
+ borderFocus: string;
198
+ boxShadowFocus: string;
199
+ loadingColor: string;
200
+ loadingColorWarning: string;
201
+ borderWarning: string;
202
+ borderHoverWarning: string;
203
+ colorFocusWarning: string;
204
+ borderFocusWarning: string;
205
+ boxShadowFocusWarning: string;
206
+ caretColorWarning: string;
207
+ loadingColorError: string;
208
+ borderError: string;
209
+ borderHoverError: string;
210
+ colorFocusError: string;
211
+ borderFocusError: string;
212
+ boxShadowFocusError: string;
213
+ caretColorError: string;
214
+ clearColor: string;
215
+ clearColorHover: string;
216
+ clearColorPressed: string;
217
+ iconColor: string;
218
+ iconColorDisabled: string;
219
+ iconColorHover: string;
220
+ iconColorPressed: string;
221
+ suffixTextColor: string;
222
+ paddingTiny: string;
223
+ paddingSmall: string;
224
+ paddingMedium: string;
225
+ paddingLarge: string;
226
+ clearSize: string;
227
+ }, any>>>;
228
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
229
+ fontWeight: string;
230
+ countTextColorDisabled: string;
231
+ countTextColor: string;
232
+ heightTiny: string;
233
+ heightSmall: string;
234
+ heightMedium: string;
235
+ heightLarge: string;
236
+ fontSizeTiny: string;
237
+ fontSizeSmall: string;
238
+ fontSizeMedium: string;
239
+ fontSizeLarge: string;
240
+ lineHeight: string;
241
+ lineHeightTextarea: string;
242
+ borderRadius: string;
243
+ iconSize: string;
244
+ groupLabelColor: string;
245
+ groupLabelTextColor: string;
246
+ textColor: string;
247
+ textColorDisabled: string;
248
+ textDecorationColor: string;
249
+ caretColor: string;
250
+ placeholderColor: string;
251
+ placeholderColorDisabled: string;
252
+ color: string;
253
+ colorDisabled: string;
254
+ colorFocus: string;
255
+ groupLabelBorder: string;
256
+ border: string;
257
+ borderHover: string;
258
+ borderDisabled: string;
259
+ borderFocus: string;
260
+ boxShadowFocus: string;
261
+ loadingColor: string;
262
+ loadingColorWarning: string;
263
+ borderWarning: string;
264
+ borderHoverWarning: string;
265
+ colorFocusWarning: string;
266
+ borderFocusWarning: string;
267
+ boxShadowFocusWarning: string;
268
+ caretColorWarning: string;
269
+ loadingColorError: string;
270
+ borderError: string;
271
+ borderHoverError: string;
272
+ colorFocusError: string;
273
+ borderFocusError: string;
274
+ boxShadowFocusError: string;
275
+ caretColorError: string;
276
+ clearColor: string;
277
+ clearColorHover: string;
278
+ clearColorPressed: string;
279
+ iconColor: string;
280
+ iconColorDisabled: string;
281
+ iconColorHover: string;
282
+ iconColorPressed: string;
283
+ suffixTextColor: string;
284
+ paddingTiny: string;
285
+ paddingSmall: string;
286
+ paddingMedium: string;
287
+ paddingLarge: string;
288
+ clearSize: string;
289
+ }, any>>>;
290
+ }>> & Readonly<{}>, {
291
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
292
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
293
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
294
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
295
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
296
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
297
+ textareaScrollbarInstRef: import('vue').Ref<{
298
+ $el: HTMLElement;
299
+ containerRef: HTMLElement | null;
300
+ contentRef: HTMLElement | null;
301
+ containerScrollTop: number;
302
+ syncUnifiedContainer: () => void;
303
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
304
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
305
+ sync: () => void;
306
+ handleMouseEnterWrapper: () => void;
307
+ handleMouseLeaveWrapper: () => void;
308
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
309
+ $el: HTMLElement;
310
+ containerRef: HTMLElement | null;
311
+ contentRef: HTMLElement | null;
312
+ containerScrollTop: number;
313
+ syncUnifiedContainer: () => void;
314
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
315
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
316
+ sync: () => void;
317
+ handleMouseEnterWrapper: () => void;
318
+ handleMouseLeaveWrapper: () => void;
319
+ } | null>;
320
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
321
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
322
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
323
+ passwordVisible: import('vue').Ref<boolean, boolean>;
324
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
325
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
326
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
327
+ mergedFocus: import('vue').ComputedRef<boolean>;
328
+ isComposing: import('vue').Ref<boolean, boolean>;
329
+ activated: import('vue').Ref<boolean, boolean>;
330
+ showClearButton: import('vue').ComputedRef<boolean>;
331
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
332
+ mergedDisabled: import('vue').ComputedRef<boolean>;
333
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
334
+ textDecoration: string;
335
+ }[]>;
336
+ mergedClsPrefix: import('vue').Ref<string, string>;
337
+ mergedBordered: import('vue').ComputedRef<boolean>;
338
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
339
+ placeholderStyle: import('vue').Ref<{
340
+ top: string;
341
+ }, {
342
+ top: string;
343
+ } | {
344
+ top: string;
345
+ }>;
346
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
347
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
348
+ handleTextAreaScroll: (e: Event) => void;
349
+ handleCompositionStart: () => void;
350
+ handleCompositionEnd: (e: CompositionEvent) => void;
351
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
352
+ handleInputBlur: (e: FocusEvent) => void;
353
+ handleInputFocus: (e: FocusEvent, index: number) => void;
354
+ handleWrapperBlur: (e: FocusEvent) => void;
355
+ handleWrapperFocus: (e: FocusEvent) => void;
356
+ handleMouseEnter: () => void;
357
+ handleMouseLeave: () => void;
358
+ handleMouseDown: (e: MouseEvent) => void;
359
+ handleChange: (e: Event, index?: 0 | 1) => void;
360
+ handleClick: (e: MouseEvent) => void;
361
+ handleClear: (e: MouseEvent) => void;
362
+ handlePasswordToggleClick: () => void;
363
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
364
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
365
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
366
+ handleTextAreaMirrorResize: () => void;
367
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
368
+ mergedTheme: import('vue').ComputedRef<{
369
+ common: import('naive-ui').ThemeCommonVars;
370
+ self: {
371
+ fontWeight: string;
372
+ countTextColorDisabled: string;
373
+ countTextColor: string;
374
+ heightTiny: string;
375
+ heightSmall: string;
376
+ heightMedium: string;
377
+ heightLarge: string;
378
+ fontSizeTiny: string;
379
+ fontSizeSmall: string;
380
+ fontSizeMedium: string;
381
+ fontSizeLarge: string;
382
+ lineHeight: string;
383
+ lineHeightTextarea: string;
384
+ borderRadius: string;
385
+ iconSize: string;
386
+ groupLabelColor: string;
387
+ groupLabelTextColor: string;
388
+ textColor: string;
389
+ textColorDisabled: string;
390
+ textDecorationColor: string;
391
+ caretColor: string;
392
+ placeholderColor: string;
393
+ placeholderColorDisabled: string;
394
+ color: string;
395
+ colorDisabled: string;
396
+ colorFocus: string;
397
+ groupLabelBorder: string;
398
+ border: string;
399
+ borderHover: string;
400
+ borderDisabled: string;
401
+ borderFocus: string;
402
+ boxShadowFocus: string;
403
+ loadingColor: string;
404
+ loadingColorWarning: string;
405
+ borderWarning: string;
406
+ borderHoverWarning: string;
407
+ colorFocusWarning: string;
408
+ borderFocusWarning: string;
409
+ boxShadowFocusWarning: string;
410
+ caretColorWarning: string;
411
+ loadingColorError: string;
412
+ borderError: string;
413
+ borderHoverError: string;
414
+ colorFocusError: string;
415
+ borderFocusError: string;
416
+ boxShadowFocusError: string;
417
+ caretColorError: string;
418
+ clearColor: string;
419
+ clearColorHover: string;
420
+ clearColorPressed: string;
421
+ iconColor: string;
422
+ iconColorDisabled: string;
423
+ iconColorHover: string;
424
+ iconColorPressed: string;
425
+ suffixTextColor: string;
426
+ paddingTiny: string;
427
+ paddingSmall: string;
428
+ paddingMedium: string;
429
+ paddingLarge: string;
430
+ clearSize: string;
431
+ };
432
+ peers: any;
433
+ peerOverrides: {
434
+ [x: string]: any;
435
+ };
436
+ }>;
437
+ cssVars: import('vue').ComputedRef<{
438
+ "--n-bezier": string;
439
+ "--n-count-text-color": string;
440
+ "--n-count-text-color-disabled": string;
441
+ "--n-color": string;
442
+ "--n-font-size": string;
443
+ "--n-font-weight": string;
444
+ "--n-border-radius": string;
445
+ "--n-height": string;
446
+ "--n-padding-left": string;
447
+ "--n-padding-right": string;
448
+ "--n-text-color": string;
449
+ "--n-caret-color": string;
450
+ "--n-text-decoration-color": string;
451
+ "--n-border": string;
452
+ "--n-border-disabled": string;
453
+ "--n-border-hover": string;
454
+ "--n-border-focus": string;
455
+ "--n-placeholder-color": string;
456
+ "--n-placeholder-color-disabled": string;
457
+ "--n-icon-size": string;
458
+ "--n-line-height-textarea": string;
459
+ "--n-color-disabled": string;
460
+ "--n-color-focus": string;
461
+ "--n-text-color-disabled": string;
462
+ "--n-box-shadow-focus": string;
463
+ "--n-loading-color": string;
464
+ "--n-caret-color-warning": string;
465
+ "--n-color-focus-warning": string;
466
+ "--n-box-shadow-focus-warning": string;
467
+ "--n-border-warning": string;
468
+ "--n-border-focus-warning": string;
469
+ "--n-border-hover-warning": string;
470
+ "--n-loading-color-warning": string;
471
+ "--n-caret-color-error": string;
472
+ "--n-color-focus-error": string;
473
+ "--n-box-shadow-focus-error": string;
474
+ "--n-border-error": string;
475
+ "--n-border-focus-error": string;
476
+ "--n-border-hover-error": string;
477
+ "--n-loading-color-error": string;
478
+ "--n-clear-color": string;
479
+ "--n-clear-size": string;
480
+ "--n-clear-color-hover": string;
481
+ "--n-clear-color-pressed": string;
482
+ "--n-icon-color": string;
483
+ "--n-icon-color-hover": string;
484
+ "--n-icon-color-pressed": string;
485
+ "--n-icon-color-disabled": string;
486
+ "--n-suffix-text-color": string;
487
+ }> | undefined;
488
+ themeClass: import('vue').Ref<string, string> | undefined;
489
+ onRender: (() => void) | undefined;
490
+ isCompositing: import('vue').Ref<boolean>;
491
+ blur: () => void;
492
+ clear: () => void;
493
+ focus: () => void;
494
+ select: () => void;
495
+ activate: () => void;
496
+ deactivate: () => void;
497
+ scrollTo: (options: ScrollToOptions) => void;
498
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
499
+ type: "textarea" | "text" | "password";
500
+ readonly: string | boolean;
501
+ disabled: boolean | undefined;
502
+ round: boolean;
503
+ autofocus: boolean;
504
+ loading: boolean;
505
+ autosize: boolean | {
506
+ minRows?: number;
507
+ maxRows?: number;
508
+ };
509
+ bordered: boolean | undefined;
510
+ clearable: boolean;
511
+ defaultValue: string | [string, string] | null;
512
+ resizable: boolean;
513
+ pair: boolean;
514
+ rows: string | number;
515
+ passivelyActivated: boolean;
516
+ stateful: boolean;
517
+ showCount: boolean;
518
+ attrSize: number;
519
+ internalDeactivateOnEnter: boolean;
520
+ internalForceFocus: boolean;
521
+ internalLoadingBeforeSuffix: boolean;
522
+ showPasswordToggle: boolean;
523
+ }, true, {}, import('vue').SlotsType<import('naive-ui').InputSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
524
+ P: {};
525
+ B: {};
526
+ D: {};
527
+ C: {};
528
+ M: {};
529
+ Defaults: {};
530
+ }, Readonly<import('vue').ExtractPropTypes<{
531
+ bordered: {
532
+ type: import('vue').PropType<boolean | undefined>;
533
+ default: undefined;
534
+ };
535
+ type: {
536
+ type: import('vue').PropType<"text" | "textarea" | "password">;
537
+ default: string;
538
+ };
539
+ placeholder: import('vue').PropType<string | [string, string]>;
540
+ defaultValue: {
541
+ type: import('vue').PropType<null | string | [string, string]>;
542
+ default: null;
543
+ };
544
+ value: import('vue').PropType<null | string | [string, string]>;
545
+ disabled: {
546
+ type: import('vue').PropType<boolean | undefined>;
547
+ default: undefined;
548
+ };
549
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
550
+ rows: {
551
+ type: import('vue').PropType<number | string>;
552
+ default: number;
553
+ };
554
+ round: BooleanConstructor;
555
+ minlength: import('vue').PropType<number | string>;
556
+ maxlength: import('vue').PropType<number | string>;
557
+ clearable: BooleanConstructor;
558
+ autosize: {
559
+ type: import('vue').PropType<boolean | {
560
+ minRows?: number;
561
+ maxRows?: number;
562
+ }>;
563
+ default: boolean;
564
+ };
565
+ pair: BooleanConstructor;
566
+ separator: StringConstructor;
567
+ readonly: {
568
+ type: (BooleanConstructor | StringConstructor)[];
569
+ default: boolean;
570
+ };
571
+ passivelyActivated: BooleanConstructor;
572
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
573
+ stateful: {
574
+ type: BooleanConstructor;
575
+ default: boolean;
576
+ };
577
+ autofocus: BooleanConstructor;
578
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
579
+ resizable: {
580
+ type: BooleanConstructor;
581
+ default: boolean;
582
+ };
583
+ showCount: BooleanConstructor;
584
+ loading: {
585
+ type: BooleanConstructor;
586
+ default: undefined;
587
+ };
588
+ allowInput: import('vue').PropType<(value: string) => boolean>;
589
+ renderCount: import('vue').PropType<(props: {
590
+ value: string;
591
+ }) => import('vue').VNodeChild>;
592
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
593
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
594
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
595
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
596
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
597
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
598
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
599
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
600
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
601
+ countGraphemes: import('vue').PropType<(value: string) => number>;
602
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
603
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
604
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
605
+ textDecoration: import('vue').PropType<string | [string, string]>;
606
+ attrSize: {
607
+ type: NumberConstructor;
608
+ default: number;
609
+ };
610
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
611
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
612
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
613
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
614
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
615
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
616
+ internalDeactivateOnEnter: BooleanConstructor;
617
+ internalForceFocus: BooleanConstructor;
618
+ internalLoadingBeforeSuffix: {
619
+ type: BooleanConstructor;
620
+ default: boolean;
621
+ };
622
+ showPasswordToggle: BooleanConstructor;
623
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
624
+ fontWeight: string;
625
+ countTextColorDisabled: string;
626
+ countTextColor: string;
627
+ heightTiny: string;
628
+ heightSmall: string;
629
+ heightMedium: string;
630
+ heightLarge: string;
631
+ fontSizeTiny: string;
632
+ fontSizeSmall: string;
633
+ fontSizeMedium: string;
634
+ fontSizeLarge: string;
635
+ lineHeight: string;
636
+ lineHeightTextarea: string;
637
+ borderRadius: string;
638
+ iconSize: string;
639
+ groupLabelColor: string;
640
+ groupLabelTextColor: string;
641
+ textColor: string;
642
+ textColorDisabled: string;
643
+ textDecorationColor: string;
644
+ caretColor: string;
645
+ placeholderColor: string;
646
+ placeholderColorDisabled: string;
647
+ color: string;
648
+ colorDisabled: string;
649
+ colorFocus: string;
650
+ groupLabelBorder: string;
651
+ border: string;
652
+ borderHover: string;
653
+ borderDisabled: string;
654
+ borderFocus: string;
655
+ boxShadowFocus: string;
656
+ loadingColor: string;
657
+ loadingColorWarning: string;
658
+ borderWarning: string;
659
+ borderHoverWarning: string;
660
+ colorFocusWarning: string;
661
+ borderFocusWarning: string;
662
+ boxShadowFocusWarning: string;
663
+ caretColorWarning: string;
664
+ loadingColorError: string;
665
+ borderError: string;
666
+ borderHoverError: string;
667
+ colorFocusError: string;
668
+ borderFocusError: string;
669
+ boxShadowFocusError: string;
670
+ caretColorError: string;
671
+ clearColor: string;
672
+ clearColorHover: string;
673
+ clearColorPressed: string;
674
+ iconColor: string;
675
+ iconColorDisabled: string;
676
+ iconColorHover: string;
677
+ iconColorPressed: string;
678
+ suffixTextColor: string;
679
+ paddingTiny: string;
680
+ paddingSmall: string;
681
+ paddingMedium: string;
682
+ paddingLarge: string;
683
+ clearSize: string;
684
+ }, any>>;
685
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
686
+ fontWeight: string;
687
+ countTextColorDisabled: string;
688
+ countTextColor: string;
689
+ heightTiny: string;
690
+ heightSmall: string;
691
+ heightMedium: string;
692
+ heightLarge: string;
693
+ fontSizeTiny: string;
694
+ fontSizeSmall: string;
695
+ fontSizeMedium: string;
696
+ fontSizeLarge: string;
697
+ lineHeight: string;
698
+ lineHeightTextarea: string;
699
+ borderRadius: string;
700
+ iconSize: string;
701
+ groupLabelColor: string;
702
+ groupLabelTextColor: string;
703
+ textColor: string;
704
+ textColorDisabled: string;
705
+ textDecorationColor: string;
706
+ caretColor: string;
707
+ placeholderColor: string;
708
+ placeholderColorDisabled: string;
709
+ color: string;
710
+ colorDisabled: string;
711
+ colorFocus: string;
712
+ groupLabelBorder: string;
713
+ border: string;
714
+ borderHover: string;
715
+ borderDisabled: string;
716
+ borderFocus: string;
717
+ boxShadowFocus: string;
718
+ loadingColor: string;
719
+ loadingColorWarning: string;
720
+ borderWarning: string;
721
+ borderHoverWarning: string;
722
+ colorFocusWarning: string;
723
+ borderFocusWarning: string;
724
+ boxShadowFocusWarning: string;
725
+ caretColorWarning: string;
726
+ loadingColorError: string;
727
+ borderError: string;
728
+ borderHoverError: string;
729
+ colorFocusError: string;
730
+ borderFocusError: string;
731
+ boxShadowFocusError: string;
732
+ caretColorError: string;
733
+ clearColor: string;
734
+ clearColorHover: string;
735
+ clearColorPressed: string;
736
+ iconColor: string;
737
+ iconColorDisabled: string;
738
+ iconColorHover: string;
739
+ iconColorPressed: string;
740
+ suffixTextColor: string;
741
+ paddingTiny: string;
742
+ paddingSmall: string;
743
+ paddingMedium: string;
744
+ paddingLarge: string;
745
+ clearSize: string;
746
+ }, any>>>;
747
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
748
+ fontWeight: string;
749
+ countTextColorDisabled: string;
750
+ countTextColor: string;
751
+ heightTiny: string;
752
+ heightSmall: string;
753
+ heightMedium: string;
754
+ heightLarge: string;
755
+ fontSizeTiny: string;
756
+ fontSizeSmall: string;
757
+ fontSizeMedium: string;
758
+ fontSizeLarge: string;
759
+ lineHeight: string;
760
+ lineHeightTextarea: string;
761
+ borderRadius: string;
762
+ iconSize: string;
763
+ groupLabelColor: string;
764
+ groupLabelTextColor: string;
765
+ textColor: string;
766
+ textColorDisabled: string;
767
+ textDecorationColor: string;
768
+ caretColor: string;
769
+ placeholderColor: string;
770
+ placeholderColorDisabled: string;
771
+ color: string;
772
+ colorDisabled: string;
773
+ colorFocus: string;
774
+ groupLabelBorder: string;
775
+ border: string;
776
+ borderHover: string;
777
+ borderDisabled: string;
778
+ borderFocus: string;
779
+ boxShadowFocus: string;
780
+ loadingColor: string;
781
+ loadingColorWarning: string;
782
+ borderWarning: string;
783
+ borderHoverWarning: string;
784
+ colorFocusWarning: string;
785
+ borderFocusWarning: string;
786
+ boxShadowFocusWarning: string;
787
+ caretColorWarning: string;
788
+ loadingColorError: string;
789
+ borderError: string;
790
+ borderHoverError: string;
791
+ colorFocusError: string;
792
+ borderFocusError: string;
793
+ boxShadowFocusError: string;
794
+ caretColorError: string;
795
+ clearColor: string;
796
+ clearColorHover: string;
797
+ clearColorPressed: string;
798
+ iconColor: string;
799
+ iconColorDisabled: string;
800
+ iconColorHover: string;
801
+ iconColorPressed: string;
802
+ suffixTextColor: string;
803
+ paddingTiny: string;
804
+ paddingSmall: string;
805
+ paddingMedium: string;
806
+ paddingLarge: string;
807
+ clearSize: string;
808
+ }, any>>>;
809
+ }>> & Readonly<{}>, {
810
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
811
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
812
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
813
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
814
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
815
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
816
+ textareaScrollbarInstRef: import('vue').Ref<{
817
+ $el: HTMLElement;
818
+ containerRef: HTMLElement | null;
819
+ contentRef: HTMLElement | null;
820
+ containerScrollTop: number;
821
+ syncUnifiedContainer: () => void;
822
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
823
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
824
+ sync: () => void;
825
+ handleMouseEnterWrapper: () => void;
826
+ handleMouseLeaveWrapper: () => void;
827
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
828
+ $el: HTMLElement;
829
+ containerRef: HTMLElement | null;
830
+ contentRef: HTMLElement | null;
831
+ containerScrollTop: number;
832
+ syncUnifiedContainer: () => void;
833
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
834
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
835
+ sync: () => void;
836
+ handleMouseEnterWrapper: () => void;
837
+ handleMouseLeaveWrapper: () => void;
838
+ } | null>;
839
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
840
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
841
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
842
+ passwordVisible: import('vue').Ref<boolean, boolean>;
843
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
844
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
845
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
846
+ mergedFocus: import('vue').ComputedRef<boolean>;
847
+ isComposing: import('vue').Ref<boolean, boolean>;
848
+ activated: import('vue').Ref<boolean, boolean>;
849
+ showClearButton: import('vue').ComputedRef<boolean>;
850
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
851
+ mergedDisabled: import('vue').ComputedRef<boolean>;
852
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
853
+ textDecoration: string;
854
+ }[]>;
855
+ mergedClsPrefix: import('vue').Ref<string, string>;
856
+ mergedBordered: import('vue').ComputedRef<boolean>;
857
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
858
+ placeholderStyle: import('vue').Ref<{
859
+ top: string;
860
+ }, {
861
+ top: string;
862
+ } | {
863
+ top: string;
864
+ }>;
865
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
866
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
867
+ handleTextAreaScroll: (e: Event) => void;
868
+ handleCompositionStart: () => void;
869
+ handleCompositionEnd: (e: CompositionEvent) => void;
870
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
871
+ handleInputBlur: (e: FocusEvent) => void;
872
+ handleInputFocus: (e: FocusEvent, index: number) => void;
873
+ handleWrapperBlur: (e: FocusEvent) => void;
874
+ handleWrapperFocus: (e: FocusEvent) => void;
875
+ handleMouseEnter: () => void;
876
+ handleMouseLeave: () => void;
877
+ handleMouseDown: (e: MouseEvent) => void;
878
+ handleChange: (e: Event, index?: 0 | 1) => void;
879
+ handleClick: (e: MouseEvent) => void;
880
+ handleClear: (e: MouseEvent) => void;
881
+ handlePasswordToggleClick: () => void;
882
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
883
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
884
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
885
+ handleTextAreaMirrorResize: () => void;
886
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
887
+ mergedTheme: import('vue').ComputedRef<{
888
+ common: import('naive-ui').ThemeCommonVars;
889
+ self: {
890
+ fontWeight: string;
891
+ countTextColorDisabled: string;
892
+ countTextColor: string;
893
+ heightTiny: string;
894
+ heightSmall: string;
895
+ heightMedium: string;
896
+ heightLarge: string;
897
+ fontSizeTiny: string;
898
+ fontSizeSmall: string;
899
+ fontSizeMedium: string;
900
+ fontSizeLarge: string;
901
+ lineHeight: string;
902
+ lineHeightTextarea: string;
903
+ borderRadius: string;
904
+ iconSize: string;
905
+ groupLabelColor: string;
906
+ groupLabelTextColor: string;
907
+ textColor: string;
908
+ textColorDisabled: string;
909
+ textDecorationColor: string;
910
+ caretColor: string;
911
+ placeholderColor: string;
912
+ placeholderColorDisabled: string;
913
+ color: string;
914
+ colorDisabled: string;
915
+ colorFocus: string;
916
+ groupLabelBorder: string;
917
+ border: string;
918
+ borderHover: string;
919
+ borderDisabled: string;
920
+ borderFocus: string;
921
+ boxShadowFocus: string;
922
+ loadingColor: string;
923
+ loadingColorWarning: string;
924
+ borderWarning: string;
925
+ borderHoverWarning: string;
926
+ colorFocusWarning: string;
927
+ borderFocusWarning: string;
928
+ boxShadowFocusWarning: string;
929
+ caretColorWarning: string;
930
+ loadingColorError: string;
931
+ borderError: string;
932
+ borderHoverError: string;
933
+ colorFocusError: string;
934
+ borderFocusError: string;
935
+ boxShadowFocusError: string;
936
+ caretColorError: string;
937
+ clearColor: string;
938
+ clearColorHover: string;
939
+ clearColorPressed: string;
940
+ iconColor: string;
941
+ iconColorDisabled: string;
942
+ iconColorHover: string;
943
+ iconColorPressed: string;
944
+ suffixTextColor: string;
945
+ paddingTiny: string;
946
+ paddingSmall: string;
947
+ paddingMedium: string;
948
+ paddingLarge: string;
949
+ clearSize: string;
950
+ };
951
+ peers: any;
952
+ peerOverrides: {
953
+ [x: string]: any;
954
+ };
955
+ }>;
956
+ cssVars: import('vue').ComputedRef<{
957
+ "--n-bezier": string;
958
+ "--n-count-text-color": string;
959
+ "--n-count-text-color-disabled": string;
960
+ "--n-color": string;
961
+ "--n-font-size": string;
962
+ "--n-font-weight": string;
963
+ "--n-border-radius": string;
964
+ "--n-height": string;
965
+ "--n-padding-left": string;
966
+ "--n-padding-right": string;
967
+ "--n-text-color": string;
968
+ "--n-caret-color": string;
969
+ "--n-text-decoration-color": string;
970
+ "--n-border": string;
971
+ "--n-border-disabled": string;
972
+ "--n-border-hover": string;
973
+ "--n-border-focus": string;
974
+ "--n-placeholder-color": string;
975
+ "--n-placeholder-color-disabled": string;
976
+ "--n-icon-size": string;
977
+ "--n-line-height-textarea": string;
978
+ "--n-color-disabled": string;
979
+ "--n-color-focus": string;
980
+ "--n-text-color-disabled": string;
981
+ "--n-box-shadow-focus": string;
982
+ "--n-loading-color": string;
983
+ "--n-caret-color-warning": string;
984
+ "--n-color-focus-warning": string;
985
+ "--n-box-shadow-focus-warning": string;
986
+ "--n-border-warning": string;
987
+ "--n-border-focus-warning": string;
988
+ "--n-border-hover-warning": string;
989
+ "--n-loading-color-warning": string;
990
+ "--n-caret-color-error": string;
991
+ "--n-color-focus-error": string;
992
+ "--n-box-shadow-focus-error": string;
993
+ "--n-border-error": string;
994
+ "--n-border-focus-error": string;
995
+ "--n-border-hover-error": string;
996
+ "--n-loading-color-error": string;
997
+ "--n-clear-color": string;
998
+ "--n-clear-size": string;
999
+ "--n-clear-color-hover": string;
1000
+ "--n-clear-color-pressed": string;
1001
+ "--n-icon-color": string;
1002
+ "--n-icon-color-hover": string;
1003
+ "--n-icon-color-pressed": string;
1004
+ "--n-icon-color-disabled": string;
1005
+ "--n-suffix-text-color": string;
1006
+ }> | undefined;
1007
+ themeClass: import('vue').Ref<string, string> | undefined;
1008
+ onRender: (() => void) | undefined;
1009
+ isCompositing: import('vue').Ref<boolean>;
1010
+ blur: () => void;
1011
+ clear: () => void;
1012
+ focus: () => void;
1013
+ select: () => void;
1014
+ activate: () => void;
1015
+ deactivate: () => void;
1016
+ scrollTo: (options: ScrollToOptions) => void;
1017
+ }, {}, {}, {}, {
1018
+ type: "textarea" | "text" | "password";
1019
+ readonly: string | boolean;
1020
+ disabled: boolean | undefined;
1021
+ round: boolean;
1022
+ autofocus: boolean;
1023
+ loading: boolean;
1024
+ autosize: boolean | {
1025
+ minRows?: number;
1026
+ maxRows?: number;
1027
+ };
1028
+ bordered: boolean | undefined;
1029
+ clearable: boolean;
1030
+ defaultValue: string | [string, string] | null;
1031
+ resizable: boolean;
1032
+ pair: boolean;
1033
+ rows: string | number;
1034
+ passivelyActivated: boolean;
1035
+ stateful: boolean;
1036
+ showCount: boolean;
1037
+ attrSize: number;
1038
+ internalDeactivateOnEnter: boolean;
1039
+ internalForceFocus: boolean;
1040
+ internalLoadingBeforeSuffix: boolean;
1041
+ showPasswordToggle: boolean;
1042
+ }> | null;
7
1043
  };
8
- refs: {};
9
1044
  rootEl: any;
10
1045
  };
11
1046
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
1047
  declare const __VLS_component: import('vue').DefineComponent<SearchInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
13
- "update:value": (v: string | undefined) => any;
1048
+ "update:value": (v: string) => any;
14
1049
  }, string, import('vue').PublicProps, Readonly<SearchInputProps> & Readonly<{
15
- "onUpdate:value"?: ((v: string | undefined) => any) | undefined;
16
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
1050
+ "onUpdate:value"?: ((v: string) => any) | undefined;
1051
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
1052
+ inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
1053
+ bordered: {
1054
+ type: import('vue').PropType<boolean | undefined>;
1055
+ default: undefined;
1056
+ };
1057
+ type: {
1058
+ type: import('vue').PropType<"text" | "textarea" | "password">;
1059
+ default: string;
1060
+ };
1061
+ placeholder: import('vue').PropType<string | [string, string]>;
1062
+ defaultValue: {
1063
+ type: import('vue').PropType<null | string | [string, string]>;
1064
+ default: null;
1065
+ };
1066
+ value: import('vue').PropType<null | string | [string, string]>;
1067
+ disabled: {
1068
+ type: import('vue').PropType<boolean | undefined>;
1069
+ default: undefined;
1070
+ };
1071
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
1072
+ rows: {
1073
+ type: import('vue').PropType<number | string>;
1074
+ default: number;
1075
+ };
1076
+ round: BooleanConstructor;
1077
+ minlength: import('vue').PropType<number | string>;
1078
+ maxlength: import('vue').PropType<number | string>;
1079
+ clearable: BooleanConstructor;
1080
+ autosize: {
1081
+ type: import('vue').PropType<boolean | {
1082
+ minRows?: number;
1083
+ maxRows?: number;
1084
+ }>;
1085
+ default: boolean;
1086
+ };
1087
+ pair: BooleanConstructor;
1088
+ separator: StringConstructor;
1089
+ readonly: {
1090
+ type: (BooleanConstructor | StringConstructor)[];
1091
+ default: boolean;
1092
+ };
1093
+ passivelyActivated: BooleanConstructor;
1094
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
1095
+ stateful: {
1096
+ type: BooleanConstructor;
1097
+ default: boolean;
1098
+ };
1099
+ autofocus: BooleanConstructor;
1100
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
1101
+ resizable: {
1102
+ type: BooleanConstructor;
1103
+ default: boolean;
1104
+ };
1105
+ showCount: BooleanConstructor;
1106
+ loading: {
1107
+ type: BooleanConstructor;
1108
+ default: undefined;
1109
+ };
1110
+ allowInput: import('vue').PropType<(value: string) => boolean>;
1111
+ renderCount: import('vue').PropType<(props: {
1112
+ value: string;
1113
+ }) => import('vue').VNodeChild>;
1114
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
1115
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
1116
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
1117
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
1118
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1119
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1120
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
1121
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
1122
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
1123
+ countGraphemes: import('vue').PropType<(value: string) => number>;
1124
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
1125
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
1126
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
1127
+ textDecoration: import('vue').PropType<string | [string, string]>;
1128
+ attrSize: {
1129
+ type: NumberConstructor;
1130
+ default: number;
1131
+ };
1132
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1133
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1134
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
1135
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
1136
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1137
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1138
+ internalDeactivateOnEnter: BooleanConstructor;
1139
+ internalForceFocus: BooleanConstructor;
1140
+ internalLoadingBeforeSuffix: {
1141
+ type: BooleanConstructor;
1142
+ default: boolean;
1143
+ };
1144
+ showPasswordToggle: BooleanConstructor;
1145
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
1146
+ fontWeight: string;
1147
+ countTextColorDisabled: string;
1148
+ countTextColor: string;
1149
+ heightTiny: string;
1150
+ heightSmall: string;
1151
+ heightMedium: string;
1152
+ heightLarge: string;
1153
+ fontSizeTiny: string;
1154
+ fontSizeSmall: string;
1155
+ fontSizeMedium: string;
1156
+ fontSizeLarge: string;
1157
+ lineHeight: string;
1158
+ lineHeightTextarea: string;
1159
+ borderRadius: string;
1160
+ iconSize: string;
1161
+ groupLabelColor: string;
1162
+ groupLabelTextColor: string;
1163
+ textColor: string;
1164
+ textColorDisabled: string;
1165
+ textDecorationColor: string;
1166
+ caretColor: string;
1167
+ placeholderColor: string;
1168
+ placeholderColorDisabled: string;
1169
+ color: string;
1170
+ colorDisabled: string;
1171
+ colorFocus: string;
1172
+ groupLabelBorder: string;
1173
+ border: string;
1174
+ borderHover: string;
1175
+ borderDisabled: string;
1176
+ borderFocus: string;
1177
+ boxShadowFocus: string;
1178
+ loadingColor: string;
1179
+ loadingColorWarning: string;
1180
+ borderWarning: string;
1181
+ borderHoverWarning: string;
1182
+ colorFocusWarning: string;
1183
+ borderFocusWarning: string;
1184
+ boxShadowFocusWarning: string;
1185
+ caretColorWarning: string;
1186
+ loadingColorError: string;
1187
+ borderError: string;
1188
+ borderHoverError: string;
1189
+ colorFocusError: string;
1190
+ borderFocusError: string;
1191
+ boxShadowFocusError: string;
1192
+ caretColorError: string;
1193
+ clearColor: string;
1194
+ clearColorHover: string;
1195
+ clearColorPressed: string;
1196
+ iconColor: string;
1197
+ iconColorDisabled: string;
1198
+ iconColorHover: string;
1199
+ iconColorPressed: string;
1200
+ suffixTextColor: string;
1201
+ paddingTiny: string;
1202
+ paddingSmall: string;
1203
+ paddingMedium: string;
1204
+ paddingLarge: string;
1205
+ clearSize: string;
1206
+ }, any>>;
1207
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
1208
+ fontWeight: string;
1209
+ countTextColorDisabled: string;
1210
+ countTextColor: string;
1211
+ heightTiny: string;
1212
+ heightSmall: string;
1213
+ heightMedium: string;
1214
+ heightLarge: string;
1215
+ fontSizeTiny: string;
1216
+ fontSizeSmall: string;
1217
+ fontSizeMedium: string;
1218
+ fontSizeLarge: string;
1219
+ lineHeight: string;
1220
+ lineHeightTextarea: string;
1221
+ borderRadius: string;
1222
+ iconSize: string;
1223
+ groupLabelColor: string;
1224
+ groupLabelTextColor: string;
1225
+ textColor: string;
1226
+ textColorDisabled: string;
1227
+ textDecorationColor: string;
1228
+ caretColor: string;
1229
+ placeholderColor: string;
1230
+ placeholderColorDisabled: string;
1231
+ color: string;
1232
+ colorDisabled: string;
1233
+ colorFocus: string;
1234
+ groupLabelBorder: string;
1235
+ border: string;
1236
+ borderHover: string;
1237
+ borderDisabled: string;
1238
+ borderFocus: string;
1239
+ boxShadowFocus: string;
1240
+ loadingColor: string;
1241
+ loadingColorWarning: string;
1242
+ borderWarning: string;
1243
+ borderHoverWarning: string;
1244
+ colorFocusWarning: string;
1245
+ borderFocusWarning: string;
1246
+ boxShadowFocusWarning: string;
1247
+ caretColorWarning: string;
1248
+ loadingColorError: string;
1249
+ borderError: string;
1250
+ borderHoverError: string;
1251
+ colorFocusError: string;
1252
+ borderFocusError: string;
1253
+ boxShadowFocusError: string;
1254
+ caretColorError: string;
1255
+ clearColor: string;
1256
+ clearColorHover: string;
1257
+ clearColorPressed: string;
1258
+ iconColor: string;
1259
+ iconColorDisabled: string;
1260
+ iconColorHover: string;
1261
+ iconColorPressed: string;
1262
+ suffixTextColor: string;
1263
+ paddingTiny: string;
1264
+ paddingSmall: string;
1265
+ paddingMedium: string;
1266
+ paddingLarge: string;
1267
+ clearSize: string;
1268
+ }, any>>>;
1269
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
1270
+ fontWeight: string;
1271
+ countTextColorDisabled: string;
1272
+ countTextColor: string;
1273
+ heightTiny: string;
1274
+ heightSmall: string;
1275
+ heightMedium: string;
1276
+ heightLarge: string;
1277
+ fontSizeTiny: string;
1278
+ fontSizeSmall: string;
1279
+ fontSizeMedium: string;
1280
+ fontSizeLarge: string;
1281
+ lineHeight: string;
1282
+ lineHeightTextarea: string;
1283
+ borderRadius: string;
1284
+ iconSize: string;
1285
+ groupLabelColor: string;
1286
+ groupLabelTextColor: string;
1287
+ textColor: string;
1288
+ textColorDisabled: string;
1289
+ textDecorationColor: string;
1290
+ caretColor: string;
1291
+ placeholderColor: string;
1292
+ placeholderColorDisabled: string;
1293
+ color: string;
1294
+ colorDisabled: string;
1295
+ colorFocus: string;
1296
+ groupLabelBorder: string;
1297
+ border: string;
1298
+ borderHover: string;
1299
+ borderDisabled: string;
1300
+ borderFocus: string;
1301
+ boxShadowFocus: string;
1302
+ loadingColor: string;
1303
+ loadingColorWarning: string;
1304
+ borderWarning: string;
1305
+ borderHoverWarning: string;
1306
+ colorFocusWarning: string;
1307
+ borderFocusWarning: string;
1308
+ boxShadowFocusWarning: string;
1309
+ caretColorWarning: string;
1310
+ loadingColorError: string;
1311
+ borderError: string;
1312
+ borderHoverError: string;
1313
+ colorFocusError: string;
1314
+ borderFocusError: string;
1315
+ boxShadowFocusError: string;
1316
+ caretColorError: string;
1317
+ clearColor: string;
1318
+ clearColorHover: string;
1319
+ clearColorPressed: string;
1320
+ iconColor: string;
1321
+ iconColorDisabled: string;
1322
+ iconColorHover: string;
1323
+ iconColorPressed: string;
1324
+ suffixTextColor: string;
1325
+ paddingTiny: string;
1326
+ paddingSmall: string;
1327
+ paddingMedium: string;
1328
+ paddingLarge: string;
1329
+ clearSize: string;
1330
+ }, any>>>;
1331
+ }>> & Readonly<{}>, {
1332
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1333
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1334
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1335
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1336
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
1337
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1338
+ textareaScrollbarInstRef: import('vue').Ref<{
1339
+ $el: HTMLElement;
1340
+ containerRef: HTMLElement | null;
1341
+ contentRef: HTMLElement | null;
1342
+ containerScrollTop: number;
1343
+ syncUnifiedContainer: () => void;
1344
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
1345
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
1346
+ sync: () => void;
1347
+ handleMouseEnterWrapper: () => void;
1348
+ handleMouseLeaveWrapper: () => void;
1349
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
1350
+ $el: HTMLElement;
1351
+ containerRef: HTMLElement | null;
1352
+ contentRef: HTMLElement | null;
1353
+ containerScrollTop: number;
1354
+ syncUnifiedContainer: () => void;
1355
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
1356
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
1357
+ sync: () => void;
1358
+ handleMouseEnterWrapper: () => void;
1359
+ handleMouseLeaveWrapper: () => void;
1360
+ } | null>;
1361
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
1362
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
1363
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
1364
+ passwordVisible: import('vue').Ref<boolean, boolean>;
1365
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
1366
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
1367
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
1368
+ mergedFocus: import('vue').ComputedRef<boolean>;
1369
+ isComposing: import('vue').Ref<boolean, boolean>;
1370
+ activated: import('vue').Ref<boolean, boolean>;
1371
+ showClearButton: import('vue').ComputedRef<boolean>;
1372
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
1373
+ mergedDisabled: import('vue').ComputedRef<boolean>;
1374
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
1375
+ textDecoration: string;
1376
+ }[]>;
1377
+ mergedClsPrefix: import('vue').Ref<string, string>;
1378
+ mergedBordered: import('vue').ComputedRef<boolean>;
1379
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
1380
+ placeholderStyle: import('vue').Ref<{
1381
+ top: string;
1382
+ }, {
1383
+ top: string;
1384
+ } | {
1385
+ top: string;
1386
+ }>;
1387
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
1388
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
1389
+ handleTextAreaScroll: (e: Event) => void;
1390
+ handleCompositionStart: () => void;
1391
+ handleCompositionEnd: (e: CompositionEvent) => void;
1392
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
1393
+ handleInputBlur: (e: FocusEvent) => void;
1394
+ handleInputFocus: (e: FocusEvent, index: number) => void;
1395
+ handleWrapperBlur: (e: FocusEvent) => void;
1396
+ handleWrapperFocus: (e: FocusEvent) => void;
1397
+ handleMouseEnter: () => void;
1398
+ handleMouseLeave: () => void;
1399
+ handleMouseDown: (e: MouseEvent) => void;
1400
+ handleChange: (e: Event, index?: 0 | 1) => void;
1401
+ handleClick: (e: MouseEvent) => void;
1402
+ handleClear: (e: MouseEvent) => void;
1403
+ handlePasswordToggleClick: () => void;
1404
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
1405
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
1406
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
1407
+ handleTextAreaMirrorResize: () => void;
1408
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
1409
+ mergedTheme: import('vue').ComputedRef<{
1410
+ common: import('naive-ui').ThemeCommonVars;
1411
+ self: {
1412
+ fontWeight: string;
1413
+ countTextColorDisabled: string;
1414
+ countTextColor: string;
1415
+ heightTiny: string;
1416
+ heightSmall: string;
1417
+ heightMedium: string;
1418
+ heightLarge: string;
1419
+ fontSizeTiny: string;
1420
+ fontSizeSmall: string;
1421
+ fontSizeMedium: string;
1422
+ fontSizeLarge: string;
1423
+ lineHeight: string;
1424
+ lineHeightTextarea: string;
1425
+ borderRadius: string;
1426
+ iconSize: string;
1427
+ groupLabelColor: string;
1428
+ groupLabelTextColor: string;
1429
+ textColor: string;
1430
+ textColorDisabled: string;
1431
+ textDecorationColor: string;
1432
+ caretColor: string;
1433
+ placeholderColor: string;
1434
+ placeholderColorDisabled: string;
1435
+ color: string;
1436
+ colorDisabled: string;
1437
+ colorFocus: string;
1438
+ groupLabelBorder: string;
1439
+ border: string;
1440
+ borderHover: string;
1441
+ borderDisabled: string;
1442
+ borderFocus: string;
1443
+ boxShadowFocus: string;
1444
+ loadingColor: string;
1445
+ loadingColorWarning: string;
1446
+ borderWarning: string;
1447
+ borderHoverWarning: string;
1448
+ colorFocusWarning: string;
1449
+ borderFocusWarning: string;
1450
+ boxShadowFocusWarning: string;
1451
+ caretColorWarning: string;
1452
+ loadingColorError: string;
1453
+ borderError: string;
1454
+ borderHoverError: string;
1455
+ colorFocusError: string;
1456
+ borderFocusError: string;
1457
+ boxShadowFocusError: string;
1458
+ caretColorError: string;
1459
+ clearColor: string;
1460
+ clearColorHover: string;
1461
+ clearColorPressed: string;
1462
+ iconColor: string;
1463
+ iconColorDisabled: string;
1464
+ iconColorHover: string;
1465
+ iconColorPressed: string;
1466
+ suffixTextColor: string;
1467
+ paddingTiny: string;
1468
+ paddingSmall: string;
1469
+ paddingMedium: string;
1470
+ paddingLarge: string;
1471
+ clearSize: string;
1472
+ };
1473
+ peers: any;
1474
+ peerOverrides: {
1475
+ [x: string]: any;
1476
+ };
1477
+ }>;
1478
+ cssVars: import('vue').ComputedRef<{
1479
+ "--n-bezier": string;
1480
+ "--n-count-text-color": string;
1481
+ "--n-count-text-color-disabled": string;
1482
+ "--n-color": string;
1483
+ "--n-font-size": string;
1484
+ "--n-font-weight": string;
1485
+ "--n-border-radius": string;
1486
+ "--n-height": string;
1487
+ "--n-padding-left": string;
1488
+ "--n-padding-right": string;
1489
+ "--n-text-color": string;
1490
+ "--n-caret-color": string;
1491
+ "--n-text-decoration-color": string;
1492
+ "--n-border": string;
1493
+ "--n-border-disabled": string;
1494
+ "--n-border-hover": string;
1495
+ "--n-border-focus": string;
1496
+ "--n-placeholder-color": string;
1497
+ "--n-placeholder-color-disabled": string;
1498
+ "--n-icon-size": string;
1499
+ "--n-line-height-textarea": string;
1500
+ "--n-color-disabled": string;
1501
+ "--n-color-focus": string;
1502
+ "--n-text-color-disabled": string;
1503
+ "--n-box-shadow-focus": string;
1504
+ "--n-loading-color": string;
1505
+ "--n-caret-color-warning": string;
1506
+ "--n-color-focus-warning": string;
1507
+ "--n-box-shadow-focus-warning": string;
1508
+ "--n-border-warning": string;
1509
+ "--n-border-focus-warning": string;
1510
+ "--n-border-hover-warning": string;
1511
+ "--n-loading-color-warning": string;
1512
+ "--n-caret-color-error": string;
1513
+ "--n-color-focus-error": string;
1514
+ "--n-box-shadow-focus-error": string;
1515
+ "--n-border-error": string;
1516
+ "--n-border-focus-error": string;
1517
+ "--n-border-hover-error": string;
1518
+ "--n-loading-color-error": string;
1519
+ "--n-clear-color": string;
1520
+ "--n-clear-size": string;
1521
+ "--n-clear-color-hover": string;
1522
+ "--n-clear-color-pressed": string;
1523
+ "--n-icon-color": string;
1524
+ "--n-icon-color-hover": string;
1525
+ "--n-icon-color-pressed": string;
1526
+ "--n-icon-color-disabled": string;
1527
+ "--n-suffix-text-color": string;
1528
+ }> | undefined;
1529
+ themeClass: import('vue').Ref<string, string> | undefined;
1530
+ onRender: (() => void) | undefined;
1531
+ isCompositing: import('vue').Ref<boolean>;
1532
+ blur: () => void;
1533
+ clear: () => void;
1534
+ focus: () => void;
1535
+ select: () => void;
1536
+ activate: () => void;
1537
+ deactivate: () => void;
1538
+ scrollTo: (options: ScrollToOptions) => void;
1539
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1540
+ type: "textarea" | "text" | "password";
1541
+ readonly: string | boolean;
1542
+ disabled: boolean | undefined;
1543
+ round: boolean;
1544
+ autofocus: boolean;
1545
+ loading: boolean;
1546
+ autosize: boolean | {
1547
+ minRows?: number;
1548
+ maxRows?: number;
1549
+ };
1550
+ bordered: boolean | undefined;
1551
+ clearable: boolean;
1552
+ defaultValue: string | [string, string] | null;
1553
+ resizable: boolean;
1554
+ pair: boolean;
1555
+ rows: string | number;
1556
+ passivelyActivated: boolean;
1557
+ stateful: boolean;
1558
+ showCount: boolean;
1559
+ attrSize: number;
1560
+ internalDeactivateOnEnter: boolean;
1561
+ internalForceFocus: boolean;
1562
+ internalLoadingBeforeSuffix: boolean;
1563
+ showPasswordToggle: boolean;
1564
+ }, true, {}, import('vue').SlotsType<import('naive-ui').InputSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1565
+ P: {};
1566
+ B: {};
1567
+ D: {};
1568
+ C: {};
1569
+ M: {};
1570
+ Defaults: {};
1571
+ }, Readonly<import('vue').ExtractPropTypes<{
1572
+ bordered: {
1573
+ type: import('vue').PropType<boolean | undefined>;
1574
+ default: undefined;
1575
+ };
1576
+ type: {
1577
+ type: import('vue').PropType<"text" | "textarea" | "password">;
1578
+ default: string;
1579
+ };
1580
+ placeholder: import('vue').PropType<string | [string, string]>;
1581
+ defaultValue: {
1582
+ type: import('vue').PropType<null | string | [string, string]>;
1583
+ default: null;
1584
+ };
1585
+ value: import('vue').PropType<null | string | [string, string]>;
1586
+ disabled: {
1587
+ type: import('vue').PropType<boolean | undefined>;
1588
+ default: undefined;
1589
+ };
1590
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
1591
+ rows: {
1592
+ type: import('vue').PropType<number | string>;
1593
+ default: number;
1594
+ };
1595
+ round: BooleanConstructor;
1596
+ minlength: import('vue').PropType<number | string>;
1597
+ maxlength: import('vue').PropType<number | string>;
1598
+ clearable: BooleanConstructor;
1599
+ autosize: {
1600
+ type: import('vue').PropType<boolean | {
1601
+ minRows?: number;
1602
+ maxRows?: number;
1603
+ }>;
1604
+ default: boolean;
1605
+ };
1606
+ pair: BooleanConstructor;
1607
+ separator: StringConstructor;
1608
+ readonly: {
1609
+ type: (BooleanConstructor | StringConstructor)[];
1610
+ default: boolean;
1611
+ };
1612
+ passivelyActivated: BooleanConstructor;
1613
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
1614
+ stateful: {
1615
+ type: BooleanConstructor;
1616
+ default: boolean;
1617
+ };
1618
+ autofocus: BooleanConstructor;
1619
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
1620
+ resizable: {
1621
+ type: BooleanConstructor;
1622
+ default: boolean;
1623
+ };
1624
+ showCount: BooleanConstructor;
1625
+ loading: {
1626
+ type: BooleanConstructor;
1627
+ default: undefined;
1628
+ };
1629
+ allowInput: import('vue').PropType<(value: string) => boolean>;
1630
+ renderCount: import('vue').PropType<(props: {
1631
+ value: string;
1632
+ }) => import('vue').VNodeChild>;
1633
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
1634
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
1635
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
1636
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
1637
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1638
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1639
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
1640
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
1641
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
1642
+ countGraphemes: import('vue').PropType<(value: string) => number>;
1643
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
1644
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
1645
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
1646
+ textDecoration: import('vue').PropType<string | [string, string]>;
1647
+ attrSize: {
1648
+ type: NumberConstructor;
1649
+ default: number;
1650
+ };
1651
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1652
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1653
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
1654
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
1655
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1656
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
1657
+ internalDeactivateOnEnter: BooleanConstructor;
1658
+ internalForceFocus: BooleanConstructor;
1659
+ internalLoadingBeforeSuffix: {
1660
+ type: BooleanConstructor;
1661
+ default: boolean;
1662
+ };
1663
+ showPasswordToggle: BooleanConstructor;
1664
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
1665
+ fontWeight: string;
1666
+ countTextColorDisabled: string;
1667
+ countTextColor: string;
1668
+ heightTiny: string;
1669
+ heightSmall: string;
1670
+ heightMedium: string;
1671
+ heightLarge: string;
1672
+ fontSizeTiny: string;
1673
+ fontSizeSmall: string;
1674
+ fontSizeMedium: string;
1675
+ fontSizeLarge: string;
1676
+ lineHeight: string;
1677
+ lineHeightTextarea: string;
1678
+ borderRadius: string;
1679
+ iconSize: string;
1680
+ groupLabelColor: string;
1681
+ groupLabelTextColor: string;
1682
+ textColor: string;
1683
+ textColorDisabled: string;
1684
+ textDecorationColor: string;
1685
+ caretColor: string;
1686
+ placeholderColor: string;
1687
+ placeholderColorDisabled: string;
1688
+ color: string;
1689
+ colorDisabled: string;
1690
+ colorFocus: string;
1691
+ groupLabelBorder: string;
1692
+ border: string;
1693
+ borderHover: string;
1694
+ borderDisabled: string;
1695
+ borderFocus: string;
1696
+ boxShadowFocus: string;
1697
+ loadingColor: string;
1698
+ loadingColorWarning: string;
1699
+ borderWarning: string;
1700
+ borderHoverWarning: string;
1701
+ colorFocusWarning: string;
1702
+ borderFocusWarning: string;
1703
+ boxShadowFocusWarning: string;
1704
+ caretColorWarning: string;
1705
+ loadingColorError: string;
1706
+ borderError: string;
1707
+ borderHoverError: string;
1708
+ colorFocusError: string;
1709
+ borderFocusError: string;
1710
+ boxShadowFocusError: string;
1711
+ caretColorError: string;
1712
+ clearColor: string;
1713
+ clearColorHover: string;
1714
+ clearColorPressed: string;
1715
+ iconColor: string;
1716
+ iconColorDisabled: string;
1717
+ iconColorHover: string;
1718
+ iconColorPressed: string;
1719
+ suffixTextColor: string;
1720
+ paddingTiny: string;
1721
+ paddingSmall: string;
1722
+ paddingMedium: string;
1723
+ paddingLarge: string;
1724
+ clearSize: string;
1725
+ }, any>>;
1726
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
1727
+ fontWeight: string;
1728
+ countTextColorDisabled: string;
1729
+ countTextColor: string;
1730
+ heightTiny: string;
1731
+ heightSmall: string;
1732
+ heightMedium: string;
1733
+ heightLarge: string;
1734
+ fontSizeTiny: string;
1735
+ fontSizeSmall: string;
1736
+ fontSizeMedium: string;
1737
+ fontSizeLarge: string;
1738
+ lineHeight: string;
1739
+ lineHeightTextarea: string;
1740
+ borderRadius: string;
1741
+ iconSize: string;
1742
+ groupLabelColor: string;
1743
+ groupLabelTextColor: string;
1744
+ textColor: string;
1745
+ textColorDisabled: string;
1746
+ textDecorationColor: string;
1747
+ caretColor: string;
1748
+ placeholderColor: string;
1749
+ placeholderColorDisabled: string;
1750
+ color: string;
1751
+ colorDisabled: string;
1752
+ colorFocus: string;
1753
+ groupLabelBorder: string;
1754
+ border: string;
1755
+ borderHover: string;
1756
+ borderDisabled: string;
1757
+ borderFocus: string;
1758
+ boxShadowFocus: string;
1759
+ loadingColor: string;
1760
+ loadingColorWarning: string;
1761
+ borderWarning: string;
1762
+ borderHoverWarning: string;
1763
+ colorFocusWarning: string;
1764
+ borderFocusWarning: string;
1765
+ boxShadowFocusWarning: string;
1766
+ caretColorWarning: string;
1767
+ loadingColorError: string;
1768
+ borderError: string;
1769
+ borderHoverError: string;
1770
+ colorFocusError: string;
1771
+ borderFocusError: string;
1772
+ boxShadowFocusError: string;
1773
+ caretColorError: string;
1774
+ clearColor: string;
1775
+ clearColorHover: string;
1776
+ clearColorPressed: string;
1777
+ iconColor: string;
1778
+ iconColorDisabled: string;
1779
+ iconColorHover: string;
1780
+ iconColorPressed: string;
1781
+ suffixTextColor: string;
1782
+ paddingTiny: string;
1783
+ paddingSmall: string;
1784
+ paddingMedium: string;
1785
+ paddingLarge: string;
1786
+ clearSize: string;
1787
+ }, any>>>;
1788
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
1789
+ fontWeight: string;
1790
+ countTextColorDisabled: string;
1791
+ countTextColor: string;
1792
+ heightTiny: string;
1793
+ heightSmall: string;
1794
+ heightMedium: string;
1795
+ heightLarge: string;
1796
+ fontSizeTiny: string;
1797
+ fontSizeSmall: string;
1798
+ fontSizeMedium: string;
1799
+ fontSizeLarge: string;
1800
+ lineHeight: string;
1801
+ lineHeightTextarea: string;
1802
+ borderRadius: string;
1803
+ iconSize: string;
1804
+ groupLabelColor: string;
1805
+ groupLabelTextColor: string;
1806
+ textColor: string;
1807
+ textColorDisabled: string;
1808
+ textDecorationColor: string;
1809
+ caretColor: string;
1810
+ placeholderColor: string;
1811
+ placeholderColorDisabled: string;
1812
+ color: string;
1813
+ colorDisabled: string;
1814
+ colorFocus: string;
1815
+ groupLabelBorder: string;
1816
+ border: string;
1817
+ borderHover: string;
1818
+ borderDisabled: string;
1819
+ borderFocus: string;
1820
+ boxShadowFocus: string;
1821
+ loadingColor: string;
1822
+ loadingColorWarning: string;
1823
+ borderWarning: string;
1824
+ borderHoverWarning: string;
1825
+ colorFocusWarning: string;
1826
+ borderFocusWarning: string;
1827
+ boxShadowFocusWarning: string;
1828
+ caretColorWarning: string;
1829
+ loadingColorError: string;
1830
+ borderError: string;
1831
+ borderHoverError: string;
1832
+ colorFocusError: string;
1833
+ borderFocusError: string;
1834
+ boxShadowFocusError: string;
1835
+ caretColorError: string;
1836
+ clearColor: string;
1837
+ clearColorHover: string;
1838
+ clearColorPressed: string;
1839
+ iconColor: string;
1840
+ iconColorDisabled: string;
1841
+ iconColorHover: string;
1842
+ iconColorPressed: string;
1843
+ suffixTextColor: string;
1844
+ paddingTiny: string;
1845
+ paddingSmall: string;
1846
+ paddingMedium: string;
1847
+ paddingLarge: string;
1848
+ clearSize: string;
1849
+ }, any>>>;
1850
+ }>> & Readonly<{}>, {
1851
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1852
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1853
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1854
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1855
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
1856
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
1857
+ textareaScrollbarInstRef: import('vue').Ref<{
1858
+ $el: HTMLElement;
1859
+ containerRef: HTMLElement | null;
1860
+ contentRef: HTMLElement | null;
1861
+ containerScrollTop: number;
1862
+ syncUnifiedContainer: () => void;
1863
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
1864
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
1865
+ sync: () => void;
1866
+ handleMouseEnterWrapper: () => void;
1867
+ handleMouseLeaveWrapper: () => void;
1868
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
1869
+ $el: HTMLElement;
1870
+ containerRef: HTMLElement | null;
1871
+ contentRef: HTMLElement | null;
1872
+ containerScrollTop: number;
1873
+ syncUnifiedContainer: () => void;
1874
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
1875
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
1876
+ sync: () => void;
1877
+ handleMouseEnterWrapper: () => void;
1878
+ handleMouseLeaveWrapper: () => void;
1879
+ } | null>;
1880
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
1881
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
1882
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
1883
+ passwordVisible: import('vue').Ref<boolean, boolean>;
1884
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
1885
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
1886
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
1887
+ mergedFocus: import('vue').ComputedRef<boolean>;
1888
+ isComposing: import('vue').Ref<boolean, boolean>;
1889
+ activated: import('vue').Ref<boolean, boolean>;
1890
+ showClearButton: import('vue').ComputedRef<boolean>;
1891
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
1892
+ mergedDisabled: import('vue').ComputedRef<boolean>;
1893
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
1894
+ textDecoration: string;
1895
+ }[]>;
1896
+ mergedClsPrefix: import('vue').Ref<string, string>;
1897
+ mergedBordered: import('vue').ComputedRef<boolean>;
1898
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
1899
+ placeholderStyle: import('vue').Ref<{
1900
+ top: string;
1901
+ }, {
1902
+ top: string;
1903
+ } | {
1904
+ top: string;
1905
+ }>;
1906
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
1907
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
1908
+ handleTextAreaScroll: (e: Event) => void;
1909
+ handleCompositionStart: () => void;
1910
+ handleCompositionEnd: (e: CompositionEvent) => void;
1911
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
1912
+ handleInputBlur: (e: FocusEvent) => void;
1913
+ handleInputFocus: (e: FocusEvent, index: number) => void;
1914
+ handleWrapperBlur: (e: FocusEvent) => void;
1915
+ handleWrapperFocus: (e: FocusEvent) => void;
1916
+ handleMouseEnter: () => void;
1917
+ handleMouseLeave: () => void;
1918
+ handleMouseDown: (e: MouseEvent) => void;
1919
+ handleChange: (e: Event, index?: 0 | 1) => void;
1920
+ handleClick: (e: MouseEvent) => void;
1921
+ handleClear: (e: MouseEvent) => void;
1922
+ handlePasswordToggleClick: () => void;
1923
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
1924
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
1925
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
1926
+ handleTextAreaMirrorResize: () => void;
1927
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
1928
+ mergedTheme: import('vue').ComputedRef<{
1929
+ common: import('naive-ui').ThemeCommonVars;
1930
+ self: {
1931
+ fontWeight: string;
1932
+ countTextColorDisabled: string;
1933
+ countTextColor: string;
1934
+ heightTiny: string;
1935
+ heightSmall: string;
1936
+ heightMedium: string;
1937
+ heightLarge: string;
1938
+ fontSizeTiny: string;
1939
+ fontSizeSmall: string;
1940
+ fontSizeMedium: string;
1941
+ fontSizeLarge: string;
1942
+ lineHeight: string;
1943
+ lineHeightTextarea: string;
1944
+ borderRadius: string;
1945
+ iconSize: string;
1946
+ groupLabelColor: string;
1947
+ groupLabelTextColor: string;
1948
+ textColor: string;
1949
+ textColorDisabled: string;
1950
+ textDecorationColor: string;
1951
+ caretColor: string;
1952
+ placeholderColor: string;
1953
+ placeholderColorDisabled: string;
1954
+ color: string;
1955
+ colorDisabled: string;
1956
+ colorFocus: string;
1957
+ groupLabelBorder: string;
1958
+ border: string;
1959
+ borderHover: string;
1960
+ borderDisabled: string;
1961
+ borderFocus: string;
1962
+ boxShadowFocus: string;
1963
+ loadingColor: string;
1964
+ loadingColorWarning: string;
1965
+ borderWarning: string;
1966
+ borderHoverWarning: string;
1967
+ colorFocusWarning: string;
1968
+ borderFocusWarning: string;
1969
+ boxShadowFocusWarning: string;
1970
+ caretColorWarning: string;
1971
+ loadingColorError: string;
1972
+ borderError: string;
1973
+ borderHoverError: string;
1974
+ colorFocusError: string;
1975
+ borderFocusError: string;
1976
+ boxShadowFocusError: string;
1977
+ caretColorError: string;
1978
+ clearColor: string;
1979
+ clearColorHover: string;
1980
+ clearColorPressed: string;
1981
+ iconColor: string;
1982
+ iconColorDisabled: string;
1983
+ iconColorHover: string;
1984
+ iconColorPressed: string;
1985
+ suffixTextColor: string;
1986
+ paddingTiny: string;
1987
+ paddingSmall: string;
1988
+ paddingMedium: string;
1989
+ paddingLarge: string;
1990
+ clearSize: string;
1991
+ };
1992
+ peers: any;
1993
+ peerOverrides: {
1994
+ [x: string]: any;
1995
+ };
1996
+ }>;
1997
+ cssVars: import('vue').ComputedRef<{
1998
+ "--n-bezier": string;
1999
+ "--n-count-text-color": string;
2000
+ "--n-count-text-color-disabled": string;
2001
+ "--n-color": string;
2002
+ "--n-font-size": string;
2003
+ "--n-font-weight": string;
2004
+ "--n-border-radius": string;
2005
+ "--n-height": string;
2006
+ "--n-padding-left": string;
2007
+ "--n-padding-right": string;
2008
+ "--n-text-color": string;
2009
+ "--n-caret-color": string;
2010
+ "--n-text-decoration-color": string;
2011
+ "--n-border": string;
2012
+ "--n-border-disabled": string;
2013
+ "--n-border-hover": string;
2014
+ "--n-border-focus": string;
2015
+ "--n-placeholder-color": string;
2016
+ "--n-placeholder-color-disabled": string;
2017
+ "--n-icon-size": string;
2018
+ "--n-line-height-textarea": string;
2019
+ "--n-color-disabled": string;
2020
+ "--n-color-focus": string;
2021
+ "--n-text-color-disabled": string;
2022
+ "--n-box-shadow-focus": string;
2023
+ "--n-loading-color": string;
2024
+ "--n-caret-color-warning": string;
2025
+ "--n-color-focus-warning": string;
2026
+ "--n-box-shadow-focus-warning": string;
2027
+ "--n-border-warning": string;
2028
+ "--n-border-focus-warning": string;
2029
+ "--n-border-hover-warning": string;
2030
+ "--n-loading-color-warning": string;
2031
+ "--n-caret-color-error": string;
2032
+ "--n-color-focus-error": string;
2033
+ "--n-box-shadow-focus-error": string;
2034
+ "--n-border-error": string;
2035
+ "--n-border-focus-error": string;
2036
+ "--n-border-hover-error": string;
2037
+ "--n-loading-color-error": string;
2038
+ "--n-clear-color": string;
2039
+ "--n-clear-size": string;
2040
+ "--n-clear-color-hover": string;
2041
+ "--n-clear-color-pressed": string;
2042
+ "--n-icon-color": string;
2043
+ "--n-icon-color-hover": string;
2044
+ "--n-icon-color-pressed": string;
2045
+ "--n-icon-color-disabled": string;
2046
+ "--n-suffix-text-color": string;
2047
+ }> | undefined;
2048
+ themeClass: import('vue').Ref<string, string> | undefined;
2049
+ onRender: (() => void) | undefined;
2050
+ isCompositing: import('vue').Ref<boolean>;
2051
+ blur: () => void;
2052
+ clear: () => void;
2053
+ focus: () => void;
2054
+ select: () => void;
2055
+ activate: () => void;
2056
+ deactivate: () => void;
2057
+ scrollTo: (options: ScrollToOptions) => void;
2058
+ }, {}, {}, {}, {
2059
+ type: "textarea" | "text" | "password";
2060
+ readonly: string | boolean;
2061
+ disabled: boolean | undefined;
2062
+ round: boolean;
2063
+ autofocus: boolean;
2064
+ loading: boolean;
2065
+ autosize: boolean | {
2066
+ minRows?: number;
2067
+ maxRows?: number;
2068
+ };
2069
+ bordered: boolean | undefined;
2070
+ clearable: boolean;
2071
+ defaultValue: string | [string, string] | null;
2072
+ resizable: boolean;
2073
+ pair: boolean;
2074
+ rows: string | number;
2075
+ passivelyActivated: boolean;
2076
+ stateful: boolean;
2077
+ showCount: boolean;
2078
+ attrSize: number;
2079
+ internalDeactivateOnEnter: boolean;
2080
+ internalForceFocus: boolean;
2081
+ internalLoadingBeforeSuffix: boolean;
2082
+ showPasswordToggle: boolean;
2083
+ }> | null;
2084
+ }, any>;
17
2085
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
2086
  export default _default;
19
2087
  type __VLS_WithTemplateSlots<T, S> = T & {