base6-ui 2.0.19 → 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 (89) hide show
  1. package/dist/components/input-number/index.vue.d.ts +1 -0
  2. package/dist/components/select/index.d.ts +2 -1
  3. package/dist/components/select/src/cssVar.d.ts +4 -0
  4. package/dist/components/select/src/interface.d.ts +585 -0
  5. package/dist/components/select/src/select.d.ts +1203 -0
  6. package/dist/config/themes/components/dialog/dark.d.ts +1 -0
  7. package/dist/config/themes/components/dropdown/common.d.ts +2 -0
  8. package/dist/index.css +1 -1
  9. package/dist/index.umd.js +1 -1
  10. package/es/components/global-header/index.vue.mjs +1 -1
  11. package/es/components/input-number/index.vue.d.ts +1 -0
  12. package/es/components/input-number/index.vue.mjs +2 -2
  13. package/es/components/input-number/index.vue2.mjs +1 -1
  14. package/es/components/layout/components/{WrapHeader.vue.mjs → WrapHeader.vue2.mjs} +1 -1
  15. package/es/components/layout/index.vue2.mjs +1 -1
  16. package/es/components/select/index.d.ts +2 -1
  17. package/es/components/select/src/cssVar.d.ts +4 -0
  18. package/es/components/select/src/cssVar.mjs +60 -0
  19. package/es/components/select/src/interface.d.ts +585 -0
  20. package/es/components/select/src/interface.mjs +5 -0
  21. package/es/components/select/src/select.d.ts +1203 -0
  22. package/es/components/select/src/select.mjs +66 -0
  23. package/es/config/themes/components/baseComponent/dark.mjs +0 -6
  24. package/es/config/themes/components/baseComponent/light.mjs +0 -6
  25. package/es/config/themes/components/button/common.mjs +13 -10
  26. package/es/config/themes/components/dataTable/common.mjs +4 -3
  27. package/es/config/themes/components/dataTable/dark.mjs +20 -14
  28. package/es/config/themes/components/dialog/common.mjs +1 -1
  29. package/es/config/themes/components/dialog/dark.d.ts +1 -0
  30. package/es/config/themes/components/dialog/dark.mjs +4 -3
  31. package/es/config/themes/components/dropdown/common.d.ts +2 -0
  32. package/es/config/themes/components/dropdown/common.mjs +6 -0
  33. package/es/config/themes/components/dropdown/dark.mjs +6 -3
  34. package/es/config/themes/components/dropdown/light.mjs +4 -2
  35. package/es/config/themes/components/form/common.mjs +3 -0
  36. package/es/config/themes/components/input/dark.mjs +1 -1
  37. package/es/config/themes/components/input/light.mjs +1 -1
  38. package/es/config/themes/components/select/dark.mjs +3 -6
  39. package/es/config/themes/components/select/light.mjs +1 -4
  40. package/es/config/themes/components/transfer/dark.mjs +10 -6
  41. package/es/config/themes/components/transfer/light.mjs +4 -3
  42. package/es/index.css +1 -1
  43. package/es/index.mjs +60 -58
  44. package/lib/components/global-header/index.vue.js +1 -1
  45. package/lib/components/input-number/index.vue.d.ts +1 -0
  46. package/lib/components/input-number/index.vue.js +1 -1
  47. package/lib/components/input-number/index.vue2.js +1 -1
  48. package/lib/components/layout/components/WrapHeader.vue2.js +1 -0
  49. package/lib/components/layout/index.vue2.js +1 -1
  50. package/lib/components/select/index.d.ts +2 -1
  51. package/lib/components/select/src/cssVar.d.ts +4 -0
  52. package/lib/components/select/src/cssVar.js +1 -0
  53. package/lib/components/select/src/interface.d.ts +585 -0
  54. package/lib/components/select/src/interface.js +1 -0
  55. package/lib/components/select/src/select.d.ts +1203 -0
  56. package/lib/components/select/src/select.js +1 -0
  57. package/lib/config/themes/components/baseComponent/dark.js +1 -1
  58. package/lib/config/themes/components/baseComponent/light.js +1 -1
  59. package/lib/config/themes/components/button/common.js +1 -1
  60. package/lib/config/themes/components/dataTable/common.js +1 -1
  61. package/lib/config/themes/components/dataTable/dark.js +1 -1
  62. package/lib/config/themes/components/dialog/common.js +1 -1
  63. package/lib/config/themes/components/dialog/dark.d.ts +1 -0
  64. package/lib/config/themes/components/dialog/dark.js +1 -1
  65. package/lib/config/themes/components/dropdown/common.d.ts +2 -0
  66. package/lib/config/themes/components/dropdown/common.js +1 -0
  67. package/lib/config/themes/components/dropdown/dark.js +1 -1
  68. package/lib/config/themes/components/dropdown/light.js +1 -1
  69. package/lib/config/themes/components/form/common.js +1 -1
  70. package/lib/config/themes/components/input/dark.js +1 -1
  71. package/lib/config/themes/components/input/light.js +1 -1
  72. package/lib/config/themes/components/select/dark.js +1 -1
  73. package/lib/config/themes/components/select/light.js +1 -1
  74. package/lib/config/themes/components/transfer/dark.js +1 -1
  75. package/lib/config/themes/components/transfer/light.js +1 -1
  76. package/lib/index.css +1 -1
  77. package/lib/index.js +1 -1
  78. package/package.json +1 -1
  79. package/dist/components/cascader/index.vue.d.ts +0 -7
  80. package/dist/components/select/index.vue.d.ts +0 -25
  81. package/es/components/cascader/index.vue.d.ts +0 -7
  82. package/es/components/select/index.vue.d.ts +0 -25
  83. package/es/components/select/index.vue.mjs +0 -8
  84. package/es/components/select/index.vue2.mjs +0 -67
  85. package/lib/components/cascader/index.vue.d.ts +0 -7
  86. package/lib/components/layout/components/WrapHeader.vue.js +0 -1
  87. package/lib/components/select/index.vue.d.ts +0 -25
  88. package/lib/components/select/index.vue.js +0 -1
  89. package/lib/components/select/index.vue2.js +0 -1
@@ -0,0 +1,585 @@
1
+ import { ExtractPublicPropTypes } from 'vue';
2
+ export declare const bodenSelectProps: {
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) => import('naive-ui').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<import('naive-ui').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
+ export type BodenSelectProps = ExtractPublicPropTypes<typeof bodenSelectProps>;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("naive-ui"),o={...e.selectProps};exports.bodenSelectProps=o;