@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
@@ -55,6 +55,21 @@ export const chatProps = Object.assign(Object.assign({}, useTheme.props), { chat
55
55
  }, headerIconProps: {
56
56
  type: Object,
57
57
  default: undefined
58
+ }, headerShareButtonProps: {
59
+ type: Object,
60
+ default: undefined
61
+ }, headerProfileButtonProps: {
62
+ type: Object,
63
+ default: undefined
64
+ }, headerCloseButtonProps: {
65
+ type: Object,
66
+ default: undefined
67
+ }, headerShareIconProps: {
68
+ type: Object,
69
+ default: undefined
70
+ }, headerProfileIconProps: {
71
+ type: Object,
72
+ default: undefined
58
73
  }, messageSenderAvatarProps: {
59
74
  type: Object,
60
75
  default: undefined
@@ -91,6 +106,12 @@ export const chatProps = Object.assign(Object.assign({}, useTheme.props), { chat
91
106
  }, closeButtonText: {
92
107
  type: String,
93
108
  default: undefined
109
+ }, shareButtonTooltip: {
110
+ type: String,
111
+ default: undefined
112
+ }, profileButtonTooltip: {
113
+ type: String,
114
+ default: undefined
94
115
  }, unreadNotificationText: {
95
116
  type: String,
96
117
  default: undefined
@@ -130,7 +151,7 @@ export const chatProps = Object.assign(Object.assign({}, useTheme.props), { chat
130
151
  }, onFilterChange: {
131
152
  type: Function,
132
153
  default: undefined
133
- }, onLoadMoreChats: {
154
+ }, onFooterInputChange: {
134
155
  type: Function,
135
156
  default: undefined
136
157
  }, onNetworkError: {
@@ -142,6 +163,18 @@ export const chatProps = Object.assign(Object.assign({}, useTheme.props), { chat
142
163
  }, onSendError: {
143
164
  type: Function,
144
165
  default: undefined
166
+ }, onChatItemsScrollToTop: {
167
+ type: Function,
168
+ default: undefined
169
+ }, onChatItemsScrollToBottom: {
170
+ type: Function,
171
+ default: undefined
172
+ }, onMessagesScrollToTop: {
173
+ type: Function,
174
+ default: undefined
175
+ }, onMessagesScrollToBottom: {
176
+ type: Function,
177
+ default: undefined
145
178
  } });
146
179
  export default defineComponent({
147
180
  name: 'Chat',
@@ -153,12 +186,16 @@ export default defineComponent({
153
186
  'attachment-upload',
154
187
  'mark-messages-read',
155
188
  'filter-change',
156
- 'load-more-chats',
189
+ 'footer-input-change',
157
190
  'network-error',
158
191
  'upload-error',
159
- 'send-error'
192
+ 'send-error',
193
+ 'chat-items-scroll-to-top',
194
+ 'chat-items-scroll-to-bottom',
195
+ 'messages-scroll-to-top',
196
+ 'messages-scroll-to-bottom'
160
197
  ],
161
- setup(props, { slots, emit }) {
198
+ setup(props, { slots, emit, expose }) {
162
199
  const { mergedClsPrefixRef } = useConfig(props);
163
200
  const themeRef = useTheme('Chat', '-chat', style, chatLight, props, mergedClsPrefixRef);
164
201
  const { localeRef } = useLocale('Chat');
@@ -271,37 +308,25 @@ export default defineComponent({
271
308
  emit('message-send', content, attachments);
272
309
  };
273
310
  const handleMessageRetry = (message) => {
274
- var _a;
275
311
  emit('message-retry', message);
276
- (_a = props.onMessageRetry) === null || _a === void 0 ? void 0 : _a.call(props, message);
277
312
  };
278
313
  const markMessagesAsRead = (chatId) => {
279
314
  emit('mark-messages-read', chatId);
280
315
  };
281
316
  const handleFilterChange = (filter) => {
282
- var _a;
283
317
  emit('filter-change', filter);
284
- (_a = props.onFilterChange) === null || _a === void 0 ? void 0 : _a.call(props, filter);
285
318
  };
286
- const handleLoadMoreChats = (offset, limit) => {
287
- var _a;
288
- emit('load-more-chats', { offset, limit });
289
- (_a = props.onLoadMoreChats) === null || _a === void 0 ? void 0 : _a.call(props, offset, limit);
319
+ const handleFooterInputChange = (value, chatId) => {
320
+ emit('footer-input-change', value, chatId);
290
321
  };
291
322
  const handleNetworkError = (error) => {
292
- var _a;
293
323
  emit('network-error', error);
294
- (_a = props.onNetworkError) === null || _a === void 0 ? void 0 : _a.call(props, error);
295
324
  };
296
325
  const handleUploadError = (error) => {
297
- var _a;
298
326
  emit('upload-error', error);
299
- (_a = props.onUploadError) === null || _a === void 0 ? void 0 : _a.call(props, error);
300
327
  };
301
328
  const handleSendError = (error) => {
302
- var _a;
303
329
  emit('send-error', error);
304
- (_a = props.onSendError) === null || _a === void 0 ? void 0 : _a.call(props, error);
305
330
  };
306
331
  const mergedInputPlaceholderRef = computed(() => {
307
332
  var _a;
@@ -314,6 +339,8 @@ export default defineComponent({
314
339
  const mergedRetryTextRef = computed(() => { var _a; return (_a = props.retryText) !== null && _a !== void 0 ? _a : localeRef.value.retryText; });
315
340
  const mergedTypingTextRef = computed(() => { var _a; return (_a = props.typingText) !== null && _a !== void 0 ? _a : localeRef.value.typingText; });
316
341
  const mergedCloseButtonTextRef = computed(() => { var _a; return (_a = props.closeButtonText) !== null && _a !== void 0 ? _a : localeRef.value.closeButtonText; });
342
+ const mergedShareButtonTooltipRef = computed(() => { var _a; return (_a = props.shareButtonTooltip) !== null && _a !== void 0 ? _a : localeRef.value.shareButtonTooltip; });
343
+ const mergedProfileButtonTooltipRef = computed(() => { var _a; return (_a = props.profileButtonTooltip) !== null && _a !== void 0 ? _a : localeRef.value.profileButtonTooltip; });
317
344
  const mergedUnreadNotificationTextRef = computed(() => { var _a; return (_a = props.unreadNotificationText) !== null && _a !== void 0 ? _a : localeRef.value.unreadNotificationText; });
318
345
  provide(chatInjectionKey, {
319
346
  mergedClsPrefixRef,
@@ -335,6 +362,11 @@ export default defineComponent({
335
362
  emptyPropsRef: toRef(props, 'emptyProps'),
336
363
  headerButtonPropsRef: toRef(props, 'headerButtonProps'),
337
364
  headerIconPropsRef: toRef(props, 'headerIconProps'),
365
+ headerShareButtonPropsRef: toRef(props, 'headerShareButtonProps'),
366
+ headerProfileButtonPropsRef: toRef(props, 'headerProfileButtonProps'),
367
+ headerCloseButtonPropsRef: toRef(props, 'headerCloseButtonProps'),
368
+ headerShareIconPropsRef: toRef(props, 'headerShareIconProps'),
369
+ headerProfileIconPropsRef: toRef(props, 'headerProfileIconProps'),
338
370
  messageSenderAvatarPropsRef: toRef(props, 'messageSenderAvatarProps'),
339
371
  messageUploadPropsRef: toRef(props, 'messageUploadProps'),
340
372
  messageButtonPropsRef: toRef(props, 'messageButtonProps'),
@@ -347,6 +379,8 @@ export default defineComponent({
347
379
  retryTextRef: mergedRetryTextRef,
348
380
  typingTextRef: mergedTypingTextRef,
349
381
  closeButtonTextRef: mergedCloseButtonTextRef,
382
+ shareButtonTooltipRef: mergedShareButtonTooltipRef,
383
+ profileButtonTooltipRef: mergedProfileButtonTooltipRef,
350
384
  unreadNotificationTextRef: mergedUnreadNotificationTextRef,
351
385
  notificationsShownSetRef: notificationsShownSet,
352
386
  unreadCountsBeforeReadRef: unreadCountsBeforeRead,
@@ -356,20 +390,37 @@ export default defineComponent({
356
390
  handleMessageRetry,
357
391
  markMessagesAsRead,
358
392
  handleFilterChange,
359
- handleLoadMoreChats,
393
+ handleFooterInputChange,
360
394
  handleNetworkError,
361
395
  handleUploadError,
362
396
  handleSendError,
363
397
  onChatClose: toRef(props, 'onChatClose'),
364
398
  onChatShare: toRef(props, 'onChatShare'),
365
- onUserProfile: toRef(props, 'onUserProfile')
399
+ onUserProfile: toRef(props, 'onUserProfile'),
400
+ onChatItemsScrollToTop: toRef(props, 'onChatItemsScrollToTop'),
401
+ onChatItemsScrollToBottom: toRef(props, 'onChatItemsScrollToBottom'),
402
+ onMessagesScrollToTop: toRef(props, 'onMessagesScrollToTop'),
403
+ onMessagesScrollToBottom: toRef(props, 'onMessagesScrollToBottom')
404
+ });
405
+ const mainAreaRef = ref(null);
406
+ const scrollToBottom = () => {
407
+ var _a;
408
+ (_a = mainAreaRef.value) === null || _a === void 0 ? void 0 : _a.scrollToBottom();
409
+ };
410
+ const sendMessage = (content, attachments) => {
411
+ handleMessageSend(content, attachments);
412
+ };
413
+ expose({
414
+ scrollToBottom,
415
+ sendMessage
366
416
  });
367
417
  return {
368
418
  mergedClsPrefix: mergedClsPrefixRef,
369
419
  mergedTheme: themeRef,
370
420
  cssVars: cssVarsRef,
371
421
  themeClass: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.themeClass,
372
- onRender: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.onRender
422
+ onRender: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.onRender,
423
+ mainAreaRef
373
424
  };
374
425
  },
375
426
  render() {
@@ -392,7 +443,7 @@ export default defineComponent({
392
443
  ]),
393
444
  this.selectedChatId &&
394
445
  resolveSlot($slots.default, () => [
395
- h(ChatMainArea, null, {
446
+ h(ChatMainArea, { ref: "mainAreaRef" }, {
396
447
  headerActions: $slots.headerActions
397
448
  })
398
449
  ])))
@@ -328,8 +328,16 @@ export declare const chatListItemsProps: {
328
328
  loadingColor: string;
329
329
  }, {
330
330
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
331
+ height: string;
332
+ width: string;
333
+ borderRadius: string;
331
334
  color: string;
332
335
  colorHover: string;
336
+ railInsetHorizontalBottom: string;
337
+ railInsetHorizontalTop: string;
338
+ railInsetVerticalRight: string;
339
+ railInsetVerticalLeft: string;
340
+ railColor: string;
333
341
  }, any>;
334
342
  Empty: import("../../_mixins").Theme<"Empty", {
335
343
  iconSizeSmall: string;
@@ -985,8 +993,16 @@ export declare const chatListItemsProps: {
985
993
  loadingColor: string;
986
994
  }, {
987
995
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
996
+ height: string;
997
+ width: string;
998
+ borderRadius: string;
988
999
  color: string;
989
1000
  colorHover: string;
1001
+ railInsetHorizontalBottom: string;
1002
+ railInsetHorizontalTop: string;
1003
+ railInsetVerticalRight: string;
1004
+ railInsetVerticalLeft: string;
1005
+ railColor: string;
990
1006
  }, any>;
991
1007
  Empty: import("../../_mixins").Theme<"Empty", {
992
1008
  iconSizeSmall: string;
@@ -1642,8 +1658,16 @@ export declare const chatListItemsProps: {
1642
1658
  loadingColor: string;
1643
1659
  }, {
1644
1660
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1661
+ height: string;
1662
+ width: string;
1663
+ borderRadius: string;
1645
1664
  color: string;
1646
1665
  colorHover: string;
1666
+ railInsetHorizontalBottom: string;
1667
+ railInsetHorizontalTop: string;
1668
+ railInsetVerticalRight: string;
1669
+ railInsetVerticalLeft: string;
1670
+ railColor: string;
1647
1671
  }, any>;
1648
1672
  Empty: import("../../_mixins").Theme<"Empty", {
1649
1673
  iconSizeSmall: string;
@@ -2346,8 +2370,16 @@ declare const _default: import("vue").DefineComponent<{
2346
2370
  loadingColor: string;
2347
2371
  }, {
2348
2372
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2373
+ height: string;
2374
+ width: string;
2375
+ borderRadius: string;
2349
2376
  color: string;
2350
2377
  colorHover: string;
2378
+ railInsetHorizontalBottom: string;
2379
+ railInsetHorizontalTop: string;
2380
+ railInsetVerticalRight: string;
2381
+ railInsetVerticalLeft: string;
2382
+ railColor: string;
2351
2383
  }, any>;
2352
2384
  Empty: import("../../_mixins").Theme<"Empty", {
2353
2385
  iconSizeSmall: string;
@@ -3003,8 +3035,16 @@ declare const _default: import("vue").DefineComponent<{
3003
3035
  loadingColor: string;
3004
3036
  }, {
3005
3037
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3038
+ height: string;
3039
+ width: string;
3040
+ borderRadius: string;
3006
3041
  color: string;
3007
3042
  colorHover: string;
3043
+ railInsetHorizontalBottom: string;
3044
+ railInsetHorizontalTop: string;
3045
+ railInsetVerticalRight: string;
3046
+ railInsetVerticalLeft: string;
3047
+ railColor: string;
3008
3048
  }, any>;
3009
3049
  Empty: import("../../_mixins").Theme<"Empty", {
3010
3050
  iconSizeSmall: string;
@@ -3660,8 +3700,16 @@ declare const _default: import("vue").DefineComponent<{
3660
3700
  loadingColor: string;
3661
3701
  }, {
3662
3702
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3703
+ height: string;
3704
+ width: string;
3705
+ borderRadius: string;
3663
3706
  color: string;
3664
3707
  colorHover: string;
3708
+ railInsetHorizontalBottom: string;
3709
+ railInsetHorizontalTop: string;
3710
+ railInsetVerticalRight: string;
3711
+ railInsetVerticalLeft: string;
3712
+ railColor: string;
3665
3713
  }, any>;
3666
3714
  Empty: import("../../_mixins").Theme<"Empty", {
3667
3715
  iconSizeSmall: string;
@@ -4322,8 +4370,16 @@ declare const _default: import("vue").DefineComponent<{
4322
4370
  loadingColor: string;
4323
4371
  }, {
4324
4372
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4373
+ height: string;
4374
+ width: string;
4375
+ borderRadius: string;
4325
4376
  color: string;
4326
4377
  colorHover: string;
4378
+ railInsetHorizontalBottom: string;
4379
+ railInsetHorizontalTop: string;
4380
+ railInsetVerticalRight: string;
4381
+ railInsetVerticalLeft: string;
4382
+ railColor: string;
4327
4383
  }, any>;
4328
4384
  Empty: import("../../_mixins").Theme<"Empty", {
4329
4385
  iconSizeSmall: string;
@@ -4870,8 +4926,16 @@ declare const _default: import("vue").DefineComponent<{
4870
4926
  loadingColor: string;
4871
4927
  }, {
4872
4928
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4929
+ height: string;
4930
+ width: string;
4931
+ borderRadius: string;
4873
4932
  color: string;
4874
4933
  colorHover: string;
4934
+ railInsetHorizontalBottom: string;
4935
+ railInsetHorizontalTop: string;
4936
+ railInsetVerticalRight: string;
4937
+ railInsetVerticalLeft: string;
4938
+ railColor: string;
4875
4939
  }, any>;
4876
4940
  Empty: import("../../_mixins").Theme<"Empty", {
4877
4941
  iconSizeSmall: string;
@@ -5208,8 +5272,16 @@ declare const _default: import("vue").DefineComponent<{
5208
5272
  loadingColor: string;
5209
5273
  }, {
5210
5274
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5275
+ height: string;
5276
+ width: string;
5277
+ borderRadius: string;
5211
5278
  color: string;
5212
5279
  colorHover: string;
5280
+ railInsetHorizontalBottom: string;
5281
+ railInsetHorizontalTop: string;
5282
+ railInsetVerticalRight: string;
5283
+ railInsetVerticalLeft: string;
5284
+ railColor: string;
5213
5285
  }, any>;
5214
5286
  Empty: import("../../_mixins").Theme<"Empty", {
5215
5287
  iconSizeSmall: string;
@@ -5756,8 +5828,16 @@ declare const _default: import("vue").DefineComponent<{
5756
5828
  loadingColor: string;
5757
5829
  }, {
5758
5830
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5831
+ height: string;
5832
+ width: string;
5833
+ borderRadius: string;
5759
5834
  color: string;
5760
5835
  colorHover: string;
5836
+ railInsetHorizontalBottom: string;
5837
+ railInsetHorizontalTop: string;
5838
+ railInsetVerticalRight: string;
5839
+ railInsetVerticalLeft: string;
5840
+ railColor: string;
5761
5841
  }, any>;
5762
5842
  Empty: import("../../_mixins").Theme<"Empty", {
5763
5843
  iconSizeSmall: string;
@@ -6162,8 +6242,16 @@ declare const _default: import("vue").DefineComponent<{
6162
6242
  loadingColor: string;
6163
6243
  }, {
6164
6244
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6245
+ height: string;
6246
+ width: string;
6247
+ borderRadius: string;
6165
6248
  color: string;
6166
6249
  colorHover: string;
6250
+ railInsetHorizontalBottom: string;
6251
+ railInsetHorizontalTop: string;
6252
+ railInsetVerticalRight: string;
6253
+ railInsetVerticalLeft: string;
6254
+ railColor: string;
6167
6255
  }, any>;
6168
6256
  Empty: import("../../_mixins").Theme<"Empty", {
6169
6257
  iconSizeSmall: string;
@@ -6819,8 +6907,16 @@ declare const _default: import("vue").DefineComponent<{
6819
6907
  loadingColor: string;
6820
6908
  }, {
6821
6909
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6910
+ height: string;
6911
+ width: string;
6912
+ borderRadius: string;
6822
6913
  color: string;
6823
6914
  colorHover: string;
6915
+ railInsetHorizontalBottom: string;
6916
+ railInsetHorizontalTop: string;
6917
+ railInsetVerticalRight: string;
6918
+ railInsetVerticalLeft: string;
6919
+ railColor: string;
6824
6920
  }, any>;
6825
6921
  Empty: import("../../_mixins").Theme<"Empty", {
6826
6922
  iconSizeSmall: string;
@@ -7476,8 +7572,16 @@ declare const _default: import("vue").DefineComponent<{
7476
7572
  loadingColor: string;
7477
7573
  }, {
7478
7574
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7575
+ height: string;
7576
+ width: string;
7577
+ borderRadius: string;
7479
7578
  color: string;
7480
7579
  colorHover: string;
7580
+ railInsetHorizontalBottom: string;
7581
+ railInsetHorizontalTop: string;
7582
+ railInsetVerticalRight: string;
7583
+ railInsetVerticalLeft: string;
7584
+ railColor: string;
7481
7585
  }, any>;
7482
7586
  Empty: import("../../_mixins").Theme<"Empty", {
7483
7587
  iconSizeSmall: string;
@@ -330,8 +330,16 @@ export declare const chatMessagesProps: {
330
330
  loadingColor: string;
331
331
  }, {
332
332
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
333
+ height: string;
334
+ width: string;
335
+ borderRadius: string;
333
336
  color: string;
334
337
  colorHover: string;
338
+ railInsetHorizontalBottom: string;
339
+ railInsetHorizontalTop: string;
340
+ railInsetVerticalRight: string;
341
+ railInsetVerticalLeft: string;
342
+ railColor: string;
335
343
  }, any>;
336
344
  Empty: import("../../_mixins").Theme<"Empty", {
337
345
  iconSizeSmall: string;
@@ -987,8 +995,16 @@ export declare const chatMessagesProps: {
987
995
  loadingColor: string;
988
996
  }, {
989
997
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
998
+ height: string;
999
+ width: string;
1000
+ borderRadius: string;
990
1001
  color: string;
991
1002
  colorHover: string;
1003
+ railInsetHorizontalBottom: string;
1004
+ railInsetHorizontalTop: string;
1005
+ railInsetVerticalRight: string;
1006
+ railInsetVerticalLeft: string;
1007
+ railColor: string;
992
1008
  }, any>;
993
1009
  Empty: import("../../_mixins").Theme<"Empty", {
994
1010
  iconSizeSmall: string;
@@ -1644,8 +1660,16 @@ export declare const chatMessagesProps: {
1644
1660
  loadingColor: string;
1645
1661
  }, {
1646
1662
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1663
+ height: string;
1664
+ width: string;
1665
+ borderRadius: string;
1647
1666
  color: string;
1648
1667
  colorHover: string;
1668
+ railInsetHorizontalBottom: string;
1669
+ railInsetHorizontalTop: string;
1670
+ railInsetVerticalRight: string;
1671
+ railInsetVerticalLeft: string;
1672
+ railColor: string;
1649
1673
  }, any>;
1650
1674
  Empty: import("../../_mixins").Theme<"Empty", {
1651
1675
  iconSizeSmall: string;
@@ -2352,8 +2376,16 @@ declare const _default: import("vue").DefineComponent<{
2352
2376
  loadingColor: string;
2353
2377
  }, {
2354
2378
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2379
+ height: string;
2380
+ width: string;
2381
+ borderRadius: string;
2355
2382
  color: string;
2356
2383
  colorHover: string;
2384
+ railInsetHorizontalBottom: string;
2385
+ railInsetHorizontalTop: string;
2386
+ railInsetVerticalRight: string;
2387
+ railInsetVerticalLeft: string;
2388
+ railColor: string;
2357
2389
  }, any>;
2358
2390
  Empty: import("../../_mixins").Theme<"Empty", {
2359
2391
  iconSizeSmall: string;
@@ -3009,8 +3041,16 @@ declare const _default: import("vue").DefineComponent<{
3009
3041
  loadingColor: string;
3010
3042
  }, {
3011
3043
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3044
+ height: string;
3045
+ width: string;
3046
+ borderRadius: string;
3012
3047
  color: string;
3013
3048
  colorHover: string;
3049
+ railInsetHorizontalBottom: string;
3050
+ railInsetHorizontalTop: string;
3051
+ railInsetVerticalRight: string;
3052
+ railInsetVerticalLeft: string;
3053
+ railColor: string;
3014
3054
  }, any>;
3015
3055
  Empty: import("../../_mixins").Theme<"Empty", {
3016
3056
  iconSizeSmall: string;
@@ -3666,8 +3706,16 @@ declare const _default: import("vue").DefineComponent<{
3666
3706
  loadingColor: string;
3667
3707
  }, {
3668
3708
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3709
+ height: string;
3710
+ width: string;
3711
+ borderRadius: string;
3669
3712
  color: string;
3670
3713
  colorHover: string;
3714
+ railInsetHorizontalBottom: string;
3715
+ railInsetHorizontalTop: string;
3716
+ railInsetVerticalRight: string;
3717
+ railInsetVerticalLeft: string;
3718
+ railColor: string;
3671
3719
  }, any>;
3672
3720
  Empty: import("../../_mixins").Theme<"Empty", {
3673
3721
  iconSizeSmall: string;
@@ -4328,8 +4376,16 @@ declare const _default: import("vue").DefineComponent<{
4328
4376
  loadingColor: string;
4329
4377
  }, {
4330
4378
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4379
+ height: string;
4380
+ width: string;
4381
+ borderRadius: string;
4331
4382
  color: string;
4332
4383
  colorHover: string;
4384
+ railInsetHorizontalBottom: string;
4385
+ railInsetHorizontalTop: string;
4386
+ railInsetVerticalRight: string;
4387
+ railInsetVerticalLeft: string;
4388
+ railColor: string;
4333
4389
  }, any>;
4334
4390
  Empty: import("../../_mixins").Theme<"Empty", {
4335
4391
  iconSizeSmall: string;
@@ -4876,8 +4932,16 @@ declare const _default: import("vue").DefineComponent<{
4876
4932
  loadingColor: string;
4877
4933
  }, {
4878
4934
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4935
+ height: string;
4936
+ width: string;
4937
+ borderRadius: string;
4879
4938
  color: string;
4880
4939
  colorHover: string;
4940
+ railInsetHorizontalBottom: string;
4941
+ railInsetHorizontalTop: string;
4942
+ railInsetVerticalRight: string;
4943
+ railInsetVerticalLeft: string;
4944
+ railColor: string;
4881
4945
  }, any>;
4882
4946
  Empty: import("../../_mixins").Theme<"Empty", {
4883
4947
  iconSizeSmall: string;
@@ -5214,8 +5278,16 @@ declare const _default: import("vue").DefineComponent<{
5214
5278
  loadingColor: string;
5215
5279
  }, {
5216
5280
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5281
+ height: string;
5282
+ width: string;
5283
+ borderRadius: string;
5217
5284
  color: string;
5218
5285
  colorHover: string;
5286
+ railInsetHorizontalBottom: string;
5287
+ railInsetHorizontalTop: string;
5288
+ railInsetVerticalRight: string;
5289
+ railInsetVerticalLeft: string;
5290
+ railColor: string;
5219
5291
  }, any>;
5220
5292
  Empty: import("../../_mixins").Theme<"Empty", {
5221
5293
  iconSizeSmall: string;
@@ -5762,8 +5834,16 @@ declare const _default: import("vue").DefineComponent<{
5762
5834
  loadingColor: string;
5763
5835
  }, {
5764
5836
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5837
+ height: string;
5838
+ width: string;
5839
+ borderRadius: string;
5765
5840
  color: string;
5766
5841
  colorHover: string;
5842
+ railInsetHorizontalBottom: string;
5843
+ railInsetHorizontalTop: string;
5844
+ railInsetVerticalRight: string;
5845
+ railInsetVerticalLeft: string;
5846
+ railColor: string;
5767
5847
  }, any>;
5768
5848
  Empty: import("../../_mixins").Theme<"Empty", {
5769
5849
  iconSizeSmall: string;
@@ -6184,8 +6264,16 @@ declare const _default: import("vue").DefineComponent<{
6184
6264
  loadingColor: string;
6185
6265
  }, {
6186
6266
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6267
+ height: string;
6268
+ width: string;
6269
+ borderRadius: string;
6187
6270
  color: string;
6188
6271
  colorHover: string;
6272
+ railInsetHorizontalBottom: string;
6273
+ railInsetHorizontalTop: string;
6274
+ railInsetVerticalRight: string;
6275
+ railInsetVerticalLeft: string;
6276
+ railColor: string;
6189
6277
  }, any>;
6190
6278
  Empty: import("../../_mixins").Theme<"Empty", {
6191
6279
  iconSizeSmall: string;
@@ -6841,8 +6929,16 @@ declare const _default: import("vue").DefineComponent<{
6841
6929
  loadingColor: string;
6842
6930
  }, {
6843
6931
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6932
+ height: string;
6933
+ width: string;
6934
+ borderRadius: string;
6844
6935
  color: string;
6845
6936
  colorHover: string;
6937
+ railInsetHorizontalBottom: string;
6938
+ railInsetHorizontalTop: string;
6939
+ railInsetVerticalRight: string;
6940
+ railInsetVerticalLeft: string;
6941
+ railColor: string;
6846
6942
  }, any>;
6847
6943
  Empty: import("../../_mixins").Theme<"Empty", {
6848
6944
  iconSizeSmall: string;
@@ -7498,8 +7594,16 @@ declare const _default: import("vue").DefineComponent<{
7498
7594
  loadingColor: string;
7499
7595
  }, {
7500
7596
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7597
+ height: string;
7598
+ width: string;
7599
+ borderRadius: string;
7501
7600
  color: string;
7502
7601
  colorHover: string;
7602
+ railInsetHorizontalBottom: string;
7603
+ railInsetHorizontalTop: string;
7604
+ railInsetVerticalRight: string;
7605
+ railInsetVerticalLeft: string;
7606
+ railColor: string;
7503
7607
  }, any>;
7504
7608
  Empty: import("../../_mixins").Theme<"Empty", {
7505
7609
  iconSizeSmall: string;