@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
@@ -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;
@@ -406,16 +414,24 @@ export declare const chatMessagesProps: {
406
414
  colorSecondary: string;
407
415
  colorSecondaryHover: string;
408
416
  colorSecondaryPressed: string;
417
+ colorSecondaryFocus: string;
418
+ colorSecondaryDisabled: string;
419
+ textColorSecondaryDisabled: string;
409
420
  waveColorSecondary: string;
410
421
  colorTertiary: string;
411
422
  colorTertiaryHover: string;
412
423
  colorTertiaryPressed: string;
424
+ colorTertiaryFocus: string;
413
425
  colorTertiaryDisalbed: string;
414
426
  waveColorTertiary: string;
415
427
  textColorTextTertiary: string;
428
+ rippleColorTertiary: string;
416
429
  colorQuaternary: string;
417
430
  colorQuaternaryHover: string;
418
431
  colorQuaternaryPressed: string;
432
+ colorQuaternaryFocus: string;
433
+ rippleColorQuaternary: string;
434
+ waveColorQuaternary: string;
419
435
  color: string;
420
436
  colorHover: string;
421
437
  colorPressed: string;
@@ -979,8 +995,16 @@ export declare const chatMessagesProps: {
979
995
  loadingColor: string;
980
996
  }, {
981
997
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
998
+ height: string;
999
+ width: string;
1000
+ borderRadius: string;
982
1001
  color: string;
983
1002
  colorHover: string;
1003
+ railInsetHorizontalBottom: string;
1004
+ railInsetHorizontalTop: string;
1005
+ railInsetVerticalRight: string;
1006
+ railInsetVerticalLeft: string;
1007
+ railColor: string;
984
1008
  }, any>;
985
1009
  Empty: import("../../_mixins").Theme<"Empty", {
986
1010
  iconSizeSmall: string;
@@ -1055,16 +1079,24 @@ export declare const chatMessagesProps: {
1055
1079
  colorSecondary: string;
1056
1080
  colorSecondaryHover: string;
1057
1081
  colorSecondaryPressed: string;
1082
+ colorSecondaryFocus: string;
1083
+ colorSecondaryDisabled: string;
1084
+ textColorSecondaryDisabled: string;
1058
1085
  waveColorSecondary: string;
1059
1086
  colorTertiary: string;
1060
1087
  colorTertiaryHover: string;
1061
1088
  colorTertiaryPressed: string;
1089
+ colorTertiaryFocus: string;
1062
1090
  colorTertiaryDisalbed: string;
1063
1091
  waveColorTertiary: string;
1064
1092
  textColorTextTertiary: string;
1093
+ rippleColorTertiary: string;
1065
1094
  colorQuaternary: string;
1066
1095
  colorQuaternaryHover: string;
1067
1096
  colorQuaternaryPressed: string;
1097
+ colorQuaternaryFocus: string;
1098
+ rippleColorQuaternary: string;
1099
+ waveColorQuaternary: string;
1068
1100
  color: string;
1069
1101
  colorHover: string;
1070
1102
  colorPressed: string;
@@ -1628,8 +1660,16 @@ export declare const chatMessagesProps: {
1628
1660
  loadingColor: string;
1629
1661
  }, {
1630
1662
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1663
+ height: string;
1664
+ width: string;
1665
+ borderRadius: string;
1631
1666
  color: string;
1632
1667
  colorHover: string;
1668
+ railInsetHorizontalBottom: string;
1669
+ railInsetHorizontalTop: string;
1670
+ railInsetVerticalRight: string;
1671
+ railInsetVerticalLeft: string;
1672
+ railColor: string;
1633
1673
  }, any>;
1634
1674
  Empty: import("../../_mixins").Theme<"Empty", {
1635
1675
  iconSizeSmall: string;
@@ -1704,16 +1744,24 @@ export declare const chatMessagesProps: {
1704
1744
  colorSecondary: string;
1705
1745
  colorSecondaryHover: string;
1706
1746
  colorSecondaryPressed: string;
1747
+ colorSecondaryFocus: string;
1748
+ colorSecondaryDisabled: string;
1749
+ textColorSecondaryDisabled: string;
1707
1750
  waveColorSecondary: string;
1708
1751
  colorTertiary: string;
1709
1752
  colorTertiaryHover: string;
1710
1753
  colorTertiaryPressed: string;
1754
+ colorTertiaryFocus: string;
1711
1755
  colorTertiaryDisalbed: string;
1712
1756
  waveColorTertiary: string;
1713
1757
  textColorTextTertiary: string;
1758
+ rippleColorTertiary: string;
1714
1759
  colorQuaternary: string;
1715
1760
  colorQuaternaryHover: string;
1716
1761
  colorQuaternaryPressed: string;
1762
+ colorQuaternaryFocus: string;
1763
+ rippleColorQuaternary: string;
1764
+ waveColorQuaternary: string;
1717
1765
  color: string;
1718
1766
  colorHover: string;
1719
1767
  colorPressed: string;
@@ -2328,8 +2376,16 @@ declare const _default: import("vue").DefineComponent<{
2328
2376
  loadingColor: string;
2329
2377
  }, {
2330
2378
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2379
+ height: string;
2380
+ width: string;
2381
+ borderRadius: string;
2331
2382
  color: string;
2332
2383
  colorHover: string;
2384
+ railInsetHorizontalBottom: string;
2385
+ railInsetHorizontalTop: string;
2386
+ railInsetVerticalRight: string;
2387
+ railInsetVerticalLeft: string;
2388
+ railColor: string;
2333
2389
  }, any>;
2334
2390
  Empty: import("../../_mixins").Theme<"Empty", {
2335
2391
  iconSizeSmall: string;
@@ -2404,16 +2460,24 @@ declare const _default: import("vue").DefineComponent<{
2404
2460
  colorSecondary: string;
2405
2461
  colorSecondaryHover: string;
2406
2462
  colorSecondaryPressed: string;
2463
+ colorSecondaryFocus: string;
2464
+ colorSecondaryDisabled: string;
2465
+ textColorSecondaryDisabled: string;
2407
2466
  waveColorSecondary: string;
2408
2467
  colorTertiary: string;
2409
2468
  colorTertiaryHover: string;
2410
2469
  colorTertiaryPressed: string;
2470
+ colorTertiaryFocus: string;
2411
2471
  colorTertiaryDisalbed: string;
2412
2472
  waveColorTertiary: string;
2413
2473
  textColorTextTertiary: string;
2474
+ rippleColorTertiary: string;
2414
2475
  colorQuaternary: string;
2415
2476
  colorQuaternaryHover: string;
2416
2477
  colorQuaternaryPressed: string;
2478
+ colorQuaternaryFocus: string;
2479
+ rippleColorQuaternary: string;
2480
+ waveColorQuaternary: string;
2417
2481
  color: string;
2418
2482
  colorHover: string;
2419
2483
  colorPressed: string;
@@ -2977,8 +3041,16 @@ declare const _default: import("vue").DefineComponent<{
2977
3041
  loadingColor: string;
2978
3042
  }, {
2979
3043
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3044
+ height: string;
3045
+ width: string;
3046
+ borderRadius: string;
2980
3047
  color: string;
2981
3048
  colorHover: string;
3049
+ railInsetHorizontalBottom: string;
3050
+ railInsetHorizontalTop: string;
3051
+ railInsetVerticalRight: string;
3052
+ railInsetVerticalLeft: string;
3053
+ railColor: string;
2982
3054
  }, any>;
2983
3055
  Empty: import("../../_mixins").Theme<"Empty", {
2984
3056
  iconSizeSmall: string;
@@ -3053,16 +3125,24 @@ declare const _default: import("vue").DefineComponent<{
3053
3125
  colorSecondary: string;
3054
3126
  colorSecondaryHover: string;
3055
3127
  colorSecondaryPressed: string;
3128
+ colorSecondaryFocus: string;
3129
+ colorSecondaryDisabled: string;
3130
+ textColorSecondaryDisabled: string;
3056
3131
  waveColorSecondary: string;
3057
3132
  colorTertiary: string;
3058
3133
  colorTertiaryHover: string;
3059
3134
  colorTertiaryPressed: string;
3135
+ colorTertiaryFocus: string;
3060
3136
  colorTertiaryDisalbed: string;
3061
3137
  waveColorTertiary: string;
3062
3138
  textColorTextTertiary: string;
3139
+ rippleColorTertiary: string;
3063
3140
  colorQuaternary: string;
3064
3141
  colorQuaternaryHover: string;
3065
3142
  colorQuaternaryPressed: string;
3143
+ colorQuaternaryFocus: string;
3144
+ rippleColorQuaternary: string;
3145
+ waveColorQuaternary: string;
3066
3146
  color: string;
3067
3147
  colorHover: string;
3068
3148
  colorPressed: string;
@@ -3626,8 +3706,16 @@ declare const _default: import("vue").DefineComponent<{
3626
3706
  loadingColor: string;
3627
3707
  }, {
3628
3708
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3709
+ height: string;
3710
+ width: string;
3711
+ borderRadius: string;
3629
3712
  color: string;
3630
3713
  colorHover: string;
3714
+ railInsetHorizontalBottom: string;
3715
+ railInsetHorizontalTop: string;
3716
+ railInsetVerticalRight: string;
3717
+ railInsetVerticalLeft: string;
3718
+ railColor: string;
3631
3719
  }, any>;
3632
3720
  Empty: import("../../_mixins").Theme<"Empty", {
3633
3721
  iconSizeSmall: string;
@@ -3702,16 +3790,24 @@ declare const _default: import("vue").DefineComponent<{
3702
3790
  colorSecondary: string;
3703
3791
  colorSecondaryHover: string;
3704
3792
  colorSecondaryPressed: string;
3793
+ colorSecondaryFocus: string;
3794
+ colorSecondaryDisabled: string;
3795
+ textColorSecondaryDisabled: string;
3705
3796
  waveColorSecondary: string;
3706
3797
  colorTertiary: string;
3707
3798
  colorTertiaryHover: string;
3708
3799
  colorTertiaryPressed: string;
3800
+ colorTertiaryFocus: string;
3709
3801
  colorTertiaryDisalbed: string;
3710
3802
  waveColorTertiary: string;
3711
3803
  textColorTextTertiary: string;
3804
+ rippleColorTertiary: string;
3712
3805
  colorQuaternary: string;
3713
3806
  colorQuaternaryHover: string;
3714
3807
  colorQuaternaryPressed: string;
3808
+ colorQuaternaryFocus: string;
3809
+ rippleColorQuaternary: string;
3810
+ waveColorQuaternary: string;
3715
3811
  color: string;
3716
3812
  colorHover: string;
3717
3813
  colorPressed: string;
@@ -4280,8 +4376,16 @@ declare const _default: import("vue").DefineComponent<{
4280
4376
  loadingColor: string;
4281
4377
  }, {
4282
4378
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4379
+ height: string;
4380
+ width: string;
4381
+ borderRadius: string;
4283
4382
  color: string;
4284
4383
  colorHover: string;
4384
+ railInsetHorizontalBottom: string;
4385
+ railInsetHorizontalTop: string;
4386
+ railInsetVerticalRight: string;
4387
+ railInsetVerticalLeft: string;
4388
+ railColor: string;
4285
4389
  }, any>;
4286
4390
  Empty: import("../../_mixins").Theme<"Empty", {
4287
4391
  iconSizeSmall: string;
@@ -4356,16 +4460,24 @@ declare const _default: import("vue").DefineComponent<{
4356
4460
  colorSecondary: string;
4357
4461
  colorSecondaryHover: string;
4358
4462
  colorSecondaryPressed: string;
4463
+ colorSecondaryFocus: string;
4464
+ colorSecondaryDisabled: string;
4465
+ textColorSecondaryDisabled: string;
4359
4466
  waveColorSecondary: string;
4360
4467
  colorTertiary: string;
4361
4468
  colorTertiaryHover: string;
4362
4469
  colorTertiaryPressed: string;
4470
+ colorTertiaryFocus: string;
4363
4471
  colorTertiaryDisalbed: string;
4364
4472
  waveColorTertiary: string;
4365
4473
  textColorTextTertiary: string;
4474
+ rippleColorTertiary: string;
4366
4475
  colorQuaternary: string;
4367
4476
  colorQuaternaryHover: string;
4368
4477
  colorQuaternaryPressed: string;
4478
+ colorQuaternaryFocus: string;
4479
+ rippleColorQuaternary: string;
4480
+ waveColorQuaternary: string;
4369
4481
  color: string;
4370
4482
  colorHover: string;
4371
4483
  colorPressed: string;
@@ -4820,8 +4932,16 @@ declare const _default: import("vue").DefineComponent<{
4820
4932
  loadingColor: string;
4821
4933
  }, {
4822
4934
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4935
+ height: string;
4936
+ width: string;
4937
+ borderRadius: string;
4823
4938
  color: string;
4824
4939
  colorHover: string;
4940
+ railInsetHorizontalBottom: string;
4941
+ railInsetHorizontalTop: string;
4942
+ railInsetVerticalRight: string;
4943
+ railInsetVerticalLeft: string;
4944
+ railColor: string;
4825
4945
  }, any>;
4826
4946
  Empty: import("../../_mixins").Theme<"Empty", {
4827
4947
  iconSizeSmall: string;
@@ -5158,8 +5278,16 @@ declare const _default: import("vue").DefineComponent<{
5158
5278
  loadingColor: string;
5159
5279
  }, {
5160
5280
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5281
+ height: string;
5282
+ width: string;
5283
+ borderRadius: string;
5161
5284
  color: string;
5162
5285
  colorHover: string;
5286
+ railInsetHorizontalBottom: string;
5287
+ railInsetHorizontalTop: string;
5288
+ railInsetVerticalRight: string;
5289
+ railInsetVerticalLeft: string;
5290
+ railColor: string;
5163
5291
  }, any>;
5164
5292
  Empty: import("../../_mixins").Theme<"Empty", {
5165
5293
  iconSizeSmall: string;
@@ -5234,16 +5362,24 @@ declare const _default: import("vue").DefineComponent<{
5234
5362
  colorSecondary: string;
5235
5363
  colorSecondaryHover: string;
5236
5364
  colorSecondaryPressed: string;
5365
+ colorSecondaryFocus: string;
5366
+ colorSecondaryDisabled: string;
5367
+ textColorSecondaryDisabled: string;
5237
5368
  waveColorSecondary: string;
5238
5369
  colorTertiary: string;
5239
5370
  colorTertiaryHover: string;
5240
5371
  colorTertiaryPressed: string;
5372
+ colorTertiaryFocus: string;
5241
5373
  colorTertiaryDisalbed: string;
5242
5374
  waveColorTertiary: string;
5243
5375
  textColorTextTertiary: string;
5376
+ rippleColorTertiary: string;
5244
5377
  colorQuaternary: string;
5245
5378
  colorQuaternaryHover: string;
5246
5379
  colorQuaternaryPressed: string;
5380
+ colorQuaternaryFocus: string;
5381
+ rippleColorQuaternary: string;
5382
+ waveColorQuaternary: string;
5247
5383
  color: string;
5248
5384
  colorHover: string;
5249
5385
  colorPressed: string;
@@ -5698,8 +5834,16 @@ declare const _default: import("vue").DefineComponent<{
5698
5834
  loadingColor: string;
5699
5835
  }, {
5700
5836
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5837
+ height: string;
5838
+ width: string;
5839
+ borderRadius: string;
5701
5840
  color: string;
5702
5841
  colorHover: string;
5842
+ railInsetHorizontalBottom: string;
5843
+ railInsetHorizontalTop: string;
5844
+ railInsetVerticalRight: string;
5845
+ railInsetVerticalLeft: string;
5846
+ railColor: string;
5703
5847
  }, any>;
5704
5848
  Empty: import("../../_mixins").Theme<"Empty", {
5705
5849
  iconSizeSmall: string;
@@ -6120,8 +6264,16 @@ declare const _default: import("vue").DefineComponent<{
6120
6264
  loadingColor: string;
6121
6265
  }, {
6122
6266
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6267
+ height: string;
6268
+ width: string;
6269
+ borderRadius: string;
6123
6270
  color: string;
6124
6271
  colorHover: string;
6272
+ railInsetHorizontalBottom: string;
6273
+ railInsetHorizontalTop: string;
6274
+ railInsetVerticalRight: string;
6275
+ railInsetVerticalLeft: string;
6276
+ railColor: string;
6125
6277
  }, any>;
6126
6278
  Empty: import("../../_mixins").Theme<"Empty", {
6127
6279
  iconSizeSmall: string;
@@ -6196,16 +6348,24 @@ declare const _default: import("vue").DefineComponent<{
6196
6348
  colorSecondary: string;
6197
6349
  colorSecondaryHover: string;
6198
6350
  colorSecondaryPressed: string;
6351
+ colorSecondaryFocus: string;
6352
+ colorSecondaryDisabled: string;
6353
+ textColorSecondaryDisabled: string;
6199
6354
  waveColorSecondary: string;
6200
6355
  colorTertiary: string;
6201
6356
  colorTertiaryHover: string;
6202
6357
  colorTertiaryPressed: string;
6358
+ colorTertiaryFocus: string;
6203
6359
  colorTertiaryDisalbed: string;
6204
6360
  waveColorTertiary: string;
6205
6361
  textColorTextTertiary: string;
6362
+ rippleColorTertiary: string;
6206
6363
  colorQuaternary: string;
6207
6364
  colorQuaternaryHover: string;
6208
6365
  colorQuaternaryPressed: string;
6366
+ colorQuaternaryFocus: string;
6367
+ rippleColorQuaternary: string;
6368
+ waveColorQuaternary: string;
6209
6369
  color: string;
6210
6370
  colorHover: string;
6211
6371
  colorPressed: string;
@@ -6769,8 +6929,16 @@ declare const _default: import("vue").DefineComponent<{
6769
6929
  loadingColor: string;
6770
6930
  }, {
6771
6931
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6932
+ height: string;
6933
+ width: string;
6934
+ borderRadius: string;
6772
6935
  color: string;
6773
6936
  colorHover: string;
6937
+ railInsetHorizontalBottom: string;
6938
+ railInsetHorizontalTop: string;
6939
+ railInsetVerticalRight: string;
6940
+ railInsetVerticalLeft: string;
6941
+ railColor: string;
6774
6942
  }, any>;
6775
6943
  Empty: import("../../_mixins").Theme<"Empty", {
6776
6944
  iconSizeSmall: string;
@@ -6845,16 +7013,24 @@ declare const _default: import("vue").DefineComponent<{
6845
7013
  colorSecondary: string;
6846
7014
  colorSecondaryHover: string;
6847
7015
  colorSecondaryPressed: string;
7016
+ colorSecondaryFocus: string;
7017
+ colorSecondaryDisabled: string;
7018
+ textColorSecondaryDisabled: string;
6848
7019
  waveColorSecondary: string;
6849
7020
  colorTertiary: string;
6850
7021
  colorTertiaryHover: string;
6851
7022
  colorTertiaryPressed: string;
7023
+ colorTertiaryFocus: string;
6852
7024
  colorTertiaryDisalbed: string;
6853
7025
  waveColorTertiary: string;
6854
7026
  textColorTextTertiary: string;
7027
+ rippleColorTertiary: string;
6855
7028
  colorQuaternary: string;
6856
7029
  colorQuaternaryHover: string;
6857
7030
  colorQuaternaryPressed: string;
7031
+ colorQuaternaryFocus: string;
7032
+ rippleColorQuaternary: string;
7033
+ waveColorQuaternary: string;
6858
7034
  color: string;
6859
7035
  colorHover: string;
6860
7036
  colorPressed: string;
@@ -7418,8 +7594,16 @@ declare const _default: import("vue").DefineComponent<{
7418
7594
  loadingColor: string;
7419
7595
  }, {
7420
7596
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7597
+ height: string;
7598
+ width: string;
7599
+ borderRadius: string;
7421
7600
  color: string;
7422
7601
  colorHover: string;
7602
+ railInsetHorizontalBottom: string;
7603
+ railInsetHorizontalTop: string;
7604
+ railInsetVerticalRight: string;
7605
+ railInsetVerticalLeft: string;
7606
+ railColor: string;
7423
7607
  }, any>;
7424
7608
  Empty: import("../../_mixins").Theme<"Empty", {
7425
7609
  iconSizeSmall: string;
@@ -7494,16 +7678,24 @@ declare const _default: import("vue").DefineComponent<{
7494
7678
  colorSecondary: string;
7495
7679
  colorSecondaryHover: string;
7496
7680
  colorSecondaryPressed: string;
7681
+ colorSecondaryFocus: string;
7682
+ colorSecondaryDisabled: string;
7683
+ textColorSecondaryDisabled: string;
7497
7684
  waveColorSecondary: string;
7498
7685
  colorTertiary: string;
7499
7686
  colorTertiaryHover: string;
7500
7687
  colorTertiaryPressed: string;
7688
+ colorTertiaryFocus: string;
7501
7689
  colorTertiaryDisalbed: string;
7502
7690
  waveColorTertiary: string;
7503
7691
  textColorTextTertiary: string;
7692
+ rippleColorTertiary: string;
7504
7693
  colorQuaternary: string;
7505
7694
  colorQuaternaryHover: string;
7506
7695
  colorQuaternaryPressed: string;
7696
+ colorQuaternaryFocus: string;
7697
+ rippleColorQuaternary: string;
7698
+ waveColorQuaternary: string;
7507
7699
  color: string;
7508
7700
  colorHover: string;
7509
7701
  colorPressed: string;
@@ -1,9 +1,7 @@
1
1
  import { c, cB, cE, cM } from '../../../_utils/cssr';
2
2
  export default cB('chat', `
3
3
  height: 100%;
4
- max-height: 100%;
5
- min-height: 0;
6
- display: flex;
4
+ background-color: transparent;
7
5
  box-sizing: border-box;
8
6
  .u-list-item__text {
9
7
  grid-template-columns: 1fr !important;
@@ -277,8 +277,16 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
277
277
  loadingColor: string;
278
278
  }, {
279
279
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
280
+ height: string;
281
+ width: string;
282
+ borderRadius: string;
280
283
  color: string;
281
284
  colorHover: string;
285
+ railInsetHorizontalBottom: string;
286
+ railInsetHorizontalTop: string;
287
+ railInsetVerticalRight: string;
288
+ railInsetVerticalLeft: string;
289
+ railColor: string;
282
290
  }, any>;
283
291
  Empty: import("../../_mixins").Theme<"Empty", {
284
292
  iconSizeSmall: string;
@@ -353,16 +361,24 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
353
361
  colorSecondary: string;
354
362
  colorSecondaryHover: string;
355
363
  colorSecondaryPressed: string;
364
+ colorSecondaryFocus: string;
365
+ colorSecondaryDisabled: string;
366
+ textColorSecondaryDisabled: string;
356
367
  waveColorSecondary: string;
357
368
  colorTertiary: string;
358
369
  colorTertiaryHover: string;
359
370
  colorTertiaryPressed: string;
371
+ colorTertiaryFocus: string;
360
372
  colorTertiaryDisalbed: string;
361
373
  waveColorTertiary: string;
362
374
  textColorTextTertiary: string;
375
+ rippleColorTertiary: string;
363
376
  colorQuaternary: string;
364
377
  colorQuaternaryHover: string;
365
378
  colorQuaternaryPressed: string;
379
+ colorQuaternaryFocus: string;
380
+ rippleColorQuaternary: string;
381
+ waveColorQuaternary: string;
366
382
  color: string;
367
383
  colorHover: string;
368
384
  colorPressed: string;
@@ -314,8 +314,16 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
314
314
  loadingColor: string;
315
315
  }, {
316
316
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
317
+ height: string;
318
+ width: string;
319
+ borderRadius: string;
317
320
  color: string;
318
321
  colorHover: string;
322
+ railInsetHorizontalBottom: string;
323
+ railInsetHorizontalTop: string;
324
+ railInsetVerticalRight: string;
325
+ railInsetVerticalLeft: string;
326
+ railColor: string;
319
327
  }, any>;
320
328
  Empty: import("../../_mixins").Theme<"Empty", {
321
329
  iconSizeSmall: string;
@@ -390,16 +398,24 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
390
398
  colorSecondary: string;
391
399
  colorSecondaryHover: string;
392
400
  colorSecondaryPressed: string;
401
+ colorSecondaryFocus: string;
402
+ colorSecondaryDisabled: string;
403
+ textColorSecondaryDisabled: string;
393
404
  waveColorSecondary: string;
394
405
  colorTertiary: string;
395
406
  colorTertiaryHover: string;
396
407
  colorTertiaryPressed: string;
408
+ colorTertiaryFocus: string;
397
409
  colorTertiaryDisalbed: string;
398
410
  waveColorTertiary: string;
399
411
  textColorTextTertiary: string;
412
+ rippleColorTertiary: string;
400
413
  colorQuaternary: string;
401
414
  colorQuaternaryHover: string;
402
415
  colorQuaternaryPressed: string;
416
+ colorQuaternaryFocus: string;
417
+ rippleColorQuaternary: string;
418
+ waveColorQuaternary: string;
403
419
  color: string;
404
420
  colorHover: string;
405
421
  colorPressed: string;
@@ -122,16 +122,24 @@ declare const _default: import("vue").DefineComponent<{
122
122
  colorSecondary: string;
123
123
  colorSecondaryHover: string;
124
124
  colorSecondaryPressed: string;
125
+ colorSecondaryFocus: string;
126
+ colorSecondaryDisabled: string;
127
+ textColorSecondaryDisabled: string;
125
128
  waveColorSecondary: string;
126
129
  colorTertiary: string;
127
130
  colorTertiaryHover: string;
128
131
  colorTertiaryPressed: string;
132
+ colorTertiaryFocus: string;
129
133
  colorTertiaryDisalbed: string;
130
134
  waveColorTertiary: string;
131
135
  textColorTextTertiary: string;
136
+ rippleColorTertiary: string;
132
137
  colorQuaternary: string;
133
138
  colorQuaternaryHover: string;
134
139
  colorQuaternaryPressed: string;
140
+ colorQuaternaryFocus: string;
141
+ rippleColorQuaternary: string;
142
+ waveColorQuaternary: string;
135
143
  color: string;
136
144
  colorHover: string;
137
145
  colorPressed: string;