@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
@@ -0,0 +1,1046 @@
1
+ import { InputProps } from 'naive-ui';
2
+ type __VLS_Props = {
3
+ inputProps?: InputProps;
4
+ };
5
+ type __VLS_PublicProps = {
6
+ 'value'?: string;
7
+ } & __VLS_Props;
8
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:value": (value: string) => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
11
+ "onUpdate:value"?: ((value: string) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
13
+ inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
14
+ bordered: {
15
+ type: import('vue').PropType<boolean | undefined>;
16
+ default: undefined;
17
+ };
18
+ type: {
19
+ type: import('vue').PropType<"text" | "textarea" | "password">;
20
+ default: string;
21
+ };
22
+ placeholder: import('vue').PropType<string | [string, string]>;
23
+ defaultValue: {
24
+ type: import('vue').PropType<null | string | [string, string]>;
25
+ default: null;
26
+ };
27
+ value: import('vue').PropType<null | string | [string, string]>;
28
+ disabled: {
29
+ type: import('vue').PropType<boolean | undefined>;
30
+ default: undefined;
31
+ };
32
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
33
+ rows: {
34
+ type: import('vue').PropType<number | string>;
35
+ default: number;
36
+ };
37
+ round: BooleanConstructor;
38
+ minlength: import('vue').PropType<number | string>;
39
+ maxlength: import('vue').PropType<number | string>;
40
+ clearable: BooleanConstructor;
41
+ autosize: {
42
+ type: import('vue').PropType<boolean | {
43
+ minRows?: number;
44
+ maxRows?: number;
45
+ }>;
46
+ default: boolean;
47
+ };
48
+ pair: BooleanConstructor;
49
+ separator: StringConstructor;
50
+ readonly: {
51
+ type: (BooleanConstructor | StringConstructor)[];
52
+ default: boolean;
53
+ };
54
+ passivelyActivated: BooleanConstructor;
55
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
56
+ stateful: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ autofocus: BooleanConstructor;
61
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
62
+ resizable: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ showCount: BooleanConstructor;
67
+ loading: {
68
+ type: BooleanConstructor;
69
+ default: undefined;
70
+ };
71
+ allowInput: import('vue').PropType<(value: string) => boolean>;
72
+ renderCount: import('vue').PropType<(props: {
73
+ value: string;
74
+ }) => import('vue').VNodeChild>;
75
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
76
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
77
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
78
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
79
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
80
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
81
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
82
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
83
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
84
+ countGraphemes: import('vue').PropType<(value: string) => number>;
85
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
86
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
87
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
88
+ textDecoration: import('vue').PropType<string | [string, string]>;
89
+ attrSize: {
90
+ type: NumberConstructor;
91
+ default: number;
92
+ };
93
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
94
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
95
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
96
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
97
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
98
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
99
+ internalDeactivateOnEnter: BooleanConstructor;
100
+ internalForceFocus: BooleanConstructor;
101
+ internalLoadingBeforeSuffix: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ showPasswordToggle: BooleanConstructor;
106
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
107
+ fontWeight: string;
108
+ countTextColorDisabled: string;
109
+ countTextColor: string;
110
+ heightTiny: string;
111
+ heightSmall: string;
112
+ heightMedium: string;
113
+ heightLarge: string;
114
+ fontSizeTiny: string;
115
+ fontSizeSmall: string;
116
+ fontSizeMedium: string;
117
+ fontSizeLarge: string;
118
+ lineHeight: string;
119
+ lineHeightTextarea: string;
120
+ borderRadius: string;
121
+ iconSize: string;
122
+ groupLabelColor: string;
123
+ groupLabelTextColor: string;
124
+ textColor: string;
125
+ textColorDisabled: string;
126
+ textDecorationColor: string;
127
+ caretColor: string;
128
+ placeholderColor: string;
129
+ placeholderColorDisabled: string;
130
+ color: string;
131
+ colorDisabled: string;
132
+ colorFocus: string;
133
+ groupLabelBorder: string;
134
+ border: string;
135
+ borderHover: string;
136
+ borderDisabled: string;
137
+ borderFocus: string;
138
+ boxShadowFocus: string;
139
+ loadingColor: string;
140
+ loadingColorWarning: string;
141
+ borderWarning: string;
142
+ borderHoverWarning: string;
143
+ colorFocusWarning: string;
144
+ borderFocusWarning: string;
145
+ boxShadowFocusWarning: string;
146
+ caretColorWarning: string;
147
+ loadingColorError: string;
148
+ borderError: string;
149
+ borderHoverError: string;
150
+ colorFocusError: string;
151
+ borderFocusError: string;
152
+ boxShadowFocusError: string;
153
+ caretColorError: string;
154
+ clearColor: string;
155
+ clearColorHover: string;
156
+ clearColorPressed: string;
157
+ iconColor: string;
158
+ iconColorDisabled: string;
159
+ iconColorHover: string;
160
+ iconColorPressed: string;
161
+ suffixTextColor: string;
162
+ paddingTiny: string;
163
+ paddingSmall: string;
164
+ paddingMedium: string;
165
+ paddingLarge: string;
166
+ clearSize: string;
167
+ }, any>>;
168
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
169
+ fontWeight: string;
170
+ countTextColorDisabled: string;
171
+ countTextColor: string;
172
+ heightTiny: string;
173
+ heightSmall: string;
174
+ heightMedium: string;
175
+ heightLarge: string;
176
+ fontSizeTiny: string;
177
+ fontSizeSmall: string;
178
+ fontSizeMedium: string;
179
+ fontSizeLarge: string;
180
+ lineHeight: string;
181
+ lineHeightTextarea: string;
182
+ borderRadius: string;
183
+ iconSize: string;
184
+ groupLabelColor: string;
185
+ groupLabelTextColor: string;
186
+ textColor: string;
187
+ textColorDisabled: string;
188
+ textDecorationColor: string;
189
+ caretColor: string;
190
+ placeholderColor: string;
191
+ placeholderColorDisabled: string;
192
+ color: string;
193
+ colorDisabled: string;
194
+ colorFocus: string;
195
+ groupLabelBorder: string;
196
+ border: string;
197
+ borderHover: string;
198
+ borderDisabled: string;
199
+ borderFocus: string;
200
+ boxShadowFocus: string;
201
+ loadingColor: string;
202
+ loadingColorWarning: string;
203
+ borderWarning: string;
204
+ borderHoverWarning: string;
205
+ colorFocusWarning: string;
206
+ borderFocusWarning: string;
207
+ boxShadowFocusWarning: string;
208
+ caretColorWarning: string;
209
+ loadingColorError: string;
210
+ borderError: string;
211
+ borderHoverError: string;
212
+ colorFocusError: string;
213
+ borderFocusError: string;
214
+ boxShadowFocusError: string;
215
+ caretColorError: string;
216
+ clearColor: string;
217
+ clearColorHover: string;
218
+ clearColorPressed: string;
219
+ iconColor: string;
220
+ iconColorDisabled: string;
221
+ iconColorHover: string;
222
+ iconColorPressed: string;
223
+ suffixTextColor: string;
224
+ paddingTiny: string;
225
+ paddingSmall: string;
226
+ paddingMedium: string;
227
+ paddingLarge: string;
228
+ clearSize: string;
229
+ }, any>>>;
230
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
231
+ fontWeight: string;
232
+ countTextColorDisabled: string;
233
+ countTextColor: string;
234
+ heightTiny: string;
235
+ heightSmall: string;
236
+ heightMedium: string;
237
+ heightLarge: string;
238
+ fontSizeTiny: string;
239
+ fontSizeSmall: string;
240
+ fontSizeMedium: string;
241
+ fontSizeLarge: string;
242
+ lineHeight: string;
243
+ lineHeightTextarea: string;
244
+ borderRadius: string;
245
+ iconSize: string;
246
+ groupLabelColor: string;
247
+ groupLabelTextColor: string;
248
+ textColor: string;
249
+ textColorDisabled: string;
250
+ textDecorationColor: string;
251
+ caretColor: string;
252
+ placeholderColor: string;
253
+ placeholderColorDisabled: string;
254
+ color: string;
255
+ colorDisabled: string;
256
+ colorFocus: string;
257
+ groupLabelBorder: string;
258
+ border: string;
259
+ borderHover: string;
260
+ borderDisabled: string;
261
+ borderFocus: string;
262
+ boxShadowFocus: string;
263
+ loadingColor: string;
264
+ loadingColorWarning: string;
265
+ borderWarning: string;
266
+ borderHoverWarning: string;
267
+ colorFocusWarning: string;
268
+ borderFocusWarning: string;
269
+ boxShadowFocusWarning: string;
270
+ caretColorWarning: string;
271
+ loadingColorError: string;
272
+ borderError: string;
273
+ borderHoverError: string;
274
+ colorFocusError: string;
275
+ borderFocusError: string;
276
+ boxShadowFocusError: string;
277
+ caretColorError: string;
278
+ clearColor: string;
279
+ clearColorHover: string;
280
+ clearColorPressed: string;
281
+ iconColor: string;
282
+ iconColorDisabled: string;
283
+ iconColorHover: string;
284
+ iconColorPressed: string;
285
+ suffixTextColor: string;
286
+ paddingTiny: string;
287
+ paddingSmall: string;
288
+ paddingMedium: string;
289
+ paddingLarge: string;
290
+ clearSize: string;
291
+ }, any>>>;
292
+ }>> & Readonly<{}>, {
293
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
294
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
295
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
296
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
297
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
298
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
299
+ textareaScrollbarInstRef: import('vue').Ref<{
300
+ $el: HTMLElement;
301
+ containerRef: HTMLElement | null;
302
+ contentRef: HTMLElement | null;
303
+ containerScrollTop: number;
304
+ syncUnifiedContainer: () => void;
305
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
306
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
307
+ sync: () => void;
308
+ handleMouseEnterWrapper: () => void;
309
+ handleMouseLeaveWrapper: () => void;
310
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
311
+ $el: HTMLElement;
312
+ containerRef: HTMLElement | null;
313
+ contentRef: HTMLElement | null;
314
+ containerScrollTop: number;
315
+ syncUnifiedContainer: () => void;
316
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
317
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
318
+ sync: () => void;
319
+ handleMouseEnterWrapper: () => void;
320
+ handleMouseLeaveWrapper: () => void;
321
+ } | null>;
322
+ 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;
323
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
324
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
325
+ passwordVisible: import('vue').Ref<boolean, boolean>;
326
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
327
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
328
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
329
+ mergedFocus: import('vue').ComputedRef<boolean>;
330
+ isComposing: import('vue').Ref<boolean, boolean>;
331
+ activated: import('vue').Ref<boolean, boolean>;
332
+ showClearButton: import('vue').ComputedRef<boolean>;
333
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
334
+ mergedDisabled: import('vue').ComputedRef<boolean>;
335
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
336
+ textDecoration: string;
337
+ }[]>;
338
+ mergedClsPrefix: import('vue').Ref<string, string>;
339
+ mergedBordered: import('vue').ComputedRef<boolean>;
340
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
341
+ placeholderStyle: import('vue').Ref<{
342
+ top: string;
343
+ }, {
344
+ top: string;
345
+ } | {
346
+ top: string;
347
+ }>;
348
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
349
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
350
+ handleTextAreaScroll: (e: Event) => void;
351
+ handleCompositionStart: () => void;
352
+ handleCompositionEnd: (e: CompositionEvent) => void;
353
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
354
+ handleInputBlur: (e: FocusEvent) => void;
355
+ handleInputFocus: (e: FocusEvent, index: number) => void;
356
+ handleWrapperBlur: (e: FocusEvent) => void;
357
+ handleWrapperFocus: (e: FocusEvent) => void;
358
+ handleMouseEnter: () => void;
359
+ handleMouseLeave: () => void;
360
+ handleMouseDown: (e: MouseEvent) => void;
361
+ handleChange: (e: Event, index?: 0 | 1) => void;
362
+ handleClick: (e: MouseEvent) => void;
363
+ handleClear: (e: MouseEvent) => void;
364
+ handlePasswordToggleClick: () => void;
365
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
366
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
367
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
368
+ handleTextAreaMirrorResize: () => void;
369
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
370
+ mergedTheme: import('vue').ComputedRef<{
371
+ common: import('naive-ui').ThemeCommonVars;
372
+ self: {
373
+ fontWeight: string;
374
+ countTextColorDisabled: string;
375
+ countTextColor: string;
376
+ heightTiny: string;
377
+ heightSmall: string;
378
+ heightMedium: string;
379
+ heightLarge: string;
380
+ fontSizeTiny: string;
381
+ fontSizeSmall: string;
382
+ fontSizeMedium: string;
383
+ fontSizeLarge: string;
384
+ lineHeight: string;
385
+ lineHeightTextarea: string;
386
+ borderRadius: string;
387
+ iconSize: string;
388
+ groupLabelColor: string;
389
+ groupLabelTextColor: string;
390
+ textColor: string;
391
+ textColorDisabled: string;
392
+ textDecorationColor: string;
393
+ caretColor: string;
394
+ placeholderColor: string;
395
+ placeholderColorDisabled: string;
396
+ color: string;
397
+ colorDisabled: string;
398
+ colorFocus: string;
399
+ groupLabelBorder: string;
400
+ border: string;
401
+ borderHover: string;
402
+ borderDisabled: string;
403
+ borderFocus: string;
404
+ boxShadowFocus: string;
405
+ loadingColor: string;
406
+ loadingColorWarning: string;
407
+ borderWarning: string;
408
+ borderHoverWarning: string;
409
+ colorFocusWarning: string;
410
+ borderFocusWarning: string;
411
+ boxShadowFocusWarning: string;
412
+ caretColorWarning: string;
413
+ loadingColorError: string;
414
+ borderError: string;
415
+ borderHoverError: string;
416
+ colorFocusError: string;
417
+ borderFocusError: string;
418
+ boxShadowFocusError: string;
419
+ caretColorError: string;
420
+ clearColor: string;
421
+ clearColorHover: string;
422
+ clearColorPressed: string;
423
+ iconColor: string;
424
+ iconColorDisabled: string;
425
+ iconColorHover: string;
426
+ iconColorPressed: string;
427
+ suffixTextColor: string;
428
+ paddingTiny: string;
429
+ paddingSmall: string;
430
+ paddingMedium: string;
431
+ paddingLarge: string;
432
+ clearSize: string;
433
+ };
434
+ peers: any;
435
+ peerOverrides: {
436
+ [x: string]: any;
437
+ };
438
+ }>;
439
+ cssVars: import('vue').ComputedRef<{
440
+ "--n-bezier": string;
441
+ "--n-count-text-color": string;
442
+ "--n-count-text-color-disabled": string;
443
+ "--n-color": string;
444
+ "--n-font-size": string;
445
+ "--n-font-weight": string;
446
+ "--n-border-radius": string;
447
+ "--n-height": string;
448
+ "--n-padding-left": string;
449
+ "--n-padding-right": string;
450
+ "--n-text-color": string;
451
+ "--n-caret-color": string;
452
+ "--n-text-decoration-color": string;
453
+ "--n-border": string;
454
+ "--n-border-disabled": string;
455
+ "--n-border-hover": string;
456
+ "--n-border-focus": string;
457
+ "--n-placeholder-color": string;
458
+ "--n-placeholder-color-disabled": string;
459
+ "--n-icon-size": string;
460
+ "--n-line-height-textarea": string;
461
+ "--n-color-disabled": string;
462
+ "--n-color-focus": string;
463
+ "--n-text-color-disabled": string;
464
+ "--n-box-shadow-focus": string;
465
+ "--n-loading-color": string;
466
+ "--n-caret-color-warning": string;
467
+ "--n-color-focus-warning": string;
468
+ "--n-box-shadow-focus-warning": string;
469
+ "--n-border-warning": string;
470
+ "--n-border-focus-warning": string;
471
+ "--n-border-hover-warning": string;
472
+ "--n-loading-color-warning": string;
473
+ "--n-caret-color-error": string;
474
+ "--n-color-focus-error": string;
475
+ "--n-box-shadow-focus-error": string;
476
+ "--n-border-error": string;
477
+ "--n-border-focus-error": string;
478
+ "--n-border-hover-error": string;
479
+ "--n-loading-color-error": string;
480
+ "--n-clear-color": string;
481
+ "--n-clear-size": string;
482
+ "--n-clear-color-hover": string;
483
+ "--n-clear-color-pressed": string;
484
+ "--n-icon-color": string;
485
+ "--n-icon-color-hover": string;
486
+ "--n-icon-color-pressed": string;
487
+ "--n-icon-color-disabled": string;
488
+ "--n-suffix-text-color": string;
489
+ }> | undefined;
490
+ themeClass: import('vue').Ref<string, string> | undefined;
491
+ onRender: (() => void) | undefined;
492
+ isCompositing: import('vue').Ref<boolean>;
493
+ blur: () => void;
494
+ clear: () => void;
495
+ focus: () => void;
496
+ select: () => void;
497
+ activate: () => void;
498
+ deactivate: () => void;
499
+ scrollTo: (options: ScrollToOptions) => void;
500
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
501
+ type: "textarea" | "text" | "password";
502
+ readonly: string | boolean;
503
+ disabled: boolean | undefined;
504
+ round: boolean;
505
+ autofocus: boolean;
506
+ loading: boolean;
507
+ autosize: boolean | {
508
+ minRows?: number;
509
+ maxRows?: number;
510
+ };
511
+ bordered: boolean | undefined;
512
+ clearable: boolean;
513
+ defaultValue: string | [string, string] | null;
514
+ resizable: boolean;
515
+ pair: boolean;
516
+ rows: string | number;
517
+ passivelyActivated: boolean;
518
+ stateful: boolean;
519
+ showCount: boolean;
520
+ attrSize: number;
521
+ internalDeactivateOnEnter: boolean;
522
+ internalForceFocus: boolean;
523
+ internalLoadingBeforeSuffix: boolean;
524
+ showPasswordToggle: boolean;
525
+ }, true, {}, import('vue').SlotsType<import('naive-ui').InputSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
526
+ P: {};
527
+ B: {};
528
+ D: {};
529
+ C: {};
530
+ M: {};
531
+ Defaults: {};
532
+ }, Readonly<import('vue').ExtractPropTypes<{
533
+ bordered: {
534
+ type: import('vue').PropType<boolean | undefined>;
535
+ default: undefined;
536
+ };
537
+ type: {
538
+ type: import('vue').PropType<"text" | "textarea" | "password">;
539
+ default: string;
540
+ };
541
+ placeholder: import('vue').PropType<string | [string, string]>;
542
+ defaultValue: {
543
+ type: import('vue').PropType<null | string | [string, string]>;
544
+ default: null;
545
+ };
546
+ value: import('vue').PropType<null | string | [string, string]>;
547
+ disabled: {
548
+ type: import('vue').PropType<boolean | undefined>;
549
+ default: undefined;
550
+ };
551
+ size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
552
+ rows: {
553
+ type: import('vue').PropType<number | string>;
554
+ default: number;
555
+ };
556
+ round: BooleanConstructor;
557
+ minlength: import('vue').PropType<number | string>;
558
+ maxlength: import('vue').PropType<number | string>;
559
+ clearable: BooleanConstructor;
560
+ autosize: {
561
+ type: import('vue').PropType<boolean | {
562
+ minRows?: number;
563
+ maxRows?: number;
564
+ }>;
565
+ default: boolean;
566
+ };
567
+ pair: BooleanConstructor;
568
+ separator: StringConstructor;
569
+ readonly: {
570
+ type: (BooleanConstructor | StringConstructor)[];
571
+ default: boolean;
572
+ };
573
+ passivelyActivated: BooleanConstructor;
574
+ showPasswordOn: import('vue').PropType<"mousedown" | "click">;
575
+ stateful: {
576
+ type: BooleanConstructor;
577
+ default: boolean;
578
+ };
579
+ autofocus: BooleanConstructor;
580
+ inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
581
+ resizable: {
582
+ type: BooleanConstructor;
583
+ default: boolean;
584
+ };
585
+ showCount: BooleanConstructor;
586
+ loading: {
587
+ type: BooleanConstructor;
588
+ default: undefined;
589
+ };
590
+ allowInput: import('vue').PropType<(value: string) => boolean>;
591
+ renderCount: import('vue').PropType<(props: {
592
+ value: string;
593
+ }) => import('vue').VNodeChild>;
594
+ onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
595
+ onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
596
+ onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
597
+ onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
598
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
599
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
600
+ onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
601
+ onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
602
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
603
+ countGraphemes: import('vue').PropType<(value: string) => number>;
604
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
605
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
606
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
607
+ textDecoration: import('vue').PropType<string | [string, string]>;
608
+ attrSize: {
609
+ type: NumberConstructor;
610
+ default: number;
611
+ };
612
+ onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
613
+ onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
614
+ onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
615
+ onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
616
+ onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
617
+ onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
618
+ internalDeactivateOnEnter: BooleanConstructor;
619
+ internalForceFocus: BooleanConstructor;
620
+ internalLoadingBeforeSuffix: {
621
+ type: BooleanConstructor;
622
+ default: boolean;
623
+ };
624
+ showPasswordToggle: BooleanConstructor;
625
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
626
+ fontWeight: string;
627
+ countTextColorDisabled: string;
628
+ countTextColor: string;
629
+ heightTiny: string;
630
+ heightSmall: string;
631
+ heightMedium: string;
632
+ heightLarge: string;
633
+ fontSizeTiny: string;
634
+ fontSizeSmall: string;
635
+ fontSizeMedium: string;
636
+ fontSizeLarge: string;
637
+ lineHeight: string;
638
+ lineHeightTextarea: string;
639
+ borderRadius: string;
640
+ iconSize: string;
641
+ groupLabelColor: string;
642
+ groupLabelTextColor: string;
643
+ textColor: string;
644
+ textColorDisabled: string;
645
+ textDecorationColor: string;
646
+ caretColor: string;
647
+ placeholderColor: string;
648
+ placeholderColorDisabled: string;
649
+ color: string;
650
+ colorDisabled: string;
651
+ colorFocus: string;
652
+ groupLabelBorder: string;
653
+ border: string;
654
+ borderHover: string;
655
+ borderDisabled: string;
656
+ borderFocus: string;
657
+ boxShadowFocus: string;
658
+ loadingColor: string;
659
+ loadingColorWarning: string;
660
+ borderWarning: string;
661
+ borderHoverWarning: string;
662
+ colorFocusWarning: string;
663
+ borderFocusWarning: string;
664
+ boxShadowFocusWarning: string;
665
+ caretColorWarning: string;
666
+ loadingColorError: string;
667
+ borderError: string;
668
+ borderHoverError: string;
669
+ colorFocusError: string;
670
+ borderFocusError: string;
671
+ boxShadowFocusError: string;
672
+ caretColorError: string;
673
+ clearColor: string;
674
+ clearColorHover: string;
675
+ clearColorPressed: string;
676
+ iconColor: string;
677
+ iconColorDisabled: string;
678
+ iconColorHover: string;
679
+ iconColorPressed: string;
680
+ suffixTextColor: string;
681
+ paddingTiny: string;
682
+ paddingSmall: string;
683
+ paddingMedium: string;
684
+ paddingLarge: string;
685
+ clearSize: string;
686
+ }, any>>;
687
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
688
+ fontWeight: string;
689
+ countTextColorDisabled: string;
690
+ countTextColor: string;
691
+ heightTiny: string;
692
+ heightSmall: string;
693
+ heightMedium: string;
694
+ heightLarge: string;
695
+ fontSizeTiny: string;
696
+ fontSizeSmall: string;
697
+ fontSizeMedium: string;
698
+ fontSizeLarge: string;
699
+ lineHeight: string;
700
+ lineHeightTextarea: string;
701
+ borderRadius: string;
702
+ iconSize: string;
703
+ groupLabelColor: string;
704
+ groupLabelTextColor: string;
705
+ textColor: string;
706
+ textColorDisabled: string;
707
+ textDecorationColor: string;
708
+ caretColor: string;
709
+ placeholderColor: string;
710
+ placeholderColorDisabled: string;
711
+ color: string;
712
+ colorDisabled: string;
713
+ colorFocus: string;
714
+ groupLabelBorder: string;
715
+ border: string;
716
+ borderHover: string;
717
+ borderDisabled: string;
718
+ borderFocus: string;
719
+ boxShadowFocus: string;
720
+ loadingColor: string;
721
+ loadingColorWarning: string;
722
+ borderWarning: string;
723
+ borderHoverWarning: string;
724
+ colorFocusWarning: string;
725
+ borderFocusWarning: string;
726
+ boxShadowFocusWarning: string;
727
+ caretColorWarning: string;
728
+ loadingColorError: string;
729
+ borderError: string;
730
+ borderHoverError: string;
731
+ colorFocusError: string;
732
+ borderFocusError: string;
733
+ boxShadowFocusError: string;
734
+ caretColorError: string;
735
+ clearColor: string;
736
+ clearColorHover: string;
737
+ clearColorPressed: string;
738
+ iconColor: string;
739
+ iconColorDisabled: string;
740
+ iconColorHover: string;
741
+ iconColorPressed: string;
742
+ suffixTextColor: string;
743
+ paddingTiny: string;
744
+ paddingSmall: string;
745
+ paddingMedium: string;
746
+ paddingLarge: string;
747
+ clearSize: string;
748
+ }, any>>>;
749
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
750
+ fontWeight: string;
751
+ countTextColorDisabled: string;
752
+ countTextColor: string;
753
+ heightTiny: string;
754
+ heightSmall: string;
755
+ heightMedium: string;
756
+ heightLarge: string;
757
+ fontSizeTiny: string;
758
+ fontSizeSmall: string;
759
+ fontSizeMedium: string;
760
+ fontSizeLarge: string;
761
+ lineHeight: string;
762
+ lineHeightTextarea: string;
763
+ borderRadius: string;
764
+ iconSize: string;
765
+ groupLabelColor: string;
766
+ groupLabelTextColor: string;
767
+ textColor: string;
768
+ textColorDisabled: string;
769
+ textDecorationColor: string;
770
+ caretColor: string;
771
+ placeholderColor: string;
772
+ placeholderColorDisabled: string;
773
+ color: string;
774
+ colorDisabled: string;
775
+ colorFocus: string;
776
+ groupLabelBorder: string;
777
+ border: string;
778
+ borderHover: string;
779
+ borderDisabled: string;
780
+ borderFocus: string;
781
+ boxShadowFocus: string;
782
+ loadingColor: string;
783
+ loadingColorWarning: string;
784
+ borderWarning: string;
785
+ borderHoverWarning: string;
786
+ colorFocusWarning: string;
787
+ borderFocusWarning: string;
788
+ boxShadowFocusWarning: string;
789
+ caretColorWarning: string;
790
+ loadingColorError: string;
791
+ borderError: string;
792
+ borderHoverError: string;
793
+ colorFocusError: string;
794
+ borderFocusError: string;
795
+ boxShadowFocusError: string;
796
+ caretColorError: string;
797
+ clearColor: string;
798
+ clearColorHover: string;
799
+ clearColorPressed: string;
800
+ iconColor: string;
801
+ iconColorDisabled: string;
802
+ iconColorHover: string;
803
+ iconColorPressed: string;
804
+ suffixTextColor: string;
805
+ paddingTiny: string;
806
+ paddingSmall: string;
807
+ paddingMedium: string;
808
+ paddingLarge: string;
809
+ clearSize: string;
810
+ }, any>>>;
811
+ }>> & Readonly<{}>, {
812
+ wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
813
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
814
+ inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
815
+ inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
816
+ textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
817
+ textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
818
+ textareaScrollbarInstRef: import('vue').Ref<{
819
+ $el: HTMLElement;
820
+ containerRef: HTMLElement | null;
821
+ contentRef: HTMLElement | null;
822
+ containerScrollTop: number;
823
+ syncUnifiedContainer: () => void;
824
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
825
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
826
+ sync: () => void;
827
+ handleMouseEnterWrapper: () => void;
828
+ handleMouseLeaveWrapper: () => void;
829
+ } | null, import('naive-ui/es/_internal').ScrollbarInst | {
830
+ $el: HTMLElement;
831
+ containerRef: HTMLElement | null;
832
+ contentRef: HTMLElement | null;
833
+ containerScrollTop: number;
834
+ syncUnifiedContainer: () => void;
835
+ scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
836
+ scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
837
+ sync: () => void;
838
+ handleMouseEnterWrapper: () => void;
839
+ handleMouseLeaveWrapper: () => void;
840
+ } | null>;
841
+ 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;
842
+ uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
843
+ mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
844
+ passwordVisible: import('vue').Ref<boolean, boolean>;
845
+ mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
846
+ showPlaceholder1: import('vue').ComputedRef<string | false>;
847
+ showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
848
+ mergedFocus: import('vue').ComputedRef<boolean>;
849
+ isComposing: import('vue').Ref<boolean, boolean>;
850
+ activated: import('vue').Ref<boolean, boolean>;
851
+ showClearButton: import('vue').ComputedRef<boolean>;
852
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
853
+ mergedDisabled: import('vue').ComputedRef<boolean>;
854
+ textDecorationStyle: import('vue').ComputedRef<string[] | {
855
+ textDecoration: string;
856
+ }[]>;
857
+ mergedClsPrefix: import('vue').Ref<string, string>;
858
+ mergedBordered: import('vue').ComputedRef<boolean>;
859
+ mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
860
+ placeholderStyle: import('vue').Ref<{
861
+ top: string;
862
+ }, {
863
+ top: string;
864
+ } | {
865
+ top: string;
866
+ }>;
867
+ mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
868
+ textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
869
+ handleTextAreaScroll: (e: Event) => void;
870
+ handleCompositionStart: () => void;
871
+ handleCompositionEnd: (e: CompositionEvent) => void;
872
+ handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
873
+ handleInputBlur: (e: FocusEvent) => void;
874
+ handleInputFocus: (e: FocusEvent, index: number) => void;
875
+ handleWrapperBlur: (e: FocusEvent) => void;
876
+ handleWrapperFocus: (e: FocusEvent) => void;
877
+ handleMouseEnter: () => void;
878
+ handleMouseLeave: () => void;
879
+ handleMouseDown: (e: MouseEvent) => void;
880
+ handleChange: (e: Event, index?: 0 | 1) => void;
881
+ handleClick: (e: MouseEvent) => void;
882
+ handleClear: (e: MouseEvent) => void;
883
+ handlePasswordToggleClick: () => void;
884
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
885
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
886
+ handleWrapperKeyup: (e: KeyboardEvent) => void;
887
+ handleTextAreaMirrorResize: () => void;
888
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
889
+ mergedTheme: import('vue').ComputedRef<{
890
+ common: import('naive-ui').ThemeCommonVars;
891
+ self: {
892
+ fontWeight: string;
893
+ countTextColorDisabled: string;
894
+ countTextColor: string;
895
+ heightTiny: string;
896
+ heightSmall: string;
897
+ heightMedium: string;
898
+ heightLarge: string;
899
+ fontSizeTiny: string;
900
+ fontSizeSmall: string;
901
+ fontSizeMedium: string;
902
+ fontSizeLarge: string;
903
+ lineHeight: string;
904
+ lineHeightTextarea: string;
905
+ borderRadius: string;
906
+ iconSize: string;
907
+ groupLabelColor: string;
908
+ groupLabelTextColor: string;
909
+ textColor: string;
910
+ textColorDisabled: string;
911
+ textDecorationColor: string;
912
+ caretColor: string;
913
+ placeholderColor: string;
914
+ placeholderColorDisabled: string;
915
+ color: string;
916
+ colorDisabled: string;
917
+ colorFocus: string;
918
+ groupLabelBorder: string;
919
+ border: string;
920
+ borderHover: string;
921
+ borderDisabled: string;
922
+ borderFocus: string;
923
+ boxShadowFocus: string;
924
+ loadingColor: string;
925
+ loadingColorWarning: string;
926
+ borderWarning: string;
927
+ borderHoverWarning: string;
928
+ colorFocusWarning: string;
929
+ borderFocusWarning: string;
930
+ boxShadowFocusWarning: string;
931
+ caretColorWarning: string;
932
+ loadingColorError: string;
933
+ borderError: string;
934
+ borderHoverError: string;
935
+ colorFocusError: string;
936
+ borderFocusError: string;
937
+ boxShadowFocusError: string;
938
+ caretColorError: string;
939
+ clearColor: string;
940
+ clearColorHover: string;
941
+ clearColorPressed: string;
942
+ iconColor: string;
943
+ iconColorDisabled: string;
944
+ iconColorHover: string;
945
+ iconColorPressed: string;
946
+ suffixTextColor: string;
947
+ paddingTiny: string;
948
+ paddingSmall: string;
949
+ paddingMedium: string;
950
+ paddingLarge: string;
951
+ clearSize: string;
952
+ };
953
+ peers: any;
954
+ peerOverrides: {
955
+ [x: string]: any;
956
+ };
957
+ }>;
958
+ cssVars: import('vue').ComputedRef<{
959
+ "--n-bezier": string;
960
+ "--n-count-text-color": string;
961
+ "--n-count-text-color-disabled": string;
962
+ "--n-color": string;
963
+ "--n-font-size": string;
964
+ "--n-font-weight": string;
965
+ "--n-border-radius": string;
966
+ "--n-height": string;
967
+ "--n-padding-left": string;
968
+ "--n-padding-right": string;
969
+ "--n-text-color": string;
970
+ "--n-caret-color": string;
971
+ "--n-text-decoration-color": string;
972
+ "--n-border": string;
973
+ "--n-border-disabled": string;
974
+ "--n-border-hover": string;
975
+ "--n-border-focus": string;
976
+ "--n-placeholder-color": string;
977
+ "--n-placeholder-color-disabled": string;
978
+ "--n-icon-size": string;
979
+ "--n-line-height-textarea": string;
980
+ "--n-color-disabled": string;
981
+ "--n-color-focus": string;
982
+ "--n-text-color-disabled": string;
983
+ "--n-box-shadow-focus": string;
984
+ "--n-loading-color": string;
985
+ "--n-caret-color-warning": string;
986
+ "--n-color-focus-warning": string;
987
+ "--n-box-shadow-focus-warning": string;
988
+ "--n-border-warning": string;
989
+ "--n-border-focus-warning": string;
990
+ "--n-border-hover-warning": string;
991
+ "--n-loading-color-warning": string;
992
+ "--n-caret-color-error": string;
993
+ "--n-color-focus-error": string;
994
+ "--n-box-shadow-focus-error": string;
995
+ "--n-border-error": string;
996
+ "--n-border-focus-error": string;
997
+ "--n-border-hover-error": string;
998
+ "--n-loading-color-error": string;
999
+ "--n-clear-color": string;
1000
+ "--n-clear-size": string;
1001
+ "--n-clear-color-hover": string;
1002
+ "--n-clear-color-pressed": string;
1003
+ "--n-icon-color": string;
1004
+ "--n-icon-color-hover": string;
1005
+ "--n-icon-color-pressed": string;
1006
+ "--n-icon-color-disabled": string;
1007
+ "--n-suffix-text-color": string;
1008
+ }> | undefined;
1009
+ themeClass: import('vue').Ref<string, string> | undefined;
1010
+ onRender: (() => void) | undefined;
1011
+ isCompositing: import('vue').Ref<boolean>;
1012
+ blur: () => void;
1013
+ clear: () => void;
1014
+ focus: () => void;
1015
+ select: () => void;
1016
+ activate: () => void;
1017
+ deactivate: () => void;
1018
+ scrollTo: (options: ScrollToOptions) => void;
1019
+ }, {}, {}, {}, {
1020
+ type: "textarea" | "text" | "password";
1021
+ readonly: string | boolean;
1022
+ disabled: boolean | undefined;
1023
+ round: boolean;
1024
+ autofocus: boolean;
1025
+ loading: boolean;
1026
+ autosize: boolean | {
1027
+ minRows?: number;
1028
+ maxRows?: number;
1029
+ };
1030
+ bordered: boolean | undefined;
1031
+ clearable: boolean;
1032
+ defaultValue: string | [string, string] | null;
1033
+ resizable: boolean;
1034
+ pair: boolean;
1035
+ rows: string | number;
1036
+ passivelyActivated: boolean;
1037
+ stateful: boolean;
1038
+ showCount: boolean;
1039
+ attrSize: number;
1040
+ internalDeactivateOnEnter: boolean;
1041
+ internalForceFocus: boolean;
1042
+ internalLoadingBeforeSuffix: boolean;
1043
+ showPasswordToggle: boolean;
1044
+ }> | null;
1045
+ }, HTMLDivElement>;
1046
+ export default _default;