@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
@@ -106,8 +106,16 @@ export declare const transferProps: {
106
106
  labelPadding: string;
107
107
  }, any>;
108
108
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
109
+ height: string;
110
+ width: string;
111
+ borderRadius: string;
109
112
  color: string;
110
113
  colorHover: string;
114
+ railInsetHorizontalBottom: string;
115
+ railInsetHorizontalTop: string;
116
+ railInsetVerticalRight: string;
117
+ railInsetVerticalLeft: string;
118
+ railColor: string;
111
119
  }, any>;
112
120
  Input: import("../../_mixins").Theme<"Input", {
113
121
  paddingTiny: string;
@@ -213,16 +221,24 @@ export declare const transferProps: {
213
221
  colorSecondary: string;
214
222
  colorSecondaryHover: string;
215
223
  colorSecondaryPressed: string;
224
+ colorSecondaryFocus: string;
225
+ colorSecondaryDisabled: string;
226
+ textColorSecondaryDisabled: string;
216
227
  waveColorSecondary: string;
217
228
  colorTertiary: string;
218
229
  colorTertiaryHover: string;
219
230
  colorTertiaryPressed: string;
231
+ colorTertiaryFocus: string;
220
232
  colorTertiaryDisalbed: string;
221
233
  waveColorTertiary: string;
222
234
  textColorTextTertiary: string;
235
+ rippleColorTertiary: string;
223
236
  colorQuaternary: string;
224
237
  colorQuaternaryHover: string;
225
238
  colorQuaternaryPressed: string;
239
+ colorQuaternaryFocus: string;
240
+ rippleColorQuaternary: string;
241
+ waveColorQuaternary: string;
226
242
  color: string;
227
243
  colorHover: string;
228
244
  colorPressed: string;
@@ -481,8 +497,16 @@ export declare const transferProps: {
481
497
  labelPadding: string;
482
498
  }, any>;
483
499
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
500
+ height: string;
501
+ width: string;
502
+ borderRadius: string;
484
503
  color: string;
485
504
  colorHover: string;
505
+ railInsetHorizontalBottom: string;
506
+ railInsetHorizontalTop: string;
507
+ railInsetVerticalRight: string;
508
+ railInsetVerticalLeft: string;
509
+ railColor: string;
486
510
  }, any>;
487
511
  Input: import("../../_mixins").Theme<"Input", {
488
512
  paddingTiny: string;
@@ -588,16 +612,24 @@ export declare const transferProps: {
588
612
  colorSecondary: string;
589
613
  colorSecondaryHover: string;
590
614
  colorSecondaryPressed: string;
615
+ colorSecondaryFocus: string;
616
+ colorSecondaryDisabled: string;
617
+ textColorSecondaryDisabled: string;
591
618
  waveColorSecondary: string;
592
619
  colorTertiary: string;
593
620
  colorTertiaryHover: string;
594
621
  colorTertiaryPressed: string;
622
+ colorTertiaryFocus: string;
595
623
  colorTertiaryDisalbed: string;
596
624
  waveColorTertiary: string;
597
625
  textColorTextTertiary: string;
626
+ rippleColorTertiary: string;
598
627
  colorQuaternary: string;
599
628
  colorQuaternaryHover: string;
600
629
  colorQuaternaryPressed: string;
630
+ colorQuaternaryFocus: string;
631
+ rippleColorQuaternary: string;
632
+ waveColorQuaternary: string;
601
633
  color: string;
602
634
  colorHover: string;
603
635
  colorPressed: string;
@@ -856,8 +888,16 @@ export declare const transferProps: {
856
888
  labelPadding: string;
857
889
  }, any>;
858
890
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
891
+ height: string;
892
+ width: string;
893
+ borderRadius: string;
859
894
  color: string;
860
895
  colorHover: string;
896
+ railInsetHorizontalBottom: string;
897
+ railInsetHorizontalTop: string;
898
+ railInsetVerticalRight: string;
899
+ railInsetVerticalLeft: string;
900
+ railColor: string;
861
901
  }, any>;
862
902
  Input: import("../../_mixins").Theme<"Input", {
863
903
  paddingTiny: string;
@@ -963,16 +1003,24 @@ export declare const transferProps: {
963
1003
  colorSecondary: string;
964
1004
  colorSecondaryHover: string;
965
1005
  colorSecondaryPressed: string;
1006
+ colorSecondaryFocus: string;
1007
+ colorSecondaryDisabled: string;
1008
+ textColorSecondaryDisabled: string;
966
1009
  waveColorSecondary: string;
967
1010
  colorTertiary: string;
968
1011
  colorTertiaryHover: string;
969
1012
  colorTertiaryPressed: string;
1013
+ colorTertiaryFocus: string;
970
1014
  colorTertiaryDisalbed: string;
971
1015
  waveColorTertiary: string;
972
1016
  textColorTextTertiary: string;
1017
+ rippleColorTertiary: string;
973
1018
  colorQuaternary: string;
974
1019
  colorQuaternaryHover: string;
975
1020
  colorQuaternaryPressed: string;
1021
+ colorQuaternaryFocus: string;
1022
+ rippleColorQuaternary: string;
1023
+ waveColorQuaternary: string;
976
1024
  color: string;
977
1025
  colorHover: string;
978
1026
  colorPressed: string;
@@ -1261,8 +1309,16 @@ declare const _default: import("vue").DefineComponent<{
1261
1309
  labelPadding: string;
1262
1310
  }, any>;
1263
1311
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1312
+ height: string;
1313
+ width: string;
1314
+ borderRadius: string;
1264
1315
  color: string;
1265
1316
  colorHover: string;
1317
+ railInsetHorizontalBottom: string;
1318
+ railInsetHorizontalTop: string;
1319
+ railInsetVerticalRight: string;
1320
+ railInsetVerticalLeft: string;
1321
+ railColor: string;
1266
1322
  }, any>;
1267
1323
  Input: import("../../_mixins").Theme<"Input", {
1268
1324
  paddingTiny: string;
@@ -1368,16 +1424,24 @@ declare const _default: import("vue").DefineComponent<{
1368
1424
  colorSecondary: string;
1369
1425
  colorSecondaryHover: string;
1370
1426
  colorSecondaryPressed: string;
1427
+ colorSecondaryFocus: string;
1428
+ colorSecondaryDisabled: string;
1429
+ textColorSecondaryDisabled: string;
1371
1430
  waveColorSecondary: string;
1372
1431
  colorTertiary: string;
1373
1432
  colorTertiaryHover: string;
1374
1433
  colorTertiaryPressed: string;
1434
+ colorTertiaryFocus: string;
1375
1435
  colorTertiaryDisalbed: string;
1376
1436
  waveColorTertiary: string;
1377
1437
  textColorTextTertiary: string;
1438
+ rippleColorTertiary: string;
1378
1439
  colorQuaternary: string;
1379
1440
  colorQuaternaryHover: string;
1380
1441
  colorQuaternaryPressed: string;
1442
+ colorQuaternaryFocus: string;
1443
+ rippleColorQuaternary: string;
1444
+ waveColorQuaternary: string;
1381
1445
  color: string;
1382
1446
  colorHover: string;
1383
1447
  colorPressed: string;
@@ -1636,8 +1700,16 @@ declare const _default: import("vue").DefineComponent<{
1636
1700
  labelPadding: string;
1637
1701
  }, any>;
1638
1702
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1703
+ height: string;
1704
+ width: string;
1705
+ borderRadius: string;
1639
1706
  color: string;
1640
1707
  colorHover: string;
1708
+ railInsetHorizontalBottom: string;
1709
+ railInsetHorizontalTop: string;
1710
+ railInsetVerticalRight: string;
1711
+ railInsetVerticalLeft: string;
1712
+ railColor: string;
1641
1713
  }, any>;
1642
1714
  Input: import("../../_mixins").Theme<"Input", {
1643
1715
  paddingTiny: string;
@@ -1743,16 +1815,24 @@ declare const _default: import("vue").DefineComponent<{
1743
1815
  colorSecondary: string;
1744
1816
  colorSecondaryHover: string;
1745
1817
  colorSecondaryPressed: string;
1818
+ colorSecondaryFocus: string;
1819
+ colorSecondaryDisabled: string;
1820
+ textColorSecondaryDisabled: string;
1746
1821
  waveColorSecondary: string;
1747
1822
  colorTertiary: string;
1748
1823
  colorTertiaryHover: string;
1749
1824
  colorTertiaryPressed: string;
1825
+ colorTertiaryFocus: string;
1750
1826
  colorTertiaryDisalbed: string;
1751
1827
  waveColorTertiary: string;
1752
1828
  textColorTextTertiary: string;
1829
+ rippleColorTertiary: string;
1753
1830
  colorQuaternary: string;
1754
1831
  colorQuaternaryHover: string;
1755
1832
  colorQuaternaryPressed: string;
1833
+ colorQuaternaryFocus: string;
1834
+ rippleColorQuaternary: string;
1835
+ waveColorQuaternary: string;
1756
1836
  color: string;
1757
1837
  colorHover: string;
1758
1838
  colorPressed: string;
@@ -2011,8 +2091,16 @@ declare const _default: import("vue").DefineComponent<{
2011
2091
  labelPadding: string;
2012
2092
  }, any>;
2013
2093
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2094
+ height: string;
2095
+ width: string;
2096
+ borderRadius: string;
2014
2097
  color: string;
2015
2098
  colorHover: string;
2099
+ railInsetHorizontalBottom: string;
2100
+ railInsetHorizontalTop: string;
2101
+ railInsetVerticalRight: string;
2102
+ railInsetVerticalLeft: string;
2103
+ railColor: string;
2016
2104
  }, any>;
2017
2105
  Input: import("../../_mixins").Theme<"Input", {
2018
2106
  paddingTiny: string;
@@ -2118,16 +2206,24 @@ declare const _default: import("vue").DefineComponent<{
2118
2206
  colorSecondary: string;
2119
2207
  colorSecondaryHover: string;
2120
2208
  colorSecondaryPressed: string;
2209
+ colorSecondaryFocus: string;
2210
+ colorSecondaryDisabled: string;
2211
+ textColorSecondaryDisabled: string;
2121
2212
  waveColorSecondary: string;
2122
2213
  colorTertiary: string;
2123
2214
  colorTertiaryHover: string;
2124
2215
  colorTertiaryPressed: string;
2216
+ colorTertiaryFocus: string;
2125
2217
  colorTertiaryDisalbed: string;
2126
2218
  waveColorTertiary: string;
2127
2219
  textColorTextTertiary: string;
2220
+ rippleColorTertiary: string;
2128
2221
  colorQuaternary: string;
2129
2222
  colorQuaternaryHover: string;
2130
2223
  colorQuaternaryPressed: string;
2224
+ colorQuaternaryFocus: string;
2225
+ rippleColorQuaternary: string;
2226
+ waveColorQuaternary: string;
2131
2227
  color: string;
2132
2228
  colorHover: string;
2133
2229
  colorPressed: string;
@@ -2399,8 +2495,16 @@ declare const _default: import("vue").DefineComponent<{
2399
2495
  labelPadding: string;
2400
2496
  }, any>;
2401
2497
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2498
+ height: string;
2499
+ width: string;
2500
+ borderRadius: string;
2402
2501
  color: string;
2403
2502
  colorHover: string;
2503
+ railInsetHorizontalBottom: string;
2504
+ railInsetHorizontalTop: string;
2505
+ railInsetVerticalRight: string;
2506
+ railInsetVerticalLeft: string;
2507
+ railColor: string;
2404
2508
  }, any>;
2405
2509
  Input: import("../../_mixins").Theme<"Input", {
2406
2510
  paddingTiny: string;
@@ -2506,16 +2610,24 @@ declare const _default: import("vue").DefineComponent<{
2506
2610
  colorSecondary: string;
2507
2611
  colorSecondaryHover: string;
2508
2612
  colorSecondaryPressed: string;
2613
+ colorSecondaryFocus: string;
2614
+ colorSecondaryDisabled: string;
2615
+ textColorSecondaryDisabled: string;
2509
2616
  waveColorSecondary: string;
2510
2617
  colorTertiary: string;
2511
2618
  colorTertiaryHover: string;
2512
2619
  colorTertiaryPressed: string;
2620
+ colorTertiaryFocus: string;
2513
2621
  colorTertiaryDisalbed: string;
2514
2622
  waveColorTertiary: string;
2515
2623
  textColorTextTertiary: string;
2624
+ rippleColorTertiary: string;
2516
2625
  colorQuaternary: string;
2517
2626
  colorQuaternaryHover: string;
2518
2627
  colorQuaternaryPressed: string;
2628
+ colorQuaternaryFocus: string;
2629
+ rippleColorQuaternary: string;
2630
+ waveColorQuaternary: string;
2519
2631
  color: string;
2520
2632
  colorHover: string;
2521
2633
  colorPressed: string;
@@ -2867,8 +2979,16 @@ declare const _default: import("vue").DefineComponent<{
2867
2979
  labelPadding: string;
2868
2980
  }, any>;
2869
2981
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2982
+ height: string;
2983
+ width: string;
2984
+ borderRadius: string;
2870
2985
  color: string;
2871
2986
  colorHover: string;
2987
+ railInsetHorizontalBottom: string;
2988
+ railInsetHorizontalTop: string;
2989
+ railInsetVerticalRight: string;
2990
+ railInsetVerticalLeft: string;
2991
+ railColor: string;
2872
2992
  }, any>;
2873
2993
  Input: import("../../_mixins").Theme<"Input", {
2874
2994
  paddingTiny: string;
@@ -2974,16 +3094,24 @@ declare const _default: import("vue").DefineComponent<{
2974
3094
  colorSecondary: string;
2975
3095
  colorSecondaryHover: string;
2976
3096
  colorSecondaryPressed: string;
3097
+ colorSecondaryFocus: string;
3098
+ colorSecondaryDisabled: string;
3099
+ textColorSecondaryDisabled: string;
2977
3100
  waveColorSecondary: string;
2978
3101
  colorTertiary: string;
2979
3102
  colorTertiaryHover: string;
2980
3103
  colorTertiaryPressed: string;
3104
+ colorTertiaryFocus: string;
2981
3105
  colorTertiaryDisalbed: string;
2982
3106
  waveColorTertiary: string;
2983
3107
  textColorTextTertiary: string;
3108
+ rippleColorTertiary: string;
2984
3109
  colorQuaternary: string;
2985
3110
  colorQuaternaryHover: string;
2986
3111
  colorQuaternaryPressed: string;
3112
+ colorQuaternaryFocus: string;
3113
+ rippleColorQuaternary: string;
3114
+ waveColorQuaternary: string;
2987
3115
  color: string;
2988
3116
  colorHover: string;
2989
3117
  colorPressed: string;
@@ -3242,8 +3370,16 @@ declare const _default: import("vue").DefineComponent<{
3242
3370
  labelPadding: string;
3243
3371
  }, any>;
3244
3372
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3373
+ height: string;
3374
+ width: string;
3375
+ borderRadius: string;
3245
3376
  color: string;
3246
3377
  colorHover: string;
3378
+ railInsetHorizontalBottom: string;
3379
+ railInsetHorizontalTop: string;
3380
+ railInsetVerticalRight: string;
3381
+ railInsetVerticalLeft: string;
3382
+ railColor: string;
3247
3383
  }, any>;
3248
3384
  Input: import("../../_mixins").Theme<"Input", {
3249
3385
  paddingTiny: string;
@@ -3349,16 +3485,24 @@ declare const _default: import("vue").DefineComponent<{
3349
3485
  colorSecondary: string;
3350
3486
  colorSecondaryHover: string;
3351
3487
  colorSecondaryPressed: string;
3488
+ colorSecondaryFocus: string;
3489
+ colorSecondaryDisabled: string;
3490
+ textColorSecondaryDisabled: string;
3352
3491
  waveColorSecondary: string;
3353
3492
  colorTertiary: string;
3354
3493
  colorTertiaryHover: string;
3355
3494
  colorTertiaryPressed: string;
3495
+ colorTertiaryFocus: string;
3356
3496
  colorTertiaryDisalbed: string;
3357
3497
  waveColorTertiary: string;
3358
3498
  textColorTextTertiary: string;
3499
+ rippleColorTertiary: string;
3359
3500
  colorQuaternary: string;
3360
3501
  colorQuaternaryHover: string;
3361
3502
  colorQuaternaryPressed: string;
3503
+ colorQuaternaryFocus: string;
3504
+ rippleColorQuaternary: string;
3505
+ waveColorQuaternary: string;
3362
3506
  color: string;
3363
3507
  colorHover: string;
3364
3508
  colorPressed: string;
@@ -3617,8 +3761,16 @@ declare const _default: import("vue").DefineComponent<{
3617
3761
  labelPadding: string;
3618
3762
  }, any>;
3619
3763
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3764
+ height: string;
3765
+ width: string;
3766
+ borderRadius: string;
3620
3767
  color: string;
3621
3768
  colorHover: string;
3769
+ railInsetHorizontalBottom: string;
3770
+ railInsetHorizontalTop: string;
3771
+ railInsetVerticalRight: string;
3772
+ railInsetVerticalLeft: string;
3773
+ railColor: string;
3622
3774
  }, any>;
3623
3775
  Input: import("../../_mixins").Theme<"Input", {
3624
3776
  paddingTiny: string;
@@ -3724,16 +3876,24 @@ declare const _default: import("vue").DefineComponent<{
3724
3876
  colorSecondary: string;
3725
3877
  colorSecondaryHover: string;
3726
3878
  colorSecondaryPressed: string;
3879
+ colorSecondaryFocus: string;
3880
+ colorSecondaryDisabled: string;
3881
+ textColorSecondaryDisabled: string;
3727
3882
  waveColorSecondary: string;
3728
3883
  colorTertiary: string;
3729
3884
  colorTertiaryHover: string;
3730
3885
  colorTertiaryPressed: string;
3886
+ colorTertiaryFocus: string;
3731
3887
  colorTertiaryDisalbed: string;
3732
3888
  waveColorTertiary: string;
3733
3889
  textColorTextTertiary: string;
3890
+ rippleColorTertiary: string;
3734
3891
  colorQuaternary: string;
3735
3892
  colorQuaternaryHover: string;
3736
3893
  colorQuaternaryPressed: string;
3894
+ colorQuaternaryFocus: string;
3895
+ rippleColorQuaternary: string;
3896
+ waveColorQuaternary: string;
3737
3897
  color: string;
3738
3898
  colorHover: string;
3739
3899
  colorPressed: string;
@@ -97,8 +97,16 @@ declare const _default: import("vue").DefineComponent<{
97
97
  labelPadding: string;
98
98
  }, any>;
99
99
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
100
+ height: string;
101
+ width: string;
102
+ borderRadius: string;
100
103
  color: string;
101
104
  colorHover: string;
105
+ railInsetHorizontalBottom: string;
106
+ railInsetHorizontalTop: string;
107
+ railInsetVerticalRight: string;
108
+ railInsetVerticalLeft: string;
109
+ railColor: string;
102
110
  }, any>;
103
111
  Input: import("../../_mixins").Theme<"Input", {
104
112
  paddingTiny: string;
@@ -204,16 +212,24 @@ declare const _default: import("vue").DefineComponent<{
204
212
  colorSecondary: string;
205
213
  colorSecondaryHover: string;
206
214
  colorSecondaryPressed: string;
215
+ colorSecondaryFocus: string;
216
+ colorSecondaryDisabled: string;
217
+ textColorSecondaryDisabled: string;
207
218
  waveColorSecondary: string;
208
219
  colorTertiary: string;
209
220
  colorTertiaryHover: string;
210
221
  colorTertiaryPressed: string;
222
+ colorTertiaryFocus: string;
211
223
  colorTertiaryDisalbed: string;
212
224
  waveColorTertiary: string;
213
225
  textColorTextTertiary: string;
226
+ rippleColorTertiary: string;
214
227
  colorQuaternary: string;
215
228
  colorQuaternaryHover: string;
216
229
  colorQuaternaryPressed: string;
230
+ colorQuaternaryFocus: string;
231
+ rippleColorQuaternary: string;
232
+ waveColorQuaternary: string;
217
233
  color: string;
218
234
  colorHover: string;
219
235
  colorPressed: string;
@@ -110,8 +110,16 @@ declare const _default: import("vue").DefineComponent<{
110
110
  labelPadding: string;
111
111
  }, any>;
112
112
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
113
+ height: string;
114
+ width: string;
115
+ borderRadius: string;
113
116
  color: string;
114
117
  colorHover: string;
118
+ railInsetHorizontalBottom: string;
119
+ railInsetHorizontalTop: string;
120
+ railInsetVerticalRight: string;
121
+ railInsetVerticalLeft: string;
122
+ railColor: string;
115
123
  }, any>;
116
124
  Input: import("../../_mixins").Theme<"Input", {
117
125
  paddingTiny: string;
@@ -217,16 +225,24 @@ declare const _default: import("vue").DefineComponent<{
217
225
  colorSecondary: string;
218
226
  colorSecondaryHover: string;
219
227
  colorSecondaryPressed: string;
228
+ colorSecondaryFocus: string;
229
+ colorSecondaryDisabled: string;
230
+ textColorSecondaryDisabled: string;
220
231
  waveColorSecondary: string;
221
232
  colorTertiary: string;
222
233
  colorTertiaryHover: string;
223
234
  colorTertiaryPressed: string;
235
+ colorTertiaryFocus: string;
224
236
  colorTertiaryDisalbed: string;
225
237
  waveColorTertiary: string;
226
238
  textColorTextTertiary: string;
239
+ rippleColorTertiary: string;
227
240
  colorQuaternary: string;
228
241
  colorQuaternaryHover: string;
229
242
  colorQuaternaryPressed: string;
243
+ colorQuaternaryFocus: string;
244
+ rippleColorQuaternary: string;
245
+ waveColorQuaternary: string;
230
246
  color: string;
231
247
  colorHover: string;
232
248
  colorPressed: string;
@@ -452,7 +468,7 @@ declare const _default: import("vue").DefineComponent<{
452
468
  vlInstRef: import("vue").Ref<{
453
469
  listElRef: HTMLElement;
454
470
  itemsElRef: HTMLElement | null;
455
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
471
+ scrollTo: import("vueuc").VVirtualListScrollTo;
456
472
  } | null>;
457
473
  syncVLScroller: () => void;
458
474
  scrollContainer: () => HTMLElement | null;
@@ -97,8 +97,16 @@ declare const _default: import("vue").DefineComponent<{
97
97
  labelPadding: string;
98
98
  }, any>;
99
99
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
100
+ height: string;
101
+ width: string;
102
+ borderRadius: string;
100
103
  color: string;
101
104
  colorHover: string;
105
+ railInsetHorizontalBottom: string;
106
+ railInsetHorizontalTop: string;
107
+ railInsetVerticalRight: string;
108
+ railInsetVerticalLeft: string;
109
+ railColor: string;
102
110
  }, any>;
103
111
  Input: import("../../_mixins").Theme<"Input", {
104
112
  paddingTiny: string;
@@ -204,16 +212,24 @@ declare const _default: import("vue").DefineComponent<{
204
212
  colorSecondary: string;
205
213
  colorSecondaryHover: string;
206
214
  colorSecondaryPressed: string;
215
+ colorSecondaryFocus: string;
216
+ colorSecondaryDisabled: string;
217
+ textColorSecondaryDisabled: string;
207
218
  waveColorSecondary: string;
208
219
  colorTertiary: string;
209
220
  colorTertiaryHover: string;
210
221
  colorTertiaryPressed: string;
222
+ colorTertiaryFocus: string;
211
223
  colorTertiaryDisalbed: string;
212
224
  waveColorTertiary: string;
213
225
  textColorTextTertiary: string;
226
+ rippleColorTertiary: string;
214
227
  colorQuaternary: string;
215
228
  colorQuaternaryHover: string;
216
229
  colorQuaternaryPressed: string;
230
+ colorQuaternaryFocus: string;
231
+ rippleColorQuaternary: string;
232
+ waveColorQuaternary: string;
217
233
  color: string;
218
234
  colorHover: string;
219
235
  colorPressed: string;
@@ -101,8 +101,16 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
101
101
  labelPadding: string;
102
102
  }, any>;
103
103
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
104
+ height: string;
105
+ width: string;
106
+ borderRadius: string;
104
107
  color: string;
105
108
  colorHover: string;
109
+ railInsetHorizontalBottom: string;
110
+ railInsetHorizontalTop: string;
111
+ railInsetVerticalRight: string;
112
+ railInsetVerticalLeft: string;
113
+ railColor: string;
106
114
  }, any>;
107
115
  Input: import("../../_mixins").Theme<"Input", {
108
116
  paddingTiny: string;
@@ -208,16 +216,24 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
208
216
  colorSecondary: string;
209
217
  colorSecondaryHover: string;
210
218
  colorSecondaryPressed: string;
219
+ colorSecondaryFocus: string;
220
+ colorSecondaryDisabled: string;
221
+ textColorSecondaryDisabled: string;
211
222
  waveColorSecondary: string;
212
223
  colorTertiary: string;
213
224
  colorTertiaryHover: string;
214
225
  colorTertiaryPressed: string;
226
+ colorTertiaryFocus: string;
215
227
  colorTertiaryDisalbed: string;
216
228
  waveColorTertiary: string;
217
229
  textColorTextTertiary: string;
230
+ rippleColorTertiary: string;
218
231
  colorQuaternary: string;
219
232
  colorQuaternaryHover: string;
220
233
  colorQuaternaryPressed: string;
234
+ colorQuaternaryFocus: string;
235
+ rippleColorQuaternary: string;
236
+ waveColorQuaternary: string;
221
237
  color: string;
222
238
  colorHover: string;
223
239
  colorPressed: string;