@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
@@ -192,16 +192,24 @@ declare const _default: import("vue").DefineComponent<{
192
192
  colorSecondary: string;
193
193
  colorSecondaryHover: string;
194
194
  colorSecondaryPressed: string;
195
+ colorSecondaryFocus: string;
196
+ colorSecondaryDisabled: string;
197
+ textColorSecondaryDisabled: string;
195
198
  waveColorSecondary: string;
196
199
  colorTertiary: string;
197
200
  colorTertiaryHover: string;
198
201
  colorTertiaryPressed: string;
202
+ colorTertiaryFocus: string;
199
203
  colorTertiaryDisalbed: string;
200
204
  waveColorTertiary: string;
201
205
  textColorTextTertiary: string;
206
+ rippleColorTertiary: string;
202
207
  colorQuaternary: string;
203
208
  colorQuaternaryHover: string;
204
209
  colorQuaternaryPressed: string;
210
+ colorQuaternaryFocus: string;
211
+ rippleColorQuaternary: string;
212
+ waveColorQuaternary: string;
205
213
  color: string;
206
214
  colorHover: string;
207
215
  colorPressed: string;
@@ -720,8 +728,16 @@ declare const _default: import("vue").DefineComponent<{
720
728
  loadingColor: string;
721
729
  }, {
722
730
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
731
+ height: string;
732
+ width: string;
733
+ borderRadius: string;
723
734
  color: string;
724
735
  colorHover: string;
736
+ railInsetHorizontalBottom: string;
737
+ railInsetHorizontalTop: string;
738
+ railInsetVerticalRight: string;
739
+ railInsetVerticalLeft: string;
740
+ railColor: string;
725
741
  }, any>;
726
742
  Empty: import("../../_mixins").Theme<"Empty", {
727
743
  iconSizeSmall: string;
@@ -859,8 +875,16 @@ declare const _default: import("vue").DefineComponent<{
859
875
  loadingColor: string;
860
876
  }, {
861
877
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
878
+ height: string;
879
+ width: string;
880
+ borderRadius: string;
862
881
  color: string;
863
882
  colorHover: string;
883
+ railInsetHorizontalBottom: string;
884
+ railInsetHorizontalTop: string;
885
+ railInsetVerticalRight: string;
886
+ railInsetVerticalLeft: string;
887
+ railColor: string;
864
888
  }, any>;
865
889
  Empty: import("../../_mixins").Theme<"Empty", {
866
890
  iconSizeSmall: string;
@@ -885,8 +909,16 @@ declare const _default: import("vue").DefineComponent<{
885
909
  }>;
886
910
  }>;
887
911
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
912
+ height: string;
913
+ width: string;
914
+ borderRadius: string;
888
915
  color: string;
889
916
  colorHover: string;
917
+ railInsetHorizontalBottom: string;
918
+ railInsetHorizontalTop: string;
919
+ railInsetVerticalRight: string;
920
+ railInsetVerticalLeft: string;
921
+ railColor: string;
890
922
  }, any>;
891
923
  Empty: import("../../_mixins").Theme<"Empty", {
892
924
  iconSizeSmall: string;
@@ -1108,16 +1140,24 @@ declare const _default: import("vue").DefineComponent<{
1108
1140
  colorSecondary: string;
1109
1141
  colorSecondaryHover: string;
1110
1142
  colorSecondaryPressed: string;
1143
+ colorSecondaryFocus: string;
1144
+ colorSecondaryDisabled: string;
1145
+ textColorSecondaryDisabled: string;
1111
1146
  waveColorSecondary: string;
1112
1147
  colorTertiary: string;
1113
1148
  colorTertiaryHover: string;
1114
1149
  colorTertiaryPressed: string;
1150
+ colorTertiaryFocus: string;
1115
1151
  colorTertiaryDisalbed: string;
1116
1152
  waveColorTertiary: string;
1117
1153
  textColorTextTertiary: string;
1154
+ rippleColorTertiary: string;
1118
1155
  colorQuaternary: string;
1119
1156
  colorQuaternaryHover: string;
1120
1157
  colorQuaternaryPressed: string;
1158
+ colorQuaternaryFocus: string;
1159
+ rippleColorQuaternary: string;
1160
+ waveColorQuaternary: string;
1121
1161
  color: string;
1122
1162
  colorHover: string;
1123
1163
  colorPressed: string;
@@ -1636,8 +1676,16 @@ declare const _default: import("vue").DefineComponent<{
1636
1676
  loadingColor: string;
1637
1677
  }, {
1638
1678
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1679
+ height: string;
1680
+ width: string;
1681
+ borderRadius: string;
1639
1682
  color: string;
1640
1683
  colorHover: string;
1684
+ railInsetHorizontalBottom: string;
1685
+ railInsetHorizontalTop: string;
1686
+ railInsetVerticalRight: string;
1687
+ railInsetVerticalLeft: string;
1688
+ railColor: string;
1641
1689
  }, any>;
1642
1690
  Empty: import("../../_mixins").Theme<"Empty", {
1643
1691
  iconSizeSmall: string;
@@ -1775,8 +1823,16 @@ declare const _default: import("vue").DefineComponent<{
1775
1823
  loadingColor: string;
1776
1824
  }, {
1777
1825
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1826
+ height: string;
1827
+ width: string;
1828
+ borderRadius: string;
1778
1829
  color: string;
1779
1830
  colorHover: string;
1831
+ railInsetHorizontalBottom: string;
1832
+ railInsetHorizontalTop: string;
1833
+ railInsetVerticalRight: string;
1834
+ railInsetVerticalLeft: string;
1835
+ railColor: string;
1780
1836
  }, any>;
1781
1837
  Empty: import("../../_mixins").Theme<"Empty", {
1782
1838
  iconSizeSmall: string;
@@ -1801,8 +1857,16 @@ declare const _default: import("vue").DefineComponent<{
1801
1857
  }>;
1802
1858
  }>;
1803
1859
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1860
+ height: string;
1861
+ width: string;
1862
+ borderRadius: string;
1804
1863
  color: string;
1805
1864
  colorHover: string;
1865
+ railInsetHorizontalBottom: string;
1866
+ railInsetHorizontalTop: string;
1867
+ railInsetVerticalRight: string;
1868
+ railInsetVerticalLeft: string;
1869
+ railColor: string;
1806
1870
  }, any>;
1807
1871
  Empty: import("../../_mixins").Theme<"Empty", {
1808
1872
  iconSizeSmall: 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;
@@ -2552,8 +2624,16 @@ declare const _default: import("vue").DefineComponent<{
2552
2624
  loadingColor: string;
2553
2625
  }, {
2554
2626
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2627
+ height: string;
2628
+ width: string;
2629
+ borderRadius: string;
2555
2630
  color: string;
2556
2631
  colorHover: string;
2632
+ railInsetHorizontalBottom: string;
2633
+ railInsetHorizontalTop: string;
2634
+ railInsetVerticalRight: string;
2635
+ railInsetVerticalLeft: string;
2636
+ railColor: string;
2557
2637
  }, any>;
2558
2638
  Empty: import("../../_mixins").Theme<"Empty", {
2559
2639
  iconSizeSmall: string;
@@ -2691,8 +2771,16 @@ declare const _default: import("vue").DefineComponent<{
2691
2771
  loadingColor: string;
2692
2772
  }, {
2693
2773
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2774
+ height: string;
2775
+ width: string;
2776
+ borderRadius: string;
2694
2777
  color: string;
2695
2778
  colorHover: string;
2779
+ railInsetHorizontalBottom: string;
2780
+ railInsetHorizontalTop: string;
2781
+ railInsetVerticalRight: string;
2782
+ railInsetVerticalLeft: string;
2783
+ railColor: string;
2696
2784
  }, any>;
2697
2785
  Empty: import("../../_mixins").Theme<"Empty", {
2698
2786
  iconSizeSmall: string;
@@ -2717,8 +2805,16 @@ declare const _default: import("vue").DefineComponent<{
2717
2805
  }>;
2718
2806
  }>;
2719
2807
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2808
+ height: string;
2809
+ width: string;
2810
+ borderRadius: string;
2720
2811
  color: string;
2721
2812
  colorHover: string;
2813
+ railInsetHorizontalBottom: string;
2814
+ railInsetHorizontalTop: string;
2815
+ railInsetVerticalRight: string;
2816
+ railInsetVerticalLeft: string;
2817
+ railColor: string;
2722
2818
  }, any>;
2723
2819
  Empty: import("../../_mixins").Theme<"Empty", {
2724
2820
  iconSizeSmall: string;
@@ -2963,16 +3059,24 @@ declare const _default: import("vue").DefineComponent<{
2963
3059
  colorSecondary: string;
2964
3060
  colorSecondaryHover: string;
2965
3061
  colorSecondaryPressed: string;
3062
+ colorSecondaryFocus: string;
3063
+ colorSecondaryDisabled: string;
3064
+ textColorSecondaryDisabled: string;
2966
3065
  waveColorSecondary: string;
2967
3066
  colorTertiary: string;
2968
3067
  colorTertiaryHover: string;
2969
3068
  colorTertiaryPressed: string;
3069
+ colorTertiaryFocus: string;
2970
3070
  colorTertiaryDisalbed: string;
2971
3071
  waveColorTertiary: string;
2972
3072
  textColorTextTertiary: string;
3073
+ rippleColorTertiary: string;
2973
3074
  colorQuaternary: string;
2974
3075
  colorQuaternaryHover: string;
2975
3076
  colorQuaternaryPressed: string;
3077
+ colorQuaternaryFocus: string;
3078
+ rippleColorQuaternary: string;
3079
+ waveColorQuaternary: string;
2976
3080
  color: string;
2977
3081
  colorHover: string;
2978
3082
  colorPressed: string;
@@ -3491,8 +3595,16 @@ declare const _default: import("vue").DefineComponent<{
3491
3595
  loadingColor: string;
3492
3596
  }, {
3493
3597
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3598
+ height: string;
3599
+ width: string;
3600
+ borderRadius: string;
3494
3601
  color: string;
3495
3602
  colorHover: string;
3603
+ railInsetHorizontalBottom: string;
3604
+ railInsetHorizontalTop: string;
3605
+ railInsetVerticalRight: string;
3606
+ railInsetVerticalLeft: string;
3607
+ railColor: string;
3496
3608
  }, any>;
3497
3609
  Empty: import("../../_mixins").Theme<"Empty", {
3498
3610
  iconSizeSmall: string;
@@ -3630,8 +3742,16 @@ declare const _default: import("vue").DefineComponent<{
3630
3742
  loadingColor: string;
3631
3743
  }, {
3632
3744
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3745
+ height: string;
3746
+ width: string;
3747
+ borderRadius: string;
3633
3748
  color: string;
3634
3749
  colorHover: string;
3750
+ railInsetHorizontalBottom: string;
3751
+ railInsetHorizontalTop: string;
3752
+ railInsetVerticalRight: string;
3753
+ railInsetVerticalLeft: string;
3754
+ railColor: string;
3635
3755
  }, any>;
3636
3756
  Empty: import("../../_mixins").Theme<"Empty", {
3637
3757
  iconSizeSmall: string;
@@ -3656,8 +3776,16 @@ declare const _default: import("vue").DefineComponent<{
3656
3776
  }>;
3657
3777
  }>;
3658
3778
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3779
+ height: string;
3780
+ width: string;
3781
+ borderRadius: string;
3659
3782
  color: string;
3660
3783
  colorHover: string;
3784
+ railInsetHorizontalBottom: string;
3785
+ railInsetHorizontalTop: string;
3786
+ railInsetVerticalRight: string;
3787
+ railInsetVerticalLeft: string;
3788
+ railColor: string;
3661
3789
  }, any>;
3662
3790
  Empty: import("../../_mixins").Theme<"Empty", {
3663
3791
  iconSizeSmall: string;
@@ -3976,8 +4104,16 @@ declare const _default: import("vue").DefineComponent<{
3976
4104
  loadingColor: string;
3977
4105
  }, {
3978
4106
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4107
+ height: string;
4108
+ width: string;
4109
+ borderRadius: string;
3979
4110
  color: string;
3980
4111
  colorHover: string;
4112
+ railInsetHorizontalBottom: string;
4113
+ railInsetHorizontalTop: string;
4114
+ railInsetVerticalRight: string;
4115
+ railInsetVerticalLeft: string;
4116
+ railColor: string;
3981
4117
  }, any>;
3982
4118
  Empty: import("../../_mixins").Theme<"Empty", {
3983
4119
  iconSizeSmall: string;
@@ -4115,8 +4251,16 @@ declare const _default: import("vue").DefineComponent<{
4115
4251
  loadingColor: string;
4116
4252
  }, {
4117
4253
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4254
+ height: string;
4255
+ width: string;
4256
+ borderRadius: string;
4118
4257
  color: string;
4119
4258
  colorHover: string;
4259
+ railInsetHorizontalBottom: string;
4260
+ railInsetHorizontalTop: string;
4261
+ railInsetVerticalRight: string;
4262
+ railInsetVerticalLeft: string;
4263
+ railColor: string;
4120
4264
  }, any>;
4121
4265
  Empty: import("../../_mixins").Theme<"Empty", {
4122
4266
  iconSizeSmall: string;
@@ -4460,16 +4604,24 @@ declare const _default: import("vue").DefineComponent<{
4460
4604
  colorSecondary: string;
4461
4605
  colorSecondaryHover: string;
4462
4606
  colorSecondaryPressed: string;
4607
+ colorSecondaryFocus: string;
4608
+ colorSecondaryDisabled: string;
4609
+ textColorSecondaryDisabled: string;
4463
4610
  waveColorSecondary: string;
4464
4611
  colorTertiary: string;
4465
4612
  colorTertiaryHover: string;
4466
4613
  colorTertiaryPressed: string;
4614
+ colorTertiaryFocus: string;
4467
4615
  colorTertiaryDisalbed: string;
4468
4616
  waveColorTertiary: string;
4469
4617
  textColorTextTertiary: string;
4618
+ rippleColorTertiary: string;
4470
4619
  colorQuaternary: string;
4471
4620
  colorQuaternaryHover: string;
4472
4621
  colorQuaternaryPressed: string;
4622
+ colorQuaternaryFocus: string;
4623
+ rippleColorQuaternary: string;
4624
+ waveColorQuaternary: string;
4473
4625
  color: string;
4474
4626
  colorHover: string;
4475
4627
  colorPressed: string;
@@ -4988,8 +5140,16 @@ declare const _default: import("vue").DefineComponent<{
4988
5140
  loadingColor: string;
4989
5141
  }, {
4990
5142
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5143
+ height: string;
5144
+ width: string;
5145
+ borderRadius: string;
4991
5146
  color: string;
4992
5147
  colorHover: string;
5148
+ railInsetHorizontalBottom: string;
5149
+ railInsetHorizontalTop: string;
5150
+ railInsetVerticalRight: string;
5151
+ railInsetVerticalLeft: string;
5152
+ railColor: string;
4993
5153
  }, any>;
4994
5154
  Empty: import("../../_mixins").Theme<"Empty", {
4995
5155
  iconSizeSmall: string;
@@ -5127,8 +5287,16 @@ declare const _default: import("vue").DefineComponent<{
5127
5287
  loadingColor: string;
5128
5288
  }, {
5129
5289
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5290
+ height: string;
5291
+ width: string;
5292
+ borderRadius: string;
5130
5293
  color: string;
5131
5294
  colorHover: string;
5295
+ railInsetHorizontalBottom: string;
5296
+ railInsetHorizontalTop: string;
5297
+ railInsetVerticalRight: string;
5298
+ railInsetVerticalLeft: string;
5299
+ railColor: string;
5132
5300
  }, any>;
5133
5301
  Empty: import("../../_mixins").Theme<"Empty", {
5134
5302
  iconSizeSmall: string;
@@ -5153,8 +5321,16 @@ declare const _default: import("vue").DefineComponent<{
5153
5321
  }>;
5154
5322
  }>;
5155
5323
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5324
+ height: string;
5325
+ width: string;
5326
+ borderRadius: string;
5156
5327
  color: string;
5157
5328
  colorHover: string;
5329
+ railInsetHorizontalBottom: string;
5330
+ railInsetHorizontalTop: string;
5331
+ railInsetVerticalRight: string;
5332
+ railInsetVerticalLeft: string;
5333
+ railColor: string;
5158
5334
  }, any>;
5159
5335
  Empty: import("../../_mixins").Theme<"Empty", {
5160
5336
  iconSizeSmall: string;
@@ -5376,16 +5552,24 @@ declare const _default: import("vue").DefineComponent<{
5376
5552
  colorSecondary: string;
5377
5553
  colorSecondaryHover: string;
5378
5554
  colorSecondaryPressed: string;
5555
+ colorSecondaryFocus: string;
5556
+ colorSecondaryDisabled: string;
5557
+ textColorSecondaryDisabled: string;
5379
5558
  waveColorSecondary: string;
5380
5559
  colorTertiary: string;
5381
5560
  colorTertiaryHover: string;
5382
5561
  colorTertiaryPressed: string;
5562
+ colorTertiaryFocus: string;
5383
5563
  colorTertiaryDisalbed: string;
5384
5564
  waveColorTertiary: string;
5385
5565
  textColorTextTertiary: string;
5566
+ rippleColorTertiary: string;
5386
5567
  colorQuaternary: string;
5387
5568
  colorQuaternaryHover: string;
5388
5569
  colorQuaternaryPressed: string;
5570
+ colorQuaternaryFocus: string;
5571
+ rippleColorQuaternary: string;
5572
+ waveColorQuaternary: string;
5389
5573
  color: string;
5390
5574
  colorHover: string;
5391
5575
  colorPressed: string;
@@ -5904,8 +6088,16 @@ declare const _default: import("vue").DefineComponent<{
5904
6088
  loadingColor: string;
5905
6089
  }, {
5906
6090
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6091
+ height: string;
6092
+ width: string;
6093
+ borderRadius: string;
5907
6094
  color: string;
5908
6095
  colorHover: string;
6096
+ railInsetHorizontalBottom: string;
6097
+ railInsetHorizontalTop: string;
6098
+ railInsetVerticalRight: string;
6099
+ railInsetVerticalLeft: string;
6100
+ railColor: string;
5909
6101
  }, any>;
5910
6102
  Empty: import("../../_mixins").Theme<"Empty", {
5911
6103
  iconSizeSmall: string;
@@ -6043,8 +6235,16 @@ declare const _default: import("vue").DefineComponent<{
6043
6235
  loadingColor: string;
6044
6236
  }, {
6045
6237
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6238
+ height: string;
6239
+ width: string;
6240
+ borderRadius: string;
6046
6241
  color: string;
6047
6242
  colorHover: string;
6243
+ railInsetHorizontalBottom: string;
6244
+ railInsetHorizontalTop: string;
6245
+ railInsetVerticalRight: string;
6246
+ railInsetVerticalLeft: string;
6247
+ railColor: string;
6048
6248
  }, any>;
6049
6249
  Empty: import("../../_mixins").Theme<"Empty", {
6050
6250
  iconSizeSmall: string;
@@ -6069,8 +6269,16 @@ declare const _default: import("vue").DefineComponent<{
6069
6269
  }>;
6070
6270
  }>;
6071
6271
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6272
+ height: string;
6273
+ width: string;
6274
+ borderRadius: string;
6072
6275
  color: string;
6073
6276
  colorHover: string;
6277
+ railInsetHorizontalBottom: string;
6278
+ railInsetHorizontalTop: string;
6279
+ railInsetVerticalRight: string;
6280
+ railInsetVerticalLeft: string;
6281
+ railColor: string;
6074
6282
  }, any>;
6075
6283
  Empty: import("../../_mixins").Theme<"Empty", {
6076
6284
  iconSizeSmall: string;
@@ -6292,16 +6500,24 @@ declare const _default: import("vue").DefineComponent<{
6292
6500
  colorSecondary: string;
6293
6501
  colorSecondaryHover: string;
6294
6502
  colorSecondaryPressed: string;
6503
+ colorSecondaryFocus: string;
6504
+ colorSecondaryDisabled: string;
6505
+ textColorSecondaryDisabled: string;
6295
6506
  waveColorSecondary: string;
6296
6507
  colorTertiary: string;
6297
6508
  colorTertiaryHover: string;
6298
6509
  colorTertiaryPressed: string;
6510
+ colorTertiaryFocus: string;
6299
6511
  colorTertiaryDisalbed: string;
6300
6512
  waveColorTertiary: string;
6301
6513
  textColorTextTertiary: string;
6514
+ rippleColorTertiary: string;
6302
6515
  colorQuaternary: string;
6303
6516
  colorQuaternaryHover: string;
6304
6517
  colorQuaternaryPressed: string;
6518
+ colorQuaternaryFocus: string;
6519
+ rippleColorQuaternary: string;
6520
+ waveColorQuaternary: string;
6305
6521
  color: string;
6306
6522
  colorHover: string;
6307
6523
  colorPressed: string;
@@ -6820,8 +7036,16 @@ declare const _default: import("vue").DefineComponent<{
6820
7036
  loadingColor: string;
6821
7037
  }, {
6822
7038
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7039
+ height: string;
7040
+ width: string;
7041
+ borderRadius: string;
6823
7042
  color: string;
6824
7043
  colorHover: string;
7044
+ railInsetHorizontalBottom: string;
7045
+ railInsetHorizontalTop: string;
7046
+ railInsetVerticalRight: string;
7047
+ railInsetVerticalLeft: string;
7048
+ railColor: string;
6825
7049
  }, any>;
6826
7050
  Empty: import("../../_mixins").Theme<"Empty", {
6827
7051
  iconSizeSmall: string;
@@ -6959,8 +7183,16 @@ declare const _default: import("vue").DefineComponent<{
6959
7183
  loadingColor: string;
6960
7184
  }, {
6961
7185
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7186
+ height: string;
7187
+ width: string;
7188
+ borderRadius: string;
6962
7189
  color: string;
6963
7190
  colorHover: string;
7191
+ railInsetHorizontalBottom: string;
7192
+ railInsetHorizontalTop: string;
7193
+ railInsetVerticalRight: string;
7194
+ railInsetVerticalLeft: string;
7195
+ railColor: string;
6964
7196
  }, any>;
6965
7197
  Empty: import("../../_mixins").Theme<"Empty", {
6966
7198
  iconSizeSmall: string;
@@ -6985,8 +7217,16 @@ declare const _default: import("vue").DefineComponent<{
6985
7217
  }>;
6986
7218
  }>;
6987
7219
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7220
+ height: string;
7221
+ width: string;
7222
+ borderRadius: string;
6988
7223
  color: string;
6989
7224
  colorHover: string;
7225
+ railInsetHorizontalBottom: string;
7226
+ railInsetHorizontalTop: string;
7227
+ railInsetVerticalRight: string;
7228
+ railInsetVerticalLeft: string;
7229
+ railColor: string;
6990
7230
  }, any>;
6991
7231
  Empty: import("../../_mixins").Theme<"Empty", {
6992
7232
  iconSizeSmall: string;
@@ -94,16 +94,24 @@ declare const _default: import("vue").DefineComponent<{
94
94
  colorSecondary: string;
95
95
  colorSecondaryHover: string;
96
96
  colorSecondaryPressed: string;
97
+ colorSecondaryFocus: string;
98
+ colorSecondaryDisabled: string;
99
+ textColorSecondaryDisabled: string;
97
100
  waveColorSecondary: string;
98
101
  colorTertiary: string;
99
102
  colorTertiaryHover: string;
100
103
  colorTertiaryPressed: string;
104
+ colorTertiaryFocus: string;
101
105
  colorTertiaryDisalbed: string;
102
106
  waveColorTertiary: string;
103
107
  textColorTextTertiary: string;
108
+ rippleColorTertiary: string;
104
109
  colorQuaternary: string;
105
110
  colorQuaternaryHover: string;
106
111
  colorQuaternaryPressed: string;
112
+ colorQuaternaryFocus: string;
113
+ rippleColorQuaternary: string;
114
+ waveColorQuaternary: string;
107
115
  color: string;
108
116
  colorHover: string;
109
117
  colorPressed: string;
@@ -622,8 +630,16 @@ declare const _default: import("vue").DefineComponent<{
622
630
  loadingColor: string;
623
631
  }, {
624
632
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
633
+ height: string;
634
+ width: string;
635
+ borderRadius: string;
625
636
  color: string;
626
637
  colorHover: string;
638
+ railInsetHorizontalBottom: string;
639
+ railInsetHorizontalTop: string;
640
+ railInsetVerticalRight: string;
641
+ railInsetVerticalLeft: string;
642
+ railColor: string;
627
643
  }, any>;
628
644
  Empty: import("../../../_mixins").Theme<"Empty", {
629
645
  iconSizeSmall: string;
@@ -761,8 +777,16 @@ declare const _default: import("vue").DefineComponent<{
761
777
  loadingColor: string;
762
778
  }, {
763
779
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
780
+ height: string;
781
+ width: string;
782
+ borderRadius: string;
764
783
  color: string;
765
784
  colorHover: string;
785
+ railInsetHorizontalBottom: string;
786
+ railInsetHorizontalTop: string;
787
+ railInsetVerticalRight: string;
788
+ railInsetVerticalLeft: string;
789
+ railColor: string;
766
790
  }, any>;
767
791
  Empty: import("../../../_mixins").Theme<"Empty", {
768
792
  iconSizeSmall: string;
@@ -787,8 +811,16 @@ declare const _default: import("vue").DefineComponent<{
787
811
  }>;
788
812
  }>;
789
813
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
814
+ height: string;
815
+ width: string;
816
+ borderRadius: string;
790
817
  color: string;
791
818
  colorHover: string;
819
+ railInsetHorizontalBottom: string;
820
+ railInsetHorizontalTop: string;
821
+ railInsetVerticalRight: string;
822
+ railInsetVerticalLeft: string;
823
+ railColor: string;
792
824
  }, any>;
793
825
  Empty: import("../../../_mixins").Theme<"Empty", {
794
826
  iconSizeSmall: string;
@@ -1107,8 +1139,16 @@ declare const _default: import("vue").DefineComponent<{
1107
1139
  loadingColor: string;
1108
1140
  }, {
1109
1141
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1142
+ height: string;
1143
+ width: string;
1144
+ borderRadius: string;
1110
1145
  color: string;
1111
1146
  colorHover: string;
1147
+ railInsetHorizontalBottom: string;
1148
+ railInsetHorizontalTop: string;
1149
+ railInsetVerticalRight: string;
1150
+ railInsetVerticalLeft: string;
1151
+ railColor: string;
1112
1152
  }, any>;
1113
1153
  Empty: import("../../../_mixins").Theme<"Empty", {
1114
1154
  iconSizeSmall: string;
@@ -1246,8 +1286,16 @@ declare const _default: import("vue").DefineComponent<{
1246
1286
  loadingColor: string;
1247
1287
  }, {
1248
1288
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1289
+ height: string;
1290
+ width: string;
1291
+ borderRadius: string;
1249
1292
  color: string;
1250
1293
  colorHover: string;
1294
+ railInsetHorizontalBottom: string;
1295
+ railInsetHorizontalTop: string;
1296
+ railInsetVerticalRight: string;
1297
+ railInsetVerticalLeft: string;
1298
+ railColor: string;
1251
1299
  }, any>;
1252
1300
  Empty: import("../../../_mixins").Theme<"Empty", {
1253
1301
  iconSizeSmall: string;