@unizhen/ui 0.0.71 → 0.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1568 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin, PublicProps, HTMLAttributes, InputHTMLAttributes, ComputedRef, SlotsType, ComponentProvideOptions } from 'vue';
2
+ import { ObjectKey } from '../interface';
3
+ import { SelectMixedOption, Value, SelectFallbackOption, OnUpdateValue, SelectIgnoredOption, SelectBaseOption, ValueAtom } from 'naive-ui/es/select/src/interface';
4
+ import { SelectSize, SelectFilter, PopoverPlacement, SelectOption, PopoverProps, SelectRenderTag, SelectNodeProps, FormValidationStatus, SelectGroupOption, ThemeCommonVars, SelectSlots } from 'naive-ui';
5
+ import { RenderLabel, RenderOption } from 'naive-ui/es/_internal/select-menu/src/interface';
6
+ import { MaybeArray } from 'naive-ui/es/_utils';
7
+ import { ScrollbarProps, InternalSelectionInst } from 'naive-ui/es/_internal';
8
+ import { Theme } from 'naive-ui/es/_mixins';
9
+ import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
10
+ import { TreeMate, TreeNode } from 'treemate';
11
+ import { FollowerInst } from 'vueuc';
12
+ declare const _default: DefineComponent<ExtractPropTypes<{
13
+ value: {
14
+ required: true;
15
+ type: PropType<string>;
16
+ default: () => string;
17
+ };
18
+ disabled: {
19
+ type: PropType<boolean>;
20
+ default: boolean;
21
+ };
22
+ show: {
23
+ type: PropType<boolean>;
24
+ default: boolean;
25
+ };
26
+ }>, {
27
+ times: Ref<ObjectKey[], ObjectKey[]>;
28
+ h: Ref<string, string>;
29
+ m: Ref<string, string>;
30
+ s: Ref<string, string>;
31
+ changeH: (value: string) => void;
32
+ changeM: (value: string) => void;
33
+ changeS: (value: string) => void;
34
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "on-update:value"[], "on-update:value", PublicProps, Readonly< ExtractPropTypes<{
35
+ value: {
36
+ required: true;
37
+ type: PropType<string>;
38
+ default: () => string;
39
+ };
40
+ disabled: {
41
+ type: PropType<boolean>;
42
+ default: boolean;
43
+ };
44
+ show: {
45
+ type: PropType<boolean>;
46
+ default: boolean;
47
+ };
48
+ }>> & Readonly<{
49
+ "onOn-update:value"?: ((...args: any[]) => any) | undefined;
50
+ }>, {
51
+ disabled: boolean;
52
+ show: boolean;
53
+ value: string;
54
+ }, {}, {
55
+ NSelect: DefineComponent<ExtractPropTypes<{
56
+ readonly to: {
57
+ type: PropType<HTMLElement | string | boolean>;
58
+ default: undefined;
59
+ };
60
+ readonly bordered: {
61
+ readonly type: PropType<boolean | undefined>;
62
+ readonly default: undefined;
63
+ };
64
+ readonly clearable: BooleanConstructor;
65
+ readonly clearCreatedOptionsOnClear: {
66
+ readonly type: BooleanConstructor;
67
+ readonly default: true;
68
+ };
69
+ readonly clearFilterAfterSelect: {
70
+ readonly type: BooleanConstructor;
71
+ readonly default: true;
72
+ };
73
+ readonly options: {
74
+ readonly type: PropType< SelectMixedOption[]>;
75
+ readonly default: () => never[];
76
+ };
77
+ readonly defaultValue: {
78
+ readonly type: PropType< Value | null>;
79
+ readonly default: null;
80
+ };
81
+ readonly keyboard: {
82
+ readonly type: BooleanConstructor;
83
+ readonly default: true;
84
+ };
85
+ readonly value: PropType< Value | null>;
86
+ readonly placeholder: StringConstructor;
87
+ readonly menuProps: PropType< HTMLAttributes>;
88
+ readonly multiple: BooleanConstructor;
89
+ readonly size: PropType< SelectSize>;
90
+ readonly menuSize: {
91
+ readonly type: PropType< SelectSize>;
92
+ };
93
+ readonly filterable: BooleanConstructor;
94
+ readonly disabled: {
95
+ readonly type: PropType<boolean | undefined>;
96
+ readonly default: undefined;
97
+ };
98
+ readonly remote: BooleanConstructor;
99
+ readonly loading: BooleanConstructor;
100
+ readonly filter: PropType< SelectFilter>;
101
+ readonly placement: {
102
+ readonly type: PropType< PopoverPlacement>;
103
+ readonly default: "bottom-start";
104
+ };
105
+ readonly widthMode: {
106
+ readonly type: StringConstructor;
107
+ readonly default: "trigger";
108
+ };
109
+ readonly tag: BooleanConstructor;
110
+ readonly onCreate: PropType<(label: string) => SelectOption>;
111
+ readonly fallbackOption: {
112
+ readonly type: PropType< SelectFallbackOption | false | undefined>;
113
+ readonly default: undefined;
114
+ };
115
+ readonly show: {
116
+ readonly type: PropType<boolean | undefined>;
117
+ readonly default: undefined;
118
+ };
119
+ readonly showArrow: {
120
+ readonly type: BooleanConstructor;
121
+ readonly default: true;
122
+ };
123
+ readonly maxTagCount: PropType<number | "responsive">;
124
+ readonly ellipsisTagPopoverProps: PropType< PopoverProps>;
125
+ readonly consistentMenuWidth: {
126
+ readonly type: BooleanConstructor;
127
+ readonly default: true;
128
+ };
129
+ readonly virtualScroll: {
130
+ readonly type: BooleanConstructor;
131
+ readonly default: true;
132
+ };
133
+ readonly labelField: {
134
+ readonly type: StringConstructor;
135
+ readonly default: "label";
136
+ };
137
+ readonly valueField: {
138
+ readonly type: StringConstructor;
139
+ readonly default: "value";
140
+ };
141
+ readonly childrenField: {
142
+ readonly type: StringConstructor;
143
+ readonly default: "children";
144
+ };
145
+ readonly renderLabel: PropType< RenderLabel>;
146
+ readonly renderOption: PropType< RenderOption>;
147
+ readonly renderTag: PropType< SelectRenderTag>;
148
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue> | undefined>;
149
+ readonly inputProps: PropType< InputHTMLAttributes>;
150
+ readonly nodeProps: PropType< SelectNodeProps>;
151
+ readonly ignoreComposition: {
152
+ readonly type: BooleanConstructor;
153
+ readonly default: true;
154
+ };
155
+ readonly showOnFocus: BooleanConstructor;
156
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue> | undefined>;
157
+ readonly onBlur: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
158
+ readonly onClear: PropType< MaybeArray<() => void> | undefined>;
159
+ readonly onFocus: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
160
+ readonly onScroll: PropType< MaybeArray<(e: Event) => void> | undefined>;
161
+ readonly onSearch: PropType< MaybeArray<(value: string) => void> | undefined>;
162
+ readonly onUpdateShow: PropType< MaybeArray<(value: boolean) => void>>;
163
+ readonly 'onUpdate:show': PropType< MaybeArray<(value: boolean) => void>>;
164
+ readonly displayDirective: {
165
+ readonly type: PropType<"if" | "show">;
166
+ readonly default: "show";
167
+ };
168
+ readonly resetMenuOnOptionsChange: {
169
+ readonly type: BooleanConstructor;
170
+ readonly default: true;
171
+ };
172
+ readonly status: PropType< FormValidationStatus>;
173
+ readonly showCheckmark: {
174
+ readonly type: BooleanConstructor;
175
+ readonly default: true;
176
+ };
177
+ readonly scrollbarProps: PropType< ScrollbarProps>;
178
+ readonly onChange: PropType< MaybeArray<OnUpdateValue>>;
179
+ readonly items: PropType< SelectMixedOption[]>;
180
+ readonly theme: PropType< Theme<"Select", {
181
+ menuBoxShadow: string;
182
+ }, {
183
+ InternalSelection: Theme<"InternalSelection", {
184
+ fontSizeTiny: string;
185
+ fontSizeSmall: string;
186
+ fontSizeMedium: string;
187
+ fontSizeLarge: string;
188
+ heightTiny: string;
189
+ heightSmall: string;
190
+ heightMedium: string;
191
+ heightLarge: string;
192
+ borderRadius: string;
193
+ fontWeight: string;
194
+ textColor: string;
195
+ textColorDisabled: string;
196
+ placeholderColor: string;
197
+ placeholderColorDisabled: string;
198
+ color: string;
199
+ colorDisabled: string;
200
+ colorActive: string;
201
+ border: string;
202
+ borderHover: string;
203
+ borderActive: string;
204
+ borderFocus: string;
205
+ boxShadowHover: string;
206
+ boxShadowActive: string;
207
+ boxShadowFocus: string;
208
+ caretColor: string;
209
+ arrowColor: string;
210
+ arrowColorDisabled: string;
211
+ loadingColor: string;
212
+ borderWarning: string;
213
+ borderHoverWarning: string;
214
+ borderActiveWarning: string;
215
+ borderFocusWarning: string;
216
+ boxShadowHoverWarning: string;
217
+ boxShadowActiveWarning: string;
218
+ boxShadowFocusWarning: string;
219
+ colorActiveWarning: string;
220
+ caretColorWarning: string;
221
+ borderError: string;
222
+ borderHoverError: string;
223
+ borderActiveError: string;
224
+ borderFocusError: string;
225
+ boxShadowHoverError: string;
226
+ boxShadowActiveError: string;
227
+ boxShadowFocusError: string;
228
+ colorActiveError: string;
229
+ caretColorError: string;
230
+ clearColor: string;
231
+ clearColorHover: string;
232
+ clearColorPressed: string;
233
+ paddingSingle: string;
234
+ paddingMultiple: string;
235
+ clearSize: string;
236
+ arrowSize: string;
237
+ }, {
238
+ Popover: Theme<"Popover", {
239
+ fontSize: string;
240
+ borderRadius: string;
241
+ color: string;
242
+ dividerColor: string;
243
+ textColor: string;
244
+ boxShadow: string;
245
+ space: string;
246
+ spaceArrow: string;
247
+ arrowOffset: string;
248
+ arrowOffsetVertical: string;
249
+ arrowHeight: string;
250
+ padding: string;
251
+ }, {
252
+ Scrollbar: Theme<"Scrollbar", {
253
+ height: string;
254
+ width: string;
255
+ borderRadius: string;
256
+ color: string;
257
+ colorHover: string;
258
+ railInsetHorizontalBottom: string;
259
+ railInsetHorizontalTop: string;
260
+ railInsetVerticalRight: string;
261
+ railInsetVerticalLeft: string;
262
+ railColor: string;
263
+ }, any>;
264
+ }>;
265
+ }>;
266
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
267
+ optionFontSizeTiny: string;
268
+ optionFontSizeSmall: string;
269
+ optionFontSizeMedium: string;
270
+ optionFontSizeLarge: string;
271
+ optionFontSizeHuge: string;
272
+ optionHeightTiny: string;
273
+ optionHeightSmall: string;
274
+ optionHeightMedium: string;
275
+ optionHeightLarge: string;
276
+ optionHeightHuge: string;
277
+ borderRadius: string;
278
+ color: string;
279
+ groupHeaderTextColor: string;
280
+ actionDividerColor: string;
281
+ optionTextColor: string;
282
+ optionTextColorPressed: string;
283
+ optionTextColorDisabled: string;
284
+ optionTextColorActive: string;
285
+ optionOpacityDisabled: string;
286
+ optionCheckColor: string;
287
+ optionColorPending: string;
288
+ optionColorActive: string;
289
+ optionColorActivePending: string;
290
+ actionTextColor: string;
291
+ loadingColor: string;
292
+ height: string;
293
+ paddingTiny: string;
294
+ paddingSmall: string;
295
+ paddingMedium: string;
296
+ paddingLarge: string;
297
+ paddingHuge: string;
298
+ optionPaddingTiny: string;
299
+ optionPaddingSmall: string;
300
+ optionPaddingMedium: string;
301
+ optionPaddingLarge: string;
302
+ optionPaddingHuge: string;
303
+ loadingSize: string;
304
+ }, {
305
+ Scrollbar: Theme<"Scrollbar", {
306
+ height: string;
307
+ width: string;
308
+ borderRadius: string;
309
+ color: string;
310
+ colorHover: string;
311
+ railInsetHorizontalBottom: string;
312
+ railInsetHorizontalTop: string;
313
+ railInsetVerticalRight: string;
314
+ railInsetVerticalLeft: string;
315
+ railColor: string;
316
+ }, any>;
317
+ Empty: Theme<"Empty", {
318
+ fontSizeTiny: string;
319
+ fontSizeSmall: string;
320
+ fontSizeMedium: string;
321
+ fontSizeLarge: string;
322
+ fontSizeHuge: string;
323
+ textColor: string;
324
+ iconColor: string;
325
+ extraTextColor: string;
326
+ iconSizeTiny: string;
327
+ iconSizeSmall: string;
328
+ iconSizeMedium: string;
329
+ iconSizeLarge: string;
330
+ iconSizeHuge: string;
331
+ }, any>;
332
+ }>;
333
+ }>>;
334
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
335
+ menuBoxShadow: string;
336
+ }, {
337
+ InternalSelection: Theme<"InternalSelection", {
338
+ fontSizeTiny: string;
339
+ fontSizeSmall: string;
340
+ fontSizeMedium: string;
341
+ fontSizeLarge: string;
342
+ heightTiny: string;
343
+ heightSmall: string;
344
+ heightMedium: string;
345
+ heightLarge: string;
346
+ borderRadius: string;
347
+ fontWeight: string;
348
+ textColor: string;
349
+ textColorDisabled: string;
350
+ placeholderColor: string;
351
+ placeholderColorDisabled: string;
352
+ color: string;
353
+ colorDisabled: string;
354
+ colorActive: string;
355
+ border: string;
356
+ borderHover: string;
357
+ borderActive: string;
358
+ borderFocus: string;
359
+ boxShadowHover: string;
360
+ boxShadowActive: string;
361
+ boxShadowFocus: string;
362
+ caretColor: string;
363
+ arrowColor: string;
364
+ arrowColorDisabled: string;
365
+ loadingColor: string;
366
+ borderWarning: string;
367
+ borderHoverWarning: string;
368
+ borderActiveWarning: string;
369
+ borderFocusWarning: string;
370
+ boxShadowHoverWarning: string;
371
+ boxShadowActiveWarning: string;
372
+ boxShadowFocusWarning: string;
373
+ colorActiveWarning: string;
374
+ caretColorWarning: string;
375
+ borderError: string;
376
+ borderHoverError: string;
377
+ borderActiveError: string;
378
+ borderFocusError: string;
379
+ boxShadowHoverError: string;
380
+ boxShadowActiveError: string;
381
+ boxShadowFocusError: string;
382
+ colorActiveError: string;
383
+ caretColorError: string;
384
+ clearColor: string;
385
+ clearColorHover: string;
386
+ clearColorPressed: string;
387
+ paddingSingle: string;
388
+ paddingMultiple: string;
389
+ clearSize: string;
390
+ arrowSize: string;
391
+ }, {
392
+ Popover: Theme<"Popover", {
393
+ fontSize: string;
394
+ borderRadius: string;
395
+ color: string;
396
+ dividerColor: string;
397
+ textColor: string;
398
+ boxShadow: string;
399
+ space: string;
400
+ spaceArrow: string;
401
+ arrowOffset: string;
402
+ arrowOffsetVertical: string;
403
+ arrowHeight: string;
404
+ padding: string;
405
+ }, {
406
+ Scrollbar: Theme<"Scrollbar", {
407
+ height: string;
408
+ width: string;
409
+ borderRadius: string;
410
+ color: string;
411
+ colorHover: string;
412
+ railInsetHorizontalBottom: string;
413
+ railInsetHorizontalTop: string;
414
+ railInsetVerticalRight: string;
415
+ railInsetVerticalLeft: string;
416
+ railColor: string;
417
+ }, any>;
418
+ }>;
419
+ }>;
420
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
421
+ optionFontSizeTiny: string;
422
+ optionFontSizeSmall: string;
423
+ optionFontSizeMedium: string;
424
+ optionFontSizeLarge: string;
425
+ optionFontSizeHuge: string;
426
+ optionHeightTiny: string;
427
+ optionHeightSmall: string;
428
+ optionHeightMedium: string;
429
+ optionHeightLarge: string;
430
+ optionHeightHuge: string;
431
+ borderRadius: string;
432
+ color: string;
433
+ groupHeaderTextColor: string;
434
+ actionDividerColor: string;
435
+ optionTextColor: string;
436
+ optionTextColorPressed: string;
437
+ optionTextColorDisabled: string;
438
+ optionTextColorActive: string;
439
+ optionOpacityDisabled: string;
440
+ optionCheckColor: string;
441
+ optionColorPending: string;
442
+ optionColorActive: string;
443
+ optionColorActivePending: string;
444
+ actionTextColor: string;
445
+ loadingColor: string;
446
+ height: string;
447
+ paddingTiny: string;
448
+ paddingSmall: string;
449
+ paddingMedium: string;
450
+ paddingLarge: string;
451
+ paddingHuge: string;
452
+ optionPaddingTiny: string;
453
+ optionPaddingSmall: string;
454
+ optionPaddingMedium: string;
455
+ optionPaddingLarge: string;
456
+ optionPaddingHuge: string;
457
+ loadingSize: string;
458
+ }, {
459
+ Scrollbar: Theme<"Scrollbar", {
460
+ height: string;
461
+ width: string;
462
+ borderRadius: string;
463
+ color: string;
464
+ colorHover: string;
465
+ railInsetHorizontalBottom: string;
466
+ railInsetHorizontalTop: string;
467
+ railInsetVerticalRight: string;
468
+ railInsetVerticalLeft: string;
469
+ railColor: string;
470
+ }, any>;
471
+ Empty: Theme<"Empty", {
472
+ fontSizeTiny: string;
473
+ fontSizeSmall: string;
474
+ fontSizeMedium: string;
475
+ fontSizeLarge: string;
476
+ fontSizeHuge: string;
477
+ textColor: string;
478
+ iconColor: string;
479
+ extraTextColor: string;
480
+ iconSizeTiny: string;
481
+ iconSizeSmall: string;
482
+ iconSizeMedium: string;
483
+ iconSizeLarge: string;
484
+ iconSizeHuge: string;
485
+ }, any>;
486
+ }>;
487
+ }>>>;
488
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
489
+ menuBoxShadow: string;
490
+ }, {
491
+ InternalSelection: Theme<"InternalSelection", {
492
+ fontSizeTiny: string;
493
+ fontSizeSmall: string;
494
+ fontSizeMedium: string;
495
+ fontSizeLarge: string;
496
+ heightTiny: string;
497
+ heightSmall: string;
498
+ heightMedium: string;
499
+ heightLarge: string;
500
+ borderRadius: string;
501
+ fontWeight: string;
502
+ textColor: string;
503
+ textColorDisabled: string;
504
+ placeholderColor: string;
505
+ placeholderColorDisabled: string;
506
+ color: string;
507
+ colorDisabled: string;
508
+ colorActive: string;
509
+ border: string;
510
+ borderHover: string;
511
+ borderActive: string;
512
+ borderFocus: string;
513
+ boxShadowHover: string;
514
+ boxShadowActive: string;
515
+ boxShadowFocus: string;
516
+ caretColor: string;
517
+ arrowColor: string;
518
+ arrowColorDisabled: string;
519
+ loadingColor: string;
520
+ borderWarning: string;
521
+ borderHoverWarning: string;
522
+ borderActiveWarning: string;
523
+ borderFocusWarning: string;
524
+ boxShadowHoverWarning: string;
525
+ boxShadowActiveWarning: string;
526
+ boxShadowFocusWarning: string;
527
+ colorActiveWarning: string;
528
+ caretColorWarning: string;
529
+ borderError: string;
530
+ borderHoverError: string;
531
+ borderActiveError: string;
532
+ borderFocusError: string;
533
+ boxShadowHoverError: string;
534
+ boxShadowActiveError: string;
535
+ boxShadowFocusError: string;
536
+ colorActiveError: string;
537
+ caretColorError: string;
538
+ clearColor: string;
539
+ clearColorHover: string;
540
+ clearColorPressed: string;
541
+ paddingSingle: string;
542
+ paddingMultiple: string;
543
+ clearSize: string;
544
+ arrowSize: string;
545
+ }, {
546
+ Popover: Theme<"Popover", {
547
+ fontSize: string;
548
+ borderRadius: string;
549
+ color: string;
550
+ dividerColor: string;
551
+ textColor: string;
552
+ boxShadow: string;
553
+ space: string;
554
+ spaceArrow: string;
555
+ arrowOffset: string;
556
+ arrowOffsetVertical: string;
557
+ arrowHeight: string;
558
+ padding: string;
559
+ }, {
560
+ Scrollbar: Theme<"Scrollbar", {
561
+ height: string;
562
+ width: string;
563
+ borderRadius: string;
564
+ color: string;
565
+ colorHover: string;
566
+ railInsetHorizontalBottom: string;
567
+ railInsetHorizontalTop: string;
568
+ railInsetVerticalRight: string;
569
+ railInsetVerticalLeft: string;
570
+ railColor: string;
571
+ }, any>;
572
+ }>;
573
+ }>;
574
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
575
+ optionFontSizeTiny: string;
576
+ optionFontSizeSmall: string;
577
+ optionFontSizeMedium: string;
578
+ optionFontSizeLarge: string;
579
+ optionFontSizeHuge: string;
580
+ optionHeightTiny: string;
581
+ optionHeightSmall: string;
582
+ optionHeightMedium: string;
583
+ optionHeightLarge: string;
584
+ optionHeightHuge: string;
585
+ borderRadius: string;
586
+ color: string;
587
+ groupHeaderTextColor: string;
588
+ actionDividerColor: string;
589
+ optionTextColor: string;
590
+ optionTextColorPressed: string;
591
+ optionTextColorDisabled: string;
592
+ optionTextColorActive: string;
593
+ optionOpacityDisabled: string;
594
+ optionCheckColor: string;
595
+ optionColorPending: string;
596
+ optionColorActive: string;
597
+ optionColorActivePending: string;
598
+ actionTextColor: string;
599
+ loadingColor: string;
600
+ height: string;
601
+ paddingTiny: string;
602
+ paddingSmall: string;
603
+ paddingMedium: string;
604
+ paddingLarge: string;
605
+ paddingHuge: string;
606
+ optionPaddingTiny: string;
607
+ optionPaddingSmall: string;
608
+ optionPaddingMedium: string;
609
+ optionPaddingLarge: string;
610
+ optionPaddingHuge: string;
611
+ loadingSize: string;
612
+ }, {
613
+ Scrollbar: Theme<"Scrollbar", {
614
+ height: string;
615
+ width: string;
616
+ borderRadius: string;
617
+ color: string;
618
+ colorHover: string;
619
+ railInsetHorizontalBottom: string;
620
+ railInsetHorizontalTop: string;
621
+ railInsetVerticalRight: string;
622
+ railInsetVerticalLeft: string;
623
+ railColor: string;
624
+ }, any>;
625
+ Empty: Theme<"Empty", {
626
+ fontSizeTiny: string;
627
+ fontSizeSmall: string;
628
+ fontSizeMedium: string;
629
+ fontSizeLarge: string;
630
+ fontSizeHuge: string;
631
+ textColor: string;
632
+ iconColor: string;
633
+ extraTextColor: string;
634
+ iconSizeTiny: string;
635
+ iconSizeSmall: string;
636
+ iconSizeMedium: string;
637
+ iconSizeLarge: string;
638
+ iconSizeHuge: string;
639
+ }, any>;
640
+ }>;
641
+ }>>>;
642
+ }>, {
643
+ mergedStatus: ComputedRef< FormValidationStatus | undefined>;
644
+ mergedClsPrefix: Ref<string, string>;
645
+ mergedBordered: ComputedRef<boolean>;
646
+ namespace: ComputedRef<string | undefined>;
647
+ treeMate: ComputedRef<TreeMate<SelectOption, SelectGroupOption, SelectIgnoredOption>>;
648
+ isMounted: Readonly< Ref<boolean, boolean>>;
649
+ triggerRef: Ref<{
650
+ isComposing: boolean;
651
+ focus: () => void;
652
+ focusInput: () => void;
653
+ blur: () => void;
654
+ blurInput: () => void;
655
+ $el: HTMLElement;
656
+ } | null, InternalSelectionInst | {
657
+ isComposing: boolean;
658
+ focus: () => void;
659
+ focusInput: () => void;
660
+ blur: () => void;
661
+ blurInput: () => void;
662
+ $el: HTMLElement;
663
+ } | null>;
664
+ menuRef: Ref<{
665
+ selfRef: HTMLElement | null;
666
+ getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
667
+ prev: () => void;
668
+ next: () => void;
669
+ } | null, {
670
+ selfRef: HTMLElement | null;
671
+ getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
672
+ prev: () => void;
673
+ next: () => void;
674
+ } | {
675
+ selfRef: HTMLElement | null;
676
+ getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
677
+ prev: () => void;
678
+ next: () => void;
679
+ } | null>;
680
+ pattern: Ref<string, string>;
681
+ uncontrolledShow: Ref<boolean, boolean>;
682
+ mergedShow: ComputedRef<boolean>;
683
+ adjustedTo: ComputedRef<string | HTMLElement>;
684
+ uncontrolledValue: Ref< ValueAtom | string[] | number[] | ValueAtom[] | null, string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
685
+ mergedValue: ComputedRef<string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
686
+ followerRef: Ref<{
687
+ syncPosition: () => void;
688
+ } | null, FollowerInst | {
689
+ syncPosition: () => void;
690
+ } | null>;
691
+ localizedPlaceholder: ComputedRef<string>;
692
+ selectedOption: ComputedRef< SelectOption | null>;
693
+ selectedOptions: ComputedRef< SelectOption[] | null>;
694
+ mergedSize: ComputedRef<SelectSize>;
695
+ mergedDisabled: ComputedRef<boolean>;
696
+ focused: Ref<boolean, boolean>;
697
+ activeWithoutMenuOpen: Ref<boolean, boolean>;
698
+ inlineThemeDisabled: boolean | undefined;
699
+ onTriggerInputFocus: () => void;
700
+ onTriggerInputBlur: () => void;
701
+ handleTriggerOrMenuResize: () => void;
702
+ handleMenuFocus: () => void;
703
+ handleMenuBlur: (e: FocusEvent) => void;
704
+ handleMenuTabOut: () => void;
705
+ handleTriggerClick: () => void;
706
+ handleToggle: (tmNode: TreeNode<SelectOption>) => void;
707
+ handleDeleteOption: (option: SelectOption) => void;
708
+ handlePatternInput: (e: InputEvent) => void;
709
+ handleClear: (e: MouseEvent) => void;
710
+ handleTriggerBlur: (e: FocusEvent) => void;
711
+ handleTriggerFocus: (e: FocusEvent) => void;
712
+ handleKeydown: (e: KeyboardEvent) => void;
713
+ handleMenuAfterLeave: () => void;
714
+ handleMenuClickOutside: (e: MouseEvent) => void;
715
+ handleMenuScroll: (e: Event) => void;
716
+ handleMenuKeydown: (e: KeyboardEvent) => void;
717
+ handleMenuMousedown: (e: MouseEvent) => void;
718
+ mergedTheme: ComputedRef<{
719
+ common: ThemeCommonVars;
720
+ self: {
721
+ menuBoxShadow: string;
722
+ };
723
+ peers: {
724
+ InternalSelection: Theme<"InternalSelection", {
725
+ fontSizeTiny: string;
726
+ fontSizeSmall: string;
727
+ fontSizeMedium: string;
728
+ fontSizeLarge: string;
729
+ heightTiny: string;
730
+ heightSmall: string;
731
+ heightMedium: string;
732
+ heightLarge: string;
733
+ borderRadius: string;
734
+ fontWeight: string;
735
+ textColor: string;
736
+ textColorDisabled: string;
737
+ placeholderColor: string;
738
+ placeholderColorDisabled: string;
739
+ color: string;
740
+ colorDisabled: string;
741
+ colorActive: string;
742
+ border: string;
743
+ borderHover: string;
744
+ borderActive: string;
745
+ borderFocus: string;
746
+ boxShadowHover: string;
747
+ boxShadowActive: string;
748
+ boxShadowFocus: string;
749
+ caretColor: string;
750
+ arrowColor: string;
751
+ arrowColorDisabled: string;
752
+ loadingColor: string;
753
+ borderWarning: string;
754
+ borderHoverWarning: string;
755
+ borderActiveWarning: string;
756
+ borderFocusWarning: string;
757
+ boxShadowHoverWarning: string;
758
+ boxShadowActiveWarning: string;
759
+ boxShadowFocusWarning: string;
760
+ colorActiveWarning: string;
761
+ caretColorWarning: string;
762
+ borderError: string;
763
+ borderHoverError: string;
764
+ borderActiveError: string;
765
+ borderFocusError: string;
766
+ boxShadowHoverError: string;
767
+ boxShadowActiveError: string;
768
+ boxShadowFocusError: string;
769
+ colorActiveError: string;
770
+ caretColorError: string;
771
+ clearColor: string;
772
+ clearColorHover: string;
773
+ clearColorPressed: string;
774
+ paddingSingle: string;
775
+ paddingMultiple: string;
776
+ clearSize: string;
777
+ arrowSize: string;
778
+ }, {
779
+ Popover: Theme<"Popover", {
780
+ fontSize: string;
781
+ borderRadius: string;
782
+ color: string;
783
+ dividerColor: string;
784
+ textColor: string;
785
+ boxShadow: string;
786
+ space: string;
787
+ spaceArrow: string;
788
+ arrowOffset: string;
789
+ arrowOffsetVertical: string;
790
+ arrowHeight: string;
791
+ padding: string;
792
+ }, {
793
+ Scrollbar: Theme<"Scrollbar", {
794
+ height: string;
795
+ width: string;
796
+ borderRadius: string;
797
+ color: string;
798
+ colorHover: string;
799
+ railInsetHorizontalBottom: string;
800
+ railInsetHorizontalTop: string;
801
+ railInsetVerticalRight: string;
802
+ railInsetVerticalLeft: string;
803
+ railColor: string;
804
+ }, any>;
805
+ }>;
806
+ }>;
807
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
808
+ optionFontSizeTiny: string;
809
+ optionFontSizeSmall: string;
810
+ optionFontSizeMedium: string;
811
+ optionFontSizeLarge: string;
812
+ optionFontSizeHuge: string;
813
+ optionHeightTiny: string;
814
+ optionHeightSmall: string;
815
+ optionHeightMedium: string;
816
+ optionHeightLarge: string;
817
+ optionHeightHuge: string;
818
+ borderRadius: string;
819
+ color: string;
820
+ groupHeaderTextColor: string;
821
+ actionDividerColor: string;
822
+ optionTextColor: string;
823
+ optionTextColorPressed: string;
824
+ optionTextColorDisabled: string;
825
+ optionTextColorActive: string;
826
+ optionOpacityDisabled: string;
827
+ optionCheckColor: string;
828
+ optionColorPending: string;
829
+ optionColorActive: string;
830
+ optionColorActivePending: string;
831
+ actionTextColor: string;
832
+ loadingColor: string;
833
+ height: string;
834
+ paddingTiny: string;
835
+ paddingSmall: string;
836
+ paddingMedium: string;
837
+ paddingLarge: string;
838
+ paddingHuge: string;
839
+ optionPaddingTiny: string;
840
+ optionPaddingSmall: string;
841
+ optionPaddingMedium: string;
842
+ optionPaddingLarge: string;
843
+ optionPaddingHuge: string;
844
+ loadingSize: string;
845
+ }, {
846
+ Scrollbar: Theme<"Scrollbar", {
847
+ height: string;
848
+ width: string;
849
+ borderRadius: string;
850
+ color: string;
851
+ colorHover: string;
852
+ railInsetHorizontalBottom: string;
853
+ railInsetHorizontalTop: string;
854
+ railInsetVerticalRight: string;
855
+ railInsetVerticalLeft: string;
856
+ railColor: string;
857
+ }, any>;
858
+ Empty: Theme<"Empty", {
859
+ fontSizeTiny: string;
860
+ fontSizeSmall: string;
861
+ fontSizeMedium: string;
862
+ fontSizeLarge: string;
863
+ fontSizeHuge: string;
864
+ textColor: string;
865
+ iconColor: string;
866
+ extraTextColor: string;
867
+ iconSizeTiny: string;
868
+ iconSizeSmall: string;
869
+ iconSizeMedium: string;
870
+ iconSizeLarge: string;
871
+ iconSizeHuge: string;
872
+ }, any>;
873
+ }>;
874
+ };
875
+ peerOverrides: {
876
+ InternalSelection?: {
877
+ peers?: {
878
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
879
+ fontSize: string;
880
+ borderRadius: string;
881
+ color: string;
882
+ dividerColor: string;
883
+ textColor: string;
884
+ boxShadow: string;
885
+ space: string;
886
+ spaceArrow: string;
887
+ arrowOffset: string;
888
+ arrowOffsetVertical: string;
889
+ arrowHeight: string;
890
+ padding: string;
891
+ }, {
892
+ Scrollbar: Theme<"Scrollbar", {
893
+ height: string;
894
+ width: string;
895
+ borderRadius: string;
896
+ color: string;
897
+ colorHover: string;
898
+ railInsetHorizontalBottom: string;
899
+ railInsetHorizontalTop: string;
900
+ railInsetVerticalRight: string;
901
+ railInsetVerticalLeft: string;
902
+ railColor: string;
903
+ }, any>;
904
+ }>> | undefined;
905
+ } | undefined;
906
+ } | undefined;
907
+ InternalSelectMenu?: {
908
+ peers?: {
909
+ Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
910
+ height: string;
911
+ width: string;
912
+ borderRadius: string;
913
+ color: string;
914
+ colorHover: string;
915
+ railInsetHorizontalBottom: string;
916
+ railInsetHorizontalTop: string;
917
+ railInsetVerticalRight: string;
918
+ railInsetVerticalLeft: string;
919
+ railColor: string;
920
+ }, any>> | undefined;
921
+ Empty?: ExtractThemeOverrides<Theme<"Empty", {
922
+ fontSizeTiny: string;
923
+ fontSizeSmall: string;
924
+ fontSizeMedium: string;
925
+ fontSizeLarge: string;
926
+ fontSizeHuge: string;
927
+ textColor: string;
928
+ iconColor: string;
929
+ extraTextColor: string;
930
+ iconSizeTiny: string;
931
+ iconSizeSmall: string;
932
+ iconSizeMedium: string;
933
+ iconSizeLarge: string;
934
+ iconSizeHuge: string;
935
+ }, any>> | undefined;
936
+ } | undefined;
937
+ } | undefined;
938
+ };
939
+ }>;
940
+ cssVars: ComputedRef<{
941
+ "--n-menu-box-shadow": string;
942
+ }> | undefined;
943
+ themeClass: Ref<string, string> | undefined;
944
+ onRender: (() => void) | undefined;
945
+ focus: () => void;
946
+ blur: () => void;
947
+ focusInput: () => void;
948
+ blurInput: () => void;
949
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
950
+ readonly to: {
951
+ type: PropType<HTMLElement | string | boolean>;
952
+ default: undefined;
953
+ };
954
+ readonly bordered: {
955
+ readonly type: PropType<boolean | undefined>;
956
+ readonly default: undefined;
957
+ };
958
+ readonly clearable: BooleanConstructor;
959
+ readonly clearCreatedOptionsOnClear: {
960
+ readonly type: BooleanConstructor;
961
+ readonly default: true;
962
+ };
963
+ readonly clearFilterAfterSelect: {
964
+ readonly type: BooleanConstructor;
965
+ readonly default: true;
966
+ };
967
+ readonly options: {
968
+ readonly type: PropType< SelectMixedOption[]>;
969
+ readonly default: () => never[];
970
+ };
971
+ readonly defaultValue: {
972
+ readonly type: PropType< Value | null>;
973
+ readonly default: null;
974
+ };
975
+ readonly keyboard: {
976
+ readonly type: BooleanConstructor;
977
+ readonly default: true;
978
+ };
979
+ readonly value: PropType< Value | null>;
980
+ readonly placeholder: StringConstructor;
981
+ readonly menuProps: PropType< HTMLAttributes>;
982
+ readonly multiple: BooleanConstructor;
983
+ readonly size: PropType< SelectSize>;
984
+ readonly menuSize: {
985
+ readonly type: PropType< SelectSize>;
986
+ };
987
+ readonly filterable: BooleanConstructor;
988
+ readonly disabled: {
989
+ readonly type: PropType<boolean | undefined>;
990
+ readonly default: undefined;
991
+ };
992
+ readonly remote: BooleanConstructor;
993
+ readonly loading: BooleanConstructor;
994
+ readonly filter: PropType< SelectFilter>;
995
+ readonly placement: {
996
+ readonly type: PropType< PopoverPlacement>;
997
+ readonly default: "bottom-start";
998
+ };
999
+ readonly widthMode: {
1000
+ readonly type: StringConstructor;
1001
+ readonly default: "trigger";
1002
+ };
1003
+ readonly tag: BooleanConstructor;
1004
+ readonly onCreate: PropType<(label: string) => SelectOption>;
1005
+ readonly fallbackOption: {
1006
+ readonly type: PropType< SelectFallbackOption | false | undefined>;
1007
+ readonly default: undefined;
1008
+ };
1009
+ readonly show: {
1010
+ readonly type: PropType<boolean | undefined>;
1011
+ readonly default: undefined;
1012
+ };
1013
+ readonly showArrow: {
1014
+ readonly type: BooleanConstructor;
1015
+ readonly default: true;
1016
+ };
1017
+ readonly maxTagCount: PropType<number | "responsive">;
1018
+ readonly ellipsisTagPopoverProps: PropType< PopoverProps>;
1019
+ readonly consistentMenuWidth: {
1020
+ readonly type: BooleanConstructor;
1021
+ readonly default: true;
1022
+ };
1023
+ readonly virtualScroll: {
1024
+ readonly type: BooleanConstructor;
1025
+ readonly default: true;
1026
+ };
1027
+ readonly labelField: {
1028
+ readonly type: StringConstructor;
1029
+ readonly default: "label";
1030
+ };
1031
+ readonly valueField: {
1032
+ readonly type: StringConstructor;
1033
+ readonly default: "value";
1034
+ };
1035
+ readonly childrenField: {
1036
+ readonly type: StringConstructor;
1037
+ readonly default: "children";
1038
+ };
1039
+ readonly renderLabel: PropType< RenderLabel>;
1040
+ readonly renderOption: PropType< RenderOption>;
1041
+ readonly renderTag: PropType< SelectRenderTag>;
1042
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue> | undefined>;
1043
+ readonly inputProps: PropType< InputHTMLAttributes>;
1044
+ readonly nodeProps: PropType< SelectNodeProps>;
1045
+ readonly ignoreComposition: {
1046
+ readonly type: BooleanConstructor;
1047
+ readonly default: true;
1048
+ };
1049
+ readonly showOnFocus: BooleanConstructor;
1050
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue> | undefined>;
1051
+ readonly onBlur: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
1052
+ readonly onClear: PropType< MaybeArray<() => void> | undefined>;
1053
+ readonly onFocus: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
1054
+ readonly onScroll: PropType< MaybeArray<(e: Event) => void> | undefined>;
1055
+ readonly onSearch: PropType< MaybeArray<(value: string) => void> | undefined>;
1056
+ readonly onUpdateShow: PropType< MaybeArray<(value: boolean) => void>>;
1057
+ readonly 'onUpdate:show': PropType< MaybeArray<(value: boolean) => void>>;
1058
+ readonly displayDirective: {
1059
+ readonly type: PropType<"if" | "show">;
1060
+ readonly default: "show";
1061
+ };
1062
+ readonly resetMenuOnOptionsChange: {
1063
+ readonly type: BooleanConstructor;
1064
+ readonly default: true;
1065
+ };
1066
+ readonly status: PropType< FormValidationStatus>;
1067
+ readonly showCheckmark: {
1068
+ readonly type: BooleanConstructor;
1069
+ readonly default: true;
1070
+ };
1071
+ readonly scrollbarProps: PropType< ScrollbarProps>;
1072
+ readonly onChange: PropType< MaybeArray<OnUpdateValue>>;
1073
+ readonly items: PropType< SelectMixedOption[]>;
1074
+ readonly theme: PropType< Theme<"Select", {
1075
+ menuBoxShadow: string;
1076
+ }, {
1077
+ InternalSelection: Theme<"InternalSelection", {
1078
+ fontSizeTiny: string;
1079
+ fontSizeSmall: string;
1080
+ fontSizeMedium: string;
1081
+ fontSizeLarge: string;
1082
+ heightTiny: string;
1083
+ heightSmall: string;
1084
+ heightMedium: string;
1085
+ heightLarge: string;
1086
+ borderRadius: string;
1087
+ fontWeight: string;
1088
+ textColor: string;
1089
+ textColorDisabled: string;
1090
+ placeholderColor: string;
1091
+ placeholderColorDisabled: string;
1092
+ color: string;
1093
+ colorDisabled: string;
1094
+ colorActive: string;
1095
+ border: string;
1096
+ borderHover: string;
1097
+ borderActive: string;
1098
+ borderFocus: string;
1099
+ boxShadowHover: string;
1100
+ boxShadowActive: string;
1101
+ boxShadowFocus: string;
1102
+ caretColor: string;
1103
+ arrowColor: string;
1104
+ arrowColorDisabled: string;
1105
+ loadingColor: string;
1106
+ borderWarning: string;
1107
+ borderHoverWarning: string;
1108
+ borderActiveWarning: string;
1109
+ borderFocusWarning: string;
1110
+ boxShadowHoverWarning: string;
1111
+ boxShadowActiveWarning: string;
1112
+ boxShadowFocusWarning: string;
1113
+ colorActiveWarning: string;
1114
+ caretColorWarning: string;
1115
+ borderError: string;
1116
+ borderHoverError: string;
1117
+ borderActiveError: string;
1118
+ borderFocusError: string;
1119
+ boxShadowHoverError: string;
1120
+ boxShadowActiveError: string;
1121
+ boxShadowFocusError: string;
1122
+ colorActiveError: string;
1123
+ caretColorError: string;
1124
+ clearColor: string;
1125
+ clearColorHover: string;
1126
+ clearColorPressed: string;
1127
+ paddingSingle: string;
1128
+ paddingMultiple: string;
1129
+ clearSize: string;
1130
+ arrowSize: string;
1131
+ }, {
1132
+ Popover: Theme<"Popover", {
1133
+ fontSize: string;
1134
+ borderRadius: string;
1135
+ color: string;
1136
+ dividerColor: string;
1137
+ textColor: string;
1138
+ boxShadow: string;
1139
+ space: string;
1140
+ spaceArrow: string;
1141
+ arrowOffset: string;
1142
+ arrowOffsetVertical: string;
1143
+ arrowHeight: string;
1144
+ padding: string;
1145
+ }, {
1146
+ Scrollbar: Theme<"Scrollbar", {
1147
+ height: string;
1148
+ width: string;
1149
+ borderRadius: string;
1150
+ color: string;
1151
+ colorHover: string;
1152
+ railInsetHorizontalBottom: string;
1153
+ railInsetHorizontalTop: string;
1154
+ railInsetVerticalRight: string;
1155
+ railInsetVerticalLeft: string;
1156
+ railColor: string;
1157
+ }, any>;
1158
+ }>;
1159
+ }>;
1160
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
1161
+ optionFontSizeTiny: string;
1162
+ optionFontSizeSmall: string;
1163
+ optionFontSizeMedium: string;
1164
+ optionFontSizeLarge: string;
1165
+ optionFontSizeHuge: string;
1166
+ optionHeightTiny: string;
1167
+ optionHeightSmall: string;
1168
+ optionHeightMedium: string;
1169
+ optionHeightLarge: string;
1170
+ optionHeightHuge: string;
1171
+ borderRadius: string;
1172
+ color: string;
1173
+ groupHeaderTextColor: string;
1174
+ actionDividerColor: string;
1175
+ optionTextColor: string;
1176
+ optionTextColorPressed: string;
1177
+ optionTextColorDisabled: string;
1178
+ optionTextColorActive: string;
1179
+ optionOpacityDisabled: string;
1180
+ optionCheckColor: string;
1181
+ optionColorPending: string;
1182
+ optionColorActive: string;
1183
+ optionColorActivePending: string;
1184
+ actionTextColor: string;
1185
+ loadingColor: string;
1186
+ height: string;
1187
+ paddingTiny: string;
1188
+ paddingSmall: string;
1189
+ paddingMedium: string;
1190
+ paddingLarge: string;
1191
+ paddingHuge: string;
1192
+ optionPaddingTiny: string;
1193
+ optionPaddingSmall: string;
1194
+ optionPaddingMedium: string;
1195
+ optionPaddingLarge: string;
1196
+ optionPaddingHuge: string;
1197
+ loadingSize: string;
1198
+ }, {
1199
+ Scrollbar: Theme<"Scrollbar", {
1200
+ height: string;
1201
+ width: string;
1202
+ borderRadius: string;
1203
+ color: string;
1204
+ colorHover: string;
1205
+ railInsetHorizontalBottom: string;
1206
+ railInsetHorizontalTop: string;
1207
+ railInsetVerticalRight: string;
1208
+ railInsetVerticalLeft: string;
1209
+ railColor: string;
1210
+ }, any>;
1211
+ Empty: Theme<"Empty", {
1212
+ fontSizeTiny: string;
1213
+ fontSizeSmall: string;
1214
+ fontSizeMedium: string;
1215
+ fontSizeLarge: string;
1216
+ fontSizeHuge: string;
1217
+ textColor: string;
1218
+ iconColor: string;
1219
+ extraTextColor: string;
1220
+ iconSizeTiny: string;
1221
+ iconSizeSmall: string;
1222
+ iconSizeMedium: string;
1223
+ iconSizeLarge: string;
1224
+ iconSizeHuge: string;
1225
+ }, any>;
1226
+ }>;
1227
+ }>>;
1228
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
1229
+ menuBoxShadow: string;
1230
+ }, {
1231
+ InternalSelection: Theme<"InternalSelection", {
1232
+ fontSizeTiny: string;
1233
+ fontSizeSmall: string;
1234
+ fontSizeMedium: string;
1235
+ fontSizeLarge: string;
1236
+ heightTiny: string;
1237
+ heightSmall: string;
1238
+ heightMedium: string;
1239
+ heightLarge: string;
1240
+ borderRadius: string;
1241
+ fontWeight: string;
1242
+ textColor: string;
1243
+ textColorDisabled: string;
1244
+ placeholderColor: string;
1245
+ placeholderColorDisabled: string;
1246
+ color: string;
1247
+ colorDisabled: string;
1248
+ colorActive: string;
1249
+ border: string;
1250
+ borderHover: string;
1251
+ borderActive: string;
1252
+ borderFocus: string;
1253
+ boxShadowHover: string;
1254
+ boxShadowActive: string;
1255
+ boxShadowFocus: string;
1256
+ caretColor: string;
1257
+ arrowColor: string;
1258
+ arrowColorDisabled: string;
1259
+ loadingColor: string;
1260
+ borderWarning: string;
1261
+ borderHoverWarning: string;
1262
+ borderActiveWarning: string;
1263
+ borderFocusWarning: string;
1264
+ boxShadowHoverWarning: string;
1265
+ boxShadowActiveWarning: string;
1266
+ boxShadowFocusWarning: string;
1267
+ colorActiveWarning: string;
1268
+ caretColorWarning: string;
1269
+ borderError: string;
1270
+ borderHoverError: string;
1271
+ borderActiveError: string;
1272
+ borderFocusError: string;
1273
+ boxShadowHoverError: string;
1274
+ boxShadowActiveError: string;
1275
+ boxShadowFocusError: string;
1276
+ colorActiveError: string;
1277
+ caretColorError: string;
1278
+ clearColor: string;
1279
+ clearColorHover: string;
1280
+ clearColorPressed: string;
1281
+ paddingSingle: string;
1282
+ paddingMultiple: string;
1283
+ clearSize: string;
1284
+ arrowSize: string;
1285
+ }, {
1286
+ Popover: Theme<"Popover", {
1287
+ fontSize: string;
1288
+ borderRadius: string;
1289
+ color: string;
1290
+ dividerColor: string;
1291
+ textColor: string;
1292
+ boxShadow: string;
1293
+ space: string;
1294
+ spaceArrow: string;
1295
+ arrowOffset: string;
1296
+ arrowOffsetVertical: string;
1297
+ arrowHeight: string;
1298
+ padding: string;
1299
+ }, {
1300
+ Scrollbar: Theme<"Scrollbar", {
1301
+ height: string;
1302
+ width: string;
1303
+ borderRadius: string;
1304
+ color: string;
1305
+ colorHover: string;
1306
+ railInsetHorizontalBottom: string;
1307
+ railInsetHorizontalTop: string;
1308
+ railInsetVerticalRight: string;
1309
+ railInsetVerticalLeft: string;
1310
+ railColor: string;
1311
+ }, any>;
1312
+ }>;
1313
+ }>;
1314
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
1315
+ optionFontSizeTiny: string;
1316
+ optionFontSizeSmall: string;
1317
+ optionFontSizeMedium: string;
1318
+ optionFontSizeLarge: string;
1319
+ optionFontSizeHuge: string;
1320
+ optionHeightTiny: string;
1321
+ optionHeightSmall: string;
1322
+ optionHeightMedium: string;
1323
+ optionHeightLarge: string;
1324
+ optionHeightHuge: string;
1325
+ borderRadius: string;
1326
+ color: string;
1327
+ groupHeaderTextColor: string;
1328
+ actionDividerColor: string;
1329
+ optionTextColor: string;
1330
+ optionTextColorPressed: string;
1331
+ optionTextColorDisabled: string;
1332
+ optionTextColorActive: string;
1333
+ optionOpacityDisabled: string;
1334
+ optionCheckColor: string;
1335
+ optionColorPending: string;
1336
+ optionColorActive: string;
1337
+ optionColorActivePending: string;
1338
+ actionTextColor: string;
1339
+ loadingColor: string;
1340
+ height: string;
1341
+ paddingTiny: string;
1342
+ paddingSmall: string;
1343
+ paddingMedium: string;
1344
+ paddingLarge: string;
1345
+ paddingHuge: string;
1346
+ optionPaddingTiny: string;
1347
+ optionPaddingSmall: string;
1348
+ optionPaddingMedium: string;
1349
+ optionPaddingLarge: string;
1350
+ optionPaddingHuge: string;
1351
+ loadingSize: string;
1352
+ }, {
1353
+ Scrollbar: Theme<"Scrollbar", {
1354
+ height: string;
1355
+ width: string;
1356
+ borderRadius: string;
1357
+ color: string;
1358
+ colorHover: string;
1359
+ railInsetHorizontalBottom: string;
1360
+ railInsetHorizontalTop: string;
1361
+ railInsetVerticalRight: string;
1362
+ railInsetVerticalLeft: string;
1363
+ railColor: string;
1364
+ }, any>;
1365
+ Empty: Theme<"Empty", {
1366
+ fontSizeTiny: string;
1367
+ fontSizeSmall: string;
1368
+ fontSizeMedium: string;
1369
+ fontSizeLarge: string;
1370
+ fontSizeHuge: string;
1371
+ textColor: string;
1372
+ iconColor: string;
1373
+ extraTextColor: string;
1374
+ iconSizeTiny: string;
1375
+ iconSizeSmall: string;
1376
+ iconSizeMedium: string;
1377
+ iconSizeLarge: string;
1378
+ iconSizeHuge: string;
1379
+ }, any>;
1380
+ }>;
1381
+ }>>>;
1382
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
1383
+ menuBoxShadow: string;
1384
+ }, {
1385
+ InternalSelection: Theme<"InternalSelection", {
1386
+ fontSizeTiny: string;
1387
+ fontSizeSmall: string;
1388
+ fontSizeMedium: string;
1389
+ fontSizeLarge: string;
1390
+ heightTiny: string;
1391
+ heightSmall: string;
1392
+ heightMedium: string;
1393
+ heightLarge: string;
1394
+ borderRadius: string;
1395
+ fontWeight: string;
1396
+ textColor: string;
1397
+ textColorDisabled: string;
1398
+ placeholderColor: string;
1399
+ placeholderColorDisabled: string;
1400
+ color: string;
1401
+ colorDisabled: string;
1402
+ colorActive: string;
1403
+ border: string;
1404
+ borderHover: string;
1405
+ borderActive: string;
1406
+ borderFocus: string;
1407
+ boxShadowHover: string;
1408
+ boxShadowActive: string;
1409
+ boxShadowFocus: string;
1410
+ caretColor: string;
1411
+ arrowColor: string;
1412
+ arrowColorDisabled: string;
1413
+ loadingColor: string;
1414
+ borderWarning: string;
1415
+ borderHoverWarning: string;
1416
+ borderActiveWarning: string;
1417
+ borderFocusWarning: string;
1418
+ boxShadowHoverWarning: string;
1419
+ boxShadowActiveWarning: string;
1420
+ boxShadowFocusWarning: string;
1421
+ colorActiveWarning: string;
1422
+ caretColorWarning: string;
1423
+ borderError: string;
1424
+ borderHoverError: string;
1425
+ borderActiveError: string;
1426
+ borderFocusError: string;
1427
+ boxShadowHoverError: string;
1428
+ boxShadowActiveError: string;
1429
+ boxShadowFocusError: string;
1430
+ colorActiveError: string;
1431
+ caretColorError: string;
1432
+ clearColor: string;
1433
+ clearColorHover: string;
1434
+ clearColorPressed: string;
1435
+ paddingSingle: string;
1436
+ paddingMultiple: string;
1437
+ clearSize: string;
1438
+ arrowSize: string;
1439
+ }, {
1440
+ Popover: Theme<"Popover", {
1441
+ fontSize: string;
1442
+ borderRadius: string;
1443
+ color: string;
1444
+ dividerColor: string;
1445
+ textColor: string;
1446
+ boxShadow: string;
1447
+ space: string;
1448
+ spaceArrow: string;
1449
+ arrowOffset: string;
1450
+ arrowOffsetVertical: string;
1451
+ arrowHeight: string;
1452
+ padding: string;
1453
+ }, {
1454
+ Scrollbar: Theme<"Scrollbar", {
1455
+ height: string;
1456
+ width: string;
1457
+ borderRadius: string;
1458
+ color: string;
1459
+ colorHover: string;
1460
+ railInsetHorizontalBottom: string;
1461
+ railInsetHorizontalTop: string;
1462
+ railInsetVerticalRight: string;
1463
+ railInsetVerticalLeft: string;
1464
+ railColor: string;
1465
+ }, any>;
1466
+ }>;
1467
+ }>;
1468
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
1469
+ optionFontSizeTiny: string;
1470
+ optionFontSizeSmall: string;
1471
+ optionFontSizeMedium: string;
1472
+ optionFontSizeLarge: string;
1473
+ optionFontSizeHuge: string;
1474
+ optionHeightTiny: string;
1475
+ optionHeightSmall: string;
1476
+ optionHeightMedium: string;
1477
+ optionHeightLarge: string;
1478
+ optionHeightHuge: string;
1479
+ borderRadius: string;
1480
+ color: string;
1481
+ groupHeaderTextColor: string;
1482
+ actionDividerColor: string;
1483
+ optionTextColor: string;
1484
+ optionTextColorPressed: string;
1485
+ optionTextColorDisabled: string;
1486
+ optionTextColorActive: string;
1487
+ optionOpacityDisabled: string;
1488
+ optionCheckColor: string;
1489
+ optionColorPending: string;
1490
+ optionColorActive: string;
1491
+ optionColorActivePending: string;
1492
+ actionTextColor: string;
1493
+ loadingColor: string;
1494
+ height: string;
1495
+ paddingTiny: string;
1496
+ paddingSmall: string;
1497
+ paddingMedium: string;
1498
+ paddingLarge: string;
1499
+ paddingHuge: string;
1500
+ optionPaddingTiny: string;
1501
+ optionPaddingSmall: string;
1502
+ optionPaddingMedium: string;
1503
+ optionPaddingLarge: string;
1504
+ optionPaddingHuge: string;
1505
+ loadingSize: string;
1506
+ }, {
1507
+ Scrollbar: Theme<"Scrollbar", {
1508
+ height: string;
1509
+ width: string;
1510
+ borderRadius: string;
1511
+ color: string;
1512
+ colorHover: string;
1513
+ railInsetHorizontalBottom: string;
1514
+ railInsetHorizontalTop: string;
1515
+ railInsetVerticalRight: string;
1516
+ railInsetVerticalLeft: string;
1517
+ railColor: string;
1518
+ }, any>;
1519
+ Empty: Theme<"Empty", {
1520
+ fontSizeTiny: string;
1521
+ fontSizeSmall: string;
1522
+ fontSizeMedium: string;
1523
+ fontSizeLarge: string;
1524
+ fontSizeHuge: string;
1525
+ textColor: string;
1526
+ iconColor: string;
1527
+ extraTextColor: string;
1528
+ iconSizeTiny: string;
1529
+ iconSizeSmall: string;
1530
+ iconSizeMedium: string;
1531
+ iconSizeLarge: string;
1532
+ iconSizeHuge: string;
1533
+ }, any>;
1534
+ }>;
1535
+ }>>>;
1536
+ }>> & Readonly<{}>, {
1537
+ readonly disabled: boolean | undefined;
1538
+ readonly bordered: boolean | undefined;
1539
+ readonly to: string | boolean | HTMLElement;
1540
+ readonly clearable: boolean;
1541
+ readonly defaultValue: Value | null;
1542
+ readonly loading: boolean;
1543
+ readonly placement: PopoverPlacement;
1544
+ readonly options: SelectMixedOption[];
1545
+ readonly show: boolean | undefined;
1546
+ readonly keyboard: boolean;
1547
+ readonly tag: boolean;
1548
+ readonly showArrow: boolean;
1549
+ readonly displayDirective: "show" | "if";
1550
+ readonly multiple: boolean;
1551
+ readonly filterable: boolean;
1552
+ readonly clearFilterAfterSelect: boolean;
1553
+ readonly remote: boolean;
1554
+ readonly virtualScroll: boolean;
1555
+ readonly valueField: string;
1556
+ readonly labelField: string;
1557
+ readonly childrenField: string;
1558
+ readonly clearCreatedOptionsOnClear: boolean;
1559
+ readonly widthMode: string;
1560
+ readonly fallbackOption: false | SelectFallbackOption | undefined;
1561
+ readonly consistentMenuWidth: boolean;
1562
+ readonly ignoreComposition: boolean;
1563
+ readonly showOnFocus: boolean;
1564
+ readonly resetMenuOnOptionsChange: boolean;
1565
+ readonly showCheckmark: boolean;
1566
+ }, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1567
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
1568
+ export default _default;