@uzum-tech/ui 0.1.2 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1214) hide show
  1. package/README.md +0 -10
  2. package/dist/index.js +6595 -6298
  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
@@ -2,8 +2,8 @@ import { type PropType } from 'vue';
2
2
  import type { SelectProps } from '../../select';
3
3
  import type { PageItem } from './utils';
4
4
  import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
5
- import type { Size as InputSize } from '../../input/src/interface';
6
- import type { Size as SelectSize } from '../../select/src/interface';
5
+ import type { InputSize } from '../../input';
6
+ import type { SelectSize } from '../../_internal/selection';
7
7
  import type { PaginationRenderLabel, PaginationSizeOption, RenderGoto, RenderPrefix, Size } from './interface';
8
8
  export declare const paginationProps: {
9
9
  readonly simple: BooleanConstructor;
@@ -60,6 +60,39 @@ export declare const paginationProps: {
60
60
  /** @deprecated */
61
61
  readonly onChange: PropType<MaybeArray<(page: number) => void>>;
62
62
  readonly theme: PropType<import("../../_mixins").Theme<"Pagination", {
63
+ itemPaddingSmall: string;
64
+ itemMarginSmall: string;
65
+ itemMarginSmallRtl: string;
66
+ itemPaddingMedium: string;
67
+ itemMarginMedium: string;
68
+ itemMarginMediumRtl: string;
69
+ itemPaddingLarge: string;
70
+ itemMarginLarge: string;
71
+ itemMarginLargeRtl: string;
72
+ buttonIconSizeSmall: string;
73
+ buttonIconSizeMedium: string;
74
+ buttonIconSizeLarge: string;
75
+ inputWidthSmall: string;
76
+ selectWidthSmall: string;
77
+ inputMarginSmall: string;
78
+ inputMarginSmallRtl: string;
79
+ selectMarginSmall: string;
80
+ prefixMarginSmall: string;
81
+ suffixMarginSmall: string;
82
+ inputWidthMedium: string;
83
+ selectWidthMedium: string;
84
+ inputMarginMedium: string;
85
+ inputMarginMediumRtl: string;
86
+ selectMarginMedium: string;
87
+ prefixMarginMedium: string;
88
+ suffixMarginMedium: string;
89
+ inputWidthLarge: string;
90
+ selectWidthLarge: string;
91
+ inputMarginLarge: string;
92
+ inputMarginLargeRtl: string;
93
+ selectMarginLarge: string;
94
+ prefixMarginLarge: string;
95
+ suffixMarginLarge: string;
63
96
  buttonColor: string;
64
97
  buttonColorHover: string;
65
98
  buttonColorPressed: string;
@@ -97,53 +130,46 @@ export declare const paginationProps: {
97
130
  jumperFontSizeLarge: string;
98
131
  jumperTextColor: string;
99
132
  jumperTextColorDisabled: string;
100
- itemPaddingSmall: string;
101
- itemMarginSmall: string;
102
- itemMarginSmallRtl: string;
103
- itemPaddingMedium: string;
104
- itemMarginMedium: string;
105
- itemMarginMediumRtl: string;
106
- itemPaddingLarge: string;
107
- itemMarginLarge: string;
108
- itemMarginLargeRtl: string;
109
- buttonIconSizeSmall: string;
110
- buttonIconSizeMedium: string;
111
- buttonIconSizeLarge: string;
112
- inputWidthSmall: string;
113
- selectWidthSmall: string;
114
- inputMarginSmall: string;
115
- inputMarginSmallRtl: string;
116
- selectMarginSmall: string;
117
- prefixMarginSmall: string;
118
- suffixMarginSmall: string;
119
- inputWidthMedium: string;
120
- selectWidthMedium: string;
121
- inputMarginMedium: string;
122
- inputMarginMediumRtl: string;
123
- selectMarginMedium: string;
124
- prefixMarginMedium: string;
125
- suffixMarginMedium: string;
126
- inputWidthLarge: string;
127
- selectWidthLarge: string;
128
- inputMarginLarge: string;
129
- inputMarginLargeRtl: string;
130
- selectMarginLarge: string;
131
- prefixMarginLarge: string;
132
- suffixMarginLarge: string;
133
133
  }, {
134
134
  Select: import("../../_mixins").Theme<"Select", {
135
135
  menuBoxShadow: string;
136
136
  }, {
137
137
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
138
+ paddingTiny: string;
139
+ paddingSmall: string;
140
+ paddingMedium: string;
141
+ paddingLarge: string;
142
+ paddingHuge: string;
143
+ clearSizeTiny: string;
144
+ clearSizeSmall: string;
145
+ clearSizeMedium: string;
146
+ clearSizeLarge: string;
147
+ clearSizeHuge: string;
148
+ arrowSizeTiny: string;
149
+ arrowSizeSmall: string;
150
+ arrowSizeMedium: string;
151
+ arrowSizeLarge: string;
152
+ arrowSizeHuge: string;
138
153
  fontSizeTiny: string;
139
154
  fontSizeSmall: string;
140
155
  fontSizeMedium: string;
141
156
  fontSizeLarge: string;
157
+ fontSizeHuge: string;
158
+ lineHeightTiny: string;
159
+ lineHeightSmall: string;
160
+ lineHeightMedium: string;
161
+ lineHeightLarge: string;
162
+ lineHeightHuge: string;
142
163
  heightTiny: string;
143
164
  heightSmall: string;
144
165
  heightMedium: string;
145
166
  heightLarge: string;
146
- borderRadius: string;
167
+ heightHuge: string;
168
+ borderRadiusTiny: string;
169
+ borderRadiusSmall: string;
170
+ borderRadiusMedium: string;
171
+ borderRadiusLarge: string;
172
+ borderRadiusHuge: string;
147
173
  textColor: string;
148
174
  textColorDisabled: string;
149
175
  placeholderColor: string;
@@ -185,35 +211,68 @@ export declare const paginationProps: {
185
211
  clearColor: string;
186
212
  clearColorHover: string;
187
213
  clearColorPressed: string;
188
- paddingSingle: string;
189
- paddingMultiple: string;
190
- clearSize: string;
191
- arrowSize: string;
214
+ caretColorSecondary: string;
215
+ filterCounterTextColor: string;
216
+ filterCounterSeparatorColor: string;
217
+ filterCounterTextColorDisabled: string;
218
+ filterCounterSeparatorColorDisabled: string;
219
+ arrowColorSecondary: string;
220
+ clearColorSecondary: string;
221
+ colorSecondary: string;
222
+ textColorSecondary: string;
223
+ borderSecondary: string;
224
+ arrowColorDisabledSecondary: string;
225
+ clearColorDisabledSecondary: string;
226
+ colorDisabledSecondary: string;
227
+ textColorDisabledSecondary: string;
228
+ borderDisabledSecondary: string;
229
+ arrowColorHoverSecondary: string;
230
+ clearColorHoverSecondary: string;
231
+ colorHoverSecondary: string;
232
+ textColorHoverSecondary: string;
233
+ borderHoverSecondary: string;
234
+ arrowColorFocusSecondary: string;
235
+ clearColorFocusSecondary: string;
236
+ colorFocusSecondary: string;
237
+ textColorFocusSecondary: string;
238
+ borderFocusSecondary: string;
239
+ arrowColorActiveSecondary: string;
240
+ clearColorActiveSecondary: string;
241
+ colorActiveSecondary: string;
242
+ textColorActiveSecondary: string;
243
+ borderActiveSecondary: string;
192
244
  }, {
193
245
  Popover: import("../../_mixins").Theme<"Popover", {
194
- fontSize: string;
195
- borderRadius: string;
196
- color: string;
197
- dividerColor: string;
198
- textColor: string;
199
- boxShadow: string;
200
246
  space: string;
201
247
  spaceArrow: string;
202
248
  arrowOffset: string;
203
249
  arrowOffsetVertical: string;
204
250
  arrowHeight: string;
205
251
  padding: string;
252
+ fontSize: string;
253
+ borderRadius: string;
254
+ color: string;
255
+ dividerColor: string;
256
+ textColor: string;
257
+ boxShadow: string;
206
258
  }, any>;
207
259
  }>;
208
260
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
261
+ height: string;
262
+ paddingSmall: string;
263
+ paddingMedium: string;
264
+ paddingLarge: string;
265
+ optionPaddingSmall: string;
266
+ optionPaddingMedium: string;
267
+ optionPaddingLarge: string;
268
+ loadingSize: string;
209
269
  optionFontSizeSmall: string;
210
270
  optionFontSizeMedium: string;
211
271
  optionFontSizeLarge: string;
212
- optionFontSizeHuge: string;
213
272
  optionHeightSmall: string;
214
273
  optionHeightMedium: string;
215
274
  optionHeightLarge: string;
216
- optionHeightHuge: string;
275
+ optionBorderRadius: string;
217
276
  borderRadius: string;
218
277
  color: string;
219
278
  groupHeaderTextColor: string;
@@ -230,22 +289,16 @@ export declare const paginationProps: {
230
289
  optionColorActivePending: string;
231
290
  actionTextColor: string;
232
291
  loadingColor: string;
233
- height: string;
234
- paddingSmall: string;
235
- paddingMedium: string;
236
- paddingLarge: string;
237
- paddingHuge: string;
238
- optionPaddingSmall: string;
239
- optionPaddingMedium: string;
240
- optionPaddingLarge: string;
241
- optionPaddingHuge: string;
242
- loadingSize: string;
243
292
  }, {
244
293
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
245
294
  color: string;
246
295
  colorHover: string;
247
296
  }, any>;
248
297
  Empty: import("../../_mixins").Theme<"Empty", {
298
+ iconSizeSmall: string;
299
+ iconSizeMedium: string;
300
+ iconSizeLarge: string;
301
+ iconSizeHuge: string;
249
302
  fontSizeSmall: string;
250
303
  fontSizeMedium: string;
251
304
  fontSizeLarge: string;
@@ -253,29 +306,32 @@ export declare const paginationProps: {
253
306
  textColor: string;
254
307
  iconColor: string;
255
308
  extraTextColor: string;
256
- iconSizeSmall: string;
257
- iconSizeMedium: string;
258
- iconSizeLarge: string;
259
- iconSizeHuge: string;
260
309
  }, any>;
261
310
  }>;
262
311
  }>;
263
312
  Input: import("../../_mixins").Theme<"Input", {
313
+ paddingTiny: string;
314
+ paddingSmall: string;
315
+ paddingMedium: string;
316
+ paddingLarge: string;
317
+ paddingHuge: string;
318
+ clearSize: string;
264
319
  countTextColorDisabled: string;
265
320
  countTextColor: string;
266
321
  heightTiny: string;
267
322
  heightSmall: string;
268
323
  heightMedium: string;
269
324
  heightLarge: string;
325
+ heightHuge: string;
270
326
  fontSizeTiny: string;
271
327
  fontSizeSmall: string;
272
328
  fontSizeMedium: string;
273
329
  fontSizeLarge: string;
330
+ fontSizeHuge: string;
274
331
  lineHeight: string;
275
332
  lineHeightTextarea: string;
276
333
  borderRadius: string;
277
334
  iconSize: string;
278
- groupLabelColor: string;
279
335
  groupLabelTextColor: string;
280
336
  textColor: string;
281
337
  textColorDisabled: string;
@@ -315,38 +371,41 @@ export declare const paginationProps: {
315
371
  iconColorHover: string;
316
372
  iconColorPressed: string;
317
373
  suffixTextColor: string;
318
- paddingTiny: string;
319
- paddingSmall: string;
320
- paddingMedium: string;
321
- paddingLarge: string;
322
- clearSize: string;
374
+ selectionColor: string;
323
375
  }, any>;
324
376
  Popselect: import("../../_mixins").Theme<"Popselect", {
325
377
  menuBoxShadow: string;
326
378
  }, {
327
379
  Popover: import("../../_mixins").Theme<"Popover", {
328
- fontSize: string;
329
- borderRadius: string;
330
- color: string;
331
- dividerColor: string;
332
- textColor: string;
333
- boxShadow: string;
334
380
  space: string;
335
381
  spaceArrow: string;
336
382
  arrowOffset: string;
337
383
  arrowOffsetVertical: string;
338
384
  arrowHeight: string;
339
385
  padding: string;
386
+ fontSize: string;
387
+ borderRadius: string;
388
+ color: string;
389
+ dividerColor: string;
390
+ textColor: string;
391
+ boxShadow: string;
340
392
  }, any>;
341
393
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
394
+ height: string;
395
+ paddingSmall: string;
396
+ paddingMedium: string;
397
+ paddingLarge: string;
398
+ optionPaddingSmall: string;
399
+ optionPaddingMedium: string;
400
+ optionPaddingLarge: string;
401
+ loadingSize: string;
342
402
  optionFontSizeSmall: string;
343
403
  optionFontSizeMedium: string;
344
404
  optionFontSizeLarge: string;
345
- optionFontSizeHuge: string;
346
405
  optionHeightSmall: string;
347
406
  optionHeightMedium: string;
348
407
  optionHeightLarge: string;
349
- optionHeightHuge: string;
408
+ optionBorderRadius: string;
350
409
  borderRadius: string;
351
410
  color: string;
352
411
  groupHeaderTextColor: string;
@@ -363,22 +422,16 @@ export declare const paginationProps: {
363
422
  optionColorActivePending: string;
364
423
  actionTextColor: string;
365
424
  loadingColor: string;
366
- height: string;
367
- paddingSmall: string;
368
- paddingMedium: string;
369
- paddingLarge: string;
370
- paddingHuge: string;
371
- optionPaddingSmall: string;
372
- optionPaddingMedium: string;
373
- optionPaddingLarge: string;
374
- optionPaddingHuge: string;
375
- loadingSize: string;
376
425
  }, {
377
426
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
378
427
  color: string;
379
428
  colorHover: string;
380
429
  }, any>;
381
430
  Empty: import("../../_mixins").Theme<"Empty", {
431
+ iconSizeSmall: string;
432
+ iconSizeMedium: string;
433
+ iconSizeLarge: string;
434
+ iconSizeHuge: string;
382
435
  fontSizeSmall: string;
383
436
  fontSizeMedium: string;
384
437
  fontSizeLarge: string;
@@ -386,15 +439,44 @@ export declare const paginationProps: {
386
439
  textColor: string;
387
440
  iconColor: string;
388
441
  extraTextColor: string;
389
- iconSizeSmall: string;
390
- iconSizeMedium: string;
391
- iconSizeLarge: string;
392
- iconSizeHuge: string;
393
442
  }, any>;
394
443
  }>;
395
444
  }>;
396
445
  }>>;
397
446
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
447
+ itemPaddingSmall: string;
448
+ itemMarginSmall: string;
449
+ itemMarginSmallRtl: string;
450
+ itemPaddingMedium: string;
451
+ itemMarginMedium: string;
452
+ itemMarginMediumRtl: string;
453
+ itemPaddingLarge: string;
454
+ itemMarginLarge: string;
455
+ itemMarginLargeRtl: string;
456
+ buttonIconSizeSmall: string;
457
+ buttonIconSizeMedium: string;
458
+ buttonIconSizeLarge: string;
459
+ inputWidthSmall: string;
460
+ selectWidthSmall: string;
461
+ inputMarginSmall: string;
462
+ inputMarginSmallRtl: string;
463
+ selectMarginSmall: string;
464
+ prefixMarginSmall: string;
465
+ suffixMarginSmall: string;
466
+ inputWidthMedium: string;
467
+ selectWidthMedium: string;
468
+ inputMarginMedium: string;
469
+ inputMarginMediumRtl: string;
470
+ selectMarginMedium: string;
471
+ prefixMarginMedium: string;
472
+ suffixMarginMedium: string;
473
+ inputWidthLarge: string;
474
+ selectWidthLarge: string;
475
+ inputMarginLarge: string;
476
+ inputMarginLargeRtl: string;
477
+ selectMarginLarge: string;
478
+ prefixMarginLarge: string;
479
+ suffixMarginLarge: string;
398
480
  buttonColor: string;
399
481
  buttonColorHover: string;
400
482
  buttonColorPressed: string;
@@ -432,53 +514,46 @@ export declare const paginationProps: {
432
514
  jumperFontSizeLarge: string;
433
515
  jumperTextColor: string;
434
516
  jumperTextColorDisabled: string;
435
- itemPaddingSmall: string;
436
- itemMarginSmall: string;
437
- itemMarginSmallRtl: string;
438
- itemPaddingMedium: string;
439
- itemMarginMedium: string;
440
- itemMarginMediumRtl: string;
441
- itemPaddingLarge: string;
442
- itemMarginLarge: string;
443
- itemMarginLargeRtl: string;
444
- buttonIconSizeSmall: string;
445
- buttonIconSizeMedium: string;
446
- buttonIconSizeLarge: string;
447
- inputWidthSmall: string;
448
- selectWidthSmall: string;
449
- inputMarginSmall: string;
450
- inputMarginSmallRtl: string;
451
- selectMarginSmall: string;
452
- prefixMarginSmall: string;
453
- suffixMarginSmall: string;
454
- inputWidthMedium: string;
455
- selectWidthMedium: string;
456
- inputMarginMedium: string;
457
- inputMarginMediumRtl: string;
458
- selectMarginMedium: string;
459
- prefixMarginMedium: string;
460
- suffixMarginMedium: string;
461
- inputWidthLarge: string;
462
- selectWidthLarge: string;
463
- inputMarginLarge: string;
464
- inputMarginLargeRtl: string;
465
- selectMarginLarge: string;
466
- prefixMarginLarge: string;
467
- suffixMarginLarge: string;
468
517
  }, {
469
518
  Select: import("../../_mixins").Theme<"Select", {
470
519
  menuBoxShadow: string;
471
520
  }, {
472
521
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
522
+ paddingTiny: string;
523
+ paddingSmall: string;
524
+ paddingMedium: string;
525
+ paddingLarge: string;
526
+ paddingHuge: string;
527
+ clearSizeTiny: string;
528
+ clearSizeSmall: string;
529
+ clearSizeMedium: string;
530
+ clearSizeLarge: string;
531
+ clearSizeHuge: string;
532
+ arrowSizeTiny: string;
533
+ arrowSizeSmall: string;
534
+ arrowSizeMedium: string;
535
+ arrowSizeLarge: string;
536
+ arrowSizeHuge: string;
473
537
  fontSizeTiny: string;
474
538
  fontSizeSmall: string;
475
539
  fontSizeMedium: string;
476
540
  fontSizeLarge: string;
541
+ fontSizeHuge: string;
542
+ lineHeightTiny: string;
543
+ lineHeightSmall: string;
544
+ lineHeightMedium: string;
545
+ lineHeightLarge: string;
546
+ lineHeightHuge: string;
477
547
  heightTiny: string;
478
548
  heightSmall: string;
479
549
  heightMedium: string;
480
550
  heightLarge: string;
481
- borderRadius: string;
551
+ heightHuge: string;
552
+ borderRadiusTiny: string;
553
+ borderRadiusSmall: string;
554
+ borderRadiusMedium: string;
555
+ borderRadiusLarge: string;
556
+ borderRadiusHuge: string;
482
557
  textColor: string;
483
558
  textColorDisabled: string;
484
559
  placeholderColor: string;
@@ -520,35 +595,68 @@ export declare const paginationProps: {
520
595
  clearColor: string;
521
596
  clearColorHover: string;
522
597
  clearColorPressed: string;
523
- paddingSingle: string;
524
- paddingMultiple: string;
525
- clearSize: string;
526
- arrowSize: string;
598
+ caretColorSecondary: string;
599
+ filterCounterTextColor: string;
600
+ filterCounterSeparatorColor: string;
601
+ filterCounterTextColorDisabled: string;
602
+ filterCounterSeparatorColorDisabled: string;
603
+ arrowColorSecondary: string;
604
+ clearColorSecondary: string;
605
+ colorSecondary: string;
606
+ textColorSecondary: string;
607
+ borderSecondary: string;
608
+ arrowColorDisabledSecondary: string;
609
+ clearColorDisabledSecondary: string;
610
+ colorDisabledSecondary: string;
611
+ textColorDisabledSecondary: string;
612
+ borderDisabledSecondary: string;
613
+ arrowColorHoverSecondary: string;
614
+ clearColorHoverSecondary: string;
615
+ colorHoverSecondary: string;
616
+ textColorHoverSecondary: string;
617
+ borderHoverSecondary: string;
618
+ arrowColorFocusSecondary: string;
619
+ clearColorFocusSecondary: string;
620
+ colorFocusSecondary: string;
621
+ textColorFocusSecondary: string;
622
+ borderFocusSecondary: string;
623
+ arrowColorActiveSecondary: string;
624
+ clearColorActiveSecondary: string;
625
+ colorActiveSecondary: string;
626
+ textColorActiveSecondary: string;
627
+ borderActiveSecondary: string;
527
628
  }, {
528
629
  Popover: import("../../_mixins").Theme<"Popover", {
529
- fontSize: string;
530
- borderRadius: string;
531
- color: string;
532
- dividerColor: string;
533
- textColor: string;
534
- boxShadow: string;
535
630
  space: string;
536
631
  spaceArrow: string;
537
632
  arrowOffset: string;
538
633
  arrowOffsetVertical: string;
539
634
  arrowHeight: string;
540
635
  padding: string;
636
+ fontSize: string;
637
+ borderRadius: string;
638
+ color: string;
639
+ dividerColor: string;
640
+ textColor: string;
641
+ boxShadow: string;
541
642
  }, any>;
542
643
  }>;
543
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;
544
653
  optionFontSizeSmall: string;
545
654
  optionFontSizeMedium: string;
546
655
  optionFontSizeLarge: string;
547
- optionFontSizeHuge: string;
548
656
  optionHeightSmall: string;
549
657
  optionHeightMedium: string;
550
658
  optionHeightLarge: string;
551
- optionHeightHuge: string;
659
+ optionBorderRadius: string;
552
660
  borderRadius: string;
553
661
  color: string;
554
662
  groupHeaderTextColor: string;
@@ -565,22 +673,16 @@ export declare const paginationProps: {
565
673
  optionColorActivePending: string;
566
674
  actionTextColor: string;
567
675
  loadingColor: string;
568
- height: string;
569
- paddingSmall: string;
570
- paddingMedium: string;
571
- paddingLarge: string;
572
- paddingHuge: string;
573
- optionPaddingSmall: string;
574
- optionPaddingMedium: string;
575
- optionPaddingLarge: string;
576
- optionPaddingHuge: string;
577
- loadingSize: string;
578
676
  }, {
579
677
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
580
678
  color: string;
581
679
  colorHover: string;
582
680
  }, any>;
583
681
  Empty: import("../../_mixins").Theme<"Empty", {
682
+ iconSizeSmall: string;
683
+ iconSizeMedium: string;
684
+ iconSizeLarge: string;
685
+ iconSizeHuge: string;
584
686
  fontSizeSmall: string;
585
687
  fontSizeMedium: string;
586
688
  fontSizeLarge: string;
@@ -588,29 +690,32 @@ export declare const paginationProps: {
588
690
  textColor: string;
589
691
  iconColor: string;
590
692
  extraTextColor: string;
591
- iconSizeSmall: string;
592
- iconSizeMedium: string;
593
- iconSizeLarge: string;
594
- iconSizeHuge: string;
595
693
  }, any>;
596
694
  }>;
597
695
  }>;
598
696
  Input: import("../../_mixins").Theme<"Input", {
697
+ paddingTiny: string;
698
+ paddingSmall: string;
699
+ paddingMedium: string;
700
+ paddingLarge: string;
701
+ paddingHuge: string;
702
+ clearSize: string;
599
703
  countTextColorDisabled: string;
600
704
  countTextColor: string;
601
705
  heightTiny: string;
602
706
  heightSmall: string;
603
707
  heightMedium: string;
604
708
  heightLarge: string;
709
+ heightHuge: string;
605
710
  fontSizeTiny: string;
606
711
  fontSizeSmall: string;
607
712
  fontSizeMedium: string;
608
713
  fontSizeLarge: string;
714
+ fontSizeHuge: string;
609
715
  lineHeight: string;
610
716
  lineHeightTextarea: string;
611
717
  borderRadius: string;
612
718
  iconSize: string;
613
- groupLabelColor: string;
614
719
  groupLabelTextColor: string;
615
720
  textColor: string;
616
721
  textColorDisabled: string;
@@ -650,38 +755,41 @@ export declare const paginationProps: {
650
755
  iconColorHover: string;
651
756
  iconColorPressed: string;
652
757
  suffixTextColor: string;
653
- paddingTiny: string;
654
- paddingSmall: string;
655
- paddingMedium: string;
656
- paddingLarge: string;
657
- clearSize: string;
758
+ selectionColor: string;
658
759
  }, any>;
659
760
  Popselect: import("../../_mixins").Theme<"Popselect", {
660
761
  menuBoxShadow: string;
661
762
  }, {
662
763
  Popover: import("../../_mixins").Theme<"Popover", {
663
- fontSize: string;
664
- borderRadius: string;
665
- color: string;
666
- dividerColor: string;
667
- textColor: string;
668
- boxShadow: string;
669
764
  space: string;
670
765
  spaceArrow: string;
671
766
  arrowOffset: string;
672
767
  arrowOffsetVertical: string;
673
768
  arrowHeight: string;
674
769
  padding: string;
770
+ fontSize: string;
771
+ borderRadius: string;
772
+ color: string;
773
+ dividerColor: string;
774
+ textColor: string;
775
+ boxShadow: string;
675
776
  }, any>;
676
777
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
778
+ height: string;
779
+ paddingSmall: string;
780
+ paddingMedium: string;
781
+ paddingLarge: string;
782
+ optionPaddingSmall: string;
783
+ optionPaddingMedium: string;
784
+ optionPaddingLarge: string;
785
+ loadingSize: string;
677
786
  optionFontSizeSmall: string;
678
787
  optionFontSizeMedium: string;
679
788
  optionFontSizeLarge: string;
680
- optionFontSizeHuge: string;
681
789
  optionHeightSmall: string;
682
790
  optionHeightMedium: string;
683
791
  optionHeightLarge: string;
684
- optionHeightHuge: string;
792
+ optionBorderRadius: string;
685
793
  borderRadius: string;
686
794
  color: string;
687
795
  groupHeaderTextColor: string;
@@ -698,22 +806,16 @@ export declare const paginationProps: {
698
806
  optionColorActivePending: string;
699
807
  actionTextColor: string;
700
808
  loadingColor: string;
701
- height: string;
702
- paddingSmall: string;
703
- paddingMedium: string;
704
- paddingLarge: string;
705
- paddingHuge: string;
706
- optionPaddingSmall: string;
707
- optionPaddingMedium: string;
708
- optionPaddingLarge: string;
709
- optionPaddingHuge: string;
710
- loadingSize: string;
711
809
  }, {
712
810
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
713
811
  color: string;
714
812
  colorHover: string;
715
813
  }, any>;
716
814
  Empty: import("../../_mixins").Theme<"Empty", {
815
+ iconSizeSmall: string;
816
+ iconSizeMedium: string;
817
+ iconSizeLarge: string;
818
+ iconSizeHuge: string;
717
819
  fontSizeSmall: string;
718
820
  fontSizeMedium: string;
719
821
  fontSizeLarge: string;
@@ -721,15 +823,44 @@ export declare const paginationProps: {
721
823
  textColor: string;
722
824
  iconColor: string;
723
825
  extraTextColor: string;
724
- iconSizeSmall: string;
725
- iconSizeMedium: string;
726
- iconSizeLarge: string;
727
- iconSizeHuge: string;
728
826
  }, any>;
729
827
  }>;
730
828
  }>;
731
829
  }>>>;
732
830
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
831
+ itemPaddingSmall: string;
832
+ itemMarginSmall: string;
833
+ itemMarginSmallRtl: string;
834
+ itemPaddingMedium: string;
835
+ itemMarginMedium: string;
836
+ itemMarginMediumRtl: string;
837
+ itemPaddingLarge: string;
838
+ itemMarginLarge: string;
839
+ itemMarginLargeRtl: string;
840
+ buttonIconSizeSmall: string;
841
+ buttonIconSizeMedium: string;
842
+ buttonIconSizeLarge: string;
843
+ inputWidthSmall: string;
844
+ selectWidthSmall: string;
845
+ inputMarginSmall: string;
846
+ inputMarginSmallRtl: string;
847
+ selectMarginSmall: string;
848
+ prefixMarginSmall: string;
849
+ suffixMarginSmall: string;
850
+ inputWidthMedium: string;
851
+ selectWidthMedium: string;
852
+ inputMarginMedium: string;
853
+ inputMarginMediumRtl: string;
854
+ selectMarginMedium: string;
855
+ prefixMarginMedium: string;
856
+ suffixMarginMedium: string;
857
+ inputWidthLarge: string;
858
+ selectWidthLarge: string;
859
+ inputMarginLarge: string;
860
+ inputMarginLargeRtl: string;
861
+ selectMarginLarge: string;
862
+ prefixMarginLarge: string;
863
+ suffixMarginLarge: string;
733
864
  buttonColor: string;
734
865
  buttonColorHover: string;
735
866
  buttonColorPressed: string;
@@ -767,53 +898,46 @@ export declare const paginationProps: {
767
898
  jumperFontSizeLarge: string;
768
899
  jumperTextColor: string;
769
900
  jumperTextColorDisabled: string;
770
- itemPaddingSmall: string;
771
- itemMarginSmall: string;
772
- itemMarginSmallRtl: string;
773
- itemPaddingMedium: string;
774
- itemMarginMedium: string;
775
- itemMarginMediumRtl: string;
776
- itemPaddingLarge: string;
777
- itemMarginLarge: string;
778
- itemMarginLargeRtl: string;
779
- buttonIconSizeSmall: string;
780
- buttonIconSizeMedium: string;
781
- buttonIconSizeLarge: string;
782
- inputWidthSmall: string;
783
- selectWidthSmall: string;
784
- inputMarginSmall: string;
785
- inputMarginSmallRtl: string;
786
- selectMarginSmall: string;
787
- prefixMarginSmall: string;
788
- suffixMarginSmall: string;
789
- inputWidthMedium: string;
790
- selectWidthMedium: string;
791
- inputMarginMedium: string;
792
- inputMarginMediumRtl: string;
793
- selectMarginMedium: string;
794
- prefixMarginMedium: string;
795
- suffixMarginMedium: string;
796
- inputWidthLarge: string;
797
- selectWidthLarge: string;
798
- inputMarginLarge: string;
799
- inputMarginLargeRtl: string;
800
- selectMarginLarge: string;
801
- prefixMarginLarge: string;
802
- suffixMarginLarge: string;
803
901
  }, {
804
902
  Select: import("../../_mixins").Theme<"Select", {
805
903
  menuBoxShadow: string;
806
904
  }, {
807
905
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
906
+ paddingTiny: string;
907
+ paddingSmall: string;
908
+ paddingMedium: string;
909
+ paddingLarge: string;
910
+ paddingHuge: string;
911
+ clearSizeTiny: string;
912
+ clearSizeSmall: string;
913
+ clearSizeMedium: string;
914
+ clearSizeLarge: string;
915
+ clearSizeHuge: string;
916
+ arrowSizeTiny: string;
917
+ arrowSizeSmall: string;
918
+ arrowSizeMedium: string;
919
+ arrowSizeLarge: string;
920
+ arrowSizeHuge: string;
808
921
  fontSizeTiny: string;
809
922
  fontSizeSmall: string;
810
923
  fontSizeMedium: string;
811
924
  fontSizeLarge: string;
925
+ fontSizeHuge: string;
926
+ lineHeightTiny: string;
927
+ lineHeightSmall: string;
928
+ lineHeightMedium: string;
929
+ lineHeightLarge: string;
930
+ lineHeightHuge: string;
812
931
  heightTiny: string;
813
932
  heightSmall: string;
814
933
  heightMedium: string;
815
934
  heightLarge: string;
816
- borderRadius: string;
935
+ heightHuge: string;
936
+ borderRadiusTiny: string;
937
+ borderRadiusSmall: string;
938
+ borderRadiusMedium: string;
939
+ borderRadiusLarge: string;
940
+ borderRadiusHuge: string;
817
941
  textColor: string;
818
942
  textColorDisabled: string;
819
943
  placeholderColor: string;
@@ -855,35 +979,68 @@ export declare const paginationProps: {
855
979
  clearColor: string;
856
980
  clearColorHover: string;
857
981
  clearColorPressed: string;
858
- paddingSingle: string;
859
- paddingMultiple: string;
860
- clearSize: string;
861
- arrowSize: string;
982
+ caretColorSecondary: string;
983
+ filterCounterTextColor: string;
984
+ filterCounterSeparatorColor: string;
985
+ filterCounterTextColorDisabled: string;
986
+ filterCounterSeparatorColorDisabled: string;
987
+ arrowColorSecondary: string;
988
+ clearColorSecondary: string;
989
+ colorSecondary: string;
990
+ textColorSecondary: string;
991
+ borderSecondary: string;
992
+ arrowColorDisabledSecondary: string;
993
+ clearColorDisabledSecondary: string;
994
+ colorDisabledSecondary: string;
995
+ textColorDisabledSecondary: string;
996
+ borderDisabledSecondary: string;
997
+ arrowColorHoverSecondary: string;
998
+ clearColorHoverSecondary: string;
999
+ colorHoverSecondary: string;
1000
+ textColorHoverSecondary: string;
1001
+ borderHoverSecondary: string;
1002
+ arrowColorFocusSecondary: string;
1003
+ clearColorFocusSecondary: string;
1004
+ colorFocusSecondary: string;
1005
+ textColorFocusSecondary: string;
1006
+ borderFocusSecondary: string;
1007
+ arrowColorActiveSecondary: string;
1008
+ clearColorActiveSecondary: string;
1009
+ colorActiveSecondary: string;
1010
+ textColorActiveSecondary: string;
1011
+ borderActiveSecondary: string;
862
1012
  }, {
863
1013
  Popover: import("../../_mixins").Theme<"Popover", {
864
- fontSize: string;
865
- borderRadius: string;
866
- color: string;
867
- dividerColor: string;
868
- textColor: string;
869
- boxShadow: string;
870
1014
  space: string;
871
1015
  spaceArrow: string;
872
1016
  arrowOffset: string;
873
1017
  arrowOffsetVertical: string;
874
1018
  arrowHeight: string;
875
1019
  padding: string;
1020
+ fontSize: string;
1021
+ borderRadius: string;
1022
+ color: string;
1023
+ dividerColor: string;
1024
+ textColor: string;
1025
+ boxShadow: string;
876
1026
  }, any>;
877
1027
  }>;
878
1028
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1029
+ height: string;
1030
+ paddingSmall: string;
1031
+ paddingMedium: string;
1032
+ paddingLarge: string;
1033
+ optionPaddingSmall: string;
1034
+ optionPaddingMedium: string;
1035
+ optionPaddingLarge: string;
1036
+ loadingSize: string;
879
1037
  optionFontSizeSmall: string;
880
1038
  optionFontSizeMedium: string;
881
1039
  optionFontSizeLarge: string;
882
- optionFontSizeHuge: string;
883
1040
  optionHeightSmall: string;
884
1041
  optionHeightMedium: string;
885
1042
  optionHeightLarge: string;
886
- optionHeightHuge: string;
1043
+ optionBorderRadius: string;
887
1044
  borderRadius: string;
888
1045
  color: string;
889
1046
  groupHeaderTextColor: string;
@@ -900,52 +1057,49 @@ export declare const paginationProps: {
900
1057
  optionColorActivePending: string;
901
1058
  actionTextColor: string;
902
1059
  loadingColor: string;
903
- height: string;
904
- paddingSmall: string;
905
- paddingMedium: string;
906
- paddingLarge: string;
907
- paddingHuge: string;
908
- optionPaddingSmall: string;
909
- optionPaddingMedium: string;
910
- optionPaddingLarge: string;
911
- optionPaddingHuge: string;
912
- loadingSize: string;
913
1060
  }, {
914
1061
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
915
1062
  color: string;
916
1063
  colorHover: string;
917
1064
  }, any>;
918
1065
  Empty: import("../../_mixins").Theme<"Empty", {
1066
+ iconSizeSmall: string;
1067
+ iconSizeMedium: string;
1068
+ iconSizeLarge: string;
1069
+ iconSizeHuge: string;
919
1070
  fontSizeSmall: string;
920
1071
  fontSizeMedium: string;
921
1072
  fontSizeLarge: string;
922
1073
  fontSizeHuge: string;
923
1074
  textColor: string;
924
1075
  iconColor: string;
925
- extraTextColor: string;
926
- iconSizeSmall: string;
927
- iconSizeMedium: string;
928
- iconSizeLarge: string;
929
- iconSizeHuge: string;
1076
+ extraTextColor: string;
930
1077
  }, any>;
931
1078
  }>;
932
1079
  }>;
933
1080
  Input: import("../../_mixins").Theme<"Input", {
1081
+ paddingTiny: string;
1082
+ paddingSmall: string;
1083
+ paddingMedium: string;
1084
+ paddingLarge: string;
1085
+ paddingHuge: string;
1086
+ clearSize: string;
934
1087
  countTextColorDisabled: string;
935
1088
  countTextColor: string;
936
1089
  heightTiny: string;
937
1090
  heightSmall: string;
938
1091
  heightMedium: string;
939
1092
  heightLarge: string;
1093
+ heightHuge: string;
940
1094
  fontSizeTiny: string;
941
1095
  fontSizeSmall: string;
942
1096
  fontSizeMedium: string;
943
1097
  fontSizeLarge: string;
1098
+ fontSizeHuge: string;
944
1099
  lineHeight: string;
945
1100
  lineHeightTextarea: string;
946
1101
  borderRadius: string;
947
1102
  iconSize: string;
948
- groupLabelColor: string;
949
1103
  groupLabelTextColor: string;
950
1104
  textColor: string;
951
1105
  textColorDisabled: string;
@@ -985,38 +1139,41 @@ export declare const paginationProps: {
985
1139
  iconColorHover: string;
986
1140
  iconColorPressed: string;
987
1141
  suffixTextColor: string;
988
- paddingTiny: string;
989
- paddingSmall: string;
990
- paddingMedium: string;
991
- paddingLarge: string;
992
- clearSize: string;
1142
+ selectionColor: string;
993
1143
  }, any>;
994
1144
  Popselect: import("../../_mixins").Theme<"Popselect", {
995
1145
  menuBoxShadow: string;
996
1146
  }, {
997
1147
  Popover: import("../../_mixins").Theme<"Popover", {
998
- fontSize: string;
999
- borderRadius: string;
1000
- color: string;
1001
- dividerColor: string;
1002
- textColor: string;
1003
- boxShadow: string;
1004
1148
  space: string;
1005
1149
  spaceArrow: string;
1006
1150
  arrowOffset: string;
1007
1151
  arrowOffsetVertical: string;
1008
1152
  arrowHeight: string;
1009
1153
  padding: string;
1154
+ fontSize: string;
1155
+ borderRadius: string;
1156
+ color: string;
1157
+ dividerColor: string;
1158
+ textColor: string;
1159
+ boxShadow: string;
1010
1160
  }, any>;
1011
1161
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1162
+ height: string;
1163
+ paddingSmall: string;
1164
+ paddingMedium: string;
1165
+ paddingLarge: string;
1166
+ optionPaddingSmall: string;
1167
+ optionPaddingMedium: string;
1168
+ optionPaddingLarge: string;
1169
+ loadingSize: string;
1012
1170
  optionFontSizeSmall: string;
1013
1171
  optionFontSizeMedium: string;
1014
1172
  optionFontSizeLarge: string;
1015
- optionFontSizeHuge: string;
1016
1173
  optionHeightSmall: string;
1017
1174
  optionHeightMedium: string;
1018
1175
  optionHeightLarge: string;
1019
- optionHeightHuge: string;
1176
+ optionBorderRadius: string;
1020
1177
  borderRadius: string;
1021
1178
  color: string;
1022
1179
  groupHeaderTextColor: string;
@@ -1033,22 +1190,16 @@ export declare const paginationProps: {
1033
1190
  optionColorActivePending: string;
1034
1191
  actionTextColor: string;
1035
1192
  loadingColor: string;
1036
- height: string;
1037
- paddingSmall: string;
1038
- paddingMedium: string;
1039
- paddingLarge: string;
1040
- paddingHuge: string;
1041
- optionPaddingSmall: string;
1042
- optionPaddingMedium: string;
1043
- optionPaddingLarge: string;
1044
- optionPaddingHuge: string;
1045
- loadingSize: string;
1046
1193
  }, {
1047
1194
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1048
1195
  color: string;
1049
1196
  colorHover: string;
1050
1197
  }, any>;
1051
1198
  Empty: import("../../_mixins").Theme<"Empty", {
1199
+ iconSizeSmall: string;
1200
+ iconSizeMedium: string;
1201
+ iconSizeLarge: string;
1202
+ iconSizeHuge: string;
1052
1203
  fontSizeSmall: string;
1053
1204
  fontSizeMedium: string;
1054
1205
  fontSizeLarge: string;
@@ -1056,10 +1207,6 @@ export declare const paginationProps: {
1056
1207
  textColor: string;
1057
1208
  iconColor: string;
1058
1209
  extraTextColor: string;
1059
- iconSizeSmall: string;
1060
- iconSizeMedium: string;
1061
- iconSizeLarge: string;
1062
- iconSizeHuge: string;
1063
1210
  }, any>;
1064
1211
  }>;
1065
1212
  }>;
@@ -1121,6 +1268,39 @@ declare const _default: import("vue").DefineComponent<{
1121
1268
  /** @deprecated */
1122
1269
  readonly onChange: PropType<MaybeArray<(page: number) => void>>;
1123
1270
  readonly theme: PropType<import("../../_mixins").Theme<"Pagination", {
1271
+ itemPaddingSmall: string;
1272
+ itemMarginSmall: string;
1273
+ itemMarginSmallRtl: string;
1274
+ itemPaddingMedium: string;
1275
+ itemMarginMedium: string;
1276
+ itemMarginMediumRtl: string;
1277
+ itemPaddingLarge: string;
1278
+ itemMarginLarge: string;
1279
+ itemMarginLargeRtl: string;
1280
+ buttonIconSizeSmall: string;
1281
+ buttonIconSizeMedium: string;
1282
+ buttonIconSizeLarge: string;
1283
+ inputWidthSmall: string;
1284
+ selectWidthSmall: string;
1285
+ inputMarginSmall: string;
1286
+ inputMarginSmallRtl: string;
1287
+ selectMarginSmall: string;
1288
+ prefixMarginSmall: string;
1289
+ suffixMarginSmall: string;
1290
+ inputWidthMedium: string;
1291
+ selectWidthMedium: string;
1292
+ inputMarginMedium: string;
1293
+ inputMarginMediumRtl: string;
1294
+ selectMarginMedium: string;
1295
+ prefixMarginMedium: string;
1296
+ suffixMarginMedium: string;
1297
+ inputWidthLarge: string;
1298
+ selectWidthLarge: string;
1299
+ inputMarginLarge: string;
1300
+ inputMarginLargeRtl: string;
1301
+ selectMarginLarge: string;
1302
+ prefixMarginLarge: string;
1303
+ suffixMarginLarge: string;
1124
1304
  buttonColor: string;
1125
1305
  buttonColorHover: string;
1126
1306
  buttonColorPressed: string;
@@ -1158,53 +1338,46 @@ declare const _default: import("vue").DefineComponent<{
1158
1338
  jumperFontSizeLarge: string;
1159
1339
  jumperTextColor: string;
1160
1340
  jumperTextColorDisabled: string;
1161
- itemPaddingSmall: string;
1162
- itemMarginSmall: string;
1163
- itemMarginSmallRtl: string;
1164
- itemPaddingMedium: string;
1165
- itemMarginMedium: string;
1166
- itemMarginMediumRtl: string;
1167
- itemPaddingLarge: string;
1168
- itemMarginLarge: string;
1169
- itemMarginLargeRtl: string;
1170
- buttonIconSizeSmall: string;
1171
- buttonIconSizeMedium: string;
1172
- buttonIconSizeLarge: string;
1173
- inputWidthSmall: string;
1174
- selectWidthSmall: string;
1175
- inputMarginSmall: string;
1176
- inputMarginSmallRtl: string;
1177
- selectMarginSmall: string;
1178
- prefixMarginSmall: string;
1179
- suffixMarginSmall: string;
1180
- inputWidthMedium: string;
1181
- selectWidthMedium: string;
1182
- inputMarginMedium: string;
1183
- inputMarginMediumRtl: string;
1184
- selectMarginMedium: string;
1185
- prefixMarginMedium: string;
1186
- suffixMarginMedium: string;
1187
- inputWidthLarge: string;
1188
- selectWidthLarge: string;
1189
- inputMarginLarge: string;
1190
- inputMarginLargeRtl: string;
1191
- selectMarginLarge: string;
1192
- prefixMarginLarge: string;
1193
- suffixMarginLarge: string;
1194
1341
  }, {
1195
1342
  Select: import("../../_mixins").Theme<"Select", {
1196
1343
  menuBoxShadow: string;
1197
1344
  }, {
1198
1345
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1346
+ paddingTiny: string;
1347
+ paddingSmall: string;
1348
+ paddingMedium: string;
1349
+ paddingLarge: string;
1350
+ paddingHuge: string;
1351
+ clearSizeTiny: string;
1352
+ clearSizeSmall: string;
1353
+ clearSizeMedium: string;
1354
+ clearSizeLarge: string;
1355
+ clearSizeHuge: string;
1356
+ arrowSizeTiny: string;
1357
+ arrowSizeSmall: string;
1358
+ arrowSizeMedium: string;
1359
+ arrowSizeLarge: string;
1360
+ arrowSizeHuge: string;
1199
1361
  fontSizeTiny: string;
1200
1362
  fontSizeSmall: string;
1201
1363
  fontSizeMedium: string;
1202
1364
  fontSizeLarge: string;
1365
+ fontSizeHuge: string;
1366
+ lineHeightTiny: string;
1367
+ lineHeightSmall: string;
1368
+ lineHeightMedium: string;
1369
+ lineHeightLarge: string;
1370
+ lineHeightHuge: string;
1203
1371
  heightTiny: string;
1204
1372
  heightSmall: string;
1205
1373
  heightMedium: string;
1206
1374
  heightLarge: string;
1207
- borderRadius: string;
1375
+ heightHuge: string;
1376
+ borderRadiusTiny: string;
1377
+ borderRadiusSmall: string;
1378
+ borderRadiusMedium: string;
1379
+ borderRadiusLarge: string;
1380
+ borderRadiusHuge: string;
1208
1381
  textColor: string;
1209
1382
  textColorDisabled: string;
1210
1383
  placeholderColor: string;
@@ -1246,35 +1419,68 @@ declare const _default: import("vue").DefineComponent<{
1246
1419
  clearColor: string;
1247
1420
  clearColorHover: string;
1248
1421
  clearColorPressed: string;
1249
- paddingSingle: string;
1250
- paddingMultiple: string;
1251
- clearSize: string;
1252
- arrowSize: string;
1422
+ caretColorSecondary: string;
1423
+ filterCounterTextColor: string;
1424
+ filterCounterSeparatorColor: string;
1425
+ filterCounterTextColorDisabled: string;
1426
+ filterCounterSeparatorColorDisabled: string;
1427
+ arrowColorSecondary: string;
1428
+ clearColorSecondary: string;
1429
+ colorSecondary: string;
1430
+ textColorSecondary: string;
1431
+ borderSecondary: string;
1432
+ arrowColorDisabledSecondary: string;
1433
+ clearColorDisabledSecondary: string;
1434
+ colorDisabledSecondary: string;
1435
+ textColorDisabledSecondary: string;
1436
+ borderDisabledSecondary: string;
1437
+ arrowColorHoverSecondary: string;
1438
+ clearColorHoverSecondary: string;
1439
+ colorHoverSecondary: string;
1440
+ textColorHoverSecondary: string;
1441
+ borderHoverSecondary: string;
1442
+ arrowColorFocusSecondary: string;
1443
+ clearColorFocusSecondary: string;
1444
+ colorFocusSecondary: string;
1445
+ textColorFocusSecondary: string;
1446
+ borderFocusSecondary: string;
1447
+ arrowColorActiveSecondary: string;
1448
+ clearColorActiveSecondary: string;
1449
+ colorActiveSecondary: string;
1450
+ textColorActiveSecondary: string;
1451
+ borderActiveSecondary: string;
1253
1452
  }, {
1254
1453
  Popover: import("../../_mixins").Theme<"Popover", {
1255
- fontSize: string;
1256
- borderRadius: string;
1257
- color: string;
1258
- dividerColor: string;
1259
- textColor: string;
1260
- boxShadow: string;
1261
1454
  space: string;
1262
1455
  spaceArrow: string;
1263
1456
  arrowOffset: string;
1264
1457
  arrowOffsetVertical: string;
1265
1458
  arrowHeight: string;
1266
1459
  padding: string;
1460
+ fontSize: string;
1461
+ borderRadius: string;
1462
+ color: string;
1463
+ dividerColor: string;
1464
+ textColor: string;
1465
+ boxShadow: string;
1267
1466
  }, any>;
1268
1467
  }>;
1269
1468
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1469
+ height: string;
1470
+ paddingSmall: string;
1471
+ paddingMedium: string;
1472
+ paddingLarge: string;
1473
+ optionPaddingSmall: string;
1474
+ optionPaddingMedium: string;
1475
+ optionPaddingLarge: string;
1476
+ loadingSize: string;
1270
1477
  optionFontSizeSmall: string;
1271
1478
  optionFontSizeMedium: string;
1272
1479
  optionFontSizeLarge: string;
1273
- optionFontSizeHuge: string;
1274
1480
  optionHeightSmall: string;
1275
1481
  optionHeightMedium: string;
1276
1482
  optionHeightLarge: string;
1277
- optionHeightHuge: string;
1483
+ optionBorderRadius: string;
1278
1484
  borderRadius: string;
1279
1485
  color: string;
1280
1486
  groupHeaderTextColor: string;
@@ -1291,22 +1497,16 @@ declare const _default: import("vue").DefineComponent<{
1291
1497
  optionColorActivePending: string;
1292
1498
  actionTextColor: string;
1293
1499
  loadingColor: string;
1294
- height: string;
1295
- paddingSmall: string;
1296
- paddingMedium: string;
1297
- paddingLarge: string;
1298
- paddingHuge: string;
1299
- optionPaddingSmall: string;
1300
- optionPaddingMedium: string;
1301
- optionPaddingLarge: string;
1302
- optionPaddingHuge: string;
1303
- loadingSize: string;
1304
1500
  }, {
1305
1501
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1306
1502
  color: string;
1307
1503
  colorHover: string;
1308
1504
  }, any>;
1309
1505
  Empty: import("../../_mixins").Theme<"Empty", {
1506
+ iconSizeSmall: string;
1507
+ iconSizeMedium: string;
1508
+ iconSizeLarge: string;
1509
+ iconSizeHuge: string;
1310
1510
  fontSizeSmall: string;
1311
1511
  fontSizeMedium: string;
1312
1512
  fontSizeLarge: string;
@@ -1314,29 +1514,32 @@ declare const _default: import("vue").DefineComponent<{
1314
1514
  textColor: string;
1315
1515
  iconColor: string;
1316
1516
  extraTextColor: string;
1317
- iconSizeSmall: string;
1318
- iconSizeMedium: string;
1319
- iconSizeLarge: string;
1320
- iconSizeHuge: string;
1321
1517
  }, any>;
1322
1518
  }>;
1323
1519
  }>;
1324
1520
  Input: import("../../_mixins").Theme<"Input", {
1521
+ paddingTiny: string;
1522
+ paddingSmall: string;
1523
+ paddingMedium: string;
1524
+ paddingLarge: string;
1525
+ paddingHuge: string;
1526
+ clearSize: string;
1325
1527
  countTextColorDisabled: string;
1326
1528
  countTextColor: string;
1327
1529
  heightTiny: string;
1328
1530
  heightSmall: string;
1329
1531
  heightMedium: string;
1330
1532
  heightLarge: string;
1533
+ heightHuge: string;
1331
1534
  fontSizeTiny: string;
1332
1535
  fontSizeSmall: string;
1333
1536
  fontSizeMedium: string;
1334
1537
  fontSizeLarge: string;
1538
+ fontSizeHuge: string;
1335
1539
  lineHeight: string;
1336
1540
  lineHeightTextarea: string;
1337
1541
  borderRadius: string;
1338
1542
  iconSize: string;
1339
- groupLabelColor: string;
1340
1543
  groupLabelTextColor: string;
1341
1544
  textColor: string;
1342
1545
  textColorDisabled: string;
@@ -1376,38 +1579,41 @@ declare const _default: import("vue").DefineComponent<{
1376
1579
  iconColorHover: string;
1377
1580
  iconColorPressed: string;
1378
1581
  suffixTextColor: string;
1379
- paddingTiny: string;
1380
- paddingSmall: string;
1381
- paddingMedium: string;
1382
- paddingLarge: string;
1383
- clearSize: string;
1582
+ selectionColor: string;
1384
1583
  }, any>;
1385
1584
  Popselect: import("../../_mixins").Theme<"Popselect", {
1386
1585
  menuBoxShadow: string;
1387
1586
  }, {
1388
1587
  Popover: import("../../_mixins").Theme<"Popover", {
1389
- fontSize: string;
1390
- borderRadius: string;
1391
- color: string;
1392
- dividerColor: string;
1393
- textColor: string;
1394
- boxShadow: string;
1395
1588
  space: string;
1396
1589
  spaceArrow: string;
1397
1590
  arrowOffset: string;
1398
1591
  arrowOffsetVertical: string;
1399
1592
  arrowHeight: string;
1400
1593
  padding: string;
1594
+ fontSize: string;
1595
+ borderRadius: string;
1596
+ color: string;
1597
+ dividerColor: string;
1598
+ textColor: string;
1599
+ boxShadow: string;
1401
1600
  }, any>;
1402
1601
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1602
+ height: string;
1603
+ paddingSmall: string;
1604
+ paddingMedium: string;
1605
+ paddingLarge: string;
1606
+ optionPaddingSmall: string;
1607
+ optionPaddingMedium: string;
1608
+ optionPaddingLarge: string;
1609
+ loadingSize: string;
1403
1610
  optionFontSizeSmall: string;
1404
1611
  optionFontSizeMedium: string;
1405
1612
  optionFontSizeLarge: string;
1406
- optionFontSizeHuge: string;
1407
1613
  optionHeightSmall: string;
1408
1614
  optionHeightMedium: string;
1409
1615
  optionHeightLarge: string;
1410
- optionHeightHuge: string;
1616
+ optionBorderRadius: string;
1411
1617
  borderRadius: string;
1412
1618
  color: string;
1413
1619
  groupHeaderTextColor: string;
@@ -1424,22 +1630,16 @@ declare const _default: import("vue").DefineComponent<{
1424
1630
  optionColorActivePending: string;
1425
1631
  actionTextColor: string;
1426
1632
  loadingColor: string;
1427
- height: string;
1428
- paddingSmall: string;
1429
- paddingMedium: string;
1430
- paddingLarge: string;
1431
- paddingHuge: string;
1432
- optionPaddingSmall: string;
1433
- optionPaddingMedium: string;
1434
- optionPaddingLarge: string;
1435
- optionPaddingHuge: string;
1436
- loadingSize: string;
1437
1633
  }, {
1438
1634
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1439
1635
  color: string;
1440
1636
  colorHover: string;
1441
1637
  }, any>;
1442
1638
  Empty: import("../../_mixins").Theme<"Empty", {
1639
+ iconSizeSmall: string;
1640
+ iconSizeMedium: string;
1641
+ iconSizeLarge: string;
1642
+ iconSizeHuge: string;
1443
1643
  fontSizeSmall: string;
1444
1644
  fontSizeMedium: string;
1445
1645
  fontSizeLarge: string;
@@ -1447,52 +1647,11 @@ declare const _default: import("vue").DefineComponent<{
1447
1647
  textColor: string;
1448
1648
  iconColor: string;
1449
1649
  extraTextColor: string;
1450
- iconSizeSmall: string;
1451
- iconSizeMedium: string;
1452
- iconSizeLarge: string;
1453
- iconSizeHuge: string;
1454
1650
  }, any>;
1455
1651
  }>;
1456
1652
  }>;
1457
1653
  }>>;
1458
1654
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
1459
- buttonColor: string;
1460
- buttonColorHover: string;
1461
- buttonColorPressed: string;
1462
- buttonBorder: string;
1463
- buttonBorderHover: string;
1464
- buttonBorderPressed: string;
1465
- buttonIconColor: string;
1466
- buttonIconColorHover: string;
1467
- buttonIconColorPressed: string;
1468
- itemTextColor: string;
1469
- itemTextColorHover: string;
1470
- itemTextColorPressed: string;
1471
- itemTextColorActive: string;
1472
- itemTextColorDisabled: string;
1473
- itemColor: string;
1474
- itemColorHover: string;
1475
- itemColorPressed: string;
1476
- itemColorActive: string;
1477
- itemColorActiveHover: string;
1478
- itemColorDisabled: string;
1479
- itemBorder: string;
1480
- itemBorderHover: string;
1481
- itemBorderPressed: string;
1482
- itemBorderActive: string;
1483
- itemBorderDisabled: string;
1484
- itemBorderRadius: string;
1485
- itemSizeSmall: string;
1486
- itemSizeMedium: string;
1487
- itemSizeLarge: string;
1488
- itemFontSizeSmall: string;
1489
- itemFontSizeMedium: string;
1490
- itemFontSizeLarge: string;
1491
- jumperFontSizeSmall: string;
1492
- jumperFontSizeMedium: string;
1493
- jumperFontSizeLarge: string;
1494
- jumperTextColor: string;
1495
- jumperTextColorDisabled: string;
1496
1655
  itemPaddingSmall: string;
1497
1656
  itemMarginSmall: string;
1498
1657
  itemMarginSmallRtl: string;
@@ -1526,20 +1685,83 @@ declare const _default: import("vue").DefineComponent<{
1526
1685
  selectMarginLarge: string;
1527
1686
  prefixMarginLarge: string;
1528
1687
  suffixMarginLarge: string;
1688
+ buttonColor: string;
1689
+ buttonColorHover: string;
1690
+ buttonColorPressed: string;
1691
+ buttonBorder: string;
1692
+ buttonBorderHover: string;
1693
+ buttonBorderPressed: string;
1694
+ buttonIconColor: string;
1695
+ buttonIconColorHover: string;
1696
+ buttonIconColorPressed: string;
1697
+ itemTextColor: string;
1698
+ itemTextColorHover: string;
1699
+ itemTextColorPressed: string;
1700
+ itemTextColorActive: string;
1701
+ itemTextColorDisabled: string;
1702
+ itemColor: string;
1703
+ itemColorHover: string;
1704
+ itemColorPressed: string;
1705
+ itemColorActive: string;
1706
+ itemColorActiveHover: string;
1707
+ itemColorDisabled: string;
1708
+ itemBorder: string;
1709
+ itemBorderHover: string;
1710
+ itemBorderPressed: string;
1711
+ itemBorderActive: string;
1712
+ itemBorderDisabled: string;
1713
+ itemBorderRadius: string;
1714
+ itemSizeSmall: string;
1715
+ itemSizeMedium: string;
1716
+ itemSizeLarge: string;
1717
+ itemFontSizeSmall: string;
1718
+ itemFontSizeMedium: string;
1719
+ itemFontSizeLarge: string;
1720
+ jumperFontSizeSmall: string;
1721
+ jumperFontSizeMedium: string;
1722
+ jumperFontSizeLarge: string;
1723
+ jumperTextColor: string;
1724
+ jumperTextColorDisabled: string;
1529
1725
  }, {
1530
1726
  Select: import("../../_mixins").Theme<"Select", {
1531
1727
  menuBoxShadow: string;
1532
1728
  }, {
1533
1729
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1730
+ paddingTiny: string;
1731
+ paddingSmall: string;
1732
+ paddingMedium: string;
1733
+ paddingLarge: string;
1734
+ paddingHuge: string;
1735
+ clearSizeTiny: string;
1736
+ clearSizeSmall: string;
1737
+ clearSizeMedium: string;
1738
+ clearSizeLarge: string;
1739
+ clearSizeHuge: string;
1740
+ arrowSizeTiny: string;
1741
+ arrowSizeSmall: string;
1742
+ arrowSizeMedium: string;
1743
+ arrowSizeLarge: string;
1744
+ arrowSizeHuge: string;
1534
1745
  fontSizeTiny: string;
1535
1746
  fontSizeSmall: string;
1536
1747
  fontSizeMedium: string;
1537
1748
  fontSizeLarge: string;
1749
+ fontSizeHuge: string;
1750
+ lineHeightTiny: string;
1751
+ lineHeightSmall: string;
1752
+ lineHeightMedium: string;
1753
+ lineHeightLarge: string;
1754
+ lineHeightHuge: string;
1538
1755
  heightTiny: string;
1539
1756
  heightSmall: string;
1540
1757
  heightMedium: string;
1541
1758
  heightLarge: string;
1542
- borderRadius: string;
1759
+ heightHuge: string;
1760
+ borderRadiusTiny: string;
1761
+ borderRadiusSmall: string;
1762
+ borderRadiusMedium: string;
1763
+ borderRadiusLarge: string;
1764
+ borderRadiusHuge: string;
1543
1765
  textColor: string;
1544
1766
  textColorDisabled: string;
1545
1767
  placeholderColor: string;
@@ -1581,35 +1803,68 @@ declare const _default: import("vue").DefineComponent<{
1581
1803
  clearColor: string;
1582
1804
  clearColorHover: string;
1583
1805
  clearColorPressed: string;
1584
- paddingSingle: string;
1585
- paddingMultiple: string;
1586
- clearSize: string;
1587
- arrowSize: string;
1806
+ caretColorSecondary: string;
1807
+ filterCounterTextColor: string;
1808
+ filterCounterSeparatorColor: string;
1809
+ filterCounterTextColorDisabled: string;
1810
+ filterCounterSeparatorColorDisabled: string;
1811
+ arrowColorSecondary: string;
1812
+ clearColorSecondary: string;
1813
+ colorSecondary: string;
1814
+ textColorSecondary: string;
1815
+ borderSecondary: string;
1816
+ arrowColorDisabledSecondary: string;
1817
+ clearColorDisabledSecondary: string;
1818
+ colorDisabledSecondary: string;
1819
+ textColorDisabledSecondary: string;
1820
+ borderDisabledSecondary: string;
1821
+ arrowColorHoverSecondary: string;
1822
+ clearColorHoverSecondary: string;
1823
+ colorHoverSecondary: string;
1824
+ textColorHoverSecondary: string;
1825
+ borderHoverSecondary: string;
1826
+ arrowColorFocusSecondary: string;
1827
+ clearColorFocusSecondary: string;
1828
+ colorFocusSecondary: string;
1829
+ textColorFocusSecondary: string;
1830
+ borderFocusSecondary: string;
1831
+ arrowColorActiveSecondary: string;
1832
+ clearColorActiveSecondary: string;
1833
+ colorActiveSecondary: string;
1834
+ textColorActiveSecondary: string;
1835
+ borderActiveSecondary: string;
1588
1836
  }, {
1589
1837
  Popover: import("../../_mixins").Theme<"Popover", {
1590
- fontSize: string;
1591
- borderRadius: string;
1592
- color: string;
1593
- dividerColor: string;
1594
- textColor: string;
1595
- boxShadow: string;
1596
1838
  space: string;
1597
1839
  spaceArrow: string;
1598
1840
  arrowOffset: string;
1599
1841
  arrowOffsetVertical: string;
1600
1842
  arrowHeight: string;
1601
1843
  padding: string;
1844
+ fontSize: string;
1845
+ borderRadius: string;
1846
+ color: string;
1847
+ dividerColor: string;
1848
+ textColor: string;
1849
+ boxShadow: string;
1602
1850
  }, any>;
1603
1851
  }>;
1604
1852
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1853
+ height: string;
1854
+ paddingSmall: string;
1855
+ paddingMedium: string;
1856
+ paddingLarge: string;
1857
+ optionPaddingSmall: string;
1858
+ optionPaddingMedium: string;
1859
+ optionPaddingLarge: string;
1860
+ loadingSize: string;
1605
1861
  optionFontSizeSmall: string;
1606
1862
  optionFontSizeMedium: string;
1607
1863
  optionFontSizeLarge: string;
1608
- optionFontSizeHuge: string;
1609
1864
  optionHeightSmall: string;
1610
1865
  optionHeightMedium: string;
1611
1866
  optionHeightLarge: string;
1612
- optionHeightHuge: string;
1867
+ optionBorderRadius: string;
1613
1868
  borderRadius: string;
1614
1869
  color: string;
1615
1870
  groupHeaderTextColor: string;
@@ -1626,22 +1881,16 @@ declare const _default: import("vue").DefineComponent<{
1626
1881
  optionColorActivePending: string;
1627
1882
  actionTextColor: string;
1628
1883
  loadingColor: string;
1629
- height: string;
1630
- paddingSmall: string;
1631
- paddingMedium: string;
1632
- paddingLarge: string;
1633
- paddingHuge: string;
1634
- optionPaddingSmall: string;
1635
- optionPaddingMedium: string;
1636
- optionPaddingLarge: string;
1637
- optionPaddingHuge: string;
1638
- loadingSize: string;
1639
1884
  }, {
1640
1885
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1641
1886
  color: string;
1642
1887
  colorHover: string;
1643
1888
  }, any>;
1644
1889
  Empty: import("../../_mixins").Theme<"Empty", {
1890
+ iconSizeSmall: string;
1891
+ iconSizeMedium: string;
1892
+ iconSizeLarge: string;
1893
+ iconSizeHuge: string;
1645
1894
  fontSizeSmall: string;
1646
1895
  fontSizeMedium: string;
1647
1896
  fontSizeLarge: string;
@@ -1649,29 +1898,32 @@ declare const _default: import("vue").DefineComponent<{
1649
1898
  textColor: string;
1650
1899
  iconColor: string;
1651
1900
  extraTextColor: string;
1652
- iconSizeSmall: string;
1653
- iconSizeMedium: string;
1654
- iconSizeLarge: string;
1655
- iconSizeHuge: string;
1656
1901
  }, any>;
1657
1902
  }>;
1658
1903
  }>;
1659
1904
  Input: import("../../_mixins").Theme<"Input", {
1905
+ paddingTiny: string;
1906
+ paddingSmall: string;
1907
+ paddingMedium: string;
1908
+ paddingLarge: string;
1909
+ paddingHuge: string;
1910
+ clearSize: string;
1660
1911
  countTextColorDisabled: string;
1661
1912
  countTextColor: string;
1662
1913
  heightTiny: string;
1663
1914
  heightSmall: string;
1664
1915
  heightMedium: string;
1665
1916
  heightLarge: string;
1917
+ heightHuge: string;
1666
1918
  fontSizeTiny: string;
1667
1919
  fontSizeSmall: string;
1668
1920
  fontSizeMedium: string;
1669
1921
  fontSizeLarge: string;
1922
+ fontSizeHuge: string;
1670
1923
  lineHeight: string;
1671
1924
  lineHeightTextarea: string;
1672
1925
  borderRadius: string;
1673
1926
  iconSize: string;
1674
- groupLabelColor: string;
1675
1927
  groupLabelTextColor: string;
1676
1928
  textColor: string;
1677
1929
  textColorDisabled: string;
@@ -1711,38 +1963,41 @@ declare const _default: import("vue").DefineComponent<{
1711
1963
  iconColorHover: string;
1712
1964
  iconColorPressed: string;
1713
1965
  suffixTextColor: string;
1714
- paddingTiny: string;
1715
- paddingSmall: string;
1716
- paddingMedium: string;
1717
- paddingLarge: string;
1718
- clearSize: string;
1966
+ selectionColor: string;
1719
1967
  }, any>;
1720
1968
  Popselect: import("../../_mixins").Theme<"Popselect", {
1721
1969
  menuBoxShadow: string;
1722
1970
  }, {
1723
1971
  Popover: import("../../_mixins").Theme<"Popover", {
1724
- fontSize: string;
1725
- borderRadius: string;
1726
- color: string;
1727
- dividerColor: string;
1728
- textColor: string;
1729
- boxShadow: string;
1730
1972
  space: string;
1731
1973
  spaceArrow: string;
1732
1974
  arrowOffset: string;
1733
1975
  arrowOffsetVertical: string;
1734
1976
  arrowHeight: string;
1735
1977
  padding: string;
1978
+ fontSize: string;
1979
+ borderRadius: string;
1980
+ color: string;
1981
+ dividerColor: string;
1982
+ textColor: string;
1983
+ boxShadow: string;
1736
1984
  }, any>;
1737
1985
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1986
+ height: string;
1987
+ paddingSmall: string;
1988
+ paddingMedium: string;
1989
+ paddingLarge: string;
1990
+ optionPaddingSmall: string;
1991
+ optionPaddingMedium: string;
1992
+ optionPaddingLarge: string;
1993
+ loadingSize: string;
1738
1994
  optionFontSizeSmall: string;
1739
1995
  optionFontSizeMedium: string;
1740
1996
  optionFontSizeLarge: string;
1741
- optionFontSizeHuge: string;
1742
1997
  optionHeightSmall: string;
1743
1998
  optionHeightMedium: string;
1744
1999
  optionHeightLarge: string;
1745
- optionHeightHuge: string;
2000
+ optionBorderRadius: string;
1746
2001
  borderRadius: string;
1747
2002
  color: string;
1748
2003
  groupHeaderTextColor: string;
@@ -1759,22 +2014,16 @@ declare const _default: import("vue").DefineComponent<{
1759
2014
  optionColorActivePending: string;
1760
2015
  actionTextColor: string;
1761
2016
  loadingColor: string;
1762
- height: string;
1763
- paddingSmall: string;
1764
- paddingMedium: string;
1765
- paddingLarge: string;
1766
- paddingHuge: string;
1767
- optionPaddingSmall: string;
1768
- optionPaddingMedium: string;
1769
- optionPaddingLarge: string;
1770
- optionPaddingHuge: string;
1771
- loadingSize: string;
1772
2017
  }, {
1773
2018
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1774
2019
  color: string;
1775
2020
  colorHover: string;
1776
2021
  }, any>;
1777
2022
  Empty: import("../../_mixins").Theme<"Empty", {
2023
+ iconSizeSmall: string;
2024
+ iconSizeMedium: string;
2025
+ iconSizeLarge: string;
2026
+ iconSizeHuge: string;
1778
2027
  fontSizeSmall: string;
1779
2028
  fontSizeMedium: string;
1780
2029
  fontSizeLarge: string;
@@ -1782,15 +2031,44 @@ declare const _default: import("vue").DefineComponent<{
1782
2031
  textColor: string;
1783
2032
  iconColor: string;
1784
2033
  extraTextColor: string;
1785
- iconSizeSmall: string;
1786
- iconSizeMedium: string;
1787
- iconSizeLarge: string;
1788
- iconSizeHuge: string;
1789
2034
  }, any>;
1790
2035
  }>;
1791
2036
  }>;
1792
2037
  }>>>;
1793
2038
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
2039
+ itemPaddingSmall: string;
2040
+ itemMarginSmall: string;
2041
+ itemMarginSmallRtl: string;
2042
+ itemPaddingMedium: string;
2043
+ itemMarginMedium: string;
2044
+ itemMarginMediumRtl: string;
2045
+ itemPaddingLarge: string;
2046
+ itemMarginLarge: string;
2047
+ itemMarginLargeRtl: string;
2048
+ buttonIconSizeSmall: string;
2049
+ buttonIconSizeMedium: string;
2050
+ buttonIconSizeLarge: string;
2051
+ inputWidthSmall: string;
2052
+ selectWidthSmall: string;
2053
+ inputMarginSmall: string;
2054
+ inputMarginSmallRtl: string;
2055
+ selectMarginSmall: string;
2056
+ prefixMarginSmall: string;
2057
+ suffixMarginSmall: string;
2058
+ inputWidthMedium: string;
2059
+ selectWidthMedium: string;
2060
+ inputMarginMedium: string;
2061
+ inputMarginMediumRtl: string;
2062
+ selectMarginMedium: string;
2063
+ prefixMarginMedium: string;
2064
+ suffixMarginMedium: string;
2065
+ inputWidthLarge: string;
2066
+ selectWidthLarge: string;
2067
+ inputMarginLarge: string;
2068
+ inputMarginLargeRtl: string;
2069
+ selectMarginLarge: string;
2070
+ prefixMarginLarge: string;
2071
+ suffixMarginLarge: string;
1794
2072
  buttonColor: string;
1795
2073
  buttonColorHover: string;
1796
2074
  buttonColorPressed: string;
@@ -1828,53 +2106,46 @@ declare const _default: import("vue").DefineComponent<{
1828
2106
  jumperFontSizeLarge: string;
1829
2107
  jumperTextColor: string;
1830
2108
  jumperTextColorDisabled: string;
1831
- itemPaddingSmall: string;
1832
- itemMarginSmall: string;
1833
- itemMarginSmallRtl: string;
1834
- itemPaddingMedium: string;
1835
- itemMarginMedium: string;
1836
- itemMarginMediumRtl: string;
1837
- itemPaddingLarge: string;
1838
- itemMarginLarge: string;
1839
- itemMarginLargeRtl: string;
1840
- buttonIconSizeSmall: string;
1841
- buttonIconSizeMedium: string;
1842
- buttonIconSizeLarge: string;
1843
- inputWidthSmall: string;
1844
- selectWidthSmall: string;
1845
- inputMarginSmall: string;
1846
- inputMarginSmallRtl: string;
1847
- selectMarginSmall: string;
1848
- prefixMarginSmall: string;
1849
- suffixMarginSmall: string;
1850
- inputWidthMedium: string;
1851
- selectWidthMedium: string;
1852
- inputMarginMedium: string;
1853
- inputMarginMediumRtl: string;
1854
- selectMarginMedium: string;
1855
- prefixMarginMedium: string;
1856
- suffixMarginMedium: string;
1857
- inputWidthLarge: string;
1858
- selectWidthLarge: string;
1859
- inputMarginLarge: string;
1860
- inputMarginLargeRtl: string;
1861
- selectMarginLarge: string;
1862
- prefixMarginLarge: string;
1863
- suffixMarginLarge: string;
1864
2109
  }, {
1865
2110
  Select: import("../../_mixins").Theme<"Select", {
1866
2111
  menuBoxShadow: string;
1867
2112
  }, {
1868
2113
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2114
+ paddingTiny: string;
2115
+ paddingSmall: string;
2116
+ paddingMedium: string;
2117
+ paddingLarge: string;
2118
+ paddingHuge: string;
2119
+ clearSizeTiny: string;
2120
+ clearSizeSmall: string;
2121
+ clearSizeMedium: string;
2122
+ clearSizeLarge: string;
2123
+ clearSizeHuge: string;
2124
+ arrowSizeTiny: string;
2125
+ arrowSizeSmall: string;
2126
+ arrowSizeMedium: string;
2127
+ arrowSizeLarge: string;
2128
+ arrowSizeHuge: string;
1869
2129
  fontSizeTiny: string;
1870
2130
  fontSizeSmall: string;
1871
2131
  fontSizeMedium: string;
1872
2132
  fontSizeLarge: string;
2133
+ fontSizeHuge: string;
2134
+ lineHeightTiny: string;
2135
+ lineHeightSmall: string;
2136
+ lineHeightMedium: string;
2137
+ lineHeightLarge: string;
2138
+ lineHeightHuge: string;
1873
2139
  heightTiny: string;
1874
2140
  heightSmall: string;
1875
2141
  heightMedium: string;
1876
2142
  heightLarge: string;
1877
- borderRadius: string;
2143
+ heightHuge: string;
2144
+ borderRadiusTiny: string;
2145
+ borderRadiusSmall: string;
2146
+ borderRadiusMedium: string;
2147
+ borderRadiusLarge: string;
2148
+ borderRadiusHuge: string;
1878
2149
  textColor: string;
1879
2150
  textColorDisabled: string;
1880
2151
  placeholderColor: string;
@@ -1916,35 +2187,68 @@ declare const _default: import("vue").DefineComponent<{
1916
2187
  clearColor: string;
1917
2188
  clearColorHover: string;
1918
2189
  clearColorPressed: string;
1919
- paddingSingle: string;
1920
- paddingMultiple: string;
1921
- clearSize: string;
1922
- arrowSize: string;
2190
+ caretColorSecondary: string;
2191
+ filterCounterTextColor: string;
2192
+ filterCounterSeparatorColor: string;
2193
+ filterCounterTextColorDisabled: string;
2194
+ filterCounterSeparatorColorDisabled: string;
2195
+ arrowColorSecondary: string;
2196
+ clearColorSecondary: string;
2197
+ colorSecondary: string;
2198
+ textColorSecondary: string;
2199
+ borderSecondary: string;
2200
+ arrowColorDisabledSecondary: string;
2201
+ clearColorDisabledSecondary: string;
2202
+ colorDisabledSecondary: string;
2203
+ textColorDisabledSecondary: string;
2204
+ borderDisabledSecondary: string;
2205
+ arrowColorHoverSecondary: string;
2206
+ clearColorHoverSecondary: string;
2207
+ colorHoverSecondary: string;
2208
+ textColorHoverSecondary: string;
2209
+ borderHoverSecondary: string;
2210
+ arrowColorFocusSecondary: string;
2211
+ clearColorFocusSecondary: string;
2212
+ colorFocusSecondary: string;
2213
+ textColorFocusSecondary: string;
2214
+ borderFocusSecondary: string;
2215
+ arrowColorActiveSecondary: string;
2216
+ clearColorActiveSecondary: string;
2217
+ colorActiveSecondary: string;
2218
+ textColorActiveSecondary: string;
2219
+ borderActiveSecondary: string;
1923
2220
  }, {
1924
2221
  Popover: import("../../_mixins").Theme<"Popover", {
1925
- fontSize: string;
1926
- borderRadius: string;
1927
- color: string;
1928
- dividerColor: string;
1929
- textColor: string;
1930
- boxShadow: string;
1931
2222
  space: string;
1932
2223
  spaceArrow: string;
1933
2224
  arrowOffset: string;
1934
2225
  arrowOffsetVertical: string;
1935
2226
  arrowHeight: string;
1936
2227
  padding: string;
2228
+ fontSize: string;
2229
+ borderRadius: string;
2230
+ color: string;
2231
+ dividerColor: string;
2232
+ textColor: string;
2233
+ boxShadow: string;
1937
2234
  }, any>;
1938
2235
  }>;
1939
2236
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2237
+ height: string;
2238
+ paddingSmall: string;
2239
+ paddingMedium: string;
2240
+ paddingLarge: string;
2241
+ optionPaddingSmall: string;
2242
+ optionPaddingMedium: string;
2243
+ optionPaddingLarge: string;
2244
+ loadingSize: string;
1940
2245
  optionFontSizeSmall: string;
1941
2246
  optionFontSizeMedium: string;
1942
2247
  optionFontSizeLarge: string;
1943
- optionFontSizeHuge: string;
1944
2248
  optionHeightSmall: string;
1945
2249
  optionHeightMedium: string;
1946
2250
  optionHeightLarge: string;
1947
- optionHeightHuge: string;
2251
+ optionBorderRadius: string;
1948
2252
  borderRadius: string;
1949
2253
  color: string;
1950
2254
  groupHeaderTextColor: string;
@@ -1961,22 +2265,16 @@ declare const _default: import("vue").DefineComponent<{
1961
2265
  optionColorActivePending: string;
1962
2266
  actionTextColor: string;
1963
2267
  loadingColor: string;
1964
- height: string;
1965
- paddingSmall: string;
1966
- paddingMedium: string;
1967
- paddingLarge: string;
1968
- paddingHuge: string;
1969
- optionPaddingSmall: string;
1970
- optionPaddingMedium: string;
1971
- optionPaddingLarge: string;
1972
- optionPaddingHuge: string;
1973
- loadingSize: string;
1974
2268
  }, {
1975
2269
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1976
2270
  color: string;
1977
2271
  colorHover: string;
1978
2272
  }, any>;
1979
2273
  Empty: import("../../_mixins").Theme<"Empty", {
2274
+ iconSizeSmall: string;
2275
+ iconSizeMedium: string;
2276
+ iconSizeLarge: string;
2277
+ iconSizeHuge: string;
1980
2278
  fontSizeSmall: string;
1981
2279
  fontSizeMedium: string;
1982
2280
  fontSizeLarge: string;
@@ -1984,29 +2282,32 @@ declare const _default: import("vue").DefineComponent<{
1984
2282
  textColor: string;
1985
2283
  iconColor: string;
1986
2284
  extraTextColor: string;
1987
- iconSizeSmall: string;
1988
- iconSizeMedium: string;
1989
- iconSizeLarge: string;
1990
- iconSizeHuge: string;
1991
2285
  }, any>;
1992
2286
  }>;
1993
2287
  }>;
1994
2288
  Input: import("../../_mixins").Theme<"Input", {
2289
+ paddingTiny: string;
2290
+ paddingSmall: string;
2291
+ paddingMedium: string;
2292
+ paddingLarge: string;
2293
+ paddingHuge: string;
2294
+ clearSize: string;
1995
2295
  countTextColorDisabled: string;
1996
2296
  countTextColor: string;
1997
2297
  heightTiny: string;
1998
2298
  heightSmall: string;
1999
2299
  heightMedium: string;
2000
2300
  heightLarge: string;
2301
+ heightHuge: string;
2001
2302
  fontSizeTiny: string;
2002
2303
  fontSizeSmall: string;
2003
2304
  fontSizeMedium: string;
2004
2305
  fontSizeLarge: string;
2306
+ fontSizeHuge: string;
2005
2307
  lineHeight: string;
2006
2308
  lineHeightTextarea: string;
2007
2309
  borderRadius: string;
2008
2310
  iconSize: string;
2009
- groupLabelColor: string;
2010
2311
  groupLabelTextColor: string;
2011
2312
  textColor: string;
2012
2313
  textColorDisabled: string;
@@ -2046,38 +2347,41 @@ declare const _default: import("vue").DefineComponent<{
2046
2347
  iconColorHover: string;
2047
2348
  iconColorPressed: string;
2048
2349
  suffixTextColor: string;
2049
- paddingTiny: string;
2050
- paddingSmall: string;
2051
- paddingMedium: string;
2052
- paddingLarge: string;
2053
- clearSize: string;
2350
+ selectionColor: string;
2054
2351
  }, any>;
2055
2352
  Popselect: import("../../_mixins").Theme<"Popselect", {
2056
2353
  menuBoxShadow: string;
2057
2354
  }, {
2058
2355
  Popover: import("../../_mixins").Theme<"Popover", {
2059
- fontSize: string;
2060
- borderRadius: string;
2061
- color: string;
2062
- dividerColor: string;
2063
- textColor: string;
2064
- boxShadow: string;
2065
2356
  space: string;
2066
2357
  spaceArrow: string;
2067
2358
  arrowOffset: string;
2068
2359
  arrowOffsetVertical: string;
2069
2360
  arrowHeight: string;
2070
2361
  padding: string;
2362
+ fontSize: string;
2363
+ borderRadius: string;
2364
+ color: string;
2365
+ dividerColor: string;
2366
+ textColor: string;
2367
+ boxShadow: string;
2071
2368
  }, any>;
2072
2369
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2370
+ height: string;
2371
+ paddingSmall: string;
2372
+ paddingMedium: string;
2373
+ paddingLarge: string;
2374
+ optionPaddingSmall: string;
2375
+ optionPaddingMedium: string;
2376
+ optionPaddingLarge: string;
2377
+ loadingSize: string;
2073
2378
  optionFontSizeSmall: string;
2074
2379
  optionFontSizeMedium: string;
2075
2380
  optionFontSizeLarge: string;
2076
- optionFontSizeHuge: string;
2077
2381
  optionHeightSmall: string;
2078
2382
  optionHeightMedium: string;
2079
2383
  optionHeightLarge: string;
2080
- optionHeightHuge: string;
2384
+ optionBorderRadius: string;
2081
2385
  borderRadius: string;
2082
2386
  color: string;
2083
2387
  groupHeaderTextColor: string;
@@ -2094,22 +2398,16 @@ declare const _default: import("vue").DefineComponent<{
2094
2398
  optionColorActivePending: string;
2095
2399
  actionTextColor: string;
2096
2400
  loadingColor: string;
2097
- height: string;
2098
- paddingSmall: string;
2099
- paddingMedium: string;
2100
- paddingLarge: string;
2101
- paddingHuge: string;
2102
- optionPaddingSmall: string;
2103
- optionPaddingMedium: string;
2104
- optionPaddingLarge: string;
2105
- optionPaddingHuge: string;
2106
- loadingSize: string;
2107
2401
  }, {
2108
2402
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2109
2403
  color: string;
2110
2404
  colorHover: string;
2111
2405
  }, any>;
2112
2406
  Empty: import("../../_mixins").Theme<"Empty", {
2407
+ iconSizeSmall: string;
2408
+ iconSizeMedium: string;
2409
+ iconSizeLarge: string;
2410
+ iconSizeHuge: string;
2113
2411
  fontSizeSmall: string;
2114
2412
  fontSizeMedium: string;
2115
2413
  fontSizeLarge: string;
@@ -2117,10 +2415,6 @@ declare const _default: import("vue").DefineComponent<{
2117
2415
  textColor: string;
2118
2416
  iconColor: string;
2119
2417
  extraTextColor: string;
2120
- iconSizeSmall: string;
2121
- iconSizeMedium: string;
2122
- iconSizeLarge: string;
2123
- iconSizeHuge: string;
2124
2418
  }, any>;
2125
2419
  }>;
2126
2420
  }>;
@@ -2143,127 +2437,149 @@ declare const _default: import("vue").DefineComponent<{
2143
2437
  selectSize: import("vue").ComputedRef<SelectSize>;
2144
2438
  mergedTheme: import("vue").ComputedRef<{
2145
2439
  common: {
2146
- baseColor: string;
2147
- primaryColor: string;
2148
- primaryColorHover: string;
2149
- primaryColorPressed: string;
2150
- primaryColorSuppl: string;
2151
- infoColor: string;
2152
- infoColorHover: string;
2153
- infoColorPressed: string;
2154
- infoColorSuppl: string;
2155
- successColor: string;
2156
- successColorHover: string;
2157
- successColorPressed: string;
2158
- successColorSuppl: string;
2159
- warningColor: string;
2160
- warningColorHover: string;
2161
- warningColorPressed: string;
2162
- warningColorSuppl: string;
2163
- errorColor: string;
2164
- errorColorHover: string;
2165
- errorColorPressed: string;
2166
- errorColorSuppl: string;
2167
- tertiaryColor: string;
2168
- tertiaryColorHover: string;
2169
- tertiaryColorActive: string;
2170
- tertiaryColorSuppl: string;
2171
- tertiaryElements: string;
2172
- textColorBase: string;
2173
- textColor1: string;
2174
- textColor2: string;
2175
- textColor3: string;
2176
- textTertiary: string;
2177
- boxShadowHover: string;
2178
- boxShadowFocus: string;
2179
- boxShadowHoverChecked: string;
2180
- boxShadowFocusChecked: string;
2181
- textColorDisabled: string;
2182
- placeholderColor: string;
2183
- placeholderColorDisabled: string;
2184
- iconColor: string;
2185
- iconColorHover: string;
2186
- iconColorPressed: string;
2187
- iconColorDisabled: string;
2188
- opacity1: string;
2189
- opacity2: string;
2190
- opacity3: string;
2191
- opacity4: string;
2192
- opacity5: string;
2193
- dividerColor: string;
2194
- borderColor: string;
2195
- borderTagColor: string;
2196
- closeIconColor: string;
2197
- closeIconColorHover: string;
2198
- closeIconColorPressed: string;
2199
- closeColorHover: string;
2200
- closeColorPressed: string;
2201
- clearColor: string;
2202
- clearColorHover: string;
2203
- clearColorPressed: string;
2204
2440
  scrollbarColor: string;
2205
2441
  scrollbarColorHover: string;
2206
2442
  scrollbarWidth: string;
2207
2443
  scrollbarHeight: string;
2208
2444
  scrollbarBorderRadius: string;
2209
- progressRailColor: string;
2210
- railColor: string;
2211
- popoverColor: string;
2212
- tableColor: string;
2213
- cardColor: string;
2214
- modalColor: string;
2215
- bodyColor: string;
2216
- tagColor: string;
2217
- avatarColor: string;
2218
- avatarTextColor: string;
2219
- avatarIconColor: string;
2220
- invertedColor: string;
2221
- tooltipColor: string;
2222
- inputColor: string;
2223
- codeColor: string;
2224
- tabColor: string;
2225
- actionColor: string;
2226
- tableHeaderColor: string;
2227
- hoverColor: string;
2228
- tableColorHover: string;
2229
- tableColorStriped: string;
2230
- pressedColor: string;
2231
2445
  opacityDisabled: string;
2232
- inputColorDisabled: string;
2233
- buttonColor2: string;
2234
- buttonColor2Hover: string;
2235
- buttonColor2Pressed: string;
2236
- boxShadow1: string;
2237
- boxShadow2: string;
2238
- boxShadow3: string;
2446
+ brandPrimary50: string;
2447
+ brandPrimary100: string;
2448
+ brandPrimary200: string;
2449
+ brandPrimary300: string;
2450
+ brandPrimary400: string;
2451
+ brandPrimary500: string;
2452
+ brandPrimary550: string;
2453
+ brandPrimary600: string;
2454
+ brandSecondary500: string;
2455
+ brandSecondary300: string;
2456
+ brandSecondary600: string;
2457
+ brandTertiary500: string;
2458
+ brandTertiary300: string;
2459
+ brandTertiary600: string;
2460
+ brandQuaternary500: string;
2461
+ brandQuaternary300: string;
2462
+ brandQuaternary600: string;
2463
+ brandQuinary500: string;
2464
+ brandQuinary300: string;
2465
+ brandQuinary600: string;
2466
+ brandQuinary100: string;
2467
+ surfacePrimary: string;
2468
+ surfaceSecondary: string;
2469
+ containerPrimary: string;
2470
+ containerSecondary: string;
2471
+ textPrimary: string;
2472
+ textSecondary: string;
2473
+ textTertiary: string;
2474
+ textQuaternary: string;
2475
+ textBrand: string;
2476
+ elementsPrimary: string;
2477
+ elementsSecondary: string;
2478
+ elementsTertiary: string;
2479
+ elementsQuaternary: string;
2480
+ elementsQuinary: string;
2481
+ elementsDarkQuinary: string;
2482
+ elementsSenary: string;
2483
+ elementsOnContainer: string;
2484
+ transparencyPrimary: string;
2485
+ transparencySecondary: string;
2486
+ transparencyTertiary: string;
2487
+ transparencyQuinary: string;
2488
+ transparencyModal: string;
2489
+ staticBlack: string;
2490
+ staticDarkGrey: string;
2491
+ staticWhite: string;
2492
+ staticRed: string;
2493
+ staticOrange: string;
2494
+ staticGreen: string;
2495
+ staticErrorAccent: string;
2496
+ shadowDepth2: string;
2239
2497
  fontFamily: string;
2240
2498
  fontFamilyMono: string;
2241
- fontWeight: string;
2242
- fontWeightStrong: string;
2243
2499
  cubicBezierEaseInOut: string;
2244
2500
  cubicBezierEaseOut: string;
2245
2501
  cubicBezierEaseIn: string;
2246
- borderWidth: number;
2247
- borderTagWidth: number;
2502
+ borderRadiusLarge: string;
2248
2503
  borderRadius: string;
2504
+ borderRadiusMedium: string;
2249
2505
  borderRadiusSmall: string;
2250
- fontSize: string;
2251
- fontSizeMini: string;
2252
- fontSizeTiny: string;
2253
- fontSizeSmall: string;
2254
- fontSizeMedium: string;
2255
- fontSizeLarge: string;
2256
- fontSizeHuge: string;
2257
- lineHeight: string;
2506
+ borderRadiusTiny: string;
2258
2507
  heightMini: string;
2259
2508
  heightTiny: string;
2260
2509
  heightSmall: string;
2261
2510
  heightMedium: string;
2262
2511
  heightLarge: string;
2263
2512
  heightHuge: string;
2513
+ fontDisplayLarge: string;
2514
+ fontDisplaySmall: string;
2515
+ fontHeadingLarge: string;
2516
+ fontHeadingMedium: string;
2517
+ fontHeadingSmall: string;
2518
+ fontTitleLarge: string;
2519
+ fontTitleMedium: string;
2520
+ fontTitleSmall: string;
2521
+ fontBodyLarge: string;
2522
+ fontBodyMedium: string;
2523
+ fontBodySmall: string;
2524
+ lineHeightDisplayLarge: string;
2525
+ lineHeightDisplaySmall: string;
2526
+ lineHeightHeadingLarge: string;
2527
+ lineHeightHeadingMedium: string;
2528
+ lineHeightHeadingSmall: string;
2529
+ lineHeightTitleLarge: string;
2530
+ lineHeightTitleMedium: string;
2531
+ lineHeightTitleSmall: string;
2532
+ lineHeightBodyLarge: string;
2533
+ lineHeightBodyMedium: string;
2534
+ lineHeightBodySmall: string;
2535
+ fontWeight: string;
2536
+ fontWeightStrong: string;
2537
+ fontWeightBold: string;
2538
+ iconSmall: string;
2539
+ iconMedium: string;
2540
+ iconLarge: string;
2541
+ iconHuge: string;
2542
+ closeSmall: string;
2543
+ closeMedium: string;
2544
+ closeLarge: string;
2545
+ closeHuge: string;
2546
+ closeBorderRadius: string;
2264
2547
  name: "common";
2265
2548
  };
2266
2549
  self: {
2550
+ itemPaddingSmall: string;
2551
+ itemMarginSmall: string;
2552
+ itemMarginSmallRtl: string;
2553
+ itemPaddingMedium: string;
2554
+ itemMarginMedium: string;
2555
+ itemMarginMediumRtl: string;
2556
+ itemPaddingLarge: string;
2557
+ itemMarginLarge: string;
2558
+ itemMarginLargeRtl: string;
2559
+ buttonIconSizeSmall: string;
2560
+ buttonIconSizeMedium: string;
2561
+ buttonIconSizeLarge: string;
2562
+ inputWidthSmall: string;
2563
+ selectWidthSmall: string;
2564
+ inputMarginSmall: string;
2565
+ inputMarginSmallRtl: string;
2566
+ selectMarginSmall: string;
2567
+ prefixMarginSmall: string;
2568
+ suffixMarginSmall: string;
2569
+ inputWidthMedium: string;
2570
+ selectWidthMedium: string;
2571
+ inputMarginMedium: string;
2572
+ inputMarginMediumRtl: string;
2573
+ selectMarginMedium: string;
2574
+ prefixMarginMedium: string;
2575
+ suffixMarginMedium: string;
2576
+ inputWidthLarge: string;
2577
+ selectWidthLarge: string;
2578
+ inputMarginLarge: string;
2579
+ inputMarginLargeRtl: string;
2580
+ selectMarginLarge: string;
2581
+ prefixMarginLarge: string;
2582
+ suffixMarginLarge: string;
2267
2583
  buttonColor: string;
2268
2584
  buttonColorHover: string;
2269
2585
  buttonColorPressed: string;
@@ -2301,54 +2617,47 @@ declare const _default: import("vue").DefineComponent<{
2301
2617
  jumperFontSizeLarge: string;
2302
2618
  jumperTextColor: string;
2303
2619
  jumperTextColorDisabled: string;
2304
- itemPaddingSmall: string;
2305
- itemMarginSmall: string;
2306
- itemMarginSmallRtl: string;
2307
- itemPaddingMedium: string;
2308
- itemMarginMedium: string;
2309
- itemMarginMediumRtl: string;
2310
- itemPaddingLarge: string;
2311
- itemMarginLarge: string;
2312
- itemMarginLargeRtl: string;
2313
- buttonIconSizeSmall: string;
2314
- buttonIconSizeMedium: string;
2315
- buttonIconSizeLarge: string;
2316
- inputWidthSmall: string;
2317
- selectWidthSmall: string;
2318
- inputMarginSmall: string;
2319
- inputMarginSmallRtl: string;
2320
- selectMarginSmall: string;
2321
- prefixMarginSmall: string;
2322
- suffixMarginSmall: string;
2323
- inputWidthMedium: string;
2324
- selectWidthMedium: string;
2325
- inputMarginMedium: string;
2326
- inputMarginMediumRtl: string;
2327
- selectMarginMedium: string;
2328
- prefixMarginMedium: string;
2329
- suffixMarginMedium: string;
2330
- inputWidthLarge: string;
2331
- selectWidthLarge: string;
2332
- inputMarginLarge: string;
2333
- inputMarginLargeRtl: string;
2334
- selectMarginLarge: string;
2335
- prefixMarginLarge: string;
2336
- suffixMarginLarge: string;
2337
2620
  };
2338
2621
  peers: {
2339
2622
  Select: import("../../_mixins").Theme<"Select", {
2340
2623
  menuBoxShadow: string;
2341
2624
  }, {
2342
2625
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2626
+ paddingTiny: string;
2627
+ paddingSmall: string;
2628
+ paddingMedium: string;
2629
+ paddingLarge: string;
2630
+ paddingHuge: string;
2631
+ clearSizeTiny: string;
2632
+ clearSizeSmall: string;
2633
+ clearSizeMedium: string;
2634
+ clearSizeLarge: string;
2635
+ clearSizeHuge: string;
2636
+ arrowSizeTiny: string;
2637
+ arrowSizeSmall: string;
2638
+ arrowSizeMedium: string;
2639
+ arrowSizeLarge: string;
2640
+ arrowSizeHuge: string;
2343
2641
  fontSizeTiny: string;
2344
2642
  fontSizeSmall: string;
2345
2643
  fontSizeMedium: string;
2346
2644
  fontSizeLarge: string;
2645
+ fontSizeHuge: string;
2646
+ lineHeightTiny: string;
2647
+ lineHeightSmall: string;
2648
+ lineHeightMedium: string;
2649
+ lineHeightLarge: string;
2650
+ lineHeightHuge: string;
2347
2651
  heightTiny: string;
2348
2652
  heightSmall: string;
2349
2653
  heightMedium: string;
2350
2654
  heightLarge: string;
2351
- borderRadius: string;
2655
+ heightHuge: string;
2656
+ borderRadiusTiny: string;
2657
+ borderRadiusSmall: string;
2658
+ borderRadiusMedium: string;
2659
+ borderRadiusLarge: string;
2660
+ borderRadiusHuge: string;
2352
2661
  textColor: string;
2353
2662
  textColorDisabled: string;
2354
2663
  placeholderColor: string;
@@ -2390,35 +2699,68 @@ declare const _default: import("vue").DefineComponent<{
2390
2699
  clearColor: string;
2391
2700
  clearColorHover: string;
2392
2701
  clearColorPressed: string;
2393
- paddingSingle: string;
2394
- paddingMultiple: string;
2395
- clearSize: string;
2396
- arrowSize: string;
2702
+ caretColorSecondary: string;
2703
+ filterCounterTextColor: string;
2704
+ filterCounterSeparatorColor: string;
2705
+ filterCounterTextColorDisabled: string;
2706
+ filterCounterSeparatorColorDisabled: string;
2707
+ arrowColorSecondary: string;
2708
+ clearColorSecondary: string;
2709
+ colorSecondary: string;
2710
+ textColorSecondary: string;
2711
+ borderSecondary: string;
2712
+ arrowColorDisabledSecondary: string;
2713
+ clearColorDisabledSecondary: string;
2714
+ colorDisabledSecondary: string;
2715
+ textColorDisabledSecondary: string;
2716
+ borderDisabledSecondary: string;
2717
+ arrowColorHoverSecondary: string;
2718
+ clearColorHoverSecondary: string;
2719
+ colorHoverSecondary: string;
2720
+ textColorHoverSecondary: string;
2721
+ borderHoverSecondary: string;
2722
+ arrowColorFocusSecondary: string;
2723
+ clearColorFocusSecondary: string;
2724
+ colorFocusSecondary: string;
2725
+ textColorFocusSecondary: string;
2726
+ borderFocusSecondary: string;
2727
+ arrowColorActiveSecondary: string;
2728
+ clearColorActiveSecondary: string;
2729
+ colorActiveSecondary: string;
2730
+ textColorActiveSecondary: string;
2731
+ borderActiveSecondary: string;
2397
2732
  }, {
2398
2733
  Popover: import("../../_mixins").Theme<"Popover", {
2399
- fontSize: string;
2400
- borderRadius: string;
2401
- color: string;
2402
- dividerColor: string;
2403
- textColor: string;
2404
- boxShadow: string;
2405
2734
  space: string;
2406
2735
  spaceArrow: string;
2407
2736
  arrowOffset: string;
2408
2737
  arrowOffsetVertical: string;
2409
2738
  arrowHeight: string;
2410
2739
  padding: string;
2740
+ fontSize: string;
2741
+ borderRadius: string;
2742
+ color: string;
2743
+ dividerColor: string;
2744
+ textColor: string;
2745
+ boxShadow: string;
2411
2746
  }, any>;
2412
2747
  }>;
2413
2748
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2749
+ height: string;
2750
+ paddingSmall: string;
2751
+ paddingMedium: string;
2752
+ paddingLarge: string;
2753
+ optionPaddingSmall: string;
2754
+ optionPaddingMedium: string;
2755
+ optionPaddingLarge: string;
2756
+ loadingSize: string;
2414
2757
  optionFontSizeSmall: string;
2415
2758
  optionFontSizeMedium: string;
2416
2759
  optionFontSizeLarge: string;
2417
- optionFontSizeHuge: string;
2418
2760
  optionHeightSmall: string;
2419
2761
  optionHeightMedium: string;
2420
2762
  optionHeightLarge: string;
2421
- optionHeightHuge: string;
2763
+ optionBorderRadius: string;
2422
2764
  borderRadius: string;
2423
2765
  color: string;
2424
2766
  groupHeaderTextColor: string;
@@ -2435,22 +2777,16 @@ declare const _default: import("vue").DefineComponent<{
2435
2777
  optionColorActivePending: string;
2436
2778
  actionTextColor: string;
2437
2779
  loadingColor: string;
2438
- height: string;
2439
- paddingSmall: string;
2440
- paddingMedium: string;
2441
- paddingLarge: string;
2442
- paddingHuge: string;
2443
- optionPaddingSmall: string;
2444
- optionPaddingMedium: string;
2445
- optionPaddingLarge: string;
2446
- optionPaddingHuge: string;
2447
- loadingSize: string;
2448
2780
  }, {
2449
2781
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2450
2782
  color: string;
2451
2783
  colorHover: string;
2452
2784
  }, any>;
2453
2785
  Empty: import("../../_mixins").Theme<"Empty", {
2786
+ iconSizeSmall: string;
2787
+ iconSizeMedium: string;
2788
+ iconSizeLarge: string;
2789
+ iconSizeHuge: string;
2454
2790
  fontSizeSmall: string;
2455
2791
  fontSizeMedium: string;
2456
2792
  fontSizeLarge: string;
@@ -2458,29 +2794,32 @@ declare const _default: import("vue").DefineComponent<{
2458
2794
  textColor: string;
2459
2795
  iconColor: string;
2460
2796
  extraTextColor: string;
2461
- iconSizeSmall: string;
2462
- iconSizeMedium: string;
2463
- iconSizeLarge: string;
2464
- iconSizeHuge: string;
2465
2797
  }, any>;
2466
2798
  }>;
2467
2799
  }>;
2468
2800
  Input: import("../../_mixins").Theme<"Input", {
2801
+ paddingTiny: string;
2802
+ paddingSmall: string;
2803
+ paddingMedium: string;
2804
+ paddingLarge: string;
2805
+ paddingHuge: string;
2806
+ clearSize: string;
2469
2807
  countTextColorDisabled: string;
2470
2808
  countTextColor: string;
2471
2809
  heightTiny: string;
2472
2810
  heightSmall: string;
2473
2811
  heightMedium: string;
2474
2812
  heightLarge: string;
2813
+ heightHuge: string;
2475
2814
  fontSizeTiny: string;
2476
2815
  fontSizeSmall: string;
2477
2816
  fontSizeMedium: string;
2478
2817
  fontSizeLarge: string;
2818
+ fontSizeHuge: string;
2479
2819
  lineHeight: string;
2480
2820
  lineHeightTextarea: string;
2481
2821
  borderRadius: string;
2482
2822
  iconSize: string;
2483
- groupLabelColor: string;
2484
2823
  groupLabelTextColor: string;
2485
2824
  textColor: string;
2486
2825
  textColorDisabled: string;
@@ -2520,38 +2859,41 @@ declare const _default: import("vue").DefineComponent<{
2520
2859
  iconColorHover: string;
2521
2860
  iconColorPressed: string;
2522
2861
  suffixTextColor: string;
2523
- paddingTiny: string;
2524
- paddingSmall: string;
2525
- paddingMedium: string;
2526
- paddingLarge: string;
2527
- clearSize: string;
2862
+ selectionColor: string;
2528
2863
  }, any>;
2529
2864
  Popselect: import("../../_mixins").Theme<"Popselect", {
2530
2865
  menuBoxShadow: string;
2531
2866
  }, {
2532
2867
  Popover: import("../../_mixins").Theme<"Popover", {
2533
- fontSize: string;
2534
- borderRadius: string;
2535
- color: string;
2536
- dividerColor: string;
2537
- textColor: string;
2538
- boxShadow: string;
2539
2868
  space: string;
2540
2869
  spaceArrow: string;
2541
2870
  arrowOffset: string;
2542
2871
  arrowOffsetVertical: string;
2543
2872
  arrowHeight: string;
2544
2873
  padding: string;
2874
+ fontSize: string;
2875
+ borderRadius: string;
2876
+ color: string;
2877
+ dividerColor: string;
2878
+ textColor: string;
2879
+ boxShadow: string;
2545
2880
  }, any>;
2546
2881
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2882
+ height: string;
2883
+ paddingSmall: string;
2884
+ paddingMedium: string;
2885
+ paddingLarge: string;
2886
+ optionPaddingSmall: string;
2887
+ optionPaddingMedium: string;
2888
+ optionPaddingLarge: string;
2889
+ loadingSize: string;
2547
2890
  optionFontSizeSmall: string;
2548
2891
  optionFontSizeMedium: string;
2549
2892
  optionFontSizeLarge: string;
2550
- optionFontSizeHuge: string;
2551
2893
  optionHeightSmall: string;
2552
2894
  optionHeightMedium: string;
2553
2895
  optionHeightLarge: string;
2554
- optionHeightHuge: string;
2896
+ optionBorderRadius: string;
2555
2897
  borderRadius: string;
2556
2898
  color: string;
2557
2899
  groupHeaderTextColor: string;
@@ -2568,22 +2910,16 @@ declare const _default: import("vue").DefineComponent<{
2568
2910
  optionColorActivePending: string;
2569
2911
  actionTextColor: string;
2570
2912
  loadingColor: string;
2571
- height: string;
2572
- paddingSmall: string;
2573
- paddingMedium: string;
2574
- paddingLarge: string;
2575
- paddingHuge: string;
2576
- optionPaddingSmall: string;
2577
- optionPaddingMedium: string;
2578
- optionPaddingLarge: string;
2579
- optionPaddingHuge: string;
2580
- loadingSize: string;
2581
2913
  }, {
2582
2914
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2583
2915
  color: string;
2584
2916
  colorHover: string;
2585
2917
  }, any>;
2586
2918
  Empty: import("../../_mixins").Theme<"Empty", {
2919
+ iconSizeSmall: string;
2920
+ iconSizeMedium: string;
2921
+ iconSizeLarge: string;
2922
+ iconSizeHuge: string;
2587
2923
  fontSizeSmall: string;
2588
2924
  fontSizeMedium: string;
2589
2925
  fontSizeLarge: string;
@@ -2591,10 +2927,6 @@ declare const _default: import("vue").DefineComponent<{
2591
2927
  textColor: string;
2592
2928
  iconColor: string;
2593
2929
  extraTextColor: string;
2594
- iconSizeSmall: string;
2595
- iconSizeMedium: string;
2596
- iconSizeLarge: string;
2597
- iconSizeHuge: string;
2598
2930
  }, any>;
2599
2931
  }>;
2600
2932
  }>;
@@ -2603,15 +2935,41 @@ declare const _default: import("vue").DefineComponent<{
2603
2935
  Select?: {
2604
2936
  peers?: {
2605
2937
  InternalSelection?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelection", {
2938
+ paddingTiny: string;
2939
+ paddingSmall: string;
2940
+ paddingMedium: string;
2941
+ paddingLarge: string;
2942
+ paddingHuge: string;
2943
+ clearSizeTiny: string;
2944
+ clearSizeSmall: string;
2945
+ clearSizeMedium: string;
2946
+ clearSizeLarge: string;
2947
+ clearSizeHuge: string;
2948
+ arrowSizeTiny: string;
2949
+ arrowSizeSmall: string;
2950
+ arrowSizeMedium: string;
2951
+ arrowSizeLarge: string;
2952
+ arrowSizeHuge: string;
2606
2953
  fontSizeTiny: string;
2607
2954
  fontSizeSmall: string;
2608
2955
  fontSizeMedium: string;
2609
2956
  fontSizeLarge: string;
2957
+ fontSizeHuge: string;
2958
+ lineHeightTiny: string;
2959
+ lineHeightSmall: string;
2960
+ lineHeightMedium: string;
2961
+ lineHeightLarge: string;
2962
+ lineHeightHuge: string;
2610
2963
  heightTiny: string;
2611
2964
  heightSmall: string;
2612
2965
  heightMedium: string;
2613
2966
  heightLarge: string;
2614
- borderRadius: string;
2967
+ heightHuge: string;
2968
+ borderRadiusTiny: string;
2969
+ borderRadiusSmall: string;
2970
+ borderRadiusMedium: string;
2971
+ borderRadiusLarge: string;
2972
+ borderRadiusHuge: string;
2615
2973
  textColor: string;
2616
2974
  textColorDisabled: string;
2617
2975
  placeholderColor: string;
@@ -2653,35 +3011,68 @@ declare const _default: import("vue").DefineComponent<{
2653
3011
  clearColor: string;
2654
3012
  clearColorHover: string;
2655
3013
  clearColorPressed: string;
2656
- paddingSingle: string;
2657
- paddingMultiple: string;
2658
- clearSize: string;
2659
- arrowSize: string;
3014
+ caretColorSecondary: string;
3015
+ filterCounterTextColor: string;
3016
+ filterCounterSeparatorColor: string;
3017
+ filterCounterTextColorDisabled: string;
3018
+ filterCounterSeparatorColorDisabled: string;
3019
+ arrowColorSecondary: string;
3020
+ clearColorSecondary: string;
3021
+ colorSecondary: string;
3022
+ textColorSecondary: string;
3023
+ borderSecondary: string;
3024
+ arrowColorDisabledSecondary: string;
3025
+ clearColorDisabledSecondary: string;
3026
+ colorDisabledSecondary: string;
3027
+ textColorDisabledSecondary: string;
3028
+ borderDisabledSecondary: string;
3029
+ arrowColorHoverSecondary: string;
3030
+ clearColorHoverSecondary: string;
3031
+ colorHoverSecondary: string;
3032
+ textColorHoverSecondary: string;
3033
+ borderHoverSecondary: string;
3034
+ arrowColorFocusSecondary: string;
3035
+ clearColorFocusSecondary: string;
3036
+ colorFocusSecondary: string;
3037
+ textColorFocusSecondary: string;
3038
+ borderFocusSecondary: string;
3039
+ arrowColorActiveSecondary: string;
3040
+ clearColorActiveSecondary: string;
3041
+ colorActiveSecondary: string;
3042
+ textColorActiveSecondary: string;
3043
+ borderActiveSecondary: string;
2660
3044
  }, {
2661
3045
  Popover: import("../../_mixins").Theme<"Popover", {
2662
- fontSize: string;
2663
- borderRadius: string;
2664
- color: string;
2665
- dividerColor: string;
2666
- textColor: string;
2667
- boxShadow: string;
2668
3046
  space: string;
2669
3047
  spaceArrow: string;
2670
3048
  arrowOffset: string;
2671
3049
  arrowOffsetVertical: string;
2672
3050
  arrowHeight: string;
2673
3051
  padding: string;
3052
+ fontSize: string;
3053
+ borderRadius: string;
3054
+ color: string;
3055
+ dividerColor: string;
3056
+ textColor: string;
3057
+ boxShadow: string;
2674
3058
  }, any>;
2675
3059
  }>> | undefined;
2676
3060
  InternalSelectMenu?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelectMenu", {
3061
+ height: string;
3062
+ paddingSmall: string;
3063
+ paddingMedium: string;
3064
+ paddingLarge: string;
3065
+ optionPaddingSmall: string;
3066
+ optionPaddingMedium: string;
3067
+ optionPaddingLarge: string;
3068
+ loadingSize: string;
2677
3069
  optionFontSizeSmall: string;
2678
3070
  optionFontSizeMedium: string;
2679
3071
  optionFontSizeLarge: string;
2680
- optionFontSizeHuge: string;
2681
3072
  optionHeightSmall: string;
2682
3073
  optionHeightMedium: string;
2683
3074
  optionHeightLarge: string;
2684
- optionHeightHuge: string;
3075
+ optionBorderRadius: string;
2685
3076
  borderRadius: string;
2686
3077
  color: string;
2687
3078
  groupHeaderTextColor: string;
@@ -2698,22 +3089,16 @@ declare const _default: import("vue").DefineComponent<{
2698
3089
  optionColorActivePending: string;
2699
3090
  actionTextColor: string;
2700
3091
  loadingColor: string;
2701
- height: string;
2702
- paddingSmall: string;
2703
- paddingMedium: string;
2704
- paddingLarge: string;
2705
- paddingHuge: string;
2706
- optionPaddingSmall: string;
2707
- optionPaddingMedium: string;
2708
- optionPaddingLarge: string;
2709
- optionPaddingHuge: string;
2710
- loadingSize: string;
2711
3092
  }, {
2712
3093
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2713
3094
  color: string;
2714
3095
  colorHover: string;
2715
3096
  }, any>;
2716
3097
  Empty: import("../../_mixins").Theme<"Empty", {
3098
+ iconSizeSmall: string;
3099
+ iconSizeMedium: string;
3100
+ iconSizeLarge: string;
3101
+ iconSizeHuge: string;
2717
3102
  fontSizeSmall: string;
2718
3103
  fontSizeMedium: string;
2719
3104
  fontSizeLarge: string;
@@ -2721,10 +3106,6 @@ declare const _default: import("vue").DefineComponent<{
2721
3106
  textColor: string;
2722
3107
  iconColor: string;
2723
3108
  extraTextColor: string;
2724
- iconSizeSmall: string;
2725
- iconSizeMedium: string;
2726
- iconSizeLarge: string;
2727
- iconSizeHuge: string;
2728
3109
  }, any>;
2729
3110
  }>> | undefined;
2730
3111
  } | undefined;
@@ -2737,28 +3118,35 @@ declare const _default: import("vue").DefineComponent<{
2737
3118
  Popselect?: {
2738
3119
  peers?: {
2739
3120
  Popover?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popover", {
2740
- fontSize: string;
2741
- borderRadius: string;
2742
- color: string;
2743
- dividerColor: string;
2744
- textColor: string;
2745
- boxShadow: string;
2746
3121
  space: string;
2747
3122
  spaceArrow: string;
2748
3123
  arrowOffset: string;
2749
3124
  arrowOffsetVertical: string;
2750
3125
  arrowHeight: string;
2751
3126
  padding: string;
3127
+ fontSize: string;
3128
+ borderRadius: string;
3129
+ color: string;
3130
+ dividerColor: string;
3131
+ textColor: string;
3132
+ boxShadow: string;
2752
3133
  }, any>> | undefined;
2753
3134
  InternalSelectMenu?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelectMenu", {
3135
+ height: string;
3136
+ paddingSmall: string;
3137
+ paddingMedium: string;
3138
+ paddingLarge: string;
3139
+ optionPaddingSmall: string;
3140
+ optionPaddingMedium: string;
3141
+ optionPaddingLarge: string;
3142
+ loadingSize: string;
2754
3143
  optionFontSizeSmall: string;
2755
3144
  optionFontSizeMedium: string;
2756
3145
  optionFontSizeLarge: string;
2757
- optionFontSizeHuge: string;
2758
3146
  optionHeightSmall: string;
2759
3147
  optionHeightMedium: string;
2760
3148
  optionHeightLarge: string;
2761
- optionHeightHuge: string;
3149
+ optionBorderRadius: string;
2762
3150
  borderRadius: string;
2763
3151
  color: string;
2764
3152
  groupHeaderTextColor: string;
@@ -2775,22 +3163,16 @@ declare const _default: import("vue").DefineComponent<{
2775
3163
  optionColorActivePending: string;
2776
3164
  actionTextColor: string;
2777
3165
  loadingColor: string;
2778
- height: string;
2779
- paddingSmall: string;
2780
- paddingMedium: string;
2781
- paddingLarge: string;
2782
- paddingHuge: string;
2783
- optionPaddingSmall: string;
2784
- optionPaddingMedium: string;
2785
- optionPaddingLarge: string;
2786
- optionPaddingHuge: string;
2787
- loadingSize: string;
2788
3166
  }, {
2789
3167
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2790
3168
  color: string;
2791
3169
  colorHover: string;
2792
3170
  }, any>;
2793
3171
  Empty: import("../../_mixins").Theme<"Empty", {
3172
+ iconSizeSmall: string;
3173
+ iconSizeMedium: string;
3174
+ iconSizeLarge: string;
3175
+ iconSizeHuge: string;
2794
3176
  fontSizeSmall: string;
2795
3177
  fontSizeMedium: string;
2796
3178
  fontSizeLarge: string;
@@ -2798,10 +3180,6 @@ declare const _default: import("vue").DefineComponent<{
2798
3180
  textColor: string;
2799
3181
  iconColor: string;
2800
3182
  extraTextColor: string;
2801
- iconSizeSmall: string;
2802
- iconSizeMedium: string;
2803
- iconSizeLarge: string;
2804
- iconSizeHuge: string;
2805
3183
  }, any>;
2806
3184
  }>> | undefined;
2807
3185
  } | undefined;
@@ -2928,6 +3306,39 @@ declare const _default: import("vue").DefineComponent<{
2928
3306
  /** @deprecated */
2929
3307
  readonly onChange: PropType<MaybeArray<(page: number) => void>>;
2930
3308
  readonly theme: PropType<import("../../_mixins").Theme<"Pagination", {
3309
+ itemPaddingSmall: string;
3310
+ itemMarginSmall: string;
3311
+ itemMarginSmallRtl: string;
3312
+ itemPaddingMedium: string;
3313
+ itemMarginMedium: string;
3314
+ itemMarginMediumRtl: string;
3315
+ itemPaddingLarge: string;
3316
+ itemMarginLarge: string;
3317
+ itemMarginLargeRtl: string;
3318
+ buttonIconSizeSmall: string;
3319
+ buttonIconSizeMedium: string;
3320
+ buttonIconSizeLarge: string;
3321
+ inputWidthSmall: string;
3322
+ selectWidthSmall: string;
3323
+ inputMarginSmall: string;
3324
+ inputMarginSmallRtl: string;
3325
+ selectMarginSmall: string;
3326
+ prefixMarginSmall: string;
3327
+ suffixMarginSmall: string;
3328
+ inputWidthMedium: string;
3329
+ selectWidthMedium: string;
3330
+ inputMarginMedium: string;
3331
+ inputMarginMediumRtl: string;
3332
+ selectMarginMedium: string;
3333
+ prefixMarginMedium: string;
3334
+ suffixMarginMedium: string;
3335
+ inputWidthLarge: string;
3336
+ selectWidthLarge: string;
3337
+ inputMarginLarge: string;
3338
+ inputMarginLargeRtl: string;
3339
+ selectMarginLarge: string;
3340
+ prefixMarginLarge: string;
3341
+ suffixMarginLarge: string;
2931
3342
  buttonColor: string;
2932
3343
  buttonColorHover: string;
2933
3344
  buttonColorPressed: string;
@@ -2965,53 +3376,46 @@ declare const _default: import("vue").DefineComponent<{
2965
3376
  jumperFontSizeLarge: string;
2966
3377
  jumperTextColor: string;
2967
3378
  jumperTextColorDisabled: string;
2968
- itemPaddingSmall: string;
2969
- itemMarginSmall: string;
2970
- itemMarginSmallRtl: string;
2971
- itemPaddingMedium: string;
2972
- itemMarginMedium: string;
2973
- itemMarginMediumRtl: string;
2974
- itemPaddingLarge: string;
2975
- itemMarginLarge: string;
2976
- itemMarginLargeRtl: string;
2977
- buttonIconSizeSmall: string;
2978
- buttonIconSizeMedium: string;
2979
- buttonIconSizeLarge: string;
2980
- inputWidthSmall: string;
2981
- selectWidthSmall: string;
2982
- inputMarginSmall: string;
2983
- inputMarginSmallRtl: string;
2984
- selectMarginSmall: string;
2985
- prefixMarginSmall: string;
2986
- suffixMarginSmall: string;
2987
- inputWidthMedium: string;
2988
- selectWidthMedium: string;
2989
- inputMarginMedium: string;
2990
- inputMarginMediumRtl: string;
2991
- selectMarginMedium: string;
2992
- prefixMarginMedium: string;
2993
- suffixMarginMedium: string;
2994
- inputWidthLarge: string;
2995
- selectWidthLarge: string;
2996
- inputMarginLarge: string;
2997
- inputMarginLargeRtl: string;
2998
- selectMarginLarge: string;
2999
- prefixMarginLarge: string;
3000
- suffixMarginLarge: string;
3001
3379
  }, {
3002
3380
  Select: import("../../_mixins").Theme<"Select", {
3003
3381
  menuBoxShadow: string;
3004
3382
  }, {
3005
3383
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
3384
+ paddingTiny: string;
3385
+ paddingSmall: string;
3386
+ paddingMedium: string;
3387
+ paddingLarge: string;
3388
+ paddingHuge: string;
3389
+ clearSizeTiny: string;
3390
+ clearSizeSmall: string;
3391
+ clearSizeMedium: string;
3392
+ clearSizeLarge: string;
3393
+ clearSizeHuge: string;
3394
+ arrowSizeTiny: string;
3395
+ arrowSizeSmall: string;
3396
+ arrowSizeMedium: string;
3397
+ arrowSizeLarge: string;
3398
+ arrowSizeHuge: string;
3006
3399
  fontSizeTiny: string;
3007
3400
  fontSizeSmall: string;
3008
3401
  fontSizeMedium: string;
3009
3402
  fontSizeLarge: string;
3403
+ fontSizeHuge: string;
3404
+ lineHeightTiny: string;
3405
+ lineHeightSmall: string;
3406
+ lineHeightMedium: string;
3407
+ lineHeightLarge: string;
3408
+ lineHeightHuge: string;
3010
3409
  heightTiny: string;
3011
3410
  heightSmall: string;
3012
3411
  heightMedium: string;
3013
3412
  heightLarge: string;
3014
- borderRadius: string;
3413
+ heightHuge: string;
3414
+ borderRadiusTiny: string;
3415
+ borderRadiusSmall: string;
3416
+ borderRadiusMedium: string;
3417
+ borderRadiusLarge: string;
3418
+ borderRadiusHuge: string;
3015
3419
  textColor: string;
3016
3420
  textColorDisabled: string;
3017
3421
  placeholderColor: string;
@@ -3053,35 +3457,68 @@ declare const _default: import("vue").DefineComponent<{
3053
3457
  clearColor: string;
3054
3458
  clearColorHover: string;
3055
3459
  clearColorPressed: string;
3056
- paddingSingle: string;
3057
- paddingMultiple: string;
3058
- clearSize: string;
3059
- arrowSize: string;
3460
+ caretColorSecondary: string;
3461
+ filterCounterTextColor: string;
3462
+ filterCounterSeparatorColor: string;
3463
+ filterCounterTextColorDisabled: string;
3464
+ filterCounterSeparatorColorDisabled: string;
3465
+ arrowColorSecondary: string;
3466
+ clearColorSecondary: string;
3467
+ colorSecondary: string;
3468
+ textColorSecondary: string;
3469
+ borderSecondary: string;
3470
+ arrowColorDisabledSecondary: string;
3471
+ clearColorDisabledSecondary: string;
3472
+ colorDisabledSecondary: string;
3473
+ textColorDisabledSecondary: string;
3474
+ borderDisabledSecondary: string;
3475
+ arrowColorHoverSecondary: string;
3476
+ clearColorHoverSecondary: string;
3477
+ colorHoverSecondary: string;
3478
+ textColorHoverSecondary: string;
3479
+ borderHoverSecondary: string;
3480
+ arrowColorFocusSecondary: string;
3481
+ clearColorFocusSecondary: string;
3482
+ colorFocusSecondary: string;
3483
+ textColorFocusSecondary: string;
3484
+ borderFocusSecondary: string;
3485
+ arrowColorActiveSecondary: string;
3486
+ clearColorActiveSecondary: string;
3487
+ colorActiveSecondary: string;
3488
+ textColorActiveSecondary: string;
3489
+ borderActiveSecondary: string;
3060
3490
  }, {
3061
3491
  Popover: import("../../_mixins").Theme<"Popover", {
3062
- fontSize: string;
3063
- borderRadius: string;
3064
- color: string;
3065
- dividerColor: string;
3066
- textColor: string;
3067
- boxShadow: string;
3068
3492
  space: string;
3069
3493
  spaceArrow: string;
3070
3494
  arrowOffset: string;
3071
3495
  arrowOffsetVertical: string;
3072
3496
  arrowHeight: string;
3073
3497
  padding: string;
3498
+ fontSize: string;
3499
+ borderRadius: string;
3500
+ color: string;
3501
+ dividerColor: string;
3502
+ textColor: string;
3503
+ boxShadow: string;
3074
3504
  }, any>;
3075
3505
  }>;
3076
3506
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3507
+ height: string;
3508
+ paddingSmall: string;
3509
+ paddingMedium: string;
3510
+ paddingLarge: string;
3511
+ optionPaddingSmall: string;
3512
+ optionPaddingMedium: string;
3513
+ optionPaddingLarge: string;
3514
+ loadingSize: string;
3077
3515
  optionFontSizeSmall: string;
3078
3516
  optionFontSizeMedium: string;
3079
3517
  optionFontSizeLarge: string;
3080
- optionFontSizeHuge: string;
3081
3518
  optionHeightSmall: string;
3082
3519
  optionHeightMedium: string;
3083
3520
  optionHeightLarge: string;
3084
- optionHeightHuge: string;
3521
+ optionBorderRadius: string;
3085
3522
  borderRadius: string;
3086
3523
  color: string;
3087
3524
  groupHeaderTextColor: string;
@@ -3098,22 +3535,16 @@ declare const _default: import("vue").DefineComponent<{
3098
3535
  optionColorActivePending: string;
3099
3536
  actionTextColor: string;
3100
3537
  loadingColor: string;
3101
- height: string;
3102
- paddingSmall: string;
3103
- paddingMedium: string;
3104
- paddingLarge: string;
3105
- paddingHuge: string;
3106
- optionPaddingSmall: string;
3107
- optionPaddingMedium: string;
3108
- optionPaddingLarge: string;
3109
- optionPaddingHuge: string;
3110
- loadingSize: string;
3111
3538
  }, {
3112
3539
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3113
3540
  color: string;
3114
3541
  colorHover: string;
3115
3542
  }, any>;
3116
3543
  Empty: import("../../_mixins").Theme<"Empty", {
3544
+ iconSizeSmall: string;
3545
+ iconSizeMedium: string;
3546
+ iconSizeLarge: string;
3547
+ iconSizeHuge: string;
3117
3548
  fontSizeSmall: string;
3118
3549
  fontSizeMedium: string;
3119
3550
  fontSizeLarge: string;
@@ -3121,29 +3552,32 @@ declare const _default: import("vue").DefineComponent<{
3121
3552
  textColor: string;
3122
3553
  iconColor: string;
3123
3554
  extraTextColor: string;
3124
- iconSizeSmall: string;
3125
- iconSizeMedium: string;
3126
- iconSizeLarge: string;
3127
- iconSizeHuge: string;
3128
3555
  }, any>;
3129
3556
  }>;
3130
3557
  }>;
3131
3558
  Input: import("../../_mixins").Theme<"Input", {
3559
+ paddingTiny: string;
3560
+ paddingSmall: string;
3561
+ paddingMedium: string;
3562
+ paddingLarge: string;
3563
+ paddingHuge: string;
3564
+ clearSize: string;
3132
3565
  countTextColorDisabled: string;
3133
3566
  countTextColor: string;
3134
3567
  heightTiny: string;
3135
3568
  heightSmall: string;
3136
3569
  heightMedium: string;
3137
3570
  heightLarge: string;
3571
+ heightHuge: string;
3138
3572
  fontSizeTiny: string;
3139
3573
  fontSizeSmall: string;
3140
3574
  fontSizeMedium: string;
3141
3575
  fontSizeLarge: string;
3576
+ fontSizeHuge: string;
3142
3577
  lineHeight: string;
3143
3578
  lineHeightTextarea: string;
3144
3579
  borderRadius: string;
3145
3580
  iconSize: string;
3146
- groupLabelColor: string;
3147
3581
  groupLabelTextColor: string;
3148
3582
  textColor: string;
3149
3583
  textColorDisabled: string;
@@ -3183,38 +3617,41 @@ declare const _default: import("vue").DefineComponent<{
3183
3617
  iconColorHover: string;
3184
3618
  iconColorPressed: string;
3185
3619
  suffixTextColor: string;
3186
- paddingTiny: string;
3187
- paddingSmall: string;
3188
- paddingMedium: string;
3189
- paddingLarge: string;
3190
- clearSize: string;
3620
+ selectionColor: string;
3191
3621
  }, any>;
3192
3622
  Popselect: import("../../_mixins").Theme<"Popselect", {
3193
3623
  menuBoxShadow: string;
3194
3624
  }, {
3195
3625
  Popover: import("../../_mixins").Theme<"Popover", {
3196
- fontSize: string;
3197
- borderRadius: string;
3198
- color: string;
3199
- dividerColor: string;
3200
- textColor: string;
3201
- boxShadow: string;
3202
3626
  space: string;
3203
3627
  spaceArrow: string;
3204
3628
  arrowOffset: string;
3205
3629
  arrowOffsetVertical: string;
3206
3630
  arrowHeight: string;
3207
3631
  padding: string;
3632
+ fontSize: string;
3633
+ borderRadius: string;
3634
+ color: string;
3635
+ dividerColor: string;
3636
+ textColor: string;
3637
+ boxShadow: string;
3208
3638
  }, any>;
3209
3639
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3640
+ height: string;
3641
+ paddingSmall: string;
3642
+ paddingMedium: string;
3643
+ paddingLarge: string;
3644
+ optionPaddingSmall: string;
3645
+ optionPaddingMedium: string;
3646
+ optionPaddingLarge: string;
3647
+ loadingSize: string;
3210
3648
  optionFontSizeSmall: string;
3211
3649
  optionFontSizeMedium: string;
3212
3650
  optionFontSizeLarge: string;
3213
- optionFontSizeHuge: string;
3214
3651
  optionHeightSmall: string;
3215
3652
  optionHeightMedium: string;
3216
3653
  optionHeightLarge: string;
3217
- optionHeightHuge: string;
3654
+ optionBorderRadius: string;
3218
3655
  borderRadius: string;
3219
3656
  color: string;
3220
3657
  groupHeaderTextColor: string;
@@ -3231,22 +3668,16 @@ declare const _default: import("vue").DefineComponent<{
3231
3668
  optionColorActivePending: string;
3232
3669
  actionTextColor: string;
3233
3670
  loadingColor: string;
3234
- height: string;
3235
- paddingSmall: string;
3236
- paddingMedium: string;
3237
- paddingLarge: string;
3238
- paddingHuge: string;
3239
- optionPaddingSmall: string;
3240
- optionPaddingMedium: string;
3241
- optionPaddingLarge: string;
3242
- optionPaddingHuge: string;
3243
- loadingSize: string;
3244
3671
  }, {
3245
3672
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3246
3673
  color: string;
3247
3674
  colorHover: string;
3248
3675
  }, any>;
3249
3676
  Empty: import("../../_mixins").Theme<"Empty", {
3677
+ iconSizeSmall: string;
3678
+ iconSizeMedium: string;
3679
+ iconSizeLarge: string;
3680
+ iconSizeHuge: string;
3250
3681
  fontSizeSmall: string;
3251
3682
  fontSizeMedium: string;
3252
3683
  fontSizeLarge: string;
@@ -3254,52 +3685,11 @@ declare const _default: import("vue").DefineComponent<{
3254
3685
  textColor: string;
3255
3686
  iconColor: string;
3256
3687
  extraTextColor: string;
3257
- iconSizeSmall: string;
3258
- iconSizeMedium: string;
3259
- iconSizeLarge: string;
3260
- iconSizeHuge: string;
3261
3688
  }, any>;
3262
3689
  }>;
3263
3690
  }>;
3264
3691
  }>>;
3265
3692
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
3266
- buttonColor: string;
3267
- buttonColorHover: string;
3268
- buttonColorPressed: string;
3269
- buttonBorder: string;
3270
- buttonBorderHover: string;
3271
- buttonBorderPressed: string;
3272
- buttonIconColor: string;
3273
- buttonIconColorHover: string;
3274
- buttonIconColorPressed: string;
3275
- itemTextColor: string;
3276
- itemTextColorHover: string;
3277
- itemTextColorPressed: string;
3278
- itemTextColorActive: string;
3279
- itemTextColorDisabled: string;
3280
- itemColor: string;
3281
- itemColorHover: string;
3282
- itemColorPressed: string;
3283
- itemColorActive: string;
3284
- itemColorActiveHover: string;
3285
- itemColorDisabled: string;
3286
- itemBorder: string;
3287
- itemBorderHover: string;
3288
- itemBorderPressed: string;
3289
- itemBorderActive: string;
3290
- itemBorderDisabled: string;
3291
- itemBorderRadius: string;
3292
- itemSizeSmall: string;
3293
- itemSizeMedium: string;
3294
- itemSizeLarge: string;
3295
- itemFontSizeSmall: string;
3296
- itemFontSizeMedium: string;
3297
- itemFontSizeLarge: string;
3298
- jumperFontSizeSmall: string;
3299
- jumperFontSizeMedium: string;
3300
- jumperFontSizeLarge: string;
3301
- jumperTextColor: string;
3302
- jumperTextColorDisabled: string;
3303
3693
  itemPaddingSmall: string;
3304
3694
  itemMarginSmall: string;
3305
3695
  itemMarginSmallRtl: string;
@@ -3333,20 +3723,83 @@ declare const _default: import("vue").DefineComponent<{
3333
3723
  selectMarginLarge: string;
3334
3724
  prefixMarginLarge: string;
3335
3725
  suffixMarginLarge: string;
3726
+ buttonColor: string;
3727
+ buttonColorHover: string;
3728
+ buttonColorPressed: string;
3729
+ buttonBorder: string;
3730
+ buttonBorderHover: string;
3731
+ buttonBorderPressed: string;
3732
+ buttonIconColor: string;
3733
+ buttonIconColorHover: string;
3734
+ buttonIconColorPressed: string;
3735
+ itemTextColor: string;
3736
+ itemTextColorHover: string;
3737
+ itemTextColorPressed: string;
3738
+ itemTextColorActive: string;
3739
+ itemTextColorDisabled: string;
3740
+ itemColor: string;
3741
+ itemColorHover: string;
3742
+ itemColorPressed: string;
3743
+ itemColorActive: string;
3744
+ itemColorActiveHover: string;
3745
+ itemColorDisabled: string;
3746
+ itemBorder: string;
3747
+ itemBorderHover: string;
3748
+ itemBorderPressed: string;
3749
+ itemBorderActive: string;
3750
+ itemBorderDisabled: string;
3751
+ itemBorderRadius: string;
3752
+ itemSizeSmall: string;
3753
+ itemSizeMedium: string;
3754
+ itemSizeLarge: string;
3755
+ itemFontSizeSmall: string;
3756
+ itemFontSizeMedium: string;
3757
+ itemFontSizeLarge: string;
3758
+ jumperFontSizeSmall: string;
3759
+ jumperFontSizeMedium: string;
3760
+ jumperFontSizeLarge: string;
3761
+ jumperTextColor: string;
3762
+ jumperTextColorDisabled: string;
3336
3763
  }, {
3337
3764
  Select: import("../../_mixins").Theme<"Select", {
3338
3765
  menuBoxShadow: string;
3339
3766
  }, {
3340
3767
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
3768
+ paddingTiny: string;
3769
+ paddingSmall: string;
3770
+ paddingMedium: string;
3771
+ paddingLarge: string;
3772
+ paddingHuge: string;
3773
+ clearSizeTiny: string;
3774
+ clearSizeSmall: string;
3775
+ clearSizeMedium: string;
3776
+ clearSizeLarge: string;
3777
+ clearSizeHuge: string;
3778
+ arrowSizeTiny: string;
3779
+ arrowSizeSmall: string;
3780
+ arrowSizeMedium: string;
3781
+ arrowSizeLarge: string;
3782
+ arrowSizeHuge: string;
3341
3783
  fontSizeTiny: string;
3342
3784
  fontSizeSmall: string;
3343
3785
  fontSizeMedium: string;
3344
3786
  fontSizeLarge: string;
3787
+ fontSizeHuge: string;
3788
+ lineHeightTiny: string;
3789
+ lineHeightSmall: string;
3790
+ lineHeightMedium: string;
3791
+ lineHeightLarge: string;
3792
+ lineHeightHuge: string;
3345
3793
  heightTiny: string;
3346
3794
  heightSmall: string;
3347
3795
  heightMedium: string;
3348
3796
  heightLarge: string;
3349
- borderRadius: string;
3797
+ heightHuge: string;
3798
+ borderRadiusTiny: string;
3799
+ borderRadiusSmall: string;
3800
+ borderRadiusMedium: string;
3801
+ borderRadiusLarge: string;
3802
+ borderRadiusHuge: string;
3350
3803
  textColor: string;
3351
3804
  textColorDisabled: string;
3352
3805
  placeholderColor: string;
@@ -3388,35 +3841,68 @@ declare const _default: import("vue").DefineComponent<{
3388
3841
  clearColor: string;
3389
3842
  clearColorHover: string;
3390
3843
  clearColorPressed: string;
3391
- paddingSingle: string;
3392
- paddingMultiple: string;
3393
- clearSize: string;
3394
- arrowSize: string;
3844
+ caretColorSecondary: string;
3845
+ filterCounterTextColor: string;
3846
+ filterCounterSeparatorColor: string;
3847
+ filterCounterTextColorDisabled: string;
3848
+ filterCounterSeparatorColorDisabled: string;
3849
+ arrowColorSecondary: string;
3850
+ clearColorSecondary: string;
3851
+ colorSecondary: string;
3852
+ textColorSecondary: string;
3853
+ borderSecondary: string;
3854
+ arrowColorDisabledSecondary: string;
3855
+ clearColorDisabledSecondary: string;
3856
+ colorDisabledSecondary: string;
3857
+ textColorDisabledSecondary: string;
3858
+ borderDisabledSecondary: string;
3859
+ arrowColorHoverSecondary: string;
3860
+ clearColorHoverSecondary: string;
3861
+ colorHoverSecondary: string;
3862
+ textColorHoverSecondary: string;
3863
+ borderHoverSecondary: string;
3864
+ arrowColorFocusSecondary: string;
3865
+ clearColorFocusSecondary: string;
3866
+ colorFocusSecondary: string;
3867
+ textColorFocusSecondary: string;
3868
+ borderFocusSecondary: string;
3869
+ arrowColorActiveSecondary: string;
3870
+ clearColorActiveSecondary: string;
3871
+ colorActiveSecondary: string;
3872
+ textColorActiveSecondary: string;
3873
+ borderActiveSecondary: string;
3395
3874
  }, {
3396
3875
  Popover: import("../../_mixins").Theme<"Popover", {
3397
- fontSize: string;
3398
- borderRadius: string;
3399
- color: string;
3400
- dividerColor: string;
3401
- textColor: string;
3402
- boxShadow: string;
3403
3876
  space: string;
3404
3877
  spaceArrow: string;
3405
3878
  arrowOffset: string;
3406
3879
  arrowOffsetVertical: string;
3407
3880
  arrowHeight: string;
3408
3881
  padding: string;
3882
+ fontSize: string;
3883
+ borderRadius: string;
3884
+ color: string;
3885
+ dividerColor: string;
3886
+ textColor: string;
3887
+ boxShadow: string;
3409
3888
  }, any>;
3410
3889
  }>;
3411
3890
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3891
+ height: string;
3892
+ paddingSmall: string;
3893
+ paddingMedium: string;
3894
+ paddingLarge: string;
3895
+ optionPaddingSmall: string;
3896
+ optionPaddingMedium: string;
3897
+ optionPaddingLarge: string;
3898
+ loadingSize: string;
3412
3899
  optionFontSizeSmall: string;
3413
3900
  optionFontSizeMedium: string;
3414
3901
  optionFontSizeLarge: string;
3415
- optionFontSizeHuge: string;
3416
3902
  optionHeightSmall: string;
3417
3903
  optionHeightMedium: string;
3418
3904
  optionHeightLarge: string;
3419
- optionHeightHuge: string;
3905
+ optionBorderRadius: string;
3420
3906
  borderRadius: string;
3421
3907
  color: string;
3422
3908
  groupHeaderTextColor: string;
@@ -3433,22 +3919,16 @@ declare const _default: import("vue").DefineComponent<{
3433
3919
  optionColorActivePending: string;
3434
3920
  actionTextColor: string;
3435
3921
  loadingColor: string;
3436
- height: string;
3437
- paddingSmall: string;
3438
- paddingMedium: string;
3439
- paddingLarge: string;
3440
- paddingHuge: string;
3441
- optionPaddingSmall: string;
3442
- optionPaddingMedium: string;
3443
- optionPaddingLarge: string;
3444
- optionPaddingHuge: string;
3445
- loadingSize: string;
3446
3922
  }, {
3447
3923
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3448
3924
  color: string;
3449
3925
  colorHover: string;
3450
3926
  }, any>;
3451
3927
  Empty: import("../../_mixins").Theme<"Empty", {
3928
+ iconSizeSmall: string;
3929
+ iconSizeMedium: string;
3930
+ iconSizeLarge: string;
3931
+ iconSizeHuge: string;
3452
3932
  fontSizeSmall: string;
3453
3933
  fontSizeMedium: string;
3454
3934
  fontSizeLarge: string;
@@ -3456,29 +3936,32 @@ declare const _default: import("vue").DefineComponent<{
3456
3936
  textColor: string;
3457
3937
  iconColor: string;
3458
3938
  extraTextColor: string;
3459
- iconSizeSmall: string;
3460
- iconSizeMedium: string;
3461
- iconSizeLarge: string;
3462
- iconSizeHuge: string;
3463
3939
  }, any>;
3464
3940
  }>;
3465
3941
  }>;
3466
3942
  Input: import("../../_mixins").Theme<"Input", {
3943
+ paddingTiny: string;
3944
+ paddingSmall: string;
3945
+ paddingMedium: string;
3946
+ paddingLarge: string;
3947
+ paddingHuge: string;
3948
+ clearSize: string;
3467
3949
  countTextColorDisabled: string;
3468
3950
  countTextColor: string;
3469
3951
  heightTiny: string;
3470
3952
  heightSmall: string;
3471
3953
  heightMedium: string;
3472
3954
  heightLarge: string;
3955
+ heightHuge: string;
3473
3956
  fontSizeTiny: string;
3474
3957
  fontSizeSmall: string;
3475
3958
  fontSizeMedium: string;
3476
3959
  fontSizeLarge: string;
3960
+ fontSizeHuge: string;
3477
3961
  lineHeight: string;
3478
3962
  lineHeightTextarea: string;
3479
3963
  borderRadius: string;
3480
3964
  iconSize: string;
3481
- groupLabelColor: string;
3482
3965
  groupLabelTextColor: string;
3483
3966
  textColor: string;
3484
3967
  textColorDisabled: string;
@@ -3518,38 +4001,41 @@ declare const _default: import("vue").DefineComponent<{
3518
4001
  iconColorHover: string;
3519
4002
  iconColorPressed: string;
3520
4003
  suffixTextColor: string;
3521
- paddingTiny: string;
3522
- paddingSmall: string;
3523
- paddingMedium: string;
3524
- paddingLarge: string;
3525
- clearSize: string;
4004
+ selectionColor: string;
3526
4005
  }, any>;
3527
4006
  Popselect: import("../../_mixins").Theme<"Popselect", {
3528
4007
  menuBoxShadow: string;
3529
4008
  }, {
3530
4009
  Popover: import("../../_mixins").Theme<"Popover", {
3531
- fontSize: string;
3532
- borderRadius: string;
3533
- color: string;
3534
- dividerColor: string;
3535
- textColor: string;
3536
- boxShadow: string;
3537
4010
  space: string;
3538
4011
  spaceArrow: string;
3539
4012
  arrowOffset: string;
3540
4013
  arrowOffsetVertical: string;
3541
4014
  arrowHeight: string;
3542
4015
  padding: string;
4016
+ fontSize: string;
4017
+ borderRadius: string;
4018
+ color: string;
4019
+ dividerColor: string;
4020
+ textColor: string;
4021
+ boxShadow: string;
3543
4022
  }, any>;
3544
4023
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4024
+ height: string;
4025
+ paddingSmall: string;
4026
+ paddingMedium: string;
4027
+ paddingLarge: string;
4028
+ optionPaddingSmall: string;
4029
+ optionPaddingMedium: string;
4030
+ optionPaddingLarge: string;
4031
+ loadingSize: string;
3545
4032
  optionFontSizeSmall: string;
3546
4033
  optionFontSizeMedium: string;
3547
4034
  optionFontSizeLarge: string;
3548
- optionFontSizeHuge: string;
3549
4035
  optionHeightSmall: string;
3550
4036
  optionHeightMedium: string;
3551
4037
  optionHeightLarge: string;
3552
- optionHeightHuge: string;
4038
+ optionBorderRadius: string;
3553
4039
  borderRadius: string;
3554
4040
  color: string;
3555
4041
  groupHeaderTextColor: string;
@@ -3566,22 +4052,16 @@ declare const _default: import("vue").DefineComponent<{
3566
4052
  optionColorActivePending: string;
3567
4053
  actionTextColor: string;
3568
4054
  loadingColor: string;
3569
- height: string;
3570
- paddingSmall: string;
3571
- paddingMedium: string;
3572
- paddingLarge: string;
3573
- paddingHuge: string;
3574
- optionPaddingSmall: string;
3575
- optionPaddingMedium: string;
3576
- optionPaddingLarge: string;
3577
- optionPaddingHuge: string;
3578
- loadingSize: string;
3579
4055
  }, {
3580
4056
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3581
4057
  color: string;
3582
4058
  colorHover: string;
3583
4059
  }, any>;
3584
4060
  Empty: import("../../_mixins").Theme<"Empty", {
4061
+ iconSizeSmall: string;
4062
+ iconSizeMedium: string;
4063
+ iconSizeLarge: string;
4064
+ iconSizeHuge: string;
3585
4065
  fontSizeSmall: string;
3586
4066
  fontSizeMedium: string;
3587
4067
  fontSizeLarge: string;
@@ -3589,15 +4069,44 @@ declare const _default: import("vue").DefineComponent<{
3589
4069
  textColor: string;
3590
4070
  iconColor: string;
3591
4071
  extraTextColor: string;
3592
- iconSizeSmall: string;
3593
- iconSizeMedium: string;
3594
- iconSizeLarge: string;
3595
- iconSizeHuge: string;
3596
4072
  }, any>;
3597
4073
  }>;
3598
4074
  }>;
3599
4075
  }>>>;
3600
4076
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
4077
+ itemPaddingSmall: string;
4078
+ itemMarginSmall: string;
4079
+ itemMarginSmallRtl: string;
4080
+ itemPaddingMedium: string;
4081
+ itemMarginMedium: string;
4082
+ itemMarginMediumRtl: string;
4083
+ itemPaddingLarge: string;
4084
+ itemMarginLarge: string;
4085
+ itemMarginLargeRtl: string;
4086
+ buttonIconSizeSmall: string;
4087
+ buttonIconSizeMedium: string;
4088
+ buttonIconSizeLarge: string;
4089
+ inputWidthSmall: string;
4090
+ selectWidthSmall: string;
4091
+ inputMarginSmall: string;
4092
+ inputMarginSmallRtl: string;
4093
+ selectMarginSmall: string;
4094
+ prefixMarginSmall: string;
4095
+ suffixMarginSmall: string;
4096
+ inputWidthMedium: string;
4097
+ selectWidthMedium: string;
4098
+ inputMarginMedium: string;
4099
+ inputMarginMediumRtl: string;
4100
+ selectMarginMedium: string;
4101
+ prefixMarginMedium: string;
4102
+ suffixMarginMedium: string;
4103
+ inputWidthLarge: string;
4104
+ selectWidthLarge: string;
4105
+ inputMarginLarge: string;
4106
+ inputMarginLargeRtl: string;
4107
+ selectMarginLarge: string;
4108
+ prefixMarginLarge: string;
4109
+ suffixMarginLarge: string;
3601
4110
  buttonColor: string;
3602
4111
  buttonColorHover: string;
3603
4112
  buttonColorPressed: string;
@@ -3635,53 +4144,46 @@ declare const _default: import("vue").DefineComponent<{
3635
4144
  jumperFontSizeLarge: string;
3636
4145
  jumperTextColor: string;
3637
4146
  jumperTextColorDisabled: string;
3638
- itemPaddingSmall: string;
3639
- itemMarginSmall: string;
3640
- itemMarginSmallRtl: string;
3641
- itemPaddingMedium: string;
3642
- itemMarginMedium: string;
3643
- itemMarginMediumRtl: string;
3644
- itemPaddingLarge: string;
3645
- itemMarginLarge: string;
3646
- itemMarginLargeRtl: string;
3647
- buttonIconSizeSmall: string;
3648
- buttonIconSizeMedium: string;
3649
- buttonIconSizeLarge: string;
3650
- inputWidthSmall: string;
3651
- selectWidthSmall: string;
3652
- inputMarginSmall: string;
3653
- inputMarginSmallRtl: string;
3654
- selectMarginSmall: string;
3655
- prefixMarginSmall: string;
3656
- suffixMarginSmall: string;
3657
- inputWidthMedium: string;
3658
- selectWidthMedium: string;
3659
- inputMarginMedium: string;
3660
- inputMarginMediumRtl: string;
3661
- selectMarginMedium: string;
3662
- prefixMarginMedium: string;
3663
- suffixMarginMedium: string;
3664
- inputWidthLarge: string;
3665
- selectWidthLarge: string;
3666
- inputMarginLarge: string;
3667
- inputMarginLargeRtl: string;
3668
- selectMarginLarge: string;
3669
- prefixMarginLarge: string;
3670
- suffixMarginLarge: string;
3671
4147
  }, {
3672
4148
  Select: import("../../_mixins").Theme<"Select", {
3673
4149
  menuBoxShadow: string;
3674
4150
  }, {
3675
4151
  InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
4152
+ paddingTiny: string;
4153
+ paddingSmall: string;
4154
+ paddingMedium: string;
4155
+ paddingLarge: string;
4156
+ paddingHuge: string;
4157
+ clearSizeTiny: string;
4158
+ clearSizeSmall: string;
4159
+ clearSizeMedium: string;
4160
+ clearSizeLarge: string;
4161
+ clearSizeHuge: string;
4162
+ arrowSizeTiny: string;
4163
+ arrowSizeSmall: string;
4164
+ arrowSizeMedium: string;
4165
+ arrowSizeLarge: string;
4166
+ arrowSizeHuge: string;
3676
4167
  fontSizeTiny: string;
3677
4168
  fontSizeSmall: string;
3678
4169
  fontSizeMedium: string;
3679
4170
  fontSizeLarge: string;
4171
+ fontSizeHuge: string;
4172
+ lineHeightTiny: string;
4173
+ lineHeightSmall: string;
4174
+ lineHeightMedium: string;
4175
+ lineHeightLarge: string;
4176
+ lineHeightHuge: string;
3680
4177
  heightTiny: string;
3681
4178
  heightSmall: string;
3682
4179
  heightMedium: string;
3683
4180
  heightLarge: string;
3684
- borderRadius: string;
4181
+ heightHuge: string;
4182
+ borderRadiusTiny: string;
4183
+ borderRadiusSmall: string;
4184
+ borderRadiusMedium: string;
4185
+ borderRadiusLarge: string;
4186
+ borderRadiusHuge: string;
3685
4187
  textColor: string;
3686
4188
  textColorDisabled: string;
3687
4189
  placeholderColor: string;
@@ -3723,35 +4225,68 @@ declare const _default: import("vue").DefineComponent<{
3723
4225
  clearColor: string;
3724
4226
  clearColorHover: string;
3725
4227
  clearColorPressed: string;
3726
- paddingSingle: string;
3727
- paddingMultiple: string;
3728
- clearSize: string;
3729
- arrowSize: string;
4228
+ caretColorSecondary: string;
4229
+ filterCounterTextColor: string;
4230
+ filterCounterSeparatorColor: string;
4231
+ filterCounterTextColorDisabled: string;
4232
+ filterCounterSeparatorColorDisabled: string;
4233
+ arrowColorSecondary: string;
4234
+ clearColorSecondary: string;
4235
+ colorSecondary: string;
4236
+ textColorSecondary: string;
4237
+ borderSecondary: string;
4238
+ arrowColorDisabledSecondary: string;
4239
+ clearColorDisabledSecondary: string;
4240
+ colorDisabledSecondary: string;
4241
+ textColorDisabledSecondary: string;
4242
+ borderDisabledSecondary: string;
4243
+ arrowColorHoverSecondary: string;
4244
+ clearColorHoverSecondary: string;
4245
+ colorHoverSecondary: string;
4246
+ textColorHoverSecondary: string;
4247
+ borderHoverSecondary: string;
4248
+ arrowColorFocusSecondary: string;
4249
+ clearColorFocusSecondary: string;
4250
+ colorFocusSecondary: string;
4251
+ textColorFocusSecondary: string;
4252
+ borderFocusSecondary: string;
4253
+ arrowColorActiveSecondary: string;
4254
+ clearColorActiveSecondary: string;
4255
+ colorActiveSecondary: string;
4256
+ textColorActiveSecondary: string;
4257
+ borderActiveSecondary: string;
3730
4258
  }, {
3731
4259
  Popover: import("../../_mixins").Theme<"Popover", {
3732
- fontSize: string;
3733
- borderRadius: string;
3734
- color: string;
3735
- dividerColor: string;
3736
- textColor: string;
3737
- boxShadow: string;
3738
4260
  space: string;
3739
4261
  spaceArrow: string;
3740
4262
  arrowOffset: string;
3741
4263
  arrowOffsetVertical: string;
3742
4264
  arrowHeight: string;
3743
4265
  padding: string;
4266
+ fontSize: string;
4267
+ borderRadius: string;
4268
+ color: string;
4269
+ dividerColor: string;
4270
+ textColor: string;
4271
+ boxShadow: string;
3744
4272
  }, any>;
3745
4273
  }>;
3746
4274
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4275
+ height: string;
4276
+ paddingSmall: string;
4277
+ paddingMedium: string;
4278
+ paddingLarge: string;
4279
+ optionPaddingSmall: string;
4280
+ optionPaddingMedium: string;
4281
+ optionPaddingLarge: string;
4282
+ loadingSize: string;
3747
4283
  optionFontSizeSmall: string;
3748
4284
  optionFontSizeMedium: string;
3749
4285
  optionFontSizeLarge: string;
3750
- optionFontSizeHuge: string;
3751
4286
  optionHeightSmall: string;
3752
4287
  optionHeightMedium: string;
3753
4288
  optionHeightLarge: string;
3754
- optionHeightHuge: string;
4289
+ optionBorderRadius: string;
3755
4290
  borderRadius: string;
3756
4291
  color: string;
3757
4292
  groupHeaderTextColor: string;
@@ -3768,22 +4303,16 @@ declare const _default: import("vue").DefineComponent<{
3768
4303
  optionColorActivePending: string;
3769
4304
  actionTextColor: string;
3770
4305
  loadingColor: string;
3771
- height: string;
3772
- paddingSmall: string;
3773
- paddingMedium: string;
3774
- paddingLarge: string;
3775
- paddingHuge: string;
3776
- optionPaddingSmall: string;
3777
- optionPaddingMedium: string;
3778
- optionPaddingLarge: string;
3779
- optionPaddingHuge: string;
3780
- loadingSize: string;
3781
4306
  }, {
3782
4307
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3783
4308
  color: string;
3784
4309
  colorHover: string;
3785
4310
  }, any>;
3786
4311
  Empty: import("../../_mixins").Theme<"Empty", {
4312
+ iconSizeSmall: string;
4313
+ iconSizeMedium: string;
4314
+ iconSizeLarge: string;
4315
+ iconSizeHuge: string;
3787
4316
  fontSizeSmall: string;
3788
4317
  fontSizeMedium: string;
3789
4318
  fontSizeLarge: string;
@@ -3791,29 +4320,32 @@ declare const _default: import("vue").DefineComponent<{
3791
4320
  textColor: string;
3792
4321
  iconColor: string;
3793
4322
  extraTextColor: string;
3794
- iconSizeSmall: string;
3795
- iconSizeMedium: string;
3796
- iconSizeLarge: string;
3797
- iconSizeHuge: string;
3798
4323
  }, any>;
3799
4324
  }>;
3800
4325
  }>;
3801
4326
  Input: import("../../_mixins").Theme<"Input", {
4327
+ paddingTiny: string;
4328
+ paddingSmall: string;
4329
+ paddingMedium: string;
4330
+ paddingLarge: string;
4331
+ paddingHuge: string;
4332
+ clearSize: string;
3802
4333
  countTextColorDisabled: string;
3803
4334
  countTextColor: string;
3804
4335
  heightTiny: string;
3805
4336
  heightSmall: string;
3806
4337
  heightMedium: string;
3807
4338
  heightLarge: string;
4339
+ heightHuge: string;
3808
4340
  fontSizeTiny: string;
3809
4341
  fontSizeSmall: string;
3810
4342
  fontSizeMedium: string;
3811
4343
  fontSizeLarge: string;
4344
+ fontSizeHuge: string;
3812
4345
  lineHeight: string;
3813
4346
  lineHeightTextarea: string;
3814
4347
  borderRadius: string;
3815
4348
  iconSize: string;
3816
- groupLabelColor: string;
3817
4349
  groupLabelTextColor: string;
3818
4350
  textColor: string;
3819
4351
  textColorDisabled: string;
@@ -3853,38 +4385,41 @@ declare const _default: import("vue").DefineComponent<{
3853
4385
  iconColorHover: string;
3854
4386
  iconColorPressed: string;
3855
4387
  suffixTextColor: string;
3856
- paddingTiny: string;
3857
- paddingSmall: string;
3858
- paddingMedium: string;
3859
- paddingLarge: string;
3860
- clearSize: string;
4388
+ selectionColor: string;
3861
4389
  }, any>;
3862
4390
  Popselect: import("../../_mixins").Theme<"Popselect", {
3863
4391
  menuBoxShadow: string;
3864
4392
  }, {
3865
4393
  Popover: import("../../_mixins").Theme<"Popover", {
3866
- fontSize: string;
3867
- borderRadius: string;
3868
- color: string;
3869
- dividerColor: string;
3870
- textColor: string;
3871
- boxShadow: string;
3872
4394
  space: string;
3873
4395
  spaceArrow: string;
3874
4396
  arrowOffset: string;
3875
4397
  arrowOffsetVertical: string;
3876
4398
  arrowHeight: string;
3877
4399
  padding: string;
4400
+ fontSize: string;
4401
+ borderRadius: string;
4402
+ color: string;
4403
+ dividerColor: string;
4404
+ textColor: string;
4405
+ boxShadow: string;
3878
4406
  }, any>;
3879
4407
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4408
+ height: string;
4409
+ paddingSmall: string;
4410
+ paddingMedium: string;
4411
+ paddingLarge: string;
4412
+ optionPaddingSmall: string;
4413
+ optionPaddingMedium: string;
4414
+ optionPaddingLarge: string;
4415
+ loadingSize: string;
3880
4416
  optionFontSizeSmall: string;
3881
4417
  optionFontSizeMedium: string;
3882
4418
  optionFontSizeLarge: string;
3883
- optionFontSizeHuge: string;
3884
4419
  optionHeightSmall: string;
3885
4420
  optionHeightMedium: string;
3886
4421
  optionHeightLarge: string;
3887
- optionHeightHuge: string;
4422
+ optionBorderRadius: string;
3888
4423
  borderRadius: string;
3889
4424
  color: string;
3890
4425
  groupHeaderTextColor: string;
@@ -3901,22 +4436,16 @@ declare const _default: import("vue").DefineComponent<{
3901
4436
  optionColorActivePending: string;
3902
4437
  actionTextColor: string;
3903
4438
  loadingColor: string;
3904
- height: string;
3905
- paddingSmall: string;
3906
- paddingMedium: string;
3907
- paddingLarge: string;
3908
- paddingHuge: string;
3909
- optionPaddingSmall: string;
3910
- optionPaddingMedium: string;
3911
- optionPaddingLarge: string;
3912
- optionPaddingHuge: string;
3913
- loadingSize: string;
3914
4439
  }, {
3915
4440
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3916
4441
  color: string;
3917
4442
  colorHover: string;
3918
4443
  }, any>;
3919
4444
  Empty: import("../../_mixins").Theme<"Empty", {
4445
+ iconSizeSmall: string;
4446
+ iconSizeMedium: string;
4447
+ iconSizeLarge: string;
4448
+ iconSizeHuge: string;
3920
4449
  fontSizeSmall: string;
3921
4450
  fontSizeMedium: string;
3922
4451
  fontSizeLarge: string;
@@ -3924,10 +4453,6 @@ declare const _default: import("vue").DefineComponent<{
3924
4453
  textColor: string;
3925
4454
  iconColor: string;
3926
4455
  extraTextColor: string;
3927
- iconSizeSmall: string;
3928
- iconSizeMedium: string;
3929
- iconSizeLarge: string;
3930
- iconSizeHuge: string;
3931
4456
  }, any>;
3932
4457
  }>;
3933
4458
  }>;