@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
@@ -135,9 +135,9 @@ export declare const chatProps: {
135
135
  type: PropType<ChatPropsType["messagesLoadingCount"]>;
136
136
  default: number;
137
137
  };
138
- maxHeight: {
138
+ height: {
139
139
  type: PropType<string | number>;
140
- default: undefined;
140
+ default: number;
141
141
  };
142
142
  onChatSelect: {
143
143
  type: PropType<ChatPropsType["onChatSelect"]>;
@@ -462,8 +462,16 @@ export declare const chatProps: {
462
462
  loadingColor: string;
463
463
  }, {
464
464
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
465
+ height: string;
466
+ width: string;
467
+ borderRadius: string;
465
468
  color: string;
466
469
  colorHover: string;
470
+ railInsetHorizontalBottom: string;
471
+ railInsetHorizontalTop: string;
472
+ railInsetVerticalRight: string;
473
+ railInsetVerticalLeft: string;
474
+ railColor: string;
467
475
  }, any>;
468
476
  Empty: import("../../_mixins").Theme<"Empty", {
469
477
  iconSizeSmall: string;
@@ -538,16 +546,24 @@ export declare const chatProps: {
538
546
  colorSecondary: string;
539
547
  colorSecondaryHover: string;
540
548
  colorSecondaryPressed: string;
549
+ colorSecondaryFocus: string;
550
+ colorSecondaryDisabled: string;
551
+ textColorSecondaryDisabled: string;
541
552
  waveColorSecondary: string;
542
553
  colorTertiary: string;
543
554
  colorTertiaryHover: string;
544
555
  colorTertiaryPressed: string;
556
+ colorTertiaryFocus: string;
545
557
  colorTertiaryDisalbed: string;
546
558
  waveColorTertiary: string;
547
559
  textColorTextTertiary: string;
560
+ rippleColorTertiary: string;
548
561
  colorQuaternary: string;
549
562
  colorQuaternaryHover: string;
550
563
  colorQuaternaryPressed: string;
564
+ colorQuaternaryFocus: string;
565
+ rippleColorQuaternary: string;
566
+ waveColorQuaternary: string;
551
567
  color: string;
552
568
  colorHover: string;
553
569
  colorPressed: string;
@@ -1111,8 +1127,16 @@ export declare const chatProps: {
1111
1127
  loadingColor: string;
1112
1128
  }, {
1113
1129
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1130
+ height: string;
1131
+ width: string;
1132
+ borderRadius: string;
1114
1133
  color: string;
1115
1134
  colorHover: string;
1135
+ railInsetHorizontalBottom: string;
1136
+ railInsetHorizontalTop: string;
1137
+ railInsetVerticalRight: string;
1138
+ railInsetVerticalLeft: string;
1139
+ railColor: string;
1116
1140
  }, any>;
1117
1141
  Empty: import("../../_mixins").Theme<"Empty", {
1118
1142
  iconSizeSmall: string;
@@ -1187,16 +1211,24 @@ export declare const chatProps: {
1187
1211
  colorSecondary: string;
1188
1212
  colorSecondaryHover: string;
1189
1213
  colorSecondaryPressed: string;
1214
+ colorSecondaryFocus: string;
1215
+ colorSecondaryDisabled: string;
1216
+ textColorSecondaryDisabled: string;
1190
1217
  waveColorSecondary: string;
1191
1218
  colorTertiary: string;
1192
1219
  colorTertiaryHover: string;
1193
1220
  colorTertiaryPressed: string;
1221
+ colorTertiaryFocus: string;
1194
1222
  colorTertiaryDisalbed: string;
1195
1223
  waveColorTertiary: string;
1196
1224
  textColorTextTertiary: string;
1225
+ rippleColorTertiary: string;
1197
1226
  colorQuaternary: string;
1198
1227
  colorQuaternaryHover: string;
1199
1228
  colorQuaternaryPressed: string;
1229
+ colorQuaternaryFocus: string;
1230
+ rippleColorQuaternary: string;
1231
+ waveColorQuaternary: string;
1200
1232
  color: string;
1201
1233
  colorHover: string;
1202
1234
  colorPressed: string;
@@ -1760,8 +1792,16 @@ export declare const chatProps: {
1760
1792
  loadingColor: string;
1761
1793
  }, {
1762
1794
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1795
+ height: string;
1796
+ width: string;
1797
+ borderRadius: string;
1763
1798
  color: string;
1764
1799
  colorHover: string;
1800
+ railInsetHorizontalBottom: string;
1801
+ railInsetHorizontalTop: string;
1802
+ railInsetVerticalRight: string;
1803
+ railInsetVerticalLeft: string;
1804
+ railColor: string;
1765
1805
  }, any>;
1766
1806
  Empty: import("../../_mixins").Theme<"Empty", {
1767
1807
  iconSizeSmall: string;
@@ -1836,16 +1876,24 @@ export declare const chatProps: {
1836
1876
  colorSecondary: string;
1837
1877
  colorSecondaryHover: string;
1838
1878
  colorSecondaryPressed: string;
1879
+ colorSecondaryFocus: string;
1880
+ colorSecondaryDisabled: string;
1881
+ textColorSecondaryDisabled: string;
1839
1882
  waveColorSecondary: string;
1840
1883
  colorTertiary: string;
1841
1884
  colorTertiaryHover: string;
1842
1885
  colorTertiaryPressed: string;
1886
+ colorTertiaryFocus: string;
1843
1887
  colorTertiaryDisalbed: string;
1844
1888
  waveColorTertiary: string;
1845
1889
  textColorTextTertiary: string;
1890
+ rippleColorTertiary: string;
1846
1891
  colorQuaternary: string;
1847
1892
  colorQuaternaryHover: string;
1848
1893
  colorQuaternaryPressed: string;
1894
+ colorQuaternaryFocus: string;
1895
+ rippleColorQuaternary: string;
1896
+ waveColorQuaternary: string;
1849
1897
  color: string;
1850
1898
  colorHover: string;
1851
1899
  colorPressed: string;
@@ -2265,9 +2313,9 @@ declare const _default: import("vue").DefineComponent<{
2265
2313
  type: PropType<ChatPropsType["messagesLoadingCount"]>;
2266
2314
  default: number;
2267
2315
  };
2268
- maxHeight: {
2316
+ height: {
2269
2317
  type: PropType<string | number>;
2270
- default: undefined;
2318
+ default: number;
2271
2319
  };
2272
2320
  onChatSelect: {
2273
2321
  type: PropType<ChatPropsType["onChatSelect"]>;
@@ -2592,8 +2640,16 @@ declare const _default: import("vue").DefineComponent<{
2592
2640
  loadingColor: string;
2593
2641
  }, {
2594
2642
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2643
+ height: string;
2644
+ width: string;
2645
+ borderRadius: string;
2595
2646
  color: string;
2596
2647
  colorHover: string;
2648
+ railInsetHorizontalBottom: string;
2649
+ railInsetHorizontalTop: string;
2650
+ railInsetVerticalRight: string;
2651
+ railInsetVerticalLeft: string;
2652
+ railColor: string;
2597
2653
  }, any>;
2598
2654
  Empty: import("../../_mixins").Theme<"Empty", {
2599
2655
  iconSizeSmall: string;
@@ -2668,16 +2724,24 @@ declare const _default: import("vue").DefineComponent<{
2668
2724
  colorSecondary: string;
2669
2725
  colorSecondaryHover: string;
2670
2726
  colorSecondaryPressed: string;
2727
+ colorSecondaryFocus: string;
2728
+ colorSecondaryDisabled: string;
2729
+ textColorSecondaryDisabled: string;
2671
2730
  waveColorSecondary: string;
2672
2731
  colorTertiary: string;
2673
2732
  colorTertiaryHover: string;
2674
2733
  colorTertiaryPressed: string;
2734
+ colorTertiaryFocus: string;
2675
2735
  colorTertiaryDisalbed: string;
2676
2736
  waveColorTertiary: string;
2677
2737
  textColorTextTertiary: string;
2738
+ rippleColorTertiary: string;
2678
2739
  colorQuaternary: string;
2679
2740
  colorQuaternaryHover: string;
2680
2741
  colorQuaternaryPressed: string;
2742
+ colorQuaternaryFocus: string;
2743
+ rippleColorQuaternary: string;
2744
+ waveColorQuaternary: string;
2681
2745
  color: string;
2682
2746
  colorHover: string;
2683
2747
  colorPressed: string;
@@ -3241,8 +3305,16 @@ declare const _default: import("vue").DefineComponent<{
3241
3305
  loadingColor: string;
3242
3306
  }, {
3243
3307
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3308
+ height: string;
3309
+ width: string;
3310
+ borderRadius: string;
3244
3311
  color: string;
3245
3312
  colorHover: string;
3313
+ railInsetHorizontalBottom: string;
3314
+ railInsetHorizontalTop: string;
3315
+ railInsetVerticalRight: string;
3316
+ railInsetVerticalLeft: string;
3317
+ railColor: string;
3246
3318
  }, any>;
3247
3319
  Empty: import("../../_mixins").Theme<"Empty", {
3248
3320
  iconSizeSmall: string;
@@ -3317,16 +3389,24 @@ declare const _default: import("vue").DefineComponent<{
3317
3389
  colorSecondary: string;
3318
3390
  colorSecondaryHover: string;
3319
3391
  colorSecondaryPressed: string;
3392
+ colorSecondaryFocus: string;
3393
+ colorSecondaryDisabled: string;
3394
+ textColorSecondaryDisabled: string;
3320
3395
  waveColorSecondary: string;
3321
3396
  colorTertiary: string;
3322
3397
  colorTertiaryHover: string;
3323
3398
  colorTertiaryPressed: string;
3399
+ colorTertiaryFocus: string;
3324
3400
  colorTertiaryDisalbed: string;
3325
3401
  waveColorTertiary: string;
3326
3402
  textColorTextTertiary: string;
3403
+ rippleColorTertiary: string;
3327
3404
  colorQuaternary: string;
3328
3405
  colorQuaternaryHover: string;
3329
3406
  colorQuaternaryPressed: string;
3407
+ colorQuaternaryFocus: string;
3408
+ rippleColorQuaternary: string;
3409
+ waveColorQuaternary: string;
3330
3410
  color: string;
3331
3411
  colorHover: string;
3332
3412
  colorPressed: string;
@@ -3890,8 +3970,16 @@ declare const _default: import("vue").DefineComponent<{
3890
3970
  loadingColor: string;
3891
3971
  }, {
3892
3972
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3973
+ height: string;
3974
+ width: string;
3975
+ borderRadius: string;
3893
3976
  color: string;
3894
3977
  colorHover: string;
3978
+ railInsetHorizontalBottom: string;
3979
+ railInsetHorizontalTop: string;
3980
+ railInsetVerticalRight: string;
3981
+ railInsetVerticalLeft: string;
3982
+ railColor: string;
3895
3983
  }, any>;
3896
3984
  Empty: import("../../_mixins").Theme<"Empty", {
3897
3985
  iconSizeSmall: string;
@@ -3966,16 +4054,24 @@ declare const _default: import("vue").DefineComponent<{
3966
4054
  colorSecondary: string;
3967
4055
  colorSecondaryHover: string;
3968
4056
  colorSecondaryPressed: string;
4057
+ colorSecondaryFocus: string;
4058
+ colorSecondaryDisabled: string;
4059
+ textColorSecondaryDisabled: string;
3969
4060
  waveColorSecondary: string;
3970
4061
  colorTertiary: string;
3971
4062
  colorTertiaryHover: string;
3972
4063
  colorTertiaryPressed: string;
4064
+ colorTertiaryFocus: string;
3973
4065
  colorTertiaryDisalbed: string;
3974
4066
  waveColorTertiary: string;
3975
4067
  textColorTextTertiary: string;
4068
+ rippleColorTertiary: string;
3976
4069
  colorQuaternary: string;
3977
4070
  colorQuaternaryHover: string;
3978
4071
  colorQuaternaryPressed: string;
4072
+ colorQuaternaryFocus: string;
4073
+ rippleColorQuaternary: string;
4074
+ waveColorQuaternary: string;
3979
4075
  color: string;
3980
4076
  colorHover: string;
3981
4077
  colorPressed: string;
@@ -4544,8 +4640,16 @@ declare const _default: import("vue").DefineComponent<{
4544
4640
  loadingColor: string;
4545
4641
  }, {
4546
4642
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4643
+ height: string;
4644
+ width: string;
4645
+ borderRadius: string;
4547
4646
  color: string;
4548
4647
  colorHover: string;
4648
+ railInsetHorizontalBottom: string;
4649
+ railInsetHorizontalTop: string;
4650
+ railInsetVerticalRight: string;
4651
+ railInsetVerticalLeft: string;
4652
+ railColor: string;
4549
4653
  }, any>;
4550
4654
  Empty: import("../../_mixins").Theme<"Empty", {
4551
4655
  iconSizeSmall: string;
@@ -4620,16 +4724,24 @@ declare const _default: import("vue").DefineComponent<{
4620
4724
  colorSecondary: string;
4621
4725
  colorSecondaryHover: string;
4622
4726
  colorSecondaryPressed: string;
4727
+ colorSecondaryFocus: string;
4728
+ colorSecondaryDisabled: string;
4729
+ textColorSecondaryDisabled: string;
4623
4730
  waveColorSecondary: string;
4624
4731
  colorTertiary: string;
4625
4732
  colorTertiaryHover: string;
4626
4733
  colorTertiaryPressed: string;
4734
+ colorTertiaryFocus: string;
4627
4735
  colorTertiaryDisalbed: string;
4628
4736
  waveColorTertiary: string;
4629
4737
  textColorTextTertiary: string;
4738
+ rippleColorTertiary: string;
4630
4739
  colorQuaternary: string;
4631
4740
  colorQuaternaryHover: string;
4632
4741
  colorQuaternaryPressed: string;
4742
+ colorQuaternaryFocus: string;
4743
+ rippleColorQuaternary: string;
4744
+ waveColorQuaternary: string;
4633
4745
  color: string;
4634
4746
  colorHover: string;
4635
4747
  colorPressed: string;
@@ -5084,8 +5196,16 @@ declare const _default: import("vue").DefineComponent<{
5084
5196
  loadingColor: string;
5085
5197
  }, {
5086
5198
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5199
+ height: string;
5200
+ width: string;
5201
+ borderRadius: string;
5087
5202
  color: string;
5088
5203
  colorHover: string;
5204
+ railInsetHorizontalBottom: string;
5205
+ railInsetHorizontalTop: string;
5206
+ railInsetVerticalRight: string;
5207
+ railInsetVerticalLeft: string;
5208
+ railColor: string;
5089
5209
  }, any>;
5090
5210
  Empty: import("../../_mixins").Theme<"Empty", {
5091
5211
  iconSizeSmall: string;
@@ -5313,9 +5433,9 @@ declare const _default: import("vue").DefineComponent<{
5313
5433
  type: PropType<ChatPropsType["messagesLoadingCount"]>;
5314
5434
  default: number;
5315
5435
  };
5316
- maxHeight: {
5436
+ height: {
5317
5437
  type: PropType<string | number>;
5318
- default: undefined;
5438
+ default: number;
5319
5439
  };
5320
5440
  onChatSelect: {
5321
5441
  type: PropType<ChatPropsType["onChatSelect"]>;
@@ -5640,8 +5760,16 @@ declare const _default: import("vue").DefineComponent<{
5640
5760
  loadingColor: string;
5641
5761
  }, {
5642
5762
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5763
+ height: string;
5764
+ width: string;
5765
+ borderRadius: string;
5643
5766
  color: string;
5644
5767
  colorHover: string;
5768
+ railInsetHorizontalBottom: string;
5769
+ railInsetHorizontalTop: string;
5770
+ railInsetVerticalRight: string;
5771
+ railInsetVerticalLeft: string;
5772
+ railColor: string;
5645
5773
  }, any>;
5646
5774
  Empty: import("../../_mixins").Theme<"Empty", {
5647
5775
  iconSizeSmall: string;
@@ -5716,16 +5844,24 @@ declare const _default: import("vue").DefineComponent<{
5716
5844
  colorSecondary: string;
5717
5845
  colorSecondaryHover: string;
5718
5846
  colorSecondaryPressed: string;
5847
+ colorSecondaryFocus: string;
5848
+ colorSecondaryDisabled: string;
5849
+ textColorSecondaryDisabled: string;
5719
5850
  waveColorSecondary: string;
5720
5851
  colorTertiary: string;
5721
5852
  colorTertiaryHover: string;
5722
5853
  colorTertiaryPressed: string;
5854
+ colorTertiaryFocus: string;
5723
5855
  colorTertiaryDisalbed: string;
5724
5856
  waveColorTertiary: string;
5725
5857
  textColorTextTertiary: string;
5858
+ rippleColorTertiary: string;
5726
5859
  colorQuaternary: string;
5727
5860
  colorQuaternaryHover: string;
5728
5861
  colorQuaternaryPressed: string;
5862
+ colorQuaternaryFocus: string;
5863
+ rippleColorQuaternary: string;
5864
+ waveColorQuaternary: string;
5729
5865
  color: string;
5730
5866
  colorHover: string;
5731
5867
  colorPressed: string;
@@ -6289,8 +6425,16 @@ declare const _default: import("vue").DefineComponent<{
6289
6425
  loadingColor: string;
6290
6426
  }, {
6291
6427
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6428
+ height: string;
6429
+ width: string;
6430
+ borderRadius: string;
6292
6431
  color: string;
6293
6432
  colorHover: string;
6433
+ railInsetHorizontalBottom: string;
6434
+ railInsetHorizontalTop: string;
6435
+ railInsetVerticalRight: string;
6436
+ railInsetVerticalLeft: string;
6437
+ railColor: string;
6294
6438
  }, any>;
6295
6439
  Empty: import("../../_mixins").Theme<"Empty", {
6296
6440
  iconSizeSmall: string;
@@ -6365,16 +6509,24 @@ declare const _default: import("vue").DefineComponent<{
6365
6509
  colorSecondary: string;
6366
6510
  colorSecondaryHover: string;
6367
6511
  colorSecondaryPressed: string;
6512
+ colorSecondaryFocus: string;
6513
+ colorSecondaryDisabled: string;
6514
+ textColorSecondaryDisabled: string;
6368
6515
  waveColorSecondary: string;
6369
6516
  colorTertiary: string;
6370
6517
  colorTertiaryHover: string;
6371
6518
  colorTertiaryPressed: string;
6519
+ colorTertiaryFocus: string;
6372
6520
  colorTertiaryDisalbed: string;
6373
6521
  waveColorTertiary: string;
6374
6522
  textColorTextTertiary: string;
6523
+ rippleColorTertiary: string;
6375
6524
  colorQuaternary: string;
6376
6525
  colorQuaternaryHover: string;
6377
6526
  colorQuaternaryPressed: string;
6527
+ colorQuaternaryFocus: string;
6528
+ rippleColorQuaternary: string;
6529
+ waveColorQuaternary: string;
6378
6530
  color: string;
6379
6531
  colorHover: string;
6380
6532
  colorPressed: string;
@@ -6938,8 +7090,16 @@ declare const _default: import("vue").DefineComponent<{
6938
7090
  loadingColor: string;
6939
7091
  }, {
6940
7092
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7093
+ height: string;
7094
+ width: string;
7095
+ borderRadius: string;
6941
7096
  color: string;
6942
7097
  colorHover: string;
7098
+ railInsetHorizontalBottom: string;
7099
+ railInsetHorizontalTop: string;
7100
+ railInsetVerticalRight: string;
7101
+ railInsetVerticalLeft: string;
7102
+ railColor: string;
6943
7103
  }, any>;
6944
7104
  Empty: import("../../_mixins").Theme<"Empty", {
6945
7105
  iconSizeSmall: string;
@@ -7014,16 +7174,24 @@ declare const _default: import("vue").DefineComponent<{
7014
7174
  colorSecondary: string;
7015
7175
  colorSecondaryHover: string;
7016
7176
  colorSecondaryPressed: string;
7177
+ colorSecondaryFocus: string;
7178
+ colorSecondaryDisabled: string;
7179
+ textColorSecondaryDisabled: string;
7017
7180
  waveColorSecondary: string;
7018
7181
  colorTertiary: string;
7019
7182
  colorTertiaryHover: string;
7020
7183
  colorTertiaryPressed: string;
7184
+ colorTertiaryFocus: string;
7021
7185
  colorTertiaryDisalbed: string;
7022
7186
  waveColorTertiary: string;
7023
7187
  textColorTextTertiary: string;
7188
+ rippleColorTertiary: string;
7024
7189
  colorQuaternary: string;
7025
7190
  colorQuaternaryHover: string;
7026
7191
  colorQuaternaryPressed: string;
7192
+ colorQuaternaryFocus: string;
7193
+ rippleColorQuaternary: string;
7194
+ waveColorQuaternary: string;
7027
7195
  color: string;
7028
7196
  colorHover: string;
7029
7197
  colorPressed: string;
@@ -7325,7 +7493,7 @@ declare const _default: import("vue").DefineComponent<{
7325
7493
  retryText: string | undefined;
7326
7494
  closeButtonText: string | undefined;
7327
7495
  unreadNotificationText: string | undefined;
7328
- maxHeight: string | number;
7496
+ height: string | number;
7329
7497
  emptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
7330
7498
  chatItems: ChatListItemData[] | undefined;
7331
7499
  selectedChatId: import("./interface").ChatId | undefined;
@@ -112,9 +112,9 @@ exports.chatProps = Object.assign(Object.assign({}, _mixins_1.useTheme.props), {
112
112
  }, messagesLoadingCount: {
113
113
  type: Number,
114
114
  default: 10
115
- }, maxHeight: {
115
+ }, height: {
116
116
  type: [String, Number],
117
- default: undefined
117
+ default: 800
118
118
  }, onChatSelect: {
119
119
  type: Function,
120
120
  default: undefined
@@ -382,14 +382,12 @@ exports.default = (0, vue_1.defineComponent)({
382
382
  var _a;
383
383
  const { $slots } = this;
384
384
  (_a = this.onRender) === null || _a === void 0 ? void 0 : _a.call(this);
385
- const maxHeightStyle = this.maxHeight
385
+ const heightStyle = this.height
386
386
  ? {
387
- maxHeight: typeof this.maxHeight === 'number'
388
- ? `${this.maxHeight}px`
389
- : this.maxHeight
387
+ height: typeof this.height === 'number' ? `${this.height}px` : this.height
390
388
  }
391
389
  : {};
392
- return ((0, vue_1.h)("div", { class: [`${this.mergedClsPrefix}-chat`, this.themeClass], style: Object.assign(Object.assign({}, maxHeightStyle), this.cssVars) },
390
+ return ((0, vue_1.h)("div", { class: [`${this.mergedClsPrefix}-chat`, this.themeClass], style: Object.assign(Object.assign({}, heightStyle), this.cssVars) },
393
391
  (0, vue_1.h)(flex_1.UFlex, { wrap: false, size: [20, 20], style: { width: '100%' } }, {
394
392
  default: () => ((0, vue_1.h)(vue_1.Fragment, null,
395
393
  (0, _utils_1.resolveSlot)($slots.sidebar, () => [
@@ -398,11 +396,12 @@ exports.default = (0, vue_1.defineComponent)({
398
396
  sidebarHeaderActions: $slots.sidebarHeaderActions
399
397
  })
400
398
  ]),
401
- (0, _utils_1.resolveSlot)($slots.default, () => [
402
- (0, vue_1.h)(MainArea_1.default, null, {
403
- headerActions: $slots.headerActions
404
- })
405
- ])))
399
+ this.selectedChatId &&
400
+ (0, _utils_1.resolveSlot)($slots.default, () => [
401
+ (0, vue_1.h)(MainArea_1.default, null, {
402
+ headerActions: $slots.headerActions
403
+ })
404
+ ])))
406
405
  })));
407
406
  }
408
407
  });