@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
@@ -5,6 +5,7 @@ import type { FormValidationStatus } from '../../form/src/interface';
5
5
  import type { SelectBaseOption } from '../../select/src/interface';
6
6
  import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
7
7
  import type { CascaderOption, ExpandTrigger, Filter, OnLoad, OnUpdateValue, Value } from './interface';
8
+ import { SelectSize } from '../../_internal/selection';
8
9
  export declare const cascaderProps: {
9
10
  readonly allowCheckingNotLoaded: BooleanConstructor;
10
11
  readonly to: {
@@ -26,7 +27,7 @@ export declare const cascaderProps: {
26
27
  };
27
28
  readonly placeholder: StringConstructor;
28
29
  readonly multiple: BooleanConstructor;
29
- readonly size: PropType<"small" | "medium" | "large">;
30
+ readonly size: PropType<SelectSize>;
30
31
  readonly filterable: BooleanConstructor;
31
32
  readonly disabled: {
32
33
  readonly type: PropType<boolean | undefined>;
@@ -119,14 +120,21 @@ export declare const cascaderProps: {
119
120
  columnWidth: string;
120
121
  }, {
121
122
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
123
+ height: string;
124
+ paddingSmall: string;
125
+ paddingMedium: string;
126
+ paddingLarge: string;
127
+ optionPaddingSmall: string;
128
+ optionPaddingMedium: string;
129
+ optionPaddingLarge: string;
130
+ loadingSize: string;
122
131
  optionFontSizeSmall: string;
123
132
  optionFontSizeMedium: string;
124
133
  optionFontSizeLarge: string;
125
- optionFontSizeHuge: string;
126
134
  optionHeightSmall: string;
127
135
  optionHeightMedium: string;
128
136
  optionHeightLarge: string;
129
- optionHeightHuge: string;
137
+ optionBorderRadius: string;
130
138
  borderRadius: string;
131
139
  color: string;
132
140
  groupHeaderTextColor: string;
@@ -143,22 +151,16 @@ export declare const cascaderProps: {
143
151
  optionColorActivePending: string;
144
152
  actionTextColor: string;
145
153
  loadingColor: string;
146
- height: string;
147
- paddingSmall: string;
148
- paddingMedium: string;
149
- paddingLarge: string;
150
- paddingHuge: string;
151
- optionPaddingSmall: string;
152
- optionPaddingMedium: string;
153
- optionPaddingLarge: string;
154
- optionPaddingHuge: string;
155
- loadingSize: string;
156
154
  }, {
157
155
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
158
156
  color: string;
159
157
  colorHover: string;
160
158
  }, any>;
161
159
  Empty: import("../../_mixins").Theme<"Empty", {
160
+ iconSizeSmall: string;
161
+ iconSizeMedium: string;
162
+ iconSizeLarge: string;
163
+ iconSizeHuge: string;
162
164
  fontSizeSmall: string;
163
165
  fontSizeMedium: string;
164
166
  fontSizeLarge: string;
@@ -166,22 +168,44 @@ export declare const cascaderProps: {
166
168
  textColor: string;
167
169
  iconColor: string;
168
170
  extraTextColor: string;
169
- iconSizeSmall: string;
170
- iconSizeMedium: string;
171
- iconSizeLarge: string;
172
- iconSizeHuge: string;
173
171
  }, any>;
174
172
  }>;
175
173
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
174
+ paddingTiny: string;
175
+ paddingSmall: string;
176
+ paddingMedium: string;
177
+ paddingLarge: string;
178
+ paddingHuge: string;
179
+ clearSizeTiny: string;
180
+ clearSizeSmall: string;
181
+ clearSizeMedium: string;
182
+ clearSizeLarge: string;
183
+ clearSizeHuge: string;
184
+ arrowSizeTiny: string;
185
+ arrowSizeSmall: string;
186
+ arrowSizeMedium: string;
187
+ arrowSizeLarge: string;
188
+ arrowSizeHuge: string;
176
189
  fontSizeTiny: string;
177
190
  fontSizeSmall: string;
178
191
  fontSizeMedium: string;
179
192
  fontSizeLarge: string;
193
+ fontSizeHuge: string;
194
+ lineHeightTiny: string;
195
+ lineHeightSmall: string;
196
+ lineHeightMedium: string;
197
+ lineHeightLarge: string;
198
+ lineHeightHuge: string;
180
199
  heightTiny: string;
181
200
  heightSmall: string;
182
201
  heightMedium: string;
183
202
  heightLarge: string;
184
- borderRadius: string;
203
+ heightHuge: string;
204
+ borderRadiusTiny: string;
205
+ borderRadiusSmall: string;
206
+ borderRadiusMedium: string;
207
+ borderRadiusLarge: string;
208
+ borderRadiusHuge: string;
185
209
  textColor: string;
186
210
  textColorDisabled: string;
187
211
  placeholderColor: string;
@@ -223,24 +247,50 @@ export declare const cascaderProps: {
223
247
  clearColor: string;
224
248
  clearColorHover: string;
225
249
  clearColorPressed: string;
226
- paddingSingle: string;
227
- paddingMultiple: string;
228
- clearSize: string;
229
- arrowSize: string;
250
+ caretColorSecondary: string;
251
+ filterCounterTextColor: string;
252
+ filterCounterSeparatorColor: string;
253
+ filterCounterTextColorDisabled: string;
254
+ filterCounterSeparatorColorDisabled: string;
255
+ arrowColorSecondary: string;
256
+ clearColorSecondary: string;
257
+ colorSecondary: string;
258
+ textColorSecondary: string;
259
+ borderSecondary: string;
260
+ arrowColorDisabledSecondary: string;
261
+ clearColorDisabledSecondary: string;
262
+ colorDisabledSecondary: string;
263
+ textColorDisabledSecondary: string;
264
+ borderDisabledSecondary: string;
265
+ arrowColorHoverSecondary: string;
266
+ clearColorHoverSecondary: string;
267
+ colorHoverSecondary: string;
268
+ textColorHoverSecondary: string;
269
+ borderHoverSecondary: string;
270
+ arrowColorFocusSecondary: string;
271
+ clearColorFocusSecondary: string;
272
+ colorFocusSecondary: string;
273
+ textColorFocusSecondary: string;
274
+ borderFocusSecondary: string;
275
+ arrowColorActiveSecondary: string;
276
+ clearColorActiveSecondary: string;
277
+ colorActiveSecondary: string;
278
+ textColorActiveSecondary: string;
279
+ borderActiveSecondary: string;
230
280
  }, {
231
281
  Popover: import("../../_mixins").Theme<"Popover", {
232
- fontSize: string;
233
- borderRadius: string;
234
- color: string;
235
- dividerColor: string;
236
- textColor: string;
237
- boxShadow: string;
238
282
  space: string;
239
283
  spaceArrow: string;
240
284
  arrowOffset: string;
241
285
  arrowOffsetVertical: string;
242
286
  arrowHeight: string;
243
287
  padding: string;
288
+ fontSize: string;
289
+ borderRadius: string;
290
+ color: string;
291
+ dividerColor: string;
292
+ textColor: string;
293
+ boxShadow: string;
244
294
  }, any>;
245
295
  }>;
246
296
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -248,42 +298,62 @@ export declare const cascaderProps: {
248
298
  colorHover: string;
249
299
  }, any>;
250
300
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
251
- labelLineHeight: string;
252
- fontSizeSmall: string;
253
- fontSizeMedium: string;
301
+ fontWeight: string;
302
+ textColor: string;
303
+ descriptionTextColor: string;
304
+ textColorDisabled: string;
305
+ descriptionTextColorDisabled: string;
254
306
  fontSizeLarge: string;
307
+ fontSizeMedium: string;
308
+ fontSizeSmall: string;
309
+ lineHeightLarge: string;
310
+ lineHeightMedium: string;
311
+ lineHeightSmall: string;
312
+ borderRadiusLarge: string;
313
+ borderRadiusMedium: string;
314
+ borderRadiusSmall: string;
255
315
  color: string;
316
+ colorHover: string;
317
+ colorFocus: string;
318
+ colorActive: string;
256
319
  colorChecked: string;
320
+ colorHoverChecked: string;
321
+ colorFocusChecked: string;
322
+ colorActiveChecked: string;
257
323
  colorDisabled: string;
258
324
  colorDisabledChecked: string;
259
- colorTableHeader: string;
260
- colorTableHeaderModal: string;
261
- colorTableHeaderPopover: string;
262
325
  checkMarkColor: string;
326
+ checkMarkColorHover: string;
327
+ checkMarkColorFocus: string;
328
+ checkMarkColorActive: string;
263
329
  checkMarkColorDisabled: string;
264
330
  checkMarkColorDisabledChecked: string;
265
331
  border: string;
266
- borderDisabled: string;
267
- borderDisabledChecked: string;
268
332
  borderHover: string;
269
- borderChecked: string;
270
333
  borderFocus: string;
334
+ borderActive: string;
335
+ borderChecked: string;
336
+ borderHoverChecked: string;
337
+ borderFocusChecked: string;
338
+ borderActiveChecked: string;
339
+ borderDisabled: string;
340
+ borderDisabledChecked: string;
271
341
  boxShadowHover: string;
272
342
  boxShadowFocus: string;
273
343
  boxShadowActive: string;
274
344
  boxShadowHoverChecked: string;
275
345
  boxShadowFocusChecked: string;
276
346
  boxShadowActiveChecked: string;
277
- textColor: string;
278
347
  sizeSmall: string;
279
348
  sizeMedium: string;
280
349
  sizeLarge: string;
281
350
  labelPadding: string;
282
- labelFontWeight: string;
283
- borderRadiusLarge: string;
284
- borderRadiusSmall: string;
285
351
  }, any>;
286
352
  Empty: import("../../_mixins").Theme<"Empty", {
353
+ iconSizeSmall: string;
354
+ iconSizeMedium: string;
355
+ iconSizeLarge: string;
356
+ iconSizeHuge: string;
287
357
  fontSizeSmall: string;
288
358
  fontSizeMedium: string;
289
359
  fontSizeLarge: string;
@@ -291,10 +361,6 @@ export declare const cascaderProps: {
291
361
  textColor: string;
292
362
  iconColor: string;
293
363
  extraTextColor: string;
294
- iconSizeSmall: string;
295
- iconSizeMedium: string;
296
- iconSizeLarge: string;
297
- iconSizeHuge: string;
298
364
  }, any>;
299
365
  }>>;
300
366
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -315,14 +381,21 @@ export declare const cascaderProps: {
315
381
  columnWidth: string;
316
382
  }, {
317
383
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
384
+ height: string;
385
+ paddingSmall: string;
386
+ paddingMedium: string;
387
+ paddingLarge: string;
388
+ optionPaddingSmall: string;
389
+ optionPaddingMedium: string;
390
+ optionPaddingLarge: string;
391
+ loadingSize: string;
318
392
  optionFontSizeSmall: string;
319
393
  optionFontSizeMedium: string;
320
394
  optionFontSizeLarge: string;
321
- optionFontSizeHuge: string;
322
395
  optionHeightSmall: string;
323
396
  optionHeightMedium: string;
324
397
  optionHeightLarge: string;
325
- optionHeightHuge: string;
398
+ optionBorderRadius: string;
326
399
  borderRadius: string;
327
400
  color: string;
328
401
  groupHeaderTextColor: string;
@@ -339,22 +412,16 @@ export declare const cascaderProps: {
339
412
  optionColorActivePending: string;
340
413
  actionTextColor: string;
341
414
  loadingColor: string;
342
- height: string;
343
- paddingSmall: string;
344
- paddingMedium: string;
345
- paddingLarge: string;
346
- paddingHuge: string;
347
- optionPaddingSmall: string;
348
- optionPaddingMedium: string;
349
- optionPaddingLarge: string;
350
- optionPaddingHuge: string;
351
- loadingSize: string;
352
415
  }, {
353
416
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
354
417
  color: string;
355
418
  colorHover: string;
356
419
  }, any>;
357
420
  Empty: import("../../_mixins").Theme<"Empty", {
421
+ iconSizeSmall: string;
422
+ iconSizeMedium: string;
423
+ iconSizeLarge: string;
424
+ iconSizeHuge: string;
358
425
  fontSizeSmall: string;
359
426
  fontSizeMedium: string;
360
427
  fontSizeLarge: string;
@@ -362,22 +429,44 @@ export declare const cascaderProps: {
362
429
  textColor: string;
363
430
  iconColor: string;
364
431
  extraTextColor: string;
365
- iconSizeSmall: string;
366
- iconSizeMedium: string;
367
- iconSizeLarge: string;
368
- iconSizeHuge: string;
369
432
  }, any>;
370
433
  }>;
371
434
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
435
+ paddingTiny: string;
436
+ paddingSmall: string;
437
+ paddingMedium: string;
438
+ paddingLarge: string;
439
+ paddingHuge: string;
440
+ clearSizeTiny: string;
441
+ clearSizeSmall: string;
442
+ clearSizeMedium: string;
443
+ clearSizeLarge: string;
444
+ clearSizeHuge: string;
445
+ arrowSizeTiny: string;
446
+ arrowSizeSmall: string;
447
+ arrowSizeMedium: string;
448
+ arrowSizeLarge: string;
449
+ arrowSizeHuge: string;
372
450
  fontSizeTiny: string;
373
451
  fontSizeSmall: string;
374
452
  fontSizeMedium: string;
375
453
  fontSizeLarge: string;
454
+ fontSizeHuge: string;
455
+ lineHeightTiny: string;
456
+ lineHeightSmall: string;
457
+ lineHeightMedium: string;
458
+ lineHeightLarge: string;
459
+ lineHeightHuge: string;
376
460
  heightTiny: string;
377
461
  heightSmall: string;
378
462
  heightMedium: string;
379
463
  heightLarge: string;
380
- borderRadius: string;
464
+ heightHuge: string;
465
+ borderRadiusTiny: string;
466
+ borderRadiusSmall: string;
467
+ borderRadiusMedium: string;
468
+ borderRadiusLarge: string;
469
+ borderRadiusHuge: string;
381
470
  textColor: string;
382
471
  textColorDisabled: string;
383
472
  placeholderColor: string;
@@ -419,24 +508,50 @@ export declare const cascaderProps: {
419
508
  clearColor: string;
420
509
  clearColorHover: string;
421
510
  clearColorPressed: string;
422
- paddingSingle: string;
423
- paddingMultiple: string;
424
- clearSize: string;
425
- arrowSize: string;
511
+ caretColorSecondary: string;
512
+ filterCounterTextColor: string;
513
+ filterCounterSeparatorColor: string;
514
+ filterCounterTextColorDisabled: string;
515
+ filterCounterSeparatorColorDisabled: string;
516
+ arrowColorSecondary: string;
517
+ clearColorSecondary: string;
518
+ colorSecondary: string;
519
+ textColorSecondary: string;
520
+ borderSecondary: string;
521
+ arrowColorDisabledSecondary: string;
522
+ clearColorDisabledSecondary: string;
523
+ colorDisabledSecondary: string;
524
+ textColorDisabledSecondary: string;
525
+ borderDisabledSecondary: string;
526
+ arrowColorHoverSecondary: string;
527
+ clearColorHoverSecondary: string;
528
+ colorHoverSecondary: string;
529
+ textColorHoverSecondary: string;
530
+ borderHoverSecondary: string;
531
+ arrowColorFocusSecondary: string;
532
+ clearColorFocusSecondary: string;
533
+ colorFocusSecondary: string;
534
+ textColorFocusSecondary: string;
535
+ borderFocusSecondary: string;
536
+ arrowColorActiveSecondary: string;
537
+ clearColorActiveSecondary: string;
538
+ colorActiveSecondary: string;
539
+ textColorActiveSecondary: string;
540
+ borderActiveSecondary: string;
426
541
  }, {
427
542
  Popover: import("../../_mixins").Theme<"Popover", {
428
- fontSize: string;
429
- borderRadius: string;
430
- color: string;
431
- dividerColor: string;
432
- textColor: string;
433
- boxShadow: string;
434
543
  space: string;
435
544
  spaceArrow: string;
436
545
  arrowOffset: string;
437
546
  arrowOffsetVertical: string;
438
547
  arrowHeight: string;
439
548
  padding: string;
549
+ fontSize: string;
550
+ borderRadius: string;
551
+ color: string;
552
+ dividerColor: string;
553
+ textColor: string;
554
+ boxShadow: string;
440
555
  }, any>;
441
556
  }>;
442
557
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -444,42 +559,62 @@ export declare const cascaderProps: {
444
559
  colorHover: string;
445
560
  }, any>;
446
561
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
447
- labelLineHeight: string;
448
- fontSizeSmall: string;
449
- fontSizeMedium: string;
562
+ fontWeight: string;
563
+ textColor: string;
564
+ descriptionTextColor: string;
565
+ textColorDisabled: string;
566
+ descriptionTextColorDisabled: string;
450
567
  fontSizeLarge: string;
568
+ fontSizeMedium: string;
569
+ fontSizeSmall: string;
570
+ lineHeightLarge: string;
571
+ lineHeightMedium: string;
572
+ lineHeightSmall: string;
573
+ borderRadiusLarge: string;
574
+ borderRadiusMedium: string;
575
+ borderRadiusSmall: string;
451
576
  color: string;
577
+ colorHover: string;
578
+ colorFocus: string;
579
+ colorActive: string;
452
580
  colorChecked: string;
581
+ colorHoverChecked: string;
582
+ colorFocusChecked: string;
583
+ colorActiveChecked: string;
453
584
  colorDisabled: string;
454
585
  colorDisabledChecked: string;
455
- colorTableHeader: string;
456
- colorTableHeaderModal: string;
457
- colorTableHeaderPopover: string;
458
586
  checkMarkColor: string;
587
+ checkMarkColorHover: string;
588
+ checkMarkColorFocus: string;
589
+ checkMarkColorActive: string;
459
590
  checkMarkColorDisabled: string;
460
591
  checkMarkColorDisabledChecked: string;
461
592
  border: string;
462
- borderDisabled: string;
463
- borderDisabledChecked: string;
464
593
  borderHover: string;
465
- borderChecked: string;
466
594
  borderFocus: string;
595
+ borderActive: string;
596
+ borderChecked: string;
597
+ borderHoverChecked: string;
598
+ borderFocusChecked: string;
599
+ borderActiveChecked: string;
600
+ borderDisabled: string;
601
+ borderDisabledChecked: string;
467
602
  boxShadowHover: string;
468
603
  boxShadowFocus: string;
469
604
  boxShadowActive: string;
470
605
  boxShadowHoverChecked: string;
471
606
  boxShadowFocusChecked: string;
472
607
  boxShadowActiveChecked: string;
473
- textColor: string;
474
608
  sizeSmall: string;
475
609
  sizeMedium: string;
476
610
  sizeLarge: string;
477
611
  labelPadding: string;
478
- labelFontWeight: string;
479
- borderRadiusLarge: string;
480
- borderRadiusSmall: string;
481
612
  }, any>;
482
613
  Empty: import("../../_mixins").Theme<"Empty", {
614
+ iconSizeSmall: string;
615
+ iconSizeMedium: string;
616
+ iconSizeLarge: string;
617
+ iconSizeHuge: string;
483
618
  fontSizeSmall: string;
484
619
  fontSizeMedium: string;
485
620
  fontSizeLarge: string;
@@ -487,10 +622,6 @@ export declare const cascaderProps: {
487
622
  textColor: string;
488
623
  iconColor: string;
489
624
  extraTextColor: string;
490
- iconSizeSmall: string;
491
- iconSizeMedium: string;
492
- iconSizeLarge: string;
493
- iconSizeHuge: string;
494
625
  }, any>;
495
626
  }>>>;
496
627
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -511,14 +642,21 @@ export declare const cascaderProps: {
511
642
  columnWidth: string;
512
643
  }, {
513
644
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
645
+ height: string;
646
+ paddingSmall: string;
647
+ paddingMedium: string;
648
+ paddingLarge: string;
649
+ optionPaddingSmall: string;
650
+ optionPaddingMedium: string;
651
+ optionPaddingLarge: string;
652
+ loadingSize: string;
514
653
  optionFontSizeSmall: string;
515
654
  optionFontSizeMedium: string;
516
655
  optionFontSizeLarge: string;
517
- optionFontSizeHuge: string;
518
656
  optionHeightSmall: string;
519
657
  optionHeightMedium: string;
520
658
  optionHeightLarge: string;
521
- optionHeightHuge: string;
659
+ optionBorderRadius: string;
522
660
  borderRadius: string;
523
661
  color: string;
524
662
  groupHeaderTextColor: string;
@@ -535,22 +673,16 @@ export declare const cascaderProps: {
535
673
  optionColorActivePending: string;
536
674
  actionTextColor: string;
537
675
  loadingColor: string;
538
- height: string;
539
- paddingSmall: string;
540
- paddingMedium: string;
541
- paddingLarge: string;
542
- paddingHuge: string;
543
- optionPaddingSmall: string;
544
- optionPaddingMedium: string;
545
- optionPaddingLarge: string;
546
- optionPaddingHuge: string;
547
- loadingSize: string;
548
676
  }, {
549
677
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
550
678
  color: string;
551
679
  colorHover: string;
552
680
  }, any>;
553
681
  Empty: import("../../_mixins").Theme<"Empty", {
682
+ iconSizeSmall: string;
683
+ iconSizeMedium: string;
684
+ iconSizeLarge: string;
685
+ iconSizeHuge: string;
554
686
  fontSizeSmall: string;
555
687
  fontSizeMedium: string;
556
688
  fontSizeLarge: string;
@@ -558,22 +690,44 @@ export declare const cascaderProps: {
558
690
  textColor: string;
559
691
  iconColor: string;
560
692
  extraTextColor: string;
561
- iconSizeSmall: string;
562
- iconSizeMedium: string;
563
- iconSizeLarge: string;
564
- iconSizeHuge: string;
565
693
  }, any>;
566
694
  }>;
567
695
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
696
+ paddingTiny: string;
697
+ paddingSmall: string;
698
+ paddingMedium: string;
699
+ paddingLarge: string;
700
+ paddingHuge: string;
701
+ clearSizeTiny: string;
702
+ clearSizeSmall: string;
703
+ clearSizeMedium: string;
704
+ clearSizeLarge: string;
705
+ clearSizeHuge: string;
706
+ arrowSizeTiny: string;
707
+ arrowSizeSmall: string;
708
+ arrowSizeMedium: string;
709
+ arrowSizeLarge: string;
710
+ arrowSizeHuge: string;
568
711
  fontSizeTiny: string;
569
712
  fontSizeSmall: string;
570
713
  fontSizeMedium: string;
571
714
  fontSizeLarge: string;
715
+ fontSizeHuge: string;
716
+ lineHeightTiny: string;
717
+ lineHeightSmall: string;
718
+ lineHeightMedium: string;
719
+ lineHeightLarge: string;
720
+ lineHeightHuge: string;
572
721
  heightTiny: string;
573
722
  heightSmall: string;
574
723
  heightMedium: string;
575
724
  heightLarge: string;
576
- borderRadius: string;
725
+ heightHuge: string;
726
+ borderRadiusTiny: string;
727
+ borderRadiusSmall: string;
728
+ borderRadiusMedium: string;
729
+ borderRadiusLarge: string;
730
+ borderRadiusHuge: string;
577
731
  textColor: string;
578
732
  textColorDisabled: string;
579
733
  placeholderColor: string;
@@ -615,24 +769,50 @@ export declare const cascaderProps: {
615
769
  clearColor: string;
616
770
  clearColorHover: string;
617
771
  clearColorPressed: string;
618
- paddingSingle: string;
619
- paddingMultiple: string;
620
- clearSize: string;
621
- arrowSize: string;
772
+ caretColorSecondary: string;
773
+ filterCounterTextColor: string;
774
+ filterCounterSeparatorColor: string;
775
+ filterCounterTextColorDisabled: string;
776
+ filterCounterSeparatorColorDisabled: string;
777
+ arrowColorSecondary: string;
778
+ clearColorSecondary: string;
779
+ colorSecondary: string;
780
+ textColorSecondary: string;
781
+ borderSecondary: string;
782
+ arrowColorDisabledSecondary: string;
783
+ clearColorDisabledSecondary: string;
784
+ colorDisabledSecondary: string;
785
+ textColorDisabledSecondary: string;
786
+ borderDisabledSecondary: string;
787
+ arrowColorHoverSecondary: string;
788
+ clearColorHoverSecondary: string;
789
+ colorHoverSecondary: string;
790
+ textColorHoverSecondary: string;
791
+ borderHoverSecondary: string;
792
+ arrowColorFocusSecondary: string;
793
+ clearColorFocusSecondary: string;
794
+ colorFocusSecondary: string;
795
+ textColorFocusSecondary: string;
796
+ borderFocusSecondary: string;
797
+ arrowColorActiveSecondary: string;
798
+ clearColorActiveSecondary: string;
799
+ colorActiveSecondary: string;
800
+ textColorActiveSecondary: string;
801
+ borderActiveSecondary: string;
622
802
  }, {
623
803
  Popover: import("../../_mixins").Theme<"Popover", {
624
- fontSize: string;
625
- borderRadius: string;
626
- color: string;
627
- dividerColor: string;
628
- textColor: string;
629
- boxShadow: string;
630
804
  space: string;
631
805
  spaceArrow: string;
632
806
  arrowOffset: string;
633
807
  arrowOffsetVertical: string;
634
808
  arrowHeight: string;
635
809
  padding: string;
810
+ fontSize: string;
811
+ borderRadius: string;
812
+ color: string;
813
+ dividerColor: string;
814
+ textColor: string;
815
+ boxShadow: string;
636
816
  }, any>;
637
817
  }>;
638
818
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -640,42 +820,62 @@ export declare const cascaderProps: {
640
820
  colorHover: string;
641
821
  }, any>;
642
822
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
643
- labelLineHeight: string;
644
- fontSizeSmall: string;
645
- fontSizeMedium: string;
823
+ fontWeight: string;
824
+ textColor: string;
825
+ descriptionTextColor: string;
826
+ textColorDisabled: string;
827
+ descriptionTextColorDisabled: string;
646
828
  fontSizeLarge: string;
829
+ fontSizeMedium: string;
830
+ fontSizeSmall: string;
831
+ lineHeightLarge: string;
832
+ lineHeightMedium: string;
833
+ lineHeightSmall: string;
834
+ borderRadiusLarge: string;
835
+ borderRadiusMedium: string;
836
+ borderRadiusSmall: string;
647
837
  color: string;
838
+ colorHover: string;
839
+ colorFocus: string;
840
+ colorActive: string;
648
841
  colorChecked: string;
842
+ colorHoverChecked: string;
843
+ colorFocusChecked: string;
844
+ colorActiveChecked: string;
649
845
  colorDisabled: string;
650
846
  colorDisabledChecked: string;
651
- colorTableHeader: string;
652
- colorTableHeaderModal: string;
653
- colorTableHeaderPopover: string;
654
847
  checkMarkColor: string;
848
+ checkMarkColorHover: string;
849
+ checkMarkColorFocus: string;
850
+ checkMarkColorActive: string;
655
851
  checkMarkColorDisabled: string;
656
852
  checkMarkColorDisabledChecked: string;
657
853
  border: string;
658
- borderDisabled: string;
659
- borderDisabledChecked: string;
660
854
  borderHover: string;
661
- borderChecked: string;
662
855
  borderFocus: string;
856
+ borderActive: string;
857
+ borderChecked: string;
858
+ borderHoverChecked: string;
859
+ borderFocusChecked: string;
860
+ borderActiveChecked: string;
861
+ borderDisabled: string;
862
+ borderDisabledChecked: string;
663
863
  boxShadowHover: string;
664
864
  boxShadowFocus: string;
665
865
  boxShadowActive: string;
666
866
  boxShadowHoverChecked: string;
667
867
  boxShadowFocusChecked: string;
668
868
  boxShadowActiveChecked: string;
669
- textColor: string;
670
869
  sizeSmall: string;
671
870
  sizeMedium: string;
672
871
  sizeLarge: string;
673
872
  labelPadding: string;
674
- labelFontWeight: string;
675
- borderRadiusLarge: string;
676
- borderRadiusSmall: string;
677
873
  }, any>;
678
874
  Empty: import("../../_mixins").Theme<"Empty", {
875
+ iconSizeSmall: string;
876
+ iconSizeMedium: string;
877
+ iconSizeLarge: string;
878
+ iconSizeHuge: string;
679
879
  fontSizeSmall: string;
680
880
  fontSizeMedium: string;
681
881
  fontSizeLarge: string;
@@ -683,10 +883,6 @@ export declare const cascaderProps: {
683
883
  textColor: string;
684
884
  iconColor: string;
685
885
  extraTextColor: string;
686
- iconSizeSmall: string;
687
- iconSizeMedium: string;
688
- iconSizeLarge: string;
689
- iconSizeHuge: string;
690
886
  }, any>;
691
887
  }>>>;
692
888
  };
@@ -712,7 +908,7 @@ declare const _default: import("vue").DefineComponent<{
712
908
  };
713
909
  readonly placeholder: StringConstructor;
714
910
  readonly multiple: BooleanConstructor;
715
- readonly size: PropType<"small" | "medium" | "large">;
911
+ readonly size: PropType<SelectSize>;
716
912
  readonly filterable: BooleanConstructor;
717
913
  readonly disabled: {
718
914
  readonly type: PropType<boolean | undefined>;
@@ -805,14 +1001,21 @@ declare const _default: import("vue").DefineComponent<{
805
1001
  columnWidth: string;
806
1002
  }, {
807
1003
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1004
+ height: string;
1005
+ paddingSmall: string;
1006
+ paddingMedium: string;
1007
+ paddingLarge: string;
1008
+ optionPaddingSmall: string;
1009
+ optionPaddingMedium: string;
1010
+ optionPaddingLarge: string;
1011
+ loadingSize: string;
808
1012
  optionFontSizeSmall: string;
809
1013
  optionFontSizeMedium: string;
810
1014
  optionFontSizeLarge: string;
811
- optionFontSizeHuge: string;
812
1015
  optionHeightSmall: string;
813
1016
  optionHeightMedium: string;
814
1017
  optionHeightLarge: string;
815
- optionHeightHuge: string;
1018
+ optionBorderRadius: string;
816
1019
  borderRadius: string;
817
1020
  color: string;
818
1021
  groupHeaderTextColor: string;
@@ -829,22 +1032,16 @@ declare const _default: import("vue").DefineComponent<{
829
1032
  optionColorActivePending: string;
830
1033
  actionTextColor: string;
831
1034
  loadingColor: string;
832
- height: string;
833
- paddingSmall: string;
834
- paddingMedium: string;
835
- paddingLarge: string;
836
- paddingHuge: string;
837
- optionPaddingSmall: string;
838
- optionPaddingMedium: string;
839
- optionPaddingLarge: string;
840
- optionPaddingHuge: string;
841
- loadingSize: string;
842
1035
  }, {
843
1036
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
844
1037
  color: string;
845
1038
  colorHover: string;
846
1039
  }, any>;
847
1040
  Empty: import("../../_mixins").Theme<"Empty", {
1041
+ iconSizeSmall: string;
1042
+ iconSizeMedium: string;
1043
+ iconSizeLarge: string;
1044
+ iconSizeHuge: string;
848
1045
  fontSizeSmall: string;
849
1046
  fontSizeMedium: string;
850
1047
  fontSizeLarge: string;
@@ -852,22 +1049,44 @@ declare const _default: import("vue").DefineComponent<{
852
1049
  textColor: string;
853
1050
  iconColor: string;
854
1051
  extraTextColor: string;
855
- iconSizeSmall: string;
856
- iconSizeMedium: string;
857
- iconSizeLarge: string;
858
- iconSizeHuge: string;
859
1052
  }, any>;
860
1053
  }>;
861
1054
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1055
+ paddingTiny: string;
1056
+ paddingSmall: string;
1057
+ paddingMedium: string;
1058
+ paddingLarge: string;
1059
+ paddingHuge: string;
1060
+ clearSizeTiny: string;
1061
+ clearSizeSmall: string;
1062
+ clearSizeMedium: string;
1063
+ clearSizeLarge: string;
1064
+ clearSizeHuge: string;
1065
+ arrowSizeTiny: string;
1066
+ arrowSizeSmall: string;
1067
+ arrowSizeMedium: string;
1068
+ arrowSizeLarge: string;
1069
+ arrowSizeHuge: string;
862
1070
  fontSizeTiny: string;
863
1071
  fontSizeSmall: string;
864
1072
  fontSizeMedium: string;
865
1073
  fontSizeLarge: string;
1074
+ fontSizeHuge: string;
1075
+ lineHeightTiny: string;
1076
+ lineHeightSmall: string;
1077
+ lineHeightMedium: string;
1078
+ lineHeightLarge: string;
1079
+ lineHeightHuge: string;
866
1080
  heightTiny: string;
867
1081
  heightSmall: string;
868
1082
  heightMedium: string;
869
1083
  heightLarge: string;
870
- borderRadius: string;
1084
+ heightHuge: string;
1085
+ borderRadiusTiny: string;
1086
+ borderRadiusSmall: string;
1087
+ borderRadiusMedium: string;
1088
+ borderRadiusLarge: string;
1089
+ borderRadiusHuge: string;
871
1090
  textColor: string;
872
1091
  textColorDisabled: string;
873
1092
  placeholderColor: string;
@@ -909,24 +1128,50 @@ declare const _default: import("vue").DefineComponent<{
909
1128
  clearColor: string;
910
1129
  clearColorHover: string;
911
1130
  clearColorPressed: string;
912
- paddingSingle: string;
913
- paddingMultiple: string;
914
- clearSize: string;
915
- arrowSize: string;
1131
+ caretColorSecondary: string;
1132
+ filterCounterTextColor: string;
1133
+ filterCounterSeparatorColor: string;
1134
+ filterCounterTextColorDisabled: string;
1135
+ filterCounterSeparatorColorDisabled: string;
1136
+ arrowColorSecondary: string;
1137
+ clearColorSecondary: string;
1138
+ colorSecondary: string;
1139
+ textColorSecondary: string;
1140
+ borderSecondary: string;
1141
+ arrowColorDisabledSecondary: string;
1142
+ clearColorDisabledSecondary: string;
1143
+ colorDisabledSecondary: string;
1144
+ textColorDisabledSecondary: string;
1145
+ borderDisabledSecondary: string;
1146
+ arrowColorHoverSecondary: string;
1147
+ clearColorHoverSecondary: string;
1148
+ colorHoverSecondary: string;
1149
+ textColorHoverSecondary: string;
1150
+ borderHoverSecondary: string;
1151
+ arrowColorFocusSecondary: string;
1152
+ clearColorFocusSecondary: string;
1153
+ colorFocusSecondary: string;
1154
+ textColorFocusSecondary: string;
1155
+ borderFocusSecondary: string;
1156
+ arrowColorActiveSecondary: string;
1157
+ clearColorActiveSecondary: string;
1158
+ colorActiveSecondary: string;
1159
+ textColorActiveSecondary: string;
1160
+ borderActiveSecondary: string;
916
1161
  }, {
917
1162
  Popover: import("../../_mixins").Theme<"Popover", {
918
- fontSize: string;
919
- borderRadius: string;
920
- color: string;
921
- dividerColor: string;
922
- textColor: string;
923
- boxShadow: string;
924
1163
  space: string;
925
1164
  spaceArrow: string;
926
1165
  arrowOffset: string;
927
1166
  arrowOffsetVertical: string;
928
1167
  arrowHeight: string;
929
1168
  padding: string;
1169
+ fontSize: string;
1170
+ borderRadius: string;
1171
+ color: string;
1172
+ dividerColor: string;
1173
+ textColor: string;
1174
+ boxShadow: string;
930
1175
  }, any>;
931
1176
  }>;
932
1177
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -934,42 +1179,62 @@ declare const _default: import("vue").DefineComponent<{
934
1179
  colorHover: string;
935
1180
  }, any>;
936
1181
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
937
- labelLineHeight: string;
938
- fontSizeSmall: string;
939
- fontSizeMedium: string;
1182
+ fontWeight: string;
1183
+ textColor: string;
1184
+ descriptionTextColor: string;
1185
+ textColorDisabled: string;
1186
+ descriptionTextColorDisabled: string;
940
1187
  fontSizeLarge: string;
1188
+ fontSizeMedium: string;
1189
+ fontSizeSmall: string;
1190
+ lineHeightLarge: string;
1191
+ lineHeightMedium: string;
1192
+ lineHeightSmall: string;
1193
+ borderRadiusLarge: string;
1194
+ borderRadiusMedium: string;
1195
+ borderRadiusSmall: string;
941
1196
  color: string;
1197
+ colorHover: string;
1198
+ colorFocus: string;
1199
+ colorActive: string;
942
1200
  colorChecked: string;
1201
+ colorHoverChecked: string;
1202
+ colorFocusChecked: string;
1203
+ colorActiveChecked: string;
943
1204
  colorDisabled: string;
944
1205
  colorDisabledChecked: string;
945
- colorTableHeader: string;
946
- colorTableHeaderModal: string;
947
- colorTableHeaderPopover: string;
948
1206
  checkMarkColor: string;
1207
+ checkMarkColorHover: string;
1208
+ checkMarkColorFocus: string;
1209
+ checkMarkColorActive: string;
949
1210
  checkMarkColorDisabled: string;
950
1211
  checkMarkColorDisabledChecked: string;
951
1212
  border: string;
952
- borderDisabled: string;
953
- borderDisabledChecked: string;
954
1213
  borderHover: string;
955
- borderChecked: string;
956
1214
  borderFocus: string;
1215
+ borderActive: string;
1216
+ borderChecked: string;
1217
+ borderHoverChecked: string;
1218
+ borderFocusChecked: string;
1219
+ borderActiveChecked: string;
1220
+ borderDisabled: string;
1221
+ borderDisabledChecked: string;
957
1222
  boxShadowHover: string;
958
1223
  boxShadowFocus: string;
959
1224
  boxShadowActive: string;
960
1225
  boxShadowHoverChecked: string;
961
1226
  boxShadowFocusChecked: string;
962
1227
  boxShadowActiveChecked: string;
963
- textColor: string;
964
1228
  sizeSmall: string;
965
1229
  sizeMedium: string;
966
1230
  sizeLarge: string;
967
1231
  labelPadding: string;
968
- labelFontWeight: string;
969
- borderRadiusLarge: string;
970
- borderRadiusSmall: string;
971
1232
  }, any>;
972
1233
  Empty: import("../../_mixins").Theme<"Empty", {
1234
+ iconSizeSmall: string;
1235
+ iconSizeMedium: string;
1236
+ iconSizeLarge: string;
1237
+ iconSizeHuge: string;
973
1238
  fontSizeSmall: string;
974
1239
  fontSizeMedium: string;
975
1240
  fontSizeLarge: string;
@@ -977,10 +1242,6 @@ declare const _default: import("vue").DefineComponent<{
977
1242
  textColor: string;
978
1243
  iconColor: string;
979
1244
  extraTextColor: string;
980
- iconSizeSmall: string;
981
- iconSizeMedium: string;
982
- iconSizeLarge: string;
983
- iconSizeHuge: string;
984
1245
  }, any>;
985
1246
  }>>;
986
1247
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -1001,14 +1262,21 @@ declare const _default: import("vue").DefineComponent<{
1001
1262
  columnWidth: string;
1002
1263
  }, {
1003
1264
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1265
+ height: string;
1266
+ paddingSmall: string;
1267
+ paddingMedium: string;
1268
+ paddingLarge: string;
1269
+ optionPaddingSmall: string;
1270
+ optionPaddingMedium: string;
1271
+ optionPaddingLarge: string;
1272
+ loadingSize: string;
1004
1273
  optionFontSizeSmall: string;
1005
1274
  optionFontSizeMedium: string;
1006
1275
  optionFontSizeLarge: string;
1007
- optionFontSizeHuge: string;
1008
1276
  optionHeightSmall: string;
1009
1277
  optionHeightMedium: string;
1010
1278
  optionHeightLarge: string;
1011
- optionHeightHuge: string;
1279
+ optionBorderRadius: string;
1012
1280
  borderRadius: string;
1013
1281
  color: string;
1014
1282
  groupHeaderTextColor: string;
@@ -1025,22 +1293,16 @@ declare const _default: import("vue").DefineComponent<{
1025
1293
  optionColorActivePending: string;
1026
1294
  actionTextColor: string;
1027
1295
  loadingColor: string;
1028
- height: string;
1029
- paddingSmall: string;
1030
- paddingMedium: string;
1031
- paddingLarge: string;
1032
- paddingHuge: string;
1033
- optionPaddingSmall: string;
1034
- optionPaddingMedium: string;
1035
- optionPaddingLarge: string;
1036
- optionPaddingHuge: string;
1037
- loadingSize: string;
1038
1296
  }, {
1039
1297
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1040
1298
  color: string;
1041
1299
  colorHover: string;
1042
1300
  }, any>;
1043
1301
  Empty: import("../../_mixins").Theme<"Empty", {
1302
+ iconSizeSmall: string;
1303
+ iconSizeMedium: string;
1304
+ iconSizeLarge: string;
1305
+ iconSizeHuge: string;
1044
1306
  fontSizeSmall: string;
1045
1307
  fontSizeMedium: string;
1046
1308
  fontSizeLarge: string;
@@ -1048,22 +1310,44 @@ declare const _default: import("vue").DefineComponent<{
1048
1310
  textColor: string;
1049
1311
  iconColor: string;
1050
1312
  extraTextColor: string;
1051
- iconSizeSmall: string;
1052
- iconSizeMedium: string;
1053
- iconSizeLarge: string;
1054
- iconSizeHuge: string;
1055
1313
  }, any>;
1056
1314
  }>;
1057
1315
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1316
+ paddingTiny: string;
1317
+ paddingSmall: string;
1318
+ paddingMedium: string;
1319
+ paddingLarge: string;
1320
+ paddingHuge: string;
1321
+ clearSizeTiny: string;
1322
+ clearSizeSmall: string;
1323
+ clearSizeMedium: string;
1324
+ clearSizeLarge: string;
1325
+ clearSizeHuge: string;
1326
+ arrowSizeTiny: string;
1327
+ arrowSizeSmall: string;
1328
+ arrowSizeMedium: string;
1329
+ arrowSizeLarge: string;
1330
+ arrowSizeHuge: string;
1058
1331
  fontSizeTiny: string;
1059
1332
  fontSizeSmall: string;
1060
1333
  fontSizeMedium: string;
1061
1334
  fontSizeLarge: string;
1335
+ fontSizeHuge: string;
1336
+ lineHeightTiny: string;
1337
+ lineHeightSmall: string;
1338
+ lineHeightMedium: string;
1339
+ lineHeightLarge: string;
1340
+ lineHeightHuge: string;
1062
1341
  heightTiny: string;
1063
1342
  heightSmall: string;
1064
1343
  heightMedium: string;
1065
1344
  heightLarge: string;
1066
- borderRadius: string;
1345
+ heightHuge: string;
1346
+ borderRadiusTiny: string;
1347
+ borderRadiusSmall: string;
1348
+ borderRadiusMedium: string;
1349
+ borderRadiusLarge: string;
1350
+ borderRadiusHuge: string;
1067
1351
  textColor: string;
1068
1352
  textColorDisabled: string;
1069
1353
  placeholderColor: string;
@@ -1105,24 +1389,50 @@ declare const _default: import("vue").DefineComponent<{
1105
1389
  clearColor: string;
1106
1390
  clearColorHover: string;
1107
1391
  clearColorPressed: string;
1108
- paddingSingle: string;
1109
- paddingMultiple: string;
1110
- clearSize: string;
1111
- arrowSize: string;
1392
+ caretColorSecondary: string;
1393
+ filterCounterTextColor: string;
1394
+ filterCounterSeparatorColor: string;
1395
+ filterCounterTextColorDisabled: string;
1396
+ filterCounterSeparatorColorDisabled: string;
1397
+ arrowColorSecondary: string;
1398
+ clearColorSecondary: string;
1399
+ colorSecondary: string;
1400
+ textColorSecondary: string;
1401
+ borderSecondary: string;
1402
+ arrowColorDisabledSecondary: string;
1403
+ clearColorDisabledSecondary: string;
1404
+ colorDisabledSecondary: string;
1405
+ textColorDisabledSecondary: string;
1406
+ borderDisabledSecondary: string;
1407
+ arrowColorHoverSecondary: string;
1408
+ clearColorHoverSecondary: string;
1409
+ colorHoverSecondary: string;
1410
+ textColorHoverSecondary: string;
1411
+ borderHoverSecondary: string;
1412
+ arrowColorFocusSecondary: string;
1413
+ clearColorFocusSecondary: string;
1414
+ colorFocusSecondary: string;
1415
+ textColorFocusSecondary: string;
1416
+ borderFocusSecondary: string;
1417
+ arrowColorActiveSecondary: string;
1418
+ clearColorActiveSecondary: string;
1419
+ colorActiveSecondary: string;
1420
+ textColorActiveSecondary: string;
1421
+ borderActiveSecondary: string;
1112
1422
  }, {
1113
1423
  Popover: import("../../_mixins").Theme<"Popover", {
1114
- fontSize: string;
1115
- borderRadius: string;
1116
- color: string;
1117
- dividerColor: string;
1118
- textColor: string;
1119
- boxShadow: string;
1120
1424
  space: string;
1121
1425
  spaceArrow: string;
1122
1426
  arrowOffset: string;
1123
1427
  arrowOffsetVertical: string;
1124
1428
  arrowHeight: string;
1125
1429
  padding: string;
1430
+ fontSize: string;
1431
+ borderRadius: string;
1432
+ color: string;
1433
+ dividerColor: string;
1434
+ textColor: string;
1435
+ boxShadow: string;
1126
1436
  }, any>;
1127
1437
  }>;
1128
1438
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -1130,42 +1440,62 @@ declare const _default: import("vue").DefineComponent<{
1130
1440
  colorHover: string;
1131
1441
  }, any>;
1132
1442
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1133
- labelLineHeight: string;
1134
- fontSizeSmall: string;
1135
- fontSizeMedium: string;
1443
+ fontWeight: string;
1444
+ textColor: string;
1445
+ descriptionTextColor: string;
1446
+ textColorDisabled: string;
1447
+ descriptionTextColorDisabled: string;
1136
1448
  fontSizeLarge: string;
1449
+ fontSizeMedium: string;
1450
+ fontSizeSmall: string;
1451
+ lineHeightLarge: string;
1452
+ lineHeightMedium: string;
1453
+ lineHeightSmall: string;
1454
+ borderRadiusLarge: string;
1455
+ borderRadiusMedium: string;
1456
+ borderRadiusSmall: string;
1137
1457
  color: string;
1458
+ colorHover: string;
1459
+ colorFocus: string;
1460
+ colorActive: string;
1138
1461
  colorChecked: string;
1462
+ colorHoverChecked: string;
1463
+ colorFocusChecked: string;
1464
+ colorActiveChecked: string;
1139
1465
  colorDisabled: string;
1140
1466
  colorDisabledChecked: string;
1141
- colorTableHeader: string;
1142
- colorTableHeaderModal: string;
1143
- colorTableHeaderPopover: string;
1144
1467
  checkMarkColor: string;
1468
+ checkMarkColorHover: string;
1469
+ checkMarkColorFocus: string;
1470
+ checkMarkColorActive: string;
1145
1471
  checkMarkColorDisabled: string;
1146
1472
  checkMarkColorDisabledChecked: string;
1147
1473
  border: string;
1148
- borderDisabled: string;
1149
- borderDisabledChecked: string;
1150
1474
  borderHover: string;
1151
- borderChecked: string;
1152
1475
  borderFocus: string;
1476
+ borderActive: string;
1477
+ borderChecked: string;
1478
+ borderHoverChecked: string;
1479
+ borderFocusChecked: string;
1480
+ borderActiveChecked: string;
1481
+ borderDisabled: string;
1482
+ borderDisabledChecked: string;
1153
1483
  boxShadowHover: string;
1154
1484
  boxShadowFocus: string;
1155
1485
  boxShadowActive: string;
1156
1486
  boxShadowHoverChecked: string;
1157
1487
  boxShadowFocusChecked: string;
1158
1488
  boxShadowActiveChecked: string;
1159
- textColor: string;
1160
1489
  sizeSmall: string;
1161
1490
  sizeMedium: string;
1162
1491
  sizeLarge: string;
1163
1492
  labelPadding: string;
1164
- labelFontWeight: string;
1165
- borderRadiusLarge: string;
1166
- borderRadiusSmall: string;
1167
1493
  }, any>;
1168
1494
  Empty: import("../../_mixins").Theme<"Empty", {
1495
+ iconSizeSmall: string;
1496
+ iconSizeMedium: string;
1497
+ iconSizeLarge: string;
1498
+ iconSizeHuge: string;
1169
1499
  fontSizeSmall: string;
1170
1500
  fontSizeMedium: string;
1171
1501
  fontSizeLarge: string;
@@ -1173,10 +1503,6 @@ declare const _default: import("vue").DefineComponent<{
1173
1503
  textColor: string;
1174
1504
  iconColor: string;
1175
1505
  extraTextColor: string;
1176
- iconSizeSmall: string;
1177
- iconSizeMedium: string;
1178
- iconSizeLarge: string;
1179
- iconSizeHuge: string;
1180
1506
  }, any>;
1181
1507
  }>>>;
1182
1508
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -1197,14 +1523,21 @@ declare const _default: import("vue").DefineComponent<{
1197
1523
  columnWidth: string;
1198
1524
  }, {
1199
1525
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1526
+ height: string;
1527
+ paddingSmall: string;
1528
+ paddingMedium: string;
1529
+ paddingLarge: string;
1530
+ optionPaddingSmall: string;
1531
+ optionPaddingMedium: string;
1532
+ optionPaddingLarge: string;
1533
+ loadingSize: string;
1200
1534
  optionFontSizeSmall: string;
1201
1535
  optionFontSizeMedium: string;
1202
1536
  optionFontSizeLarge: string;
1203
- optionFontSizeHuge: string;
1204
1537
  optionHeightSmall: string;
1205
1538
  optionHeightMedium: string;
1206
1539
  optionHeightLarge: string;
1207
- optionHeightHuge: string;
1540
+ optionBorderRadius: string;
1208
1541
  borderRadius: string;
1209
1542
  color: string;
1210
1543
  groupHeaderTextColor: string;
@@ -1221,22 +1554,16 @@ declare const _default: import("vue").DefineComponent<{
1221
1554
  optionColorActivePending: string;
1222
1555
  actionTextColor: string;
1223
1556
  loadingColor: string;
1224
- height: string;
1225
- paddingSmall: string;
1226
- paddingMedium: string;
1227
- paddingLarge: string;
1228
- paddingHuge: string;
1229
- optionPaddingSmall: string;
1230
- optionPaddingMedium: string;
1231
- optionPaddingLarge: string;
1232
- optionPaddingHuge: string;
1233
- loadingSize: string;
1234
1557
  }, {
1235
1558
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1236
1559
  color: string;
1237
1560
  colorHover: string;
1238
1561
  }, any>;
1239
1562
  Empty: import("../../_mixins").Theme<"Empty", {
1563
+ iconSizeSmall: string;
1564
+ iconSizeMedium: string;
1565
+ iconSizeLarge: string;
1566
+ iconSizeHuge: string;
1240
1567
  fontSizeSmall: string;
1241
1568
  fontSizeMedium: string;
1242
1569
  fontSizeLarge: string;
@@ -1244,22 +1571,44 @@ declare const _default: import("vue").DefineComponent<{
1244
1571
  textColor: string;
1245
1572
  iconColor: string;
1246
1573
  extraTextColor: string;
1247
- iconSizeSmall: string;
1248
- iconSizeMedium: string;
1249
- iconSizeLarge: string;
1250
- iconSizeHuge: string;
1251
1574
  }, any>;
1252
1575
  }>;
1253
1576
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1577
+ paddingTiny: string;
1578
+ paddingSmall: string;
1579
+ paddingMedium: string;
1580
+ paddingLarge: string;
1581
+ paddingHuge: string;
1582
+ clearSizeTiny: string;
1583
+ clearSizeSmall: string;
1584
+ clearSizeMedium: string;
1585
+ clearSizeLarge: string;
1586
+ clearSizeHuge: string;
1587
+ arrowSizeTiny: string;
1588
+ arrowSizeSmall: string;
1589
+ arrowSizeMedium: string;
1590
+ arrowSizeLarge: string;
1591
+ arrowSizeHuge: string;
1254
1592
  fontSizeTiny: string;
1255
1593
  fontSizeSmall: string;
1256
1594
  fontSizeMedium: string;
1257
1595
  fontSizeLarge: string;
1596
+ fontSizeHuge: string;
1597
+ lineHeightTiny: string;
1598
+ lineHeightSmall: string;
1599
+ lineHeightMedium: string;
1600
+ lineHeightLarge: string;
1601
+ lineHeightHuge: string;
1258
1602
  heightTiny: string;
1259
1603
  heightSmall: string;
1260
1604
  heightMedium: string;
1261
1605
  heightLarge: string;
1262
- borderRadius: string;
1606
+ heightHuge: string;
1607
+ borderRadiusTiny: string;
1608
+ borderRadiusSmall: string;
1609
+ borderRadiusMedium: string;
1610
+ borderRadiusLarge: string;
1611
+ borderRadiusHuge: string;
1263
1612
  textColor: string;
1264
1613
  textColorDisabled: string;
1265
1614
  placeholderColor: string;
@@ -1301,24 +1650,50 @@ declare const _default: import("vue").DefineComponent<{
1301
1650
  clearColor: string;
1302
1651
  clearColorHover: string;
1303
1652
  clearColorPressed: string;
1304
- paddingSingle: string;
1305
- paddingMultiple: string;
1306
- clearSize: string;
1307
- arrowSize: string;
1653
+ caretColorSecondary: string;
1654
+ filterCounterTextColor: string;
1655
+ filterCounterSeparatorColor: string;
1656
+ filterCounterTextColorDisabled: string;
1657
+ filterCounterSeparatorColorDisabled: string;
1658
+ arrowColorSecondary: string;
1659
+ clearColorSecondary: string;
1660
+ colorSecondary: string;
1661
+ textColorSecondary: string;
1662
+ borderSecondary: string;
1663
+ arrowColorDisabledSecondary: string;
1664
+ clearColorDisabledSecondary: string;
1665
+ colorDisabledSecondary: string;
1666
+ textColorDisabledSecondary: string;
1667
+ borderDisabledSecondary: string;
1668
+ arrowColorHoverSecondary: string;
1669
+ clearColorHoverSecondary: string;
1670
+ colorHoverSecondary: string;
1671
+ textColorHoverSecondary: string;
1672
+ borderHoverSecondary: string;
1673
+ arrowColorFocusSecondary: string;
1674
+ clearColorFocusSecondary: string;
1675
+ colorFocusSecondary: string;
1676
+ textColorFocusSecondary: string;
1677
+ borderFocusSecondary: string;
1678
+ arrowColorActiveSecondary: string;
1679
+ clearColorActiveSecondary: string;
1680
+ colorActiveSecondary: string;
1681
+ textColorActiveSecondary: string;
1682
+ borderActiveSecondary: string;
1308
1683
  }, {
1309
1684
  Popover: import("../../_mixins").Theme<"Popover", {
1310
- fontSize: string;
1311
- borderRadius: string;
1312
- color: string;
1313
- dividerColor: string;
1314
- textColor: string;
1315
- boxShadow: string;
1316
1685
  space: string;
1317
1686
  spaceArrow: string;
1318
1687
  arrowOffset: string;
1319
1688
  arrowOffsetVertical: string;
1320
1689
  arrowHeight: string;
1321
1690
  padding: string;
1691
+ fontSize: string;
1692
+ borderRadius: string;
1693
+ color: string;
1694
+ dividerColor: string;
1695
+ textColor: string;
1696
+ boxShadow: string;
1322
1697
  }, any>;
1323
1698
  }>;
1324
1699
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -1326,42 +1701,62 @@ declare const _default: import("vue").DefineComponent<{
1326
1701
  colorHover: string;
1327
1702
  }, any>;
1328
1703
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1329
- labelLineHeight: string;
1330
- fontSizeSmall: string;
1331
- fontSizeMedium: string;
1704
+ fontWeight: string;
1705
+ textColor: string;
1706
+ descriptionTextColor: string;
1707
+ textColorDisabled: string;
1708
+ descriptionTextColorDisabled: string;
1332
1709
  fontSizeLarge: string;
1710
+ fontSizeMedium: string;
1711
+ fontSizeSmall: string;
1712
+ lineHeightLarge: string;
1713
+ lineHeightMedium: string;
1714
+ lineHeightSmall: string;
1715
+ borderRadiusLarge: string;
1716
+ borderRadiusMedium: string;
1717
+ borderRadiusSmall: string;
1333
1718
  color: string;
1719
+ colorHover: string;
1720
+ colorFocus: string;
1721
+ colorActive: string;
1334
1722
  colorChecked: string;
1723
+ colorHoverChecked: string;
1724
+ colorFocusChecked: string;
1725
+ colorActiveChecked: string;
1335
1726
  colorDisabled: string;
1336
1727
  colorDisabledChecked: string;
1337
- colorTableHeader: string;
1338
- colorTableHeaderModal: string;
1339
- colorTableHeaderPopover: string;
1340
1728
  checkMarkColor: string;
1729
+ checkMarkColorHover: string;
1730
+ checkMarkColorFocus: string;
1731
+ checkMarkColorActive: string;
1341
1732
  checkMarkColorDisabled: string;
1342
1733
  checkMarkColorDisabledChecked: string;
1343
1734
  border: string;
1344
- borderDisabled: string;
1345
- borderDisabledChecked: string;
1346
1735
  borderHover: string;
1347
- borderChecked: string;
1348
1736
  borderFocus: string;
1737
+ borderActive: string;
1738
+ borderChecked: string;
1739
+ borderHoverChecked: string;
1740
+ borderFocusChecked: string;
1741
+ borderActiveChecked: string;
1742
+ borderDisabled: string;
1743
+ borderDisabledChecked: string;
1349
1744
  boxShadowHover: string;
1350
1745
  boxShadowFocus: string;
1351
1746
  boxShadowActive: string;
1352
1747
  boxShadowHoverChecked: string;
1353
1748
  boxShadowFocusChecked: string;
1354
1749
  boxShadowActiveChecked: string;
1355
- textColor: string;
1356
1750
  sizeSmall: string;
1357
1751
  sizeMedium: string;
1358
1752
  sizeLarge: string;
1359
1753
  labelPadding: string;
1360
- labelFontWeight: string;
1361
- borderRadiusLarge: string;
1362
- borderRadiusSmall: string;
1363
1754
  }, any>;
1364
1755
  Empty: import("../../_mixins").Theme<"Empty", {
1756
+ iconSizeSmall: string;
1757
+ iconSizeMedium: string;
1758
+ iconSizeLarge: string;
1759
+ iconSizeHuge: string;
1365
1760
  fontSizeSmall: string;
1366
1761
  fontSizeMedium: string;
1367
1762
  fontSizeLarge: string;
@@ -1369,10 +1764,6 @@ declare const _default: import("vue").DefineComponent<{
1369
1764
  textColor: string;
1370
1765
  iconColor: string;
1371
1766
  extraTextColor: string;
1372
- iconSizeSmall: string;
1373
- iconSizeMedium: string;
1374
- iconSizeLarge: string;
1375
- iconSizeHuge: string;
1376
1767
  }, any>;
1377
1768
  }>>>;
1378
1769
  }, {
@@ -1410,7 +1801,7 @@ declare const _default: import("vue").DefineComponent<{
1410
1801
  showSelectMenu: import("vue").ComputedRef<boolean>;
1411
1802
  pattern: import("vue").Ref<string>;
1412
1803
  treeMate: import("vue").ComputedRef<import("treemate").TreeMate<CascaderOption, CascaderOption, CascaderOption>>;
1413
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
1804
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large" | "tiny" | "huge">;
1414
1805
  mergedDisabled: import("vue").ComputedRef<boolean>;
1415
1806
  localizedPlaceholder: import("vue").ComputedRef<string>;
1416
1807
  selectedOption: import("vue").ComputedRef<{
@@ -1439,124 +1830,113 @@ declare const _default: import("vue").DefineComponent<{
1439
1830
  optionHeight: import("vue").ComputedRef<string>;
1440
1831
  mergedTheme: import("vue").ComputedRef<{
1441
1832
  common: {
1442
- baseColor: string;
1443
- primaryColor: string;
1444
- primaryColorHover: string;
1445
- primaryColorPressed: string;
1446
- primaryColorSuppl: string;
1447
- infoColor: string;
1448
- infoColorHover: string;
1449
- infoColorPressed: string;
1450
- infoColorSuppl: string;
1451
- successColor: string;
1452
- successColorHover: string;
1453
- successColorPressed: string;
1454
- successColorSuppl: string;
1455
- warningColor: string;
1456
- warningColorHover: string;
1457
- warningColorPressed: string;
1458
- warningColorSuppl: string;
1459
- errorColor: string;
1460
- errorColorHover: string;
1461
- errorColorPressed: string;
1462
- errorColorSuppl: string;
1463
- tertiaryColor: string;
1464
- tertiaryColorHover: string;
1465
- tertiaryColorActive: string;
1466
- tertiaryColorSuppl: string;
1467
- tertiaryElements: string;
1468
- textColorBase: string;
1469
- textColor1: string;
1470
- textColor2: string;
1471
- textColor3: string;
1472
- textTertiary: string;
1473
- boxShadowHover: string;
1474
- boxShadowFocus: string;
1475
- boxShadowHoverChecked: string;
1476
- boxShadowFocusChecked: string;
1477
- textColorDisabled: string;
1478
- placeholderColor: string;
1479
- placeholderColorDisabled: string;
1480
- iconColor: string;
1481
- iconColorHover: string;
1482
- iconColorPressed: string;
1483
- iconColorDisabled: string;
1484
- opacity1: string;
1485
- opacity2: string;
1486
- opacity3: string;
1487
- opacity4: string;
1488
- opacity5: string;
1489
- dividerColor: string;
1490
- borderColor: string;
1491
- borderTagColor: string;
1492
- closeIconColor: string;
1493
- closeIconColorHover: string;
1494
- closeIconColorPressed: string;
1495
- closeColorHover: string;
1496
- closeColorPressed: string;
1497
- clearColor: string;
1498
- clearColorHover: string;
1499
- clearColorPressed: string;
1500
1833
  scrollbarColor: string;
1501
1834
  scrollbarColorHover: string;
1502
1835
  scrollbarWidth: string;
1503
1836
  scrollbarHeight: string;
1504
1837
  scrollbarBorderRadius: string;
1505
- progressRailColor: string;
1506
- railColor: string;
1507
- popoverColor: string;
1508
- tableColor: string;
1509
- cardColor: string;
1510
- modalColor: string;
1511
- bodyColor: string;
1512
- tagColor: string;
1513
- avatarColor: string;
1514
- avatarTextColor: string;
1515
- avatarIconColor: string;
1516
- invertedColor: string;
1517
- tooltipColor: string;
1518
- inputColor: string;
1519
- codeColor: string;
1520
- tabColor: string;
1521
- actionColor: string;
1522
- tableHeaderColor: string;
1523
- hoverColor: string;
1524
- tableColorHover: string;
1525
- tableColorStriped: string;
1526
- pressedColor: string;
1527
1838
  opacityDisabled: string;
1528
- inputColorDisabled: string;
1529
- buttonColor2: string;
1530
- buttonColor2Hover: string;
1531
- buttonColor2Pressed: string;
1532
- boxShadow1: string;
1533
- boxShadow2: string;
1534
- boxShadow3: string;
1839
+ brandPrimary50: string;
1840
+ brandPrimary100: string;
1841
+ brandPrimary200: string;
1842
+ brandPrimary300: string;
1843
+ brandPrimary400: string;
1844
+ brandPrimary500: string;
1845
+ brandPrimary550: string;
1846
+ brandPrimary600: string;
1847
+ brandSecondary500: string;
1848
+ brandSecondary300: string;
1849
+ brandSecondary600: string;
1850
+ brandTertiary500: string;
1851
+ brandTertiary300: string;
1852
+ brandTertiary600: string;
1853
+ brandQuaternary500: string;
1854
+ brandQuaternary300: string;
1855
+ brandQuaternary600: string;
1856
+ brandQuinary500: string;
1857
+ brandQuinary300: string;
1858
+ brandQuinary600: string;
1859
+ brandQuinary100: string;
1860
+ surfacePrimary: string;
1861
+ surfaceSecondary: string;
1862
+ containerPrimary: string;
1863
+ containerSecondary: string;
1864
+ textPrimary: string;
1865
+ textSecondary: string;
1866
+ textTertiary: string;
1867
+ textQuaternary: string;
1868
+ textBrand: string;
1869
+ elementsPrimary: string;
1870
+ elementsSecondary: string;
1871
+ elementsTertiary: string;
1872
+ elementsQuaternary: string;
1873
+ elementsQuinary: string;
1874
+ elementsDarkQuinary: string;
1875
+ elementsSenary: string;
1876
+ elementsOnContainer: string;
1877
+ transparencyPrimary: string;
1878
+ transparencySecondary: string;
1879
+ transparencyTertiary: string;
1880
+ transparencyQuinary: string;
1881
+ transparencyModal: string;
1882
+ staticBlack: string;
1883
+ staticDarkGrey: string;
1884
+ staticWhite: string;
1885
+ staticRed: string;
1886
+ staticOrange: string;
1887
+ staticGreen: string;
1888
+ staticErrorAccent: string;
1889
+ shadowDepth2: string;
1535
1890
  fontFamily: string;
1536
1891
  fontFamilyMono: string;
1537
- fontWeight: string;
1538
- fontWeightStrong: string;
1539
1892
  cubicBezierEaseInOut: string;
1540
1893
  cubicBezierEaseOut: string;
1541
1894
  cubicBezierEaseIn: string;
1542
- borderWidth: number;
1543
- borderTagWidth: number;
1895
+ borderRadiusLarge: string;
1544
1896
  borderRadius: string;
1897
+ borderRadiusMedium: string;
1545
1898
  borderRadiusSmall: string;
1546
- fontSize: string;
1547
- fontSizeMini: string;
1548
- fontSizeTiny: string;
1549
- fontSizeSmall: string;
1550
- fontSizeMedium: string;
1551
- fontSizeLarge: string;
1552
- fontSizeHuge: string;
1553
- lineHeight: string;
1899
+ borderRadiusTiny: string;
1554
1900
  heightMini: string;
1555
1901
  heightTiny: string;
1556
1902
  heightSmall: string;
1557
1903
  heightMedium: string;
1558
1904
  heightLarge: string;
1559
1905
  heightHuge: string;
1906
+ fontDisplayLarge: string;
1907
+ fontDisplaySmall: string;
1908
+ fontHeadingLarge: string;
1909
+ fontHeadingMedium: string;
1910
+ fontHeadingSmall: string;
1911
+ fontTitleLarge: string;
1912
+ fontTitleMedium: string;
1913
+ fontTitleSmall: string;
1914
+ fontBodyLarge: string;
1915
+ fontBodyMedium: string;
1916
+ fontBodySmall: string;
1917
+ lineHeightDisplayLarge: string;
1918
+ lineHeightDisplaySmall: string;
1919
+ lineHeightHeadingLarge: string;
1920
+ lineHeightHeadingMedium: string;
1921
+ lineHeightHeadingSmall: string;
1922
+ lineHeightTitleLarge: string;
1923
+ lineHeightTitleMedium: string;
1924
+ lineHeightTitleSmall: string;
1925
+ lineHeightBodyLarge: string;
1926
+ lineHeightBodyMedium: string;
1927
+ lineHeightBodySmall: string;
1928
+ fontWeight: string;
1929
+ fontWeightStrong: string;
1930
+ fontWeightBold: string;
1931
+ iconSmall: string;
1932
+ iconMedium: string;
1933
+ iconLarge: string;
1934
+ iconHuge: string;
1935
+ closeSmall: string;
1936
+ closeMedium: string;
1937
+ closeLarge: string;
1938
+ closeHuge: string;
1939
+ closeBorderRadius: string;
1560
1940
  name: "common";
1561
1941
  };
1562
1942
  self: {
@@ -1578,14 +1958,21 @@ declare const _default: import("vue").DefineComponent<{
1578
1958
  };
1579
1959
  peers: {
1580
1960
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1961
+ height: string;
1962
+ paddingSmall: string;
1963
+ paddingMedium: string;
1964
+ paddingLarge: string;
1965
+ optionPaddingSmall: string;
1966
+ optionPaddingMedium: string;
1967
+ optionPaddingLarge: string;
1968
+ loadingSize: string;
1581
1969
  optionFontSizeSmall: string;
1582
1970
  optionFontSizeMedium: string;
1583
1971
  optionFontSizeLarge: string;
1584
- optionFontSizeHuge: string;
1585
1972
  optionHeightSmall: string;
1586
1973
  optionHeightMedium: string;
1587
1974
  optionHeightLarge: string;
1588
- optionHeightHuge: string;
1975
+ optionBorderRadius: string;
1589
1976
  borderRadius: string;
1590
1977
  color: string;
1591
1978
  groupHeaderTextColor: string;
@@ -1602,22 +1989,16 @@ declare const _default: import("vue").DefineComponent<{
1602
1989
  optionColorActivePending: string;
1603
1990
  actionTextColor: string;
1604
1991
  loadingColor: string;
1605
- height: string;
1606
- paddingSmall: string;
1607
- paddingMedium: string;
1608
- paddingLarge: string;
1609
- paddingHuge: string;
1610
- optionPaddingSmall: string;
1611
- optionPaddingMedium: string;
1612
- optionPaddingLarge: string;
1613
- optionPaddingHuge: string;
1614
- loadingSize: string;
1615
1992
  }, {
1616
1993
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1617
1994
  color: string;
1618
1995
  colorHover: string;
1619
1996
  }, any>;
1620
1997
  Empty: import("../../_mixins").Theme<"Empty", {
1998
+ iconSizeSmall: string;
1999
+ iconSizeMedium: string;
2000
+ iconSizeLarge: string;
2001
+ iconSizeHuge: string;
1621
2002
  fontSizeSmall: string;
1622
2003
  fontSizeMedium: string;
1623
2004
  fontSizeLarge: string;
@@ -1625,22 +2006,44 @@ declare const _default: import("vue").DefineComponent<{
1625
2006
  textColor: string;
1626
2007
  iconColor: string;
1627
2008
  extraTextColor: string;
1628
- iconSizeSmall: string;
1629
- iconSizeMedium: string;
1630
- iconSizeLarge: string;
1631
- iconSizeHuge: string;
1632
2009
  }, any>;
1633
2010
  }>;
1634
2011
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2012
+ paddingTiny: string;
2013
+ paddingSmall: string;
2014
+ paddingMedium: string;
2015
+ paddingLarge: string;
2016
+ paddingHuge: string;
2017
+ clearSizeTiny: string;
2018
+ clearSizeSmall: string;
2019
+ clearSizeMedium: string;
2020
+ clearSizeLarge: string;
2021
+ clearSizeHuge: string;
2022
+ arrowSizeTiny: string;
2023
+ arrowSizeSmall: string;
2024
+ arrowSizeMedium: string;
2025
+ arrowSizeLarge: string;
2026
+ arrowSizeHuge: string;
1635
2027
  fontSizeTiny: string;
1636
2028
  fontSizeSmall: string;
1637
2029
  fontSizeMedium: string;
1638
2030
  fontSizeLarge: string;
2031
+ fontSizeHuge: string;
2032
+ lineHeightTiny: string;
2033
+ lineHeightSmall: string;
2034
+ lineHeightMedium: string;
2035
+ lineHeightLarge: string;
2036
+ lineHeightHuge: string;
1639
2037
  heightTiny: string;
1640
2038
  heightSmall: string;
1641
2039
  heightMedium: string;
1642
2040
  heightLarge: string;
1643
- borderRadius: string;
2041
+ heightHuge: string;
2042
+ borderRadiusTiny: string;
2043
+ borderRadiusSmall: string;
2044
+ borderRadiusMedium: string;
2045
+ borderRadiusLarge: string;
2046
+ borderRadiusHuge: string;
1644
2047
  textColor: string;
1645
2048
  textColorDisabled: string;
1646
2049
  placeholderColor: string;
@@ -1682,24 +2085,50 @@ declare const _default: import("vue").DefineComponent<{
1682
2085
  clearColor: string;
1683
2086
  clearColorHover: string;
1684
2087
  clearColorPressed: string;
1685
- paddingSingle: string;
1686
- paddingMultiple: string;
1687
- clearSize: string;
1688
- arrowSize: string;
2088
+ caretColorSecondary: string;
2089
+ filterCounterTextColor: string;
2090
+ filterCounterSeparatorColor: string;
2091
+ filterCounterTextColorDisabled: string;
2092
+ filterCounterSeparatorColorDisabled: string;
2093
+ arrowColorSecondary: string;
2094
+ clearColorSecondary: string;
2095
+ colorSecondary: string;
2096
+ textColorSecondary: string;
2097
+ borderSecondary: string;
2098
+ arrowColorDisabledSecondary: string;
2099
+ clearColorDisabledSecondary: string;
2100
+ colorDisabledSecondary: string;
2101
+ textColorDisabledSecondary: string;
2102
+ borderDisabledSecondary: string;
2103
+ arrowColorHoverSecondary: string;
2104
+ clearColorHoverSecondary: string;
2105
+ colorHoverSecondary: string;
2106
+ textColorHoverSecondary: string;
2107
+ borderHoverSecondary: string;
2108
+ arrowColorFocusSecondary: string;
2109
+ clearColorFocusSecondary: string;
2110
+ colorFocusSecondary: string;
2111
+ textColorFocusSecondary: string;
2112
+ borderFocusSecondary: string;
2113
+ arrowColorActiveSecondary: string;
2114
+ clearColorActiveSecondary: string;
2115
+ colorActiveSecondary: string;
2116
+ textColorActiveSecondary: string;
2117
+ borderActiveSecondary: string;
1689
2118
  }, {
1690
2119
  Popover: import("../../_mixins").Theme<"Popover", {
1691
- fontSize: string;
1692
- borderRadius: string;
1693
- color: string;
1694
- dividerColor: string;
1695
- textColor: string;
1696
- boxShadow: string;
1697
2120
  space: string;
1698
2121
  spaceArrow: string;
1699
2122
  arrowOffset: string;
1700
2123
  arrowOffsetVertical: string;
1701
2124
  arrowHeight: string;
1702
2125
  padding: string;
2126
+ fontSize: string;
2127
+ borderRadius: string;
2128
+ color: string;
2129
+ dividerColor: string;
2130
+ textColor: string;
2131
+ boxShadow: string;
1703
2132
  }, any>;
1704
2133
  }>;
1705
2134
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -1707,42 +2136,62 @@ declare const _default: import("vue").DefineComponent<{
1707
2136
  colorHover: string;
1708
2137
  }, any>;
1709
2138
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1710
- labelLineHeight: string;
1711
- fontSizeSmall: string;
1712
- fontSizeMedium: string;
2139
+ fontWeight: string;
2140
+ textColor: string;
2141
+ descriptionTextColor: string;
2142
+ textColorDisabled: string;
2143
+ descriptionTextColorDisabled: string;
1713
2144
  fontSizeLarge: string;
2145
+ fontSizeMedium: string;
2146
+ fontSizeSmall: string;
2147
+ lineHeightLarge: string;
2148
+ lineHeightMedium: string;
2149
+ lineHeightSmall: string;
2150
+ borderRadiusLarge: string;
2151
+ borderRadiusMedium: string;
2152
+ borderRadiusSmall: string;
1714
2153
  color: string;
2154
+ colorHover: string;
2155
+ colorFocus: string;
2156
+ colorActive: string;
1715
2157
  colorChecked: string;
2158
+ colorHoverChecked: string;
2159
+ colorFocusChecked: string;
2160
+ colorActiveChecked: string;
1716
2161
  colorDisabled: string;
1717
2162
  colorDisabledChecked: string;
1718
- colorTableHeader: string;
1719
- colorTableHeaderModal: string;
1720
- colorTableHeaderPopover: string;
1721
2163
  checkMarkColor: string;
2164
+ checkMarkColorHover: string;
2165
+ checkMarkColorFocus: string;
2166
+ checkMarkColorActive: string;
1722
2167
  checkMarkColorDisabled: string;
1723
2168
  checkMarkColorDisabledChecked: string;
1724
2169
  border: string;
1725
- borderDisabled: string;
1726
- borderDisabledChecked: string;
1727
2170
  borderHover: string;
1728
- borderChecked: string;
1729
2171
  borderFocus: string;
2172
+ borderActive: string;
2173
+ borderChecked: string;
2174
+ borderHoverChecked: string;
2175
+ borderFocusChecked: string;
2176
+ borderActiveChecked: string;
2177
+ borderDisabled: string;
2178
+ borderDisabledChecked: string;
1730
2179
  boxShadowHover: string;
1731
2180
  boxShadowFocus: string;
1732
2181
  boxShadowActive: string;
1733
2182
  boxShadowHoverChecked: string;
1734
2183
  boxShadowFocusChecked: string;
1735
2184
  boxShadowActiveChecked: string;
1736
- textColor: string;
1737
2185
  sizeSmall: string;
1738
2186
  sizeMedium: string;
1739
2187
  sizeLarge: string;
1740
- labelPadding: string;
1741
- labelFontWeight: string;
1742
- borderRadiusLarge: string;
1743
- borderRadiusSmall: string;
2188
+ labelPadding: string;
1744
2189
  }, any>;
1745
2190
  Empty: import("../../_mixins").Theme<"Empty", {
2191
+ iconSizeSmall: string;
2192
+ iconSizeMedium: string;
2193
+ iconSizeLarge: string;
2194
+ iconSizeHuge: string;
1746
2195
  fontSizeSmall: string;
1747
2196
  fontSizeMedium: string;
1748
2197
  fontSizeLarge: string;
@@ -1750,10 +2199,6 @@ declare const _default: import("vue").DefineComponent<{
1750
2199
  textColor: string;
1751
2200
  iconColor: string;
1752
2201
  extraTextColor: string;
1753
- iconSizeSmall: string;
1754
- iconSizeMedium: string;
1755
- iconSizeLarge: string;
1756
- iconSizeHuge: string;
1757
2202
  }, any>;
1758
2203
  };
1759
2204
  peerOverrides: {
@@ -1764,6 +2209,10 @@ declare const _default: import("vue").DefineComponent<{
1764
2209
  colorHover: string;
1765
2210
  }, any>> | undefined;
1766
2211
  Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
2212
+ iconSizeSmall: string;
2213
+ iconSizeMedium: string;
2214
+ iconSizeLarge: string;
2215
+ iconSizeHuge: string;
1767
2216
  fontSizeSmall: string;
1768
2217
  fontSizeMedium: string;
1769
2218
  fontSizeLarge: string;
@@ -1771,28 +2220,24 @@ declare const _default: import("vue").DefineComponent<{
1771
2220
  textColor: string;
1772
2221
  iconColor: string;
1773
2222
  extraTextColor: string;
1774
- iconSizeSmall: string;
1775
- iconSizeMedium: string;
1776
- iconSizeLarge: string;
1777
- iconSizeHuge: string;
1778
2223
  }, any>> | undefined;
1779
2224
  } | undefined;
1780
2225
  } | undefined;
1781
2226
  InternalSelection?: {
1782
2227
  peers?: {
1783
2228
  Popover?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popover", {
1784
- fontSize: string;
1785
- borderRadius: string;
1786
- color: string;
1787
- dividerColor: string;
1788
- textColor: string;
1789
- boxShadow: string;
1790
2229
  space: string;
1791
2230
  spaceArrow: string;
1792
2231
  arrowOffset: string;
1793
2232
  arrowOffsetVertical: string;
1794
2233
  arrowHeight: string;
1795
2234
  padding: string;
2235
+ fontSize: string;
2236
+ borderRadius: string;
2237
+ color: string;
2238
+ dividerColor: string;
2239
+ textColor: string;
2240
+ boxShadow: string;
1796
2241
  }, any>> | undefined;
1797
2242
  } | undefined;
1798
2243
  } | undefined;
@@ -1865,7 +2310,7 @@ declare const _default: import("vue").DefineComponent<{
1865
2310
  };
1866
2311
  readonly placeholder: StringConstructor;
1867
2312
  readonly multiple: BooleanConstructor;
1868
- readonly size: PropType<"small" | "medium" | "large">;
2313
+ readonly size: PropType<SelectSize>;
1869
2314
  readonly filterable: BooleanConstructor;
1870
2315
  readonly disabled: {
1871
2316
  readonly type: PropType<boolean | undefined>;
@@ -1958,14 +2403,21 @@ declare const _default: import("vue").DefineComponent<{
1958
2403
  columnWidth: string;
1959
2404
  }, {
1960
2405
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2406
+ height: string;
2407
+ paddingSmall: string;
2408
+ paddingMedium: string;
2409
+ paddingLarge: string;
2410
+ optionPaddingSmall: string;
2411
+ optionPaddingMedium: string;
2412
+ optionPaddingLarge: string;
2413
+ loadingSize: string;
1961
2414
  optionFontSizeSmall: string;
1962
2415
  optionFontSizeMedium: string;
1963
2416
  optionFontSizeLarge: string;
1964
- optionFontSizeHuge: string;
1965
2417
  optionHeightSmall: string;
1966
2418
  optionHeightMedium: string;
1967
2419
  optionHeightLarge: string;
1968
- optionHeightHuge: string;
2420
+ optionBorderRadius: string;
1969
2421
  borderRadius: string;
1970
2422
  color: string;
1971
2423
  groupHeaderTextColor: string;
@@ -1982,22 +2434,16 @@ declare const _default: import("vue").DefineComponent<{
1982
2434
  optionColorActivePending: string;
1983
2435
  actionTextColor: string;
1984
2436
  loadingColor: string;
1985
- height: string;
1986
- paddingSmall: string;
1987
- paddingMedium: string;
1988
- paddingLarge: string;
1989
- paddingHuge: string;
1990
- optionPaddingSmall: string;
1991
- optionPaddingMedium: string;
1992
- optionPaddingLarge: string;
1993
- optionPaddingHuge: string;
1994
- loadingSize: string;
1995
2437
  }, {
1996
2438
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1997
2439
  color: string;
1998
2440
  colorHover: string;
1999
2441
  }, any>;
2000
2442
  Empty: import("../../_mixins").Theme<"Empty", {
2443
+ iconSizeSmall: string;
2444
+ iconSizeMedium: string;
2445
+ iconSizeLarge: string;
2446
+ iconSizeHuge: string;
2001
2447
  fontSizeSmall: string;
2002
2448
  fontSizeMedium: string;
2003
2449
  fontSizeLarge: string;
@@ -2005,22 +2451,44 @@ declare const _default: import("vue").DefineComponent<{
2005
2451
  textColor: string;
2006
2452
  iconColor: string;
2007
2453
  extraTextColor: string;
2008
- iconSizeSmall: string;
2009
- iconSizeMedium: string;
2010
- iconSizeLarge: string;
2011
- iconSizeHuge: string;
2012
2454
  }, any>;
2013
2455
  }>;
2014
2456
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2457
+ paddingTiny: string;
2458
+ paddingSmall: string;
2459
+ paddingMedium: string;
2460
+ paddingLarge: string;
2461
+ paddingHuge: string;
2462
+ clearSizeTiny: string;
2463
+ clearSizeSmall: string;
2464
+ clearSizeMedium: string;
2465
+ clearSizeLarge: string;
2466
+ clearSizeHuge: string;
2467
+ arrowSizeTiny: string;
2468
+ arrowSizeSmall: string;
2469
+ arrowSizeMedium: string;
2470
+ arrowSizeLarge: string;
2471
+ arrowSizeHuge: string;
2015
2472
  fontSizeTiny: string;
2016
2473
  fontSizeSmall: string;
2017
2474
  fontSizeMedium: string;
2018
2475
  fontSizeLarge: string;
2476
+ fontSizeHuge: string;
2477
+ lineHeightTiny: string;
2478
+ lineHeightSmall: string;
2479
+ lineHeightMedium: string;
2480
+ lineHeightLarge: string;
2481
+ lineHeightHuge: string;
2019
2482
  heightTiny: string;
2020
2483
  heightSmall: string;
2021
2484
  heightMedium: string;
2022
2485
  heightLarge: string;
2023
- borderRadius: string;
2486
+ heightHuge: string;
2487
+ borderRadiusTiny: string;
2488
+ borderRadiusSmall: string;
2489
+ borderRadiusMedium: string;
2490
+ borderRadiusLarge: string;
2491
+ borderRadiusHuge: string;
2024
2492
  textColor: string;
2025
2493
  textColorDisabled: string;
2026
2494
  placeholderColor: string;
@@ -2062,24 +2530,50 @@ declare const _default: import("vue").DefineComponent<{
2062
2530
  clearColor: string;
2063
2531
  clearColorHover: string;
2064
2532
  clearColorPressed: string;
2065
- paddingSingle: string;
2066
- paddingMultiple: string;
2067
- clearSize: string;
2068
- arrowSize: string;
2533
+ caretColorSecondary: string;
2534
+ filterCounterTextColor: string;
2535
+ filterCounterSeparatorColor: string;
2536
+ filterCounterTextColorDisabled: string;
2537
+ filterCounterSeparatorColorDisabled: string;
2538
+ arrowColorSecondary: string;
2539
+ clearColorSecondary: string;
2540
+ colorSecondary: string;
2541
+ textColorSecondary: string;
2542
+ borderSecondary: string;
2543
+ arrowColorDisabledSecondary: string;
2544
+ clearColorDisabledSecondary: string;
2545
+ colorDisabledSecondary: string;
2546
+ textColorDisabledSecondary: string;
2547
+ borderDisabledSecondary: string;
2548
+ arrowColorHoverSecondary: string;
2549
+ clearColorHoverSecondary: string;
2550
+ colorHoverSecondary: string;
2551
+ textColorHoverSecondary: string;
2552
+ borderHoverSecondary: string;
2553
+ arrowColorFocusSecondary: string;
2554
+ clearColorFocusSecondary: string;
2555
+ colorFocusSecondary: string;
2556
+ textColorFocusSecondary: string;
2557
+ borderFocusSecondary: string;
2558
+ arrowColorActiveSecondary: string;
2559
+ clearColorActiveSecondary: string;
2560
+ colorActiveSecondary: string;
2561
+ textColorActiveSecondary: string;
2562
+ borderActiveSecondary: string;
2069
2563
  }, {
2070
2564
  Popover: import("../../_mixins").Theme<"Popover", {
2071
- fontSize: string;
2072
- borderRadius: string;
2073
- color: string;
2074
- dividerColor: string;
2075
- textColor: string;
2076
- boxShadow: string;
2077
2565
  space: string;
2078
2566
  spaceArrow: string;
2079
2567
  arrowOffset: string;
2080
2568
  arrowOffsetVertical: string;
2081
2569
  arrowHeight: string;
2082
2570
  padding: string;
2571
+ fontSize: string;
2572
+ borderRadius: string;
2573
+ color: string;
2574
+ dividerColor: string;
2575
+ textColor: string;
2576
+ boxShadow: string;
2083
2577
  }, any>;
2084
2578
  }>;
2085
2579
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -2087,42 +2581,62 @@ declare const _default: import("vue").DefineComponent<{
2087
2581
  colorHover: string;
2088
2582
  }, any>;
2089
2583
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2090
- labelLineHeight: string;
2091
- fontSizeSmall: string;
2092
- fontSizeMedium: string;
2584
+ fontWeight: string;
2585
+ textColor: string;
2586
+ descriptionTextColor: string;
2587
+ textColorDisabled: string;
2588
+ descriptionTextColorDisabled: string;
2093
2589
  fontSizeLarge: string;
2590
+ fontSizeMedium: string;
2591
+ fontSizeSmall: string;
2592
+ lineHeightLarge: string;
2593
+ lineHeightMedium: string;
2594
+ lineHeightSmall: string;
2595
+ borderRadiusLarge: string;
2596
+ borderRadiusMedium: string;
2597
+ borderRadiusSmall: string;
2094
2598
  color: string;
2599
+ colorHover: string;
2600
+ colorFocus: string;
2601
+ colorActive: string;
2095
2602
  colorChecked: string;
2603
+ colorHoverChecked: string;
2604
+ colorFocusChecked: string;
2605
+ colorActiveChecked: string;
2096
2606
  colorDisabled: string;
2097
2607
  colorDisabledChecked: string;
2098
- colorTableHeader: string;
2099
- colorTableHeaderModal: string;
2100
- colorTableHeaderPopover: string;
2101
2608
  checkMarkColor: string;
2609
+ checkMarkColorHover: string;
2610
+ checkMarkColorFocus: string;
2611
+ checkMarkColorActive: string;
2102
2612
  checkMarkColorDisabled: string;
2103
2613
  checkMarkColorDisabledChecked: string;
2104
2614
  border: string;
2105
- borderDisabled: string;
2106
- borderDisabledChecked: string;
2107
2615
  borderHover: string;
2108
- borderChecked: string;
2109
2616
  borderFocus: string;
2617
+ borderActive: string;
2618
+ borderChecked: string;
2619
+ borderHoverChecked: string;
2620
+ borderFocusChecked: string;
2621
+ borderActiveChecked: string;
2622
+ borderDisabled: string;
2623
+ borderDisabledChecked: string;
2110
2624
  boxShadowHover: string;
2111
2625
  boxShadowFocus: string;
2112
2626
  boxShadowActive: string;
2113
2627
  boxShadowHoverChecked: string;
2114
2628
  boxShadowFocusChecked: string;
2115
2629
  boxShadowActiveChecked: string;
2116
- textColor: string;
2117
2630
  sizeSmall: string;
2118
2631
  sizeMedium: string;
2119
2632
  sizeLarge: string;
2120
2633
  labelPadding: string;
2121
- labelFontWeight: string;
2122
- borderRadiusLarge: string;
2123
- borderRadiusSmall: string;
2124
2634
  }, any>;
2125
2635
  Empty: import("../../_mixins").Theme<"Empty", {
2636
+ iconSizeSmall: string;
2637
+ iconSizeMedium: string;
2638
+ iconSizeLarge: string;
2639
+ iconSizeHuge: string;
2126
2640
  fontSizeSmall: string;
2127
2641
  fontSizeMedium: string;
2128
2642
  fontSizeLarge: string;
@@ -2130,10 +2644,6 @@ declare const _default: import("vue").DefineComponent<{
2130
2644
  textColor: string;
2131
2645
  iconColor: string;
2132
2646
  extraTextColor: string;
2133
- iconSizeSmall: string;
2134
- iconSizeMedium: string;
2135
- iconSizeLarge: string;
2136
- iconSizeHuge: string;
2137
2647
  }, any>;
2138
2648
  }>>;
2139
2649
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -2154,14 +2664,21 @@ declare const _default: import("vue").DefineComponent<{
2154
2664
  columnWidth: string;
2155
2665
  }, {
2156
2666
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2667
+ height: string;
2668
+ paddingSmall: string;
2669
+ paddingMedium: string;
2670
+ paddingLarge: string;
2671
+ optionPaddingSmall: string;
2672
+ optionPaddingMedium: string;
2673
+ optionPaddingLarge: string;
2674
+ loadingSize: string;
2157
2675
  optionFontSizeSmall: string;
2158
2676
  optionFontSizeMedium: string;
2159
2677
  optionFontSizeLarge: string;
2160
- optionFontSizeHuge: string;
2161
2678
  optionHeightSmall: string;
2162
2679
  optionHeightMedium: string;
2163
2680
  optionHeightLarge: string;
2164
- optionHeightHuge: string;
2681
+ optionBorderRadius: string;
2165
2682
  borderRadius: string;
2166
2683
  color: string;
2167
2684
  groupHeaderTextColor: string;
@@ -2178,22 +2695,16 @@ declare const _default: import("vue").DefineComponent<{
2178
2695
  optionColorActivePending: string;
2179
2696
  actionTextColor: string;
2180
2697
  loadingColor: string;
2181
- height: string;
2182
- paddingSmall: string;
2183
- paddingMedium: string;
2184
- paddingLarge: string;
2185
- paddingHuge: string;
2186
- optionPaddingSmall: string;
2187
- optionPaddingMedium: string;
2188
- optionPaddingLarge: string;
2189
- optionPaddingHuge: string;
2190
- loadingSize: string;
2191
2698
  }, {
2192
2699
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2193
2700
  color: string;
2194
2701
  colorHover: string;
2195
2702
  }, any>;
2196
2703
  Empty: import("../../_mixins").Theme<"Empty", {
2704
+ iconSizeSmall: string;
2705
+ iconSizeMedium: string;
2706
+ iconSizeLarge: string;
2707
+ iconSizeHuge: string;
2197
2708
  fontSizeSmall: string;
2198
2709
  fontSizeMedium: string;
2199
2710
  fontSizeLarge: string;
@@ -2201,22 +2712,44 @@ declare const _default: import("vue").DefineComponent<{
2201
2712
  textColor: string;
2202
2713
  iconColor: string;
2203
2714
  extraTextColor: string;
2204
- iconSizeSmall: string;
2205
- iconSizeMedium: string;
2206
- iconSizeLarge: string;
2207
- iconSizeHuge: string;
2208
2715
  }, any>;
2209
2716
  }>;
2210
2717
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2718
+ paddingTiny: string;
2719
+ paddingSmall: string;
2720
+ paddingMedium: string;
2721
+ paddingLarge: string;
2722
+ paddingHuge: string;
2723
+ clearSizeTiny: string;
2724
+ clearSizeSmall: string;
2725
+ clearSizeMedium: string;
2726
+ clearSizeLarge: string;
2727
+ clearSizeHuge: string;
2728
+ arrowSizeTiny: string;
2729
+ arrowSizeSmall: string;
2730
+ arrowSizeMedium: string;
2731
+ arrowSizeLarge: string;
2732
+ arrowSizeHuge: string;
2211
2733
  fontSizeTiny: string;
2212
2734
  fontSizeSmall: string;
2213
2735
  fontSizeMedium: string;
2214
2736
  fontSizeLarge: string;
2737
+ fontSizeHuge: string;
2738
+ lineHeightTiny: string;
2739
+ lineHeightSmall: string;
2740
+ lineHeightMedium: string;
2741
+ lineHeightLarge: string;
2742
+ lineHeightHuge: string;
2215
2743
  heightTiny: string;
2216
2744
  heightSmall: string;
2217
2745
  heightMedium: string;
2218
2746
  heightLarge: string;
2219
- borderRadius: string;
2747
+ heightHuge: string;
2748
+ borderRadiusTiny: string;
2749
+ borderRadiusSmall: string;
2750
+ borderRadiusMedium: string;
2751
+ borderRadiusLarge: string;
2752
+ borderRadiusHuge: string;
2220
2753
  textColor: string;
2221
2754
  textColorDisabled: string;
2222
2755
  placeholderColor: string;
@@ -2258,24 +2791,50 @@ declare const _default: import("vue").DefineComponent<{
2258
2791
  clearColor: string;
2259
2792
  clearColorHover: string;
2260
2793
  clearColorPressed: string;
2261
- paddingSingle: string;
2262
- paddingMultiple: string;
2263
- clearSize: string;
2264
- arrowSize: string;
2794
+ caretColorSecondary: string;
2795
+ filterCounterTextColor: string;
2796
+ filterCounterSeparatorColor: string;
2797
+ filterCounterTextColorDisabled: string;
2798
+ filterCounterSeparatorColorDisabled: string;
2799
+ arrowColorSecondary: string;
2800
+ clearColorSecondary: string;
2801
+ colorSecondary: string;
2802
+ textColorSecondary: string;
2803
+ borderSecondary: string;
2804
+ arrowColorDisabledSecondary: string;
2805
+ clearColorDisabledSecondary: string;
2806
+ colorDisabledSecondary: string;
2807
+ textColorDisabledSecondary: string;
2808
+ borderDisabledSecondary: string;
2809
+ arrowColorHoverSecondary: string;
2810
+ clearColorHoverSecondary: string;
2811
+ colorHoverSecondary: string;
2812
+ textColorHoverSecondary: string;
2813
+ borderHoverSecondary: string;
2814
+ arrowColorFocusSecondary: string;
2815
+ clearColorFocusSecondary: string;
2816
+ colorFocusSecondary: string;
2817
+ textColorFocusSecondary: string;
2818
+ borderFocusSecondary: string;
2819
+ arrowColorActiveSecondary: string;
2820
+ clearColorActiveSecondary: string;
2821
+ colorActiveSecondary: string;
2822
+ textColorActiveSecondary: string;
2823
+ borderActiveSecondary: string;
2265
2824
  }, {
2266
2825
  Popover: import("../../_mixins").Theme<"Popover", {
2267
- fontSize: string;
2268
- borderRadius: string;
2269
- color: string;
2270
- dividerColor: string;
2271
- textColor: string;
2272
- boxShadow: string;
2273
2826
  space: string;
2274
2827
  spaceArrow: string;
2275
2828
  arrowOffset: string;
2276
2829
  arrowOffsetVertical: string;
2277
2830
  arrowHeight: string;
2278
2831
  padding: string;
2832
+ fontSize: string;
2833
+ borderRadius: string;
2834
+ color: string;
2835
+ dividerColor: string;
2836
+ textColor: string;
2837
+ boxShadow: string;
2279
2838
  }, any>;
2280
2839
  }>;
2281
2840
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -2283,42 +2842,62 @@ declare const _default: import("vue").DefineComponent<{
2283
2842
  colorHover: string;
2284
2843
  }, any>;
2285
2844
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2286
- labelLineHeight: string;
2287
- fontSizeSmall: string;
2288
- fontSizeMedium: string;
2845
+ fontWeight: string;
2846
+ textColor: string;
2847
+ descriptionTextColor: string;
2848
+ textColorDisabled: string;
2849
+ descriptionTextColorDisabled: string;
2289
2850
  fontSizeLarge: string;
2851
+ fontSizeMedium: string;
2852
+ fontSizeSmall: string;
2853
+ lineHeightLarge: string;
2854
+ lineHeightMedium: string;
2855
+ lineHeightSmall: string;
2856
+ borderRadiusLarge: string;
2857
+ borderRadiusMedium: string;
2858
+ borderRadiusSmall: string;
2290
2859
  color: string;
2860
+ colorHover: string;
2861
+ colorFocus: string;
2862
+ colorActive: string;
2291
2863
  colorChecked: string;
2864
+ colorHoverChecked: string;
2865
+ colorFocusChecked: string;
2866
+ colorActiveChecked: string;
2292
2867
  colorDisabled: string;
2293
2868
  colorDisabledChecked: string;
2294
- colorTableHeader: string;
2295
- colorTableHeaderModal: string;
2296
- colorTableHeaderPopover: string;
2297
2869
  checkMarkColor: string;
2870
+ checkMarkColorHover: string;
2871
+ checkMarkColorFocus: string;
2872
+ checkMarkColorActive: string;
2298
2873
  checkMarkColorDisabled: string;
2299
2874
  checkMarkColorDisabledChecked: string;
2300
2875
  border: string;
2301
- borderDisabled: string;
2302
- borderDisabledChecked: string;
2303
2876
  borderHover: string;
2304
- borderChecked: string;
2305
2877
  borderFocus: string;
2878
+ borderActive: string;
2879
+ borderChecked: string;
2880
+ borderHoverChecked: string;
2881
+ borderFocusChecked: string;
2882
+ borderActiveChecked: string;
2883
+ borderDisabled: string;
2884
+ borderDisabledChecked: string;
2306
2885
  boxShadowHover: string;
2307
2886
  boxShadowFocus: string;
2308
2887
  boxShadowActive: string;
2309
2888
  boxShadowHoverChecked: string;
2310
2889
  boxShadowFocusChecked: string;
2311
2890
  boxShadowActiveChecked: string;
2312
- textColor: string;
2313
2891
  sizeSmall: string;
2314
2892
  sizeMedium: string;
2315
2893
  sizeLarge: string;
2316
2894
  labelPadding: string;
2317
- labelFontWeight: string;
2318
- borderRadiusLarge: string;
2319
- borderRadiusSmall: string;
2320
2895
  }, any>;
2321
2896
  Empty: import("../../_mixins").Theme<"Empty", {
2897
+ iconSizeSmall: string;
2898
+ iconSizeMedium: string;
2899
+ iconSizeLarge: string;
2900
+ iconSizeHuge: string;
2322
2901
  fontSizeSmall: string;
2323
2902
  fontSizeMedium: string;
2324
2903
  fontSizeLarge: string;
@@ -2326,10 +2905,6 @@ declare const _default: import("vue").DefineComponent<{
2326
2905
  textColor: string;
2327
2906
  iconColor: string;
2328
2907
  extraTextColor: string;
2329
- iconSizeSmall: string;
2330
- iconSizeMedium: string;
2331
- iconSizeLarge: string;
2332
- iconSizeHuge: string;
2333
2908
  }, any>;
2334
2909
  }>>>;
2335
2910
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Cascader", {
@@ -2350,14 +2925,21 @@ declare const _default: import("vue").DefineComponent<{
2350
2925
  columnWidth: string;
2351
2926
  }, {
2352
2927
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2928
+ height: string;
2929
+ paddingSmall: string;
2930
+ paddingMedium: string;
2931
+ paddingLarge: string;
2932
+ optionPaddingSmall: string;
2933
+ optionPaddingMedium: string;
2934
+ optionPaddingLarge: string;
2935
+ loadingSize: string;
2353
2936
  optionFontSizeSmall: string;
2354
2937
  optionFontSizeMedium: string;
2355
2938
  optionFontSizeLarge: string;
2356
- optionFontSizeHuge: string;
2357
2939
  optionHeightSmall: string;
2358
2940
  optionHeightMedium: string;
2359
2941
  optionHeightLarge: string;
2360
- optionHeightHuge: string;
2942
+ optionBorderRadius: string;
2361
2943
  borderRadius: string;
2362
2944
  color: string;
2363
2945
  groupHeaderTextColor: string;
@@ -2374,22 +2956,16 @@ declare const _default: import("vue").DefineComponent<{
2374
2956
  optionColorActivePending: string;
2375
2957
  actionTextColor: string;
2376
2958
  loadingColor: string;
2377
- height: string;
2378
- paddingSmall: string;
2379
- paddingMedium: string;
2380
- paddingLarge: string;
2381
- paddingHuge: string;
2382
- optionPaddingSmall: string;
2383
- optionPaddingMedium: string;
2384
- optionPaddingLarge: string;
2385
- optionPaddingHuge: string;
2386
- loadingSize: string;
2387
2959
  }, {
2388
2960
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2389
2961
  color: string;
2390
2962
  colorHover: string;
2391
2963
  }, any>;
2392
2964
  Empty: import("../../_mixins").Theme<"Empty", {
2965
+ iconSizeSmall: string;
2966
+ iconSizeMedium: string;
2967
+ iconSizeLarge: string;
2968
+ iconSizeHuge: string;
2393
2969
  fontSizeSmall: string;
2394
2970
  fontSizeMedium: string;
2395
2971
  fontSizeLarge: string;
@@ -2397,22 +2973,44 @@ declare const _default: import("vue").DefineComponent<{
2397
2973
  textColor: string;
2398
2974
  iconColor: string;
2399
2975
  extraTextColor: string;
2400
- iconSizeSmall: string;
2401
- iconSizeMedium: string;
2402
- iconSizeLarge: string;
2403
- iconSizeHuge: string;
2404
2976
  }, any>;
2405
2977
  }>;
2406
2978
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2979
+ paddingTiny: string;
2980
+ paddingSmall: string;
2981
+ paddingMedium: string;
2982
+ paddingLarge: string;
2983
+ paddingHuge: string;
2984
+ clearSizeTiny: string;
2985
+ clearSizeSmall: string;
2986
+ clearSizeMedium: string;
2987
+ clearSizeLarge: string;
2988
+ clearSizeHuge: string;
2989
+ arrowSizeTiny: string;
2990
+ arrowSizeSmall: string;
2991
+ arrowSizeMedium: string;
2992
+ arrowSizeLarge: string;
2993
+ arrowSizeHuge: string;
2407
2994
  fontSizeTiny: string;
2408
2995
  fontSizeSmall: string;
2409
2996
  fontSizeMedium: string;
2410
2997
  fontSizeLarge: string;
2998
+ fontSizeHuge: string;
2999
+ lineHeightTiny: string;
3000
+ lineHeightSmall: string;
3001
+ lineHeightMedium: string;
3002
+ lineHeightLarge: string;
3003
+ lineHeightHuge: string;
2411
3004
  heightTiny: string;
2412
3005
  heightSmall: string;
2413
3006
  heightMedium: string;
2414
3007
  heightLarge: string;
2415
- borderRadius: string;
3008
+ heightHuge: string;
3009
+ borderRadiusTiny: string;
3010
+ borderRadiusSmall: string;
3011
+ borderRadiusMedium: string;
3012
+ borderRadiusLarge: string;
3013
+ borderRadiusHuge: string;
2416
3014
  textColor: string;
2417
3015
  textColorDisabled: string;
2418
3016
  placeholderColor: string;
@@ -2454,24 +3052,50 @@ declare const _default: import("vue").DefineComponent<{
2454
3052
  clearColor: string;
2455
3053
  clearColorHover: string;
2456
3054
  clearColorPressed: string;
2457
- paddingSingle: string;
2458
- paddingMultiple: string;
2459
- clearSize: string;
2460
- arrowSize: string;
3055
+ caretColorSecondary: string;
3056
+ filterCounterTextColor: string;
3057
+ filterCounterSeparatorColor: string;
3058
+ filterCounterTextColorDisabled: string;
3059
+ filterCounterSeparatorColorDisabled: string;
3060
+ arrowColorSecondary: string;
3061
+ clearColorSecondary: string;
3062
+ colorSecondary: string;
3063
+ textColorSecondary: string;
3064
+ borderSecondary: string;
3065
+ arrowColorDisabledSecondary: string;
3066
+ clearColorDisabledSecondary: string;
3067
+ colorDisabledSecondary: string;
3068
+ textColorDisabledSecondary: string;
3069
+ borderDisabledSecondary: string;
3070
+ arrowColorHoverSecondary: string;
3071
+ clearColorHoverSecondary: string;
3072
+ colorHoverSecondary: string;
3073
+ textColorHoverSecondary: string;
3074
+ borderHoverSecondary: string;
3075
+ arrowColorFocusSecondary: string;
3076
+ clearColorFocusSecondary: string;
3077
+ colorFocusSecondary: string;
3078
+ textColorFocusSecondary: string;
3079
+ borderFocusSecondary: string;
3080
+ arrowColorActiveSecondary: string;
3081
+ clearColorActiveSecondary: string;
3082
+ colorActiveSecondary: string;
3083
+ textColorActiveSecondary: string;
3084
+ borderActiveSecondary: string;
2461
3085
  }, {
2462
3086
  Popover: import("../../_mixins").Theme<"Popover", {
2463
- fontSize: string;
2464
- borderRadius: string;
2465
- color: string;
2466
- dividerColor: string;
2467
- textColor: string;
2468
- boxShadow: string;
2469
3087
  space: string;
2470
3088
  spaceArrow: string;
2471
3089
  arrowOffset: string;
2472
3090
  arrowOffsetVertical: string;
2473
3091
  arrowHeight: string;
2474
3092
  padding: string;
3093
+ fontSize: string;
3094
+ borderRadius: string;
3095
+ color: string;
3096
+ dividerColor: string;
3097
+ textColor: string;
3098
+ boxShadow: string;
2475
3099
  }, any>;
2476
3100
  }>;
2477
3101
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
@@ -2479,42 +3103,62 @@ declare const _default: import("vue").DefineComponent<{
2479
3103
  colorHover: string;
2480
3104
  }, any>;
2481
3105
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2482
- labelLineHeight: string;
2483
- fontSizeSmall: string;
2484
- fontSizeMedium: string;
3106
+ fontWeight: string;
3107
+ textColor: string;
3108
+ descriptionTextColor: string;
3109
+ textColorDisabled: string;
3110
+ descriptionTextColorDisabled: string;
2485
3111
  fontSizeLarge: string;
3112
+ fontSizeMedium: string;
3113
+ fontSizeSmall: string;
3114
+ lineHeightLarge: string;
3115
+ lineHeightMedium: string;
3116
+ lineHeightSmall: string;
3117
+ borderRadiusLarge: string;
3118
+ borderRadiusMedium: string;
3119
+ borderRadiusSmall: string;
2486
3120
  color: string;
3121
+ colorHover: string;
3122
+ colorFocus: string;
3123
+ colorActive: string;
2487
3124
  colorChecked: string;
3125
+ colorHoverChecked: string;
3126
+ colorFocusChecked: string;
3127
+ colorActiveChecked: string;
2488
3128
  colorDisabled: string;
2489
3129
  colorDisabledChecked: string;
2490
- colorTableHeader: string;
2491
- colorTableHeaderModal: string;
2492
- colorTableHeaderPopover: string;
2493
3130
  checkMarkColor: string;
3131
+ checkMarkColorHover: string;
3132
+ checkMarkColorFocus: string;
3133
+ checkMarkColorActive: string;
2494
3134
  checkMarkColorDisabled: string;
2495
3135
  checkMarkColorDisabledChecked: string;
2496
3136
  border: string;
2497
- borderDisabled: string;
2498
- borderDisabledChecked: string;
2499
3137
  borderHover: string;
2500
- borderChecked: string;
2501
3138
  borderFocus: string;
3139
+ borderActive: string;
3140
+ borderChecked: string;
3141
+ borderHoverChecked: string;
3142
+ borderFocusChecked: string;
3143
+ borderActiveChecked: string;
3144
+ borderDisabled: string;
3145
+ borderDisabledChecked: string;
2502
3146
  boxShadowHover: string;
2503
3147
  boxShadowFocus: string;
2504
3148
  boxShadowActive: string;
2505
3149
  boxShadowHoverChecked: string;
2506
3150
  boxShadowFocusChecked: string;
2507
3151
  boxShadowActiveChecked: string;
2508
- textColor: string;
2509
3152
  sizeSmall: string;
2510
3153
  sizeMedium: string;
2511
3154
  sizeLarge: string;
2512
3155
  labelPadding: string;
2513
- labelFontWeight: string;
2514
- borderRadiusLarge: string;
2515
- borderRadiusSmall: string;
2516
3156
  }, any>;
2517
3157
  Empty: import("../../_mixins").Theme<"Empty", {
3158
+ iconSizeSmall: string;
3159
+ iconSizeMedium: string;
3160
+ iconSizeLarge: string;
3161
+ iconSizeHuge: string;
2518
3162
  fontSizeSmall: string;
2519
3163
  fontSizeMedium: string;
2520
3164
  fontSizeLarge: string;
@@ -2522,10 +3166,6 @@ declare const _default: import("vue").DefineComponent<{
2522
3166
  textColor: string;
2523
3167
  iconColor: string;
2524
3168
  extraTextColor: string;
2525
- iconSizeSmall: string;
2526
- iconSizeMedium: string;
2527
- iconSizeLarge: string;
2528
- iconSizeHuge: string;
2529
3169
  }, any>;
2530
3170
  }>>>;
2531
3171
  }>>, {
@@ -2542,8 +3182,8 @@ declare const _default: import("vue").DefineComponent<{
2542
3182
  readonly valueField: string;
2543
3183
  readonly filterable: boolean;
2544
3184
  readonly clearable: boolean;
2545
- readonly clearFilterAfterSelect: boolean;
2546
3185
  readonly defaultValue: Value | null;
3186
+ readonly clearFilterAfterSelect: boolean;
2547
3187
  readonly remote: boolean;
2548
3188
  readonly childrenField: string;
2549
3189
  readonly expandTrigger: ExpandTrigger;