@uzum-tech/ui 1.8.1 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (303) hide show
  1. package/dist/index.js +847 -249
  2. package/dist/index.prod.js +3 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  4. package/es/_internal/scrollbar/src/Scrollbar.js +121 -68
  5. package/es/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  6. package/es/_internal/scrollbar/styles/common.d.ts +7 -0
  7. package/es/_internal/scrollbar/styles/common.js +7 -0
  8. package/es/_internal/scrollbar/styles/light.d.ts +8 -0
  9. package/es/_internal/scrollbar/styles/light.js +3 -5
  10. package/es/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  11. package/es/_internal/select-menu/styles/light.d.ts +8 -0
  12. package/es/_internal/selection/src/Selection.d.ts +3 -1
  13. package/es/_internal/selection/src/Selection.js +3 -1
  14. package/es/_utils/css/index.d.ts +1 -0
  15. package/es/_utils/css/index.js +1 -0
  16. package/es/_utils/css/rtl-inset.d.ts +1 -0
  17. package/es/_utils/css/rtl-inset.js +5 -0
  18. package/es/_utils/index.d.ts +1 -1
  19. package/es/_utils/index.js +1 -1
  20. package/es/auto-complete/src/AutoComplete.d.ts +88 -0
  21. package/es/auto-complete/styles/light.d.ts +8 -0
  22. package/es/back-top/src/BackTop.d.ts +1 -1
  23. package/es/button/src/Button.d.ts +72 -0
  24. package/es/button/src/Button.js +13 -7
  25. package/es/button/src/styles/index.cssr.js +1 -2
  26. package/es/button/styles/light.d.ts +8 -0
  27. package/es/button/styles/light.js +7 -7
  28. package/es/calendar/src/Calendar.d.ts +80 -0
  29. package/es/calendar/styles/light.d.ts +8 -0
  30. package/es/cascader/src/Cascader.d.ts +168 -0
  31. package/es/cascader/src/CascaderMenu.d.ts +24 -0
  32. package/es/cascader/src/CascaderOption.d.ts +24 -0
  33. package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
  34. package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
  35. package/es/cascader/styles/light.d.ts +16 -0
  36. package/es/chat/src/Chat.d.ts +175 -7
  37. package/es/chat/src/Chat.js +11 -12
  38. package/es/chat/src/ChatListItems.d.ts +192 -0
  39. package/es/chat/src/ChatListItems.js +4 -1
  40. package/es/chat/src/ChatMessages.d.ts +192 -0
  41. package/es/chat/src/styles/index.cssr.js +1 -3
  42. package/es/chat/styles/dark.d.ts +16 -0
  43. package/es/chat/styles/light.d.ts +16 -0
  44. package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
  45. package/es/color-picker/src/ColorPicker.d.ts +72 -0
  46. package/es/color-picker/styles/light.d.ts +8 -0
  47. package/es/components.d.ts +2 -0
  48. package/es/components.js +2 -0
  49. package/es/data-table/src/DataTable.d.ts +240 -0
  50. package/es/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
  51. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
  52. package/es/data-table/src/TableParts/Body.d.ts +49 -1
  53. package/es/data-table/src/TableParts/Header.d.ts +48 -0
  54. package/es/data-table/src/interface.d.ts +96 -0
  55. package/es/data-table/styles/light.d.ts +32 -0
  56. package/es/date-picker/src/DatePicker.d.ts +339 -3
  57. package/es/date-picker/src/panel/date.d.ts +49 -1
  58. package/es/date-picker/src/panel/daterange.d.ts +50 -2
  59. package/es/date-picker/src/panel/datetime.d.ts +49 -1
  60. package/es/date-picker/src/panel/datetimerange.d.ts +50 -2
  61. package/es/date-picker/src/panel/panelMonth.d.ts +98 -2
  62. package/es/date-picker/src/panel/panelMonthContent.d.ts +49 -1
  63. package/es/date-picker/src/panel/panelYear.d.ts +98 -2
  64. package/es/date-picker/src/panel/panelYearContent.d.ts +49 -1
  65. package/es/date-picker/src/panel/use-calendar.d.ts +48 -0
  66. package/es/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
  67. package/es/date-picker/src/panel/use-panel-common.d.ts +48 -0
  68. package/es/date-picker/styles/light.d.ts +32 -0
  69. package/es/dialog/src/Dialog.d.ts +56 -0
  70. package/es/dialog/src/DialogProvider.d.ts +18 -2
  71. package/es/dialog/styles/light.d.ts +8 -0
  72. package/es/drawer/src/Drawer.d.ts +81 -1
  73. package/es/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  74. package/es/drawer/src/DrawerContent.d.ts +8 -0
  75. package/es/drawer/styles/light.d.ts +8 -0
  76. package/es/dropdown/src/Dropdown.d.ts +1 -1
  77. package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
  78. package/es/dynamic-input/src/InputPreset.d.ts +8 -0
  79. package/es/dynamic-input/src/PairPreset.d.ts +8 -0
  80. package/es/dynamic-input/styles/light.d.ts +8 -0
  81. package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
  82. package/es/dynamic-tags/styles/light.d.ts +8 -0
  83. package/es/infinite-scroll/index.d.ts +2 -0
  84. package/es/infinite-scroll/index.js +1 -0
  85. package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  86. package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
  87. package/es/input-number/src/InputNumber.d.ts +80 -0
  88. package/es/input-number/styles/light.d.ts +8 -0
  89. package/es/layout/src/Layout.d.ts +112 -0
  90. package/es/layout/src/LayoutContent.d.ts +56 -0
  91. package/es/layout/src/LayoutFooter.d.ts +72 -0
  92. package/es/layout/src/LayoutHeader.d.ts +48 -0
  93. package/es/layout/src/LayoutSider.d.ts +56 -0
  94. package/es/layout/styles/light.d.ts +8 -0
  95. package/es/legacy-transfer/src/Transfer.d.ts +160 -0
  96. package/es/legacy-transfer/src/TransferFilter.d.ts +16 -0
  97. package/es/legacy-transfer/src/TransferList.d.ts +17 -1
  98. package/es/legacy-transfer/src/TransferListItem.d.ts +16 -0
  99. package/es/legacy-transfer/styles/light.d.ts +16 -0
  100. package/es/log/src/Log.d.ts +80 -0
  101. package/es/log/styles/light.d.ts +8 -0
  102. package/es/mention/src/Mention.d.ts +88 -0
  103. package/es/mention/styles/light.d.ts +8 -0
  104. package/es/menu/src/Menu.d.ts +1 -1
  105. package/es/modal/src/BodyWrapper.d.ts +25 -1
  106. package/es/modal/src/Modal.d.ts +145 -1
  107. package/es/modal/styles/light.d.ts +16 -0
  108. package/es/notification/src/Notification.d.ts +5 -0
  109. package/es/notification/src/Notification.js +16 -6
  110. package/es/notification/src/NotificationContainer.d.ts +20 -0
  111. package/es/notification/src/NotificationProvider.d.ts +180 -0
  112. package/es/notification/src/styles/index.cssr.js +12 -8
  113. package/es/notification/styles/light.d.ts +32 -0
  114. package/es/notification/styles/light.js +9 -8
  115. package/es/pagination/src/Pagination.d.ts +176 -0
  116. package/es/pagination/styles/light.d.ts +16 -0
  117. package/es/popconfirm/src/Popconfirm.d.ts +80 -0
  118. package/es/popconfirm/styles/light.d.ts +8 -0
  119. package/es/popselect/src/Popselect.d.ts +88 -0
  120. package/es/popselect/src/PopselectPanel.d.ts +16 -0
  121. package/es/popselect/styles/light.d.ts +8 -0
  122. package/es/scrollbar/src/Scrollbar.d.ts +72 -0
  123. package/es/select/src/Select.d.ts +88 -0
  124. package/es/select/styles/light.d.ts +8 -0
  125. package/es/time-picker/src/Panel.d.ts +16 -0
  126. package/es/time-picker/src/TimePicker.d.ts +160 -0
  127. package/es/time-picker/styles/light.d.ts +16 -0
  128. package/es/transfer/src/Transfer.d.ts +160 -0
  129. package/es/transfer/src/TransferFilter.d.ts +16 -0
  130. package/es/transfer/src/TransferList.d.ts +17 -1
  131. package/es/transfer/src/TransferListItem.d.ts +16 -0
  132. package/es/transfer/styles/light.d.ts +16 -0
  133. package/es/tree/src/Tree.d.ts +82 -2
  134. package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
  135. package/es/tree/styles/light.d.ts +8 -0
  136. package/es/tree-select/src/TreeSelect.d.ts +89 -1
  137. package/es/tree-select/styles/light.d.ts +8 -0
  138. package/es/upload/src/Upload.d.ts +90 -0
  139. package/es/upload/src/Upload.js +2 -1
  140. package/es/upload/src/UploadFile.d.ts +9 -0
  141. package/es/upload/src/UploadProgress.d.ts +9 -0
  142. package/es/upload/src/styles/index.cssr.js +1 -0
  143. package/es/upload/src/useUploadActionsRender.js +5 -1
  144. package/es/upload/styles/light.d.ts +10 -0
  145. package/es/upload/styles/light.js +6 -5
  146. package/es/version.d.ts +1 -1
  147. package/es/version.js +1 -1
  148. package/es/virtual-list/index.d.ts +2 -0
  149. package/es/virtual-list/index.js +1 -0
  150. package/es/virtual-list/src/VirtualList.d.ts +146 -0
  151. package/es/virtual-list/src/VirtualList.js +103 -0
  152. package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  153. package/lib/_internal/scrollbar/src/Scrollbar.js +118 -65
  154. package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  155. package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
  156. package/lib/_internal/scrollbar/styles/common.js +10 -0
  157. package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
  158. package/lib/_internal/scrollbar/styles/light.js +3 -5
  159. package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  160. package/lib/_internal/select-menu/styles/light.d.ts +8 -0
  161. package/lib/_internal/selection/src/Selection.d.ts +3 -1
  162. package/lib/_internal/selection/src/Selection.js +3 -1
  163. package/lib/_utils/css/index.d.ts +1 -0
  164. package/lib/_utils/css/index.js +3 -1
  165. package/lib/_utils/css/rtl-inset.d.ts +1 -0
  166. package/lib/_utils/css/rtl-inset.js +8 -0
  167. package/lib/_utils/index.d.ts +1 -1
  168. package/lib/_utils/index.js +2 -1
  169. package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
  170. package/lib/auto-complete/styles/light.d.ts +8 -0
  171. package/lib/back-top/src/BackTop.d.ts +1 -1
  172. package/lib/button/src/Button.d.ts +72 -0
  173. package/lib/button/src/Button.js +13 -7
  174. package/lib/button/src/styles/index.cssr.js +1 -2
  175. package/lib/button/styles/light.d.ts +8 -0
  176. package/lib/button/styles/light.js +7 -7
  177. package/lib/calendar/src/Calendar.d.ts +80 -0
  178. package/lib/calendar/styles/light.d.ts +8 -0
  179. package/lib/cascader/src/Cascader.d.ts +168 -0
  180. package/lib/cascader/src/CascaderMenu.d.ts +24 -0
  181. package/lib/cascader/src/CascaderOption.d.ts +24 -0
  182. package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
  183. package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
  184. package/lib/cascader/styles/light.d.ts +16 -0
  185. package/lib/chat/src/Chat.d.ts +175 -7
  186. package/lib/chat/src/Chat.js +11 -12
  187. package/lib/chat/src/ChatListItems.d.ts +192 -0
  188. package/lib/chat/src/ChatListItems.js +4 -1
  189. package/lib/chat/src/ChatMessages.d.ts +192 -0
  190. package/lib/chat/src/styles/index.cssr.js +1 -3
  191. package/lib/chat/styles/dark.d.ts +16 -0
  192. package/lib/chat/styles/light.d.ts +16 -0
  193. package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
  194. package/lib/color-picker/src/ColorPicker.d.ts +72 -0
  195. package/lib/color-picker/styles/light.d.ts +8 -0
  196. package/lib/components.d.ts +2 -0
  197. package/lib/components.js +2 -0
  198. package/lib/data-table/src/DataTable.d.ts +240 -0
  199. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
  200. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
  201. package/lib/data-table/src/TableParts/Body.d.ts +49 -1
  202. package/lib/data-table/src/TableParts/Header.d.ts +48 -0
  203. package/lib/data-table/src/interface.d.ts +96 -0
  204. package/lib/data-table/styles/light.d.ts +32 -0
  205. package/lib/date-picker/src/DatePicker.d.ts +339 -3
  206. package/lib/date-picker/src/panel/date.d.ts +49 -1
  207. package/lib/date-picker/src/panel/daterange.d.ts +50 -2
  208. package/lib/date-picker/src/panel/datetime.d.ts +49 -1
  209. package/lib/date-picker/src/panel/datetimerange.d.ts +50 -2
  210. package/lib/date-picker/src/panel/panelMonth.d.ts +98 -2
  211. package/lib/date-picker/src/panel/panelMonthContent.d.ts +49 -1
  212. package/lib/date-picker/src/panel/panelYear.d.ts +98 -2
  213. package/lib/date-picker/src/panel/panelYearContent.d.ts +49 -1
  214. package/lib/date-picker/src/panel/use-calendar.d.ts +48 -0
  215. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
  216. package/lib/date-picker/src/panel/use-panel-common.d.ts +48 -0
  217. package/lib/date-picker/styles/light.d.ts +32 -0
  218. package/lib/dialog/src/Dialog.d.ts +56 -0
  219. package/lib/dialog/src/DialogProvider.d.ts +18 -2
  220. package/lib/dialog/styles/light.d.ts +8 -0
  221. package/lib/drawer/src/Drawer.d.ts +81 -1
  222. package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  223. package/lib/drawer/src/DrawerContent.d.ts +8 -0
  224. package/lib/drawer/styles/light.d.ts +8 -0
  225. package/lib/dropdown/src/Dropdown.d.ts +1 -1
  226. package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
  227. package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
  228. package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
  229. package/lib/dynamic-input/styles/light.d.ts +8 -0
  230. package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
  231. package/lib/dynamic-tags/styles/light.d.ts +8 -0
  232. package/lib/infinite-scroll/index.d.ts +2 -0
  233. package/lib/infinite-scroll/index.js +9 -0
  234. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  235. package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
  236. package/lib/input-number/src/InputNumber.d.ts +80 -0
  237. package/lib/input-number/styles/light.d.ts +8 -0
  238. package/lib/layout/src/Layout.d.ts +112 -0
  239. package/lib/layout/src/LayoutContent.d.ts +56 -0
  240. package/lib/layout/src/LayoutFooter.d.ts +72 -0
  241. package/lib/layout/src/LayoutHeader.d.ts +48 -0
  242. package/lib/layout/src/LayoutSider.d.ts +56 -0
  243. package/lib/layout/styles/light.d.ts +8 -0
  244. package/lib/legacy-transfer/src/Transfer.d.ts +160 -0
  245. package/lib/legacy-transfer/src/TransferFilter.d.ts +16 -0
  246. package/lib/legacy-transfer/src/TransferList.d.ts +17 -1
  247. package/lib/legacy-transfer/src/TransferListItem.d.ts +16 -0
  248. package/lib/legacy-transfer/styles/light.d.ts +16 -0
  249. package/lib/log/src/Log.d.ts +80 -0
  250. package/lib/log/styles/light.d.ts +8 -0
  251. package/lib/mention/src/Mention.d.ts +88 -0
  252. package/lib/mention/styles/light.d.ts +8 -0
  253. package/lib/menu/src/Menu.d.ts +1 -1
  254. package/lib/modal/src/BodyWrapper.d.ts +25 -1
  255. package/lib/modal/src/Modal.d.ts +145 -1
  256. package/lib/modal/styles/light.d.ts +16 -0
  257. package/lib/notification/src/Notification.d.ts +5 -0
  258. package/lib/notification/src/Notification.js +14 -4
  259. package/lib/notification/src/NotificationContainer.d.ts +20 -0
  260. package/lib/notification/src/NotificationProvider.d.ts +180 -0
  261. package/lib/notification/src/styles/index.cssr.js +12 -8
  262. package/lib/notification/styles/light.d.ts +32 -0
  263. package/lib/notification/styles/light.js +9 -8
  264. package/lib/pagination/src/Pagination.d.ts +176 -0
  265. package/lib/pagination/styles/light.d.ts +16 -0
  266. package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
  267. package/lib/popconfirm/styles/light.d.ts +8 -0
  268. package/lib/popselect/src/Popselect.d.ts +88 -0
  269. package/lib/popselect/src/PopselectPanel.d.ts +16 -0
  270. package/lib/popselect/styles/light.d.ts +8 -0
  271. package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
  272. package/lib/select/src/Select.d.ts +88 -0
  273. package/lib/select/styles/light.d.ts +8 -0
  274. package/lib/time-picker/src/Panel.d.ts +16 -0
  275. package/lib/time-picker/src/TimePicker.d.ts +160 -0
  276. package/lib/time-picker/styles/light.d.ts +16 -0
  277. package/lib/transfer/src/Transfer.d.ts +160 -0
  278. package/lib/transfer/src/TransferFilter.d.ts +16 -0
  279. package/lib/transfer/src/TransferList.d.ts +17 -1
  280. package/lib/transfer/src/TransferListItem.d.ts +16 -0
  281. package/lib/transfer/styles/light.d.ts +16 -0
  282. package/lib/tree/src/Tree.d.ts +82 -2
  283. package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
  284. package/lib/tree/styles/light.d.ts +8 -0
  285. package/lib/tree-select/src/TreeSelect.d.ts +89 -1
  286. package/lib/tree-select/styles/light.d.ts +8 -0
  287. package/lib/upload/src/Upload.d.ts +90 -0
  288. package/lib/upload/src/Upload.js +2 -1
  289. package/lib/upload/src/UploadFile.d.ts +9 -0
  290. package/lib/upload/src/UploadProgress.d.ts +9 -0
  291. package/lib/upload/src/styles/index.cssr.js +1 -0
  292. package/lib/upload/src/useUploadActionsRender.js +5 -1
  293. package/lib/upload/styles/light.d.ts +10 -0
  294. package/lib/upload/styles/light.js +6 -5
  295. package/lib/version.d.ts +1 -1
  296. package/lib/version.js +1 -1
  297. package/lib/virtual-list/index.d.ts +2 -0
  298. package/lib/virtual-list/index.js +9 -0
  299. package/lib/virtual-list/src/VirtualList.d.ts +146 -0
  300. package/lib/virtual-list/src/VirtualList.js +106 -0
  301. package/package.json +2 -2
  302. package/volar.d.ts +1 -0
  303. package/web-types.json +33 -4
@@ -13,19 +13,19 @@ const self = (vars) => {
13
13
  const successPress = '#0f9b42';
14
14
  const warningHover = '#f79942';
15
15
  const warningPress = '#df7a1d';
16
- const errorHover = '#f75e4d';
17
- const errorPress = '#e53a27';
16
+ const errorHover = '#cb0000';
17
+ const errorDisable = '#f8a39a';
18
18
  return Object.assign(Object.assign({}, _common_1.default), { heightTiny: heightMini, heightSmall: heightTiny, heightMedium: heightSmall, heightLarge: heightMedium, borderRadiusTiny: borderRadiusMedium, borderRadiusSmall: borderRadiusMedium, borderRadiusMedium: borderRadius, borderRadiusLarge: borderRadius, fontSizeTiny: fontBodyMedium, fontSizeSmall: fontBodyMedium, fontSizeMedium: fontBodyMedium, fontSizeLarge: fontBodyLarge, opacityDisabled,
19
19
  // secondary
20
- colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover: elementsTertiary, colorSecondaryPressed: elementsTertiary, waveColorSecondary: elementsQuinary,
20
+ colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover: elementsQuaternary, colorSecondaryPressed: elementsTertiary, colorSecondaryFocus: elementsTertiary, colorSecondaryDisabled: elementsTertiary, textColorSecondaryDisabled: elementsQuinary, waveColorSecondary: elementsQuinary,
21
21
  // tertiary
22
- colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryDisalbed: elementsTertiary, waveColorTertiary: elementsTertiary, textColorTextTertiary: textQuaternary,
22
+ colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryFocus: elementsPrimary, colorTertiaryDisalbed: elementsQuinary, waveColorTertiary: elementsQuinary, textColorTextTertiary: textQuaternary, rippleColorTertiary: elementsQuinary,
23
23
  // quaternary
24
- colorQuaternary: '#0000', colorQuaternaryHover: elementsTertiary, colorQuaternaryPressed: elementsQuaternary,
24
+ colorQuaternary: '#0000', colorQuaternaryHover: elementsQuaternary, colorQuaternaryPressed: '#0000', colorQuaternaryFocus: '#0000', rippleColorQuaternary: elementsQuinary, waveColorQuaternary: elementsQuinary,
25
25
  // default type
26
26
  color: '#0000', colorHover: '#0000', colorPressed: '#0000', colorFocus: '#0000', colorDisabled: '#0000', textColor: textPrimary, textTertiary, textColorTertiary: textTertiary, textColorHover: brandPrimary400, textColorPressed: brandPrimary500, textColorFocus: brandPrimary400, textColorDisabled: textTertiary, textColorText: textPrimary, textColorTextHover: brandPrimary400, textColorTextPressed: brandPrimary500, textColorTextFocus: brandPrimary400, textColorTextDisabled: textTertiary, textColorGhost: textTertiary, textColorGhostHover: brandPrimary400, textColorGhostPressed: brandPrimary500, textColorGhostFocus: brandPrimary400, textColorGhostDisabled: textTertiary, border: `2px solid ${elementsQuaternary}`, borderHover: `2px solid ${brandPrimary400}`, borderPressed: `2px solid ${brandPrimary500}`, borderFocus: `2px solid ${brandPrimary400}`, borderDisabled: `2px solid ${elementsQuaternary}`, rippleColor: brandPrimary500,
27
27
  // primary
28
- colorPrimary: brandPrimary500, colorHoverPrimary: brandPrimary400, colorPressedPrimary: brandPrimary600, colorFocusPrimary: brandPrimary400, colorDisabledPrimary: brandPrimary500, waveColorPrimary: brandPrimary300, textColorPrimary: staticWhite, textColorHoverPrimary: staticWhite, textColorPressedPrimary: staticWhite, textColorFocusPrimary: staticWhite, textColorDisabledPrimary: staticWhite, textColorTextPrimary: brandPrimary500, textColorTextHoverPrimary: brandPrimary400, textColorTextPressedPrimary: brandPrimary600, textColorTextFocusPrimary: brandPrimary400, textColorTextDisabledPrimary: textTertiary, textColorGhostPrimary: brandPrimary500, textColorGhostHoverPrimary: brandPrimary400, textColorGhostPressedPrimary: brandPrimary600, textColorGhostFocusPrimary: brandPrimary400, textColorGhostDisabledPrimary: brandPrimary500, borderPrimary: `2px solid ${brandPrimary500}`, borderHoverPrimary: `2px solid ${brandPrimary400}`, borderPressedPrimary: `2px solid ${brandPrimary600}`, borderFocusPrimary: `2px solid ${brandPrimary400}`, borderDisabledPrimary: `2px solid ${brandPrimary500}`, rippleColorPrimary: brandPrimary500,
28
+ colorPrimary: brandPrimary500, colorHoverPrimary: brandPrimary600, colorPressedPrimary: brandPrimary500, colorFocusPrimary: brandPrimary500, colorDisabledPrimary: brandPrimary300, waveColorPrimary: brandPrimary300, textColorPrimary: staticWhite, textColorHoverPrimary: staticWhite, textColorPressedPrimary: staticWhite, textColorFocusPrimary: staticWhite, textColorDisabledPrimary: staticWhite, textColorTextPrimary: brandPrimary500, textColorTextHoverPrimary: brandPrimary600, textColorTextPressedPrimary: brandPrimary300, textColorTextFocusPrimary: brandPrimary300, textColorTextDisabledPrimary: brandPrimary300, textColorGhostPrimary: brandPrimary500, textColorGhostHoverPrimary: brandPrimary600, textColorGhostPressedPrimary: brandPrimary500, textColorGhostFocusPrimary: brandPrimary500, textColorGhostDisabledPrimary: brandPrimary300, borderPrimary: `2px solid ${brandPrimary500}`, borderHoverPrimary: `2px solid ${brandPrimary600}`, borderPressedPrimary: `2px solid ${brandPrimary500}`, borderFocusPrimary: `2px solid ${brandPrimary500}`, borderDisabledPrimary: `2px solid ${brandPrimary300}`, rippleColorPrimary: brandPrimary300,
29
29
  // info
30
30
  colorInfo: brandQuaternary500, colorHoverInfo: brandQuaternary300, colorPressedInfo: brandQuaternary600, colorFocusInfo: brandQuaternary300, colorDisabledInfo: brandQuaternary500, textColorInfo: staticBlack, textColorHoverInfo: staticBlack, textColorPressedInfo: staticBlack, textColorFocusInfo: staticBlack, textColorDisabledInfo: staticBlack, textColorTextInfo: brandQuaternary500, textColorTextHoverInfo: brandQuaternary300, textColorTextPressedInfo: brandQuaternary600, textColorTextFocusInfo: brandQuaternary300, textColorTextDisabledInfo: textTertiary, textColorGhostInfo: brandQuaternary500, textColorGhostHoverInfo: brandQuaternary300, textColorGhostPressedInfo: brandQuaternary600, textColorGhostFocusInfo: brandQuaternary300, textColorGhostDisabledInfo: brandQuaternary500, borderInfo: `2px solid ${brandQuaternary500}`, borderHoverInfo: `2px solid ${brandQuaternary300}`, borderPressedInfo: `2px solid ${brandQuaternary600}`, borderFocusInfo: `2px solid ${brandQuaternary300}`, borderDisabledInfo: `2px solid ${brandQuaternary500}`, rippleColorInfo: brandQuaternary500,
31
31
  // success
@@ -33,7 +33,7 @@ const self = (vars) => {
33
33
  // warning
34
34
  colorWarning: staticOrange, colorHoverWarning: warningHover, colorPressedWarning: warningPress, colorFocusWarning: warningHover, colorDisabledWarning: staticOrange, textColorWarning: staticWhite, textColorHoverWarning: staticWhite, textColorPressedWarning: staticWhite, textColorFocusWarning: staticWhite, textColorDisabledWarning: staticWhite, textColorTextWarning: staticOrange, textColorTextHoverWarning: warningHover, textColorTextPressedWarning: warningPress, textColorTextFocusWarning: warningHover, textColorTextDisabledWarning: textTertiary, textColorGhostWarning: staticOrange, textColorGhostHoverWarning: warningHover, textColorGhostPressedWarning: warningPress, textColorGhostFocusWarning: warningHover, textColorGhostDisabledWarning: staticOrange, borderWarning: `2px solid ${staticOrange}`, borderHoverWarning: `2px solid ${warningHover}`, borderPressedWarning: `2px solid ${warningPress}`, borderFocusWarning: `2px solid ${warningHover}`, borderDisabledWarning: `2px solid ${staticOrange}`, rippleColorWarning: staticOrange,
35
35
  // error
36
- colorError: staticRed, colorHoverError: errorHover, colorPressedError: errorPress, colorFocusError: errorHover, colorDisabledError: staticRed, textColorError: staticWhite, textColorHoverError: staticWhite, textColorPressedError: staticWhite, textColorFocusError: staticWhite, textColorDisabledError: staticWhite, textColorTextError: staticRed, textColorTextHoverError: errorHover, textColorTextPressedError: errorPress, textColorTextFocusError: errorHover, textColorTextDisabledError: textTertiary, textColorGhostError: staticRed, textColorGhostHoverError: errorHover, textColorGhostPressedError: errorPress, textColorGhostFocusError: errorHover, textColorGhostDisabledError: staticRed, borderError: `2px solid ${staticRed}`, borderHoverError: `2px solid ${errorHover}`, borderPressedError: `2px solid ${errorPress}`, borderFocusError: `2px solid ${errorHover}`, borderDisabledError: `2px solid ${staticRed}`, rippleColorError: staticRed, waveOpacity: '0.6', fontWeight,
36
+ colorError: staticRed, colorHoverError: errorHover, colorPressedError: staticRed, colorFocusError: staticRed, colorDisabledError: errorDisable, textColorError: staticWhite, textColorHoverError: staticWhite, textColorPressedError: staticWhite, textColorFocusError: staticWhite, textColorDisabledError: staticWhite, textColorTextError: staticRed, textColorTextHoverError: errorHover, textColorTextPressedError: staticRed, textColorTextFocusError: staticRed, textColorTextDisabledError: errorDisable, textColorGhostError: staticRed, textColorGhostHoverError: errorHover, textColorGhostPressedError: staticRed, textColorGhostFocusError: staticRed, textColorGhostDisabledError: errorDisable, borderError: `2px solid ${staticRed}`, borderHoverError: `2px solid ${errorHover}`, borderPressedError: `2px solid ${staticRed}`, borderFocusError: `2px solid ${staticRed}`, borderDisabledError: `2px solid ${errorDisable}`, rippleColorError: errorDisable, waveOpacity: '0.6', fontWeight,
37
37
  fontWeightStrong });
38
38
  };
39
39
  exports.self = self;
@@ -54,16 +54,24 @@ export declare const calendarProps: {
54
54
  colorSecondary: string;
55
55
  colorSecondaryHover: string;
56
56
  colorSecondaryPressed: string;
57
+ colorSecondaryFocus: string;
58
+ colorSecondaryDisabled: string;
59
+ textColorSecondaryDisabled: string;
57
60
  waveColorSecondary: string;
58
61
  colorTertiary: string;
59
62
  colorTertiaryHover: string;
60
63
  colorTertiaryPressed: string;
64
+ colorTertiaryFocus: string;
61
65
  colorTertiaryDisalbed: string;
62
66
  waveColorTertiary: string;
63
67
  textColorTextTertiary: string;
68
+ rippleColorTertiary: string;
64
69
  colorQuaternary: string;
65
70
  colorQuaternaryHover: string;
66
71
  colorQuaternaryPressed: string;
72
+ colorQuaternaryFocus: string;
73
+ rippleColorQuaternary: string;
74
+ waveColorQuaternary: string;
67
75
  color: string;
68
76
  colorHover: string;
69
77
  colorPressed: string;
@@ -288,16 +296,24 @@ export declare const calendarProps: {
288
296
  colorSecondary: string;
289
297
  colorSecondaryHover: string;
290
298
  colorSecondaryPressed: string;
299
+ colorSecondaryFocus: string;
300
+ colorSecondaryDisabled: string;
301
+ textColorSecondaryDisabled: string;
291
302
  waveColorSecondary: string;
292
303
  colorTertiary: string;
293
304
  colorTertiaryHover: string;
294
305
  colorTertiaryPressed: string;
306
+ colorTertiaryFocus: string;
295
307
  colorTertiaryDisalbed: string;
296
308
  waveColorTertiary: string;
297
309
  textColorTextTertiary: string;
310
+ rippleColorTertiary: string;
298
311
  colorQuaternary: string;
299
312
  colorQuaternaryHover: string;
300
313
  colorQuaternaryPressed: string;
314
+ colorQuaternaryFocus: string;
315
+ rippleColorQuaternary: string;
316
+ waveColorQuaternary: string;
301
317
  color: string;
302
318
  colorHover: string;
303
319
  colorPressed: string;
@@ -522,16 +538,24 @@ export declare const calendarProps: {
522
538
  colorSecondary: string;
523
539
  colorSecondaryHover: string;
524
540
  colorSecondaryPressed: string;
541
+ colorSecondaryFocus: string;
542
+ colorSecondaryDisabled: string;
543
+ textColorSecondaryDisabled: string;
525
544
  waveColorSecondary: string;
526
545
  colorTertiary: string;
527
546
  colorTertiaryHover: string;
528
547
  colorTertiaryPressed: string;
548
+ colorTertiaryFocus: string;
529
549
  colorTertiaryDisalbed: string;
530
550
  waveColorTertiary: string;
531
551
  textColorTextTertiary: string;
552
+ rippleColorTertiary: string;
532
553
  colorQuaternary: string;
533
554
  colorQuaternaryHover: string;
534
555
  colorQuaternaryPressed: string;
556
+ colorQuaternaryFocus: string;
557
+ rippleColorQuaternary: string;
558
+ waveColorQuaternary: string;
535
559
  color: string;
536
560
  colorHover: string;
537
561
  colorPressed: string;
@@ -768,16 +792,24 @@ declare const _default: import("vue").DefineComponent<{
768
792
  colorSecondary: string;
769
793
  colorSecondaryHover: string;
770
794
  colorSecondaryPressed: string;
795
+ colorSecondaryFocus: string;
796
+ colorSecondaryDisabled: string;
797
+ textColorSecondaryDisabled: string;
771
798
  waveColorSecondary: string;
772
799
  colorTertiary: string;
773
800
  colorTertiaryHover: string;
774
801
  colorTertiaryPressed: string;
802
+ colorTertiaryFocus: string;
775
803
  colorTertiaryDisalbed: string;
776
804
  waveColorTertiary: string;
777
805
  textColorTextTertiary: string;
806
+ rippleColorTertiary: string;
778
807
  colorQuaternary: string;
779
808
  colorQuaternaryHover: string;
780
809
  colorQuaternaryPressed: string;
810
+ colorQuaternaryFocus: string;
811
+ rippleColorQuaternary: string;
812
+ waveColorQuaternary: string;
781
813
  color: string;
782
814
  colorHover: string;
783
815
  colorPressed: string;
@@ -1002,16 +1034,24 @@ declare const _default: import("vue").DefineComponent<{
1002
1034
  colorSecondary: string;
1003
1035
  colorSecondaryHover: string;
1004
1036
  colorSecondaryPressed: string;
1037
+ colorSecondaryFocus: string;
1038
+ colorSecondaryDisabled: string;
1039
+ textColorSecondaryDisabled: string;
1005
1040
  waveColorSecondary: string;
1006
1041
  colorTertiary: string;
1007
1042
  colorTertiaryHover: string;
1008
1043
  colorTertiaryPressed: string;
1044
+ colorTertiaryFocus: string;
1009
1045
  colorTertiaryDisalbed: string;
1010
1046
  waveColorTertiary: string;
1011
1047
  textColorTextTertiary: string;
1048
+ rippleColorTertiary: string;
1012
1049
  colorQuaternary: string;
1013
1050
  colorQuaternaryHover: string;
1014
1051
  colorQuaternaryPressed: string;
1052
+ colorQuaternaryFocus: string;
1053
+ rippleColorQuaternary: string;
1054
+ waveColorQuaternary: string;
1015
1055
  color: string;
1016
1056
  colorHover: string;
1017
1057
  colorPressed: string;
@@ -1236,16 +1276,24 @@ declare const _default: import("vue").DefineComponent<{
1236
1276
  colorSecondary: string;
1237
1277
  colorSecondaryHover: string;
1238
1278
  colorSecondaryPressed: string;
1279
+ colorSecondaryFocus: string;
1280
+ colorSecondaryDisabled: string;
1281
+ textColorSecondaryDisabled: string;
1239
1282
  waveColorSecondary: string;
1240
1283
  colorTertiary: string;
1241
1284
  colorTertiaryHover: string;
1242
1285
  colorTertiaryPressed: string;
1286
+ colorTertiaryFocus: string;
1243
1287
  colorTertiaryDisalbed: string;
1244
1288
  waveColorTertiary: string;
1245
1289
  textColorTextTertiary: string;
1290
+ rippleColorTertiary: string;
1246
1291
  colorQuaternary: string;
1247
1292
  colorQuaternaryHover: string;
1248
1293
  colorQuaternaryPressed: string;
1294
+ colorQuaternaryFocus: string;
1295
+ rippleColorQuaternary: string;
1296
+ waveColorQuaternary: string;
1249
1297
  color: string;
1250
1298
  colorHover: string;
1251
1299
  colorPressed: string;
@@ -1513,16 +1561,24 @@ declare const _default: import("vue").DefineComponent<{
1513
1561
  colorSecondary: string;
1514
1562
  colorSecondaryHover: string;
1515
1563
  colorSecondaryPressed: string;
1564
+ colorSecondaryFocus: string;
1565
+ colorSecondaryDisabled: string;
1566
+ textColorSecondaryDisabled: string;
1516
1567
  waveColorSecondary: string;
1517
1568
  colorTertiary: string;
1518
1569
  colorTertiaryHover: string;
1519
1570
  colorTertiaryPressed: string;
1571
+ colorTertiaryFocus: string;
1520
1572
  colorTertiaryDisalbed: string;
1521
1573
  waveColorTertiary: string;
1522
1574
  textColorTextTertiary: string;
1575
+ rippleColorTertiary: string;
1523
1576
  colorQuaternary: string;
1524
1577
  colorQuaternaryHover: string;
1525
1578
  colorQuaternaryPressed: string;
1579
+ colorQuaternaryFocus: string;
1580
+ rippleColorQuaternary: string;
1581
+ waveColorQuaternary: string;
1526
1582
  color: string;
1527
1583
  colorHover: string;
1528
1584
  colorPressed: string;
@@ -1790,16 +1846,24 @@ declare const _default: import("vue").DefineComponent<{
1790
1846
  colorSecondary: string;
1791
1847
  colorSecondaryHover: string;
1792
1848
  colorSecondaryPressed: string;
1849
+ colorSecondaryFocus: string;
1850
+ colorSecondaryDisabled: string;
1851
+ textColorSecondaryDisabled: string;
1793
1852
  waveColorSecondary: string;
1794
1853
  colorTertiary: string;
1795
1854
  colorTertiaryHover: string;
1796
1855
  colorTertiaryPressed: string;
1856
+ colorTertiaryFocus: string;
1797
1857
  colorTertiaryDisalbed: string;
1798
1858
  waveColorTertiary: string;
1799
1859
  textColorTextTertiary: string;
1860
+ rippleColorTertiary: string;
1800
1861
  colorQuaternary: string;
1801
1862
  colorQuaternaryHover: string;
1802
1863
  colorQuaternaryPressed: string;
1864
+ colorQuaternaryFocus: string;
1865
+ rippleColorQuaternary: string;
1866
+ waveColorQuaternary: string;
1803
1867
  color: string;
1804
1868
  colorHover: string;
1805
1869
  colorPressed: string;
@@ -2024,16 +2088,24 @@ declare const _default: import("vue").DefineComponent<{
2024
2088
  colorSecondary: string;
2025
2089
  colorSecondaryHover: string;
2026
2090
  colorSecondaryPressed: string;
2091
+ colorSecondaryFocus: string;
2092
+ colorSecondaryDisabled: string;
2093
+ textColorSecondaryDisabled: string;
2027
2094
  waveColorSecondary: string;
2028
2095
  colorTertiary: string;
2029
2096
  colorTertiaryHover: string;
2030
2097
  colorTertiaryPressed: string;
2098
+ colorTertiaryFocus: string;
2031
2099
  colorTertiaryDisalbed: string;
2032
2100
  waveColorTertiary: string;
2033
2101
  textColorTextTertiary: string;
2102
+ rippleColorTertiary: string;
2034
2103
  colorQuaternary: string;
2035
2104
  colorQuaternaryHover: string;
2036
2105
  colorQuaternaryPressed: string;
2106
+ colorQuaternaryFocus: string;
2107
+ rippleColorQuaternary: string;
2108
+ waveColorQuaternary: string;
2037
2109
  color: string;
2038
2110
  colorHover: string;
2039
2111
  colorPressed: string;
@@ -2258,16 +2330,24 @@ declare const _default: import("vue").DefineComponent<{
2258
2330
  colorSecondary: string;
2259
2331
  colorSecondaryHover: string;
2260
2332
  colorSecondaryPressed: string;
2333
+ colorSecondaryFocus: string;
2334
+ colorSecondaryDisabled: string;
2335
+ textColorSecondaryDisabled: string;
2261
2336
  waveColorSecondary: string;
2262
2337
  colorTertiary: string;
2263
2338
  colorTertiaryHover: string;
2264
2339
  colorTertiaryPressed: string;
2340
+ colorTertiaryFocus: string;
2265
2341
  colorTertiaryDisalbed: string;
2266
2342
  waveColorTertiary: string;
2267
2343
  textColorTextTertiary: string;
2344
+ rippleColorTertiary: string;
2268
2345
  colorQuaternary: string;
2269
2346
  colorQuaternaryHover: string;
2270
2347
  colorQuaternaryPressed: string;
2348
+ colorQuaternaryFocus: string;
2349
+ rippleColorQuaternary: string;
2350
+ waveColorQuaternary: string;
2271
2351
  color: string;
2272
2352
  colorHover: string;
2273
2353
  colorPressed: string;
@@ -65,16 +65,24 @@ declare const calendarLight: import("../../_mixins").Theme<"Calendar", {
65
65
  colorSecondary: string;
66
66
  colorSecondaryHover: string;
67
67
  colorSecondaryPressed: string;
68
+ colorSecondaryFocus: string;
69
+ colorSecondaryDisabled: string;
70
+ textColorSecondaryDisabled: string;
68
71
  waveColorSecondary: string;
69
72
  colorTertiary: string;
70
73
  colorTertiaryHover: string;
71
74
  colorTertiaryPressed: string;
75
+ colorTertiaryFocus: string;
72
76
  colorTertiaryDisalbed: string;
73
77
  waveColorTertiary: string;
74
78
  textColorTextTertiary: string;
79
+ rippleColorTertiary: string;
75
80
  colorQuaternary: string;
76
81
  colorQuaternaryHover: string;
77
82
  colorQuaternaryPressed: string;
83
+ colorQuaternaryFocus: string;
84
+ rippleColorQuaternary: string;
85
+ waveColorQuaternary: string;
78
86
  color: string;
79
87
  colorHover: string;
80
88
  colorPressed: string;
@@ -153,8 +153,16 @@ export declare const cascaderProps: {
153
153
  loadingColor: string;
154
154
  }, {
155
155
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
156
+ height: string;
157
+ width: string;
158
+ borderRadius: string;
156
159
  color: string;
157
160
  colorHover: string;
161
+ railInsetHorizontalBottom: string;
162
+ railInsetHorizontalTop: string;
163
+ railInsetVerticalRight: string;
164
+ railInsetVerticalLeft: string;
165
+ railColor: string;
158
166
  }, any>;
159
167
  Empty: import("../../_mixins").Theme<"Empty", {
160
168
  iconSizeSmall: string;
@@ -300,8 +308,16 @@ export declare const cascaderProps: {
300
308
  }, any>;
301
309
  }>;
302
310
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
311
+ height: string;
312
+ width: string;
313
+ borderRadius: string;
303
314
  color: string;
304
315
  colorHover: string;
316
+ railInsetHorizontalBottom: string;
317
+ railInsetHorizontalTop: string;
318
+ railInsetVerticalRight: string;
319
+ railInsetVerticalLeft: string;
320
+ railColor: string;
305
321
  }, any>;
306
322
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
307
323
  fontWeight: string;
@@ -426,8 +442,16 @@ export declare const cascaderProps: {
426
442
  loadingColor: string;
427
443
  }, {
428
444
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
445
+ height: string;
446
+ width: string;
447
+ borderRadius: string;
429
448
  color: string;
430
449
  colorHover: string;
450
+ railInsetHorizontalBottom: string;
451
+ railInsetHorizontalTop: string;
452
+ railInsetVerticalRight: string;
453
+ railInsetVerticalLeft: string;
454
+ railColor: string;
431
455
  }, any>;
432
456
  Empty: import("../../_mixins").Theme<"Empty", {
433
457
  iconSizeSmall: string;
@@ -573,8 +597,16 @@ export declare const cascaderProps: {
573
597
  }, any>;
574
598
  }>;
575
599
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
600
+ height: string;
601
+ width: string;
602
+ borderRadius: string;
576
603
  color: string;
577
604
  colorHover: string;
605
+ railInsetHorizontalBottom: string;
606
+ railInsetHorizontalTop: string;
607
+ railInsetVerticalRight: string;
608
+ railInsetVerticalLeft: string;
609
+ railColor: string;
578
610
  }, any>;
579
611
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
580
612
  fontWeight: string;
@@ -699,8 +731,16 @@ export declare const cascaderProps: {
699
731
  loadingColor: string;
700
732
  }, {
701
733
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
734
+ height: string;
735
+ width: string;
736
+ borderRadius: string;
702
737
  color: string;
703
738
  colorHover: string;
739
+ railInsetHorizontalBottom: string;
740
+ railInsetHorizontalTop: string;
741
+ railInsetVerticalRight: string;
742
+ railInsetVerticalLeft: string;
743
+ railColor: string;
704
744
  }, any>;
705
745
  Empty: import("../../_mixins").Theme<"Empty", {
706
746
  iconSizeSmall: string;
@@ -846,8 +886,16 @@ export declare const cascaderProps: {
846
886
  }, any>;
847
887
  }>;
848
888
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
889
+ height: string;
890
+ width: string;
891
+ borderRadius: string;
849
892
  color: string;
850
893
  colorHover: string;
894
+ railInsetHorizontalBottom: string;
895
+ railInsetHorizontalTop: string;
896
+ railInsetVerticalRight: string;
897
+ railInsetVerticalLeft: string;
898
+ railColor: string;
851
899
  }, any>;
852
900
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
853
901
  fontWeight: string;
@@ -1070,8 +1118,16 @@ declare const _default: import("vue").DefineComponent<{
1070
1118
  loadingColor: string;
1071
1119
  }, {
1072
1120
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1121
+ height: string;
1122
+ width: string;
1123
+ borderRadius: string;
1073
1124
  color: string;
1074
1125
  colorHover: string;
1126
+ railInsetHorizontalBottom: string;
1127
+ railInsetHorizontalTop: string;
1128
+ railInsetVerticalRight: string;
1129
+ railInsetVerticalLeft: string;
1130
+ railColor: string;
1075
1131
  }, any>;
1076
1132
  Empty: import("../../_mixins").Theme<"Empty", {
1077
1133
  iconSizeSmall: string;
@@ -1217,8 +1273,16 @@ declare const _default: import("vue").DefineComponent<{
1217
1273
  }, any>;
1218
1274
  }>;
1219
1275
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1276
+ height: string;
1277
+ width: string;
1278
+ borderRadius: string;
1220
1279
  color: string;
1221
1280
  colorHover: string;
1281
+ railInsetHorizontalBottom: string;
1282
+ railInsetHorizontalTop: string;
1283
+ railInsetVerticalRight: string;
1284
+ railInsetVerticalLeft: string;
1285
+ railColor: string;
1222
1286
  }, any>;
1223
1287
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1224
1288
  fontWeight: string;
@@ -1343,8 +1407,16 @@ declare const _default: import("vue").DefineComponent<{
1343
1407
  loadingColor: string;
1344
1408
  }, {
1345
1409
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1410
+ height: string;
1411
+ width: string;
1412
+ borderRadius: string;
1346
1413
  color: string;
1347
1414
  colorHover: string;
1415
+ railInsetHorizontalBottom: string;
1416
+ railInsetHorizontalTop: string;
1417
+ railInsetVerticalRight: string;
1418
+ railInsetVerticalLeft: string;
1419
+ railColor: string;
1348
1420
  }, any>;
1349
1421
  Empty: import("../../_mixins").Theme<"Empty", {
1350
1422
  iconSizeSmall: string;
@@ -1490,8 +1562,16 @@ declare const _default: import("vue").DefineComponent<{
1490
1562
  }, any>;
1491
1563
  }>;
1492
1564
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1565
+ height: string;
1566
+ width: string;
1567
+ borderRadius: string;
1493
1568
  color: string;
1494
1569
  colorHover: string;
1570
+ railInsetHorizontalBottom: string;
1571
+ railInsetHorizontalTop: string;
1572
+ railInsetVerticalRight: string;
1573
+ railInsetVerticalLeft: string;
1574
+ railColor: string;
1495
1575
  }, any>;
1496
1576
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1497
1577
  fontWeight: string;
@@ -1616,8 +1696,16 @@ declare const _default: import("vue").DefineComponent<{
1616
1696
  loadingColor: string;
1617
1697
  }, {
1618
1698
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1699
+ height: string;
1700
+ width: string;
1701
+ borderRadius: string;
1619
1702
  color: string;
1620
1703
  colorHover: string;
1704
+ railInsetHorizontalBottom: string;
1705
+ railInsetHorizontalTop: string;
1706
+ railInsetVerticalRight: string;
1707
+ railInsetVerticalLeft: string;
1708
+ railColor: string;
1621
1709
  }, any>;
1622
1710
  Empty: import("../../_mixins").Theme<"Empty", {
1623
1711
  iconSizeSmall: string;
@@ -1763,8 +1851,16 @@ declare const _default: import("vue").DefineComponent<{
1763
1851
  }, any>;
1764
1852
  }>;
1765
1853
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1854
+ height: string;
1855
+ width: string;
1856
+ borderRadius: string;
1766
1857
  color: string;
1767
1858
  colorHover: string;
1859
+ railInsetHorizontalBottom: string;
1860
+ railInsetHorizontalTop: string;
1861
+ railInsetVerticalRight: string;
1862
+ railInsetVerticalLeft: string;
1863
+ railColor: string;
1768
1864
  }, any>;
1769
1865
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
1770
1866
  fontWeight: string;
@@ -1954,8 +2050,16 @@ declare const _default: import("vue").DefineComponent<{
1954
2050
  loadingColor: string;
1955
2051
  }, {
1956
2052
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2053
+ height: string;
2054
+ width: string;
2055
+ borderRadius: string;
1957
2056
  color: string;
1958
2057
  colorHover: string;
2058
+ railInsetHorizontalBottom: string;
2059
+ railInsetHorizontalTop: string;
2060
+ railInsetVerticalRight: string;
2061
+ railInsetVerticalLeft: string;
2062
+ railColor: string;
1959
2063
  }, any>;
1960
2064
  Empty: import("../../_mixins").Theme<"Empty", {
1961
2065
  iconSizeSmall: string;
@@ -2101,8 +2205,16 @@ declare const _default: import("vue").DefineComponent<{
2101
2205
  }, any>;
2102
2206
  }>;
2103
2207
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2208
+ height: string;
2209
+ width: string;
2210
+ borderRadius: string;
2104
2211
  color: string;
2105
2212
  colorHover: string;
2213
+ railInsetHorizontalBottom: string;
2214
+ railInsetHorizontalTop: string;
2215
+ railInsetVerticalRight: string;
2216
+ railInsetVerticalLeft: string;
2217
+ railColor: string;
2106
2218
  }, any>;
2107
2219
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2108
2220
  fontWeight: string;
@@ -2180,8 +2292,16 @@ declare const _default: import("vue").DefineComponent<{
2180
2292
  InternalSelectMenu?: {
2181
2293
  peers?: {
2182
2294
  Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
2295
+ height: string;
2296
+ width: string;
2297
+ borderRadius: string;
2183
2298
  color: string;
2184
2299
  colorHover: string;
2300
+ railInsetHorizontalBottom: string;
2301
+ railInsetHorizontalTop: string;
2302
+ railInsetVerticalRight: string;
2303
+ railInsetVerticalLeft: string;
2304
+ railColor: string;
2185
2305
  }, any>> | undefined;
2186
2306
  Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
2187
2307
  iconSizeSmall: string;
@@ -2417,8 +2537,16 @@ declare const _default: import("vue").DefineComponent<{
2417
2537
  loadingColor: string;
2418
2538
  }, {
2419
2539
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2540
+ height: string;
2541
+ width: string;
2542
+ borderRadius: string;
2420
2543
  color: string;
2421
2544
  colorHover: string;
2545
+ railInsetHorizontalBottom: string;
2546
+ railInsetHorizontalTop: string;
2547
+ railInsetVerticalRight: string;
2548
+ railInsetVerticalLeft: string;
2549
+ railColor: string;
2422
2550
  }, any>;
2423
2551
  Empty: import("../../_mixins").Theme<"Empty", {
2424
2552
  iconSizeSmall: string;
@@ -2564,8 +2692,16 @@ declare const _default: import("vue").DefineComponent<{
2564
2692
  }, any>;
2565
2693
  }>;
2566
2694
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2695
+ height: string;
2696
+ width: string;
2697
+ borderRadius: string;
2567
2698
  color: string;
2568
2699
  colorHover: string;
2700
+ railInsetHorizontalBottom: string;
2701
+ railInsetHorizontalTop: string;
2702
+ railInsetVerticalRight: string;
2703
+ railInsetVerticalLeft: string;
2704
+ railColor: string;
2569
2705
  }, any>;
2570
2706
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2571
2707
  fontWeight: string;
@@ -2690,8 +2826,16 @@ declare const _default: import("vue").DefineComponent<{
2690
2826
  loadingColor: string;
2691
2827
  }, {
2692
2828
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2829
+ height: string;
2830
+ width: string;
2831
+ borderRadius: string;
2693
2832
  color: string;
2694
2833
  colorHover: string;
2834
+ railInsetHorizontalBottom: string;
2835
+ railInsetHorizontalTop: string;
2836
+ railInsetVerticalRight: string;
2837
+ railInsetVerticalLeft: string;
2838
+ railColor: string;
2695
2839
  }, any>;
2696
2840
  Empty: import("../../_mixins").Theme<"Empty", {
2697
2841
  iconSizeSmall: string;
@@ -2837,8 +2981,16 @@ declare const _default: import("vue").DefineComponent<{
2837
2981
  }, any>;
2838
2982
  }>;
2839
2983
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2984
+ height: string;
2985
+ width: string;
2986
+ borderRadius: string;
2840
2987
  color: string;
2841
2988
  colorHover: string;
2989
+ railInsetHorizontalBottom: string;
2990
+ railInsetHorizontalTop: string;
2991
+ railInsetVerticalRight: string;
2992
+ railInsetVerticalLeft: string;
2993
+ railColor: string;
2842
2994
  }, any>;
2843
2995
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
2844
2996
  fontWeight: string;
@@ -2963,8 +3115,16 @@ declare const _default: import("vue").DefineComponent<{
2963
3115
  loadingColor: string;
2964
3116
  }, {
2965
3117
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3118
+ height: string;
3119
+ width: string;
3120
+ borderRadius: string;
2966
3121
  color: string;
2967
3122
  colorHover: string;
3123
+ railInsetHorizontalBottom: string;
3124
+ railInsetHorizontalTop: string;
3125
+ railInsetVerticalRight: string;
3126
+ railInsetVerticalLeft: string;
3127
+ railColor: string;
2968
3128
  }, any>;
2969
3129
  Empty: import("../../_mixins").Theme<"Empty", {
2970
3130
  iconSizeSmall: string;
@@ -3110,8 +3270,16 @@ declare const _default: import("vue").DefineComponent<{
3110
3270
  }, any>;
3111
3271
  }>;
3112
3272
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3273
+ height: string;
3274
+ width: string;
3275
+ borderRadius: string;
3113
3276
  color: string;
3114
3277
  colorHover: string;
3278
+ railInsetHorizontalBottom: string;
3279
+ railInsetHorizontalTop: string;
3280
+ railInsetVerticalRight: string;
3281
+ railInsetVerticalLeft: string;
3282
+ railColor: string;
3115
3283
  }, any>;
3116
3284
  Checkbox: import("../../_mixins").Theme<"Checkbox", {
3117
3285
  fontWeight: string;