@uzum-tech/ui 1.8.2 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. package/dist/index.js +1244 -379
  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 +120 -67
  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/cascader/src/Cascader.d.ts +168 -0
  24. package/es/cascader/src/CascaderMenu.d.ts +24 -0
  25. package/es/cascader/src/CascaderOption.d.ts +24 -0
  26. package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
  27. package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
  28. package/es/cascader/styles/light.d.ts +16 -0
  29. package/es/chat/index.d.ts +1 -1
  30. package/es/chat/src/Chat.d.ts +321 -11
  31. package/es/chat/src/Chat.js +73 -22
  32. package/es/chat/src/ChatListItems.d.ts +104 -0
  33. package/es/chat/src/ChatMessages.d.ts +104 -0
  34. package/es/chat/src/ChatParts/ChatAttachment.js +14 -12
  35. package/es/chat/src/ChatParts/MainArea.d.ts +1 -0
  36. package/es/chat/src/ChatParts/MainArea.js +95 -57
  37. package/es/chat/src/ChatParts/Sidebar.d.ts +920 -0
  38. package/es/chat/src/ChatParts/Sidebar.js +63 -12
  39. package/es/chat/src/interface.d.ts +24 -3
  40. package/es/chat/src/styles/index.cssr.js +13 -2
  41. package/es/chat/styles/dark.d.ts +8 -0
  42. package/es/chat/styles/light.d.ts +8 -0
  43. package/es/components.d.ts +2 -0
  44. package/es/components.js +2 -0
  45. package/es/data-table/src/DataTable.d.ts +184 -0
  46. package/es/data-table/src/HeaderButton/FilterButton.d.ts +40 -0
  47. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +40 -0
  48. package/es/data-table/src/TableParts/Body.d.ts +41 -1
  49. package/es/data-table/src/TableParts/Header.d.ts +40 -0
  50. package/es/data-table/src/interface.d.ts +72 -0
  51. package/es/data-table/styles/light.d.ts +24 -0
  52. package/es/date-picker/src/DatePicker.d.ts +1469 -36
  53. package/es/date-picker/src/DatePicker.js +54 -29
  54. package/es/date-picker/src/interface.d.ts +1 -0
  55. package/es/date-picker/src/panel/date.d.ts +166 -1
  56. package/es/date-picker/src/panel/daterange.d.ts +167 -2
  57. package/es/date-picker/src/panel/datetime.d.ts +166 -1
  58. package/es/date-picker/src/panel/datetimerange.d.ts +167 -2
  59. package/es/date-picker/src/panel/panelMonth.d.ts +332 -2
  60. package/es/date-picker/src/panel/panelMonthContent.d.ts +166 -1
  61. package/es/date-picker/src/panel/panelYear.d.ts +332 -2
  62. package/es/date-picker/src/panel/panelYearContent.d.ts +166 -1
  63. package/es/date-picker/src/panel/use-calendar.d.ts +165 -0
  64. package/es/date-picker/src/panel/use-dual-calendar.d.ts +165 -0
  65. package/es/date-picker/src/panel/use-panel-common.d.ts +165 -0
  66. package/es/date-picker/styles/dark.js +3 -1
  67. package/es/date-picker/styles/light.d.ts +139 -0
  68. package/es/date-picker/styles/light.js +3 -1
  69. package/es/descriptions/src/Descriptions.d.ts +30 -0
  70. package/es/descriptions/src/Descriptions.js +18 -10
  71. package/es/dialog/src/DialogProvider.d.ts +2 -2
  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/infinite-scroll/index.d.ts +2 -0
  78. package/es/infinite-scroll/index.js +1 -0
  79. package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  80. package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
  81. package/es/layout/src/Layout.d.ts +112 -0
  82. package/es/layout/src/LayoutContent.d.ts +56 -0
  83. package/es/layout/src/LayoutFooter.d.ts +72 -0
  84. package/es/layout/src/LayoutHeader.d.ts +48 -0
  85. package/es/layout/src/LayoutSider.d.ts +56 -0
  86. package/es/layout/styles/light.d.ts +8 -0
  87. package/es/legacy-transfer/src/Transfer.d.ts +80 -0
  88. package/es/legacy-transfer/src/TransferFilter.d.ts +8 -0
  89. package/es/legacy-transfer/src/TransferList.d.ts +9 -1
  90. package/es/legacy-transfer/src/TransferListItem.d.ts +8 -0
  91. package/es/legacy-transfer/styles/light.d.ts +8 -0
  92. package/es/locales/common/arDZ.js +2 -0
  93. package/es/locales/common/deDE.js +2 -0
  94. package/es/locales/common/enGB.js +2 -0
  95. package/es/locales/common/enUS.d.ts +2 -0
  96. package/es/locales/common/enUS.js +2 -0
  97. package/es/locales/common/eo.js +2 -0
  98. package/es/locales/common/esAR.js +2 -0
  99. package/es/locales/common/faIR.js +2 -0
  100. package/es/locales/common/frFR.js +2 -0
  101. package/es/locales/common/idID.js +2 -0
  102. package/es/locales/common/itIT.js +2 -0
  103. package/es/locales/common/jaJP.js +2 -0
  104. package/es/locales/common/koKR.js +2 -0
  105. package/es/locales/common/nbNO.js +2 -0
  106. package/es/locales/common/nlNL.js +2 -0
  107. package/es/locales/common/plPL.js +2 -0
  108. package/es/locales/common/ptBR.js +2 -0
  109. package/es/locales/common/ruRU.js +2 -0
  110. package/es/locales/common/skSK.js +2 -0
  111. package/es/locales/common/svSE.js +2 -0
  112. package/es/locales/common/thTH.js +2 -0
  113. package/es/locales/common/trTR.js +2 -0
  114. package/es/locales/common/ukUA.js +2 -0
  115. package/es/locales/common/viVN.js +2 -0
  116. package/es/locales/common/zhCN.js +2 -0
  117. package/es/locales/common/zhTW.js +2 -0
  118. package/es/log/src/Log.d.ts +80 -0
  119. package/es/log/styles/light.d.ts +8 -0
  120. package/es/mention/src/Mention.d.ts +88 -0
  121. package/es/mention/styles/light.d.ts +8 -0
  122. package/es/menu/src/Menu.d.ts +1 -1
  123. package/es/modal/src/BodyWrapper.d.ts +9 -1
  124. package/es/modal/src/Modal.d.ts +73 -1
  125. package/es/modal/styles/light.d.ts +8 -0
  126. package/es/notification/src/NotificationContainer.d.ts +8 -0
  127. package/es/notification/src/NotificationProvider.d.ts +72 -0
  128. package/es/notification/styles/light.d.ts +8 -0
  129. package/es/pagination/src/Pagination.d.ts +176 -0
  130. package/es/pagination/styles/light.d.ts +16 -0
  131. package/es/popselect/src/Popselect.d.ts +88 -0
  132. package/es/popselect/src/PopselectPanel.d.ts +16 -0
  133. package/es/popselect/styles/light.d.ts +8 -0
  134. package/es/scrollbar/src/Scrollbar.d.ts +72 -0
  135. package/es/select/src/Select.d.ts +88 -0
  136. package/es/select/styles/light.d.ts +8 -0
  137. package/es/time-picker/src/Panel.d.ts +8 -0
  138. package/es/time-picker/src/TimePicker.d.ts +80 -0
  139. package/es/time-picker/styles/light.d.ts +8 -0
  140. package/es/transfer/src/Transfer.d.ts +80 -0
  141. package/es/transfer/src/TransferFilter.d.ts +8 -0
  142. package/es/transfer/src/TransferList.d.ts +9 -1
  143. package/es/transfer/src/TransferListItem.d.ts +8 -0
  144. package/es/transfer/styles/light.d.ts +8 -0
  145. package/es/tree/src/Tree.d.ts +82 -2
  146. package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
  147. package/es/tree/styles/light.d.ts +8 -0
  148. package/es/tree-select/src/TreeSelect.d.ts +89 -1
  149. package/es/tree-select/styles/light.d.ts +8 -0
  150. package/es/version.d.ts +1 -1
  151. package/es/version.js +1 -1
  152. package/es/virtual-list/index.d.ts +2 -0
  153. package/es/virtual-list/index.js +1 -0
  154. package/es/virtual-list/src/VirtualList.d.ts +146 -0
  155. package/es/virtual-list/src/VirtualList.js +103 -0
  156. package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  157. package/lib/_internal/scrollbar/src/Scrollbar.js +117 -64
  158. package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  159. package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
  160. package/lib/_internal/scrollbar/styles/common.js +10 -0
  161. package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
  162. package/lib/_internal/scrollbar/styles/light.js +3 -5
  163. package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  164. package/lib/_internal/select-menu/styles/light.d.ts +8 -0
  165. package/lib/_internal/selection/src/Selection.d.ts +3 -1
  166. package/lib/_internal/selection/src/Selection.js +3 -1
  167. package/lib/_utils/css/index.d.ts +1 -0
  168. package/lib/_utils/css/index.js +3 -1
  169. package/lib/_utils/css/rtl-inset.d.ts +1 -0
  170. package/lib/_utils/css/rtl-inset.js +8 -0
  171. package/lib/_utils/index.d.ts +1 -1
  172. package/lib/_utils/index.js +2 -1
  173. package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
  174. package/lib/auto-complete/styles/light.d.ts +8 -0
  175. package/lib/back-top/src/BackTop.d.ts +1 -1
  176. package/lib/cascader/src/Cascader.d.ts +168 -0
  177. package/lib/cascader/src/CascaderMenu.d.ts +24 -0
  178. package/lib/cascader/src/CascaderOption.d.ts +24 -0
  179. package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
  180. package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
  181. package/lib/cascader/styles/light.d.ts +16 -0
  182. package/lib/chat/index.d.ts +1 -1
  183. package/lib/chat/src/Chat.d.ts +321 -11
  184. package/lib/chat/src/Chat.js +73 -22
  185. package/lib/chat/src/ChatListItems.d.ts +104 -0
  186. package/lib/chat/src/ChatMessages.d.ts +104 -0
  187. package/lib/chat/src/ChatParts/ChatAttachment.js +14 -12
  188. package/lib/chat/src/ChatParts/MainArea.d.ts +1 -0
  189. package/lib/chat/src/ChatParts/MainArea.js +94 -56
  190. package/lib/chat/src/ChatParts/Sidebar.d.ts +920 -0
  191. package/lib/chat/src/ChatParts/Sidebar.js +62 -11
  192. package/lib/chat/src/interface.d.ts +24 -3
  193. package/lib/chat/src/styles/index.cssr.js +13 -2
  194. package/lib/chat/styles/dark.d.ts +8 -0
  195. package/lib/chat/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 +184 -0
  199. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +40 -0
  200. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +40 -0
  201. package/lib/data-table/src/TableParts/Body.d.ts +41 -1
  202. package/lib/data-table/src/TableParts/Header.d.ts +40 -0
  203. package/lib/data-table/src/interface.d.ts +72 -0
  204. package/lib/data-table/styles/light.d.ts +24 -0
  205. package/lib/date-picker/src/DatePicker.d.ts +1469 -36
  206. package/lib/date-picker/src/DatePicker.js +53 -28
  207. package/lib/date-picker/src/interface.d.ts +1 -0
  208. package/lib/date-picker/src/panel/date.d.ts +166 -1
  209. package/lib/date-picker/src/panel/daterange.d.ts +167 -2
  210. package/lib/date-picker/src/panel/datetime.d.ts +166 -1
  211. package/lib/date-picker/src/panel/datetimerange.d.ts +167 -2
  212. package/lib/date-picker/src/panel/panelMonth.d.ts +332 -2
  213. package/lib/date-picker/src/panel/panelMonthContent.d.ts +166 -1
  214. package/lib/date-picker/src/panel/panelYear.d.ts +332 -2
  215. package/lib/date-picker/src/panel/panelYearContent.d.ts +166 -1
  216. package/lib/date-picker/src/panel/use-calendar.d.ts +165 -0
  217. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +165 -0
  218. package/lib/date-picker/src/panel/use-panel-common.d.ts +165 -0
  219. package/lib/date-picker/styles/dark.js +3 -1
  220. package/lib/date-picker/styles/light.d.ts +139 -0
  221. package/lib/date-picker/styles/light.js +3 -1
  222. package/lib/descriptions/src/Descriptions.d.ts +30 -0
  223. package/lib/descriptions/src/Descriptions.js +18 -10
  224. package/lib/dialog/src/DialogProvider.d.ts +2 -2
  225. package/lib/drawer/src/Drawer.d.ts +81 -1
  226. package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  227. package/lib/drawer/src/DrawerContent.d.ts +8 -0
  228. package/lib/drawer/styles/light.d.ts +8 -0
  229. package/lib/dropdown/src/Dropdown.d.ts +1 -1
  230. package/lib/infinite-scroll/index.d.ts +2 -0
  231. package/lib/infinite-scroll/index.js +9 -0
  232. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  233. package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
  234. package/lib/layout/src/Layout.d.ts +112 -0
  235. package/lib/layout/src/LayoutContent.d.ts +56 -0
  236. package/lib/layout/src/LayoutFooter.d.ts +72 -0
  237. package/lib/layout/src/LayoutHeader.d.ts +48 -0
  238. package/lib/layout/src/LayoutSider.d.ts +56 -0
  239. package/lib/layout/styles/light.d.ts +8 -0
  240. package/lib/legacy-transfer/src/Transfer.d.ts +80 -0
  241. package/lib/legacy-transfer/src/TransferFilter.d.ts +8 -0
  242. package/lib/legacy-transfer/src/TransferList.d.ts +9 -1
  243. package/lib/legacy-transfer/src/TransferListItem.d.ts +8 -0
  244. package/lib/legacy-transfer/styles/light.d.ts +8 -0
  245. package/lib/locales/common/arDZ.js +2 -0
  246. package/lib/locales/common/deDE.js +2 -0
  247. package/lib/locales/common/enGB.js +2 -0
  248. package/lib/locales/common/enUS.d.ts +2 -0
  249. package/lib/locales/common/enUS.js +2 -0
  250. package/lib/locales/common/eo.js +2 -0
  251. package/lib/locales/common/esAR.js +2 -0
  252. package/lib/locales/common/faIR.js +2 -0
  253. package/lib/locales/common/frFR.js +2 -0
  254. package/lib/locales/common/idID.js +2 -0
  255. package/lib/locales/common/itIT.js +2 -0
  256. package/lib/locales/common/jaJP.js +2 -0
  257. package/lib/locales/common/koKR.js +2 -0
  258. package/lib/locales/common/nbNO.js +2 -0
  259. package/lib/locales/common/nlNL.js +2 -0
  260. package/lib/locales/common/plPL.js +2 -0
  261. package/lib/locales/common/ptBR.js +2 -0
  262. package/lib/locales/common/ruRU.js +2 -0
  263. package/lib/locales/common/skSK.js +2 -0
  264. package/lib/locales/common/svSE.js +2 -0
  265. package/lib/locales/common/thTH.js +2 -0
  266. package/lib/locales/common/trTR.js +2 -0
  267. package/lib/locales/common/ukUA.js +2 -0
  268. package/lib/locales/common/viVN.js +2 -0
  269. package/lib/locales/common/zhCN.js +2 -0
  270. package/lib/locales/common/zhTW.js +2 -0
  271. package/lib/log/src/Log.d.ts +80 -0
  272. package/lib/log/styles/light.d.ts +8 -0
  273. package/lib/mention/src/Mention.d.ts +88 -0
  274. package/lib/mention/styles/light.d.ts +8 -0
  275. package/lib/menu/src/Menu.d.ts +1 -1
  276. package/lib/modal/src/BodyWrapper.d.ts +9 -1
  277. package/lib/modal/src/Modal.d.ts +73 -1
  278. package/lib/modal/styles/light.d.ts +8 -0
  279. package/lib/notification/src/NotificationContainer.d.ts +8 -0
  280. package/lib/notification/src/NotificationProvider.d.ts +72 -0
  281. package/lib/notification/styles/light.d.ts +8 -0
  282. package/lib/pagination/src/Pagination.d.ts +176 -0
  283. package/lib/pagination/styles/light.d.ts +16 -0
  284. package/lib/popselect/src/Popselect.d.ts +88 -0
  285. package/lib/popselect/src/PopselectPanel.d.ts +16 -0
  286. package/lib/popselect/styles/light.d.ts +8 -0
  287. package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
  288. package/lib/select/src/Select.d.ts +88 -0
  289. package/lib/select/styles/light.d.ts +8 -0
  290. package/lib/time-picker/src/Panel.d.ts +8 -0
  291. package/lib/time-picker/src/TimePicker.d.ts +80 -0
  292. package/lib/time-picker/styles/light.d.ts +8 -0
  293. package/lib/transfer/src/Transfer.d.ts +80 -0
  294. package/lib/transfer/src/TransferFilter.d.ts +8 -0
  295. package/lib/transfer/src/TransferList.d.ts +9 -1
  296. package/lib/transfer/src/TransferListItem.d.ts +8 -0
  297. package/lib/transfer/styles/light.d.ts +8 -0
  298. package/lib/tree/src/Tree.d.ts +82 -2
  299. package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
  300. package/lib/tree/styles/light.d.ts +8 -0
  301. package/lib/tree-select/src/TreeSelect.d.ts +89 -1
  302. package/lib/tree-select/styles/light.d.ts +8 -0
  303. package/lib/version.d.ts +1 -1
  304. package/lib/version.js +1 -1
  305. package/lib/virtual-list/index.d.ts +2 -0
  306. package/lib/virtual-list/index.js +9 -0
  307. package/lib/virtual-list/src/VirtualList.d.ts +146 -0
  308. package/lib/virtual-list/src/VirtualList.js +106 -0
  309. package/package.json +4 -4
  310. package/volar.d.ts +1 -0
  311. package/web-types.json +124 -4
@@ -7,17 +7,46 @@ const vue_1 = require("vue");
7
7
  const interface_1 = require("../interface");
8
8
  const flex_1 = require("../../../flex");
9
9
  const select_1 = require("../../../select");
10
+ const scrollbar_1 = require("../../../scrollbar");
10
11
  const ChatListItems_1 = __importDefault(require("../ChatListItems"));
11
12
  exports.default = (0, vue_1.defineComponent)({
12
13
  name: 'ChatSidebar',
13
14
  setup(props, { slots }) {
14
- return { slots };
15
- },
16
- render() {
17
- const { slots } = this;
18
- const { mergedClsPrefixRef, mergedThemeRef, chatItemsRef, chatItemsLoadingRef, chatItemsLoadingCountRef, listEmptyPropsRef, selectedChatIdRef, typingChatIdsRef, typingTextRef, listItemAvatarPropsRef, listItemBadgePropsRef, notificationsShownSetRef, handleChatSelect
15
+ const sidebarContentRef = (0, vue_1.ref)();
16
+ const lastScrollTop = (0, vue_1.ref)(0);
17
+ const scrollTopFired = (0, vue_1.ref)(false);
18
+ const scrollBottomFired = (0, vue_1.ref)(false);
19
+ const { mergedClsPrefixRef, mergedThemeRef, chatItemsRef, chatItemsLoadingRef, chatItemsLoadingCountRef, listEmptyPropsRef, selectedChatIdRef, typingChatIdsRef, typingTextRef, listItemAvatarPropsRef, listItemBadgePropsRef, notificationsShownSetRef, handleChatSelect, onChatItemsScrollToTop, onChatItemsScrollToBottom
19
20
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
20
21
  } = (0, vue_1.inject)(interface_1.chatInjectionKey);
22
+ const handleSidebarScroll = (e) => {
23
+ var _a, _b;
24
+ const target = e.target;
25
+ if (!target)
26
+ return;
27
+ const { scrollTop, scrollHeight, clientHeight } = target;
28
+ const threshold = 5;
29
+ const scrollDirection = scrollTop > lastScrollTop.value ? 'down' : 'up';
30
+ const nearTop = scrollTop <= threshold;
31
+ const nearBottom = scrollHeight - (scrollTop + clientHeight) <= threshold;
32
+ if (scrollTop > threshold) {
33
+ scrollTopFired.value = false;
34
+ }
35
+ if (scrollHeight - (scrollTop + clientHeight) > threshold) {
36
+ scrollBottomFired.value = false;
37
+ }
38
+ if (nearTop && scrollDirection === 'up' && !scrollTopFired.value) {
39
+ scrollTopFired.value = true;
40
+ (_a = onChatItemsScrollToTop === null || onChatItemsScrollToTop === void 0 ? void 0 : onChatItemsScrollToTop.value) === null || _a === void 0 ? void 0 : _a.call(onChatItemsScrollToTop);
41
+ }
42
+ if (nearBottom &&
43
+ scrollDirection === 'down' &&
44
+ !scrollBottomFired.value) {
45
+ scrollBottomFired.value = true;
46
+ (_b = onChatItemsScrollToBottom === null || onChatItemsScrollToBottom === void 0 ? void 0 : onChatItemsScrollToBottom.value) === null || _b === void 0 ? void 0 : _b.call(onChatItemsScrollToBottom);
47
+ }
48
+ lastScrollTop.value = scrollTop;
49
+ };
21
50
  const renderListHeader = () => {
22
51
  return ((0, vue_1.h)("div", { class: `${mergedClsPrefixRef.value}-chat-sidebar__header` },
23
52
  (0, vue_1.h)(flex_1.UFlex, { align: "center", justify: "space-between", class: `${mergedClsPrefixRef.value}-chat-sidebar__header-container`, style: { width: '100%' } }, {
@@ -29,11 +58,33 @@ exports.default = (0, vue_1.defineComponent)({
29
58
  }
30
59
  })));
31
60
  };
32
- return ((0, vue_1.h)("div", { class: `${mergedClsPrefixRef.value}-chat-sidebar` },
33
- renderListHeader(),
34
- (0, vue_1.h)("div", { class: `${mergedClsPrefixRef.value}-chat-sidebar__content` },
35
- (0, vue_1.h)(ChatListItems_1.default, { chatItems: chatItemsRef.value, selectedChatId: selectedChatIdRef.value, typingChatIds: typingChatIdsRef.value, typingText: typingTextRef.value, loading: chatItemsLoadingRef.value, loadingCount: chatItemsLoadingCountRef.value, emptyProps: listEmptyPropsRef.value, avatarProps: listItemAvatarPropsRef.value, badgeProps: listItemBadgePropsRef.value, notificationsShown: notificationsShownSetRef.value, onChatSelect: handleChatSelect }, {
36
- chatItemStatus: slots.chatItemStatus
37
- }))));
61
+ return {
62
+ slots,
63
+ sidebarContentRef,
64
+ renderListHeader,
65
+ handleSidebarScroll,
66
+ mergedClsPrefixRef,
67
+ mergedThemeRef,
68
+ chatItemsRef,
69
+ chatItemsLoadingRef,
70
+ chatItemsLoadingCountRef,
71
+ listEmptyPropsRef,
72
+ selectedChatIdRef,
73
+ typingChatIdsRef,
74
+ typingTextRef,
75
+ listItemAvatarPropsRef,
76
+ listItemBadgePropsRef,
77
+ notificationsShownSetRef,
78
+ handleChatSelect
79
+ };
80
+ },
81
+ render() {
82
+ return ((0, vue_1.h)("div", { class: `${this.mergedClsPrefixRef}-chat-sidebar` },
83
+ this.renderListHeader(),
84
+ (0, vue_1.h)(scrollbar_1.UScrollbar, { ref: "sidebarContentRef", class: `${this.mergedClsPrefixRef}-chat-sidebar__content`, onScroll: this.handleSidebarScroll }, {
85
+ default: () => ((0, vue_1.h)(ChatListItems_1.default, { chatItems: this.chatItemsRef, selectedChatId: this.selectedChatIdRef, typingChatIds: this.typingChatIdsRef, typingText: this.typingTextRef, loading: this.chatItemsLoadingRef, loadingCount: this.chatItemsLoadingCountRef, emptyProps: this.listEmptyPropsRef, avatarProps: this.listItemAvatarPropsRef, badgeProps: this.listItemBadgePropsRef, notificationsShown: this.notificationsShownSetRef, onChatSelect: this.handleChatSelect }, {
86
+ chatItemStatus: this.slots.chatItemStatus
87
+ }))
88
+ })));
38
89
  }
39
90
  });
@@ -137,6 +137,11 @@ export interface ChatProps {
137
137
  unreadCount?: number;
138
138
  headerButtonProps?: Partial<ButtonProps>;
139
139
  headerIconProps?: Partial<IconProps>;
140
+ headerShareButtonProps?: Partial<ButtonProps>;
141
+ headerProfileButtonProps?: Partial<ButtonProps>;
142
+ headerCloseButtonProps?: Partial<ButtonProps>;
143
+ headerShareIconProps?: Partial<IconProps>;
144
+ headerProfileIconProps?: Partial<IconProps>;
140
145
  messageSenderAvatarProps?: Partial<AvatarProps>;
141
146
  messageUploadProps?: Partial<UploadProps>;
142
147
  messageButtonProps?: Partial<ButtonProps>;
@@ -149,6 +154,8 @@ export interface ChatProps {
149
154
  retryText?: string;
150
155
  typingText?: string;
151
156
  closeButtonText?: string;
157
+ shareButtonTooltip?: string;
158
+ profileButtonTooltip?: string;
152
159
  unreadNotificationText?: string;
153
160
  chatItemsLoading?: boolean;
154
161
  chatItemsLoadingCount?: number;
@@ -159,10 +166,14 @@ export interface ChatProps {
159
166
  onMessageRetry?: (message: ChatMessageData) => void;
160
167
  onAttachmentUpload?: OnAttachmentUpload;
161
168
  onFilterChange?: OnFilterChange;
162
- onLoadMoreChats?: OnLoadMoreChats;
169
+ onFooterInputChange?: (value: string, chatId: ChatId) => void;
163
170
  onNetworkError?: OnNetworkError;
164
171
  onUploadError?: OnUploadError;
165
172
  onSendError?: OnSendError;
173
+ onChatItemsScrollToTop?: () => void;
174
+ onChatItemsScrollToBottom?: () => void;
175
+ onMessagesScrollToTop?: () => void;
176
+ onMessagesScrollToBottom?: () => void;
166
177
  }
167
178
  export interface ChatSlots {
168
179
  header?: () => VNodeChild;
@@ -218,7 +229,6 @@ export type OnFilterChange = (filter: {
218
229
  type: string;
219
230
  value: any;
220
231
  }) => void;
221
- export type OnLoadMoreChats = (offset: number, limit: number) => void;
222
232
  export type OnNetworkError = (error: {
223
233
  code: string;
224
234
  message: string;
@@ -274,6 +284,8 @@ export declare const chatInjectionKey: InjectionKey<{
274
284
  retryTextRef: Ref<string>;
275
285
  typingTextRef: Ref<string>;
276
286
  closeButtonTextRef: Ref<string>;
287
+ shareButtonTooltipRef: Ref<string>;
288
+ profileButtonTooltipRef: Ref<string>;
277
289
  unreadNotificationTextRef: Ref<string>;
278
290
  notificationsShownSetRef: Ref<Set<ChatId>>;
279
291
  unreadCountsBeforeReadRef: Ref<Record<ChatId, number>>;
@@ -281,12 +293,12 @@ export declare const chatInjectionKey: InjectionKey<{
281
293
  handleChatSelect: (chatId: ChatId) => void;
282
294
  handleMessageSend: (content: string, attachments?: ChatAttachment[]) => void;
283
295
  handleMessageRetry: (message: ChatMessageData) => void;
296
+ handleFooterInputChange: (value: string, chatId: ChatId) => void;
284
297
  markMessagesAsRead?: (chatId: ChatId) => void;
285
298
  handleFilterChange: (filter: {
286
299
  type: string;
287
300
  value: string | number | boolean;
288
301
  }) => void;
289
- handleLoadMoreChats: (offset: number, limit: number) => void;
290
302
  handleNetworkError: (error: {
291
303
  code: string;
292
304
  message: string;
@@ -302,4 +314,13 @@ export declare const chatInjectionKey: InjectionKey<{
302
314
  onChatClose?: Ref<(() => void) | undefined>;
303
315
  onChatShare?: Ref<(() => void) | undefined>;
304
316
  onUserProfile?: Ref<(() => void) | undefined>;
317
+ onChatItemsScrollToTop?: Ref<(() => void) | undefined>;
318
+ onChatItemsScrollToBottom?: Ref<(() => void) | undefined>;
319
+ onMessagesScrollToTop?: Ref<(() => void) | undefined>;
320
+ onMessagesScrollToBottom?: Ref<(() => void) | undefined>;
321
+ headerShareButtonPropsRef: Ref<Partial<ButtonProps> | undefined>;
322
+ headerProfileButtonPropsRef: Ref<Partial<ButtonProps> | undefined>;
323
+ headerCloseButtonPropsRef: Ref<Partial<ButtonProps> | undefined>;
324
+ headerShareIconPropsRef: Ref<Partial<IconProps> | undefined>;
325
+ headerProfileIconPropsRef: Ref<Partial<IconProps> | undefined>;
305
326
  }>;
@@ -41,11 +41,11 @@ exports.default = (0, cssr_1.cB)('chat', `
41
41
  gap: 8px;
42
42
  `), (0, cssr_1.cE)('content', `
43
43
  flex: 1;
44
- overflow-y: auto;
45
44
  min-height: 0;
45
+ `, [(0, cssr_1.c)('.u-scrollbar-content', `
46
46
  padding: 16px;
47
47
  padding-top: 8px;
48
- `), (0, cssr_1.cE)('item', `
48
+ `)]), (0, cssr_1.cE)('item', `
49
49
  padding: 12px 16px;
50
50
  width: 100%;
51
51
  cursor: pointer;
@@ -167,8 +167,19 @@ exports.default = (0, cssr_1.cB)('chat', `
167
167
  `), (0, cssr_1.cE)('header-title', `
168
168
  margin-top: 9px;
169
169
  color: var(--u-header-title-color);
170
+ flex: 1;
171
+ min-width: 0;
172
+ overflow: hidden;
173
+ text-overflow: ellipsis;
174
+ white-space: nowrap;
175
+ display: block;
176
+ margin-right: 16px;
170
177
  `), (0, cssr_1.cE)('header-actions', `
171
178
  padding: 4px;
179
+ flex-shrink: 0;
180
+ display: flex;
181
+ align-items: center;
182
+ gap: 8px;
172
183
  `), (0, cssr_1.cE)('unread-notification', `
173
184
  background-color: var(--u-unread-notification-background-color);
174
185
  color: var(--u-unread-notification-text-color);
@@ -277,8 +277,16 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
277
277
  loadingColor: string;
278
278
  }, {
279
279
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
280
+ height: string;
281
+ width: string;
282
+ borderRadius: string;
280
283
  color: string;
281
284
  colorHover: string;
285
+ railInsetHorizontalBottom: string;
286
+ railInsetHorizontalTop: string;
287
+ railInsetVerticalRight: string;
288
+ railInsetVerticalLeft: string;
289
+ railColor: string;
282
290
  }, any>;
283
291
  Empty: import("../../_mixins").Theme<"Empty", {
284
292
  iconSizeSmall: string;
@@ -314,8 +314,16 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
314
314
  loadingColor: string;
315
315
  }, {
316
316
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
317
+ height: string;
318
+ width: string;
319
+ borderRadius: string;
317
320
  color: string;
318
321
  colorHover: string;
322
+ railInsetHorizontalBottom: string;
323
+ railInsetHorizontalTop: string;
324
+ railInsetVerticalRight: string;
325
+ railInsetVerticalLeft: string;
326
+ railColor: string;
319
327
  }, any>;
320
328
  Empty: import("../../_mixins").Theme<"Empty", {
321
329
  iconSizeSmall: string;
@@ -43,6 +43,7 @@ export * from './grid';
43
43
  export * from './icon';
44
44
  export * from './icon-wrapper';
45
45
  export * from './image';
46
+ export * from './infinite-scroll';
46
47
  export * from './input';
47
48
  export * from './input-number';
48
49
  export * from './input-otp';
@@ -89,6 +90,7 @@ export * from './tree';
89
90
  export * from './tree-select';
90
91
  export * from './typography';
91
92
  export * from './upload';
93
+ export * from './virtual-list';
92
94
  export * from './watermark';
93
95
  export * from './discrete';
94
96
  export * from './equation';
package/lib/components.js CHANGED
@@ -59,6 +59,7 @@ __exportStar(require("./grid"), exports);
59
59
  __exportStar(require("./icon"), exports);
60
60
  __exportStar(require("./icon-wrapper"), exports);
61
61
  __exportStar(require("./image"), exports);
62
+ __exportStar(require("./infinite-scroll"), exports);
62
63
  __exportStar(require("./input"), exports);
63
64
  __exportStar(require("./input-number"), exports);
64
65
  __exportStar(require("./input-otp"), exports);
@@ -105,6 +106,7 @@ __exportStar(require("./tree"), exports);
105
106
  __exportStar(require("./tree-select"), exports);
106
107
  __exportStar(require("./typography"), exports);
107
108
  __exportStar(require("./upload"), exports);
109
+ __exportStar(require("./virtual-list"), exports);
108
110
  __exportStar(require("./watermark"), exports);
109
111
  __exportStar(require("./discrete"), exports);
110
112
  __exportStar(require("./equation"), exports);
@@ -728,8 +728,16 @@ declare const _default: import("vue").DefineComponent<{
728
728
  loadingColor: string;
729
729
  }, {
730
730
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
731
+ height: string;
732
+ width: string;
733
+ borderRadius: string;
731
734
  color: string;
732
735
  colorHover: string;
736
+ railInsetHorizontalBottom: string;
737
+ railInsetHorizontalTop: string;
738
+ railInsetVerticalRight: string;
739
+ railInsetVerticalLeft: string;
740
+ railColor: string;
733
741
  }, any>;
734
742
  Empty: import("../../_mixins").Theme<"Empty", {
735
743
  iconSizeSmall: string;
@@ -867,8 +875,16 @@ declare const _default: import("vue").DefineComponent<{
867
875
  loadingColor: string;
868
876
  }, {
869
877
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
878
+ height: string;
879
+ width: string;
880
+ borderRadius: string;
870
881
  color: string;
871
882
  colorHover: string;
883
+ railInsetHorizontalBottom: string;
884
+ railInsetHorizontalTop: string;
885
+ railInsetVerticalRight: string;
886
+ railInsetVerticalLeft: string;
887
+ railColor: string;
872
888
  }, any>;
873
889
  Empty: import("../../_mixins").Theme<"Empty", {
874
890
  iconSizeSmall: string;
@@ -893,8 +909,16 @@ declare const _default: import("vue").DefineComponent<{
893
909
  }>;
894
910
  }>;
895
911
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
912
+ height: string;
913
+ width: string;
914
+ borderRadius: string;
896
915
  color: string;
897
916
  colorHover: string;
917
+ railInsetHorizontalBottom: string;
918
+ railInsetHorizontalTop: string;
919
+ railInsetVerticalRight: string;
920
+ railInsetVerticalLeft: string;
921
+ railColor: string;
898
922
  }, any>;
899
923
  Empty: import("../../_mixins").Theme<"Empty", {
900
924
  iconSizeSmall: string;
@@ -1652,8 +1676,16 @@ declare const _default: import("vue").DefineComponent<{
1652
1676
  loadingColor: string;
1653
1677
  }, {
1654
1678
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1679
+ height: string;
1680
+ width: string;
1681
+ borderRadius: string;
1655
1682
  color: string;
1656
1683
  colorHover: string;
1684
+ railInsetHorizontalBottom: string;
1685
+ railInsetHorizontalTop: string;
1686
+ railInsetVerticalRight: string;
1687
+ railInsetVerticalLeft: string;
1688
+ railColor: string;
1657
1689
  }, any>;
1658
1690
  Empty: import("../../_mixins").Theme<"Empty", {
1659
1691
  iconSizeSmall: string;
@@ -1791,8 +1823,16 @@ declare const _default: import("vue").DefineComponent<{
1791
1823
  loadingColor: string;
1792
1824
  }, {
1793
1825
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1826
+ height: string;
1827
+ width: string;
1828
+ borderRadius: string;
1794
1829
  color: string;
1795
1830
  colorHover: string;
1831
+ railInsetHorizontalBottom: string;
1832
+ railInsetHorizontalTop: string;
1833
+ railInsetVerticalRight: string;
1834
+ railInsetVerticalLeft: string;
1835
+ railColor: string;
1796
1836
  }, any>;
1797
1837
  Empty: import("../../_mixins").Theme<"Empty", {
1798
1838
  iconSizeSmall: string;
@@ -1817,8 +1857,16 @@ declare const _default: import("vue").DefineComponent<{
1817
1857
  }>;
1818
1858
  }>;
1819
1859
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1860
+ height: string;
1861
+ width: string;
1862
+ borderRadius: string;
1820
1863
  color: string;
1821
1864
  colorHover: string;
1865
+ railInsetHorizontalBottom: string;
1866
+ railInsetHorizontalTop: string;
1867
+ railInsetVerticalRight: string;
1868
+ railInsetVerticalLeft: string;
1869
+ railColor: string;
1822
1870
  }, any>;
1823
1871
  Empty: import("../../_mixins").Theme<"Empty", {
1824
1872
  iconSizeSmall: string;
@@ -2576,8 +2624,16 @@ declare const _default: import("vue").DefineComponent<{
2576
2624
  loadingColor: string;
2577
2625
  }, {
2578
2626
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2627
+ height: string;
2628
+ width: string;
2629
+ borderRadius: string;
2579
2630
  color: string;
2580
2631
  colorHover: string;
2632
+ railInsetHorizontalBottom: string;
2633
+ railInsetHorizontalTop: string;
2634
+ railInsetVerticalRight: string;
2635
+ railInsetVerticalLeft: string;
2636
+ railColor: string;
2581
2637
  }, any>;
2582
2638
  Empty: import("../../_mixins").Theme<"Empty", {
2583
2639
  iconSizeSmall: string;
@@ -2715,8 +2771,16 @@ declare const _default: import("vue").DefineComponent<{
2715
2771
  loadingColor: string;
2716
2772
  }, {
2717
2773
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2774
+ height: string;
2775
+ width: string;
2776
+ borderRadius: string;
2718
2777
  color: string;
2719
2778
  colorHover: string;
2779
+ railInsetHorizontalBottom: string;
2780
+ railInsetHorizontalTop: string;
2781
+ railInsetVerticalRight: string;
2782
+ railInsetVerticalLeft: string;
2783
+ railColor: string;
2720
2784
  }, any>;
2721
2785
  Empty: import("../../_mixins").Theme<"Empty", {
2722
2786
  iconSizeSmall: string;
@@ -2741,8 +2805,16 @@ declare const _default: import("vue").DefineComponent<{
2741
2805
  }>;
2742
2806
  }>;
2743
2807
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2808
+ height: string;
2809
+ width: string;
2810
+ borderRadius: string;
2744
2811
  color: string;
2745
2812
  colorHover: string;
2813
+ railInsetHorizontalBottom: string;
2814
+ railInsetHorizontalTop: string;
2815
+ railInsetVerticalRight: string;
2816
+ railInsetVerticalLeft: string;
2817
+ railColor: string;
2746
2818
  }, any>;
2747
2819
  Empty: import("../../_mixins").Theme<"Empty", {
2748
2820
  iconSizeSmall: string;
@@ -3523,8 +3595,16 @@ declare const _default: import("vue").DefineComponent<{
3523
3595
  loadingColor: string;
3524
3596
  }, {
3525
3597
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3598
+ height: string;
3599
+ width: string;
3600
+ borderRadius: string;
3526
3601
  color: string;
3527
3602
  colorHover: string;
3603
+ railInsetHorizontalBottom: string;
3604
+ railInsetHorizontalTop: string;
3605
+ railInsetVerticalRight: string;
3606
+ railInsetVerticalLeft: string;
3607
+ railColor: string;
3528
3608
  }, any>;
3529
3609
  Empty: import("../../_mixins").Theme<"Empty", {
3530
3610
  iconSizeSmall: string;
@@ -3662,8 +3742,16 @@ declare const _default: import("vue").DefineComponent<{
3662
3742
  loadingColor: string;
3663
3743
  }, {
3664
3744
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3745
+ height: string;
3746
+ width: string;
3747
+ borderRadius: string;
3665
3748
  color: string;
3666
3749
  colorHover: string;
3750
+ railInsetHorizontalBottom: string;
3751
+ railInsetHorizontalTop: string;
3752
+ railInsetVerticalRight: string;
3753
+ railInsetVerticalLeft: string;
3754
+ railColor: string;
3667
3755
  }, any>;
3668
3756
  Empty: import("../../_mixins").Theme<"Empty", {
3669
3757
  iconSizeSmall: string;
@@ -3688,8 +3776,16 @@ declare const _default: import("vue").DefineComponent<{
3688
3776
  }>;
3689
3777
  }>;
3690
3778
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3779
+ height: string;
3780
+ width: string;
3781
+ borderRadius: string;
3691
3782
  color: string;
3692
3783
  colorHover: string;
3784
+ railInsetHorizontalBottom: string;
3785
+ railInsetHorizontalTop: string;
3786
+ railInsetVerticalRight: string;
3787
+ railInsetVerticalLeft: string;
3788
+ railColor: string;
3693
3789
  }, any>;
3694
3790
  Empty: import("../../_mixins").Theme<"Empty", {
3695
3791
  iconSizeSmall: string;
@@ -4008,8 +4104,16 @@ declare const _default: import("vue").DefineComponent<{
4008
4104
  loadingColor: string;
4009
4105
  }, {
4010
4106
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4107
+ height: string;
4108
+ width: string;
4109
+ borderRadius: string;
4011
4110
  color: string;
4012
4111
  colorHover: string;
4112
+ railInsetHorizontalBottom: string;
4113
+ railInsetHorizontalTop: string;
4114
+ railInsetVerticalRight: string;
4115
+ railInsetVerticalLeft: string;
4116
+ railColor: string;
4013
4117
  }, any>;
4014
4118
  Empty: import("../../_mixins").Theme<"Empty", {
4015
4119
  iconSizeSmall: string;
@@ -4147,8 +4251,16 @@ declare const _default: import("vue").DefineComponent<{
4147
4251
  loadingColor: string;
4148
4252
  }, {
4149
4253
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4254
+ height: string;
4255
+ width: string;
4256
+ borderRadius: string;
4150
4257
  color: string;
4151
4258
  colorHover: string;
4259
+ railInsetHorizontalBottom: string;
4260
+ railInsetHorizontalTop: string;
4261
+ railInsetVerticalRight: string;
4262
+ railInsetVerticalLeft: string;
4263
+ railColor: string;
4152
4264
  }, any>;
4153
4265
  Empty: import("../../_mixins").Theme<"Empty", {
4154
4266
  iconSizeSmall: string;
@@ -5028,8 +5140,16 @@ declare const _default: import("vue").DefineComponent<{
5028
5140
  loadingColor: string;
5029
5141
  }, {
5030
5142
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5143
+ height: string;
5144
+ width: string;
5145
+ borderRadius: string;
5031
5146
  color: string;
5032
5147
  colorHover: string;
5148
+ railInsetHorizontalBottom: string;
5149
+ railInsetHorizontalTop: string;
5150
+ railInsetVerticalRight: string;
5151
+ railInsetVerticalLeft: string;
5152
+ railColor: string;
5033
5153
  }, any>;
5034
5154
  Empty: import("../../_mixins").Theme<"Empty", {
5035
5155
  iconSizeSmall: string;
@@ -5167,8 +5287,16 @@ declare const _default: import("vue").DefineComponent<{
5167
5287
  loadingColor: string;
5168
5288
  }, {
5169
5289
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5290
+ height: string;
5291
+ width: string;
5292
+ borderRadius: string;
5170
5293
  color: string;
5171
5294
  colorHover: string;
5295
+ railInsetHorizontalBottom: string;
5296
+ railInsetHorizontalTop: string;
5297
+ railInsetVerticalRight: string;
5298
+ railInsetVerticalLeft: string;
5299
+ railColor: string;
5172
5300
  }, any>;
5173
5301
  Empty: import("../../_mixins").Theme<"Empty", {
5174
5302
  iconSizeSmall: string;
@@ -5193,8 +5321,16 @@ declare const _default: import("vue").DefineComponent<{
5193
5321
  }>;
5194
5322
  }>;
5195
5323
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5324
+ height: string;
5325
+ width: string;
5326
+ borderRadius: string;
5196
5327
  color: string;
5197
5328
  colorHover: string;
5329
+ railInsetHorizontalBottom: string;
5330
+ railInsetHorizontalTop: string;
5331
+ railInsetVerticalRight: string;
5332
+ railInsetVerticalLeft: string;
5333
+ railColor: string;
5198
5334
  }, any>;
5199
5335
  Empty: import("../../_mixins").Theme<"Empty", {
5200
5336
  iconSizeSmall: string;
@@ -5952,8 +6088,16 @@ declare const _default: import("vue").DefineComponent<{
5952
6088
  loadingColor: string;
5953
6089
  }, {
5954
6090
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6091
+ height: string;
6092
+ width: string;
6093
+ borderRadius: string;
5955
6094
  color: string;
5956
6095
  colorHover: string;
6096
+ railInsetHorizontalBottom: string;
6097
+ railInsetHorizontalTop: string;
6098
+ railInsetVerticalRight: string;
6099
+ railInsetVerticalLeft: string;
6100
+ railColor: string;
5957
6101
  }, any>;
5958
6102
  Empty: import("../../_mixins").Theme<"Empty", {
5959
6103
  iconSizeSmall: string;
@@ -6091,8 +6235,16 @@ declare const _default: import("vue").DefineComponent<{
6091
6235
  loadingColor: string;
6092
6236
  }, {
6093
6237
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6238
+ height: string;
6239
+ width: string;
6240
+ borderRadius: string;
6094
6241
  color: string;
6095
6242
  colorHover: string;
6243
+ railInsetHorizontalBottom: string;
6244
+ railInsetHorizontalTop: string;
6245
+ railInsetVerticalRight: string;
6246
+ railInsetVerticalLeft: string;
6247
+ railColor: string;
6096
6248
  }, any>;
6097
6249
  Empty: import("../../_mixins").Theme<"Empty", {
6098
6250
  iconSizeSmall: string;
@@ -6117,8 +6269,16 @@ declare const _default: import("vue").DefineComponent<{
6117
6269
  }>;
6118
6270
  }>;
6119
6271
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6272
+ height: string;
6273
+ width: string;
6274
+ borderRadius: string;
6120
6275
  color: string;
6121
6276
  colorHover: string;
6277
+ railInsetHorizontalBottom: string;
6278
+ railInsetHorizontalTop: string;
6279
+ railInsetVerticalRight: string;
6280
+ railInsetVerticalLeft: string;
6281
+ railColor: string;
6122
6282
  }, any>;
6123
6283
  Empty: import("../../_mixins").Theme<"Empty", {
6124
6284
  iconSizeSmall: string;
@@ -6876,8 +7036,16 @@ declare const _default: import("vue").DefineComponent<{
6876
7036
  loadingColor: string;
6877
7037
  }, {
6878
7038
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7039
+ height: string;
7040
+ width: string;
7041
+ borderRadius: string;
6879
7042
  color: string;
6880
7043
  colorHover: string;
7044
+ railInsetHorizontalBottom: string;
7045
+ railInsetHorizontalTop: string;
7046
+ railInsetVerticalRight: string;
7047
+ railInsetVerticalLeft: string;
7048
+ railColor: string;
6881
7049
  }, any>;
6882
7050
  Empty: import("../../_mixins").Theme<"Empty", {
6883
7051
  iconSizeSmall: string;
@@ -7015,8 +7183,16 @@ declare const _default: import("vue").DefineComponent<{
7015
7183
  loadingColor: string;
7016
7184
  }, {
7017
7185
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7186
+ height: string;
7187
+ width: string;
7188
+ borderRadius: string;
7018
7189
  color: string;
7019
7190
  colorHover: string;
7191
+ railInsetHorizontalBottom: string;
7192
+ railInsetHorizontalTop: string;
7193
+ railInsetVerticalRight: string;
7194
+ railInsetVerticalLeft: string;
7195
+ railColor: string;
7020
7196
  }, any>;
7021
7197
  Empty: import("../../_mixins").Theme<"Empty", {
7022
7198
  iconSizeSmall: string;
@@ -7041,8 +7217,16 @@ declare const _default: import("vue").DefineComponent<{
7041
7217
  }>;
7042
7218
  }>;
7043
7219
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7220
+ height: string;
7221
+ width: string;
7222
+ borderRadius: string;
7044
7223
  color: string;
7045
7224
  colorHover: string;
7225
+ railInsetHorizontalBottom: string;
7226
+ railInsetHorizontalTop: string;
7227
+ railInsetVerticalRight: string;
7228
+ railInsetVerticalLeft: string;
7229
+ railColor: string;
7046
7230
  }, any>;
7047
7231
  Empty: import("../../_mixins").Theme<"Empty", {
7048
7232
  iconSizeSmall: string;