@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
@@ -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;
@@ -404,16 +412,24 @@ export declare const chatListItemsProps: {
404
412
  colorSecondary: string;
405
413
  colorSecondaryHover: string;
406
414
  colorSecondaryPressed: string;
415
+ colorSecondaryFocus: string;
416
+ colorSecondaryDisabled: string;
417
+ textColorSecondaryDisabled: string;
407
418
  waveColorSecondary: string;
408
419
  colorTertiary: string;
409
420
  colorTertiaryHover: string;
410
421
  colorTertiaryPressed: string;
422
+ colorTertiaryFocus: string;
411
423
  colorTertiaryDisalbed: string;
412
424
  waveColorTertiary: string;
413
425
  textColorTextTertiary: string;
426
+ rippleColorTertiary: string;
414
427
  colorQuaternary: string;
415
428
  colorQuaternaryHover: string;
416
429
  colorQuaternaryPressed: string;
430
+ colorQuaternaryFocus: string;
431
+ rippleColorQuaternary: string;
432
+ waveColorQuaternary: string;
417
433
  color: string;
418
434
  colorHover: string;
419
435
  colorPressed: string;
@@ -977,8 +993,16 @@ export declare const chatListItemsProps: {
977
993
  loadingColor: string;
978
994
  }, {
979
995
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
996
+ height: string;
997
+ width: string;
998
+ borderRadius: string;
980
999
  color: string;
981
1000
  colorHover: string;
1001
+ railInsetHorizontalBottom: string;
1002
+ railInsetHorizontalTop: string;
1003
+ railInsetVerticalRight: string;
1004
+ railInsetVerticalLeft: string;
1005
+ railColor: string;
982
1006
  }, any>;
983
1007
  Empty: import("../../_mixins").Theme<"Empty", {
984
1008
  iconSizeSmall: string;
@@ -1053,16 +1077,24 @@ export declare const chatListItemsProps: {
1053
1077
  colorSecondary: string;
1054
1078
  colorSecondaryHover: string;
1055
1079
  colorSecondaryPressed: string;
1080
+ colorSecondaryFocus: string;
1081
+ colorSecondaryDisabled: string;
1082
+ textColorSecondaryDisabled: string;
1056
1083
  waveColorSecondary: string;
1057
1084
  colorTertiary: string;
1058
1085
  colorTertiaryHover: string;
1059
1086
  colorTertiaryPressed: string;
1087
+ colorTertiaryFocus: string;
1060
1088
  colorTertiaryDisalbed: string;
1061
1089
  waveColorTertiary: string;
1062
1090
  textColorTextTertiary: string;
1091
+ rippleColorTertiary: string;
1063
1092
  colorQuaternary: string;
1064
1093
  colorQuaternaryHover: string;
1065
1094
  colorQuaternaryPressed: string;
1095
+ colorQuaternaryFocus: string;
1096
+ rippleColorQuaternary: string;
1097
+ waveColorQuaternary: string;
1066
1098
  color: string;
1067
1099
  colorHover: string;
1068
1100
  colorPressed: string;
@@ -1626,8 +1658,16 @@ export declare const chatListItemsProps: {
1626
1658
  loadingColor: string;
1627
1659
  }, {
1628
1660
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1661
+ height: string;
1662
+ width: string;
1663
+ borderRadius: string;
1629
1664
  color: string;
1630
1665
  colorHover: string;
1666
+ railInsetHorizontalBottom: string;
1667
+ railInsetHorizontalTop: string;
1668
+ railInsetVerticalRight: string;
1669
+ railInsetVerticalLeft: string;
1670
+ railColor: string;
1631
1671
  }, any>;
1632
1672
  Empty: import("../../_mixins").Theme<"Empty", {
1633
1673
  iconSizeSmall: string;
@@ -1702,16 +1742,24 @@ export declare const chatListItemsProps: {
1702
1742
  colorSecondary: string;
1703
1743
  colorSecondaryHover: string;
1704
1744
  colorSecondaryPressed: string;
1745
+ colorSecondaryFocus: string;
1746
+ colorSecondaryDisabled: string;
1747
+ textColorSecondaryDisabled: string;
1705
1748
  waveColorSecondary: string;
1706
1749
  colorTertiary: string;
1707
1750
  colorTertiaryHover: string;
1708
1751
  colorTertiaryPressed: string;
1752
+ colorTertiaryFocus: string;
1709
1753
  colorTertiaryDisalbed: string;
1710
1754
  waveColorTertiary: string;
1711
1755
  textColorTextTertiary: string;
1756
+ rippleColorTertiary: string;
1712
1757
  colorQuaternary: string;
1713
1758
  colorQuaternaryHover: string;
1714
1759
  colorQuaternaryPressed: string;
1760
+ colorQuaternaryFocus: string;
1761
+ rippleColorQuaternary: string;
1762
+ waveColorQuaternary: string;
1715
1763
  color: string;
1716
1764
  colorHover: string;
1717
1765
  colorPressed: string;
@@ -2322,8 +2370,16 @@ declare const _default: import("vue").DefineComponent<{
2322
2370
  loadingColor: string;
2323
2371
  }, {
2324
2372
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2373
+ height: string;
2374
+ width: string;
2375
+ borderRadius: string;
2325
2376
  color: string;
2326
2377
  colorHover: string;
2378
+ railInsetHorizontalBottom: string;
2379
+ railInsetHorizontalTop: string;
2380
+ railInsetVerticalRight: string;
2381
+ railInsetVerticalLeft: string;
2382
+ railColor: string;
2327
2383
  }, any>;
2328
2384
  Empty: import("../../_mixins").Theme<"Empty", {
2329
2385
  iconSizeSmall: string;
@@ -2398,16 +2454,24 @@ declare const _default: import("vue").DefineComponent<{
2398
2454
  colorSecondary: string;
2399
2455
  colorSecondaryHover: string;
2400
2456
  colorSecondaryPressed: string;
2457
+ colorSecondaryFocus: string;
2458
+ colorSecondaryDisabled: string;
2459
+ textColorSecondaryDisabled: string;
2401
2460
  waveColorSecondary: string;
2402
2461
  colorTertiary: string;
2403
2462
  colorTertiaryHover: string;
2404
2463
  colorTertiaryPressed: string;
2464
+ colorTertiaryFocus: string;
2405
2465
  colorTertiaryDisalbed: string;
2406
2466
  waveColorTertiary: string;
2407
2467
  textColorTextTertiary: string;
2468
+ rippleColorTertiary: string;
2408
2469
  colorQuaternary: string;
2409
2470
  colorQuaternaryHover: string;
2410
2471
  colorQuaternaryPressed: string;
2472
+ colorQuaternaryFocus: string;
2473
+ rippleColorQuaternary: string;
2474
+ waveColorQuaternary: string;
2411
2475
  color: string;
2412
2476
  colorHover: string;
2413
2477
  colorPressed: string;
@@ -2971,8 +3035,16 @@ declare const _default: import("vue").DefineComponent<{
2971
3035
  loadingColor: string;
2972
3036
  }, {
2973
3037
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3038
+ height: string;
3039
+ width: string;
3040
+ borderRadius: string;
2974
3041
  color: string;
2975
3042
  colorHover: string;
3043
+ railInsetHorizontalBottom: string;
3044
+ railInsetHorizontalTop: string;
3045
+ railInsetVerticalRight: string;
3046
+ railInsetVerticalLeft: string;
3047
+ railColor: string;
2976
3048
  }, any>;
2977
3049
  Empty: import("../../_mixins").Theme<"Empty", {
2978
3050
  iconSizeSmall: string;
@@ -3047,16 +3119,24 @@ declare const _default: import("vue").DefineComponent<{
3047
3119
  colorSecondary: string;
3048
3120
  colorSecondaryHover: string;
3049
3121
  colorSecondaryPressed: string;
3122
+ colorSecondaryFocus: string;
3123
+ colorSecondaryDisabled: string;
3124
+ textColorSecondaryDisabled: string;
3050
3125
  waveColorSecondary: string;
3051
3126
  colorTertiary: string;
3052
3127
  colorTertiaryHover: string;
3053
3128
  colorTertiaryPressed: string;
3129
+ colorTertiaryFocus: string;
3054
3130
  colorTertiaryDisalbed: string;
3055
3131
  waveColorTertiary: string;
3056
3132
  textColorTextTertiary: string;
3133
+ rippleColorTertiary: string;
3057
3134
  colorQuaternary: string;
3058
3135
  colorQuaternaryHover: string;
3059
3136
  colorQuaternaryPressed: string;
3137
+ colorQuaternaryFocus: string;
3138
+ rippleColorQuaternary: string;
3139
+ waveColorQuaternary: string;
3060
3140
  color: string;
3061
3141
  colorHover: string;
3062
3142
  colorPressed: string;
@@ -3620,8 +3700,16 @@ declare const _default: import("vue").DefineComponent<{
3620
3700
  loadingColor: string;
3621
3701
  }, {
3622
3702
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3703
+ height: string;
3704
+ width: string;
3705
+ borderRadius: string;
3623
3706
  color: string;
3624
3707
  colorHover: string;
3708
+ railInsetHorizontalBottom: string;
3709
+ railInsetHorizontalTop: string;
3710
+ railInsetVerticalRight: string;
3711
+ railInsetVerticalLeft: string;
3712
+ railColor: string;
3625
3713
  }, any>;
3626
3714
  Empty: import("../../_mixins").Theme<"Empty", {
3627
3715
  iconSizeSmall: string;
@@ -3696,16 +3784,24 @@ declare const _default: import("vue").DefineComponent<{
3696
3784
  colorSecondary: string;
3697
3785
  colorSecondaryHover: string;
3698
3786
  colorSecondaryPressed: string;
3787
+ colorSecondaryFocus: string;
3788
+ colorSecondaryDisabled: string;
3789
+ textColorSecondaryDisabled: string;
3699
3790
  waveColorSecondary: string;
3700
3791
  colorTertiary: string;
3701
3792
  colorTertiaryHover: string;
3702
3793
  colorTertiaryPressed: string;
3794
+ colorTertiaryFocus: string;
3703
3795
  colorTertiaryDisalbed: string;
3704
3796
  waveColorTertiary: string;
3705
3797
  textColorTextTertiary: string;
3798
+ rippleColorTertiary: string;
3706
3799
  colorQuaternary: string;
3707
3800
  colorQuaternaryHover: string;
3708
3801
  colorQuaternaryPressed: string;
3802
+ colorQuaternaryFocus: string;
3803
+ rippleColorQuaternary: string;
3804
+ waveColorQuaternary: string;
3709
3805
  color: string;
3710
3806
  colorHover: string;
3711
3807
  colorPressed: string;
@@ -4274,8 +4370,16 @@ declare const _default: import("vue").DefineComponent<{
4274
4370
  loadingColor: string;
4275
4371
  }, {
4276
4372
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4373
+ height: string;
4374
+ width: string;
4375
+ borderRadius: string;
4277
4376
  color: string;
4278
4377
  colorHover: string;
4378
+ railInsetHorizontalBottom: string;
4379
+ railInsetHorizontalTop: string;
4380
+ railInsetVerticalRight: string;
4381
+ railInsetVerticalLeft: string;
4382
+ railColor: string;
4279
4383
  }, any>;
4280
4384
  Empty: import("../../_mixins").Theme<"Empty", {
4281
4385
  iconSizeSmall: string;
@@ -4350,16 +4454,24 @@ declare const _default: import("vue").DefineComponent<{
4350
4454
  colorSecondary: string;
4351
4455
  colorSecondaryHover: string;
4352
4456
  colorSecondaryPressed: string;
4457
+ colorSecondaryFocus: string;
4458
+ colorSecondaryDisabled: string;
4459
+ textColorSecondaryDisabled: string;
4353
4460
  waveColorSecondary: string;
4354
4461
  colorTertiary: string;
4355
4462
  colorTertiaryHover: string;
4356
4463
  colorTertiaryPressed: string;
4464
+ colorTertiaryFocus: string;
4357
4465
  colorTertiaryDisalbed: string;
4358
4466
  waveColorTertiary: string;
4359
4467
  textColorTextTertiary: string;
4468
+ rippleColorTertiary: string;
4360
4469
  colorQuaternary: string;
4361
4470
  colorQuaternaryHover: string;
4362
4471
  colorQuaternaryPressed: string;
4472
+ colorQuaternaryFocus: string;
4473
+ rippleColorQuaternary: string;
4474
+ waveColorQuaternary: string;
4363
4475
  color: string;
4364
4476
  colorHover: string;
4365
4477
  colorPressed: string;
@@ -4814,8 +4926,16 @@ declare const _default: import("vue").DefineComponent<{
4814
4926
  loadingColor: string;
4815
4927
  }, {
4816
4928
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4929
+ height: string;
4930
+ width: string;
4931
+ borderRadius: string;
4817
4932
  color: string;
4818
4933
  colorHover: string;
4934
+ railInsetHorizontalBottom: string;
4935
+ railInsetHorizontalTop: string;
4936
+ railInsetVerticalRight: string;
4937
+ railInsetVerticalLeft: string;
4938
+ railColor: string;
4819
4939
  }, any>;
4820
4940
  Empty: import("../../_mixins").Theme<"Empty", {
4821
4941
  iconSizeSmall: string;
@@ -5152,8 +5272,16 @@ declare const _default: import("vue").DefineComponent<{
5152
5272
  loadingColor: string;
5153
5273
  }, {
5154
5274
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5275
+ height: string;
5276
+ width: string;
5277
+ borderRadius: string;
5155
5278
  color: string;
5156
5279
  colorHover: string;
5280
+ railInsetHorizontalBottom: string;
5281
+ railInsetHorizontalTop: string;
5282
+ railInsetVerticalRight: string;
5283
+ railInsetVerticalLeft: string;
5284
+ railColor: string;
5157
5285
  }, any>;
5158
5286
  Empty: import("../../_mixins").Theme<"Empty", {
5159
5287
  iconSizeSmall: string;
@@ -5228,16 +5356,24 @@ declare const _default: import("vue").DefineComponent<{
5228
5356
  colorSecondary: string;
5229
5357
  colorSecondaryHover: string;
5230
5358
  colorSecondaryPressed: string;
5359
+ colorSecondaryFocus: string;
5360
+ colorSecondaryDisabled: string;
5361
+ textColorSecondaryDisabled: string;
5231
5362
  waveColorSecondary: string;
5232
5363
  colorTertiary: string;
5233
5364
  colorTertiaryHover: string;
5234
5365
  colorTertiaryPressed: string;
5366
+ colorTertiaryFocus: string;
5235
5367
  colorTertiaryDisalbed: string;
5236
5368
  waveColorTertiary: string;
5237
5369
  textColorTextTertiary: string;
5370
+ rippleColorTertiary: string;
5238
5371
  colorQuaternary: string;
5239
5372
  colorQuaternaryHover: string;
5240
5373
  colorQuaternaryPressed: string;
5374
+ colorQuaternaryFocus: string;
5375
+ rippleColorQuaternary: string;
5376
+ waveColorQuaternary: string;
5241
5377
  color: string;
5242
5378
  colorHover: string;
5243
5379
  colorPressed: string;
@@ -5692,8 +5828,16 @@ declare const _default: import("vue").DefineComponent<{
5692
5828
  loadingColor: string;
5693
5829
  }, {
5694
5830
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5831
+ height: string;
5832
+ width: string;
5833
+ borderRadius: string;
5695
5834
  color: string;
5696
5835
  colorHover: string;
5836
+ railInsetHorizontalBottom: string;
5837
+ railInsetHorizontalTop: string;
5838
+ railInsetVerticalRight: string;
5839
+ railInsetVerticalLeft: string;
5840
+ railColor: string;
5697
5841
  }, any>;
5698
5842
  Empty: import("../../_mixins").Theme<"Empty", {
5699
5843
  iconSizeSmall: string;
@@ -6098,8 +6242,16 @@ declare const _default: import("vue").DefineComponent<{
6098
6242
  loadingColor: string;
6099
6243
  }, {
6100
6244
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6245
+ height: string;
6246
+ width: string;
6247
+ borderRadius: string;
6101
6248
  color: string;
6102
6249
  colorHover: string;
6250
+ railInsetHorizontalBottom: string;
6251
+ railInsetHorizontalTop: string;
6252
+ railInsetVerticalRight: string;
6253
+ railInsetVerticalLeft: string;
6254
+ railColor: string;
6103
6255
  }, any>;
6104
6256
  Empty: import("../../_mixins").Theme<"Empty", {
6105
6257
  iconSizeSmall: string;
@@ -6174,16 +6326,24 @@ declare const _default: import("vue").DefineComponent<{
6174
6326
  colorSecondary: string;
6175
6327
  colorSecondaryHover: string;
6176
6328
  colorSecondaryPressed: string;
6329
+ colorSecondaryFocus: string;
6330
+ colorSecondaryDisabled: string;
6331
+ textColorSecondaryDisabled: string;
6177
6332
  waveColorSecondary: string;
6178
6333
  colorTertiary: string;
6179
6334
  colorTertiaryHover: string;
6180
6335
  colorTertiaryPressed: string;
6336
+ colorTertiaryFocus: string;
6181
6337
  colorTertiaryDisalbed: string;
6182
6338
  waveColorTertiary: string;
6183
6339
  textColorTextTertiary: string;
6340
+ rippleColorTertiary: string;
6184
6341
  colorQuaternary: string;
6185
6342
  colorQuaternaryHover: string;
6186
6343
  colorQuaternaryPressed: string;
6344
+ colorQuaternaryFocus: string;
6345
+ rippleColorQuaternary: string;
6346
+ waveColorQuaternary: string;
6187
6347
  color: string;
6188
6348
  colorHover: string;
6189
6349
  colorPressed: string;
@@ -6747,8 +6907,16 @@ declare const _default: import("vue").DefineComponent<{
6747
6907
  loadingColor: string;
6748
6908
  }, {
6749
6909
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6910
+ height: string;
6911
+ width: string;
6912
+ borderRadius: string;
6750
6913
  color: string;
6751
6914
  colorHover: string;
6915
+ railInsetHorizontalBottom: string;
6916
+ railInsetHorizontalTop: string;
6917
+ railInsetVerticalRight: string;
6918
+ railInsetVerticalLeft: string;
6919
+ railColor: string;
6752
6920
  }, any>;
6753
6921
  Empty: import("../../_mixins").Theme<"Empty", {
6754
6922
  iconSizeSmall: string;
@@ -6823,16 +6991,24 @@ declare const _default: import("vue").DefineComponent<{
6823
6991
  colorSecondary: string;
6824
6992
  colorSecondaryHover: string;
6825
6993
  colorSecondaryPressed: string;
6994
+ colorSecondaryFocus: string;
6995
+ colorSecondaryDisabled: string;
6996
+ textColorSecondaryDisabled: string;
6826
6997
  waveColorSecondary: string;
6827
6998
  colorTertiary: string;
6828
6999
  colorTertiaryHover: string;
6829
7000
  colorTertiaryPressed: string;
7001
+ colorTertiaryFocus: string;
6830
7002
  colorTertiaryDisalbed: string;
6831
7003
  waveColorTertiary: string;
6832
7004
  textColorTextTertiary: string;
7005
+ rippleColorTertiary: string;
6833
7006
  colorQuaternary: string;
6834
7007
  colorQuaternaryHover: string;
6835
7008
  colorQuaternaryPressed: string;
7009
+ colorQuaternaryFocus: string;
7010
+ rippleColorQuaternary: string;
7011
+ waveColorQuaternary: string;
6836
7012
  color: string;
6837
7013
  colorHover: string;
6838
7014
  colorPressed: string;
@@ -7396,8 +7572,16 @@ declare const _default: import("vue").DefineComponent<{
7396
7572
  loadingColor: string;
7397
7573
  }, {
7398
7574
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7575
+ height: string;
7576
+ width: string;
7577
+ borderRadius: string;
7399
7578
  color: string;
7400
7579
  colorHover: string;
7580
+ railInsetHorizontalBottom: string;
7581
+ railInsetHorizontalTop: string;
7582
+ railInsetVerticalRight: string;
7583
+ railInsetVerticalLeft: string;
7584
+ railColor: string;
7401
7585
  }, any>;
7402
7586
  Empty: import("../../_mixins").Theme<"Empty", {
7403
7587
  iconSizeSmall: string;
@@ -7472,16 +7656,24 @@ declare const _default: import("vue").DefineComponent<{
7472
7656
  colorSecondary: string;
7473
7657
  colorSecondaryHover: string;
7474
7658
  colorSecondaryPressed: string;
7659
+ colorSecondaryFocus: string;
7660
+ colorSecondaryDisabled: string;
7661
+ textColorSecondaryDisabled: string;
7475
7662
  waveColorSecondary: string;
7476
7663
  colorTertiary: string;
7477
7664
  colorTertiaryHover: string;
7478
7665
  colorTertiaryPressed: string;
7666
+ colorTertiaryFocus: string;
7479
7667
  colorTertiaryDisalbed: string;
7480
7668
  waveColorTertiary: string;
7481
7669
  textColorTextTertiary: string;
7670
+ rippleColorTertiary: string;
7482
7671
  colorQuaternary: string;
7483
7672
  colorQuaternaryHover: string;
7484
7673
  colorQuaternaryPressed: string;
7674
+ colorQuaternaryFocus: string;
7675
+ rippleColorQuaternary: string;
7676
+ waveColorQuaternary: string;
7485
7677
  color: string;
7486
7678
  colorHover: string;
7487
7679
  colorPressed: string;
@@ -9,6 +9,7 @@ import style from './styles/index.cssr';
9
9
  import { chatLight } from '../styles';
10
10
  import { useConfig, useTheme, useThemeClass, useLocale } from '../../_mixins';
11
11
  import { CheckmarkDoneSharp, MdTime, PersonOutline, Refresh } from '../../_internal/icons';
12
+ import { UFlex } from '../../flex';
12
13
  const statusIconMapper = {
13
14
  [MessageStatus.READ]: CheckmarkDoneSharp,
14
15
  [MessageStatus.PENDING]: MdTime,
@@ -171,7 +172,9 @@ export default defineComponent({
171
172
  default: () => { var _a; return (_a = this.chatItems) === null || _a === void 0 ? void 0 : _a.map((item) => renderChatItem(item)); }
172
173
  }));
173
174
  }
174
- return (h(UEmpty, Object.assign({}, this.emptyProps, { theme: this.mergedTheme.peers.Empty, themeOverrides: this.mergedTheme.peerOverrides.Empty })));
175
+ return (h(UFlex, { justify: "center", align: "center", vertical: true }, {
176
+ default: () => (h(UEmpty, Object.assign({}, this.emptyProps, { theme: this.mergedTheme.peers.Empty, themeOverrides: this.mergedTheme.peerOverrides.Empty })))
177
+ }));
175
178
  })();
176
179
  return (h("div", { class: [`${mergedClsPrefixRef}-chat`, this.themeClass], style: this.cssVars },
177
180
  h("div", { class: `${mergedClsPrefixRef}-chat-sidebar`, style: {