@snabcentr/vue-ui-lib 3.60.4 → 3.61.0

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