base6-ui 2.0.20 → 2.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/components/select/index.d.ts +2 -1
  2. package/dist/components/select/src/cssVar.d.ts +4 -0
  3. package/dist/components/select/src/interface.d.ts +585 -0
  4. package/dist/components/select/src/select.d.ts +1203 -0
  5. package/dist/index.css +1 -1
  6. package/dist/index.umd.js +1 -1
  7. package/es/components/global-header/index.vue.mjs +1 -1
  8. package/es/components/layout/components/{WrapHeader.vue.mjs → WrapHeader.vue2.mjs} +1 -1
  9. package/es/components/layout/index.vue2.mjs +1 -1
  10. package/es/components/select/index.d.ts +2 -1
  11. package/es/components/select/src/cssVar.d.ts +4 -0
  12. package/es/components/select/src/cssVar.mjs +60 -0
  13. package/es/components/select/src/interface.d.ts +585 -0
  14. package/es/components/select/src/interface.mjs +5 -0
  15. package/es/components/select/src/select.d.ts +1203 -0
  16. package/es/components/select/src/select.mjs +66 -0
  17. package/es/config/themes/components/dataTable/dark.mjs +2 -2
  18. package/es/config/themes/components/input/dark.mjs +1 -1
  19. package/es/config/themes/components/input/light.mjs +1 -1
  20. package/es/config/themes/components/select/dark.mjs +3 -6
  21. package/es/config/themes/components/select/light.mjs +1 -4
  22. package/es/config/themes/components/transfer/dark.mjs +10 -6
  23. package/es/config/themes/components/transfer/light.mjs +4 -3
  24. package/es/index.css +1 -1
  25. package/es/index.mjs +60 -58
  26. package/lib/components/global-header/index.vue.js +1 -1
  27. package/lib/components/layout/components/WrapHeader.vue2.js +1 -0
  28. package/lib/components/layout/index.vue2.js +1 -1
  29. package/lib/components/select/index.d.ts +2 -1
  30. package/lib/components/select/src/cssVar.d.ts +4 -0
  31. package/lib/components/select/src/cssVar.js +1 -0
  32. package/lib/components/select/src/interface.d.ts +585 -0
  33. package/lib/components/select/src/interface.js +1 -0
  34. package/lib/components/select/src/select.d.ts +1203 -0
  35. package/lib/components/select/src/select.js +1 -0
  36. package/lib/config/themes/components/dataTable/dark.js +1 -1
  37. package/lib/config/themes/components/input/dark.js +1 -1
  38. package/lib/config/themes/components/input/light.js +1 -1
  39. package/lib/config/themes/components/select/dark.js +1 -1
  40. package/lib/config/themes/components/select/light.js +1 -1
  41. package/lib/config/themes/components/transfer/dark.js +1 -1
  42. package/lib/config/themes/components/transfer/light.js +1 -1
  43. package/lib/index.css +1 -1
  44. package/lib/index.js +1 -1
  45. package/package.json +1 -1
  46. package/dist/components/cascader/index.vue.d.ts +0 -7
  47. package/dist/components/select/index.vue.d.ts +0 -25
  48. package/es/components/cascader/index.vue.d.ts +0 -7
  49. package/es/components/select/index.vue.d.ts +0 -25
  50. package/es/components/select/index.vue.mjs +0 -8
  51. package/es/components/select/index.vue2.mjs +0 -67
  52. package/lib/components/cascader/index.vue.d.ts +0 -7
  53. package/lib/components/layout/components/WrapHeader.vue.js +0 -1
  54. package/lib/components/select/index.vue.d.ts +0 -25
  55. package/lib/components/select/index.vue.js +0 -1
  56. package/lib/components/select/index.vue2.js +0 -1
@@ -0,0 +1,1203 @@
1
+ import { SelectOption, SelectRenderTag } from 'naive-ui';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ to: {
4
+ type: import('vue').PropType<HTMLElement | string | boolean>;
5
+ default: undefined;
6
+ };
7
+ bordered: {
8
+ readonly type: import('vue').PropType<boolean | undefined>;
9
+ readonly default: undefined;
10
+ };
11
+ clearable: BooleanConstructor;
12
+ clearFilterAfterSelect: {
13
+ readonly type: BooleanConstructor;
14
+ readonly default: true;
15
+ };
16
+ options: {
17
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectMixedOption[]>;
18
+ readonly default: () => never[];
19
+ };
20
+ defaultValue: {
21
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').Value | null>;
22
+ readonly default: null;
23
+ };
24
+ keyboard: {
25
+ readonly type: BooleanConstructor;
26
+ readonly default: true;
27
+ };
28
+ value: import('vue').PropType<import('naive-ui/es/select/src/interface').Value | null>;
29
+ placeholder: StringConstructor;
30
+ menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
31
+ multiple: BooleanConstructor;
32
+ size: import('vue').PropType<import('naive-ui/es/select/src/interface').Size>;
33
+ menuSize: {
34
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').Size>;
35
+ };
36
+ filterable: BooleanConstructor;
37
+ disabled: {
38
+ readonly type: import('vue').PropType<boolean | undefined>;
39
+ readonly default: undefined;
40
+ };
41
+ remote: BooleanConstructor;
42
+ loading: BooleanConstructor;
43
+ filter: import('vue').PropType<import('naive-ui').SelectFilter>;
44
+ placement: {
45
+ readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
46
+ readonly default: "bottom-start";
47
+ };
48
+ widthMode: {
49
+ readonly type: StringConstructor;
50
+ readonly default: "trigger";
51
+ };
52
+ tag: BooleanConstructor;
53
+ onCreate: import('vue').PropType<(label: string) => SelectOption>;
54
+ fallbackOption: {
55
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectFallbackOption | false | undefined>;
56
+ readonly default: undefined;
57
+ };
58
+ show: {
59
+ readonly type: import('vue').PropType<boolean | undefined>;
60
+ readonly default: undefined;
61
+ };
62
+ showArrow: {
63
+ readonly type: BooleanConstructor;
64
+ readonly default: true;
65
+ };
66
+ maxTagCount: import('vue').PropType<number | "responsive">;
67
+ ellipsisTagPopoverProps: import('vue').PropType<import('naive-ui').PopoverProps>;
68
+ consistentMenuWidth: {
69
+ readonly type: BooleanConstructor;
70
+ readonly default: true;
71
+ };
72
+ virtualScroll: {
73
+ readonly type: BooleanConstructor;
74
+ readonly default: true;
75
+ };
76
+ labelField: {
77
+ readonly type: StringConstructor;
78
+ readonly default: "label";
79
+ };
80
+ valueField: {
81
+ readonly type: StringConstructor;
82
+ readonly default: "value";
83
+ };
84
+ childrenField: {
85
+ readonly type: StringConstructor;
86
+ readonly default: "children";
87
+ };
88
+ renderLabel: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderLabel>;
89
+ renderOption: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderOption>;
90
+ renderTag: import('vue').PropType<SelectRenderTag>;
91
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue> | undefined>;
92
+ inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
93
+ nodeProps: import('vue').PropType<import('naive-ui').SelectNodeProps>;
94
+ ignoreComposition: {
95
+ readonly type: BooleanConstructor;
96
+ readonly default: true;
97
+ };
98
+ showOnFocus: BooleanConstructor;
99
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue> | undefined>;
100
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void> | undefined>;
101
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void> | undefined>;
102
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void> | undefined>;
103
+ onScroll: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: Event) => void> | undefined>;
104
+ onSearch: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: string) => void> | undefined>;
105
+ onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
106
+ 'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
107
+ displayDirective: {
108
+ readonly type: import('vue').PropType<"if" | "show">;
109
+ readonly default: "show";
110
+ };
111
+ resetMenuOnOptionsChange: {
112
+ readonly type: BooleanConstructor;
113
+ readonly default: true;
114
+ };
115
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
116
+ showCheckmark: {
117
+ readonly type: BooleanConstructor;
118
+ readonly default: true;
119
+ };
120
+ onChange: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue>>;
121
+ items: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectMixedOption[]>;
122
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Select", {
123
+ menuBoxShadow: string;
124
+ }, {
125
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
126
+ fontSizeTiny: string;
127
+ fontSizeSmall: string;
128
+ fontSizeMedium: string;
129
+ fontSizeLarge: string;
130
+ heightTiny: string;
131
+ heightSmall: string;
132
+ heightMedium: string;
133
+ heightLarge: string;
134
+ borderRadius: string;
135
+ fontWeight: string;
136
+ textColor: string;
137
+ textColorDisabled: string;
138
+ placeholderColor: string;
139
+ placeholderColorDisabled: string;
140
+ color: string;
141
+ colorDisabled: string;
142
+ colorActive: string;
143
+ border: string;
144
+ borderHover: string;
145
+ borderActive: string;
146
+ borderFocus: string;
147
+ boxShadowHover: string;
148
+ boxShadowActive: string;
149
+ boxShadowFocus: string;
150
+ caretColor: string;
151
+ arrowColor: string;
152
+ arrowColorDisabled: string;
153
+ loadingColor: string;
154
+ borderWarning: string;
155
+ borderHoverWarning: string;
156
+ borderActiveWarning: string;
157
+ borderFocusWarning: string;
158
+ boxShadowHoverWarning: string;
159
+ boxShadowActiveWarning: string;
160
+ boxShadowFocusWarning: string;
161
+ colorActiveWarning: string;
162
+ caretColorWarning: string;
163
+ borderError: string;
164
+ borderHoverError: string;
165
+ borderActiveError: string;
166
+ borderFocusError: string;
167
+ boxShadowHoverError: string;
168
+ boxShadowActiveError: string;
169
+ boxShadowFocusError: string;
170
+ colorActiveError: string;
171
+ caretColorError: string;
172
+ clearColor: string;
173
+ clearColorHover: string;
174
+ clearColorPressed: string;
175
+ paddingSingle: string;
176
+ paddingMultiple: string;
177
+ clearSize: string;
178
+ arrowSize: string;
179
+ }, {
180
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
181
+ fontSize: string;
182
+ borderRadius: string;
183
+ color: string;
184
+ dividerColor: string;
185
+ textColor: string;
186
+ boxShadow: string;
187
+ space: string;
188
+ spaceArrow: string;
189
+ arrowOffset: string;
190
+ arrowOffsetVertical: string;
191
+ arrowHeight: string;
192
+ padding: string;
193
+ }, {
194
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
195
+ height: string;
196
+ width: string;
197
+ borderRadius: string;
198
+ color: string;
199
+ colorHover: string;
200
+ railInsetHorizontalBottom: string;
201
+ railInsetHorizontalTop: string;
202
+ railInsetVerticalRight: string;
203
+ railInsetVerticalLeft: string;
204
+ railColor: string;
205
+ }, any>;
206
+ }>;
207
+ }>;
208
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
209
+ optionFontSizeTiny: string;
210
+ optionFontSizeSmall: string;
211
+ optionFontSizeMedium: string;
212
+ optionFontSizeLarge: string;
213
+ optionFontSizeHuge: string;
214
+ optionHeightTiny: string;
215
+ optionHeightSmall: string;
216
+ optionHeightMedium: string;
217
+ optionHeightLarge: string;
218
+ optionHeightHuge: string;
219
+ borderRadius: string;
220
+ color: string;
221
+ groupHeaderTextColor: string;
222
+ actionDividerColor: string;
223
+ optionTextColor: string;
224
+ optionTextColorPressed: string;
225
+ optionTextColorDisabled: string;
226
+ optionTextColorActive: string;
227
+ optionOpacityDisabled: string;
228
+ optionCheckColor: string;
229
+ optionColorPending: string;
230
+ optionColorActive: string;
231
+ optionColorActivePending: string;
232
+ actionTextColor: string;
233
+ loadingColor: string;
234
+ height: string;
235
+ paddingTiny: string;
236
+ paddingSmall: string;
237
+ paddingMedium: string;
238
+ paddingLarge: string;
239
+ paddingHuge: string;
240
+ optionPaddingTiny: string;
241
+ optionPaddingSmall: string;
242
+ optionPaddingMedium: string;
243
+ optionPaddingLarge: string;
244
+ optionPaddingHuge: string;
245
+ loadingSize: string;
246
+ }, {
247
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
248
+ height: string;
249
+ width: string;
250
+ borderRadius: string;
251
+ color: string;
252
+ colorHover: string;
253
+ railInsetHorizontalBottom: string;
254
+ railInsetHorizontalTop: string;
255
+ railInsetVerticalRight: string;
256
+ railInsetVerticalLeft: string;
257
+ railColor: string;
258
+ }, any>;
259
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
260
+ fontSizeTiny: string;
261
+ fontSizeSmall: string;
262
+ fontSizeMedium: string;
263
+ fontSizeLarge: string;
264
+ fontSizeHuge: string;
265
+ textColor: string;
266
+ iconColor: string;
267
+ extraTextColor: string;
268
+ iconSizeTiny: string;
269
+ iconSizeSmall: string;
270
+ iconSizeMedium: string;
271
+ iconSizeLarge: string;
272
+ iconSizeHuge: string;
273
+ }, any>;
274
+ }>;
275
+ }>>;
276
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Select", {
277
+ menuBoxShadow: string;
278
+ }, {
279
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
280
+ fontSizeTiny: string;
281
+ fontSizeSmall: string;
282
+ fontSizeMedium: string;
283
+ fontSizeLarge: string;
284
+ heightTiny: string;
285
+ heightSmall: string;
286
+ heightMedium: string;
287
+ heightLarge: string;
288
+ borderRadius: string;
289
+ fontWeight: string;
290
+ textColor: string;
291
+ textColorDisabled: string;
292
+ placeholderColor: string;
293
+ placeholderColorDisabled: string;
294
+ color: string;
295
+ colorDisabled: string;
296
+ colorActive: string;
297
+ border: string;
298
+ borderHover: string;
299
+ borderActive: string;
300
+ borderFocus: string;
301
+ boxShadowHover: string;
302
+ boxShadowActive: string;
303
+ boxShadowFocus: string;
304
+ caretColor: string;
305
+ arrowColor: string;
306
+ arrowColorDisabled: string;
307
+ loadingColor: string;
308
+ borderWarning: string;
309
+ borderHoverWarning: string;
310
+ borderActiveWarning: string;
311
+ borderFocusWarning: string;
312
+ boxShadowHoverWarning: string;
313
+ boxShadowActiveWarning: string;
314
+ boxShadowFocusWarning: string;
315
+ colorActiveWarning: string;
316
+ caretColorWarning: string;
317
+ borderError: string;
318
+ borderHoverError: string;
319
+ borderActiveError: string;
320
+ borderFocusError: string;
321
+ boxShadowHoverError: string;
322
+ boxShadowActiveError: string;
323
+ boxShadowFocusError: string;
324
+ colorActiveError: string;
325
+ caretColorError: string;
326
+ clearColor: string;
327
+ clearColorHover: string;
328
+ clearColorPressed: string;
329
+ paddingSingle: string;
330
+ paddingMultiple: string;
331
+ clearSize: string;
332
+ arrowSize: string;
333
+ }, {
334
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
335
+ fontSize: string;
336
+ borderRadius: string;
337
+ color: string;
338
+ dividerColor: string;
339
+ textColor: string;
340
+ boxShadow: string;
341
+ space: string;
342
+ spaceArrow: string;
343
+ arrowOffset: string;
344
+ arrowOffsetVertical: string;
345
+ arrowHeight: string;
346
+ padding: string;
347
+ }, {
348
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
349
+ height: string;
350
+ width: string;
351
+ borderRadius: string;
352
+ color: string;
353
+ colorHover: string;
354
+ railInsetHorizontalBottom: string;
355
+ railInsetHorizontalTop: string;
356
+ railInsetVerticalRight: string;
357
+ railInsetVerticalLeft: string;
358
+ railColor: string;
359
+ }, any>;
360
+ }>;
361
+ }>;
362
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
363
+ optionFontSizeTiny: string;
364
+ optionFontSizeSmall: string;
365
+ optionFontSizeMedium: string;
366
+ optionFontSizeLarge: string;
367
+ optionFontSizeHuge: string;
368
+ optionHeightTiny: string;
369
+ optionHeightSmall: string;
370
+ optionHeightMedium: string;
371
+ optionHeightLarge: string;
372
+ optionHeightHuge: string;
373
+ borderRadius: string;
374
+ color: string;
375
+ groupHeaderTextColor: string;
376
+ actionDividerColor: string;
377
+ optionTextColor: string;
378
+ optionTextColorPressed: string;
379
+ optionTextColorDisabled: string;
380
+ optionTextColorActive: string;
381
+ optionOpacityDisabled: string;
382
+ optionCheckColor: string;
383
+ optionColorPending: string;
384
+ optionColorActive: string;
385
+ optionColorActivePending: string;
386
+ actionTextColor: string;
387
+ loadingColor: string;
388
+ height: string;
389
+ paddingTiny: string;
390
+ paddingSmall: string;
391
+ paddingMedium: string;
392
+ paddingLarge: string;
393
+ paddingHuge: string;
394
+ optionPaddingTiny: string;
395
+ optionPaddingSmall: string;
396
+ optionPaddingMedium: string;
397
+ optionPaddingLarge: string;
398
+ optionPaddingHuge: string;
399
+ loadingSize: string;
400
+ }, {
401
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
402
+ height: string;
403
+ width: string;
404
+ borderRadius: string;
405
+ color: string;
406
+ colorHover: string;
407
+ railInsetHorizontalBottom: string;
408
+ railInsetHorizontalTop: string;
409
+ railInsetVerticalRight: string;
410
+ railInsetVerticalLeft: string;
411
+ railColor: string;
412
+ }, any>;
413
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
414
+ fontSizeTiny: string;
415
+ fontSizeSmall: string;
416
+ fontSizeMedium: string;
417
+ fontSizeLarge: string;
418
+ fontSizeHuge: string;
419
+ textColor: string;
420
+ iconColor: string;
421
+ extraTextColor: string;
422
+ iconSizeTiny: string;
423
+ iconSizeSmall: string;
424
+ iconSizeMedium: string;
425
+ iconSizeLarge: string;
426
+ iconSizeHuge: string;
427
+ }, any>;
428
+ }>;
429
+ }>>>;
430
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Select", {
431
+ menuBoxShadow: string;
432
+ }, {
433
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
434
+ fontSizeTiny: string;
435
+ fontSizeSmall: string;
436
+ fontSizeMedium: string;
437
+ fontSizeLarge: string;
438
+ heightTiny: string;
439
+ heightSmall: string;
440
+ heightMedium: string;
441
+ heightLarge: string;
442
+ borderRadius: string;
443
+ fontWeight: string;
444
+ textColor: string;
445
+ textColorDisabled: string;
446
+ placeholderColor: string;
447
+ placeholderColorDisabled: string;
448
+ color: string;
449
+ colorDisabled: string;
450
+ colorActive: string;
451
+ border: string;
452
+ borderHover: string;
453
+ borderActive: string;
454
+ borderFocus: string;
455
+ boxShadowHover: string;
456
+ boxShadowActive: string;
457
+ boxShadowFocus: string;
458
+ caretColor: string;
459
+ arrowColor: string;
460
+ arrowColorDisabled: string;
461
+ loadingColor: string;
462
+ borderWarning: string;
463
+ borderHoverWarning: string;
464
+ borderActiveWarning: string;
465
+ borderFocusWarning: string;
466
+ boxShadowHoverWarning: string;
467
+ boxShadowActiveWarning: string;
468
+ boxShadowFocusWarning: string;
469
+ colorActiveWarning: string;
470
+ caretColorWarning: string;
471
+ borderError: string;
472
+ borderHoverError: string;
473
+ borderActiveError: string;
474
+ borderFocusError: string;
475
+ boxShadowHoverError: string;
476
+ boxShadowActiveError: string;
477
+ boxShadowFocusError: string;
478
+ colorActiveError: string;
479
+ caretColorError: string;
480
+ clearColor: string;
481
+ clearColorHover: string;
482
+ clearColorPressed: string;
483
+ paddingSingle: string;
484
+ paddingMultiple: string;
485
+ clearSize: string;
486
+ arrowSize: string;
487
+ }, {
488
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
489
+ fontSize: string;
490
+ borderRadius: string;
491
+ color: string;
492
+ dividerColor: string;
493
+ textColor: string;
494
+ boxShadow: string;
495
+ space: string;
496
+ spaceArrow: string;
497
+ arrowOffset: string;
498
+ arrowOffsetVertical: string;
499
+ arrowHeight: string;
500
+ padding: string;
501
+ }, {
502
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
503
+ height: string;
504
+ width: string;
505
+ borderRadius: string;
506
+ color: string;
507
+ colorHover: string;
508
+ railInsetHorizontalBottom: string;
509
+ railInsetHorizontalTop: string;
510
+ railInsetVerticalRight: string;
511
+ railInsetVerticalLeft: string;
512
+ railColor: string;
513
+ }, any>;
514
+ }>;
515
+ }>;
516
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
517
+ optionFontSizeTiny: string;
518
+ optionFontSizeSmall: string;
519
+ optionFontSizeMedium: string;
520
+ optionFontSizeLarge: string;
521
+ optionFontSizeHuge: string;
522
+ optionHeightTiny: string;
523
+ optionHeightSmall: string;
524
+ optionHeightMedium: string;
525
+ optionHeightLarge: string;
526
+ optionHeightHuge: string;
527
+ borderRadius: string;
528
+ color: string;
529
+ groupHeaderTextColor: string;
530
+ actionDividerColor: string;
531
+ optionTextColor: string;
532
+ optionTextColorPressed: string;
533
+ optionTextColorDisabled: string;
534
+ optionTextColorActive: string;
535
+ optionOpacityDisabled: string;
536
+ optionCheckColor: string;
537
+ optionColorPending: string;
538
+ optionColorActive: string;
539
+ optionColorActivePending: string;
540
+ actionTextColor: string;
541
+ loadingColor: string;
542
+ height: string;
543
+ paddingTiny: string;
544
+ paddingSmall: string;
545
+ paddingMedium: string;
546
+ paddingLarge: string;
547
+ paddingHuge: string;
548
+ optionPaddingTiny: string;
549
+ optionPaddingSmall: string;
550
+ optionPaddingMedium: string;
551
+ optionPaddingLarge: string;
552
+ optionPaddingHuge: string;
553
+ loadingSize: string;
554
+ }, {
555
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
556
+ height: string;
557
+ width: string;
558
+ borderRadius: string;
559
+ color: string;
560
+ colorHover: string;
561
+ railInsetHorizontalBottom: string;
562
+ railInsetHorizontalTop: string;
563
+ railInsetVerticalRight: string;
564
+ railInsetVerticalLeft: string;
565
+ railColor: string;
566
+ }, any>;
567
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
568
+ fontSizeTiny: string;
569
+ fontSizeSmall: string;
570
+ fontSizeMedium: string;
571
+ fontSizeLarge: string;
572
+ fontSizeHuge: string;
573
+ textColor: string;
574
+ iconColor: string;
575
+ extraTextColor: string;
576
+ iconSizeTiny: string;
577
+ iconSizeSmall: string;
578
+ iconSizeMedium: string;
579
+ iconSizeLarge: string;
580
+ iconSizeHuge: string;
581
+ }, any>;
582
+ }>;
583
+ }>>>;
584
+ }>, {
585
+ cssVarStyle: import('vue').ComputedRef<{
586
+ '--boden-select-count-color': string;
587
+ '--boden-select-count-text-color': string;
588
+ }>;
589
+ renderLabel: import('vue').ComputedRef<import('naive-ui/es/_internal/select-menu/src/interface').RenderLabel | undefined>;
590
+ renderTag: import('vue').ComputedRef<SelectRenderTag | undefined>;
591
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
592
+ to: {
593
+ type: import('vue').PropType<HTMLElement | string | boolean>;
594
+ default: undefined;
595
+ };
596
+ bordered: {
597
+ readonly type: import('vue').PropType<boolean | undefined>;
598
+ readonly default: undefined;
599
+ };
600
+ clearable: BooleanConstructor;
601
+ clearFilterAfterSelect: {
602
+ readonly type: BooleanConstructor;
603
+ readonly default: true;
604
+ };
605
+ options: {
606
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectMixedOption[]>;
607
+ readonly default: () => never[];
608
+ };
609
+ defaultValue: {
610
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').Value | null>;
611
+ readonly default: null;
612
+ };
613
+ keyboard: {
614
+ readonly type: BooleanConstructor;
615
+ readonly default: true;
616
+ };
617
+ value: import('vue').PropType<import('naive-ui/es/select/src/interface').Value | null>;
618
+ placeholder: StringConstructor;
619
+ menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
620
+ multiple: BooleanConstructor;
621
+ size: import('vue').PropType<import('naive-ui/es/select/src/interface').Size>;
622
+ menuSize: {
623
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').Size>;
624
+ };
625
+ filterable: BooleanConstructor;
626
+ disabled: {
627
+ readonly type: import('vue').PropType<boolean | undefined>;
628
+ readonly default: undefined;
629
+ };
630
+ remote: BooleanConstructor;
631
+ loading: BooleanConstructor;
632
+ filter: import('vue').PropType<import('naive-ui').SelectFilter>;
633
+ placement: {
634
+ readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
635
+ readonly default: "bottom-start";
636
+ };
637
+ widthMode: {
638
+ readonly type: StringConstructor;
639
+ readonly default: "trigger";
640
+ };
641
+ tag: BooleanConstructor;
642
+ onCreate: import('vue').PropType<(label: string) => SelectOption>;
643
+ fallbackOption: {
644
+ readonly type: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectFallbackOption | false | undefined>;
645
+ readonly default: undefined;
646
+ };
647
+ show: {
648
+ readonly type: import('vue').PropType<boolean | undefined>;
649
+ readonly default: undefined;
650
+ };
651
+ showArrow: {
652
+ readonly type: BooleanConstructor;
653
+ readonly default: true;
654
+ };
655
+ maxTagCount: import('vue').PropType<number | "responsive">;
656
+ ellipsisTagPopoverProps: import('vue').PropType<import('naive-ui').PopoverProps>;
657
+ consistentMenuWidth: {
658
+ readonly type: BooleanConstructor;
659
+ readonly default: true;
660
+ };
661
+ virtualScroll: {
662
+ readonly type: BooleanConstructor;
663
+ readonly default: true;
664
+ };
665
+ labelField: {
666
+ readonly type: StringConstructor;
667
+ readonly default: "label";
668
+ };
669
+ valueField: {
670
+ readonly type: StringConstructor;
671
+ readonly default: "value";
672
+ };
673
+ childrenField: {
674
+ readonly type: StringConstructor;
675
+ readonly default: "children";
676
+ };
677
+ renderLabel: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderLabel>;
678
+ renderOption: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderOption>;
679
+ renderTag: import('vue').PropType<SelectRenderTag>;
680
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue> | undefined>;
681
+ inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
682
+ nodeProps: import('vue').PropType<import('naive-ui').SelectNodeProps>;
683
+ ignoreComposition: {
684
+ readonly type: BooleanConstructor;
685
+ readonly default: true;
686
+ };
687
+ showOnFocus: BooleanConstructor;
688
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue> | undefined>;
689
+ onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void> | undefined>;
690
+ onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void> | undefined>;
691
+ onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void> | undefined>;
692
+ onScroll: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: Event) => void> | undefined>;
693
+ onSearch: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: string) => void> | undefined>;
694
+ onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
695
+ 'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
696
+ displayDirective: {
697
+ readonly type: import('vue').PropType<"if" | "show">;
698
+ readonly default: "show";
699
+ };
700
+ resetMenuOnOptionsChange: {
701
+ readonly type: BooleanConstructor;
702
+ readonly default: true;
703
+ };
704
+ status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
705
+ showCheckmark: {
706
+ readonly type: BooleanConstructor;
707
+ readonly default: true;
708
+ };
709
+ onChange: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/select/src/interface').OnUpdateValue>>;
710
+ items: import('vue').PropType<import('naive-ui/es/select/src/interface').SelectMixedOption[]>;
711
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Select", {
712
+ menuBoxShadow: string;
713
+ }, {
714
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
715
+ fontSizeTiny: string;
716
+ fontSizeSmall: string;
717
+ fontSizeMedium: string;
718
+ fontSizeLarge: string;
719
+ heightTiny: string;
720
+ heightSmall: string;
721
+ heightMedium: string;
722
+ heightLarge: string;
723
+ borderRadius: string;
724
+ fontWeight: string;
725
+ textColor: string;
726
+ textColorDisabled: string;
727
+ placeholderColor: string;
728
+ placeholderColorDisabled: string;
729
+ color: string;
730
+ colorDisabled: string;
731
+ colorActive: string;
732
+ border: string;
733
+ borderHover: string;
734
+ borderActive: string;
735
+ borderFocus: string;
736
+ boxShadowHover: string;
737
+ boxShadowActive: string;
738
+ boxShadowFocus: string;
739
+ caretColor: string;
740
+ arrowColor: string;
741
+ arrowColorDisabled: string;
742
+ loadingColor: string;
743
+ borderWarning: string;
744
+ borderHoverWarning: string;
745
+ borderActiveWarning: string;
746
+ borderFocusWarning: string;
747
+ boxShadowHoverWarning: string;
748
+ boxShadowActiveWarning: string;
749
+ boxShadowFocusWarning: string;
750
+ colorActiveWarning: string;
751
+ caretColorWarning: string;
752
+ borderError: string;
753
+ borderHoverError: string;
754
+ borderActiveError: string;
755
+ borderFocusError: string;
756
+ boxShadowHoverError: string;
757
+ boxShadowActiveError: string;
758
+ boxShadowFocusError: string;
759
+ colorActiveError: string;
760
+ caretColorError: string;
761
+ clearColor: string;
762
+ clearColorHover: string;
763
+ clearColorPressed: string;
764
+ paddingSingle: string;
765
+ paddingMultiple: string;
766
+ clearSize: string;
767
+ arrowSize: string;
768
+ }, {
769
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
770
+ fontSize: string;
771
+ borderRadius: string;
772
+ color: string;
773
+ dividerColor: string;
774
+ textColor: string;
775
+ boxShadow: string;
776
+ space: string;
777
+ spaceArrow: string;
778
+ arrowOffset: string;
779
+ arrowOffsetVertical: string;
780
+ arrowHeight: string;
781
+ padding: string;
782
+ }, {
783
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
784
+ height: string;
785
+ width: string;
786
+ borderRadius: string;
787
+ color: string;
788
+ colorHover: string;
789
+ railInsetHorizontalBottom: string;
790
+ railInsetHorizontalTop: string;
791
+ railInsetVerticalRight: string;
792
+ railInsetVerticalLeft: string;
793
+ railColor: string;
794
+ }, any>;
795
+ }>;
796
+ }>;
797
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
798
+ optionFontSizeTiny: string;
799
+ optionFontSizeSmall: string;
800
+ optionFontSizeMedium: string;
801
+ optionFontSizeLarge: string;
802
+ optionFontSizeHuge: string;
803
+ optionHeightTiny: string;
804
+ optionHeightSmall: string;
805
+ optionHeightMedium: string;
806
+ optionHeightLarge: string;
807
+ optionHeightHuge: string;
808
+ borderRadius: string;
809
+ color: string;
810
+ groupHeaderTextColor: string;
811
+ actionDividerColor: string;
812
+ optionTextColor: string;
813
+ optionTextColorPressed: string;
814
+ optionTextColorDisabled: string;
815
+ optionTextColorActive: string;
816
+ optionOpacityDisabled: string;
817
+ optionCheckColor: string;
818
+ optionColorPending: string;
819
+ optionColorActive: string;
820
+ optionColorActivePending: string;
821
+ actionTextColor: string;
822
+ loadingColor: string;
823
+ height: string;
824
+ paddingTiny: string;
825
+ paddingSmall: string;
826
+ paddingMedium: string;
827
+ paddingLarge: string;
828
+ paddingHuge: string;
829
+ optionPaddingTiny: string;
830
+ optionPaddingSmall: string;
831
+ optionPaddingMedium: string;
832
+ optionPaddingLarge: string;
833
+ optionPaddingHuge: string;
834
+ loadingSize: string;
835
+ }, {
836
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
837
+ height: string;
838
+ width: string;
839
+ borderRadius: string;
840
+ color: string;
841
+ colorHover: string;
842
+ railInsetHorizontalBottom: string;
843
+ railInsetHorizontalTop: string;
844
+ railInsetVerticalRight: string;
845
+ railInsetVerticalLeft: string;
846
+ railColor: string;
847
+ }, any>;
848
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
849
+ fontSizeTiny: string;
850
+ fontSizeSmall: string;
851
+ fontSizeMedium: string;
852
+ fontSizeLarge: string;
853
+ fontSizeHuge: string;
854
+ textColor: string;
855
+ iconColor: string;
856
+ extraTextColor: string;
857
+ iconSizeTiny: string;
858
+ iconSizeSmall: string;
859
+ iconSizeMedium: string;
860
+ iconSizeLarge: string;
861
+ iconSizeHuge: string;
862
+ }, any>;
863
+ }>;
864
+ }>>;
865
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Select", {
866
+ menuBoxShadow: string;
867
+ }, {
868
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
869
+ fontSizeTiny: string;
870
+ fontSizeSmall: string;
871
+ fontSizeMedium: string;
872
+ fontSizeLarge: string;
873
+ heightTiny: string;
874
+ heightSmall: string;
875
+ heightMedium: string;
876
+ heightLarge: string;
877
+ borderRadius: string;
878
+ fontWeight: string;
879
+ textColor: string;
880
+ textColorDisabled: string;
881
+ placeholderColor: string;
882
+ placeholderColorDisabled: string;
883
+ color: string;
884
+ colorDisabled: string;
885
+ colorActive: string;
886
+ border: string;
887
+ borderHover: string;
888
+ borderActive: string;
889
+ borderFocus: string;
890
+ boxShadowHover: string;
891
+ boxShadowActive: string;
892
+ boxShadowFocus: string;
893
+ caretColor: string;
894
+ arrowColor: string;
895
+ arrowColorDisabled: string;
896
+ loadingColor: string;
897
+ borderWarning: string;
898
+ borderHoverWarning: string;
899
+ borderActiveWarning: string;
900
+ borderFocusWarning: string;
901
+ boxShadowHoverWarning: string;
902
+ boxShadowActiveWarning: string;
903
+ boxShadowFocusWarning: string;
904
+ colorActiveWarning: string;
905
+ caretColorWarning: string;
906
+ borderError: string;
907
+ borderHoverError: string;
908
+ borderActiveError: string;
909
+ borderFocusError: string;
910
+ boxShadowHoverError: string;
911
+ boxShadowActiveError: string;
912
+ boxShadowFocusError: string;
913
+ colorActiveError: string;
914
+ caretColorError: string;
915
+ clearColor: string;
916
+ clearColorHover: string;
917
+ clearColorPressed: string;
918
+ paddingSingle: string;
919
+ paddingMultiple: string;
920
+ clearSize: string;
921
+ arrowSize: string;
922
+ }, {
923
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
924
+ fontSize: string;
925
+ borderRadius: string;
926
+ color: string;
927
+ dividerColor: string;
928
+ textColor: string;
929
+ boxShadow: string;
930
+ space: string;
931
+ spaceArrow: string;
932
+ arrowOffset: string;
933
+ arrowOffsetVertical: string;
934
+ arrowHeight: string;
935
+ padding: string;
936
+ }, {
937
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
938
+ height: string;
939
+ width: string;
940
+ borderRadius: string;
941
+ color: string;
942
+ colorHover: string;
943
+ railInsetHorizontalBottom: string;
944
+ railInsetHorizontalTop: string;
945
+ railInsetVerticalRight: string;
946
+ railInsetVerticalLeft: string;
947
+ railColor: string;
948
+ }, any>;
949
+ }>;
950
+ }>;
951
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
952
+ optionFontSizeTiny: string;
953
+ optionFontSizeSmall: string;
954
+ optionFontSizeMedium: string;
955
+ optionFontSizeLarge: string;
956
+ optionFontSizeHuge: string;
957
+ optionHeightTiny: string;
958
+ optionHeightSmall: string;
959
+ optionHeightMedium: string;
960
+ optionHeightLarge: string;
961
+ optionHeightHuge: string;
962
+ borderRadius: string;
963
+ color: string;
964
+ groupHeaderTextColor: string;
965
+ actionDividerColor: string;
966
+ optionTextColor: string;
967
+ optionTextColorPressed: string;
968
+ optionTextColorDisabled: string;
969
+ optionTextColorActive: string;
970
+ optionOpacityDisabled: string;
971
+ optionCheckColor: string;
972
+ optionColorPending: string;
973
+ optionColorActive: string;
974
+ optionColorActivePending: string;
975
+ actionTextColor: string;
976
+ loadingColor: string;
977
+ height: string;
978
+ paddingTiny: string;
979
+ paddingSmall: string;
980
+ paddingMedium: string;
981
+ paddingLarge: string;
982
+ paddingHuge: string;
983
+ optionPaddingTiny: string;
984
+ optionPaddingSmall: string;
985
+ optionPaddingMedium: string;
986
+ optionPaddingLarge: string;
987
+ optionPaddingHuge: string;
988
+ loadingSize: string;
989
+ }, {
990
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
991
+ height: string;
992
+ width: string;
993
+ borderRadius: string;
994
+ color: string;
995
+ colorHover: string;
996
+ railInsetHorizontalBottom: string;
997
+ railInsetHorizontalTop: string;
998
+ railInsetVerticalRight: string;
999
+ railInsetVerticalLeft: string;
1000
+ railColor: string;
1001
+ }, any>;
1002
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
1003
+ fontSizeTiny: string;
1004
+ fontSizeSmall: string;
1005
+ fontSizeMedium: string;
1006
+ fontSizeLarge: string;
1007
+ fontSizeHuge: string;
1008
+ textColor: string;
1009
+ iconColor: string;
1010
+ extraTextColor: string;
1011
+ iconSizeTiny: string;
1012
+ iconSizeSmall: string;
1013
+ iconSizeMedium: string;
1014
+ iconSizeLarge: string;
1015
+ iconSizeHuge: string;
1016
+ }, any>;
1017
+ }>;
1018
+ }>>>;
1019
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Select", {
1020
+ menuBoxShadow: string;
1021
+ }, {
1022
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
1023
+ fontSizeTiny: string;
1024
+ fontSizeSmall: string;
1025
+ fontSizeMedium: string;
1026
+ fontSizeLarge: string;
1027
+ heightTiny: string;
1028
+ heightSmall: string;
1029
+ heightMedium: string;
1030
+ heightLarge: string;
1031
+ borderRadius: string;
1032
+ fontWeight: string;
1033
+ textColor: string;
1034
+ textColorDisabled: string;
1035
+ placeholderColor: string;
1036
+ placeholderColorDisabled: string;
1037
+ color: string;
1038
+ colorDisabled: string;
1039
+ colorActive: string;
1040
+ border: string;
1041
+ borderHover: string;
1042
+ borderActive: string;
1043
+ borderFocus: string;
1044
+ boxShadowHover: string;
1045
+ boxShadowActive: string;
1046
+ boxShadowFocus: string;
1047
+ caretColor: string;
1048
+ arrowColor: string;
1049
+ arrowColorDisabled: string;
1050
+ loadingColor: string;
1051
+ borderWarning: string;
1052
+ borderHoverWarning: string;
1053
+ borderActiveWarning: string;
1054
+ borderFocusWarning: string;
1055
+ boxShadowHoverWarning: string;
1056
+ boxShadowActiveWarning: string;
1057
+ boxShadowFocusWarning: string;
1058
+ colorActiveWarning: string;
1059
+ caretColorWarning: string;
1060
+ borderError: string;
1061
+ borderHoverError: string;
1062
+ borderActiveError: string;
1063
+ borderFocusError: string;
1064
+ boxShadowHoverError: string;
1065
+ boxShadowActiveError: string;
1066
+ boxShadowFocusError: string;
1067
+ colorActiveError: string;
1068
+ caretColorError: string;
1069
+ clearColor: string;
1070
+ clearColorHover: string;
1071
+ clearColorPressed: string;
1072
+ paddingSingle: string;
1073
+ paddingMultiple: string;
1074
+ clearSize: string;
1075
+ arrowSize: string;
1076
+ }, {
1077
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
1078
+ fontSize: string;
1079
+ borderRadius: string;
1080
+ color: string;
1081
+ dividerColor: string;
1082
+ textColor: string;
1083
+ boxShadow: string;
1084
+ space: string;
1085
+ spaceArrow: string;
1086
+ arrowOffset: string;
1087
+ arrowOffsetVertical: string;
1088
+ arrowHeight: string;
1089
+ padding: string;
1090
+ }, {
1091
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1092
+ height: string;
1093
+ width: string;
1094
+ borderRadius: string;
1095
+ color: string;
1096
+ colorHover: string;
1097
+ railInsetHorizontalBottom: string;
1098
+ railInsetHorizontalTop: string;
1099
+ railInsetVerticalRight: string;
1100
+ railInsetVerticalLeft: string;
1101
+ railColor: string;
1102
+ }, any>;
1103
+ }>;
1104
+ }>;
1105
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
1106
+ optionFontSizeTiny: string;
1107
+ optionFontSizeSmall: string;
1108
+ optionFontSizeMedium: string;
1109
+ optionFontSizeLarge: string;
1110
+ optionFontSizeHuge: string;
1111
+ optionHeightTiny: string;
1112
+ optionHeightSmall: string;
1113
+ optionHeightMedium: string;
1114
+ optionHeightLarge: string;
1115
+ optionHeightHuge: string;
1116
+ borderRadius: string;
1117
+ color: string;
1118
+ groupHeaderTextColor: string;
1119
+ actionDividerColor: string;
1120
+ optionTextColor: string;
1121
+ optionTextColorPressed: string;
1122
+ optionTextColorDisabled: string;
1123
+ optionTextColorActive: string;
1124
+ optionOpacityDisabled: string;
1125
+ optionCheckColor: string;
1126
+ optionColorPending: string;
1127
+ optionColorActive: string;
1128
+ optionColorActivePending: string;
1129
+ actionTextColor: string;
1130
+ loadingColor: string;
1131
+ height: string;
1132
+ paddingTiny: string;
1133
+ paddingSmall: string;
1134
+ paddingMedium: string;
1135
+ paddingLarge: string;
1136
+ paddingHuge: string;
1137
+ optionPaddingTiny: string;
1138
+ optionPaddingSmall: string;
1139
+ optionPaddingMedium: string;
1140
+ optionPaddingLarge: string;
1141
+ optionPaddingHuge: string;
1142
+ loadingSize: string;
1143
+ }, {
1144
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1145
+ height: string;
1146
+ width: string;
1147
+ borderRadius: string;
1148
+ color: string;
1149
+ colorHover: string;
1150
+ railInsetHorizontalBottom: string;
1151
+ railInsetHorizontalTop: string;
1152
+ railInsetVerticalRight: string;
1153
+ railInsetVerticalLeft: string;
1154
+ railColor: string;
1155
+ }, any>;
1156
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
1157
+ fontSizeTiny: string;
1158
+ fontSizeSmall: string;
1159
+ fontSizeMedium: string;
1160
+ fontSizeLarge: string;
1161
+ fontSizeHuge: string;
1162
+ textColor: string;
1163
+ iconColor: string;
1164
+ extraTextColor: string;
1165
+ iconSizeTiny: string;
1166
+ iconSizeSmall: string;
1167
+ iconSizeMedium: string;
1168
+ iconSizeLarge: string;
1169
+ iconSizeHuge: string;
1170
+ }, any>;
1171
+ }>;
1172
+ }>>>;
1173
+ }>> & Readonly<{}>, {
1174
+ to: string | boolean | HTMLElement;
1175
+ placement: import('naive-ui').PopoverPlacement;
1176
+ loading: boolean;
1177
+ disabled: boolean | undefined;
1178
+ keyboard: boolean;
1179
+ tag: boolean;
1180
+ bordered: boolean | undefined;
1181
+ clearable: boolean;
1182
+ clearFilterAfterSelect: boolean;
1183
+ options: import('naive-ui/es/select/src/interface').SelectMixedOption[];
1184
+ defaultValue: import('naive-ui/es/select/src/interface').Value | null;
1185
+ multiple: boolean;
1186
+ filterable: boolean;
1187
+ remote: boolean;
1188
+ widthMode: string;
1189
+ fallbackOption: false | import('naive-ui/es/select/src/interface').SelectFallbackOption | undefined;
1190
+ show: boolean | undefined;
1191
+ showArrow: boolean;
1192
+ consistentMenuWidth: boolean;
1193
+ virtualScroll: boolean;
1194
+ labelField: string;
1195
+ valueField: string;
1196
+ childrenField: string;
1197
+ ignoreComposition: boolean;
1198
+ showOnFocus: boolean;
1199
+ displayDirective: "show" | "if";
1200
+ resetMenuOnOptionsChange: boolean;
1201
+ showCheckmark: boolean;
1202
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1203
+ export default _default;