@uzum-tech/ui 0.1.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1214) hide show
  1. package/README.md +0 -10
  2. package/dist/index.js +6610 -6311
  3. package/dist/index.prod.js +2 -2
  4. package/es/_internal/checkbox/index.d.ts +2 -0
  5. package/es/_internal/checkbox/index.js +1 -0
  6. package/es/_internal/checkbox/src/use-checkbox.d.ts +53 -0
  7. package/es/_internal/checkbox/src/use-checkbox.js +159 -0
  8. package/es/_internal/close/src/styles/index.cssr.js +2 -0
  9. package/es/_internal/icon/src/styles/index.cssr.js +2 -2
  10. package/es/_internal/icons/ChevronDown.js +2 -2
  11. package/es/_internal/icons/ChevronLeft.js +1 -1
  12. package/es/_internal/icons/ChevronRight.js +1 -1
  13. package/es/_internal/icons/Clear.js +2 -10
  14. package/es/_internal/icons/ClearSmall.d.ts +2 -0
  15. package/es/_internal/icons/ClearSmall.js +8 -0
  16. package/es/_internal/icons/Close.js +2 -4
  17. package/es/_internal/icons/Error.js +2 -4
  18. package/es/_internal/icons/Inactive.d.ts +2 -0
  19. package/es/_internal/icons/Inactive.js +8 -0
  20. package/es/_internal/icons/InfoOutline.d.ts +2 -0
  21. package/es/_internal/icons/InfoOutline.js +4 -0
  22. package/es/_internal/icons/Success.js +2 -4
  23. package/es/_internal/icons/Warning.js +2 -4
  24. package/es/_internal/icons/index.d.ts +3 -0
  25. package/es/_internal/icons/index.js +3 -0
  26. package/es/_internal/index.d.ts +4 -0
  27. package/es/_internal/index.js +2 -0
  28. package/es/_internal/radio/index.d.ts +2 -0
  29. package/es/_internal/radio/index.js +1 -0
  30. package/es/_internal/radio/src/interface.d.ts +12 -0
  31. package/{lib → es/_internal}/radio/src/use-radio.d.ts +6 -13
  32. package/es/{radio → _internal/radio}/src/use-radio.js +15 -19
  33. package/es/_internal/select-menu/src/SelectMenu.d.ts +180 -211
  34. package/es/_internal/select-menu/src/SelectMenu.js +3 -2
  35. package/es/_internal/select-menu/src/interface.d.ts +1 -1
  36. package/es/_internal/select-menu/src/styles/index.cssr.js +24 -18
  37. package/es/_internal/select-menu/styles/light.d.ts +17 -23
  38. package/es/_internal/select-menu/styles/light.js +34 -3
  39. package/es/_internal/selection/index.d.ts +1 -0
  40. package/es/_internal/selection/src/Selection.d.ts +583 -183
  41. package/es/_internal/selection/src/Selection.js +102 -28
  42. package/es/_internal/selection/src/interface.d.ts +1 -0
  43. package/es/_internal/selection/src/styles/index.cssr.d.ts +2 -1
  44. package/es/_internal/selection/src/styles/index.cssr.js +128 -35
  45. package/es/_internal/selection/styles/dark.js +2 -26
  46. package/es/_internal/selection/styles/light.d.ts +121 -17
  47. package/es/_internal/selection/styles/light.js +120 -20
  48. package/es/_internal/skeleton/src/styles/index.cssr.js +1 -1
  49. package/es/_internal/skeleton/styles/dark.js +2 -11
  50. package/es/_internal/skeleton/styles/light.d.ts +1 -2
  51. package/es/_internal/skeleton/styles/light.js +4 -4
  52. package/es/_styles/common/_common.d.ts +37 -12
  53. package/es/_styles/common/_common.js +44 -19
  54. package/es/_styles/common/dark.js +2 -98
  55. package/es/_styles/common/light.d.ts +88 -99
  56. package/es/_styles/common/light.js +1 -103
  57. package/es/_styles/global/index.cssr.js +4 -5
  58. package/es/_utils/index.d.ts +3 -0
  59. package/es/_utils/index.js +3 -0
  60. package/es/_utils/inject/index.d.ts +2 -0
  61. package/es/_utils/inject/index.js +7 -0
  62. package/es/_utils/themes/index.d.ts +1 -0
  63. package/es/_utils/themes/index.js +1 -0
  64. package/es/_utils/themes/rewrite-styles.d.ts +1 -0
  65. package/es/_utils/themes/rewrite-styles.js +6 -0
  66. package/es/_utils/types/index.d.ts +1 -0
  67. package/es/_utils/types/index.js +1 -0
  68. package/es/_utils/types/utility.types.d.ts +10 -0
  69. package/es/_utils/types/utility.types.js +1 -0
  70. package/es/_utils/uzum/prop.d.ts +2 -2
  71. package/es/_utils/uzum/prop.js +0 -2
  72. package/es/alert/src/Alert.d.ts +438 -271
  73. package/es/alert/src/Alert.js +53 -57
  74. package/es/alert/src/styles/index.cssr.js +92 -48
  75. package/es/alert/styles/_common.d.ts +7 -6
  76. package/es/alert/styles/_common.js +11 -8
  77. package/es/alert/styles/dark.js +2 -15
  78. package/es/alert/styles/light.d.ts +33 -16
  79. package/es/alert/styles/light.js +16 -9
  80. package/es/alert/styles/types.d.ts +4 -0
  81. package/es/alert/styles/types.js +1 -0
  82. package/es/anchor/src/AnchorAdapter.d.ts +30 -21
  83. package/es/anchor/src/AnchorAdapter.js +2 -1
  84. package/es/anchor/src/styles/index.cssr.js +2 -1
  85. package/es/anchor/styles/light.d.ts +4 -3
  86. package/es/anchor/styles/light.js +16 -5
  87. package/es/auto-complete/src/AutoComplete.d.ts +317 -327
  88. package/es/auto-complete/styles/light.d.ts +22 -22
  89. package/es/auto-complete/styles/light.js +2 -2
  90. package/es/avatar/src/Avatar.d.ts +0 -29
  91. package/es/avatar/src/Avatar.js +4 -7
  92. package/es/avatar/src/interface.d.ts +1 -1
  93. package/es/avatar/src/styles/index.cssr.js +2 -4
  94. package/es/avatar/styles/light.d.ts +0 -3
  95. package/es/avatar/styles/light.js +7 -11
  96. package/es/avatar-group/src/AvatarGroup.d.ts +88 -129
  97. package/es/avatar-group/styles/light.d.ts +0 -3
  98. package/es/back-top/src/BackTop.d.ts +24 -24
  99. package/es/back-top/styles/dark.js +2 -5
  100. package/es/back-top/styles/light.d.ts +5 -5
  101. package/es/back-top/styles/light.js +16 -4
  102. package/es/badge/src/Badge.d.ts +0 -10
  103. package/es/badge/src/Badge.js +1 -2
  104. package/es/badge/src/styles/index.cssr.js +0 -2
  105. package/es/badge/styles/dark.js +2 -12
  106. package/es/badge/styles/light.d.ts +1 -2
  107. package/es/badge/styles/light.js +8 -9
  108. package/es/breadcrumb/src/Breadcrumb.d.ts +10 -40
  109. package/es/breadcrumb/src/Breadcrumb.js +2 -5
  110. package/es/breadcrumb/src/styles/index.cssr.js +4 -9
  111. package/es/breadcrumb/styles/light.d.ts +1 -4
  112. package/es/breadcrumb/styles/light.js +11 -3
  113. package/es/button/src/Button.d.ts +11 -11
  114. package/es/button/src/Button.js +4 -4
  115. package/es/button/src/styles/index.cssr.js +4 -5
  116. package/es/button/styles/dark.js +1 -8
  117. package/es/button/styles/light.d.ts +1 -1
  118. package/es/button/styles/light.js +18 -18
  119. package/es/calendar/src/Calendar.d.ts +108 -119
  120. package/es/calendar/styles/light.d.ts +3 -3
  121. package/es/calendar/styles/light.js +23 -5
  122. package/es/card/src/Card.d.ts +295 -272
  123. package/es/card/src/Card.js +13 -16
  124. package/es/card/src/styles/index.cssr.js +6 -20
  125. package/es/card/styles/_common.d.ts +0 -6
  126. package/es/card/styles/_common.js +1 -7
  127. package/es/card/styles/dark.js +1 -8
  128. package/es/card/styles/light.d.ts +21 -17
  129. package/es/card/styles/light.js +2 -5
  130. package/es/cascader/src/Cascader.d.ts +1195 -555
  131. package/es/cascader/src/CascaderMenu.d.ts +207 -153
  132. package/es/cascader/src/CascaderOption.d.ts +207 -153
  133. package/es/cascader/src/CascaderSelectMenu.d.ts +207 -153
  134. package/es/cascader/src/CascaderSubmenu.d.ts +207 -153
  135. package/es/cascader/src/styles/index.cssr.js +3 -3
  136. package/es/cascader/styles/light.d.ts +109 -44
  137. package/es/cascader/styles/light.js +12 -12
  138. package/es/checkbox/index.d.ts +1 -1
  139. package/es/checkbox/src/Checkbox.d.ts +457 -304
  140. package/es/checkbox/src/Checkbox.js +45 -179
  141. package/es/checkbox/src/CheckboxGroup.d.ts +2 -12
  142. package/es/checkbox/src/CheckboxGroup.js +2 -2
  143. package/es/checkbox/src/styles/index.cssr.js +113 -190
  144. package/es/checkbox/styles/_common.d.ts +0 -3
  145. package/es/checkbox/styles/_common.js +3 -6
  146. package/es/checkbox/styles/dark.js +1 -7
  147. package/es/checkbox/styles/light.d.ts +29 -13
  148. package/es/checkbox/styles/light.js +2 -4
  149. package/es/code/styles/dark.js +7 -20
  150. package/es/code/styles/light.d.ts +1 -1
  151. package/es/code/styles/light.js +5 -5
  152. package/es/collapse/src/Collapse.d.ts +126 -104
  153. package/es/collapse/src/Collapse.js +4 -1
  154. package/es/collapse/src/CollapseItem.d.ts +2 -1
  155. package/es/collapse/src/CollapseItem.js +12 -11
  156. package/es/collapse/src/interface.d.ts +1 -0
  157. package/es/collapse/src/styles/index.cssr.js +7 -2
  158. package/es/collapse/styles/light.d.ts +3 -0
  159. package/es/collapse/styles/light.js +12 -9
  160. package/es/color-picker/src/ColorInputUnit.d.ts +103 -106
  161. package/es/color-picker/src/ColorPicker.d.ts +138 -63
  162. package/es/color-picker/src/ColorPicker.js +4 -1
  163. package/es/color-picker/src/ColorPickerTrigger.js +1 -6
  164. package/es/color-picker/src/styles/index.cssr.js +13 -1
  165. package/es/color-picker/styles/light.d.ts +20 -7
  166. package/es/color-picker/styles/light.js +15 -10
  167. package/es/components.d.ts +2 -0
  168. package/es/components.js +2 -0
  169. package/es/config-provider/src/internal-interface.d.ts +7 -2
  170. package/es/data-table/src/DataTable.d.ts +1978 -1437
  171. package/es/data-table/src/DataTable.js +2 -3
  172. package/es/data-table/src/HeaderButton/FilterButton.d.ts +457 -347
  173. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +462 -352
  174. package/es/data-table/src/TableParts/Body.d.ts +457 -347
  175. package/es/data-table/src/TableParts/Body.js +3 -2
  176. package/es/data-table/src/TableParts/Cell.d.ts +914 -694
  177. package/es/data-table/src/TableParts/Header.d.ts +457 -347
  178. package/es/data-table/src/TableParts/Header.js +3 -1
  179. package/es/data-table/src/interface.d.ts +750 -534
  180. package/es/data-table/src/styles/index.cssr.js +29 -36
  181. package/es/data-table/styles/dark.js +1 -6
  182. package/es/data-table/styles/light.d.ts +254 -183
  183. package/es/data-table/styles/light.js +58 -10
  184. package/es/date-picker/src/DatePicker.d.ts +748 -433
  185. package/es/date-picker/src/DatePicker.js +55 -19
  186. package/es/date-picker/src/interface.d.ts +2 -2
  187. package/es/date-picker/src/panel/date.d.ts +166 -138
  188. package/es/date-picker/src/panel/daterange.d.ts +160 -138
  189. package/es/date-picker/src/panel/datetime.d.ts +160 -138
  190. package/es/date-picker/src/panel/datetimerange.d.ts +160 -138
  191. package/es/date-picker/src/panel/monthrange.d.ts +160 -138
  192. package/es/date-picker/src/panel/panelMonth.d.ts +320 -276
  193. package/es/date-picker/src/panel/panelMonth.js +3 -3
  194. package/es/date-picker/src/panel/panelMonthContent.d.ts +160 -138
  195. package/es/date-picker/src/panel/panelYear.d.ts +320 -276
  196. package/es/date-picker/src/panel/panelYear.js +3 -3
  197. package/es/date-picker/src/panel/panelYearContent.d.ts +160 -138
  198. package/es/date-picker/src/panel/use-calendar.d.ts +160 -138
  199. package/es/date-picker/src/panel/use-dual-calendar.d.ts +160 -138
  200. package/es/date-picker/src/panel/use-panel-common.d.ts +160 -138
  201. package/es/date-picker/src/styles/index.cssr.js +75 -64
  202. package/es/date-picker/styles/_common.d.ts +0 -1
  203. package/es/date-picker/styles/_common.js +0 -1
  204. package/es/date-picker/styles/dark.js +1 -9
  205. package/es/date-picker/styles/light.d.ts +97 -44
  206. package/es/date-picker/styles/light.js +12 -3
  207. package/es/descriptions/src/Descriptions.d.ts +48 -48
  208. package/es/descriptions/styles/light.d.ts +12 -12
  209. package/es/descriptions/styles/light.js +33 -7
  210. package/es/dialog/src/Dialog.d.ts +166 -159
  211. package/es/dialog/src/Dialog.js +20 -11
  212. package/es/dialog/src/DialogEnvironment.d.ts +6 -3
  213. package/es/dialog/src/DialogEnvironment.js +1 -1
  214. package/es/dialog/src/DialogProvider.d.ts +181 -202
  215. package/es/dialog/src/dialogProps.d.ts +3 -2
  216. package/es/dialog/src/dialogProps.js +2 -1
  217. package/es/dialog/src/styles/index.cssr.js +7 -5
  218. package/es/dialog/styles/_common.d.ts +1 -4
  219. package/es/dialog/styles/_common.js +6 -9
  220. package/es/dialog/styles/light.d.ts +19 -15
  221. package/es/dialog/styles/light.js +2 -7
  222. package/es/divider/src/Divider.d.ts +30 -0
  223. package/es/divider/src/Divider.js +5 -2
  224. package/es/divider/src/styles/index.cssr.js +7 -3
  225. package/es/divider/styles/light.d.ts +3 -0
  226. package/es/divider/styles/light.js +7 -4
  227. package/es/drawer/index.d.ts +1 -0
  228. package/es/drawer/src/Drawer.d.ts +312 -250
  229. package/es/drawer/src/Drawer.js +67 -31
  230. package/es/drawer/src/DrawerBodyWrapper.d.ts +107 -119
  231. package/es/drawer/src/DrawerBodyWrapper.js +6 -30
  232. package/es/drawer/src/DrawerContent.d.ts +158 -122
  233. package/es/drawer/src/DrawerContent.js +80 -11
  234. package/es/drawer/src/interface.d.ts +6 -1
  235. package/es/drawer/src/styles/index.cssr.js +57 -28
  236. package/es/drawer/styles/_common.d.ts +11 -0
  237. package/es/drawer/styles/_common.js +10 -0
  238. package/es/drawer/styles/light.d.ts +38 -24
  239. package/es/drawer/styles/light.js +3 -24
  240. package/es/dropdown/src/Dropdown.d.ts +322 -333
  241. package/es/dropdown/styles/dark.js +1 -10
  242. package/es/dropdown/styles/light.d.ts +34 -34
  243. package/es/dropdown/styles/light.js +57 -9
  244. package/es/dynamic-input/src/DynamicInput.d.ts +189 -170
  245. package/es/dynamic-input/src/InputPreset.d.ts +98 -106
  246. package/es/dynamic-input/src/PairPreset.d.ts +98 -106
  247. package/es/dynamic-input/styles/light.d.ts +10 -7
  248. package/es/dynamic-tags/src/DynamicTags.d.ts +375 -325
  249. package/es/dynamic-tags/src/DynamicTags.js +8 -3
  250. package/es/dynamic-tags/styles/light.d.ts +28 -22
  251. package/es/ellipsis/src/Ellipsis.d.ts +184 -195
  252. package/es/ellipsis/src/PerformantEllipsis.d.ts +54 -54
  253. package/es/ellipsis/styles/light.d.ts +9 -9
  254. package/es/empty/src/Empty.d.ts +24 -24
  255. package/es/empty/styles/light.d.ts +4 -4
  256. package/es/empty/styles/light.js +14 -6
  257. package/es/form/src/Form.d.ts +117 -99
  258. package/es/form/src/FormItem.d.ts +119 -102
  259. package/es/form/src/FormItem.js +3 -4
  260. package/es/form/src/FormItemCol.d.ts +117 -99
  261. package/es/form/src/FormItemGridItem.d.ts +117 -99
  262. package/es/form/src/FormItemRow.d.ts +117 -99
  263. package/es/form/src/styles/form-item.cssr.js +15 -18
  264. package/es/form/styles/light.d.ts +17 -15
  265. package/es/form/styles/light.js +35 -3
  266. package/es/global-style/src/GlobalStyle.js +5 -5
  267. package/es/gradient-text/src/styles/index.cssr.js +1 -0
  268. package/es/gradient-text/styles/dark.js +2 -17
  269. package/es/gradient-text/styles/light.d.ts +1 -1
  270. package/es/gradient-text/styles/light.js +13 -13
  271. package/es/icon/styles/light.js +7 -7
  272. package/es/icon-wrapper/styles/light.js +3 -3
  273. package/es/image/src/Image.d.ts +90 -81
  274. package/es/image/src/ImageGroup.d.ts +90 -81
  275. package/es/image/src/ImagePreview.d.ts +61 -54
  276. package/es/image/src/ImagePreview.js +3 -2
  277. package/es/image/src/interface.d.ts +30 -27
  278. package/es/image/src/styles/index.cssr.js +1 -1
  279. package/es/image/styles/dark.js +2 -9
  280. package/es/image/styles/light.d.ts +13 -11
  281. package/es/image/styles/light.js +7 -5
  282. package/es/input/index.d.ts +1 -1
  283. package/es/input/src/Input.d.ts +166 -147
  284. package/es/input/src/Input.js +8 -5
  285. package/es/input/src/InputGroupLabel.d.ts +68 -41
  286. package/es/input/src/interface.d.ts +1 -1
  287. package/es/input/src/styles/input.cssr.js +5 -6
  288. package/es/input/styles/dark.js +2 -20
  289. package/es/input/styles/light.d.ts +10 -7
  290. package/es/input/styles/light.js +70 -15
  291. package/es/input-number/src/InputNumber.d.ts +204 -208
  292. package/es/input-number/src/InputNumber.js +4 -12
  293. package/es/input-number/src/interface.d.ts +0 -1
  294. package/es/input-number/styles/dark.js +2 -6
  295. package/es/input-number/styles/light.d.ts +12 -13
  296. package/es/input-number/styles/light.js +2 -5
  297. package/es/layout/src/Layout.d.ts +204 -198
  298. package/es/layout/src/LayoutContent.d.ts +102 -99
  299. package/es/layout/src/LayoutFooter.d.ts +18 -0
  300. package/es/layout/src/LayoutHeader.d.ts +12 -0
  301. package/es/layout/src/LayoutSider.d.ts +102 -99
  302. package/es/layout/src/LayoutSider.js +5 -3
  303. package/es/layout/src/ToggleButton.d.ts +2 -2
  304. package/es/layout/styles/dark.js +2 -29
  305. package/es/layout/styles/light.d.ts +4 -0
  306. package/es/layout/styles/light.js +25 -24
  307. package/es/legacy-transfer/src/Transfer.d.ts +538 -359
  308. package/es/legacy-transfer/src/TransferFilter.d.ts +133 -125
  309. package/es/legacy-transfer/src/TransferList.d.ts +133 -125
  310. package/es/legacy-transfer/src/TransferListItem.d.ts +133 -125
  311. package/es/legacy-transfer/styles/dark.js +2 -9
  312. package/es/legacy-transfer/styles/light.d.ts +48 -29
  313. package/es/legacy-transfer/styles/light.js +25 -9
  314. package/es/list/index.d.ts +3 -2
  315. package/es/list/index.js +2 -1
  316. package/es/list/src/List.d.ts +218 -83
  317. package/es/list/src/List.js +37 -22
  318. package/es/list/src/ListItem.d.ts +122 -3
  319. package/es/list/src/ListItem.js +184 -12
  320. package/es/list/src/interface.d.ts +35 -0
  321. package/es/list/src/interface.js +1 -0
  322. package/es/list/src/props.d.ts +228 -0
  323. package/es/list/src/props.js +59 -0
  324. package/es/list/src/styles/index.cssr.js +142 -48
  325. package/es/list/styles/light.d.ts +15 -0
  326. package/es/list/styles/light.js +27 -13
  327. package/es/loading-bar/styles/dark.js +2 -8
  328. package/es/loading-bar/styles/light.d.ts +1 -1
  329. package/es/loading-bar/styles/light.js +4 -4
  330. package/es/log/src/Log.d.ts +88 -99
  331. package/es/log/styles/dark.js +2 -10
  332. package/es/log/styles/light.d.ts +1 -1
  333. package/es/log/styles/light.js +7 -7
  334. package/es/mention/src/Mention.d.ts +314 -325
  335. package/es/mention/styles/dark.js +2 -6
  336. package/es/mention/styles/light.d.ts +23 -23
  337. package/es/mention/styles/light.js +3 -3
  338. package/es/menu/src/Menu.d.ts +490 -501
  339. package/es/menu/src/MenuOption.d.ts +138 -149
  340. package/es/menu/src/Submenu.d.ts +138 -149
  341. package/es/menu/styles/dark.js +1 -14
  342. package/es/menu/styles/light.d.ts +38 -38
  343. package/es/menu/styles/light.js +2 -4
  344. package/es/message/src/Message.d.ts +3 -7
  345. package/es/message/src/Message.js +10 -24
  346. package/es/message/src/MessageProvider.d.ts +195 -258
  347. package/es/message/src/MessageProvider.js +1 -1
  348. package/es/message/src/styles/index.cssr.js +10 -10
  349. package/es/message/styles/_common.d.ts +0 -5
  350. package/es/message/styles/_common.js +3 -8
  351. package/es/message/styles/light.d.ts +23 -30
  352. package/es/message/styles/light.js +14 -7
  353. package/es/message/styles/types.d.ts +4 -0
  354. package/es/message/styles/types.js +1 -0
  355. package/es/modal/src/BodyWrapper.d.ts +140 -173
  356. package/es/modal/src/BodyWrapper.js +7 -13
  357. package/es/modal/src/Modal.d.ts +340 -303
  358. package/es/modal/src/Modal.js +8 -6
  359. package/es/modal/src/presetProps.d.ts +20 -32
  360. package/es/modal/src/presetProps.js +4 -2
  361. package/es/modal/src/styles/index.cssr.js +2 -3
  362. package/es/modal/styles/light.d.ts +39 -27
  363. package/es/modal/styles/light.js +7 -4
  364. package/es/notification/src/Notification.d.ts +15 -7
  365. package/es/notification/src/Notification.js +14 -16
  366. package/es/notification/src/NotificationContainer.d.ts +159 -115
  367. package/es/notification/src/NotificationEnvironment.d.ts +8 -7
  368. package/es/notification/src/NotificationProvider.d.ts +644 -146
  369. package/es/notification/src/NotificationProvider.js +2 -1
  370. package/es/notification/src/styles/index.cssr.js +20 -25
  371. package/es/notification/styles/_common.d.ts +1 -6
  372. package/es/notification/styles/_common.js +2 -7
  373. package/es/notification/styles/light.d.ts +142 -32
  374. package/es/notification/styles/light.js +14 -7
  375. package/es/page-header/src/PageHeader.d.ts +18 -18
  376. package/es/page-header/styles/light.d.ts +4 -4
  377. package/es/page-header/styles/light.js +12 -3
  378. package/es/pagination/src/Pagination.d.ts +1564 -1039
  379. package/es/pagination/src/Pagination.js +1 -2
  380. package/es/pagination/src/styles/index.cssr.js +2 -4
  381. package/es/pagination/styles/dark.js +1 -11
  382. package/es/pagination/styles/light.d.ts +140 -91
  383. package/es/pagination/styles/light.js +73 -7
  384. package/es/popconfirm/src/Popconfirm.d.ts +172 -183
  385. package/es/popconfirm/styles/light.d.ts +9 -9
  386. package/es/popconfirm/styles/light.js +6 -3
  387. package/es/popover/src/Popover.d.ts +35 -35
  388. package/es/popover/src/Popover.js +2 -4
  389. package/es/popover/src/PopoverBody.d.ts +30 -30
  390. package/es/popover/src/PopoverBody.js +1 -6
  391. package/es/popover/styles/light.d.ts +6 -6
  392. package/es/popover/styles/light.js +15 -4
  393. package/es/popselect/src/Popselect.d.ts +286 -327
  394. package/es/popselect/src/PopselectPanel.d.ts +112 -126
  395. package/es/popselect/src/interface.d.ts +1 -1
  396. package/es/popselect/styles/light.d.ts +19 -22
  397. package/es/popselect/styles/light.js +2 -2
  398. package/es/progress/styles/dark.js +1 -7
  399. package/es/progress/styles/light.js +18 -18
  400. package/es/radio/src/Radio.d.ts +129 -50
  401. package/es/radio/src/Radio.js +17 -6
  402. package/es/radio/src/RadioButton.d.ts +5 -2
  403. package/es/radio/src/RadioButton.js +2 -2
  404. package/es/radio/src/RadioGroup.d.ts +121 -49
  405. package/es/radio/src/RadioGroup.js +1 -1
  406. package/es/radio/src/styles/radio-group.cssr.js +7 -7
  407. package/es/radio/src/styles/radio.cssr.js +19 -25
  408. package/es/radio/src/styles/rtl.cssr.js +2 -2
  409. package/es/radio/styles/dark.js +2 -8
  410. package/es/radio/styles/light.d.ts +15 -7
  411. package/es/radio/styles/light.js +54 -6
  412. package/es/rate/styles/dark.js +2 -11
  413. package/es/rate/styles/light.d.ts +1 -1
  414. package/es/rate/styles/light.js +4 -4
  415. package/es/result/src/Result.d.ts +36 -36
  416. package/es/result/styles/light.d.ts +8 -8
  417. package/es/result/styles/light.js +27 -3
  418. package/es/select/src/Select.d.ts +877 -385
  419. package/es/select/src/Select.js +2 -2
  420. package/es/select/src/interface.d.ts +0 -1
  421. package/es/select/styles/light.d.ts +76 -27
  422. package/es/select/styles/light.js +2 -2
  423. package/es/skeleton/src/styles/index.cssr.js +1 -1
  424. package/es/skeleton/styles/dark.js +2 -11
  425. package/es/skeleton/styles/light.d.ts +1 -2
  426. package/es/skeleton/styles/light.js +4 -4
  427. package/es/slider/src/Slider.d.ts +30 -30
  428. package/es/slider/styles/dark.js +2 -6
  429. package/es/slider/styles/light.d.ts +7 -7
  430. package/es/slider/styles/light.js +32 -6
  431. package/es/spin/styles/light.js +9 -15
  432. package/es/statistic/styles/light.js +7 -7
  433. package/es/status/index.d.ts +2 -0
  434. package/es/status/index.js +1 -0
  435. package/es/status/src/Status.d.ts +139 -0
  436. package/es/status/src/Status.js +81 -0
  437. package/es/status/src/styles/index.cssr.d.ts +2 -0
  438. package/es/status/src/styles/index.cssr.js +24 -0
  439. package/es/status/styles/dark.d.ts +3 -0
  440. package/es/status/styles/dark.js +8 -0
  441. package/es/status/styles/index.d.ts +3 -0
  442. package/es/status/styles/index.js +2 -0
  443. package/es/status/styles/light.d.ts +17 -0
  444. package/es/status/styles/light.js +21 -0
  445. package/es/steps/src/Step.d.ts +7 -1
  446. package/es/steps/src/Step.js +31 -22
  447. package/es/steps/src/Steps.d.ts +36 -36
  448. package/es/steps/src/styles/index.cssr.js +18 -3
  449. package/es/steps/styles/light.d.ts +8 -8
  450. package/es/steps/styles/light.js +36 -3
  451. package/es/styles.d.ts +2 -0
  452. package/es/styles.js +2 -0
  453. package/es/switch/src/Switch.d.ts +67 -67
  454. package/es/switch/styles/dark.js +2 -7
  455. package/es/switch/styles/light.d.ts +16 -16
  456. package/es/switch/styles/light.js +48 -5
  457. package/es/table/src/Table.d.ts +30 -30
  458. package/es/table/styles/light.d.ts +6 -6
  459. package/es/table/styles/light.js +29 -8
  460. package/es/tabs/src/Tab.js +5 -2
  461. package/es/tabs/src/Tabs.d.ts +160 -141
  462. package/es/tabs/src/Tabs.js +3 -2
  463. package/es/tabs/src/styles/index.cssr.js +17 -12
  464. package/es/tabs/styles/dark.js +1 -7
  465. package/es/tabs/styles/light.d.ts +35 -33
  466. package/es/tabs/styles/light.js +94 -7
  467. package/es/tag/src/Tag.d.ts +115 -87
  468. package/es/tag/src/Tag.js +2 -1
  469. package/es/tag/src/styles/index.cssr.js +1 -1
  470. package/es/tag/styles/dark.js +2 -29
  471. package/es/tag/styles/light.d.ts +19 -16
  472. package/es/tag/styles/light.js +113 -20
  473. package/es/theme-editor/src/ThemeEditor.d.ts +88 -99
  474. package/es/theme-editor/src/ThemeEditor.js +35 -2
  475. package/es/themes/dark.js +5 -1
  476. package/es/themes/light.js +5 -1
  477. package/es/thing/styles/light.js +4 -4
  478. package/es/time-picker/src/Panel.d.ts +104 -111
  479. package/es/time-picker/src/Panel.js +2 -2
  480. package/es/time-picker/src/TimePicker.d.ts +244 -214
  481. package/es/time-picker/src/TimePicker.js +2 -1
  482. package/es/time-picker/src/interface.d.ts +2 -1
  483. package/es/time-picker/src/styles/index.cssr.js +1 -0
  484. package/es/time-picker/styles/light.d.ts +19 -14
  485. package/es/time-picker/styles/light.js +19 -5
  486. package/es/timeline/src/Timeline.d.ts +30 -30
  487. package/es/timeline/styles/dark.js +2 -5
  488. package/es/timeline/styles/light.d.ts +7 -7
  489. package/es/timeline/styles/light.js +26 -4
  490. package/es/toggle-button/index.d.ts +2 -0
  491. package/es/toggle-button/index.js +1 -0
  492. package/es/toggle-button/src/ToggleButton.d.ts +551 -0
  493. package/es/toggle-button/src/ToggleButton.js +128 -0
  494. package/es/toggle-button/src/styles/toggle-button.cssr.d.ts +2 -0
  495. package/es/toggle-button/src/styles/toggle-button.cssr.js +73 -0
  496. package/es/toggle-button/styles/_common.d.ts +7 -0
  497. package/es/toggle-button/styles/_common.js +6 -0
  498. package/es/toggle-button/styles/dark.d.ts +3 -0
  499. package/es/toggle-button/styles/dark.js +8 -0
  500. package/es/toggle-button/styles/index.d.ts +3 -0
  501. package/es/toggle-button/styles/index.js +2 -0
  502. package/es/toggle-button/styles/light.d.ts +47 -0
  503. package/es/toggle-button/styles/light.js +18 -0
  504. package/es/tooltip/src/Tooltip.d.ts +185 -196
  505. package/es/tooltip/styles/dark.js +2 -5
  506. package/es/tooltip/styles/light.d.ts +13 -13
  507. package/es/tooltip/styles/light.js +19 -4
  508. package/es/transfer/src/Transfer.d.ts +632 -453
  509. package/es/transfer/src/TransferFilter.d.ts +142 -134
  510. package/es/transfer/src/TransferList.d.ts +142 -134
  511. package/es/transfer/src/TransferListItem.d.ts +142 -134
  512. package/es/transfer/src/styles/index.cssr.js +2 -0
  513. package/es/transfer/styles/dark.js +2 -13
  514. package/es/transfer/styles/light.d.ts +58 -39
  515. package/es/transfer/styles/light.js +39 -12
  516. package/es/tree/src/Tree.d.ts +418 -269
  517. package/es/tree/src/TreeNodeCheckbox.d.ts +121 -116
  518. package/es/tree/src/styles/index.cssr.js +5 -1
  519. package/es/tree/styles/dark.js +1 -7
  520. package/es/tree/styles/light.d.ts +33 -17
  521. package/es/tree/styles/light.js +14 -15
  522. package/es/tree-select/src/TreeSelect.d.ts +1145 -459
  523. package/es/tree-select/styles/light.d.ts +100 -32
  524. package/es/tree-select/styles/light.js +6 -6
  525. package/es/typography/src/a.d.ts +56 -56
  526. package/es/typography/src/blockquote.d.ts +61 -61
  527. package/es/typography/src/create-header.d.ts +74 -74
  528. package/es/typography/src/headers.d.ts +300 -300
  529. package/es/typography/src/hr.d.ts +47 -47
  530. package/es/typography/src/ol.d.ts +63 -63
  531. package/es/typography/src/p.d.ts +61 -61
  532. package/es/typography/src/text.d.ts +89 -89
  533. package/es/typography/src/ul.d.ts +63 -63
  534. package/es/typography/styles/light.d.ts +28 -28
  535. package/es/typography/styles/light.js +67 -3
  536. package/es/upload/src/Upload.d.ts +111 -149
  537. package/es/upload/src/UploadFile.d.ts +89 -100
  538. package/es/upload/src/UploadProgress.d.ts +89 -100
  539. package/es/upload/src/styles/index.cssr.js +5 -4
  540. package/es/upload/styles/dark.js +1 -9
  541. package/es/upload/styles/light.d.ts +1 -1
  542. package/es/upload/styles/light.js +22 -22
  543. package/es/version.d.ts +1 -1
  544. package/es/version.js +1 -1
  545. package/lib/_internal/checkbox/index.d.ts +2 -0
  546. package/lib/_internal/checkbox/index.js +7 -0
  547. package/lib/_internal/checkbox/src/use-checkbox.d.ts +53 -0
  548. package/lib/_internal/checkbox/src/use-checkbox.js +163 -0
  549. package/lib/_internal/close/src/styles/index.cssr.js +2 -0
  550. package/lib/_internal/icon/src/styles/index.cssr.js +2 -2
  551. package/lib/_internal/icons/ChevronDown.js +2 -2
  552. package/lib/_internal/icons/ChevronLeft.js +1 -1
  553. package/lib/_internal/icons/ChevronRight.js +1 -1
  554. package/lib/_internal/icons/Clear.js +2 -10
  555. package/lib/_internal/icons/ClearSmall.d.ts +2 -0
  556. package/lib/_internal/icons/ClearSmall.js +10 -0
  557. package/lib/_internal/icons/Close.js +2 -4
  558. package/lib/_internal/icons/Error.js +2 -4
  559. package/lib/_internal/icons/Inactive.d.ts +2 -0
  560. package/lib/_internal/icons/Inactive.js +10 -0
  561. package/lib/_internal/icons/InfoOutline.d.ts +2 -0
  562. package/lib/_internal/icons/InfoOutline.js +6 -0
  563. package/lib/_internal/icons/Success.js +2 -4
  564. package/lib/_internal/icons/Warning.js +2 -4
  565. package/lib/_internal/icons/index.d.ts +3 -0
  566. package/lib/_internal/icons/index.js +7 -1
  567. package/lib/_internal/index.d.ts +4 -0
  568. package/lib/_internal/index.js +9 -1
  569. package/lib/_internal/radio/index.d.ts +2 -0
  570. package/lib/_internal/radio/index.js +17 -0
  571. package/lib/_internal/radio/src/interface.d.ts +12 -0
  572. package/{es → lib/_internal}/radio/src/use-radio.d.ts +6 -13
  573. package/lib/{radio → _internal/radio}/src/use-radio.js +15 -19
  574. package/lib/_internal/select-menu/src/SelectMenu.d.ts +180 -211
  575. package/lib/_internal/select-menu/src/SelectMenu.js +3 -2
  576. package/lib/_internal/select-menu/src/interface.d.ts +1 -1
  577. package/lib/_internal/select-menu/src/styles/index.cssr.js +24 -18
  578. package/lib/_internal/select-menu/styles/light.d.ts +17 -23
  579. package/lib/_internal/select-menu/styles/light.js +34 -6
  580. package/lib/_internal/selection/index.d.ts +1 -0
  581. package/lib/_internal/selection/src/Selection.d.ts +583 -183
  582. package/lib/_internal/selection/src/Selection.js +102 -28
  583. package/lib/_internal/selection/src/interface.d.ts +1 -0
  584. package/lib/_internal/selection/src/styles/index.cssr.d.ts +2 -1
  585. package/lib/_internal/selection/src/styles/index.cssr.js +128 -40
  586. package/lib/_internal/selection/styles/dark.js +2 -29
  587. package/lib/_internal/selection/styles/light.d.ts +121 -17
  588. package/lib/_internal/selection/styles/light.js +122 -23
  589. package/lib/_internal/skeleton/src/styles/index.cssr.js +1 -1
  590. package/lib/_internal/skeleton/styles/dark.js +2 -11
  591. package/lib/_internal/skeleton/styles/light.d.ts +1 -2
  592. package/lib/_internal/skeleton/styles/light.js +6 -5
  593. package/lib/_styles/common/_common.d.ts +37 -12
  594. package/lib/_styles/common/_common.js +44 -19
  595. package/lib/_styles/common/dark.js +2 -98
  596. package/lib/_styles/common/light.d.ts +88 -99
  597. package/lib/_styles/common/light.js +1 -103
  598. package/lib/_styles/global/index.cssr.js +4 -5
  599. package/lib/_utils/index.d.ts +3 -0
  600. package/lib/_utils/index.js +5 -1
  601. package/lib/_utils/inject/index.d.ts +2 -0
  602. package/lib/_utils/inject/index.js +11 -0
  603. package/lib/_utils/themes/index.d.ts +1 -0
  604. package/lib/_utils/themes/index.js +5 -0
  605. package/lib/_utils/themes/rewrite-styles.d.ts +1 -0
  606. package/lib/_utils/themes/rewrite-styles.js +10 -0
  607. package/lib/_utils/types/index.d.ts +1 -0
  608. package/lib/_utils/types/index.js +17 -0
  609. package/lib/_utils/types/utility.types.d.ts +10 -0
  610. package/lib/{popconfirm/styles/_common.js → _utils/types/utility.types.js} +0 -3
  611. package/lib/_utils/uzum/prop.d.ts +2 -2
  612. package/lib/_utils/uzum/prop.js +0 -2
  613. package/lib/alert/src/Alert.d.ts +438 -271
  614. package/lib/alert/src/Alert.js +51 -55
  615. package/lib/alert/src/styles/index.cssr.js +92 -48
  616. package/lib/alert/styles/_common.d.ts +7 -6
  617. package/lib/alert/styles/_common.js +11 -8
  618. package/lib/alert/styles/dark.js +2 -18
  619. package/lib/alert/styles/light.d.ts +33 -16
  620. package/lib/alert/styles/light.js +18 -9
  621. package/lib/alert/styles/types.d.ts +4 -0
  622. package/lib/{calendar/styles/_common.js → alert/styles/types.js} +0 -3
  623. package/lib/anchor/src/AnchorAdapter.d.ts +30 -21
  624. package/lib/anchor/src/AnchorAdapter.js +2 -1
  625. package/lib/anchor/src/styles/index.cssr.js +2 -1
  626. package/lib/anchor/styles/light.d.ts +4 -3
  627. package/lib/anchor/styles/light.js +16 -8
  628. package/lib/auto-complete/src/AutoComplete.d.ts +317 -327
  629. package/lib/auto-complete/styles/light.d.ts +22 -22
  630. package/lib/auto-complete/styles/light.js +2 -2
  631. package/lib/avatar/src/Avatar.d.ts +0 -29
  632. package/lib/avatar/src/Avatar.js +4 -7
  633. package/lib/avatar/src/interface.d.ts +1 -1
  634. package/lib/avatar/src/styles/index.cssr.js +1 -3
  635. package/lib/avatar/styles/light.d.ts +0 -3
  636. package/lib/avatar/styles/light.js +7 -11
  637. package/lib/avatar-group/src/AvatarGroup.d.ts +88 -129
  638. package/lib/avatar-group/styles/light.d.ts +0 -3
  639. package/lib/back-top/src/BackTop.d.ts +24 -24
  640. package/lib/back-top/styles/dark.js +2 -8
  641. package/lib/back-top/styles/light.d.ts +5 -5
  642. package/lib/back-top/styles/light.js +18 -7
  643. package/lib/badge/src/Badge.d.ts +0 -10
  644. package/lib/badge/src/Badge.js +1 -2
  645. package/lib/badge/src/styles/index.cssr.js +0 -2
  646. package/lib/badge/styles/dark.js +2 -12
  647. package/lib/badge/styles/light.d.ts +1 -2
  648. package/lib/badge/styles/light.js +10 -9
  649. package/lib/breadcrumb/src/Breadcrumb.d.ts +10 -40
  650. package/lib/breadcrumb/src/Breadcrumb.js +2 -5
  651. package/lib/breadcrumb/src/styles/index.cssr.js +4 -9
  652. package/lib/breadcrumb/styles/light.d.ts +1 -4
  653. package/lib/breadcrumb/styles/light.js +11 -6
  654. package/lib/button/src/Button.d.ts +11 -11
  655. package/lib/button/src/Button.js +4 -4
  656. package/lib/button/src/styles/index.cssr.js +4 -10
  657. package/lib/button/styles/dark.js +1 -8
  658. package/lib/button/styles/light.d.ts +1 -1
  659. package/lib/button/styles/light.js +18 -18
  660. package/lib/calendar/src/Calendar.d.ts +108 -119
  661. package/lib/calendar/styles/light.d.ts +3 -3
  662. package/lib/calendar/styles/light.js +23 -8
  663. package/lib/card/src/Card.d.ts +295 -272
  664. package/lib/card/src/Card.js +13 -16
  665. package/lib/card/src/styles/index.cssr.js +5 -19
  666. package/lib/card/styles/_common.d.ts +0 -6
  667. package/lib/card/styles/_common.js +1 -7
  668. package/lib/card/styles/dark.js +1 -8
  669. package/lib/card/styles/light.d.ts +21 -17
  670. package/lib/card/styles/light.js +2 -5
  671. package/lib/cascader/src/Cascader.d.ts +1195 -555
  672. package/lib/cascader/src/CascaderMenu.d.ts +207 -153
  673. package/lib/cascader/src/CascaderOption.d.ts +207 -153
  674. package/lib/cascader/src/CascaderSelectMenu.d.ts +207 -153
  675. package/lib/cascader/src/CascaderSubmenu.d.ts +207 -153
  676. package/lib/cascader/src/styles/index.cssr.js +3 -3
  677. package/lib/cascader/styles/light.d.ts +109 -44
  678. package/lib/cascader/styles/light.js +12 -12
  679. package/lib/checkbox/index.d.ts +1 -1
  680. package/lib/checkbox/src/Checkbox.d.ts +457 -304
  681. package/lib/checkbox/src/Checkbox.js +41 -175
  682. package/lib/checkbox/src/CheckboxGroup.d.ts +2 -12
  683. package/lib/checkbox/src/CheckboxGroup.js +3 -3
  684. package/lib/checkbox/src/styles/index.cssr.js +112 -189
  685. package/lib/checkbox/styles/_common.d.ts +0 -3
  686. package/lib/checkbox/styles/_common.js +3 -6
  687. package/lib/checkbox/styles/dark.js +1 -7
  688. package/lib/checkbox/styles/light.d.ts +29 -13
  689. package/lib/checkbox/styles/light.js +2 -4
  690. package/lib/code/styles/dark.js +7 -20
  691. package/lib/code/styles/light.d.ts +1 -1
  692. package/lib/code/styles/light.js +7 -5
  693. package/lib/collapse/src/Collapse.d.ts +126 -104
  694. package/lib/collapse/src/Collapse.js +4 -1
  695. package/lib/collapse/src/CollapseItem.d.ts +2 -1
  696. package/lib/collapse/src/CollapseItem.js +12 -11
  697. package/lib/collapse/src/interface.d.ts +1 -0
  698. package/lib/collapse/src/styles/index.cssr.js +7 -2
  699. package/lib/collapse/styles/light.d.ts +3 -0
  700. package/lib/collapse/styles/light.js +12 -9
  701. package/lib/color-picker/src/ColorInputUnit.d.ts +103 -106
  702. package/lib/color-picker/src/ColorPicker.d.ts +138 -63
  703. package/lib/color-picker/src/ColorPicker.js +4 -1
  704. package/lib/color-picker/src/ColorPickerTrigger.js +1 -6
  705. package/lib/color-picker/src/styles/index.cssr.js +13 -1
  706. package/lib/color-picker/styles/light.d.ts +20 -7
  707. package/lib/color-picker/styles/light.js +15 -10
  708. package/lib/components.d.ts +2 -0
  709. package/lib/components.js +2 -0
  710. package/lib/config-provider/src/internal-interface.d.ts +7 -2
  711. package/lib/data-table/src/DataTable.d.ts +1978 -1437
  712. package/lib/data-table/src/DataTable.js +2 -3
  713. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +457 -347
  714. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +462 -352
  715. package/lib/data-table/src/TableParts/Body.d.ts +457 -347
  716. package/lib/data-table/src/TableParts/Body.js +3 -2
  717. package/lib/data-table/src/TableParts/Cell.d.ts +914 -694
  718. package/lib/data-table/src/TableParts/Header.d.ts +457 -347
  719. package/lib/data-table/src/TableParts/Header.js +3 -1
  720. package/lib/data-table/src/interface.d.ts +750 -534
  721. package/lib/data-table/src/styles/index.cssr.js +29 -36
  722. package/lib/data-table/styles/dark.js +1 -6
  723. package/lib/data-table/styles/light.d.ts +254 -183
  724. package/lib/data-table/styles/light.js +58 -13
  725. package/lib/date-picker/src/DatePicker.d.ts +748 -433
  726. package/lib/date-picker/src/DatePicker.js +52 -16
  727. package/lib/date-picker/src/interface.d.ts +2 -2
  728. package/lib/date-picker/src/panel/date.d.ts +166 -138
  729. package/lib/date-picker/src/panel/daterange.d.ts +160 -138
  730. package/lib/date-picker/src/panel/datetime.d.ts +160 -138
  731. package/lib/date-picker/src/panel/datetimerange.d.ts +160 -138
  732. package/lib/date-picker/src/panel/monthrange.d.ts +160 -138
  733. package/lib/date-picker/src/panel/panelMonth.d.ts +320 -276
  734. package/lib/date-picker/src/panel/panelMonth.js +2 -2
  735. package/lib/date-picker/src/panel/panelMonthContent.d.ts +160 -138
  736. package/lib/date-picker/src/panel/panelYear.d.ts +320 -276
  737. package/lib/date-picker/src/panel/panelYear.js +2 -2
  738. package/lib/date-picker/src/panel/panelYearContent.d.ts +160 -138
  739. package/lib/date-picker/src/panel/use-calendar.d.ts +160 -138
  740. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +160 -138
  741. package/lib/date-picker/src/panel/use-panel-common.d.ts +160 -138
  742. package/lib/date-picker/src/styles/index.cssr.js +75 -64
  743. package/lib/date-picker/styles/_common.d.ts +0 -1
  744. package/lib/date-picker/styles/_common.js +0 -1
  745. package/lib/date-picker/styles/dark.js +1 -9
  746. package/lib/date-picker/styles/light.d.ts +97 -44
  747. package/lib/date-picker/styles/light.js +12 -3
  748. package/lib/descriptions/src/Descriptions.d.ts +48 -48
  749. package/lib/descriptions/styles/light.d.ts +12 -12
  750. package/lib/descriptions/styles/light.js +33 -10
  751. package/lib/dialog/src/Dialog.d.ts +166 -159
  752. package/lib/dialog/src/Dialog.js +20 -11
  753. package/lib/dialog/src/DialogEnvironment.d.ts +6 -3
  754. package/lib/dialog/src/DialogEnvironment.js +1 -1
  755. package/lib/dialog/src/DialogProvider.d.ts +181 -202
  756. package/lib/dialog/src/dialogProps.d.ts +3 -2
  757. package/lib/dialog/src/dialogProps.js +2 -1
  758. package/lib/dialog/src/styles/index.cssr.js +7 -5
  759. package/lib/dialog/styles/_common.d.ts +1 -4
  760. package/lib/dialog/styles/_common.js +6 -9
  761. package/lib/dialog/styles/light.d.ts +19 -15
  762. package/lib/dialog/styles/light.js +2 -7
  763. package/lib/divider/src/Divider.d.ts +30 -0
  764. package/lib/divider/src/Divider.js +5 -2
  765. package/lib/divider/src/styles/index.cssr.js +7 -3
  766. package/lib/divider/styles/light.d.ts +3 -0
  767. package/lib/divider/styles/light.js +7 -4
  768. package/lib/drawer/index.d.ts +1 -0
  769. package/lib/drawer/src/Drawer.d.ts +312 -250
  770. package/lib/drawer/src/Drawer.js +67 -31
  771. package/lib/drawer/src/DrawerBodyWrapper.d.ts +107 -119
  772. package/lib/drawer/src/DrawerBodyWrapper.js +6 -30
  773. package/lib/drawer/src/DrawerContent.d.ts +158 -122
  774. package/lib/drawer/src/DrawerContent.js +79 -10
  775. package/lib/drawer/src/interface.d.ts +6 -1
  776. package/lib/drawer/src/styles/index.cssr.js +57 -28
  777. package/lib/drawer/styles/_common.d.ts +11 -0
  778. package/lib/drawer/styles/_common.js +12 -0
  779. package/lib/drawer/styles/light.d.ts +38 -24
  780. package/lib/drawer/styles/light.js +6 -24
  781. package/lib/dropdown/src/Dropdown.d.ts +322 -333
  782. package/lib/dropdown/styles/dark.js +1 -10
  783. package/lib/dropdown/styles/light.d.ts +34 -34
  784. package/lib/dropdown/styles/light.js +57 -12
  785. package/lib/dynamic-input/src/DynamicInput.d.ts +189 -170
  786. package/lib/dynamic-input/src/InputPreset.d.ts +98 -106
  787. package/lib/dynamic-input/src/PairPreset.d.ts +98 -106
  788. package/lib/dynamic-input/styles/light.d.ts +10 -7
  789. package/lib/dynamic-tags/src/DynamicTags.d.ts +375 -325
  790. package/lib/dynamic-tags/src/DynamicTags.js +8 -3
  791. package/lib/dynamic-tags/styles/light.d.ts +28 -22
  792. package/lib/ellipsis/src/Ellipsis.d.ts +184 -195
  793. package/lib/ellipsis/src/PerformantEllipsis.d.ts +54 -54
  794. package/lib/ellipsis/styles/light.d.ts +9 -9
  795. package/lib/empty/src/Empty.d.ts +24 -24
  796. package/lib/empty/styles/light.d.ts +4 -4
  797. package/lib/empty/styles/light.js +14 -9
  798. package/lib/form/src/Form.d.ts +117 -99
  799. package/lib/form/src/FormItem.d.ts +119 -102
  800. package/lib/form/src/FormItem.js +3 -4
  801. package/lib/form/src/FormItemCol.d.ts +117 -99
  802. package/lib/form/src/FormItemGridItem.d.ts +117 -99
  803. package/lib/form/src/FormItemRow.d.ts +117 -99
  804. package/lib/form/src/styles/form-item.cssr.js +14 -17
  805. package/lib/form/styles/light.d.ts +17 -15
  806. package/lib/form/styles/light.js +35 -6
  807. package/lib/global-style/src/GlobalStyle.js +5 -5
  808. package/lib/gradient-text/src/styles/index.cssr.js +1 -0
  809. package/lib/gradient-text/styles/dark.js +2 -17
  810. package/lib/gradient-text/styles/light.d.ts +1 -1
  811. package/lib/gradient-text/styles/light.js +15 -13
  812. package/lib/icon/styles/light.js +7 -7
  813. package/lib/icon-wrapper/styles/light.js +3 -3
  814. package/lib/image/src/Image.d.ts +90 -81
  815. package/lib/image/src/ImageGroup.d.ts +90 -81
  816. package/lib/image/src/ImagePreview.d.ts +61 -54
  817. package/lib/image/src/ImagePreview.js +3 -2
  818. package/lib/image/src/interface.d.ts +30 -27
  819. package/lib/image/src/styles/index.cssr.js +1 -1
  820. package/lib/image/styles/dark.js +2 -9
  821. package/lib/image/styles/light.d.ts +13 -11
  822. package/lib/image/styles/light.js +10 -7
  823. package/lib/input/index.d.ts +1 -1
  824. package/lib/input/src/Input.d.ts +166 -147
  825. package/lib/input/src/Input.js +7 -4
  826. package/lib/input/src/InputGroupLabel.d.ts +68 -41
  827. package/lib/input/src/interface.d.ts +1 -1
  828. package/lib/input/src/styles/input.cssr.js +5 -11
  829. package/lib/input/styles/dark.js +2 -23
  830. package/lib/input/styles/light.d.ts +10 -7
  831. package/lib/input/styles/light.js +72 -18
  832. package/lib/input-number/src/InputNumber.d.ts +204 -208
  833. package/lib/input-number/src/InputNumber.js +3 -11
  834. package/lib/input-number/src/interface.d.ts +0 -1
  835. package/lib/input-number/styles/dark.js +2 -6
  836. package/lib/input-number/styles/light.d.ts +12 -13
  837. package/lib/input-number/styles/light.js +4 -5
  838. package/lib/layout/src/Layout.d.ts +204 -198
  839. package/lib/layout/src/LayoutContent.d.ts +102 -99
  840. package/lib/layout/src/LayoutFooter.d.ts +18 -0
  841. package/lib/layout/src/LayoutHeader.d.ts +12 -0
  842. package/lib/layout/src/LayoutSider.d.ts +102 -99
  843. package/lib/layout/src/LayoutSider.js +5 -3
  844. package/lib/layout/src/ToggleButton.d.ts +2 -2
  845. package/lib/layout/styles/dark.js +2 -29
  846. package/lib/layout/styles/light.d.ts +4 -0
  847. package/lib/layout/styles/light.js +25 -24
  848. package/lib/legacy-transfer/src/Transfer.d.ts +538 -359
  849. package/lib/legacy-transfer/src/TransferFilter.d.ts +133 -125
  850. package/lib/legacy-transfer/src/TransferList.d.ts +133 -125
  851. package/lib/legacy-transfer/src/TransferListItem.d.ts +133 -125
  852. package/lib/legacy-transfer/styles/dark.js +2 -12
  853. package/lib/legacy-transfer/styles/light.d.ts +48 -29
  854. package/lib/legacy-transfer/styles/light.js +27 -12
  855. package/lib/list/index.d.ts +3 -2
  856. package/lib/list/index.js +2 -1
  857. package/lib/list/src/List.d.ts +218 -83
  858. package/lib/list/src/List.js +38 -24
  859. package/lib/list/src/ListItem.d.ts +122 -3
  860. package/lib/list/src/ListItem.js +183 -11
  861. package/lib/list/src/interface.d.ts +35 -0
  862. package/lib/list/src/interface.js +2 -0
  863. package/lib/list/src/props.d.ts +228 -0
  864. package/lib/list/src/props.js +62 -0
  865. package/lib/list/src/styles/index.cssr.js +141 -47
  866. package/lib/list/styles/light.d.ts +15 -0
  867. package/lib/list/styles/light.js +27 -13
  868. package/lib/loading-bar/styles/dark.js +2 -8
  869. package/lib/loading-bar/styles/light.d.ts +1 -1
  870. package/lib/loading-bar/styles/light.js +6 -4
  871. package/lib/log/src/Log.d.ts +88 -99
  872. package/lib/log/styles/dark.js +2 -10
  873. package/lib/log/styles/light.d.ts +1 -1
  874. package/lib/log/styles/light.js +9 -7
  875. package/lib/mention/src/Mention.d.ts +314 -325
  876. package/lib/mention/styles/dark.js +2 -6
  877. package/lib/mention/styles/light.d.ts +23 -23
  878. package/lib/mention/styles/light.js +5 -3
  879. package/lib/menu/src/Menu.d.ts +490 -501
  880. package/lib/menu/src/MenuOption.d.ts +138 -149
  881. package/lib/menu/src/Submenu.d.ts +138 -149
  882. package/lib/menu/styles/dark.js +1 -14
  883. package/lib/menu/styles/light.d.ts +38 -38
  884. package/lib/menu/styles/light.js +2 -4
  885. package/lib/message/src/Message.d.ts +3 -7
  886. package/lib/message/src/Message.js +8 -22
  887. package/lib/message/src/MessageProvider.d.ts +195 -258
  888. package/lib/message/src/MessageProvider.js +1 -1
  889. package/lib/message/src/styles/index.cssr.js +10 -10
  890. package/lib/message/styles/_common.d.ts +0 -5
  891. package/lib/message/styles/_common.js +3 -8
  892. package/lib/message/styles/light.d.ts +23 -30
  893. package/lib/message/styles/light.js +14 -7
  894. package/lib/message/styles/types.d.ts +4 -0
  895. package/lib/message/styles/types.js +2 -0
  896. package/lib/modal/src/BodyWrapper.d.ts +140 -173
  897. package/lib/modal/src/BodyWrapper.js +7 -13
  898. package/lib/modal/src/Modal.d.ts +340 -303
  899. package/lib/modal/src/Modal.js +7 -5
  900. package/lib/modal/src/presetProps.d.ts +20 -32
  901. package/lib/modal/src/presetProps.js +4 -2
  902. package/lib/modal/src/styles/index.cssr.js +2 -3
  903. package/lib/modal/styles/light.d.ts +39 -27
  904. package/lib/modal/styles/light.js +7 -4
  905. package/lib/notification/src/Notification.d.ts +15 -7
  906. package/lib/notification/src/Notification.js +13 -15
  907. package/lib/notification/src/NotificationContainer.d.ts +159 -115
  908. package/lib/notification/src/NotificationEnvironment.d.ts +8 -7
  909. package/lib/notification/src/NotificationProvider.d.ts +644 -146
  910. package/lib/notification/src/NotificationProvider.js +2 -1
  911. package/lib/notification/src/styles/index.cssr.js +20 -25
  912. package/lib/notification/styles/_common.d.ts +1 -6
  913. package/lib/notification/styles/_common.js +2 -7
  914. package/lib/notification/styles/light.d.ts +142 -32
  915. package/lib/notification/styles/light.js +14 -7
  916. package/lib/page-header/src/PageHeader.d.ts +18 -18
  917. package/lib/page-header/styles/light.d.ts +4 -4
  918. package/lib/page-header/styles/light.js +12 -6
  919. package/lib/pagination/src/Pagination.d.ts +1564 -1039
  920. package/lib/pagination/src/Pagination.js +1 -2
  921. package/lib/pagination/src/styles/index.cssr.js +2 -4
  922. package/lib/pagination/styles/dark.js +1 -11
  923. package/lib/pagination/styles/light.d.ts +140 -91
  924. package/lib/pagination/styles/light.js +73 -10
  925. package/lib/popconfirm/src/Popconfirm.d.ts +172 -183
  926. package/lib/popconfirm/styles/light.d.ts +9 -9
  927. package/lib/popconfirm/styles/light.js +6 -6
  928. package/lib/popover/src/Popover.d.ts +35 -35
  929. package/lib/popover/src/Popover.js +2 -4
  930. package/lib/popover/src/PopoverBody.d.ts +30 -30
  931. package/lib/popover/src/PopoverBody.js +1 -6
  932. package/lib/popover/styles/light.d.ts +6 -6
  933. package/lib/popover/styles/light.js +15 -7
  934. package/lib/popselect/src/Popselect.d.ts +286 -327
  935. package/lib/popselect/src/PopselectPanel.d.ts +112 -126
  936. package/lib/popselect/src/interface.d.ts +1 -1
  937. package/lib/popselect/styles/light.d.ts +19 -22
  938. package/lib/popselect/styles/light.js +2 -2
  939. package/lib/progress/styles/dark.js +1 -7
  940. package/lib/progress/styles/light.js +18 -18
  941. package/lib/radio/src/Radio.d.ts +129 -50
  942. package/lib/radio/src/Radio.js +16 -5
  943. package/lib/radio/src/RadioButton.d.ts +5 -2
  944. package/lib/radio/src/RadioButton.js +4 -4
  945. package/lib/radio/src/RadioGroup.d.ts +121 -49
  946. package/lib/radio/src/RadioGroup.js +2 -2
  947. package/lib/radio/src/styles/radio-group.cssr.js +7 -7
  948. package/lib/radio/src/styles/radio.cssr.js +19 -25
  949. package/lib/radio/src/styles/rtl.cssr.js +2 -2
  950. package/lib/radio/styles/dark.js +2 -11
  951. package/lib/radio/styles/light.d.ts +15 -7
  952. package/lib/radio/styles/light.js +56 -9
  953. package/lib/rate/styles/dark.js +2 -11
  954. package/lib/rate/styles/light.d.ts +1 -1
  955. package/lib/rate/styles/light.js +6 -4
  956. package/lib/result/src/Result.d.ts +36 -36
  957. package/lib/result/styles/light.d.ts +8 -8
  958. package/lib/result/styles/light.js +27 -6
  959. package/lib/select/src/Select.d.ts +877 -385
  960. package/lib/select/src/Select.js +2 -2
  961. package/lib/select/src/interface.d.ts +0 -1
  962. package/lib/select/styles/light.d.ts +76 -27
  963. package/lib/select/styles/light.js +2 -2
  964. package/lib/skeleton/src/styles/index.cssr.js +1 -1
  965. package/lib/skeleton/styles/dark.js +2 -11
  966. package/lib/skeleton/styles/light.d.ts +1 -2
  967. package/lib/skeleton/styles/light.js +6 -5
  968. package/lib/slider/src/Slider.d.ts +30 -30
  969. package/lib/slider/styles/dark.js +2 -9
  970. package/lib/slider/styles/light.d.ts +7 -7
  971. package/lib/slider/styles/light.js +34 -9
  972. package/lib/spin/styles/light.js +9 -15
  973. package/lib/statistic/styles/light.js +7 -7
  974. package/lib/status/index.d.ts +2 -0
  975. package/lib/status/index.js +9 -0
  976. package/lib/status/src/Status.d.ts +139 -0
  977. package/lib/status/src/Status.js +87 -0
  978. package/lib/status/src/styles/index.cssr.d.ts +2 -0
  979. package/lib/status/src/styles/index.cssr.js +29 -0
  980. package/lib/status/styles/dark.d.ts +3 -0
  981. package/lib/status/styles/dark.js +10 -0
  982. package/lib/status/styles/index.d.ts +3 -0
  983. package/lib/status/styles/index.js +10 -0
  984. package/lib/status/styles/light.d.ts +17 -0
  985. package/lib/status/styles/light.js +25 -0
  986. package/lib/steps/src/Step.d.ts +7 -1
  987. package/lib/steps/src/Step.js +31 -22
  988. package/lib/steps/src/Steps.d.ts +36 -36
  989. package/lib/steps/src/styles/index.cssr.js +18 -3
  990. package/lib/steps/styles/light.d.ts +8 -8
  991. package/lib/steps/styles/light.js +36 -6
  992. package/lib/styles.d.ts +2 -0
  993. package/lib/styles.js +51 -46
  994. package/lib/switch/src/Switch.d.ts +67 -67
  995. package/lib/switch/styles/dark.js +2 -10
  996. package/lib/switch/styles/light.d.ts +16 -16
  997. package/lib/switch/styles/light.js +50 -8
  998. package/lib/table/src/Table.d.ts +30 -30
  999. package/lib/table/styles/light.d.ts +6 -6
  1000. package/lib/table/styles/light.js +29 -11
  1001. package/lib/tabs/src/Tab.js +4 -1
  1002. package/lib/tabs/src/Tabs.d.ts +160 -141
  1003. package/lib/tabs/src/Tabs.js +3 -2
  1004. package/lib/tabs/src/styles/index.cssr.js +17 -12
  1005. package/lib/tabs/styles/dark.js +1 -7
  1006. package/lib/tabs/styles/light.d.ts +35 -33
  1007. package/lib/tabs/styles/light.js +94 -10
  1008. package/lib/tag/src/Tag.d.ts +115 -87
  1009. package/lib/tag/src/Tag.js +2 -1
  1010. package/lib/tag/src/styles/index.cssr.js +1 -1
  1011. package/lib/tag/styles/dark.js +2 -32
  1012. package/lib/tag/styles/light.d.ts +19 -16
  1013. package/lib/tag/styles/light.js +115 -23
  1014. package/lib/theme-editor/src/ThemeEditor.d.ts +88 -99
  1015. package/lib/theme-editor/src/ThemeEditor.js +35 -2
  1016. package/lib/themes/dark.js +34 -30
  1017. package/lib/themes/light.js +34 -30
  1018. package/lib/thing/styles/light.js +4 -4
  1019. package/lib/time-picker/src/Panel.d.ts +104 -111
  1020. package/lib/time-picker/src/Panel.js +2 -2
  1021. package/lib/time-picker/src/TimePicker.d.ts +244 -214
  1022. package/lib/time-picker/src/TimePicker.js +2 -1
  1023. package/lib/time-picker/src/interface.d.ts +2 -1
  1024. package/lib/time-picker/src/styles/index.cssr.js +1 -0
  1025. package/lib/time-picker/styles/light.d.ts +19 -14
  1026. package/lib/time-picker/styles/light.js +19 -8
  1027. package/lib/timeline/src/Timeline.d.ts +30 -30
  1028. package/lib/timeline/styles/dark.js +2 -8
  1029. package/lib/timeline/styles/light.d.ts +7 -7
  1030. package/lib/timeline/styles/light.js +28 -7
  1031. package/lib/toggle-button/index.d.ts +2 -0
  1032. package/lib/toggle-button/index.js +9 -0
  1033. package/lib/toggle-button/src/ToggleButton.d.ts +551 -0
  1034. package/lib/toggle-button/src/ToggleButton.js +134 -0
  1035. package/lib/toggle-button/src/styles/toggle-button.cssr.d.ts +2 -0
  1036. package/lib/toggle-button/src/styles/toggle-button.cssr.js +78 -0
  1037. package/lib/toggle-button/styles/_common.d.ts +7 -0
  1038. package/lib/toggle-button/styles/_common.js +8 -0
  1039. package/lib/toggle-button/styles/dark.d.ts +3 -0
  1040. package/lib/toggle-button/styles/dark.js +10 -0
  1041. package/lib/toggle-button/styles/index.d.ts +3 -0
  1042. package/lib/toggle-button/styles/index.js +10 -0
  1043. package/lib/toggle-button/styles/light.d.ts +47 -0
  1044. package/lib/toggle-button/styles/light.js +25 -0
  1045. package/lib/tooltip/src/Tooltip.d.ts +185 -196
  1046. package/lib/tooltip/styles/dark.js +2 -8
  1047. package/lib/tooltip/styles/light.d.ts +13 -13
  1048. package/lib/tooltip/styles/light.js +21 -7
  1049. package/lib/transfer/src/Transfer.d.ts +632 -453
  1050. package/lib/transfer/src/TransferFilter.d.ts +142 -134
  1051. package/lib/transfer/src/TransferList.d.ts +142 -134
  1052. package/lib/transfer/src/TransferListItem.d.ts +142 -134
  1053. package/lib/transfer/src/styles/index.cssr.js +2 -0
  1054. package/lib/transfer/styles/dark.js +2 -16
  1055. package/lib/transfer/styles/light.d.ts +58 -39
  1056. package/lib/transfer/styles/light.js +41 -15
  1057. package/lib/tree/src/Tree.d.ts +418 -269
  1058. package/lib/tree/src/TreeNodeCheckbox.d.ts +121 -116
  1059. package/lib/tree/src/styles/index.cssr.js +5 -1
  1060. package/lib/tree/styles/dark.js +1 -7
  1061. package/lib/tree/styles/light.d.ts +33 -17
  1062. package/lib/tree/styles/light.js +14 -15
  1063. package/lib/tree-select/src/TreeSelect.d.ts +1145 -459
  1064. package/lib/tree-select/styles/light.d.ts +100 -32
  1065. package/lib/tree-select/styles/light.js +6 -6
  1066. package/lib/typography/src/a.d.ts +56 -56
  1067. package/lib/typography/src/blockquote.d.ts +61 -61
  1068. package/lib/typography/src/create-header.d.ts +74 -74
  1069. package/lib/typography/src/headers.d.ts +300 -300
  1070. package/lib/typography/src/hr.d.ts +47 -47
  1071. package/lib/typography/src/ol.d.ts +63 -63
  1072. package/lib/typography/src/p.d.ts +61 -61
  1073. package/lib/typography/src/text.d.ts +89 -89
  1074. package/lib/typography/src/ul.d.ts +63 -63
  1075. package/lib/typography/styles/light.d.ts +28 -28
  1076. package/lib/typography/styles/light.js +67 -6
  1077. package/lib/upload/src/Upload.d.ts +111 -149
  1078. package/lib/upload/src/UploadFile.d.ts +89 -100
  1079. package/lib/upload/src/UploadProgress.d.ts +89 -100
  1080. package/lib/upload/src/styles/index.cssr.js +5 -4
  1081. package/lib/upload/styles/dark.js +1 -9
  1082. package/lib/upload/styles/light.d.ts +1 -1
  1083. package/lib/upload/styles/light.js +22 -22
  1084. package/lib/version.d.ts +1 -1
  1085. package/lib/version.js +1 -1
  1086. package/package.json +87 -85
  1087. package/volar.d.ts +5 -3
  1088. package/web-types.json +653 -199
  1089. package/es/_internal/select-menu/styles/_common.d.ts +0 -13
  1090. package/es/_internal/select-menu/styles/_common.js +0 -12
  1091. package/es/_internal/selection/styles/_common.d.ts +0 -7
  1092. package/es/_internal/selection/styles/_common.js +0 -6
  1093. package/es/anchor/styles/_common.d.ts +0 -6
  1094. package/es/anchor/styles/_common.js +0 -5
  1095. package/es/back-top/styles/_common.d.ts +0 -7
  1096. package/es/back-top/styles/_common.js +0 -6
  1097. package/es/breadcrumb/styles/_common.d.ts +0 -4
  1098. package/es/breadcrumb/styles/_common.js +0 -3
  1099. package/es/calendar/styles/_common.d.ts +0 -4
  1100. package/es/calendar/styles/_common.js +0 -3
  1101. package/es/data-table/styles/_common.d.ts +0 -23
  1102. package/es/data-table/styles/_common.js +0 -22
  1103. package/es/descriptions/styles/_common.d.ts +0 -15
  1104. package/es/descriptions/styles/_common.js +0 -14
  1105. package/es/dropdown/styles/_common.d.ts +0 -24
  1106. package/es/dropdown/styles/_common.js +0 -23
  1107. package/es/empty/styles/_common.d.ts +0 -7
  1108. package/es/empty/styles/_common.js +0 -6
  1109. package/es/form/styles/_common.d.ts +0 -24
  1110. package/es/form/styles/_common.js +0 -23
  1111. package/es/input/styles/_common.d.ts +0 -8
  1112. package/es/input/styles/_common.js +0 -7
  1113. package/es/legacy-transfer/styles/_common.d.ts +0 -5
  1114. package/es/legacy-transfer/styles/_common.js +0 -4
  1115. package/es/page-header/styles/_common.d.ts +0 -5
  1116. package/es/page-header/styles/_common.js +0 -4
  1117. package/es/pagination/styles/_common.d.ts +0 -36
  1118. package/es/pagination/styles/_common.js +0 -35
  1119. package/es/popconfirm/styles/_common.d.ts +0 -4
  1120. package/es/popconfirm/styles/_common.js +0 -3
  1121. package/es/popover/styles/_common.d.ts +0 -9
  1122. package/es/popover/styles/_common.js +0 -8
  1123. package/es/radio/src/interface.d.ts +0 -2
  1124. package/es/radio/styles/_common.d.ts +0 -8
  1125. package/es/radio/styles/_common.js +0 -7
  1126. package/es/result/styles/_common.d.ts +0 -19
  1127. package/es/result/styles/_common.js +0 -18
  1128. package/es/slider/styles/_common.d.ts +0 -9
  1129. package/es/slider/styles/_common.js +0 -8
  1130. package/es/steps/styles/_common.d.ts +0 -11
  1131. package/es/steps/styles/_common.js +0 -10
  1132. package/es/switch/styles/_common.d.ts +0 -18
  1133. package/es/switch/styles/_common.js +0 -17
  1134. package/es/table/styles/_common.d.ts +0 -9
  1135. package/es/table/styles/_common.js +0 -8
  1136. package/es/tabs/styles/_common.d.ts +0 -59
  1137. package/es/tabs/styles/_common.js +0 -58
  1138. package/es/tag/styles/_common.d.ts +0 -15
  1139. package/es/tag/styles/_common.js +0 -14
  1140. package/es/time-picker/styles/_common.d.ts +0 -7
  1141. package/es/time-picker/styles/_common.js +0 -6
  1142. package/es/timeline/styles/_common.d.ts +0 -9
  1143. package/es/timeline/styles/_common.js +0 -8
  1144. package/es/tooltip/styles/_common.d.ts +0 -15
  1145. package/es/tooltip/styles/_common.js +0 -14
  1146. package/es/transfer/styles/_common.d.ts +0 -14
  1147. package/es/transfer/styles/_common.js +0 -13
  1148. package/es/typography/styles/_common.d.ts +0 -31
  1149. package/es/typography/styles/_common.js +0 -30
  1150. package/lib/_internal/select-menu/styles/_common.d.ts +0 -13
  1151. package/lib/_internal/select-menu/styles/_common.js +0 -14
  1152. package/lib/_internal/selection/styles/_common.d.ts +0 -7
  1153. package/lib/_internal/selection/styles/_common.js +0 -8
  1154. package/lib/anchor/styles/_common.d.ts +0 -6
  1155. package/lib/anchor/styles/_common.js +0 -7
  1156. package/lib/back-top/styles/_common.d.ts +0 -7
  1157. package/lib/back-top/styles/_common.js +0 -8
  1158. package/lib/breadcrumb/styles/_common.d.ts +0 -4
  1159. package/lib/breadcrumb/styles/_common.js +0 -5
  1160. package/lib/calendar/styles/_common.d.ts +0 -4
  1161. package/lib/data-table/styles/_common.d.ts +0 -23
  1162. package/lib/data-table/styles/_common.js +0 -24
  1163. package/lib/descriptions/styles/_common.d.ts +0 -15
  1164. package/lib/descriptions/styles/_common.js +0 -16
  1165. package/lib/dropdown/styles/_common.d.ts +0 -24
  1166. package/lib/dropdown/styles/_common.js +0 -25
  1167. package/lib/empty/styles/_common.d.ts +0 -7
  1168. package/lib/empty/styles/_common.js +0 -8
  1169. package/lib/form/styles/_common.d.ts +0 -24
  1170. package/lib/form/styles/_common.js +0 -25
  1171. package/lib/input/styles/_common.d.ts +0 -8
  1172. package/lib/input/styles/_common.js +0 -9
  1173. package/lib/legacy-transfer/styles/_common.d.ts +0 -5
  1174. package/lib/legacy-transfer/styles/_common.js +0 -6
  1175. package/lib/page-header/styles/_common.d.ts +0 -5
  1176. package/lib/page-header/styles/_common.js +0 -6
  1177. package/lib/pagination/styles/_common.d.ts +0 -36
  1178. package/lib/pagination/styles/_common.js +0 -37
  1179. package/lib/popconfirm/styles/_common.d.ts +0 -4
  1180. package/lib/popover/styles/_common.d.ts +0 -9
  1181. package/lib/popover/styles/_common.js +0 -10
  1182. package/lib/radio/src/interface.d.ts +0 -2
  1183. package/lib/radio/styles/_common.d.ts +0 -8
  1184. package/lib/radio/styles/_common.js +0 -9
  1185. package/lib/result/styles/_common.d.ts +0 -19
  1186. package/lib/result/styles/_common.js +0 -20
  1187. package/lib/slider/styles/_common.d.ts +0 -9
  1188. package/lib/slider/styles/_common.js +0 -10
  1189. package/lib/steps/styles/_common.d.ts +0 -11
  1190. package/lib/steps/styles/_common.js +0 -12
  1191. package/lib/switch/styles/_common.d.ts +0 -18
  1192. package/lib/switch/styles/_common.js +0 -19
  1193. package/lib/table/styles/_common.d.ts +0 -9
  1194. package/lib/table/styles/_common.js +0 -10
  1195. package/lib/tabs/styles/_common.d.ts +0 -59
  1196. package/lib/tabs/styles/_common.js +0 -60
  1197. package/lib/tag/styles/_common.d.ts +0 -15
  1198. package/lib/tag/styles/_common.js +0 -16
  1199. package/lib/time-picker/styles/_common.d.ts +0 -7
  1200. package/lib/time-picker/styles/_common.js +0 -8
  1201. package/lib/timeline/styles/_common.d.ts +0 -9
  1202. package/lib/timeline/styles/_common.js +0 -10
  1203. package/lib/tooltip/styles/_common.d.ts +0 -15
  1204. package/lib/tooltip/styles/_common.js +0 -16
  1205. package/lib/transfer/styles/_common.d.ts +0 -14
  1206. package/lib/transfer/styles/_common.js +0 -15
  1207. package/lib/typography/styles/_common.d.ts +0 -31
  1208. package/lib/typography/styles/_common.js +0 -32
  1209. /package/es/{checkbox → _internal/checkbox}/src/interface.d.ts +0 -0
  1210. /package/es/{checkbox → _internal/checkbox}/src/interface.js +0 -0
  1211. /package/es/{radio → _internal/radio}/src/interface.js +0 -0
  1212. /package/lib/{checkbox → _internal/checkbox}/src/interface.d.ts +0 -0
  1213. /package/lib/{checkbox → _internal/checkbox}/src/interface.js +0 -0
  1214. /package/lib/{radio → _internal/radio}/src/interface.js +0 -0
@@ -30,6 +30,8 @@ export declare const transferProps: {
30
30
  readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
31
31
  readonly onChange: PropType<MaybeArray<OnUpdateValue>>;
32
32
  readonly theme: PropType<import("../../_mixins").Theme<"Transfer", {
33
+ extraFontSize: string;
34
+ width: string;
33
35
  itemHeightSmall: string;
34
36
  itemHeightMedium: string;
35
37
  itemHeightLarge: string;
@@ -50,65 +52,86 @@ export declare const transferProps: {
50
52
  titleFontWeight: string;
51
53
  iconColor: string;
52
54
  iconColorDisabled: string;
53
- extraFontSize: string;
54
- width: string;
55
55
  }, {
56
56
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
57
- labelLineHeight: string;
58
- fontSizeSmall: string;
59
- fontSizeMedium: string;
57
+ fontWeight: string;
58
+ textColor: string;
59
+ descriptionTextColor: string;
60
+ textColorDisabled: string;
61
+ descriptionTextColorDisabled: string;
60
62
  fontSizeLarge: string;
63
+ fontSizeMedium: string;
64
+ fontSizeSmall: string;
65
+ lineHeightLarge: string;
66
+ lineHeightMedium: string;
67
+ lineHeightSmall: string;
68
+ borderRadiusLarge: string;
69
+ borderRadiusMedium: string;
70
+ borderRadiusSmall: string;
61
71
  color: string;
72
+ colorHover: string;
73
+ colorFocus: string;
74
+ colorActive: string;
62
75
  colorChecked: string;
76
+ colorHoverChecked: string;
77
+ colorFocusChecked: string;
78
+ colorActiveChecked: string;
63
79
  colorDisabled: string;
64
80
  colorDisabledChecked: string;
65
- colorTableHeader: string;
66
- colorTableHeaderModal: string;
67
- colorTableHeaderPopover: string;
68
81
  checkMarkColor: string;
82
+ checkMarkColorHover: string;
83
+ checkMarkColorFocus: string;
84
+ checkMarkColorActive: string;
69
85
  checkMarkColorDisabled: string;
70
86
  checkMarkColorDisabledChecked: string;
71
87
  border: string;
72
- borderDisabled: string;
73
- borderDisabledChecked: string;
74
88
  borderHover: string;
75
- borderChecked: string;
76
89
  borderFocus: string;
90
+ borderActive: string;
91
+ borderChecked: string;
92
+ borderHoverChecked: string;
93
+ borderFocusChecked: string;
94
+ borderActiveChecked: string;
95
+ borderDisabled: string;
96
+ borderDisabledChecked: string;
77
97
  boxShadowHover: string;
78
98
  boxShadowFocus: string;
79
99
  boxShadowActive: string;
80
100
  boxShadowHoverChecked: string;
81
101
  boxShadowFocusChecked: string;
82
102
  boxShadowActiveChecked: string;
83
- textColor: string;
84
103
  sizeSmall: string;
85
104
  sizeMedium: string;
86
105
  sizeLarge: string;
87
106
  labelPadding: string;
88
- labelFontWeight: string;
89
- borderRadiusLarge: string;
90
- borderRadiusSmall: string;
91
107
  }, any>;
92
108
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
93
109
  color: string;
94
110
  colorHover: string;
95
111
  }, any>;
96
112
  Input: import("../../_mixins").Theme<"Input", {
113
+ paddingTiny: string;
114
+ paddingSmall: string;
115
+ paddingMedium: string;
116
+ paddingLarge: string;
117
+ paddingHuge: string;
118
+ clearSize: string;
97
119
  countTextColorDisabled: string;
98
120
  countTextColor: string;
99
121
  heightTiny: string;
100
122
  heightSmall: string;
101
123
  heightMedium: string;
102
124
  heightLarge: string;
125
+ heightHuge: string;
103
126
  fontSizeTiny: string;
104
127
  fontSizeSmall: string;
105
128
  fontSizeMedium: string;
106
129
  fontSizeLarge: string;
130
+ fontSizeHuge: string;
107
131
  lineHeight: string;
108
132
  lineHeightTextarea: string;
109
133
  borderRadius: string;
110
134
  iconSize: string;
111
- groupLabelColor: string;
112
135
  groupLabelTextColor: string;
113
136
  textColor: string;
114
137
  textColorDisabled: string;
@@ -148,13 +171,13 @@ export declare const transferProps: {
148
171
  iconColorHover: string;
149
172
  iconColorPressed: string;
150
173
  suffixTextColor: string;
151
- paddingTiny: string;
152
- paddingSmall: string;
153
- paddingMedium: string;
154
- paddingLarge: string;
155
- clearSize: string;
174
+ selectionColor: string;
156
175
  }, any>;
157
176
  Empty: import("../../_mixins").Theme<"Empty", {
177
+ iconSizeSmall: string;
178
+ iconSizeMedium: string;
179
+ iconSizeLarge: string;
180
+ iconSizeHuge: string;
158
181
  fontSizeSmall: string;
159
182
  fontSizeMedium: string;
160
183
  fontSizeLarge: string;
@@ -162,10 +185,6 @@ export declare const transferProps: {
162
185
  textColor: string;
163
186
  iconColor: string;
164
187
  extraTextColor: string;
165
- iconSizeSmall: string;
166
- iconSizeMedium: string;
167
- iconSizeLarge: string;
168
- iconSizeHuge: string;
169
188
  }, any>;
170
189
  Button: import("../../_mixins").Theme<"Button", {
171
190
  heightTiny: string;
@@ -193,7 +212,7 @@ export declare const transferProps: {
193
212
  colorTertiaryHover: string;
194
213
  colorTertiaryPressed: string;
195
214
  colorTertiaryDisalbed: string;
196
- waveColorTerniary: string;
215
+ waveColorTertiary: string;
197
216
  textColorTextTertiary: string;
198
217
  colorQuaternary: string;
199
218
  colorQuaternaryHover: string;
@@ -380,6 +399,8 @@ export declare const transferProps: {
380
399
  }, any>;
381
400
  }>>;
382
401
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
402
+ extraFontSize: string;
403
+ width: string;
383
404
  itemHeightSmall: string;
384
405
  itemHeightMedium: string;
385
406
  itemHeightLarge: string;
@@ -400,65 +421,86 @@ export declare const transferProps: {
400
421
  titleFontWeight: string;
401
422
  iconColor: string;
402
423
  iconColorDisabled: string;
403
- extraFontSize: string;
404
- width: string;
405
424
  }, {
406
425
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
407
- labelLineHeight: string;
408
- fontSizeSmall: string;
409
- fontSizeMedium: string;
426
+ fontWeight: string;
427
+ textColor: string;
428
+ descriptionTextColor: string;
429
+ textColorDisabled: string;
430
+ descriptionTextColorDisabled: string;
410
431
  fontSizeLarge: string;
432
+ fontSizeMedium: string;
433
+ fontSizeSmall: string;
434
+ lineHeightLarge: string;
435
+ lineHeightMedium: string;
436
+ lineHeightSmall: string;
437
+ borderRadiusLarge: string;
438
+ borderRadiusMedium: string;
439
+ borderRadiusSmall: string;
411
440
  color: string;
441
+ colorHover: string;
442
+ colorFocus: string;
443
+ colorActive: string;
412
444
  colorChecked: string;
445
+ colorHoverChecked: string;
446
+ colorFocusChecked: string;
447
+ colorActiveChecked: string;
413
448
  colorDisabled: string;
414
449
  colorDisabledChecked: string;
415
- colorTableHeader: string;
416
- colorTableHeaderModal: string;
417
- colorTableHeaderPopover: string;
418
450
  checkMarkColor: string;
451
+ checkMarkColorHover: string;
452
+ checkMarkColorFocus: string;
453
+ checkMarkColorActive: string;
419
454
  checkMarkColorDisabled: string;
420
455
  checkMarkColorDisabledChecked: string;
421
456
  border: string;
422
- borderDisabled: string;
423
- borderDisabledChecked: string;
424
457
  borderHover: string;
425
- borderChecked: string;
426
458
  borderFocus: string;
459
+ borderActive: string;
460
+ borderChecked: string;
461
+ borderHoverChecked: string;
462
+ borderFocusChecked: string;
463
+ borderActiveChecked: string;
464
+ borderDisabled: string;
465
+ borderDisabledChecked: string;
427
466
  boxShadowHover: string;
428
467
  boxShadowFocus: string;
429
468
  boxShadowActive: string;
430
469
  boxShadowHoverChecked: string;
431
470
  boxShadowFocusChecked: string;
432
471
  boxShadowActiveChecked: string;
433
- textColor: string;
434
472
  sizeSmall: string;
435
473
  sizeMedium: string;
436
474
  sizeLarge: string;
437
475
  labelPadding: string;
438
- labelFontWeight: string;
439
- borderRadiusLarge: string;
440
- borderRadiusSmall: string;
441
476
  }, any>;
442
477
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
443
478
  color: string;
444
479
  colorHover: string;
445
480
  }, any>;
446
481
  Input: import("../../_mixins").Theme<"Input", {
482
+ paddingTiny: string;
483
+ paddingSmall: string;
484
+ paddingMedium: string;
485
+ paddingLarge: string;
486
+ paddingHuge: string;
487
+ clearSize: string;
447
488
  countTextColorDisabled: string;
448
489
  countTextColor: string;
449
490
  heightTiny: string;
450
491
  heightSmall: string;
451
492
  heightMedium: string;
452
493
  heightLarge: string;
494
+ heightHuge: string;
453
495
  fontSizeTiny: string;
454
496
  fontSizeSmall: string;
455
497
  fontSizeMedium: string;
456
498
  fontSizeLarge: string;
499
+ fontSizeHuge: string;
457
500
  lineHeight: string;
458
501
  lineHeightTextarea: string;
459
502
  borderRadius: string;
460
503
  iconSize: string;
461
- groupLabelColor: string;
462
504
  groupLabelTextColor: string;
463
505
  textColor: string;
464
506
  textColorDisabled: string;
@@ -498,13 +540,13 @@ export declare const transferProps: {
498
540
  iconColorHover: string;
499
541
  iconColorPressed: string;
500
542
  suffixTextColor: string;
501
- paddingTiny: string;
502
- paddingSmall: string;
503
- paddingMedium: string;
504
- paddingLarge: string;
505
- clearSize: string;
543
+ selectionColor: string;
506
544
  }, any>;
507
545
  Empty: import("../../_mixins").Theme<"Empty", {
546
+ iconSizeSmall: string;
547
+ iconSizeMedium: string;
548
+ iconSizeLarge: string;
549
+ iconSizeHuge: string;
508
550
  fontSizeSmall: string;
509
551
  fontSizeMedium: string;
510
552
  fontSizeLarge: string;
@@ -512,10 +554,6 @@ export declare const transferProps: {
512
554
  textColor: string;
513
555
  iconColor: string;
514
556
  extraTextColor: string;
515
- iconSizeSmall: string;
516
- iconSizeMedium: string;
517
- iconSizeLarge: string;
518
- iconSizeHuge: string;
519
557
  }, any>;
520
558
  Button: import("../../_mixins").Theme<"Button", {
521
559
  heightTiny: string;
@@ -543,7 +581,7 @@ export declare const transferProps: {
543
581
  colorTertiaryHover: string;
544
582
  colorTertiaryPressed: string;
545
583
  colorTertiaryDisalbed: string;
546
- waveColorTerniary: string;
584
+ waveColorTertiary: string;
547
585
  textColorTextTertiary: string;
548
586
  colorQuaternary: string;
549
587
  colorQuaternaryHover: string;
@@ -730,6 +768,8 @@ export declare const transferProps: {
730
768
  }, any>;
731
769
  }>>>;
732
770
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
771
+ extraFontSize: string;
772
+ width: string;
733
773
  itemHeightSmall: string;
734
774
  itemHeightMedium: string;
735
775
  itemHeightLarge: string;
@@ -750,65 +790,86 @@ export declare const transferProps: {
750
790
  titleFontWeight: string;
751
791
  iconColor: string;
752
792
  iconColorDisabled: string;
753
- extraFontSize: string;
754
- width: string;
755
793
  }, {
756
794
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
757
- labelLineHeight: string;
758
- fontSizeSmall: string;
759
- fontSizeMedium: string;
795
+ fontWeight: string;
796
+ textColor: string;
797
+ descriptionTextColor: string;
798
+ textColorDisabled: string;
799
+ descriptionTextColorDisabled: string;
760
800
  fontSizeLarge: string;
801
+ fontSizeMedium: string;
802
+ fontSizeSmall: string;
803
+ lineHeightLarge: string;
804
+ lineHeightMedium: string;
805
+ lineHeightSmall: string;
806
+ borderRadiusLarge: string;
807
+ borderRadiusMedium: string;
808
+ borderRadiusSmall: string;
761
809
  color: string;
810
+ colorHover: string;
811
+ colorFocus: string;
812
+ colorActive: string;
762
813
  colorChecked: string;
814
+ colorHoverChecked: string;
815
+ colorFocusChecked: string;
816
+ colorActiveChecked: string;
763
817
  colorDisabled: string;
764
818
  colorDisabledChecked: string;
765
- colorTableHeader: string;
766
- colorTableHeaderModal: string;
767
- colorTableHeaderPopover: string;
768
819
  checkMarkColor: string;
820
+ checkMarkColorHover: string;
821
+ checkMarkColorFocus: string;
822
+ checkMarkColorActive: string;
769
823
  checkMarkColorDisabled: string;
770
824
  checkMarkColorDisabledChecked: string;
771
825
  border: string;
772
- borderDisabled: string;
773
- borderDisabledChecked: string;
774
826
  borderHover: string;
775
- borderChecked: string;
776
827
  borderFocus: string;
828
+ borderActive: string;
829
+ borderChecked: string;
830
+ borderHoverChecked: string;
831
+ borderFocusChecked: string;
832
+ borderActiveChecked: string;
833
+ borderDisabled: string;
834
+ borderDisabledChecked: string;
777
835
  boxShadowHover: string;
778
836
  boxShadowFocus: string;
779
837
  boxShadowActive: string;
780
838
  boxShadowHoverChecked: string;
781
839
  boxShadowFocusChecked: string;
782
840
  boxShadowActiveChecked: string;
783
- textColor: string;
784
841
  sizeSmall: string;
785
842
  sizeMedium: string;
786
843
  sizeLarge: string;
787
844
  labelPadding: string;
788
- labelFontWeight: string;
789
- borderRadiusLarge: string;
790
- borderRadiusSmall: string;
791
845
  }, any>;
792
846
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
793
847
  color: string;
794
848
  colorHover: string;
795
849
  }, any>;
796
850
  Input: import("../../_mixins").Theme<"Input", {
851
+ paddingTiny: string;
852
+ paddingSmall: string;
853
+ paddingMedium: string;
854
+ paddingLarge: string;
855
+ paddingHuge: string;
856
+ clearSize: string;
797
857
  countTextColorDisabled: string;
798
858
  countTextColor: string;
799
859
  heightTiny: string;
800
860
  heightSmall: string;
801
861
  heightMedium: string;
802
862
  heightLarge: string;
863
+ heightHuge: string;
803
864
  fontSizeTiny: string;
804
865
  fontSizeSmall: string;
805
866
  fontSizeMedium: string;
806
867
  fontSizeLarge: string;
868
+ fontSizeHuge: string;
807
869
  lineHeight: string;
808
870
  lineHeightTextarea: string;
809
871
  borderRadius: string;
810
872
  iconSize: string;
811
- groupLabelColor: string;
812
873
  groupLabelTextColor: string;
813
874
  textColor: string;
814
875
  textColorDisabled: string;
@@ -848,13 +909,13 @@ export declare const transferProps: {
848
909
  iconColorHover: string;
849
910
  iconColorPressed: string;
850
911
  suffixTextColor: string;
851
- paddingTiny: string;
852
- paddingSmall: string;
853
- paddingMedium: string;
854
- paddingLarge: string;
855
- clearSize: string;
912
+ selectionColor: string;
856
913
  }, any>;
857
914
  Empty: import("../../_mixins").Theme<"Empty", {
915
+ iconSizeSmall: string;
916
+ iconSizeMedium: string;
917
+ iconSizeLarge: string;
918
+ iconSizeHuge: string;
858
919
  fontSizeSmall: string;
859
920
  fontSizeMedium: string;
860
921
  fontSizeLarge: string;
@@ -862,10 +923,6 @@ export declare const transferProps: {
862
923
  textColor: string;
863
924
  iconColor: string;
864
925
  extraTextColor: string;
865
- iconSizeSmall: string;
866
- iconSizeMedium: string;
867
- iconSizeLarge: string;
868
- iconSizeHuge: string;
869
926
  }, any>;
870
927
  Button: import("../../_mixins").Theme<"Button", {
871
928
  heightTiny: string;
@@ -893,7 +950,7 @@ export declare const transferProps: {
893
950
  colorTertiaryHover: string;
894
951
  colorTertiaryPressed: string;
895
952
  colorTertiaryDisalbed: string;
896
- waveColorTerniary: string;
953
+ waveColorTertiary: string;
897
954
  textColorTextTertiary: string;
898
955
  colorQuaternary: string;
899
956
  colorQuaternaryHover: string;
@@ -1110,6 +1167,8 @@ declare const _default: import("vue").DefineComponent<{
1110
1167
  readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
1111
1168
  readonly onChange: PropType<MaybeArray<OnUpdateValue>>;
1112
1169
  readonly theme: PropType<import("../../_mixins").Theme<"Transfer", {
1170
+ extraFontSize: string;
1171
+ width: string;
1113
1172
  itemHeightSmall: string;
1114
1173
  itemHeightMedium: string;
1115
1174
  itemHeightLarge: string;
@@ -1130,65 +1189,86 @@ declare const _default: import("vue").DefineComponent<{
1130
1189
  titleFontWeight: string;
1131
1190
  iconColor: string;
1132
1191
  iconColorDisabled: string;
1133
- extraFontSize: string;
1134
- width: string;
1135
1192
  }, {
1136
1193
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1137
- labelLineHeight: string;
1138
- fontSizeSmall: string;
1139
- fontSizeMedium: string;
1194
+ fontWeight: string;
1195
+ textColor: string;
1196
+ descriptionTextColor: string;
1197
+ textColorDisabled: string;
1198
+ descriptionTextColorDisabled: string;
1140
1199
  fontSizeLarge: string;
1200
+ fontSizeMedium: string;
1201
+ fontSizeSmall: string;
1202
+ lineHeightLarge: string;
1203
+ lineHeightMedium: string;
1204
+ lineHeightSmall: string;
1205
+ borderRadiusLarge: string;
1206
+ borderRadiusMedium: string;
1207
+ borderRadiusSmall: string;
1141
1208
  color: string;
1209
+ colorHover: string;
1210
+ colorFocus: string;
1211
+ colorActive: string;
1142
1212
  colorChecked: string;
1213
+ colorHoverChecked: string;
1214
+ colorFocusChecked: string;
1215
+ colorActiveChecked: string;
1143
1216
  colorDisabled: string;
1144
1217
  colorDisabledChecked: string;
1145
- colorTableHeader: string;
1146
- colorTableHeaderModal: string;
1147
- colorTableHeaderPopover: string;
1148
1218
  checkMarkColor: string;
1219
+ checkMarkColorHover: string;
1220
+ checkMarkColorFocus: string;
1221
+ checkMarkColorActive: string;
1149
1222
  checkMarkColorDisabled: string;
1150
1223
  checkMarkColorDisabledChecked: string;
1151
1224
  border: string;
1152
- borderDisabled: string;
1153
- borderDisabledChecked: string;
1154
1225
  borderHover: string;
1155
- borderChecked: string;
1156
1226
  borderFocus: string;
1227
+ borderActive: string;
1228
+ borderChecked: string;
1229
+ borderHoverChecked: string;
1230
+ borderFocusChecked: string;
1231
+ borderActiveChecked: string;
1232
+ borderDisabled: string;
1233
+ borderDisabledChecked: string;
1157
1234
  boxShadowHover: string;
1158
1235
  boxShadowFocus: string;
1159
1236
  boxShadowActive: string;
1160
1237
  boxShadowHoverChecked: string;
1161
1238
  boxShadowFocusChecked: string;
1162
1239
  boxShadowActiveChecked: string;
1163
- textColor: string;
1164
1240
  sizeSmall: string;
1165
1241
  sizeMedium: string;
1166
1242
  sizeLarge: string;
1167
1243
  labelPadding: string;
1168
- labelFontWeight: string;
1169
- borderRadiusLarge: string;
1170
- borderRadiusSmall: string;
1171
1244
  }, any>;
1172
1245
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1173
1246
  color: string;
1174
1247
  colorHover: string;
1175
1248
  }, any>;
1176
1249
  Input: import("../../_mixins").Theme<"Input", {
1250
+ paddingTiny: string;
1251
+ paddingSmall: string;
1252
+ paddingMedium: string;
1253
+ paddingLarge: string;
1254
+ paddingHuge: string;
1255
+ clearSize: string;
1177
1256
  countTextColorDisabled: string;
1178
1257
  countTextColor: string;
1179
1258
  heightTiny: string;
1180
1259
  heightSmall: string;
1181
1260
  heightMedium: string;
1182
1261
  heightLarge: string;
1262
+ heightHuge: string;
1183
1263
  fontSizeTiny: string;
1184
1264
  fontSizeSmall: string;
1185
1265
  fontSizeMedium: string;
1186
1266
  fontSizeLarge: string;
1267
+ fontSizeHuge: string;
1187
1268
  lineHeight: string;
1188
1269
  lineHeightTextarea: string;
1189
1270
  borderRadius: string;
1190
1271
  iconSize: string;
1191
- groupLabelColor: string;
1192
1272
  groupLabelTextColor: string;
1193
1273
  textColor: string;
1194
1274
  textColorDisabled: string;
@@ -1228,13 +1308,13 @@ declare const _default: import("vue").DefineComponent<{
1228
1308
  iconColorHover: string;
1229
1309
  iconColorPressed: string;
1230
1310
  suffixTextColor: string;
1231
- paddingTiny: string;
1232
- paddingSmall: string;
1233
- paddingMedium: string;
1234
- paddingLarge: string;
1235
- clearSize: string;
1311
+ selectionColor: string;
1236
1312
  }, any>;
1237
1313
  Empty: import("../../_mixins").Theme<"Empty", {
1314
+ iconSizeSmall: string;
1315
+ iconSizeMedium: string;
1316
+ iconSizeLarge: string;
1317
+ iconSizeHuge: string;
1238
1318
  fontSizeSmall: string;
1239
1319
  fontSizeMedium: string;
1240
1320
  fontSizeLarge: string;
@@ -1242,10 +1322,6 @@ declare const _default: import("vue").DefineComponent<{
1242
1322
  textColor: string;
1243
1323
  iconColor: string;
1244
1324
  extraTextColor: string;
1245
- iconSizeSmall: string;
1246
- iconSizeMedium: string;
1247
- iconSizeLarge: string;
1248
- iconSizeHuge: string;
1249
1325
  }, any>;
1250
1326
  Button: import("../../_mixins").Theme<"Button", {
1251
1327
  heightTiny: string;
@@ -1273,7 +1349,7 @@ declare const _default: import("vue").DefineComponent<{
1273
1349
  colorTertiaryHover: string;
1274
1350
  colorTertiaryPressed: string;
1275
1351
  colorTertiaryDisalbed: string;
1276
- waveColorTerniary: string;
1352
+ waveColorTertiary: string;
1277
1353
  textColorTextTertiary: string;
1278
1354
  colorQuaternary: string;
1279
1355
  colorQuaternaryHover: string;
@@ -1460,6 +1536,8 @@ declare const _default: import("vue").DefineComponent<{
1460
1536
  }, any>;
1461
1537
  }>>;
1462
1538
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
1539
+ extraFontSize: string;
1540
+ width: string;
1463
1541
  itemHeightSmall: string;
1464
1542
  itemHeightMedium: string;
1465
1543
  itemHeightLarge: string;
@@ -1480,65 +1558,86 @@ declare const _default: import("vue").DefineComponent<{
1480
1558
  titleFontWeight: string;
1481
1559
  iconColor: string;
1482
1560
  iconColorDisabled: string;
1483
- extraFontSize: string;
1484
- width: string;
1485
1561
  }, {
1486
1562
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1487
- labelLineHeight: string;
1488
- fontSizeSmall: string;
1489
- fontSizeMedium: string;
1563
+ fontWeight: string;
1564
+ textColor: string;
1565
+ descriptionTextColor: string;
1566
+ textColorDisabled: string;
1567
+ descriptionTextColorDisabled: string;
1490
1568
  fontSizeLarge: string;
1569
+ fontSizeMedium: string;
1570
+ fontSizeSmall: string;
1571
+ lineHeightLarge: string;
1572
+ lineHeightMedium: string;
1573
+ lineHeightSmall: string;
1574
+ borderRadiusLarge: string;
1575
+ borderRadiusMedium: string;
1576
+ borderRadiusSmall: string;
1491
1577
  color: string;
1578
+ colorHover: string;
1579
+ colorFocus: string;
1580
+ colorActive: string;
1492
1581
  colorChecked: string;
1582
+ colorHoverChecked: string;
1583
+ colorFocusChecked: string;
1584
+ colorActiveChecked: string;
1493
1585
  colorDisabled: string;
1494
1586
  colorDisabledChecked: string;
1495
- colorTableHeader: string;
1496
- colorTableHeaderModal: string;
1497
- colorTableHeaderPopover: string;
1498
1587
  checkMarkColor: string;
1588
+ checkMarkColorHover: string;
1589
+ checkMarkColorFocus: string;
1590
+ checkMarkColorActive: string;
1499
1591
  checkMarkColorDisabled: string;
1500
1592
  checkMarkColorDisabledChecked: string;
1501
1593
  border: string;
1502
- borderDisabled: string;
1503
- borderDisabledChecked: string;
1504
1594
  borderHover: string;
1505
- borderChecked: string;
1506
1595
  borderFocus: string;
1596
+ borderActive: string;
1597
+ borderChecked: string;
1598
+ borderHoverChecked: string;
1599
+ borderFocusChecked: string;
1600
+ borderActiveChecked: string;
1601
+ borderDisabled: string;
1602
+ borderDisabledChecked: string;
1507
1603
  boxShadowHover: string;
1508
1604
  boxShadowFocus: string;
1509
1605
  boxShadowActive: string;
1510
1606
  boxShadowHoverChecked: string;
1511
1607
  boxShadowFocusChecked: string;
1512
1608
  boxShadowActiveChecked: string;
1513
- textColor: string;
1514
1609
  sizeSmall: string;
1515
1610
  sizeMedium: string;
1516
1611
  sizeLarge: string;
1517
1612
  labelPadding: string;
1518
- labelFontWeight: string;
1519
- borderRadiusLarge: string;
1520
- borderRadiusSmall: string;
1521
1613
  }, any>;
1522
1614
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1523
1615
  color: string;
1524
1616
  colorHover: string;
1525
1617
  }, any>;
1526
1618
  Input: import("../../_mixins").Theme<"Input", {
1619
+ paddingTiny: string;
1620
+ paddingSmall: string;
1621
+ paddingMedium: string;
1622
+ paddingLarge: string;
1623
+ paddingHuge: string;
1624
+ clearSize: string;
1527
1625
  countTextColorDisabled: string;
1528
1626
  countTextColor: string;
1529
1627
  heightTiny: string;
1530
1628
  heightSmall: string;
1531
1629
  heightMedium: string;
1532
1630
  heightLarge: string;
1631
+ heightHuge: string;
1533
1632
  fontSizeTiny: string;
1534
1633
  fontSizeSmall: string;
1535
1634
  fontSizeMedium: string;
1536
1635
  fontSizeLarge: string;
1636
+ fontSizeHuge: string;
1537
1637
  lineHeight: string;
1538
1638
  lineHeightTextarea: string;
1539
1639
  borderRadius: string;
1540
1640
  iconSize: string;
1541
- groupLabelColor: string;
1542
1641
  groupLabelTextColor: string;
1543
1642
  textColor: string;
1544
1643
  textColorDisabled: string;
@@ -1578,13 +1677,13 @@ declare const _default: import("vue").DefineComponent<{
1578
1677
  iconColorHover: string;
1579
1678
  iconColorPressed: string;
1580
1679
  suffixTextColor: string;
1581
- paddingTiny: string;
1582
- paddingSmall: string;
1583
- paddingMedium: string;
1584
- paddingLarge: string;
1585
- clearSize: string;
1680
+ selectionColor: string;
1586
1681
  }, any>;
1587
1682
  Empty: import("../../_mixins").Theme<"Empty", {
1683
+ iconSizeSmall: string;
1684
+ iconSizeMedium: string;
1685
+ iconSizeLarge: string;
1686
+ iconSizeHuge: string;
1588
1687
  fontSizeSmall: string;
1589
1688
  fontSizeMedium: string;
1590
1689
  fontSizeLarge: string;
@@ -1592,10 +1691,6 @@ declare const _default: import("vue").DefineComponent<{
1592
1691
  textColor: string;
1593
1692
  iconColor: string;
1594
1693
  extraTextColor: string;
1595
- iconSizeSmall: string;
1596
- iconSizeMedium: string;
1597
- iconSizeLarge: string;
1598
- iconSizeHuge: string;
1599
1694
  }, any>;
1600
1695
  Button: import("../../_mixins").Theme<"Button", {
1601
1696
  heightTiny: string;
@@ -1623,7 +1718,7 @@ declare const _default: import("vue").DefineComponent<{
1623
1718
  colorTertiaryHover: string;
1624
1719
  colorTertiaryPressed: string;
1625
1720
  colorTertiaryDisalbed: string;
1626
- waveColorTerniary: string;
1721
+ waveColorTertiary: string;
1627
1722
  textColorTextTertiary: string;
1628
1723
  colorQuaternary: string;
1629
1724
  colorQuaternaryHover: string;
@@ -1810,6 +1905,8 @@ declare const _default: import("vue").DefineComponent<{
1810
1905
  }, any>;
1811
1906
  }>>>;
1812
1907
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
1908
+ extraFontSize: string;
1909
+ width: string;
1813
1910
  itemHeightSmall: string;
1814
1911
  itemHeightMedium: string;
1815
1912
  itemHeightLarge: string;
@@ -1830,65 +1927,86 @@ declare const _default: import("vue").DefineComponent<{
1830
1927
  titleFontWeight: string;
1831
1928
  iconColor: string;
1832
1929
  iconColorDisabled: string;
1833
- extraFontSize: string;
1834
- width: string;
1835
1930
  }, {
1836
1931
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1837
- labelLineHeight: string;
1838
- fontSizeSmall: string;
1839
- fontSizeMedium: string;
1932
+ fontWeight: string;
1933
+ textColor: string;
1934
+ descriptionTextColor: string;
1935
+ textColorDisabled: string;
1936
+ descriptionTextColorDisabled: string;
1840
1937
  fontSizeLarge: string;
1938
+ fontSizeMedium: string;
1939
+ fontSizeSmall: string;
1940
+ lineHeightLarge: string;
1941
+ lineHeightMedium: string;
1942
+ lineHeightSmall: string;
1943
+ borderRadiusLarge: string;
1944
+ borderRadiusMedium: string;
1945
+ borderRadiusSmall: string;
1841
1946
  color: string;
1947
+ colorHover: string;
1948
+ colorFocus: string;
1949
+ colorActive: string;
1842
1950
  colorChecked: string;
1951
+ colorHoverChecked: string;
1952
+ colorFocusChecked: string;
1953
+ colorActiveChecked: string;
1843
1954
  colorDisabled: string;
1844
1955
  colorDisabledChecked: string;
1845
- colorTableHeader: string;
1846
- colorTableHeaderModal: string;
1847
- colorTableHeaderPopover: string;
1848
1956
  checkMarkColor: string;
1957
+ checkMarkColorHover: string;
1958
+ checkMarkColorFocus: string;
1959
+ checkMarkColorActive: string;
1849
1960
  checkMarkColorDisabled: string;
1850
1961
  checkMarkColorDisabledChecked: string;
1851
1962
  border: string;
1852
- borderDisabled: string;
1853
- borderDisabledChecked: string;
1854
1963
  borderHover: string;
1855
- borderChecked: string;
1856
1964
  borderFocus: string;
1965
+ borderActive: string;
1966
+ borderChecked: string;
1967
+ borderHoverChecked: string;
1968
+ borderFocusChecked: string;
1969
+ borderActiveChecked: string;
1970
+ borderDisabled: string;
1971
+ borderDisabledChecked: string;
1857
1972
  boxShadowHover: string;
1858
1973
  boxShadowFocus: string;
1859
1974
  boxShadowActive: string;
1860
1975
  boxShadowHoverChecked: string;
1861
1976
  boxShadowFocusChecked: string;
1862
1977
  boxShadowActiveChecked: string;
1863
- textColor: string;
1864
1978
  sizeSmall: string;
1865
1979
  sizeMedium: string;
1866
1980
  sizeLarge: string;
1867
1981
  labelPadding: string;
1868
- labelFontWeight: string;
1869
- borderRadiusLarge: string;
1870
- borderRadiusSmall: string;
1871
1982
  }, any>;
1872
1983
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1873
1984
  color: string;
1874
1985
  colorHover: string;
1875
1986
  }, any>;
1876
1987
  Input: import("../../_mixins").Theme<"Input", {
1988
+ paddingTiny: string;
1989
+ paddingSmall: string;
1990
+ paddingMedium: string;
1991
+ paddingLarge: string;
1992
+ paddingHuge: string;
1993
+ clearSize: string;
1877
1994
  countTextColorDisabled: string;
1878
1995
  countTextColor: string;
1879
1996
  heightTiny: string;
1880
1997
  heightSmall: string;
1881
1998
  heightMedium: string;
1882
1999
  heightLarge: string;
2000
+ heightHuge: string;
1883
2001
  fontSizeTiny: string;
1884
2002
  fontSizeSmall: string;
1885
2003
  fontSizeMedium: string;
1886
2004
  fontSizeLarge: string;
2005
+ fontSizeHuge: string;
1887
2006
  lineHeight: string;
1888
2007
  lineHeightTextarea: string;
1889
2008
  borderRadius: string;
1890
2009
  iconSize: string;
1891
- groupLabelColor: string;
1892
2010
  groupLabelTextColor: string;
1893
2011
  textColor: string;
1894
2012
  textColorDisabled: string;
@@ -1928,13 +2046,13 @@ declare const _default: import("vue").DefineComponent<{
1928
2046
  iconColorHover: string;
1929
2047
  iconColorPressed: string;
1930
2048
  suffixTextColor: string;
1931
- paddingTiny: string;
1932
- paddingSmall: string;
1933
- paddingMedium: string;
1934
- paddingLarge: string;
1935
- clearSize: string;
2049
+ selectionColor: string;
1936
2050
  }, any>;
1937
2051
  Empty: import("../../_mixins").Theme<"Empty", {
2052
+ iconSizeSmall: string;
2053
+ iconSizeMedium: string;
2054
+ iconSizeLarge: string;
2055
+ iconSizeHuge: string;
1938
2056
  fontSizeSmall: string;
1939
2057
  fontSizeMedium: string;
1940
2058
  fontSizeLarge: string;
@@ -1942,10 +2060,6 @@ declare const _default: import("vue").DefineComponent<{
1942
2060
  textColor: string;
1943
2061
  iconColor: string;
1944
2062
  extraTextColor: string;
1945
- iconSizeSmall: string;
1946
- iconSizeMedium: string;
1947
- iconSizeLarge: string;
1948
- iconSizeHuge: string;
1949
2063
  }, any>;
1950
2064
  Button: import("../../_mixins").Theme<"Button", {
1951
2065
  heightTiny: string;
@@ -1973,7 +2087,7 @@ declare const _default: import("vue").DefineComponent<{
1973
2087
  colorTertiaryHover: string;
1974
2088
  colorTertiaryPressed: string;
1975
2089
  colorTertiaryDisalbed: string;
1976
- waveColorTerniary: string;
2090
+ waveColorTertiary: string;
1977
2091
  textColorTextTertiary: string;
1978
2092
  colorQuaternary: string;
1979
2093
  colorQuaternaryHover: string;
@@ -2171,127 +2285,118 @@ declare const _default: import("vue").DefineComponent<{
2171
2285
  isInputing: import("vue").Ref<boolean>;
2172
2286
  mergedTheme: import("vue").ComputedRef<{
2173
2287
  common: {
2174
- baseColor: string;
2175
- primaryColor: string;
2176
- primaryColorHover: string;
2177
- primaryColorPressed: string;
2178
- primaryColorSuppl: string;
2179
- infoColor: string;
2180
- infoColorHover: string;
2181
- infoColorPressed: string;
2182
- infoColorSuppl: string;
2183
- successColor: string;
2184
- successColorHover: string;
2185
- successColorPressed: string;
2186
- successColorSuppl: string;
2187
- warningColor: string;
2188
- warningColorHover: string;
2189
- warningColorPressed: string;
2190
- warningColorSuppl: string;
2191
- errorColor: string;
2192
- errorColorHover: string;
2193
- errorColorPressed: string;
2194
- errorColorSuppl: string;
2195
- tertiaryColor: string;
2196
- tertiaryColorHover: string;
2197
- tertiaryColorActive: string;
2198
- tertiaryColorSuppl: string;
2199
- tertiaryElements: string;
2200
- textColorBase: string;
2201
- textColor1: string;
2202
- textColor2: string;
2203
- textColor3: string;
2204
- textTertiary: string;
2205
- boxShadowHover: string;
2206
- boxShadowFocus: string;
2207
- boxShadowHoverChecked: string;
2208
- boxShadowFocusChecked: string;
2209
- textColorDisabled: string;
2210
- placeholderColor: string;
2211
- placeholderColorDisabled: string;
2212
- iconColor: string;
2213
- iconColorHover: string;
2214
- iconColorPressed: string;
2215
- iconColorDisabled: string;
2216
- opacity1: string;
2217
- opacity2: string;
2218
- opacity3: string;
2219
- opacity4: string;
2220
- opacity5: string;
2221
- dividerColor: string;
2222
- borderColor: string;
2223
- borderTagColor: string;
2224
- closeIconColor: string;
2225
- closeIconColorHover: string;
2226
- closeIconColorPressed: string;
2227
- closeColorHover: string;
2228
- closeColorPressed: string;
2229
- clearColor: string;
2230
- clearColorHover: string;
2231
- clearColorPressed: string;
2232
2288
  scrollbarColor: string;
2233
2289
  scrollbarColorHover: string;
2234
2290
  scrollbarWidth: string;
2235
2291
  scrollbarHeight: string;
2236
2292
  scrollbarBorderRadius: string;
2237
- progressRailColor: string;
2238
- railColor: string;
2239
- popoverColor: string;
2240
- tableColor: string;
2241
- cardColor: string;
2242
- modalColor: string;
2243
- bodyColor: string;
2244
- tagColor: string;
2245
- avatarColor: string;
2246
- avatarTextColor: string;
2247
- avatarIconColor: string;
2248
- invertedColor: string;
2249
- tooltipColor: string;
2250
- inputColor: string;
2251
- codeColor: string;
2252
- tabColor: string;
2253
- actionColor: string;
2254
- tableHeaderColor: string;
2255
- hoverColor: string;
2256
- tableColorHover: string;
2257
- tableColorStriped: string;
2258
- pressedColor: string;
2259
2293
  opacityDisabled: string;
2260
- inputColorDisabled: string;
2261
- buttonColor2: string;
2262
- buttonColor2Hover: string;
2263
- buttonColor2Pressed: string;
2264
- boxShadow1: string;
2265
- boxShadow2: string;
2266
- boxShadow3: string;
2294
+ brandPrimary50: string;
2295
+ brandPrimary100: string;
2296
+ brandPrimary200: string;
2297
+ brandPrimary300: string;
2298
+ brandPrimary400: string;
2299
+ brandPrimary500: string;
2300
+ brandPrimary550: string;
2301
+ brandPrimary600: string;
2302
+ brandSecondary500: string;
2303
+ brandSecondary300: string;
2304
+ brandSecondary600: string;
2305
+ brandTertiary500: string;
2306
+ brandTertiary300: string;
2307
+ brandTertiary600: string;
2308
+ brandQuaternary500: string;
2309
+ brandQuaternary300: string;
2310
+ brandQuaternary600: string;
2311
+ brandQuinary500: string;
2312
+ brandQuinary300: string;
2313
+ brandQuinary600: string;
2314
+ brandQuinary100: string;
2315
+ surfacePrimary: string;
2316
+ surfaceSecondary: string;
2317
+ containerPrimary: string;
2318
+ containerSecondary: string;
2319
+ textPrimary: string;
2320
+ textSecondary: string;
2321
+ textTertiary: string;
2322
+ textQuaternary: string;
2323
+ textBrand: string;
2324
+ elementsPrimary: string;
2325
+ elementsSecondary: string;
2326
+ elementsTertiary: string;
2327
+ elementsQuaternary: string;
2328
+ elementsQuinary: string;
2329
+ elementsDarkQuinary: string;
2330
+ elementsSenary: string;
2331
+ elementsOnContainer: string;
2332
+ transparencyPrimary: string;
2333
+ transparencySecondary: string;
2334
+ transparencyTertiary: string;
2335
+ transparencyQuinary: string;
2336
+ transparencyModal: string;
2337
+ staticBlack: string;
2338
+ staticDarkGrey: string;
2339
+ staticWhite: string;
2340
+ staticRed: string;
2341
+ staticOrange: string;
2342
+ staticGreen: string;
2343
+ staticErrorAccent: string;
2344
+ shadowDepth2: string;
2267
2345
  fontFamily: string;
2268
2346
  fontFamilyMono: string;
2269
- fontWeight: string;
2270
- fontWeightStrong: string;
2271
2347
  cubicBezierEaseInOut: string;
2272
2348
  cubicBezierEaseOut: string;
2273
2349
  cubicBezierEaseIn: string;
2274
- borderWidth: number;
2275
- borderTagWidth: number;
2350
+ borderRadiusLarge: string;
2276
2351
  borderRadius: string;
2352
+ borderRadiusMedium: string;
2277
2353
  borderRadiusSmall: string;
2278
- fontSize: string;
2279
- fontSizeMini: string;
2280
- fontSizeTiny: string;
2281
- fontSizeSmall: string;
2282
- fontSizeMedium: string;
2283
- fontSizeLarge: string;
2284
- fontSizeHuge: string;
2285
- lineHeight: string;
2354
+ borderRadiusTiny: string;
2286
2355
  heightMini: string;
2287
2356
  heightTiny: string;
2288
2357
  heightSmall: string;
2289
2358
  heightMedium: string;
2290
2359
  heightLarge: string;
2291
2360
  heightHuge: string;
2361
+ fontDisplayLarge: string;
2362
+ fontDisplaySmall: string;
2363
+ fontHeadingLarge: string;
2364
+ fontHeadingMedium: string;
2365
+ fontHeadingSmall: string;
2366
+ fontTitleLarge: string;
2367
+ fontTitleMedium: string;
2368
+ fontTitleSmall: string;
2369
+ fontBodyLarge: string;
2370
+ fontBodyMedium: string;
2371
+ fontBodySmall: string;
2372
+ lineHeightDisplayLarge: string;
2373
+ lineHeightDisplaySmall: string;
2374
+ lineHeightHeadingLarge: string;
2375
+ lineHeightHeadingMedium: string;
2376
+ lineHeightHeadingSmall: string;
2377
+ lineHeightTitleLarge: string;
2378
+ lineHeightTitleMedium: string;
2379
+ lineHeightTitleSmall: string;
2380
+ lineHeightBodyLarge: string;
2381
+ lineHeightBodyMedium: string;
2382
+ lineHeightBodySmall: string;
2383
+ fontWeight: string;
2384
+ fontWeightStrong: string;
2385
+ fontWeightBold: string;
2386
+ iconSmall: string;
2387
+ iconMedium: string;
2388
+ iconLarge: string;
2389
+ iconHuge: string;
2390
+ closeSmall: string;
2391
+ closeMedium: string;
2392
+ closeLarge: string;
2393
+ closeHuge: string;
2394
+ closeBorderRadius: string;
2292
2395
  name: "common";
2293
2396
  };
2294
2397
  self: {
2398
+ extraFontSize: string;
2399
+ width: string;
2295
2400
  itemHeightSmall: string;
2296
2401
  itemHeightMedium: string;
2297
2402
  itemHeightLarge: string;
@@ -2312,66 +2417,87 @@ declare const _default: import("vue").DefineComponent<{
2312
2417
  titleFontWeight: string;
2313
2418
  iconColor: string;
2314
2419
  iconColorDisabled: string;
2315
- extraFontSize: string;
2316
- width: string;
2317
2420
  };
2318
2421
  peers: {
2319
2422
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2320
- labelLineHeight: string;
2321
- fontSizeSmall: string;
2322
- fontSizeMedium: string;
2423
+ fontWeight: string;
2424
+ textColor: string;
2425
+ descriptionTextColor: string;
2426
+ textColorDisabled: string;
2427
+ descriptionTextColorDisabled: string;
2323
2428
  fontSizeLarge: string;
2429
+ fontSizeMedium: string;
2430
+ fontSizeSmall: string;
2431
+ lineHeightLarge: string;
2432
+ lineHeightMedium: string;
2433
+ lineHeightSmall: string;
2434
+ borderRadiusLarge: string;
2435
+ borderRadiusMedium: string;
2436
+ borderRadiusSmall: string;
2324
2437
  color: string;
2438
+ colorHover: string;
2439
+ colorFocus: string;
2440
+ colorActive: string;
2325
2441
  colorChecked: string;
2442
+ colorHoverChecked: string;
2443
+ colorFocusChecked: string;
2444
+ colorActiveChecked: string;
2326
2445
  colorDisabled: string;
2327
2446
  colorDisabledChecked: string;
2328
- colorTableHeader: string;
2329
- colorTableHeaderModal: string;
2330
- colorTableHeaderPopover: string;
2331
2447
  checkMarkColor: string;
2448
+ checkMarkColorHover: string;
2449
+ checkMarkColorFocus: string;
2450
+ checkMarkColorActive: string;
2332
2451
  checkMarkColorDisabled: string;
2333
2452
  checkMarkColorDisabledChecked: string;
2334
2453
  border: string;
2335
- borderDisabled: string;
2336
- borderDisabledChecked: string;
2337
2454
  borderHover: string;
2338
- borderChecked: string;
2339
2455
  borderFocus: string;
2456
+ borderActive: string;
2457
+ borderChecked: string;
2458
+ borderHoverChecked: string;
2459
+ borderFocusChecked: string;
2460
+ borderActiveChecked: string;
2461
+ borderDisabled: string;
2462
+ borderDisabledChecked: string;
2340
2463
  boxShadowHover: string;
2341
2464
  boxShadowFocus: string;
2342
2465
  boxShadowActive: string;
2343
2466
  boxShadowHoverChecked: string;
2344
2467
  boxShadowFocusChecked: string;
2345
2468
  boxShadowActiveChecked: string;
2346
- textColor: string;
2347
2469
  sizeSmall: string;
2348
2470
  sizeMedium: string;
2349
2471
  sizeLarge: string;
2350
2472
  labelPadding: string;
2351
- labelFontWeight: string;
2352
- borderRadiusLarge: string;
2353
- borderRadiusSmall: string;
2354
2473
  }, any>;
2355
2474
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2356
2475
  color: string;
2357
2476
  colorHover: string;
2358
2477
  }, any>;
2359
2478
  Input: import("../../_mixins").Theme<"Input", {
2479
+ paddingTiny: string;
2480
+ paddingSmall: string;
2481
+ paddingMedium: string;
2482
+ paddingLarge: string;
2483
+ paddingHuge: string;
2484
+ clearSize: string;
2360
2485
  countTextColorDisabled: string;
2361
2486
  countTextColor: string;
2362
2487
  heightTiny: string;
2363
2488
  heightSmall: string;
2364
2489
  heightMedium: string;
2365
2490
  heightLarge: string;
2491
+ heightHuge: string;
2366
2492
  fontSizeTiny: string;
2367
2493
  fontSizeSmall: string;
2368
2494
  fontSizeMedium: string;
2369
2495
  fontSizeLarge: string;
2496
+ fontSizeHuge: string;
2370
2497
  lineHeight: string;
2371
2498
  lineHeightTextarea: string;
2372
2499
  borderRadius: string;
2373
2500
  iconSize: string;
2374
- groupLabelColor: string;
2375
2501
  groupLabelTextColor: string;
2376
2502
  textColor: string;
2377
2503
  textColorDisabled: string;
@@ -2411,13 +2537,13 @@ declare const _default: import("vue").DefineComponent<{
2411
2537
  iconColorHover: string;
2412
2538
  iconColorPressed: string;
2413
2539
  suffixTextColor: string;
2414
- paddingTiny: string;
2415
- paddingSmall: string;
2416
- paddingMedium: string;
2417
- paddingLarge: string;
2418
- clearSize: string;
2540
+ selectionColor: string;
2419
2541
  }, any>;
2420
2542
  Empty: import("../../_mixins").Theme<"Empty", {
2543
+ iconSizeSmall: string;
2544
+ iconSizeMedium: string;
2545
+ iconSizeLarge: string;
2546
+ iconSizeHuge: string;
2421
2547
  fontSizeSmall: string;
2422
2548
  fontSizeMedium: string;
2423
2549
  fontSizeLarge: string;
@@ -2425,10 +2551,6 @@ declare const _default: import("vue").DefineComponent<{
2425
2551
  textColor: string;
2426
2552
  iconColor: string;
2427
2553
  extraTextColor: string;
2428
- iconSizeSmall: string;
2429
- iconSizeMedium: string;
2430
- iconSizeLarge: string;
2431
- iconSizeHuge: string;
2432
2554
  }, any>;
2433
2555
  Button: import("../../_mixins").Theme<"Button", {
2434
2556
  heightTiny: string;
@@ -2456,7 +2578,7 @@ declare const _default: import("vue").DefineComponent<{
2456
2578
  colorTertiaryHover: string;
2457
2579
  colorTertiaryPressed: string;
2458
2580
  colorTertiaryDisalbed: string;
2459
- waveColorTerniary: string;
2581
+ waveColorTertiary: string;
2460
2582
  textColorTextTertiary: string;
2461
2583
  colorQuaternary: string;
2462
2584
  colorQuaternaryHover: string;
@@ -2736,6 +2858,8 @@ declare const _default: import("vue").DefineComponent<{
2736
2858
  readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
2737
2859
  readonly onChange: PropType<MaybeArray<OnUpdateValue>>;
2738
2860
  readonly theme: PropType<import("../../_mixins").Theme<"Transfer", {
2861
+ extraFontSize: string;
2862
+ width: string;
2739
2863
  itemHeightSmall: string;
2740
2864
  itemHeightMedium: string;
2741
2865
  itemHeightLarge: string;
@@ -2756,65 +2880,86 @@ declare const _default: import("vue").DefineComponent<{
2756
2880
  titleFontWeight: string;
2757
2881
  iconColor: string;
2758
2882
  iconColorDisabled: string;
2759
- extraFontSize: string;
2760
- width: string;
2761
2883
  }, {
2762
2884
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2763
- labelLineHeight: string;
2764
- fontSizeSmall: string;
2765
- fontSizeMedium: string;
2885
+ fontWeight: string;
2886
+ textColor: string;
2887
+ descriptionTextColor: string;
2888
+ textColorDisabled: string;
2889
+ descriptionTextColorDisabled: string;
2766
2890
  fontSizeLarge: string;
2891
+ fontSizeMedium: string;
2892
+ fontSizeSmall: string;
2893
+ lineHeightLarge: string;
2894
+ lineHeightMedium: string;
2895
+ lineHeightSmall: string;
2896
+ borderRadiusLarge: string;
2897
+ borderRadiusMedium: string;
2898
+ borderRadiusSmall: string;
2767
2899
  color: string;
2900
+ colorHover: string;
2901
+ colorFocus: string;
2902
+ colorActive: string;
2768
2903
  colorChecked: string;
2904
+ colorHoverChecked: string;
2905
+ colorFocusChecked: string;
2906
+ colorActiveChecked: string;
2769
2907
  colorDisabled: string;
2770
2908
  colorDisabledChecked: string;
2771
- colorTableHeader: string;
2772
- colorTableHeaderModal: string;
2773
- colorTableHeaderPopover: string;
2774
2909
  checkMarkColor: string;
2910
+ checkMarkColorHover: string;
2911
+ checkMarkColorFocus: string;
2912
+ checkMarkColorActive: string;
2775
2913
  checkMarkColorDisabled: string;
2776
2914
  checkMarkColorDisabledChecked: string;
2777
2915
  border: string;
2778
- borderDisabled: string;
2779
- borderDisabledChecked: string;
2780
2916
  borderHover: string;
2781
- borderChecked: string;
2782
2917
  borderFocus: string;
2918
+ borderActive: string;
2919
+ borderChecked: string;
2920
+ borderHoverChecked: string;
2921
+ borderFocusChecked: string;
2922
+ borderActiveChecked: string;
2923
+ borderDisabled: string;
2924
+ borderDisabledChecked: string;
2783
2925
  boxShadowHover: string;
2784
2926
  boxShadowFocus: string;
2785
2927
  boxShadowActive: string;
2786
2928
  boxShadowHoverChecked: string;
2787
2929
  boxShadowFocusChecked: string;
2788
2930
  boxShadowActiveChecked: string;
2789
- textColor: string;
2790
2931
  sizeSmall: string;
2791
2932
  sizeMedium: string;
2792
2933
  sizeLarge: string;
2793
2934
  labelPadding: string;
2794
- labelFontWeight: string;
2795
- borderRadiusLarge: string;
2796
- borderRadiusSmall: string;
2797
2935
  }, any>;
2798
2936
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2799
2937
  color: string;
2800
2938
  colorHover: string;
2801
2939
  }, any>;
2802
2940
  Input: import("../../_mixins").Theme<"Input", {
2941
+ paddingTiny: string;
2942
+ paddingSmall: string;
2943
+ paddingMedium: string;
2944
+ paddingLarge: string;
2945
+ paddingHuge: string;
2946
+ clearSize: string;
2803
2947
  countTextColorDisabled: string;
2804
2948
  countTextColor: string;
2805
2949
  heightTiny: string;
2806
2950
  heightSmall: string;
2807
2951
  heightMedium: string;
2808
2952
  heightLarge: string;
2953
+ heightHuge: string;
2809
2954
  fontSizeTiny: string;
2810
2955
  fontSizeSmall: string;
2811
2956
  fontSizeMedium: string;
2812
2957
  fontSizeLarge: string;
2958
+ fontSizeHuge: string;
2813
2959
  lineHeight: string;
2814
2960
  lineHeightTextarea: string;
2815
2961
  borderRadius: string;
2816
2962
  iconSize: string;
2817
- groupLabelColor: string;
2818
2963
  groupLabelTextColor: string;
2819
2964
  textColor: string;
2820
2965
  textColorDisabled: string;
@@ -2854,13 +2999,13 @@ declare const _default: import("vue").DefineComponent<{
2854
2999
  iconColorHover: string;
2855
3000
  iconColorPressed: string;
2856
3001
  suffixTextColor: string;
2857
- paddingTiny: string;
2858
- paddingSmall: string;
2859
- paddingMedium: string;
2860
- paddingLarge: string;
2861
- clearSize: string;
3002
+ selectionColor: string;
2862
3003
  }, any>;
2863
3004
  Empty: import("../../_mixins").Theme<"Empty", {
3005
+ iconSizeSmall: string;
3006
+ iconSizeMedium: string;
3007
+ iconSizeLarge: string;
3008
+ iconSizeHuge: string;
2864
3009
  fontSizeSmall: string;
2865
3010
  fontSizeMedium: string;
2866
3011
  fontSizeLarge: string;
@@ -2868,10 +3013,6 @@ declare const _default: import("vue").DefineComponent<{
2868
3013
  textColor: string;
2869
3014
  iconColor: string;
2870
3015
  extraTextColor: string;
2871
- iconSizeSmall: string;
2872
- iconSizeMedium: string;
2873
- iconSizeLarge: string;
2874
- iconSizeHuge: string;
2875
3016
  }, any>;
2876
3017
  Button: import("../../_mixins").Theme<"Button", {
2877
3018
  heightTiny: string;
@@ -2899,7 +3040,7 @@ declare const _default: import("vue").DefineComponent<{
2899
3040
  colorTertiaryHover: string;
2900
3041
  colorTertiaryPressed: string;
2901
3042
  colorTertiaryDisalbed: string;
2902
- waveColorTerniary: string;
3043
+ waveColorTertiary: string;
2903
3044
  textColorTextTertiary: string;
2904
3045
  colorQuaternary: string;
2905
3046
  colorQuaternaryHover: string;
@@ -3086,6 +3227,8 @@ declare const _default: import("vue").DefineComponent<{
3086
3227
  }, any>;
3087
3228
  }>>;
3088
3229
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
3230
+ extraFontSize: string;
3231
+ width: string;
3089
3232
  itemHeightSmall: string;
3090
3233
  itemHeightMedium: string;
3091
3234
  itemHeightLarge: string;
@@ -3106,65 +3249,86 @@ declare const _default: import("vue").DefineComponent<{
3106
3249
  titleFontWeight: string;
3107
3250
  iconColor: string;
3108
3251
  iconColorDisabled: string;
3109
- extraFontSize: string;
3110
- width: string;
3111
3252
  }, {
3112
3253
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
3113
- labelLineHeight: string;
3114
- fontSizeSmall: string;
3115
- fontSizeMedium: string;
3254
+ fontWeight: string;
3255
+ textColor: string;
3256
+ descriptionTextColor: string;
3257
+ textColorDisabled: string;
3258
+ descriptionTextColorDisabled: string;
3116
3259
  fontSizeLarge: string;
3260
+ fontSizeMedium: string;
3261
+ fontSizeSmall: string;
3262
+ lineHeightLarge: string;
3263
+ lineHeightMedium: string;
3264
+ lineHeightSmall: string;
3265
+ borderRadiusLarge: string;
3266
+ borderRadiusMedium: string;
3267
+ borderRadiusSmall: string;
3117
3268
  color: string;
3269
+ colorHover: string;
3270
+ colorFocus: string;
3271
+ colorActive: string;
3118
3272
  colorChecked: string;
3273
+ colorHoverChecked: string;
3274
+ colorFocusChecked: string;
3275
+ colorActiveChecked: string;
3119
3276
  colorDisabled: string;
3120
3277
  colorDisabledChecked: string;
3121
- colorTableHeader: string;
3122
- colorTableHeaderModal: string;
3123
- colorTableHeaderPopover: string;
3124
3278
  checkMarkColor: string;
3279
+ checkMarkColorHover: string;
3280
+ checkMarkColorFocus: string;
3281
+ checkMarkColorActive: string;
3125
3282
  checkMarkColorDisabled: string;
3126
3283
  checkMarkColorDisabledChecked: string;
3127
3284
  border: string;
3128
- borderDisabled: string;
3129
- borderDisabledChecked: string;
3130
3285
  borderHover: string;
3131
- borderChecked: string;
3132
3286
  borderFocus: string;
3287
+ borderActive: string;
3288
+ borderChecked: string;
3289
+ borderHoverChecked: string;
3290
+ borderFocusChecked: string;
3291
+ borderActiveChecked: string;
3292
+ borderDisabled: string;
3293
+ borderDisabledChecked: string;
3133
3294
  boxShadowHover: string;
3134
3295
  boxShadowFocus: string;
3135
3296
  boxShadowActive: string;
3136
3297
  boxShadowHoverChecked: string;
3137
3298
  boxShadowFocusChecked: string;
3138
3299
  boxShadowActiveChecked: string;
3139
- textColor: string;
3140
3300
  sizeSmall: string;
3141
3301
  sizeMedium: string;
3142
3302
  sizeLarge: string;
3143
3303
  labelPadding: string;
3144
- labelFontWeight: string;
3145
- borderRadiusLarge: string;
3146
- borderRadiusSmall: string;
3147
3304
  }, any>;
3148
3305
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3149
3306
  color: string;
3150
3307
  colorHover: string;
3151
3308
  }, any>;
3152
3309
  Input: import("../../_mixins").Theme<"Input", {
3310
+ paddingTiny: string;
3311
+ paddingSmall: string;
3312
+ paddingMedium: string;
3313
+ paddingLarge: string;
3314
+ paddingHuge: string;
3315
+ clearSize: string;
3153
3316
  countTextColorDisabled: string;
3154
3317
  countTextColor: string;
3155
3318
  heightTiny: string;
3156
3319
  heightSmall: string;
3157
3320
  heightMedium: string;
3158
3321
  heightLarge: string;
3322
+ heightHuge: string;
3159
3323
  fontSizeTiny: string;
3160
3324
  fontSizeSmall: string;
3161
3325
  fontSizeMedium: string;
3162
3326
  fontSizeLarge: string;
3327
+ fontSizeHuge: string;
3163
3328
  lineHeight: string;
3164
3329
  lineHeightTextarea: string;
3165
3330
  borderRadius: string;
3166
3331
  iconSize: string;
3167
- groupLabelColor: string;
3168
3332
  groupLabelTextColor: string;
3169
3333
  textColor: string;
3170
3334
  textColorDisabled: string;
@@ -3204,13 +3368,13 @@ declare const _default: import("vue").DefineComponent<{
3204
3368
  iconColorHover: string;
3205
3369
  iconColorPressed: string;
3206
3370
  suffixTextColor: string;
3207
- paddingTiny: string;
3208
- paddingSmall: string;
3209
- paddingMedium: string;
3210
- paddingLarge: string;
3211
- clearSize: string;
3371
+ selectionColor: string;
3212
3372
  }, any>;
3213
3373
  Empty: import("../../_mixins").Theme<"Empty", {
3374
+ iconSizeSmall: string;
3375
+ iconSizeMedium: string;
3376
+ iconSizeLarge: string;
3377
+ iconSizeHuge: string;
3214
3378
  fontSizeSmall: string;
3215
3379
  fontSizeMedium: string;
3216
3380
  fontSizeLarge: string;
@@ -3218,10 +3382,6 @@ declare const _default: import("vue").DefineComponent<{
3218
3382
  textColor: string;
3219
3383
  iconColor: string;
3220
3384
  extraTextColor: string;
3221
- iconSizeSmall: string;
3222
- iconSizeMedium: string;
3223
- iconSizeLarge: string;
3224
- iconSizeHuge: string;
3225
3385
  }, any>;
3226
3386
  Button: import("../../_mixins").Theme<"Button", {
3227
3387
  heightTiny: string;
@@ -3249,7 +3409,7 @@ declare const _default: import("vue").DefineComponent<{
3249
3409
  colorTertiaryHover: string;
3250
3410
  colorTertiaryPressed: string;
3251
3411
  colorTertiaryDisalbed: string;
3252
- waveColorTerniary: string;
3412
+ waveColorTertiary: string;
3253
3413
  textColorTextTertiary: string;
3254
3414
  colorQuaternary: string;
3255
3415
  colorQuaternaryHover: string;
@@ -3436,6 +3596,8 @@ declare const _default: import("vue").DefineComponent<{
3436
3596
  }, any>;
3437
3597
  }>>>;
3438
3598
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Transfer", {
3599
+ extraFontSize: string;
3600
+ width: string;
3439
3601
  itemHeightSmall: string;
3440
3602
  itemHeightMedium: string;
3441
3603
  itemHeightLarge: string;
@@ -3456,65 +3618,86 @@ declare const _default: import("vue").DefineComponent<{
3456
3618
  titleFontWeight: string;
3457
3619
  iconColor: string;
3458
3620
  iconColorDisabled: string;
3459
- extraFontSize: string;
3460
- width: string;
3461
3621
  }, {
3462
3622
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
3463
- labelLineHeight: string;
3464
- fontSizeSmall: string;
3465
- fontSizeMedium: string;
3623
+ fontWeight: string;
3624
+ textColor: string;
3625
+ descriptionTextColor: string;
3626
+ textColorDisabled: string;
3627
+ descriptionTextColorDisabled: string;
3466
3628
  fontSizeLarge: string;
3629
+ fontSizeMedium: string;
3630
+ fontSizeSmall: string;
3631
+ lineHeightLarge: string;
3632
+ lineHeightMedium: string;
3633
+ lineHeightSmall: string;
3634
+ borderRadiusLarge: string;
3635
+ borderRadiusMedium: string;
3636
+ borderRadiusSmall: string;
3467
3637
  color: string;
3638
+ colorHover: string;
3639
+ colorFocus: string;
3640
+ colorActive: string;
3468
3641
  colorChecked: string;
3642
+ colorHoverChecked: string;
3643
+ colorFocusChecked: string;
3644
+ colorActiveChecked: string;
3469
3645
  colorDisabled: string;
3470
3646
  colorDisabledChecked: string;
3471
- colorTableHeader: string;
3472
- colorTableHeaderModal: string;
3473
- colorTableHeaderPopover: string;
3474
3647
  checkMarkColor: string;
3648
+ checkMarkColorHover: string;
3649
+ checkMarkColorFocus: string;
3650
+ checkMarkColorActive: string;
3475
3651
  checkMarkColorDisabled: string;
3476
3652
  checkMarkColorDisabledChecked: string;
3477
3653
  border: string;
3478
- borderDisabled: string;
3479
- borderDisabledChecked: string;
3480
3654
  borderHover: string;
3481
- borderChecked: string;
3482
3655
  borderFocus: string;
3656
+ borderActive: string;
3657
+ borderChecked: string;
3658
+ borderHoverChecked: string;
3659
+ borderFocusChecked: string;
3660
+ borderActiveChecked: string;
3661
+ borderDisabled: string;
3662
+ borderDisabledChecked: string;
3483
3663
  boxShadowHover: string;
3484
3664
  boxShadowFocus: string;
3485
3665
  boxShadowActive: string;
3486
3666
  boxShadowHoverChecked: string;
3487
3667
  boxShadowFocusChecked: string;
3488
3668
  boxShadowActiveChecked: string;
3489
- textColor: string;
3490
3669
  sizeSmall: string;
3491
3670
  sizeMedium: string;
3492
3671
  sizeLarge: string;
3493
3672
  labelPadding: string;
3494
- labelFontWeight: string;
3495
- borderRadiusLarge: string;
3496
- borderRadiusSmall: string;
3497
3673
  }, any>;
3498
3674
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3499
3675
  color: string;
3500
3676
  colorHover: string;
3501
3677
  }, any>;
3502
3678
  Input: import("../../_mixins").Theme<"Input", {
3679
+ paddingTiny: string;
3680
+ paddingSmall: string;
3681
+ paddingMedium: string;
3682
+ paddingLarge: string;
3683
+ paddingHuge: string;
3684
+ clearSize: string;
3503
3685
  countTextColorDisabled: string;
3504
3686
  countTextColor: string;
3505
3687
  heightTiny: string;
3506
3688
  heightSmall: string;
3507
3689
  heightMedium: string;
3508
3690
  heightLarge: string;
3691
+ heightHuge: string;
3509
3692
  fontSizeTiny: string;
3510
3693
  fontSizeSmall: string;
3511
3694
  fontSizeMedium: string;
3512
3695
  fontSizeLarge: string;
3696
+ fontSizeHuge: string;
3513
3697
  lineHeight: string;
3514
3698
  lineHeightTextarea: string;
3515
3699
  borderRadius: string;
3516
3700
  iconSize: string;
3517
- groupLabelColor: string;
3518
3701
  groupLabelTextColor: string;
3519
3702
  textColor: string;
3520
3703
  textColorDisabled: string;
@@ -3554,13 +3737,13 @@ declare const _default: import("vue").DefineComponent<{
3554
3737
  iconColorHover: string;
3555
3738
  iconColorPressed: string;
3556
3739
  suffixTextColor: string;
3557
- paddingTiny: string;
3558
- paddingSmall: string;
3559
- paddingMedium: string;
3560
- paddingLarge: string;
3561
- clearSize: string;
3740
+ selectionColor: string;
3562
3741
  }, any>;
3563
3742
  Empty: import("../../_mixins").Theme<"Empty", {
3743
+ iconSizeSmall: string;
3744
+ iconSizeMedium: string;
3745
+ iconSizeLarge: string;
3746
+ iconSizeHuge: string;
3564
3747
  fontSizeSmall: string;
3565
3748
  fontSizeMedium: string;
3566
3749
  fontSizeLarge: string;
@@ -3568,10 +3751,6 @@ declare const _default: import("vue").DefineComponent<{
3568
3751
  textColor: string;
3569
3752
  iconColor: string;
3570
3753
  extraTextColor: string;
3571
- iconSizeSmall: string;
3572
- iconSizeMedium: string;
3573
- iconSizeLarge: string;
3574
- iconSizeHuge: string;
3575
3754
  }, any>;
3576
3755
  Button: import("../../_mixins").Theme<"Button", {
3577
3756
  heightTiny: string;
@@ -3599,7 +3778,7 @@ declare const _default: import("vue").DefineComponent<{
3599
3778
  colorTertiaryHover: string;
3600
3779
  colorTertiaryPressed: string;
3601
3780
  colorTertiaryDisalbed: string;
3602
- waveColorTerniary: string;
3781
+ waveColorTertiary: string;
3603
3782
  textColorTextTertiary: string;
3604
3783
  colorQuaternary: string;
3605
3784
  colorQuaternaryHover: string;