@quiteer/naive-extra 0.0.1

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 (171) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +86 -0
  3. package/dist/components/breadcrumb/index.d.ts +0 -0
  4. package/dist/components/breadcrumb/index.vue.d.ts +3 -0
  5. package/dist/components/breadcrumb/props.d.ts +0 -0
  6. package/dist/components/button/action/index.d.ts +3 -0
  7. package/dist/components/button/action/index.vue.d.ts +118 -0
  8. package/dist/components/button/action/props.d.ts +63 -0
  9. package/dist/components/button/action/utils.d.ts +8 -0
  10. package/dist/components/button/base/index.d.ts +3 -0
  11. package/dist/components/button/base/index.vue.d.ts +36 -0
  12. package/dist/components/button/base/props.d.ts +27 -0
  13. package/dist/components/button/index.d.ts +4 -0
  14. package/dist/components/button/types.d.ts +2 -0
  15. package/dist/components/form/helper.d.ts +11 -0
  16. package/dist/components/form/index.d.ts +3 -0
  17. package/dist/components/form/index.vue.d.ts +642 -0
  18. package/dist/components/form/props.d.ts +34 -0
  19. package/dist/components/icon/IconPicker.vue.d.ts +13 -0
  20. package/dist/components/icon/iconify.d.ts +25 -0
  21. package/dist/components/icon/index.d.ts +3 -0
  22. package/dist/components/icon/index.vue.d.ts +12 -0
  23. package/dist/components/layout/const.d.ts +22 -0
  24. package/dist/components/layout/context.d.ts +77 -0
  25. package/dist/components/layout/index.d.ts +5 -0
  26. package/dist/components/layout/index.vue.d.ts +80 -0
  27. package/dist/components/layout/layout-parts/AppBreadcrumb.vue.d.ts +3 -0
  28. package/dist/components/layout/layout-parts/AppFooter.vue.d.ts +18 -0
  29. package/dist/components/layout/layout-parts/AppHeader.vue.d.ts +18 -0
  30. package/dist/components/layout/layout-parts/AppLeftLogoInfo.vue.d.ts +3 -0
  31. package/dist/components/layout/layout-parts/AppMain.vue.d.ts +18 -0
  32. package/dist/components/layout/layout-parts/AppSidebar.vue.d.ts +4067 -0
  33. package/dist/components/layout/layout-parts/LayoutTransition.vue.d.ts +58 -0
  34. package/dist/components/layout/mode.d.ts +0 -0
  35. package/dist/components/layout/props.d.ts +35 -0
  36. package/dist/components/layout/types.d.ts +59 -0
  37. package/dist/components/layout/utils.d.ts +97 -0
  38. package/dist/components/provider/index.d.ts +3 -0
  39. package/dist/components/provider/index.vue.d.ts +19 -0
  40. package/dist/components/provider/props.d.ts +33 -0
  41. package/dist/components/search-bar/index.d.ts +3 -0
  42. package/dist/components/search-bar/index.vue.d.ts +1288 -0
  43. package/dist/components/search-bar/props.d.ts +15 -0
  44. package/dist/components/table/TableSetting.vue.d.ts +15 -0
  45. package/dist/components/table/index.d.ts +4 -0
  46. package/dist/components/table/index.vue.d.ts +17246 -0
  47. package/dist/components/table/props.d.ts +26 -0
  48. package/dist/components/table/useColumn.d.ts +15 -0
  49. package/dist/components/upload/enum.d.ts +18 -0
  50. package/dist/components/upload/index.d.ts +4 -0
  51. package/dist/components/upload/index.vue.d.ts +17 -0
  52. package/dist/components/upload/props.d.ts +7 -0
  53. package/dist/const/defaults.d.ts +7 -0
  54. package/dist/const/index.d.ts +2 -0
  55. package/dist/const/types.d.ts +134 -0
  56. package/dist/context/color.d.ts +13 -0
  57. package/dist/context/common.d.ts +117 -0
  58. package/dist/context/index.d.ts +41 -0
  59. package/dist/context/layout.d.ts +52 -0
  60. package/dist/context/loading-bar.d.ts +14 -0
  61. package/dist/context/locale.d.ts +143 -0
  62. package/dist/context/menu.d.ts +212 -0
  63. package/dist/context/message.d.ts +14 -0
  64. package/dist/context/notification.d.ts +14 -0
  65. package/dist/context/table.d.ts +917 -0
  66. package/dist/context/theme.d.ts +20 -0
  67. package/dist/hooks/index.d.ts +6 -0
  68. package/dist/hooks/useAdmin.d.ts +0 -0
  69. package/dist/hooks/useForm.d.ts +54 -0
  70. package/dist/hooks/useLayout.d.ts +116 -0
  71. package/dist/hooks/useProviderContext.d.ts +17 -0
  72. package/dist/hooks/useTable.d.ts +66 -0
  73. package/dist/hooks/useThemeOverrides.d.ts +8 -0
  74. package/dist/hooks/useUpload.d.ts +22 -0
  75. package/dist/index.css +36 -0
  76. package/dist/index.d.ts +29 -0
  77. package/dist/index.js +6771 -0
  78. package/dist/share/compact.d.ts +16 -0
  79. package/dist/share/index.d.ts +2 -0
  80. package/dist/share/menu.d.ts +0 -0
  81. package/dist/share/route.d.ts +0 -0
  82. package/dist/share/slot.d.ts +6 -0
  83. package/dist/utils/form.d.ts +0 -0
  84. package/dist/utils/index.d.ts +0 -0
  85. package/dist/utils/transformRoutes.d.ts +67 -0
  86. package/dist/utils/tree.d.ts +6 -0
  87. package/package.json +53 -0
  88. package/src/auto-imports.d.ts +73 -0
  89. package/src/components/breadcrumb/index.ts +0 -0
  90. package/src/components/breadcrumb/index.vue +0 -0
  91. package/src/components/breadcrumb/props.ts +0 -0
  92. package/src/components/button/action/index.ts +4 -0
  93. package/src/components/button/action/index.vue +313 -0
  94. package/src/components/button/action/props.ts +78 -0
  95. package/src/components/button/action/utils.ts +122 -0
  96. package/src/components/button/base/index.ts +4 -0
  97. package/src/components/button/base/index.vue +156 -0
  98. package/src/components/button/base/props.ts +29 -0
  99. package/src/components/button/index.ts +4 -0
  100. package/src/components/button/types.ts +2 -0
  101. package/src/components/form/helper.ts +73 -0
  102. package/src/components/form/index.ts +5 -0
  103. package/src/components/form/index.vue +243 -0
  104. package/src/components/form/props.ts +75 -0
  105. package/src/components/icon/IconPicker.vue +255 -0
  106. package/src/components/icon/iconify.ts +80 -0
  107. package/src/components/icon/index.ts +7 -0
  108. package/src/components/icon/index.vue +23 -0
  109. package/src/components/layout/const.ts +102 -0
  110. package/src/components/layout/context.ts +189 -0
  111. package/src/components/layout/index.ts +8 -0
  112. package/src/components/layout/index.vue +64 -0
  113. package/src/components/layout/layout-parts/AppBreadcrumb.vue +108 -0
  114. package/src/components/layout/layout-parts/AppFooter.vue +26 -0
  115. package/src/components/layout/layout-parts/AppHeader.vue +112 -0
  116. package/src/components/layout/layout-parts/AppLeftLogoInfo.vue +30 -0
  117. package/src/components/layout/layout-parts/AppMain.vue +34 -0
  118. package/src/components/layout/layout-parts/AppSidebar.vue +174 -0
  119. package/src/components/layout/layout-parts/LayoutTransition.vue +366 -0
  120. package/src/components/layout/mode.ts +0 -0
  121. package/src/components/layout/props.ts +36 -0
  122. package/src/components/layout/types.ts +79 -0
  123. package/src/components/layout/utils.ts +201 -0
  124. package/src/components/provider/index.ts +5 -0
  125. package/src/components/provider/index.vue +69 -0
  126. package/src/components/provider/props.ts +45 -0
  127. package/src/components/search-bar/index.ts +5 -0
  128. package/src/components/search-bar/index.vue +282 -0
  129. package/src/components/search-bar/props.ts +26 -0
  130. package/src/components/table/TableSetting.vue +253 -0
  131. package/src/components/table/index.ts +14 -0
  132. package/src/components/table/index.vue +179 -0
  133. package/src/components/table/props.ts +29 -0
  134. package/src/components/table/useColumn.ts +104 -0
  135. package/src/components/upload/enum.ts +21 -0
  136. package/src/components/upload/index.ts +9 -0
  137. package/src/components/upload/index.vue +267 -0
  138. package/src/components/upload/props.ts +8 -0
  139. package/src/components.d.ts +154 -0
  140. package/src/const/defaults.ts +94 -0
  141. package/src/const/index.ts +2 -0
  142. package/src/const/types.ts +139 -0
  143. package/src/context/color.ts +53 -0
  144. package/src/context/common.ts +27 -0
  145. package/src/context/index.ts +141 -0
  146. package/src/context/layout.ts +34 -0
  147. package/src/context/loading-bar.ts +26 -0
  148. package/src/context/locale.ts +22 -0
  149. package/src/context/menu.ts +26 -0
  150. package/src/context/message.ts +30 -0
  151. package/src/context/notification.ts +29 -0
  152. package/src/context/table.ts +32 -0
  153. package/src/context/theme.ts +35 -0
  154. package/src/hooks/index.ts +6 -0
  155. package/src/hooks/useAdmin.ts +0 -0
  156. package/src/hooks/useForm.ts +272 -0
  157. package/src/hooks/useLayout.ts +300 -0
  158. package/src/hooks/useProviderContext.ts +47 -0
  159. package/src/hooks/useTable.ts +241 -0
  160. package/src/hooks/useThemeOverrides.ts +18 -0
  161. package/src/hooks/useUpload.ts +82 -0
  162. package/src/index.ts +59 -0
  163. package/src/share/compact.ts +35 -0
  164. package/src/share/index.ts +2 -0
  165. package/src/share/menu.ts +0 -0
  166. package/src/share/route.ts +0 -0
  167. package/src/share/slot.ts +29 -0
  168. package/src/utils/form.ts +0 -0
  169. package/src/utils/index.ts +0 -0
  170. package/src/utils/transformRoutes.ts +163 -0
  171. package/src/utils/tree.ts +31 -0
@@ -0,0 +1,917 @@
1
+ import { ComputedRef } from 'vue';
2
+ import { NaiveExtraThemeConfig } from '../const';
3
+ import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
4
+ import { Theme } from 'naive-ui/es/_mixins';
5
+ /**
6
+ * 表格组件样式覆盖模块
7
+ *
8
+ * @param mergedConfig - 合并后的响应式配置
9
+ * @returns DataTable 的主题覆盖对象
10
+ */
11
+ export declare function useTableModule(mergedConfig: ComputedRef<Required<NaiveExtraThemeConfig>>): {
12
+ tableOverrides: ComputedRef< ExtractThemeOverrides< Theme<"DataTable", {
13
+ actionDividerColor: string;
14
+ lineHeight: string;
15
+ borderRadius: string;
16
+ fontSizeSmall: string;
17
+ fontSizeMedium: string;
18
+ fontSizeLarge: string;
19
+ borderColor: string;
20
+ tdColorHover: string;
21
+ tdColorSorting: string;
22
+ tdColorStriped: string;
23
+ thColor: string;
24
+ thColorHover: string;
25
+ thColorSorting: string;
26
+ tdColor: string;
27
+ tdTextColor: string;
28
+ thTextColor: string;
29
+ thFontWeight: string;
30
+ thButtonColorHover: string;
31
+ thIconColor: string;
32
+ thIconColorActive: string;
33
+ borderColorModal: string;
34
+ tdColorHoverModal: string;
35
+ tdColorSortingModal: string;
36
+ tdColorStripedModal: string;
37
+ thColorModal: string;
38
+ thColorHoverModal: string;
39
+ thColorSortingModal: string;
40
+ tdColorModal: string;
41
+ borderColorPopover: string;
42
+ tdColorHoverPopover: string;
43
+ tdColorSortingPopover: string;
44
+ tdColorStripedPopover: string;
45
+ thColorPopover: string;
46
+ thColorHoverPopover: string;
47
+ thColorSortingPopover: string;
48
+ tdColorPopover: string;
49
+ boxShadowBefore: string;
50
+ boxShadowAfter: string;
51
+ loadingColor: string;
52
+ loadingSize: string;
53
+ opacityLoading: string;
54
+ thPaddingSmall: string;
55
+ thPaddingMedium: string;
56
+ thPaddingLarge: string;
57
+ tdPaddingSmall: string;
58
+ tdPaddingMedium: string;
59
+ tdPaddingLarge: string;
60
+ sorterSize: string;
61
+ resizableContainerSize: string;
62
+ resizableSize: string;
63
+ filterSize: string;
64
+ paginationMargin: string;
65
+ emptyPadding: string;
66
+ actionPadding: string;
67
+ actionButtonMargin: string;
68
+ }, {
69
+ Button: Theme<"Button", {
70
+ heightTiny: string;
71
+ heightSmall: string;
72
+ heightMedium: string;
73
+ heightLarge: string;
74
+ borderRadiusTiny: string;
75
+ borderRadiusSmall: string;
76
+ borderRadiusMedium: string;
77
+ borderRadiusLarge: string;
78
+ fontSizeTiny: string;
79
+ fontSizeSmall: string;
80
+ fontSizeMedium: string;
81
+ fontSizeLarge: string;
82
+ opacityDisabled: string;
83
+ colorOpacitySecondary: string;
84
+ colorOpacitySecondaryHover: string;
85
+ colorOpacitySecondaryPressed: string;
86
+ colorSecondary: string;
87
+ colorSecondaryHover: string;
88
+ colorSecondaryPressed: string;
89
+ colorTertiary: string;
90
+ colorTertiaryHover: string;
91
+ colorTertiaryPressed: string;
92
+ colorQuaternary: string;
93
+ colorQuaternaryHover: string;
94
+ colorQuaternaryPressed: string;
95
+ color: string;
96
+ colorHover: string;
97
+ colorPressed: string;
98
+ colorFocus: string;
99
+ colorDisabled: string;
100
+ textColor: string;
101
+ textColorTertiary: string;
102
+ textColorHover: string;
103
+ textColorPressed: string;
104
+ textColorFocus: string;
105
+ textColorDisabled: string;
106
+ textColorText: string;
107
+ textColorTextHover: string;
108
+ textColorTextPressed: string;
109
+ textColorTextFocus: string;
110
+ textColorTextDisabled: string;
111
+ textColorGhost: string;
112
+ textColorGhostHover: string;
113
+ textColorGhostPressed: string;
114
+ textColorGhostFocus: string;
115
+ textColorGhostDisabled: string;
116
+ border: string;
117
+ borderHover: string;
118
+ borderPressed: string;
119
+ borderFocus: string;
120
+ borderDisabled: string;
121
+ rippleColor: string;
122
+ colorPrimary: string;
123
+ colorHoverPrimary: string;
124
+ colorPressedPrimary: string;
125
+ colorFocusPrimary: string;
126
+ colorDisabledPrimary: string;
127
+ textColorPrimary: string;
128
+ textColorHoverPrimary: string;
129
+ textColorPressedPrimary: string;
130
+ textColorFocusPrimary: string;
131
+ textColorDisabledPrimary: string;
132
+ textColorTextPrimary: string;
133
+ textColorTextHoverPrimary: string;
134
+ textColorTextPressedPrimary: string;
135
+ textColorTextFocusPrimary: string;
136
+ textColorTextDisabledPrimary: string;
137
+ textColorGhostPrimary: string;
138
+ textColorGhostHoverPrimary: string;
139
+ textColorGhostPressedPrimary: string;
140
+ textColorGhostFocusPrimary: string;
141
+ textColorGhostDisabledPrimary: string;
142
+ borderPrimary: string;
143
+ borderHoverPrimary: string;
144
+ borderPressedPrimary: string;
145
+ borderFocusPrimary: string;
146
+ borderDisabledPrimary: string;
147
+ rippleColorPrimary: string;
148
+ colorInfo: string;
149
+ colorHoverInfo: string;
150
+ colorPressedInfo: string;
151
+ colorFocusInfo: string;
152
+ colorDisabledInfo: string;
153
+ textColorInfo: string;
154
+ textColorHoverInfo: string;
155
+ textColorPressedInfo: string;
156
+ textColorFocusInfo: string;
157
+ textColorDisabledInfo: string;
158
+ textColorTextInfo: string;
159
+ textColorTextHoverInfo: string;
160
+ textColorTextPressedInfo: string;
161
+ textColorTextFocusInfo: string;
162
+ textColorTextDisabledInfo: string;
163
+ textColorGhostInfo: string;
164
+ textColorGhostHoverInfo: string;
165
+ textColorGhostPressedInfo: string;
166
+ textColorGhostFocusInfo: string;
167
+ textColorGhostDisabledInfo: string;
168
+ borderInfo: string;
169
+ borderHoverInfo: string;
170
+ borderPressedInfo: string;
171
+ borderFocusInfo: string;
172
+ borderDisabledInfo: string;
173
+ rippleColorInfo: string;
174
+ colorSuccess: string;
175
+ colorHoverSuccess: string;
176
+ colorPressedSuccess: string;
177
+ colorFocusSuccess: string;
178
+ colorDisabledSuccess: string;
179
+ textColorSuccess: string;
180
+ textColorHoverSuccess: string;
181
+ textColorPressedSuccess: string;
182
+ textColorFocusSuccess: string;
183
+ textColorDisabledSuccess: string;
184
+ textColorTextSuccess: string;
185
+ textColorTextHoverSuccess: string;
186
+ textColorTextPressedSuccess: string;
187
+ textColorTextFocusSuccess: string;
188
+ textColorTextDisabledSuccess: string;
189
+ textColorGhostSuccess: string;
190
+ textColorGhostHoverSuccess: string;
191
+ textColorGhostPressedSuccess: string;
192
+ textColorGhostFocusSuccess: string;
193
+ textColorGhostDisabledSuccess: string;
194
+ borderSuccess: string;
195
+ borderHoverSuccess: string;
196
+ borderPressedSuccess: string;
197
+ borderFocusSuccess: string;
198
+ borderDisabledSuccess: string;
199
+ rippleColorSuccess: string;
200
+ colorWarning: string;
201
+ colorHoverWarning: string;
202
+ colorPressedWarning: string;
203
+ colorFocusWarning: string;
204
+ colorDisabledWarning: string;
205
+ textColorWarning: string;
206
+ textColorHoverWarning: string;
207
+ textColorPressedWarning: string;
208
+ textColorFocusWarning: string;
209
+ textColorDisabledWarning: string;
210
+ textColorTextWarning: string;
211
+ textColorTextHoverWarning: string;
212
+ textColorTextPressedWarning: string;
213
+ textColorTextFocusWarning: string;
214
+ textColorTextDisabledWarning: string;
215
+ textColorGhostWarning: string;
216
+ textColorGhostHoverWarning: string;
217
+ textColorGhostPressedWarning: string;
218
+ textColorGhostFocusWarning: string;
219
+ textColorGhostDisabledWarning: string;
220
+ borderWarning: string;
221
+ borderHoverWarning: string;
222
+ borderPressedWarning: string;
223
+ borderFocusWarning: string;
224
+ borderDisabledWarning: string;
225
+ rippleColorWarning: string;
226
+ colorError: string;
227
+ colorHoverError: string;
228
+ colorPressedError: string;
229
+ colorFocusError: string;
230
+ colorDisabledError: string;
231
+ textColorError: string;
232
+ textColorHoverError: string;
233
+ textColorPressedError: string;
234
+ textColorFocusError: string;
235
+ textColorDisabledError: string;
236
+ textColorTextError: string;
237
+ textColorTextHoverError: string;
238
+ textColorTextPressedError: string;
239
+ textColorTextFocusError: string;
240
+ textColorTextDisabledError: string;
241
+ textColorGhostError: string;
242
+ textColorGhostHoverError: string;
243
+ textColorGhostPressedError: string;
244
+ textColorGhostFocusError: string;
245
+ textColorGhostDisabledError: string;
246
+ borderError: string;
247
+ borderHoverError: string;
248
+ borderPressedError: string;
249
+ borderFocusError: string;
250
+ borderDisabledError: string;
251
+ rippleColorError: string;
252
+ waveOpacity: string;
253
+ fontWeight: string;
254
+ fontWeightStrong: string;
255
+ paddingTiny: string;
256
+ paddingSmall: string;
257
+ paddingMedium: string;
258
+ paddingLarge: string;
259
+ paddingRoundTiny: string;
260
+ paddingRoundSmall: string;
261
+ paddingRoundMedium: string;
262
+ paddingRoundLarge: string;
263
+ iconMarginTiny: string;
264
+ iconMarginSmall: string;
265
+ iconMarginMedium: string;
266
+ iconMarginLarge: string;
267
+ iconSizeTiny: string;
268
+ iconSizeSmall: string;
269
+ iconSizeMedium: string;
270
+ iconSizeLarge: string;
271
+ rippleDuration: string;
272
+ }, any>;
273
+ Checkbox: Theme<"Checkbox", {
274
+ labelLineHeight: string;
275
+ fontSizeSmall: string;
276
+ fontSizeMedium: string;
277
+ fontSizeLarge: string;
278
+ borderRadius: string;
279
+ color: string;
280
+ colorChecked: string;
281
+ colorDisabled: string;
282
+ colorDisabledChecked: string;
283
+ colorTableHeader: string;
284
+ colorTableHeaderModal: string;
285
+ colorTableHeaderPopover: string;
286
+ checkMarkColor: string;
287
+ checkMarkColorDisabled: string;
288
+ checkMarkColorDisabledChecked: string;
289
+ border: string;
290
+ borderDisabled: string;
291
+ borderDisabledChecked: string;
292
+ borderChecked: string;
293
+ borderFocus: string;
294
+ boxShadowFocus: string;
295
+ textColor: string;
296
+ textColorDisabled: string;
297
+ sizeSmall: string;
298
+ sizeMedium: string;
299
+ sizeLarge: string;
300
+ labelPadding: string;
301
+ labelFontWeight: string;
302
+ }, any>;
303
+ Radio: Theme<"Radio", {
304
+ labelLineHeight: string;
305
+ buttonHeightSmall: string;
306
+ buttonHeightMedium: string;
307
+ buttonHeightLarge: string;
308
+ fontSizeSmall: string;
309
+ fontSizeMedium: string;
310
+ fontSizeLarge: string;
311
+ boxShadow: string;
312
+ boxShadowActive: string;
313
+ boxShadowFocus: string;
314
+ boxShadowHover: string;
315
+ boxShadowDisabled: string;
316
+ color: string;
317
+ colorDisabled: string;
318
+ colorActive: string;
319
+ textColor: string;
320
+ textColorDisabled: string;
321
+ dotColorActive: string;
322
+ dotColorDisabled: string;
323
+ buttonBorderColor: string;
324
+ buttonBorderColorActive: string;
325
+ buttonBorderColorHover: string;
326
+ buttonColor: string;
327
+ buttonColorActive: string;
328
+ buttonTextColor: string;
329
+ buttonTextColorActive: string;
330
+ buttonTextColorHover: string;
331
+ opacityDisabled: string;
332
+ buttonBoxShadowFocus: string;
333
+ buttonBoxShadowHover: string;
334
+ buttonBoxShadow: string;
335
+ buttonBorderRadius: string;
336
+ radioSizeSmall: string;
337
+ radioSizeMedium: string;
338
+ radioSizeLarge: string;
339
+ labelPadding: string;
340
+ labelFontWeight: string;
341
+ }, any>;
342
+ Pagination: Theme<"Pagination", {
343
+ buttonColor: string;
344
+ buttonColorHover: string;
345
+ buttonColorPressed: string;
346
+ buttonBorder: string;
347
+ buttonBorderHover: string;
348
+ buttonBorderPressed: string;
349
+ buttonIconColor: string;
350
+ buttonIconColorHover: string;
351
+ buttonIconColorPressed: string;
352
+ itemTextColor: string;
353
+ itemTextColorHover: string;
354
+ itemTextColorPressed: string;
355
+ itemTextColorActive: string;
356
+ itemTextColorDisabled: string;
357
+ itemColor: string;
358
+ itemColorHover: string;
359
+ itemColorPressed: string;
360
+ itemColorActive: string;
361
+ itemColorActiveHover: string;
362
+ itemColorDisabled: string;
363
+ itemBorder: string;
364
+ itemBorderHover: string;
365
+ itemBorderPressed: string;
366
+ itemBorderActive: string;
367
+ itemBorderDisabled: string;
368
+ itemBorderRadius: string;
369
+ itemSizeSmall: string;
370
+ itemSizeMedium: string;
371
+ itemSizeLarge: string;
372
+ itemFontSizeSmall: string;
373
+ itemFontSizeMedium: string;
374
+ itemFontSizeLarge: string;
375
+ jumperFontSizeSmall: string;
376
+ jumperFontSizeMedium: string;
377
+ jumperFontSizeLarge: string;
378
+ jumperTextColor: string;
379
+ jumperTextColorDisabled: string;
380
+ itemPaddingSmall: string;
381
+ itemMarginSmall: string;
382
+ itemMarginSmallRtl: string;
383
+ itemPaddingMedium: string;
384
+ itemMarginMedium: string;
385
+ itemMarginMediumRtl: string;
386
+ itemPaddingLarge: string;
387
+ itemMarginLarge: string;
388
+ itemMarginLargeRtl: string;
389
+ buttonIconSizeSmall: string;
390
+ buttonIconSizeMedium: string;
391
+ buttonIconSizeLarge: string;
392
+ inputWidthSmall: string;
393
+ selectWidthSmall: string;
394
+ inputMarginSmall: string;
395
+ inputMarginSmallRtl: string;
396
+ selectMarginSmall: string;
397
+ prefixMarginSmall: string;
398
+ suffixMarginSmall: string;
399
+ inputWidthMedium: string;
400
+ selectWidthMedium: string;
401
+ inputMarginMedium: string;
402
+ inputMarginMediumRtl: string;
403
+ selectMarginMedium: string;
404
+ prefixMarginMedium: string;
405
+ suffixMarginMedium: string;
406
+ inputWidthLarge: string;
407
+ selectWidthLarge: string;
408
+ inputMarginLarge: string;
409
+ inputMarginLargeRtl: string;
410
+ selectMarginLarge: string;
411
+ prefixMarginLarge: string;
412
+ suffixMarginLarge: string;
413
+ }, {
414
+ Select: Theme<"Select", {
415
+ menuBoxShadow: string;
416
+ }, {
417
+ InternalSelection: Theme<"InternalSelection", {
418
+ fontSizeTiny: string;
419
+ fontSizeSmall: string;
420
+ fontSizeMedium: string;
421
+ fontSizeLarge: string;
422
+ heightTiny: string;
423
+ heightSmall: string;
424
+ heightMedium: string;
425
+ heightLarge: string;
426
+ borderRadius: string;
427
+ fontWeight: string;
428
+ textColor: string;
429
+ textColorDisabled: string;
430
+ placeholderColor: string;
431
+ placeholderColorDisabled: string;
432
+ color: string;
433
+ colorDisabled: string;
434
+ colorActive: string;
435
+ border: string;
436
+ borderHover: string;
437
+ borderActive: string;
438
+ borderFocus: string;
439
+ boxShadowHover: string;
440
+ boxShadowActive: string;
441
+ boxShadowFocus: string;
442
+ caretColor: string;
443
+ arrowColor: string;
444
+ arrowColorDisabled: string;
445
+ loadingColor: string;
446
+ borderWarning: string;
447
+ borderHoverWarning: string;
448
+ borderActiveWarning: string;
449
+ borderFocusWarning: string;
450
+ boxShadowHoverWarning: string;
451
+ boxShadowActiveWarning: string;
452
+ boxShadowFocusWarning: string;
453
+ colorActiveWarning: string;
454
+ caretColorWarning: string;
455
+ borderError: string;
456
+ borderHoverError: string;
457
+ borderActiveError: string;
458
+ borderFocusError: string;
459
+ boxShadowHoverError: string;
460
+ boxShadowActiveError: string;
461
+ boxShadowFocusError: string;
462
+ colorActiveError: string;
463
+ caretColorError: string;
464
+ clearColor: string;
465
+ clearColorHover: string;
466
+ clearColorPressed: string;
467
+ paddingSingle: string;
468
+ paddingMultiple: string;
469
+ clearSize: string;
470
+ arrowSize: string;
471
+ }, {
472
+ Popover: Theme<"Popover", {
473
+ fontSize: string;
474
+ borderRadius: string;
475
+ color: string;
476
+ dividerColor: string;
477
+ textColor: string;
478
+ boxShadow: string;
479
+ space: string;
480
+ spaceArrow: string;
481
+ arrowOffset: string;
482
+ arrowOffsetVertical: string;
483
+ arrowHeight: string;
484
+ padding: string;
485
+ }, {
486
+ Scrollbar: Theme<"Scrollbar", {
487
+ height: string;
488
+ width: string;
489
+ borderRadius: string;
490
+ color: string;
491
+ colorHover: string;
492
+ railInsetHorizontalBottom: string;
493
+ railInsetHorizontalTop: string;
494
+ railInsetVerticalRight: string;
495
+ railInsetVerticalLeft: string;
496
+ railColor: string;
497
+ }, any>;
498
+ }>;
499
+ }>;
500
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
501
+ optionFontSizeTiny: string;
502
+ optionFontSizeSmall: string;
503
+ optionFontSizeMedium: string;
504
+ optionFontSizeLarge: string;
505
+ optionFontSizeHuge: string;
506
+ optionHeightTiny: string;
507
+ optionHeightSmall: string;
508
+ optionHeightMedium: string;
509
+ optionHeightLarge: string;
510
+ optionHeightHuge: string;
511
+ borderRadius: string;
512
+ color: string;
513
+ groupHeaderTextColor: string;
514
+ actionDividerColor: string;
515
+ optionTextColor: string;
516
+ optionTextColorPressed: string;
517
+ optionTextColorDisabled: string;
518
+ optionTextColorActive: string;
519
+ optionOpacityDisabled: string;
520
+ optionCheckColor: string;
521
+ optionColorPending: string;
522
+ optionColorActive: string;
523
+ optionColorActivePending: string;
524
+ actionTextColor: string;
525
+ loadingColor: string;
526
+ height: string;
527
+ paddingTiny: string;
528
+ paddingSmall: string;
529
+ paddingMedium: string;
530
+ paddingLarge: string;
531
+ paddingHuge: string;
532
+ optionPaddingTiny: string;
533
+ optionPaddingSmall: string;
534
+ optionPaddingMedium: string;
535
+ optionPaddingLarge: string;
536
+ optionPaddingHuge: string;
537
+ loadingSize: string;
538
+ }, {
539
+ Scrollbar: Theme<"Scrollbar", {
540
+ height: string;
541
+ width: string;
542
+ borderRadius: string;
543
+ color: string;
544
+ colorHover: string;
545
+ railInsetHorizontalBottom: string;
546
+ railInsetHorizontalTop: string;
547
+ railInsetVerticalRight: string;
548
+ railInsetVerticalLeft: string;
549
+ railColor: string;
550
+ }, any>;
551
+ Empty: Theme<"Empty", {
552
+ fontSizeTiny: string;
553
+ fontSizeSmall: string;
554
+ fontSizeMedium: string;
555
+ fontSizeLarge: string;
556
+ fontSizeHuge: string;
557
+ textColor: string;
558
+ iconColor: string;
559
+ extraTextColor: string;
560
+ iconSizeTiny: string;
561
+ iconSizeSmall: string;
562
+ iconSizeMedium: string;
563
+ iconSizeLarge: string;
564
+ iconSizeHuge: string;
565
+ }, any>;
566
+ }>;
567
+ }>;
568
+ Input: Theme<"Input", {
569
+ fontWeight: string;
570
+ countTextColorDisabled: string;
571
+ countTextColor: string;
572
+ heightTiny: string;
573
+ heightSmall: string;
574
+ heightMedium: string;
575
+ heightLarge: string;
576
+ fontSizeTiny: string;
577
+ fontSizeSmall: string;
578
+ fontSizeMedium: string;
579
+ fontSizeLarge: string;
580
+ lineHeight: string;
581
+ lineHeightTextarea: string;
582
+ borderRadius: string;
583
+ iconSize: string;
584
+ groupLabelColor: string;
585
+ groupLabelTextColor: string;
586
+ textColor: string;
587
+ textColorDisabled: string;
588
+ textDecorationColor: string;
589
+ caretColor: string;
590
+ placeholderColor: string;
591
+ placeholderColorDisabled: string;
592
+ color: string;
593
+ colorDisabled: string;
594
+ colorFocus: string;
595
+ groupLabelBorder: string;
596
+ border: string;
597
+ borderHover: string;
598
+ borderDisabled: string;
599
+ borderFocus: string;
600
+ boxShadowFocus: string;
601
+ loadingColor: string;
602
+ loadingColorWarning: string;
603
+ borderWarning: string;
604
+ borderHoverWarning: string;
605
+ colorFocusWarning: string;
606
+ borderFocusWarning: string;
607
+ boxShadowFocusWarning: string;
608
+ caretColorWarning: string;
609
+ loadingColorError: string;
610
+ borderError: string;
611
+ borderHoverError: string;
612
+ colorFocusError: string;
613
+ borderFocusError: string;
614
+ boxShadowFocusError: string;
615
+ caretColorError: string;
616
+ clearColor: string;
617
+ clearColorHover: string;
618
+ clearColorPressed: string;
619
+ iconColor: string;
620
+ iconColorDisabled: string;
621
+ iconColorHover: string;
622
+ iconColorPressed: string;
623
+ suffixTextColor: string;
624
+ paddingTiny: string;
625
+ paddingSmall: string;
626
+ paddingMedium: string;
627
+ paddingLarge: string;
628
+ clearSize: string;
629
+ }, {
630
+ Scrollbar: Theme<"Scrollbar", {
631
+ height: string;
632
+ width: string;
633
+ borderRadius: string;
634
+ color: string;
635
+ colorHover: string;
636
+ railInsetHorizontalBottom: string;
637
+ railInsetHorizontalTop: string;
638
+ railInsetVerticalRight: string;
639
+ railInsetVerticalLeft: string;
640
+ railColor: string;
641
+ }, any>;
642
+ }>;
643
+ Popselect: Theme<"Popselect", {
644
+ menuBoxShadow: string;
645
+ }, {
646
+ Popover: Theme<"Popover", {
647
+ fontSize: string;
648
+ borderRadius: string;
649
+ color: string;
650
+ dividerColor: string;
651
+ textColor: string;
652
+ boxShadow: string;
653
+ space: string;
654
+ spaceArrow: string;
655
+ arrowOffset: string;
656
+ arrowOffsetVertical: string;
657
+ arrowHeight: string;
658
+ padding: string;
659
+ }, {
660
+ Scrollbar: Theme<"Scrollbar", {
661
+ height: string;
662
+ width: string;
663
+ borderRadius: string;
664
+ color: string;
665
+ colorHover: string;
666
+ railInsetHorizontalBottom: string;
667
+ railInsetHorizontalTop: string;
668
+ railInsetVerticalRight: string;
669
+ railInsetVerticalLeft: string;
670
+ railColor: string;
671
+ }, any>;
672
+ }>;
673
+ InternalSelectMenu: Theme<"InternalSelectMenu", {
674
+ optionFontSizeTiny: string;
675
+ optionFontSizeSmall: string;
676
+ optionFontSizeMedium: string;
677
+ optionFontSizeLarge: string;
678
+ optionFontSizeHuge: string;
679
+ optionHeightTiny: string;
680
+ optionHeightSmall: string;
681
+ optionHeightMedium: string;
682
+ optionHeightLarge: string;
683
+ optionHeightHuge: string;
684
+ borderRadius: string;
685
+ color: string;
686
+ groupHeaderTextColor: string;
687
+ actionDividerColor: string;
688
+ optionTextColor: string;
689
+ optionTextColorPressed: string;
690
+ optionTextColorDisabled: string;
691
+ optionTextColorActive: string;
692
+ optionOpacityDisabled: string;
693
+ optionCheckColor: string;
694
+ optionColorPending: string;
695
+ optionColorActive: string;
696
+ optionColorActivePending: string;
697
+ actionTextColor: string;
698
+ loadingColor: string;
699
+ height: string;
700
+ paddingTiny: string;
701
+ paddingSmall: string;
702
+ paddingMedium: string;
703
+ paddingLarge: string;
704
+ paddingHuge: string;
705
+ optionPaddingTiny: string;
706
+ optionPaddingSmall: string;
707
+ optionPaddingMedium: string;
708
+ optionPaddingLarge: string;
709
+ optionPaddingHuge: string;
710
+ loadingSize: string;
711
+ }, {
712
+ Scrollbar: Theme<"Scrollbar", {
713
+ height: string;
714
+ width: string;
715
+ borderRadius: string;
716
+ color: string;
717
+ colorHover: string;
718
+ railInsetHorizontalBottom: string;
719
+ railInsetHorizontalTop: string;
720
+ railInsetVerticalRight: string;
721
+ railInsetVerticalLeft: string;
722
+ railColor: string;
723
+ }, any>;
724
+ Empty: Theme<"Empty", {
725
+ fontSizeTiny: string;
726
+ fontSizeSmall: string;
727
+ fontSizeMedium: string;
728
+ fontSizeLarge: string;
729
+ fontSizeHuge: string;
730
+ textColor: string;
731
+ iconColor: string;
732
+ extraTextColor: string;
733
+ iconSizeTiny: string;
734
+ iconSizeSmall: string;
735
+ iconSizeMedium: string;
736
+ iconSizeLarge: string;
737
+ iconSizeHuge: string;
738
+ }, any>;
739
+ }>;
740
+ }>;
741
+ }>;
742
+ Scrollbar: Theme<"Scrollbar", {
743
+ height: string;
744
+ width: string;
745
+ borderRadius: string;
746
+ color: string;
747
+ colorHover: string;
748
+ railInsetHorizontalBottom: string;
749
+ railInsetHorizontalTop: string;
750
+ railInsetVerticalRight: string;
751
+ railInsetVerticalLeft: string;
752
+ railColor: string;
753
+ }, any>;
754
+ Empty: Theme<"Empty", {
755
+ fontSizeTiny: string;
756
+ fontSizeSmall: string;
757
+ fontSizeMedium: string;
758
+ fontSizeLarge: string;
759
+ fontSizeHuge: string;
760
+ textColor: string;
761
+ iconColor: string;
762
+ extraTextColor: string;
763
+ iconSizeTiny: string;
764
+ iconSizeSmall: string;
765
+ iconSizeMedium: string;
766
+ iconSizeLarge: string;
767
+ iconSizeHuge: string;
768
+ }, any>;
769
+ Popover: 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: 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
+ Ellipsis: Theme<"Ellipsis", unknown, {
797
+ Tooltip: Theme<"Tooltip", {
798
+ borderRadius: string;
799
+ boxShadow: string;
800
+ color: string;
801
+ textColor: string;
802
+ padding: string;
803
+ }, {
804
+ Popover: Theme<"Popover", {
805
+ fontSize: string;
806
+ borderRadius: string;
807
+ color: string;
808
+ dividerColor: string;
809
+ textColor: string;
810
+ boxShadow: string;
811
+ space: string;
812
+ spaceArrow: string;
813
+ arrowOffset: string;
814
+ arrowOffsetVertical: string;
815
+ arrowHeight: string;
816
+ padding: string;
817
+ }, {
818
+ Scrollbar: Theme<"Scrollbar", {
819
+ height: string;
820
+ width: string;
821
+ borderRadius: string;
822
+ color: string;
823
+ colorHover: string;
824
+ railInsetHorizontalBottom: string;
825
+ railInsetHorizontalTop: string;
826
+ railInsetVerticalRight: string;
827
+ railInsetVerticalLeft: string;
828
+ railColor: string;
829
+ }, any>;
830
+ }>;
831
+ }>;
832
+ }>;
833
+ Dropdown: Theme<"Dropdown", {
834
+ optionHeightSmall: string;
835
+ optionHeightMedium: string;
836
+ optionHeightLarge: string;
837
+ optionHeightHuge: string;
838
+ borderRadius: string;
839
+ fontSizeSmall: string;
840
+ fontSizeMedium: string;
841
+ fontSizeLarge: string;
842
+ fontSizeHuge: string;
843
+ optionTextColor: string;
844
+ optionTextColorHover: string;
845
+ optionTextColorActive: string;
846
+ optionTextColorChildActive: string;
847
+ color: string;
848
+ dividerColor: string;
849
+ suffixColor: string;
850
+ prefixColor: string;
851
+ optionColorHover: string;
852
+ optionColorActive: string;
853
+ groupHeaderTextColor: string;
854
+ optionTextColorInverted: string;
855
+ optionTextColorHoverInverted: string;
856
+ optionTextColorActiveInverted: string;
857
+ optionTextColorChildActiveInverted: string;
858
+ colorInverted: string;
859
+ dividerColorInverted: string;
860
+ suffixColorInverted: string;
861
+ prefixColorInverted: string;
862
+ optionColorHoverInverted: string;
863
+ optionColorActiveInverted: string;
864
+ groupHeaderTextColorInverted: string;
865
+ optionOpacityDisabled: string;
866
+ padding: string;
867
+ optionIconSizeSmall: string;
868
+ optionIconSizeMedium: string;
869
+ optionIconSizeLarge: string;
870
+ optionIconSizeHuge: string;
871
+ optionSuffixWidthSmall: string;
872
+ optionSuffixWidthMedium: string;
873
+ optionSuffixWidthLarge: string;
874
+ optionSuffixWidthHuge: string;
875
+ optionIconSuffixWidthSmall: string;
876
+ optionIconSuffixWidthMedium: string;
877
+ optionIconSuffixWidthLarge: string;
878
+ optionIconSuffixWidthHuge: string;
879
+ optionPrefixWidthSmall: string;
880
+ optionPrefixWidthMedium: string;
881
+ optionPrefixWidthLarge: string;
882
+ optionPrefixWidthHuge: string;
883
+ optionIconPrefixWidthSmall: string;
884
+ optionIconPrefixWidthMedium: string;
885
+ optionIconPrefixWidthLarge: string;
886
+ optionIconPrefixWidthHuge: string;
887
+ }, {
888
+ Popover: Theme<"Popover", {
889
+ fontSize: string;
890
+ borderRadius: string;
891
+ color: string;
892
+ dividerColor: string;
893
+ textColor: string;
894
+ boxShadow: string;
895
+ space: string;
896
+ spaceArrow: string;
897
+ arrowOffset: string;
898
+ arrowOffsetVertical: string;
899
+ arrowHeight: string;
900
+ padding: string;
901
+ }, {
902
+ Scrollbar: Theme<"Scrollbar", {
903
+ height: string;
904
+ width: string;
905
+ borderRadius: string;
906
+ color: string;
907
+ colorHover: string;
908
+ railInsetHorizontalBottom: string;
909
+ railInsetHorizontalTop: string;
910
+ railInsetVerticalRight: string;
911
+ railInsetVerticalLeft: string;
912
+ railColor: string;
913
+ }, any>;
914
+ }>;
915
+ }>;
916
+ }> | undefined> | undefined>;
917
+ };