@uzum-tech/ui 1.11.1 → 1.12.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 (281) hide show
  1. package/dist/index.js +10830 -6653
  2. package/dist/index.prod.js +4 -4
  3. package/es/_internal/icons/BurgerMenuIcon.d.ts +2 -0
  4. package/es/_internal/icons/BurgerMenuIcon.js +4 -0
  5. package/es/_internal/icons/Logout.d.ts +2 -0
  6. package/es/_internal/icons/Logout.js +4 -0
  7. package/es/_internal/icons/OzbekFlag.d.ts +2 -0
  8. package/es/_internal/icons/OzbekFlag.js +15 -0
  9. package/es/_internal/icons/RussiaFlag.d.ts +2 -0
  10. package/es/_internal/icons/RussiaFlag.js +11 -0
  11. package/es/_internal/icons/SendFilled.d.ts +2 -0
  12. package/es/_internal/icons/SendFilled.js +9 -0
  13. package/es/_internal/icons/index.d.ts +5 -0
  14. package/es/_internal/icons/index.js +5 -0
  15. package/es/_styles/common/dark.js +1 -1
  16. package/es/_styles/common/light.d.ts +1 -0
  17. package/es/_styles/common/light.js +1 -1
  18. package/es/chat/src/Chat.d.ts +464 -83
  19. package/es/chat/src/Chat.js +17 -2
  20. package/es/chat/src/ChatListItems.d.ts +497 -94
  21. package/es/chat/src/ChatListItems.js +1 -1
  22. package/es/chat/src/ChatMessages.d.ts +501 -94
  23. package/es/chat/src/ChatMessages.js +115 -22
  24. package/es/chat/src/ChatParts/MainArea.d.ts +7 -3
  25. package/es/chat/src/ChatParts/MainArea.js +110 -14
  26. package/es/chat/src/ChatParts/Sidebar.d.ts +64 -11
  27. package/es/chat/src/interface.d.ts +18 -0
  28. package/es/chat/src/interface.js +6 -0
  29. package/es/chat/src/styles/index.cssr.js +22 -1
  30. package/es/chat/styles/dark.d.ts +41 -8
  31. package/es/chat/styles/dark.js +6 -2
  32. package/es/chat/styles/light.d.ts +42 -8
  33. package/es/chat/styles/light.js +7 -2
  34. package/es/components.d.ts +3 -0
  35. package/es/components.js +3 -0
  36. package/es/config-provider/src/internal-interface.d.ts +17 -0
  37. package/es/dialog/src/DialogProvider.d.ts +2 -0
  38. package/es/form/src/FormItemCol.d.ts +2 -2
  39. package/es/form/src/FormItemGridItem.d.ts +2 -2
  40. package/es/form/src/FormItemRow.d.ts +1 -1
  41. package/es/grid/src/Grid.d.ts +1 -1
  42. package/es/grid/src/GridItem.d.ts +2 -2
  43. package/es/header/demos/mock.d.ts +2 -0
  44. package/es/header/demos/mock.js +235 -0
  45. package/es/header/index.d.ts +12 -0
  46. package/es/header/index.js +10 -0
  47. package/es/header/src/Header.d.ts +604 -0
  48. package/es/header/src/Header.js +320 -0
  49. package/es/header/src/HeaderActions.d.ts +120 -0
  50. package/es/header/src/HeaderActions.js +166 -0
  51. package/es/header/src/HeaderDesktopLayout.d.ts +25 -0
  52. package/es/header/src/HeaderDesktopLayout.js +24 -0
  53. package/es/header/src/HeaderMobileLayout.d.ts +25 -0
  54. package/es/header/src/HeaderMobileLayout.js +21 -0
  55. package/es/header/src/HeaderNavigation.d.ts +128 -0
  56. package/es/header/src/HeaderNavigation.js +172 -0
  57. package/es/header/src/HeaderSearchDesktop.d.ts +79 -0
  58. package/es/header/src/HeaderSearchDesktop.js +77 -0
  59. package/es/header/src/HeaderSearchMobile.d.ts +73 -0
  60. package/es/header/src/HeaderSearchMobile.js +126 -0
  61. package/es/header/src/HeaderSearchResults.d.ts +81 -0
  62. package/es/header/src/HeaderSearchResults.js +74 -0
  63. package/es/header/src/constants.d.ts +1 -0
  64. package/es/header/src/constants.js +1 -0
  65. package/es/header/src/interface.d.ts +58 -0
  66. package/es/header/src/interface.js +1 -0
  67. package/es/header/src/mobile/HeaderMobile.d.ts +218 -0
  68. package/es/header/src/mobile/HeaderMobile.js +241 -0
  69. package/es/header/src/styles/index.cssr.d.ts +6 -0
  70. package/es/header/src/styles/index.cssr.js +519 -0
  71. package/es/header/src/utils.d.ts +12 -0
  72. package/es/header/src/utils.js +47 -0
  73. package/es/header/styles/dark.d.ts +36 -0
  74. package/es/header/styles/dark.js +9 -0
  75. package/es/header/styles/index.d.ts +3 -0
  76. package/es/header/styles/index.js +2 -0
  77. package/es/header/styles/light.d.ts +72 -0
  78. package/es/header/styles/light.js +45 -0
  79. package/es/icon/src/Icon.d.ts +3 -0
  80. package/es/icon/src/Icon.js +3 -2
  81. package/es/icon-bar/index.d.ts +4 -0
  82. package/es/icon-bar/index.js +2 -0
  83. package/es/icon-bar/src/IconBar.d.ts +175 -0
  84. package/es/icon-bar/src/IconBar.js +57 -0
  85. package/es/icon-bar/src/IconBarItem.d.ts +163 -0
  86. package/es/icon-bar/src/IconBarItem.js +50 -0
  87. package/es/icon-bar/src/styles/index.cssr.d.ts +2 -0
  88. package/es/icon-bar/src/styles/index.cssr.js +62 -0
  89. package/es/icon-bar/styles/dark.d.ts +3 -0
  90. package/es/icon-bar/styles/dark.js +8 -0
  91. package/es/icon-bar/styles/index.d.ts +3 -0
  92. package/es/icon-bar/styles/index.js +2 -0
  93. package/es/icon-bar/styles/light.d.ts +19 -0
  94. package/es/icon-bar/styles/light.js +23 -0
  95. package/es/locales/common/arDZ.js +11 -1
  96. package/es/locales/common/deDE.js +11 -1
  97. package/es/locales/common/enGB.js +11 -1
  98. package/es/locales/common/enUS.d.ts +10 -0
  99. package/es/locales/common/enUS.js +11 -1
  100. package/es/locales/common/eo.js +11 -1
  101. package/es/locales/common/esAR.js +11 -1
  102. package/es/locales/common/faIR.js +11 -1
  103. package/es/locales/common/frFR.js +11 -1
  104. package/es/locales/common/idID.js +11 -1
  105. package/es/locales/common/itIT.js +11 -1
  106. package/es/locales/common/jaJP.js +11 -1
  107. package/es/locales/common/koKR.js +11 -1
  108. package/es/locales/common/nbNO.js +11 -1
  109. package/es/locales/common/nlNL.js +11 -1
  110. package/es/locales/common/plPL.js +11 -1
  111. package/es/locales/common/ptBR.js +11 -1
  112. package/es/locales/common/ruRU.js +11 -1
  113. package/es/locales/common/skSK.js +11 -1
  114. package/es/locales/common/svSE.js +11 -1
  115. package/es/locales/common/thTH.js +11 -1
  116. package/es/locales/common/trTR.js +11 -1
  117. package/es/locales/common/ukUA.js +11 -1
  118. package/es/locales/common/viVN.js +11 -1
  119. package/es/locales/common/zhCN.js +11 -1
  120. package/es/locales/common/zhTW.js +11 -1
  121. package/es/modal-fullscreen/src/ModalFull.js +1 -1
  122. package/es/qr-code/index.d.ts +2 -0
  123. package/es/qr-code/index.js +1 -0
  124. package/es/qr-code/src/QrCode.d.ts +171 -0
  125. package/es/qr-code/src/QrCode.js +229 -0
  126. package/es/qr-code/src/qrcodegen.d.ts +95 -0
  127. package/es/qr-code/src/qrcodegen.js +949 -0
  128. package/es/qr-code/src/styles/index.cssr.d.ts +2 -0
  129. package/es/qr-code/src/styles/index.cssr.js +8 -0
  130. package/es/qr-code/styles/dark.d.ts +3 -0
  131. package/es/qr-code/styles/dark.js +11 -0
  132. package/es/qr-code/styles/index.d.ts +3 -0
  133. package/es/qr-code/styles/index.js +2 -0
  134. package/es/qr-code/styles/light.d.ts +9 -0
  135. package/es/qr-code/styles/light.js +12 -0
  136. package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
  137. package/es/themes/dark.js +7 -1
  138. package/es/themes/light.js +7 -1
  139. package/es/version.d.ts +1 -1
  140. package/es/version.js +1 -1
  141. package/lib/_internal/icons/BurgerMenuIcon.d.ts +2 -0
  142. package/lib/_internal/icons/BurgerMenuIcon.js +6 -0
  143. package/lib/_internal/icons/Logout.d.ts +2 -0
  144. package/lib/_internal/icons/Logout.js +6 -0
  145. package/lib/_internal/icons/OzbekFlag.d.ts +2 -0
  146. package/lib/_internal/icons/OzbekFlag.js +17 -0
  147. package/lib/_internal/icons/RussiaFlag.d.ts +2 -0
  148. package/lib/_internal/icons/RussiaFlag.js +13 -0
  149. package/lib/_internal/icons/SendFilled.d.ts +2 -0
  150. package/lib/_internal/icons/SendFilled.js +11 -0
  151. package/lib/_internal/icons/index.d.ts +5 -0
  152. package/lib/_internal/icons/index.js +11 -1
  153. package/lib/_styles/common/dark.js +1 -1
  154. package/lib/_styles/common/light.d.ts +1 -0
  155. package/lib/_styles/common/light.js +1 -1
  156. package/lib/chat/src/Chat.d.ts +464 -83
  157. package/lib/chat/src/Chat.js +17 -2
  158. package/lib/chat/src/ChatListItems.d.ts +497 -94
  159. package/lib/chat/src/ChatListItems.js +1 -1
  160. package/lib/chat/src/ChatMessages.d.ts +501 -94
  161. package/lib/chat/src/ChatMessages.js +113 -20
  162. package/lib/chat/src/ChatParts/MainArea.d.ts +7 -3
  163. package/lib/chat/src/ChatParts/MainArea.js +108 -12
  164. package/lib/chat/src/ChatParts/Sidebar.d.ts +64 -11
  165. package/lib/chat/src/interface.d.ts +18 -0
  166. package/lib/chat/src/interface.js +7 -1
  167. package/lib/chat/src/styles/index.cssr.js +22 -1
  168. package/lib/chat/styles/dark.d.ts +41 -8
  169. package/lib/chat/styles/dark.js +6 -2
  170. package/lib/chat/styles/light.d.ts +42 -8
  171. package/lib/chat/styles/light.js +7 -2
  172. package/lib/components.d.ts +3 -0
  173. package/lib/components.js +3 -0
  174. package/lib/config-provider/src/internal-interface.d.ts +17 -0
  175. package/lib/dialog/src/DialogProvider.d.ts +2 -0
  176. package/lib/form/src/FormItemCol.d.ts +2 -2
  177. package/lib/form/src/FormItemGridItem.d.ts +2 -2
  178. package/lib/form/src/FormItemRow.d.ts +1 -1
  179. package/lib/grid/src/Grid.d.ts +1 -1
  180. package/lib/grid/src/GridItem.d.ts +2 -2
  181. package/lib/header/demos/mock.d.ts +2 -0
  182. package/lib/header/demos/mock.js +238 -0
  183. package/lib/header/index.d.ts +12 -0
  184. package/lib/header/index.js +48 -0
  185. package/lib/header/src/Header.d.ts +604 -0
  186. package/lib/header/src/Header.js +349 -0
  187. package/lib/header/src/HeaderActions.d.ts +120 -0
  188. package/lib/header/src/HeaderActions.js +172 -0
  189. package/lib/header/src/HeaderDesktopLayout.d.ts +25 -0
  190. package/lib/header/src/HeaderDesktopLayout.js +27 -0
  191. package/lib/header/src/HeaderMobileLayout.d.ts +25 -0
  192. package/lib/header/src/HeaderMobileLayout.js +24 -0
  193. package/lib/header/src/HeaderNavigation.d.ts +128 -0
  194. package/lib/header/src/HeaderNavigation.js +175 -0
  195. package/lib/header/src/HeaderSearchDesktop.d.ts +79 -0
  196. package/lib/header/src/HeaderSearchDesktop.js +83 -0
  197. package/lib/header/src/HeaderSearchMobile.d.ts +73 -0
  198. package/lib/header/src/HeaderSearchMobile.js +132 -0
  199. package/lib/header/src/HeaderSearchResults.d.ts +81 -0
  200. package/lib/header/src/HeaderSearchResults.js +77 -0
  201. package/lib/header/src/constants.d.ts +1 -0
  202. package/lib/header/src/constants.js +4 -0
  203. package/lib/header/src/interface.d.ts +58 -0
  204. package/lib/header/src/interface.js +2 -0
  205. package/lib/header/src/mobile/HeaderMobile.d.ts +218 -0
  206. package/lib/header/src/mobile/HeaderMobile.js +244 -0
  207. package/lib/header/src/styles/index.cssr.d.ts +6 -0
  208. package/lib/header/src/styles/index.cssr.js +525 -0
  209. package/lib/header/src/utils.d.ts +12 -0
  210. package/lib/header/src/utils.js +58 -0
  211. package/lib/header/styles/dark.d.ts +36 -0
  212. package/lib/header/styles/dark.js +11 -0
  213. package/lib/header/styles/index.d.ts +3 -0
  214. package/lib/header/styles/index.js +10 -0
  215. package/lib/header/styles/light.d.ts +72 -0
  216. package/lib/header/styles/light.js +49 -0
  217. package/lib/icon/src/Icon.d.ts +3 -0
  218. package/lib/icon/src/Icon.js +3 -2
  219. package/lib/icon-bar/index.d.ts +4 -0
  220. package/lib/icon-bar/index.js +12 -0
  221. package/lib/icon-bar/src/IconBar.d.ts +175 -0
  222. package/lib/icon-bar/src/IconBar.js +63 -0
  223. package/lib/icon-bar/src/IconBarItem.d.ts +163 -0
  224. package/lib/icon-bar/src/IconBarItem.js +56 -0
  225. package/lib/icon-bar/src/styles/index.cssr.d.ts +2 -0
  226. package/lib/icon-bar/src/styles/index.cssr.js +67 -0
  227. package/lib/icon-bar/styles/dark.d.ts +3 -0
  228. package/lib/icon-bar/styles/dark.js +10 -0
  229. package/lib/icon-bar/styles/index.d.ts +3 -0
  230. package/lib/icon-bar/styles/index.js +10 -0
  231. package/lib/icon-bar/styles/light.d.ts +19 -0
  232. package/lib/icon-bar/styles/light.js +27 -0
  233. package/lib/locales/common/arDZ.js +11 -1
  234. package/lib/locales/common/deDE.js +11 -1
  235. package/lib/locales/common/enGB.js +11 -1
  236. package/lib/locales/common/enUS.d.ts +10 -0
  237. package/lib/locales/common/enUS.js +11 -1
  238. package/lib/locales/common/eo.js +11 -1
  239. package/lib/locales/common/esAR.js +11 -1
  240. package/lib/locales/common/faIR.js +11 -1
  241. package/lib/locales/common/frFR.js +11 -1
  242. package/lib/locales/common/idID.js +11 -1
  243. package/lib/locales/common/itIT.js +11 -1
  244. package/lib/locales/common/jaJP.js +11 -1
  245. package/lib/locales/common/koKR.js +11 -1
  246. package/lib/locales/common/nbNO.js +11 -1
  247. package/lib/locales/common/nlNL.js +11 -1
  248. package/lib/locales/common/plPL.js +11 -1
  249. package/lib/locales/common/ptBR.js +11 -1
  250. package/lib/locales/common/ruRU.js +11 -1
  251. package/lib/locales/common/skSK.js +11 -1
  252. package/lib/locales/common/svSE.js +11 -1
  253. package/lib/locales/common/thTH.js +11 -1
  254. package/lib/locales/common/trTR.js +11 -1
  255. package/lib/locales/common/ukUA.js +11 -1
  256. package/lib/locales/common/viVN.js +11 -1
  257. package/lib/locales/common/zhCN.js +11 -1
  258. package/lib/locales/common/zhTW.js +11 -1
  259. package/lib/modal-fullscreen/src/ModalFull.js +1 -1
  260. package/lib/qr-code/index.d.ts +2 -0
  261. package/lib/qr-code/index.js +9 -0
  262. package/lib/qr-code/src/QrCode.d.ts +171 -0
  263. package/lib/qr-code/src/QrCode.js +235 -0
  264. package/lib/qr-code/src/qrcodegen.d.ts +95 -0
  265. package/lib/qr-code/src/qrcodegen.js +950 -0
  266. package/lib/qr-code/src/styles/index.cssr.d.ts +2 -0
  267. package/lib/qr-code/src/styles/index.cssr.js +13 -0
  268. package/lib/qr-code/styles/dark.d.ts +3 -0
  269. package/lib/qr-code/styles/dark.js +13 -0
  270. package/lib/qr-code/styles/index.d.ts +3 -0
  271. package/lib/qr-code/styles/index.js +10 -0
  272. package/lib/qr-code/styles/light.d.ts +9 -0
  273. package/lib/qr-code/styles/light.js +14 -0
  274. package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
  275. package/lib/themes/dark.js +7 -1
  276. package/lib/themes/light.js +7 -1
  277. package/lib/version.d.ts +1 -1
  278. package/lib/version.js +1 -1
  279. package/package.json +1 -1
  280. package/volar.d.ts +12 -0
  281. package/web-types.json +854 -2
@@ -79,6 +79,7 @@ export declare const chatMessagesProps: {
79
79
  footerBorderColor: string;
80
80
  inputBackgroundColor: string;
81
81
  inputBorderColor: string;
82
+ inputSuffixColor: string;
82
83
  unreadNotificationBackgroundColor: string;
83
84
  unreadNotificationTextColor: string;
84
85
  typingIndicatorColor: string;
@@ -612,14 +613,6 @@ export declare const chatMessagesProps: {
612
613
  iconSizeLarge: string;
613
614
  rippleDuration: string;
614
615
  }, any>;
615
- Icon: import("../../_mixins").Theme<"Icon", {
616
- color: string;
617
- opacity1Depth: string;
618
- opacity2Depth: string;
619
- opacity3Depth: string;
620
- opacity4Depth: string;
621
- opacity5Depth: string;
622
- }, any>;
623
616
  List: import("../../_mixins").Theme<"List", {
624
617
  iconSize: string;
625
618
  iconSpace: string;
@@ -715,6 +708,46 @@ export declare const chatMessagesProps: {
715
708
  codeColor: string;
716
709
  codeBorder: string;
717
710
  }, any>;
711
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
712
+ color: string;
713
+ opacity1Depth: string;
714
+ opacity2Depth: string;
715
+ opacity3Depth: string;
716
+ opacity4Depth: string;
717
+ opacity5Depth: string;
718
+ }, any>;
719
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
720
+ color: string;
721
+ opacity1Depth: string;
722
+ opacity2Depth: string;
723
+ opacity3Depth: string;
724
+ opacity4Depth: string;
725
+ opacity5Depth: string;
726
+ }, any>;
727
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
728
+ color: string;
729
+ opacity1Depth: string;
730
+ opacity2Depth: string;
731
+ opacity3Depth: string;
732
+ opacity4Depth: string;
733
+ opacity5Depth: string;
734
+ }, any>;
735
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
736
+ color: string;
737
+ opacity1Depth: string;
738
+ opacity2Depth: string;
739
+ opacity3Depth: string;
740
+ opacity4Depth: string;
741
+ opacity5Depth: string;
742
+ }, any>;
743
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
744
+ color: string;
745
+ opacity1Depth: string;
746
+ opacity2Depth: string;
747
+ opacity3Depth: string;
748
+ opacity4Depth: string;
749
+ opacity5Depth: string;
750
+ }, any>;
718
751
  }>>;
719
752
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
720
753
  backgroundColor: string;
@@ -744,6 +777,7 @@ export declare const chatMessagesProps: {
744
777
  footerBorderColor: string;
745
778
  inputBackgroundColor: string;
746
779
  inputBorderColor: string;
780
+ inputSuffixColor: string;
747
781
  unreadNotificationBackgroundColor: string;
748
782
  unreadNotificationTextColor: string;
749
783
  typingIndicatorColor: string;
@@ -1277,14 +1311,6 @@ export declare const chatMessagesProps: {
1277
1311
  iconSizeLarge: string;
1278
1312
  rippleDuration: string;
1279
1313
  }, any>;
1280
- Icon: import("../../_mixins").Theme<"Icon", {
1281
- color: string;
1282
- opacity1Depth: string;
1283
- opacity2Depth: string;
1284
- opacity3Depth: string;
1285
- opacity4Depth: string;
1286
- opacity5Depth: string;
1287
- }, any>;
1288
1314
  List: import("../../_mixins").Theme<"List", {
1289
1315
  iconSize: string;
1290
1316
  iconSpace: string;
@@ -1380,6 +1406,46 @@ export declare const chatMessagesProps: {
1380
1406
  codeColor: string;
1381
1407
  codeBorder: string;
1382
1408
  }, any>;
1409
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
1410
+ color: string;
1411
+ opacity1Depth: string;
1412
+ opacity2Depth: string;
1413
+ opacity3Depth: string;
1414
+ opacity4Depth: string;
1415
+ opacity5Depth: string;
1416
+ }, any>;
1417
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
1418
+ color: string;
1419
+ opacity1Depth: string;
1420
+ opacity2Depth: string;
1421
+ opacity3Depth: string;
1422
+ opacity4Depth: string;
1423
+ opacity5Depth: string;
1424
+ }, any>;
1425
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
1426
+ color: string;
1427
+ opacity1Depth: string;
1428
+ opacity2Depth: string;
1429
+ opacity3Depth: string;
1430
+ opacity4Depth: string;
1431
+ opacity5Depth: string;
1432
+ }, any>;
1433
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
1434
+ color: string;
1435
+ opacity1Depth: string;
1436
+ opacity2Depth: string;
1437
+ opacity3Depth: string;
1438
+ opacity4Depth: string;
1439
+ opacity5Depth: string;
1440
+ }, any>;
1441
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
1442
+ color: string;
1443
+ opacity1Depth: string;
1444
+ opacity2Depth: string;
1445
+ opacity3Depth: string;
1446
+ opacity4Depth: string;
1447
+ opacity5Depth: string;
1448
+ }, any>;
1383
1449
  }>>>;
1384
1450
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
1385
1451
  backgroundColor: string;
@@ -1409,6 +1475,7 @@ export declare const chatMessagesProps: {
1409
1475
  footerBorderColor: string;
1410
1476
  inputBackgroundColor: string;
1411
1477
  inputBorderColor: string;
1478
+ inputSuffixColor: string;
1412
1479
  unreadNotificationBackgroundColor: string;
1413
1480
  unreadNotificationTextColor: string;
1414
1481
  typingIndicatorColor: string;
@@ -1942,14 +2009,6 @@ export declare const chatMessagesProps: {
1942
2009
  iconSizeLarge: string;
1943
2010
  rippleDuration: string;
1944
2011
  }, any>;
1945
- Icon: import("../../_mixins").Theme<"Icon", {
1946
- color: string;
1947
- opacity1Depth: string;
1948
- opacity2Depth: string;
1949
- opacity3Depth: string;
1950
- opacity4Depth: string;
1951
- opacity5Depth: string;
1952
- }, any>;
1953
2012
  List: import("../../_mixins").Theme<"List", {
1954
2013
  iconSize: string;
1955
2014
  iconSpace: string;
@@ -2045,6 +2104,46 @@ export declare const chatMessagesProps: {
2045
2104
  codeColor: string;
2046
2105
  codeBorder: string;
2047
2106
  }, any>;
2107
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2108
+ color: string;
2109
+ opacity1Depth: string;
2110
+ opacity2Depth: string;
2111
+ opacity3Depth: string;
2112
+ opacity4Depth: string;
2113
+ opacity5Depth: string;
2114
+ }, any>;
2115
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
2116
+ color: string;
2117
+ opacity1Depth: string;
2118
+ opacity2Depth: string;
2119
+ opacity3Depth: string;
2120
+ opacity4Depth: string;
2121
+ opacity5Depth: string;
2122
+ }, any>;
2123
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
2124
+ color: string;
2125
+ opacity1Depth: string;
2126
+ opacity2Depth: string;
2127
+ opacity3Depth: string;
2128
+ opacity4Depth: string;
2129
+ opacity5Depth: string;
2130
+ }, any>;
2131
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
2132
+ color: string;
2133
+ opacity1Depth: string;
2134
+ opacity2Depth: string;
2135
+ opacity3Depth: string;
2136
+ opacity4Depth: string;
2137
+ opacity5Depth: string;
2138
+ }, any>;
2139
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
2140
+ color: string;
2141
+ opacity1Depth: string;
2142
+ opacity2Depth: string;
2143
+ opacity3Depth: string;
2144
+ opacity4Depth: string;
2145
+ opacity5Depth: string;
2146
+ }, any>;
2048
2147
  }>>>;
2049
2148
  };
2050
2149
  export type ChatMessagesProps = ExtractPublicPropTypes<typeof chatMessagesProps>;
@@ -2125,6 +2224,7 @@ declare const _default: import("vue").DefineComponent<{
2125
2224
  footerBorderColor: string;
2126
2225
  inputBackgroundColor: string;
2127
2226
  inputBorderColor: string;
2227
+ inputSuffixColor: string;
2128
2228
  unreadNotificationBackgroundColor: string;
2129
2229
  unreadNotificationTextColor: string;
2130
2230
  typingIndicatorColor: string;
@@ -2658,14 +2758,6 @@ declare const _default: import("vue").DefineComponent<{
2658
2758
  iconSizeLarge: string;
2659
2759
  rippleDuration: string;
2660
2760
  }, any>;
2661
- Icon: import("../../_mixins").Theme<"Icon", {
2662
- color: string;
2663
- opacity1Depth: string;
2664
- opacity2Depth: string;
2665
- opacity3Depth: string;
2666
- opacity4Depth: string;
2667
- opacity5Depth: string;
2668
- }, any>;
2669
2761
  List: import("../../_mixins").Theme<"List", {
2670
2762
  iconSize: string;
2671
2763
  iconSpace: string;
@@ -2761,6 +2853,46 @@ declare const _default: import("vue").DefineComponent<{
2761
2853
  codeColor: string;
2762
2854
  codeBorder: string;
2763
2855
  }, any>;
2856
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2857
+ color: string;
2858
+ opacity1Depth: string;
2859
+ opacity2Depth: string;
2860
+ opacity3Depth: string;
2861
+ opacity4Depth: string;
2862
+ opacity5Depth: string;
2863
+ }, any>;
2864
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
2865
+ color: string;
2866
+ opacity1Depth: string;
2867
+ opacity2Depth: string;
2868
+ opacity3Depth: string;
2869
+ opacity4Depth: string;
2870
+ opacity5Depth: string;
2871
+ }, any>;
2872
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
2873
+ color: string;
2874
+ opacity1Depth: string;
2875
+ opacity2Depth: string;
2876
+ opacity3Depth: string;
2877
+ opacity4Depth: string;
2878
+ opacity5Depth: string;
2879
+ }, any>;
2880
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
2881
+ color: string;
2882
+ opacity1Depth: string;
2883
+ opacity2Depth: string;
2884
+ opacity3Depth: string;
2885
+ opacity4Depth: string;
2886
+ opacity5Depth: string;
2887
+ }, any>;
2888
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
2889
+ color: string;
2890
+ opacity1Depth: string;
2891
+ opacity2Depth: string;
2892
+ opacity3Depth: string;
2893
+ opacity4Depth: string;
2894
+ opacity5Depth: string;
2895
+ }, any>;
2764
2896
  }>>;
2765
2897
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
2766
2898
  backgroundColor: string;
@@ -2790,6 +2922,7 @@ declare const _default: import("vue").DefineComponent<{
2790
2922
  footerBorderColor: string;
2791
2923
  inputBackgroundColor: string;
2792
2924
  inputBorderColor: string;
2925
+ inputSuffixColor: string;
2793
2926
  unreadNotificationBackgroundColor: string;
2794
2927
  unreadNotificationTextColor: string;
2795
2928
  typingIndicatorColor: string;
@@ -3323,14 +3456,6 @@ declare const _default: import("vue").DefineComponent<{
3323
3456
  iconSizeLarge: string;
3324
3457
  rippleDuration: string;
3325
3458
  }, any>;
3326
- Icon: import("../../_mixins").Theme<"Icon", {
3327
- color: string;
3328
- opacity1Depth: string;
3329
- opacity2Depth: string;
3330
- opacity3Depth: string;
3331
- opacity4Depth: string;
3332
- opacity5Depth: string;
3333
- }, any>;
3334
3459
  List: import("../../_mixins").Theme<"List", {
3335
3460
  iconSize: string;
3336
3461
  iconSpace: string;
@@ -3426,6 +3551,46 @@ declare const _default: import("vue").DefineComponent<{
3426
3551
  codeColor: string;
3427
3552
  codeBorder: string;
3428
3553
  }, any>;
3554
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
3555
+ color: string;
3556
+ opacity1Depth: string;
3557
+ opacity2Depth: string;
3558
+ opacity3Depth: string;
3559
+ opacity4Depth: string;
3560
+ opacity5Depth: string;
3561
+ }, any>;
3562
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
3563
+ color: string;
3564
+ opacity1Depth: string;
3565
+ opacity2Depth: string;
3566
+ opacity3Depth: string;
3567
+ opacity4Depth: string;
3568
+ opacity5Depth: string;
3569
+ }, any>;
3570
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
3571
+ color: string;
3572
+ opacity1Depth: string;
3573
+ opacity2Depth: string;
3574
+ opacity3Depth: string;
3575
+ opacity4Depth: string;
3576
+ opacity5Depth: string;
3577
+ }, any>;
3578
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
3579
+ color: string;
3580
+ opacity1Depth: string;
3581
+ opacity2Depth: string;
3582
+ opacity3Depth: string;
3583
+ opacity4Depth: string;
3584
+ opacity5Depth: string;
3585
+ }, any>;
3586
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
3587
+ color: string;
3588
+ opacity1Depth: string;
3589
+ opacity2Depth: string;
3590
+ opacity3Depth: string;
3591
+ opacity4Depth: string;
3592
+ opacity5Depth: string;
3593
+ }, any>;
3429
3594
  }>>>;
3430
3595
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
3431
3596
  backgroundColor: string;
@@ -3455,6 +3620,7 @@ declare const _default: import("vue").DefineComponent<{
3455
3620
  footerBorderColor: string;
3456
3621
  inputBackgroundColor: string;
3457
3622
  inputBorderColor: string;
3623
+ inputSuffixColor: string;
3458
3624
  unreadNotificationBackgroundColor: string;
3459
3625
  unreadNotificationTextColor: string;
3460
3626
  typingIndicatorColor: string;
@@ -3988,14 +4154,6 @@ declare const _default: import("vue").DefineComponent<{
3988
4154
  iconSizeLarge: string;
3989
4155
  rippleDuration: string;
3990
4156
  }, any>;
3991
- Icon: import("../../_mixins").Theme<"Icon", {
3992
- color: string;
3993
- opacity1Depth: string;
3994
- opacity2Depth: string;
3995
- opacity3Depth: string;
3996
- opacity4Depth: string;
3997
- opacity5Depth: string;
3998
- }, any>;
3999
4157
  List: import("../../_mixins").Theme<"List", {
4000
4158
  iconSize: string;
4001
4159
  iconSpace: string;
@@ -4091,6 +4249,46 @@ declare const _default: import("vue").DefineComponent<{
4091
4249
  codeColor: string;
4092
4250
  codeBorder: string;
4093
4251
  }, any>;
4252
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
4253
+ color: string;
4254
+ opacity1Depth: string;
4255
+ opacity2Depth: string;
4256
+ opacity3Depth: string;
4257
+ opacity4Depth: string;
4258
+ opacity5Depth: string;
4259
+ }, any>;
4260
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
4261
+ color: string;
4262
+ opacity1Depth: string;
4263
+ opacity2Depth: string;
4264
+ opacity3Depth: string;
4265
+ opacity4Depth: string;
4266
+ opacity5Depth: string;
4267
+ }, any>;
4268
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
4269
+ color: string;
4270
+ opacity1Depth: string;
4271
+ opacity2Depth: string;
4272
+ opacity3Depth: string;
4273
+ opacity4Depth: string;
4274
+ opacity5Depth: string;
4275
+ }, any>;
4276
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
4277
+ color: string;
4278
+ opacity1Depth: string;
4279
+ opacity2Depth: string;
4280
+ opacity3Depth: string;
4281
+ opacity4Depth: string;
4282
+ opacity5Depth: string;
4283
+ }, any>;
4284
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
4285
+ color: string;
4286
+ opacity1Depth: string;
4287
+ opacity2Depth: string;
4288
+ opacity3Depth: string;
4289
+ opacity4Depth: string;
4290
+ opacity5Depth: string;
4291
+ }, any>;
4094
4292
  }>>>;
4095
4293
  }, {
4096
4294
  mergedClsPrefixRef: import("vue").Ref<string>;
@@ -4124,6 +4322,7 @@ declare const _default: import("vue").DefineComponent<{
4124
4322
  footerBorderColor: string;
4125
4323
  inputBackgroundColor: string;
4126
4324
  inputBorderColor: string;
4325
+ inputSuffixColor: string;
4127
4326
  unreadNotificationBackgroundColor: string;
4128
4327
  unreadNotificationTextColor: string;
4129
4328
  typingIndicatorColor: string;
@@ -4658,14 +4857,6 @@ declare const _default: import("vue").DefineComponent<{
4658
4857
  iconSizeLarge: string;
4659
4858
  rippleDuration: string;
4660
4859
  }, any>;
4661
- Icon: import("../../_mixins").Theme<"Icon", {
4662
- color: string;
4663
- opacity1Depth: string;
4664
- opacity2Depth: string;
4665
- opacity3Depth: string;
4666
- opacity4Depth: string;
4667
- opacity5Depth: string;
4668
- }, any>;
4669
4860
  List: import("../../_mixins").Theme<"List", {
4670
4861
  iconSize: string;
4671
4862
  iconSpace: string;
@@ -4761,6 +4952,46 @@ declare const _default: import("vue").DefineComponent<{
4761
4952
  codeColor: string;
4762
4953
  codeBorder: string;
4763
4954
  }, any>;
4955
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
4956
+ color: string;
4957
+ opacity1Depth: string;
4958
+ opacity2Depth: string;
4959
+ opacity3Depth: string;
4960
+ opacity4Depth: string;
4961
+ opacity5Depth: string;
4962
+ }, any>;
4963
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
4964
+ color: string;
4965
+ opacity1Depth: string;
4966
+ opacity2Depth: string;
4967
+ opacity3Depth: string;
4968
+ opacity4Depth: string;
4969
+ opacity5Depth: string;
4970
+ }, any>;
4971
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
4972
+ color: string;
4973
+ opacity1Depth: string;
4974
+ opacity2Depth: string;
4975
+ opacity3Depth: string;
4976
+ opacity4Depth: string;
4977
+ opacity5Depth: string;
4978
+ }, any>;
4979
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
4980
+ color: string;
4981
+ opacity1Depth: string;
4982
+ opacity2Depth: string;
4983
+ opacity3Depth: string;
4984
+ opacity4Depth: string;
4985
+ opacity5Depth: string;
4986
+ }, any>;
4987
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
4988
+ color: string;
4989
+ opacity1Depth: string;
4990
+ opacity2Depth: string;
4991
+ opacity3Depth: string;
4992
+ opacity4Depth: string;
4993
+ opacity5Depth: string;
4994
+ }, any>;
4764
4995
  };
4765
4996
  peerOverrides: {
4766
4997
  Input?: {
@@ -4980,17 +5211,37 @@ declare const _default: import("vue").DefineComponent<{
4980
5211
  [x: string]: any;
4981
5212
  } | undefined;
4982
5213
  } | undefined;
4983
- Icon?: {
5214
+ List?: {
4984
5215
  peers?: {
4985
5216
  [x: string]: any;
4986
5217
  } | undefined;
4987
5218
  } | undefined;
4988
- List?: {
5219
+ Typography?: {
4989
5220
  peers?: {
4990
5221
  [x: string]: any;
4991
5222
  } | undefined;
4992
5223
  } | undefined;
4993
- Typography?: {
5224
+ StatusIcon?: {
5225
+ peers?: {
5226
+ [x: string]: any;
5227
+ } | undefined;
5228
+ } | undefined;
5229
+ FooterAttachIcon?: {
5230
+ peers?: {
5231
+ [x: string]: any;
5232
+ } | undefined;
5233
+ } | undefined;
5234
+ FooterSuffixIcon?: {
5235
+ peers?: {
5236
+ [x: string]: any;
5237
+ } | undefined;
5238
+ } | undefined;
5239
+ HeaderShareIcon?: {
5240
+ peers?: {
5241
+ [x: string]: any;
5242
+ } | undefined;
5243
+ } | undefined;
5244
+ HeaderProfileIcon?: {
4994
5245
  peers?: {
4995
5246
  [x: string]: any;
4996
5247
  } | undefined;
@@ -5026,6 +5277,7 @@ declare const _default: import("vue").DefineComponent<{
5026
5277
  footerBorderColor: string;
5027
5278
  inputBackgroundColor: string;
5028
5279
  inputBorderColor: string;
5280
+ inputSuffixColor: string;
5029
5281
  unreadNotificationBackgroundColor: string;
5030
5282
  unreadNotificationTextColor: string;
5031
5283
  typingIndicatorColor: string;
@@ -5560,14 +5812,6 @@ declare const _default: import("vue").DefineComponent<{
5560
5812
  iconSizeLarge: string;
5561
5813
  rippleDuration: string;
5562
5814
  }, any>;
5563
- Icon: import("../../_mixins").Theme<"Icon", {
5564
- color: string;
5565
- opacity1Depth: string;
5566
- opacity2Depth: string;
5567
- opacity3Depth: string;
5568
- opacity4Depth: string;
5569
- opacity5Depth: string;
5570
- }, any>;
5571
5815
  List: import("../../_mixins").Theme<"List", {
5572
5816
  iconSize: string;
5573
5817
  iconSpace: string;
@@ -5663,6 +5907,46 @@ declare const _default: import("vue").DefineComponent<{
5663
5907
  codeColor: string;
5664
5908
  codeBorder: string;
5665
5909
  }, any>;
5910
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
5911
+ color: string;
5912
+ opacity1Depth: string;
5913
+ opacity2Depth: string;
5914
+ opacity3Depth: string;
5915
+ opacity4Depth: string;
5916
+ opacity5Depth: string;
5917
+ }, any>;
5918
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
5919
+ color: string;
5920
+ opacity1Depth: string;
5921
+ opacity2Depth: string;
5922
+ opacity3Depth: string;
5923
+ opacity4Depth: string;
5924
+ opacity5Depth: string;
5925
+ }, any>;
5926
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
5927
+ color: string;
5928
+ opacity1Depth: string;
5929
+ opacity2Depth: string;
5930
+ opacity3Depth: string;
5931
+ opacity4Depth: string;
5932
+ opacity5Depth: string;
5933
+ }, any>;
5934
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
5935
+ color: string;
5936
+ opacity1Depth: string;
5937
+ opacity2Depth: string;
5938
+ opacity3Depth: string;
5939
+ opacity4Depth: string;
5940
+ opacity5Depth: string;
5941
+ }, any>;
5942
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
5943
+ color: string;
5944
+ opacity1Depth: string;
5945
+ opacity2Depth: string;
5946
+ opacity3Depth: string;
5947
+ opacity4Depth: string;
5948
+ opacity5Depth: string;
5949
+ }, any>;
5666
5950
  };
5667
5951
  peerOverrides: {
5668
5952
  Input?: {
@@ -5882,17 +6166,37 @@ declare const _default: import("vue").DefineComponent<{
5882
6166
  [x: string]: any;
5883
6167
  } | undefined;
5884
6168
  } | undefined;
5885
- Icon?: {
6169
+ List?: {
5886
6170
  peers?: {
5887
6171
  [x: string]: any;
5888
6172
  } | undefined;
5889
6173
  } | undefined;
5890
- List?: {
6174
+ Typography?: {
5891
6175
  peers?: {
5892
6176
  [x: string]: any;
5893
6177
  } | undefined;
5894
6178
  } | undefined;
5895
- Typography?: {
6179
+ StatusIcon?: {
6180
+ peers?: {
6181
+ [x: string]: any;
6182
+ } | undefined;
6183
+ } | undefined;
6184
+ FooterAttachIcon?: {
6185
+ peers?: {
6186
+ [x: string]: any;
6187
+ } | undefined;
6188
+ } | undefined;
6189
+ FooterSuffixIcon?: {
6190
+ peers?: {
6191
+ [x: string]: any;
6192
+ } | undefined;
6193
+ } | undefined;
6194
+ HeaderShareIcon?: {
6195
+ peers?: {
6196
+ [x: string]: any;
6197
+ } | undefined;
6198
+ } | undefined;
6199
+ HeaderProfileIcon?: {
5896
6200
  peers?: {
5897
6201
  [x: string]: any;
5898
6202
  } | undefined;
@@ -5905,6 +6209,10 @@ declare const _default: import("vue").DefineComponent<{
5905
6209
  renderSkeletonMessage: (isOwn: boolean, index: number) => JSX.Element;
5906
6210
  renderDateSeparator: (date: string) => JSX.Element;
5907
6211
  renderUnreadNotification: () => JSX.Element;
6212
+ contextMenuShow: import("vue").Ref<boolean>;
6213
+ contextMenuMessage: import("vue").Ref<ChatMessageData | undefined>;
6214
+ messageContextMenuOptions: import("vue").ComputedRef<import("../..").MenuOption[] | undefined>;
6215
+ handleContextMenuSelect: (key: string) => void;
5908
6216
  cssVars: import("vue").ComputedRef<{
5909
6217
  '--u-bezier': string;
5910
6218
  '--u-color-primary': string;
@@ -6013,6 +6321,7 @@ declare const _default: import("vue").DefineComponent<{
6013
6321
  footerBorderColor: string;
6014
6322
  inputBackgroundColor: string;
6015
6323
  inputBorderColor: string;
6324
+ inputSuffixColor: string;
6016
6325
  unreadNotificationBackgroundColor: string;
6017
6326
  unreadNotificationTextColor: string;
6018
6327
  typingIndicatorColor: string;
@@ -6546,14 +6855,6 @@ declare const _default: import("vue").DefineComponent<{
6546
6855
  iconSizeLarge: string;
6547
6856
  rippleDuration: string;
6548
6857
  }, any>;
6549
- Icon: import("../../_mixins").Theme<"Icon", {
6550
- color: string;
6551
- opacity1Depth: string;
6552
- opacity2Depth: string;
6553
- opacity3Depth: string;
6554
- opacity4Depth: string;
6555
- opacity5Depth: string;
6556
- }, any>;
6557
6858
  List: import("../../_mixins").Theme<"List", {
6558
6859
  iconSize: string;
6559
6860
  iconSpace: string;
@@ -6649,6 +6950,46 @@ declare const _default: import("vue").DefineComponent<{
6649
6950
  codeColor: string;
6650
6951
  codeBorder: string;
6651
6952
  }, any>;
6953
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
6954
+ color: string;
6955
+ opacity1Depth: string;
6956
+ opacity2Depth: string;
6957
+ opacity3Depth: string;
6958
+ opacity4Depth: string;
6959
+ opacity5Depth: string;
6960
+ }, any>;
6961
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
6962
+ color: string;
6963
+ opacity1Depth: string;
6964
+ opacity2Depth: string;
6965
+ opacity3Depth: string;
6966
+ opacity4Depth: string;
6967
+ opacity5Depth: string;
6968
+ }, any>;
6969
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
6970
+ color: string;
6971
+ opacity1Depth: string;
6972
+ opacity2Depth: string;
6973
+ opacity3Depth: string;
6974
+ opacity4Depth: string;
6975
+ opacity5Depth: string;
6976
+ }, any>;
6977
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
6978
+ color: string;
6979
+ opacity1Depth: string;
6980
+ opacity2Depth: string;
6981
+ opacity3Depth: string;
6982
+ opacity4Depth: string;
6983
+ opacity5Depth: string;
6984
+ }, any>;
6985
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
6986
+ color: string;
6987
+ opacity1Depth: string;
6988
+ opacity2Depth: string;
6989
+ opacity3Depth: string;
6990
+ opacity4Depth: string;
6991
+ opacity5Depth: string;
6992
+ }, any>;
6652
6993
  }>>;
6653
6994
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
6654
6995
  backgroundColor: string;
@@ -6678,6 +7019,7 @@ declare const _default: import("vue").DefineComponent<{
6678
7019
  footerBorderColor: string;
6679
7020
  inputBackgroundColor: string;
6680
7021
  inputBorderColor: string;
7022
+ inputSuffixColor: string;
6681
7023
  unreadNotificationBackgroundColor: string;
6682
7024
  unreadNotificationTextColor: string;
6683
7025
  typingIndicatorColor: string;
@@ -7211,14 +7553,6 @@ declare const _default: import("vue").DefineComponent<{
7211
7553
  iconSizeLarge: string;
7212
7554
  rippleDuration: string;
7213
7555
  }, any>;
7214
- Icon: import("../../_mixins").Theme<"Icon", {
7215
- color: string;
7216
- opacity1Depth: string;
7217
- opacity2Depth: string;
7218
- opacity3Depth: string;
7219
- opacity4Depth: string;
7220
- opacity5Depth: string;
7221
- }, any>;
7222
7556
  List: import("../../_mixins").Theme<"List", {
7223
7557
  iconSize: string;
7224
7558
  iconSpace: string;
@@ -7314,6 +7648,46 @@ declare const _default: import("vue").DefineComponent<{
7314
7648
  codeColor: string;
7315
7649
  codeBorder: string;
7316
7650
  }, any>;
7651
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
7652
+ color: string;
7653
+ opacity1Depth: string;
7654
+ opacity2Depth: string;
7655
+ opacity3Depth: string;
7656
+ opacity4Depth: string;
7657
+ opacity5Depth: string;
7658
+ }, any>;
7659
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
7660
+ color: string;
7661
+ opacity1Depth: string;
7662
+ opacity2Depth: string;
7663
+ opacity3Depth: string;
7664
+ opacity4Depth: string;
7665
+ opacity5Depth: string;
7666
+ }, any>;
7667
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
7668
+ color: string;
7669
+ opacity1Depth: string;
7670
+ opacity2Depth: string;
7671
+ opacity3Depth: string;
7672
+ opacity4Depth: string;
7673
+ opacity5Depth: string;
7674
+ }, any>;
7675
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
7676
+ color: string;
7677
+ opacity1Depth: string;
7678
+ opacity2Depth: string;
7679
+ opacity3Depth: string;
7680
+ opacity4Depth: string;
7681
+ opacity5Depth: string;
7682
+ }, any>;
7683
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
7684
+ color: string;
7685
+ opacity1Depth: string;
7686
+ opacity2Depth: string;
7687
+ opacity3Depth: string;
7688
+ opacity4Depth: string;
7689
+ opacity5Depth: string;
7690
+ }, any>;
7317
7691
  }>>>;
7318
7692
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
7319
7693
  backgroundColor: string;
@@ -7343,6 +7717,7 @@ declare const _default: import("vue").DefineComponent<{
7343
7717
  footerBorderColor: string;
7344
7718
  inputBackgroundColor: string;
7345
7719
  inputBorderColor: string;
7720
+ inputSuffixColor: string;
7346
7721
  unreadNotificationBackgroundColor: string;
7347
7722
  unreadNotificationTextColor: string;
7348
7723
  typingIndicatorColor: string;
@@ -7876,14 +8251,6 @@ declare const _default: import("vue").DefineComponent<{
7876
8251
  iconSizeLarge: string;
7877
8252
  rippleDuration: string;
7878
8253
  }, any>;
7879
- Icon: import("../../_mixins").Theme<"Icon", {
7880
- color: string;
7881
- opacity1Depth: string;
7882
- opacity2Depth: string;
7883
- opacity3Depth: string;
7884
- opacity4Depth: string;
7885
- opacity5Depth: string;
7886
- }, any>;
7887
8254
  List: import("../../_mixins").Theme<"List", {
7888
8255
  iconSize: string;
7889
8256
  iconSpace: string;
@@ -7979,6 +8346,46 @@ declare const _default: import("vue").DefineComponent<{
7979
8346
  codeColor: string;
7980
8347
  codeBorder: string;
7981
8348
  }, any>;
8349
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
8350
+ color: string;
8351
+ opacity1Depth: string;
8352
+ opacity2Depth: string;
8353
+ opacity3Depth: string;
8354
+ opacity4Depth: string;
8355
+ opacity5Depth: string;
8356
+ }, any>;
8357
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
8358
+ color: string;
8359
+ opacity1Depth: string;
8360
+ opacity2Depth: string;
8361
+ opacity3Depth: string;
8362
+ opacity4Depth: string;
8363
+ opacity5Depth: string;
8364
+ }, any>;
8365
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
8366
+ color: string;
8367
+ opacity1Depth: string;
8368
+ opacity2Depth: string;
8369
+ opacity3Depth: string;
8370
+ opacity4Depth: string;
8371
+ opacity5Depth: string;
8372
+ }, any>;
8373
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
8374
+ color: string;
8375
+ opacity1Depth: string;
8376
+ opacity2Depth: string;
8377
+ opacity3Depth: string;
8378
+ opacity4Depth: string;
8379
+ opacity5Depth: string;
8380
+ }, any>;
8381
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
8382
+ color: string;
8383
+ opacity1Depth: string;
8384
+ opacity2Depth: string;
8385
+ opacity3Depth: string;
8386
+ opacity4Depth: string;
8387
+ opacity5Depth: string;
8388
+ }, any>;
7982
8389
  }>>>;
7983
8390
  }>>, {
7984
8391
  readonly loading: boolean;