@sendbird/uikit-react 3.9.0 → 3.9.1-rc-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 (1917) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/App.js +421 -0
  3. package/dist/CHANGELOG.md +1975 -0
  4. package/dist/Channel/components/ChannelHeader.js +67 -0
  5. package/dist/Channel/components/ChannelUI.js +161 -0
  6. package/dist/Channel/components/FileViewer.js +88 -0
  7. package/dist/Channel/components/FrozenNotification.js +16 -0
  8. package/dist/Channel/components/Message.js +341 -0
  9. package/dist/Channel/components/MessageInput.js +204 -0
  10. package/dist/Channel/components/MessageList.js +111 -0
  11. package/dist/Channel/components/RemoveMessageModal.js +52 -0
  12. package/dist/Channel/components/SuggestedMentionList.js +198 -0
  13. package/dist/Channel/components/TypingIndicator.js +84 -0
  14. package/dist/Channel/components/UnreadCount.js +33 -0
  15. package/dist/Channel/context.js +24 -0
  16. package/dist/Channel/hooks/useHandleUploadFiles.js +237 -0
  17. package/dist/Channel/hooks/useInitialMessagesFetch.js +109 -0
  18. package/dist/Channel/utils/compareMessagesForGrouping.js +26 -0
  19. package/dist/Channel/utils/getMessagePartsInfo.js +34 -0
  20. package/dist/Channel.js +131 -0
  21. package/dist/ChannelList/components/AddChannel.js +61 -0
  22. package/dist/ChannelList/components/ChannelListHeader.js +41 -0
  23. package/dist/ChannelList/components/ChannelListUI.js +147 -0
  24. package/dist/ChannelList/components/ChannelPreview.js +131 -0
  25. package/dist/ChannelList/components/ChannelPreviewAction.js +71 -0
  26. package/dist/ChannelList/context.js +15 -0
  27. package/dist/ChannelList.js +81 -0
  28. package/dist/ChannelSettings/components/ChannelProfile.js +65 -0
  29. package/dist/ChannelSettings/components/ChannelSettingsUI.js +119 -0
  30. package/dist/ChannelSettings/components/EditDetailsModal.js +97 -0
  31. package/dist/ChannelSettings/components/LeaveChannel.js +67 -0
  32. package/dist/ChannelSettings/components/ModerationPanel.js +455 -0
  33. package/dist/ChannelSettings/components/UserListItem.js +67 -0
  34. package/dist/ChannelSettings/components/UserPanel.js +64 -0
  35. package/dist/ChannelSettings/context.js +69 -0
  36. package/dist/ChannelSettings.js +61 -0
  37. package/dist/CreateChannel/components/CreateChannelUI.js +48 -0
  38. package/dist/CreateChannel/components/InviteUsers.js +167 -0
  39. package/dist/CreateChannel/components/SelectChannelType.js +80 -0
  40. package/dist/CreateChannel/context.js +9 -0
  41. package/dist/CreateChannel.js +44 -0
  42. package/dist/CreateOpenChannel/components/CreateOpenChannelUI.js +68 -0
  43. package/dist/CreateOpenChannel/context.js +49 -0
  44. package/dist/CreateOpenChannel.js +33 -0
  45. package/dist/EditUserProfile/components/EditUserProfileUI.js +118 -0
  46. package/dist/EditUserProfile/components/EditUserProfileUI.js.map +1 -0
  47. package/dist/EditUserProfile.js +34 -0
  48. package/dist/LICENSE +21 -0
  49. package/dist/MessageSearch/components/MessageSearchUI.js +89 -0
  50. package/dist/MessageSearch/context.js +258 -0
  51. package/dist/MessageSearch.js +77 -0
  52. package/dist/OpenChannel/components/FrozenChannelNotification.js +15 -0
  53. package/dist/OpenChannel/components/OpenChannelHeader.js +47 -0
  54. package/dist/OpenChannel/components/OpenChannelInput.js +56 -0
  55. package/dist/OpenChannel/components/OpenChannelMessage.js +196 -0
  56. package/dist/OpenChannel/components/OpenChannelMessageList.js +121 -0
  57. package/dist/OpenChannel/components/OpenChannelUI.js +101 -0
  58. package/dist/OpenChannel/context.js +14 -0
  59. package/dist/OpenChannel.js +79 -0
  60. package/dist/OpenChannelList/components/OpenChannelListUI.js +114 -0
  61. package/dist/OpenChannelList/components/OpenChannelPreview.js +29 -0
  62. package/dist/OpenChannelList/context.js +7 -0
  63. package/dist/OpenChannelList.js +45 -0
  64. package/dist/OpenChannelSettings/components/EditDetailsModal.js +89 -0
  65. package/dist/OpenChannelSettings/components/OpenChannelProfile.js +56 -0
  66. package/dist/OpenChannelSettings/components/OpenChannelSettingsUI.js +90 -0
  67. package/dist/OpenChannelSettings/components/OperatorUI.js +502 -0
  68. package/dist/OpenChannelSettings/components/ParticipantUI.js +36 -0
  69. package/dist/OpenChannelSettings/context.js +123 -0
  70. package/dist/OpenChannelSettings.js +56 -0
  71. package/dist/README.md +172 -0
  72. package/dist/SendbirdProvider.js +1060 -0
  73. package/dist/Thread/components/ParentMessageInfo.js +252 -0
  74. package/dist/Thread/components/ParentMessageInfo.js.map +1 -0
  75. package/dist/Thread/components/ParentMessageInfoItem.js +148 -0
  76. package/dist/Thread/components/ThreadHeader.js +32 -0
  77. package/dist/Thread/components/ThreadList.js +170 -0
  78. package/dist/Thread/components/ThreadListItem.js +333 -0
  79. package/dist/Thread/components/ThreadListItem.js.map +1 -0
  80. package/dist/Thread/components/ThreadMessageInput.js +186 -0
  81. package/dist/Thread/components/ThreadUI.js +265 -0
  82. package/dist/Thread/context.js +1334 -0
  83. package/dist/Thread/context.js.map +1 -0
  84. package/dist/Thread.js +127 -0
  85. package/dist/VoicePlayer/context.js +7 -0
  86. package/dist/VoicePlayer/useVoicePlayer.js +71 -0
  87. package/dist/VoiceRecorder/context.js +132 -0
  88. package/dist/VoiceRecorder/useVoiceRecorder.js +108 -0
  89. package/dist/chunks/bundle-2B6mR7lS.js +5 -0
  90. package/dist/chunks/bundle-2B6mR7lS.js.map +1 -0
  91. package/dist/chunks/bundle-57J_rNKG.js +218 -0
  92. package/dist/chunks/bundle-57J_rNKG.js.map +1 -0
  93. package/dist/chunks/bundle-8X1nAYfO.js +26 -0
  94. package/dist/chunks/bundle-8X1nAYfO.js.map +1 -0
  95. package/dist/chunks/bundle-9-tPTMF6.js +31 -0
  96. package/dist/chunks/bundle-9-tPTMF6.js.map +1 -0
  97. package/dist/chunks/bundle-9ALYHYD3.js +4 -0
  98. package/dist/chunks/bundle-9ALYHYD3.js.map +1 -0
  99. package/dist/chunks/bundle-AEcqxqSG.js +235 -0
  100. package/dist/chunks/bundle-AEcqxqSG.js.map +1 -0
  101. package/dist/chunks/bundle-AMYEkxzX.js +13 -0
  102. package/dist/chunks/bundle-AMYEkxzX.js.map +1 -0
  103. package/dist/chunks/bundle-AVPtRzYX.js +508 -0
  104. package/dist/chunks/bundle-AVPtRzYX.js.map +1 -0
  105. package/dist/chunks/bundle-ByTzgRFn.js +15 -0
  106. package/dist/chunks/bundle-ByTzgRFn.js.map +1 -0
  107. package/dist/chunks/bundle-CLDXxwLM.js +176 -0
  108. package/dist/chunks/bundle-CLDXxwLM.js.map +1 -0
  109. package/dist/chunks/bundle-EqiEY2Nn.js +8 -0
  110. package/dist/chunks/bundle-EqiEY2Nn.js.map +1 -0
  111. package/dist/chunks/bundle-FMGkHNLt.js +98 -0
  112. package/dist/chunks/bundle-FMGkHNLt.js.map +1 -0
  113. package/dist/chunks/bundle-FX71optm.js +131 -0
  114. package/dist/chunks/bundle-FX71optm.js.map +1 -0
  115. package/dist/chunks/bundle-G8GLQXTO.js +4 -0
  116. package/dist/chunks/bundle-G8GLQXTO.js.map +1 -0
  117. package/dist/chunks/bundle-GJNoquF6.js +97 -0
  118. package/dist/chunks/bundle-GJNoquF6.js.map +1 -0
  119. package/dist/chunks/bundle-GRnEd_QH.js +826 -0
  120. package/dist/chunks/bundle-GRnEd_QH.js.map +1 -0
  121. package/dist/chunks/bundle-GYvOjWpg.js +1455 -0
  122. package/dist/chunks/bundle-GYvOjWpg.js.map +1 -0
  123. package/dist/chunks/bundle-HR7k1oX_.js +211 -0
  124. package/dist/chunks/bundle-HR7k1oX_.js.map +1 -0
  125. package/dist/chunks/bundle-HW_QF-4u.js +125 -0
  126. package/dist/chunks/bundle-HW_QF-4u.js.map +1 -0
  127. package/dist/chunks/bundle-J9tCz8wR.js +57 -0
  128. package/dist/chunks/bundle-J9tCz8wR.js.map +1 -0
  129. package/dist/chunks/bundle-JK2Q6D_x.js +69 -0
  130. package/dist/chunks/bundle-JK2Q6D_x.js.map +1 -0
  131. package/dist/chunks/bundle-KFLmR6GT.js +216 -0
  132. package/dist/chunks/bundle-KFLmR6GT.js.map +1 -0
  133. package/dist/chunks/bundle-Kt5vds0t.js +14 -0
  134. package/dist/chunks/bundle-Kt5vds0t.js.map +1 -0
  135. package/dist/chunks/bundle-Nma4juhn.js +355 -0
  136. package/dist/chunks/bundle-Nma4juhn.js.map +1 -0
  137. package/dist/chunks/bundle-NtsuR2jy.js +132 -0
  138. package/dist/chunks/bundle-NtsuR2jy.js.map +1 -0
  139. package/dist/chunks/bundle-OFGxFTUd.js +4 -0
  140. package/dist/chunks/bundle-OFGxFTUd.js.map +1 -0
  141. package/dist/chunks/bundle-OerEiFz_.js +222 -0
  142. package/dist/chunks/bundle-OerEiFz_.js.map +1 -0
  143. package/dist/chunks/bundle-S6TeHj26.js +16 -0
  144. package/dist/chunks/bundle-S6TeHj26.js.map +1 -0
  145. package/dist/chunks/bundle-SJRIss8U.js +24 -0
  146. package/dist/chunks/bundle-SJRIss8U.js.map +1 -0
  147. package/dist/chunks/bundle-SKHpSe-O.js +13 -0
  148. package/dist/chunks/bundle-SKHpSe-O.js.map +1 -0
  149. package/dist/chunks/bundle-TTdZBzDh.js +96 -0
  150. package/dist/chunks/bundle-TTdZBzDh.js.map +1 -0
  151. package/dist/chunks/bundle-UZkghioh.js +66 -0
  152. package/dist/chunks/bundle-UZkghioh.js.map +1 -0
  153. package/dist/chunks/bundle-WPbjUIH4.js +1541 -0
  154. package/dist/chunks/bundle-WPbjUIH4.js.map +1 -0
  155. package/dist/chunks/bundle-YDz5jygM.js +230 -0
  156. package/dist/chunks/bundle-YDz5jygM.js.map +1 -0
  157. package/dist/chunks/bundle-YVb8yq4r.js +16 -0
  158. package/dist/chunks/bundle-YVb8yq4r.js.map +1 -0
  159. package/dist/chunks/bundle-Ya3GgL5O.js +134 -0
  160. package/dist/chunks/bundle-Ya3GgL5O.js.map +1 -0
  161. package/dist/chunks/bundle-ZqXMPrmp.js +76 -0
  162. package/dist/chunks/bundle-ZqXMPrmp.js.map +1 -0
  163. package/dist/chunks/bundle-_1VUCC76.js +36 -0
  164. package/dist/chunks/bundle-_1VUCC76.js.map +1 -0
  165. package/dist/chunks/bundle-a2yw1o23.js +18 -0
  166. package/dist/chunks/bundle-a2yw1o23.js.map +1 -0
  167. package/dist/chunks/bundle-aEpFcq3f.js +174 -0
  168. package/dist/chunks/bundle-aEpFcq3f.js.map +1 -0
  169. package/dist/chunks/bundle-ar5N3zzO.js +28 -0
  170. package/dist/chunks/bundle-ar5N3zzO.js.map +1 -0
  171. package/dist/chunks/bundle-c2TdIUS1.js +1853 -0
  172. package/dist/chunks/bundle-c2TdIUS1.js.map +1 -0
  173. package/dist/chunks/bundle-c43jZuGE.js +174 -0
  174. package/dist/chunks/bundle-c43jZuGE.js.map +1 -0
  175. package/dist/chunks/bundle-djn2Lw7s.js +42 -0
  176. package/dist/chunks/bundle-djn2Lw7s.js.map +1 -0
  177. package/dist/chunks/bundle-iBVztNIJ.js +70 -0
  178. package/dist/chunks/bundle-iBVztNIJ.js.map +1 -0
  179. package/dist/chunks/bundle-j8sCh2q6.js +25 -0
  180. package/dist/chunks/bundle-j8sCh2q6.js.map +1 -0
  181. package/dist/chunks/bundle-k75zWMDn.js +262 -0
  182. package/dist/chunks/bundle-k75zWMDn.js.map +1 -0
  183. package/dist/chunks/bundle-lN7OiHSz.js +147 -0
  184. package/dist/chunks/bundle-lN7OiHSz.js.map +1 -0
  185. package/dist/chunks/bundle-oliby3QR.js +4 -0
  186. package/dist/chunks/bundle-oliby3QR.js.map +1 -0
  187. package/dist/chunks/bundle-qyl9VDFm.js +62 -0
  188. package/dist/chunks/bundle-qyl9VDFm.js.map +1 -0
  189. package/dist/chunks/bundle-r4JH75Z9.js +78 -0
  190. package/dist/chunks/bundle-r4JH75Z9.js.map +1 -0
  191. package/dist/chunks/bundle-tAWds1ZJ.js +9 -0
  192. package/dist/chunks/bundle-tAWds1ZJ.js.map +1 -0
  193. package/dist/chunks/bundle-tFB0rApi.js +36 -0
  194. package/dist/chunks/bundle-tFB0rApi.js.map +1 -0
  195. package/dist/chunks/bundle-u50YHJ4r.js +72 -0
  196. package/dist/chunks/bundle-u50YHJ4r.js.map +1 -0
  197. package/dist/chunks/bundle-v54c93Bz.js +77 -0
  198. package/dist/chunks/bundle-v54c93Bz.js.map +1 -0
  199. package/dist/chunks/bundle-vYoSgX_9.js +29 -0
  200. package/dist/chunks/bundle-vYoSgX_9.js.map +1 -0
  201. package/dist/chunks/bundle-w5oQiIVl.js +12 -0
  202. package/dist/chunks/bundle-w5oQiIVl.js.map +1 -0
  203. package/dist/chunks/bundle-wTMK19qT.js +657 -0
  204. package/dist/chunks/bundle-wTMK19qT.js.map +1 -0
  205. package/dist/chunks/bundle-wiYJT_VX.js +277 -0
  206. package/dist/chunks/bundle-wiYJT_VX.js.map +1 -0
  207. package/dist/chunks/bundle-y_cPOJGG.js +30 -0
  208. package/dist/chunks/bundle-y_cPOJGG.js.map +1 -0
  209. package/dist/chunks/bundle-z7m0Jz63.js +24 -0
  210. package/dist/chunks/bundle-z7m0Jz63.js.map +1 -0
  211. package/dist/cjs/App.js +423 -0
  212. package/dist/cjs/Channel/components/ChannelHeader.js +69 -0
  213. package/dist/cjs/Channel/components/ChannelUI.js +163 -0
  214. package/dist/cjs/Channel/components/FileViewer.js +93 -0
  215. package/dist/cjs/Channel/components/FrozenNotification.js +18 -0
  216. package/dist/cjs/Channel/components/Message.js +343 -0
  217. package/dist/cjs/Channel/components/MessageInput.js +209 -0
  218. package/dist/cjs/Channel/components/MessageList.js +117 -0
  219. package/dist/cjs/Channel/components/RemoveMessageModal.js +54 -0
  220. package/dist/cjs/Channel/components/SuggestedMentionList.js +200 -0
  221. package/dist/cjs/Channel/components/TypingIndicator.js +89 -0
  222. package/dist/cjs/Channel/components/UnreadCount.js +35 -0
  223. package/dist/cjs/Channel/context.js +31 -0
  224. package/dist/cjs/Channel/hooks/useHandleUploadFiles.js +239 -0
  225. package/dist/cjs/Channel/hooks/useInitialMessagesFetch.js +111 -0
  226. package/dist/cjs/Channel/utils/compareMessagesForGrouping.js +28 -0
  227. package/dist/cjs/Channel/utils/getMessagePartsInfo.js +36 -0
  228. package/dist/cjs/Channel.js +133 -0
  229. package/dist/cjs/ChannelList/components/AddChannel.js +66 -0
  230. package/dist/cjs/ChannelList/components/ChannelListHeader.js +43 -0
  231. package/dist/cjs/ChannelList/components/ChannelListUI.js +149 -0
  232. package/dist/cjs/ChannelList/components/ChannelPreview.js +133 -0
  233. package/dist/cjs/ChannelList/components/ChannelPreviewAction.js +73 -0
  234. package/dist/cjs/ChannelList/context.js +22 -0
  235. package/dist/cjs/ChannelList.js +83 -0
  236. package/dist/cjs/ChannelSettings/components/ChannelProfile.js +67 -0
  237. package/dist/cjs/ChannelSettings/components/ChannelSettingsUI.js +121 -0
  238. package/dist/cjs/ChannelSettings/components/EditDetailsModal.js +99 -0
  239. package/dist/cjs/ChannelSettings/components/LeaveChannel.js +69 -0
  240. package/dist/cjs/ChannelSettings/components/ModerationPanel.js +457 -0
  241. package/dist/cjs/ChannelSettings/components/UserListItem.js +69 -0
  242. package/dist/cjs/ChannelSettings/components/UserListItem.js.map +1 -0
  243. package/dist/cjs/ChannelSettings/components/UserPanel.js +66 -0
  244. package/dist/cjs/ChannelSettings/context.js +72 -0
  245. package/dist/cjs/ChannelSettings.js +63 -0
  246. package/dist/cjs/CreateChannel/components/CreateChannelUI.js +50 -0
  247. package/dist/cjs/CreateChannel/components/InviteUsers.js +169 -0
  248. package/dist/cjs/CreateChannel/components/SelectChannelType.js +82 -0
  249. package/dist/cjs/CreateChannel/context.js +16 -0
  250. package/dist/cjs/CreateChannel.js +46 -0
  251. package/dist/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +70 -0
  252. package/dist/cjs/CreateOpenChannel/context.js +52 -0
  253. package/dist/cjs/CreateOpenChannel.js +35 -0
  254. package/dist/cjs/EditUserProfile/components/EditUserProfileUI.js +125 -0
  255. package/dist/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -0
  256. package/dist/cjs/EditUserProfile.js +36 -0
  257. package/dist/cjs/MessageSearch/components/MessageSearchUI.js +94 -0
  258. package/dist/cjs/MessageSearch/context.js +261 -0
  259. package/dist/cjs/MessageSearch.js +79 -0
  260. package/dist/cjs/OpenChannel/components/FrozenChannelNotification.js +17 -0
  261. package/dist/cjs/OpenChannel/components/OpenChannelHeader.js +49 -0
  262. package/dist/cjs/OpenChannel/components/OpenChannelInput.js +58 -0
  263. package/dist/cjs/OpenChannel/components/OpenChannelMessage.js +198 -0
  264. package/dist/cjs/OpenChannel/components/OpenChannelMessageList.js +123 -0
  265. package/dist/cjs/OpenChannel/components/OpenChannelUI.js +103 -0
  266. package/dist/cjs/OpenChannel/context.js +21 -0
  267. package/dist/cjs/OpenChannel.js +81 -0
  268. package/dist/cjs/OpenChannelList/components/OpenChannelListUI.js +116 -0
  269. package/dist/cjs/OpenChannelList/components/OpenChannelPreview.js +31 -0
  270. package/dist/cjs/OpenChannelList/context.js +17 -0
  271. package/dist/cjs/OpenChannelList.js +47 -0
  272. package/dist/cjs/OpenChannelSettings/components/EditDetailsModal.js +91 -0
  273. package/dist/cjs/OpenChannelSettings/components/OpenChannelProfile.js +58 -0
  274. package/dist/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +92 -0
  275. package/dist/cjs/OpenChannelSettings/components/OperatorUI.js +508 -0
  276. package/dist/cjs/OpenChannelSettings/components/ParticipantUI.js +42 -0
  277. package/dist/cjs/OpenChannelSettings/context.js +126 -0
  278. package/dist/cjs/OpenChannelSettings.js +58 -0
  279. package/dist/cjs/SendbirdProvider.js +1066 -0
  280. package/dist/cjs/Thread/components/ParentMessageInfo.js +254 -0
  281. package/dist/cjs/Thread/components/ParentMessageInfo.js.map +1 -0
  282. package/dist/cjs/Thread/components/ParentMessageInfoItem.js +150 -0
  283. package/dist/cjs/Thread/components/ThreadHeader.js +34 -0
  284. package/dist/cjs/Thread/components/ThreadList.js +172 -0
  285. package/dist/cjs/Thread/components/ThreadListItem.js +335 -0
  286. package/dist/cjs/Thread/components/ThreadListItem.js.map +1 -0
  287. package/dist/cjs/Thread/components/ThreadMessageInput.js +188 -0
  288. package/dist/cjs/Thread/components/ThreadUI.js +267 -0
  289. package/dist/cjs/Thread/context.js +1337 -0
  290. package/dist/cjs/Thread/context.js.map +1 -0
  291. package/dist/cjs/Thread.js +129 -0
  292. package/dist/cjs/VoicePlayer/context.js +15 -0
  293. package/dist/cjs/VoicePlayer/useVoicePlayer.js +73 -0
  294. package/dist/cjs/VoiceRecorder/context.js +138 -0
  295. package/dist/cjs/VoiceRecorder/useVoiceRecorder.js +111 -0
  296. package/dist/cjs/chunks/bundle--sK1aluY.js +7 -0
  297. package/dist/cjs/chunks/bundle--sK1aluY.js.map +1 -0
  298. package/dist/cjs/chunks/bundle--xyql9Ig.js +139 -0
  299. package/dist/cjs/chunks/bundle--xyql9Ig.js.map +1 -0
  300. package/dist/cjs/chunks/bundle-29H6Jsc5.js +178 -0
  301. package/dist/cjs/chunks/bundle-29H6Jsc5.js.map +1 -0
  302. package/dist/cjs/chunks/bundle-2B2B2GGi.js +15 -0
  303. package/dist/cjs/chunks/bundle-2B2B2GGi.js.map +1 -0
  304. package/dist/cjs/chunks/bundle-2aaytxwj.js +28 -0
  305. package/dist/cjs/chunks/bundle-2aaytxwj.js.map +1 -0
  306. package/dist/cjs/chunks/bundle-2utPAHKj.js +79 -0
  307. package/dist/cjs/chunks/bundle-2utPAHKj.js.map +1 -0
  308. package/dist/cjs/chunks/bundle-3WvVLPrn.js +8 -0
  309. package/dist/cjs/chunks/bundle-3WvVLPrn.js.map +1 -0
  310. package/dist/cjs/chunks/bundle-41kBJWv1.js +84 -0
  311. package/dist/cjs/chunks/bundle-41kBJWv1.js.map +1 -0
  312. package/dist/cjs/chunks/bundle-4eGWgY9M.js +159 -0
  313. package/dist/cjs/chunks/bundle-4eGWgY9M.js.map +1 -0
  314. package/dist/cjs/chunks/bundle-550f0XCa.js +109 -0
  315. package/dist/cjs/chunks/bundle-550f0XCa.js.map +1 -0
  316. package/dist/cjs/chunks/bundle-98hUmAMo.js +48 -0
  317. package/dist/cjs/chunks/bundle-98hUmAMo.js.map +1 -0
  318. package/dist/cjs/chunks/bundle-AD4Oflxo.js +75 -0
  319. package/dist/cjs/chunks/bundle-AD4Oflxo.js.map +1 -0
  320. package/dist/cjs/chunks/bundle-AkDULw2F.js +20 -0
  321. package/dist/cjs/chunks/bundle-AkDULw2F.js.map +1 -0
  322. package/dist/cjs/chunks/bundle-CDhpLgdo.js +707 -0
  323. package/dist/cjs/chunks/bundle-CDhpLgdo.js.map +1 -0
  324. package/dist/cjs/chunks/bundle-DFMVl_Mm.js +38 -0
  325. package/dist/cjs/chunks/bundle-DFMVl_Mm.js.map +1 -0
  326. package/dist/cjs/chunks/bundle-EW9CHi3w.js +32 -0
  327. package/dist/cjs/chunks/bundle-EW9CHi3w.js.map +1 -0
  328. package/dist/cjs/chunks/bundle-EXbRHVSB.js +831 -0
  329. package/dist/cjs/chunks/bundle-EXbRHVSB.js.map +1 -0
  330. package/dist/cjs/chunks/bundle-Ep-tjaav.js +74 -0
  331. package/dist/cjs/chunks/bundle-Ep-tjaav.js.map +1 -0
  332. package/dist/cjs/chunks/bundle-GmkLfTb8.js +224 -0
  333. package/dist/cjs/chunks/bundle-GmkLfTb8.js.map +1 -0
  334. package/dist/cjs/chunks/bundle-H-T9QzU6.js +19 -0
  335. package/dist/cjs/chunks/bundle-H-T9QzU6.js.map +1 -0
  336. package/dist/cjs/chunks/bundle-LFMgWHoT.js +27 -0
  337. package/dist/cjs/chunks/bundle-LFMgWHoT.js.map +1 -0
  338. package/dist/cjs/chunks/bundle-MP2S1vK8.js +179 -0
  339. package/dist/cjs/chunks/bundle-MP2S1vK8.js.map +1 -0
  340. package/dist/cjs/chunks/bundle-Mswmp_1O.js +16 -0
  341. package/dist/cjs/chunks/bundle-Mswmp_1O.js.map +1 -0
  342. package/dist/cjs/chunks/bundle-NBLrSxcj.js +1460 -0
  343. package/dist/cjs/chunks/bundle-NBLrSxcj.js.map +1 -0
  344. package/dist/cjs/chunks/bundle-NtafuClb.js +22 -0
  345. package/dist/cjs/chunks/bundle-NtafuClb.js.map +1 -0
  346. package/dist/cjs/chunks/bundle-NyrRrrQE.js +46 -0
  347. package/dist/cjs/chunks/bundle-NyrRrrQE.js.map +1 -0
  348. package/dist/cjs/chunks/bundle-O5wLOxN7.js +27 -0
  349. package/dist/cjs/chunks/bundle-O5wLOxN7.js.map +1 -0
  350. package/dist/cjs/chunks/bundle-PBiPabbQ.js +35 -0
  351. package/dist/cjs/chunks/bundle-PBiPabbQ.js.map +1 -0
  352. package/dist/cjs/chunks/bundle-PwiP9Ezo.js +510 -0
  353. package/dist/cjs/chunks/bundle-PwiP9Ezo.js.map +1 -0
  354. package/dist/cjs/chunks/bundle-PxOOmulx.js +6 -0
  355. package/dist/cjs/chunks/bundle-PxOOmulx.js.map +1 -0
  356. package/dist/cjs/chunks/bundle-QcbgU9KW.js +18 -0
  357. package/dist/cjs/chunks/bundle-QcbgU9KW.js.map +1 -0
  358. package/dist/cjs/chunks/bundle-RmtoGD4w.js +102 -0
  359. package/dist/cjs/chunks/bundle-RmtoGD4w.js.map +1 -0
  360. package/dist/cjs/chunks/bundle-S4LTyQ30.js +39 -0
  361. package/dist/cjs/chunks/bundle-S4LTyQ30.js.map +1 -0
  362. package/dist/cjs/chunks/bundle-SY-8B8r8.js +68 -0
  363. package/dist/cjs/chunks/bundle-SY-8B8r8.js.map +1 -0
  364. package/dist/cjs/chunks/bundle-SiCT4KKh.js +6 -0
  365. package/dist/cjs/chunks/bundle-SiCT4KKh.js.map +1 -0
  366. package/dist/cjs/chunks/bundle-Sx--KyLX.js +220 -0
  367. package/dist/cjs/chunks/bundle-Sx--KyLX.js.map +1 -0
  368. package/dist/cjs/chunks/bundle-T16VOUoM.js +6 -0
  369. package/dist/cjs/chunks/bundle-T16VOUoM.js.map +1 -0
  370. package/dist/cjs/chunks/bundle-TyT6Ozpd.js +26 -0
  371. package/dist/cjs/chunks/bundle-TyT6Ozpd.js.map +1 -0
  372. package/dist/cjs/chunks/bundle-VXYKCjcf.js +217 -0
  373. package/dist/cjs/chunks/bundle-VXYKCjcf.js.map +1 -0
  374. package/dist/cjs/chunks/bundle-WOnMwb1P.js +74 -0
  375. package/dist/cjs/chunks/bundle-WOnMwb1P.js.map +1 -0
  376. package/dist/cjs/chunks/bundle-Y1a8RrT8.js +11 -0
  377. package/dist/cjs/chunks/bundle-Y1a8RrT8.js.map +1 -0
  378. package/dist/cjs/chunks/bundle-cbDU-09l.js +236 -0
  379. package/dist/cjs/chunks/bundle-cbDU-09l.js.map +1 -0
  380. package/dist/cjs/chunks/bundle-cimsvery.js +1545 -0
  381. package/dist/cjs/chunks/bundle-cimsvery.js.map +1 -0
  382. package/dist/cjs/chunks/bundle-dR2UsXRP.js +137 -0
  383. package/dist/cjs/chunks/bundle-dR2UsXRP.js.map +1 -0
  384. package/dist/cjs/chunks/bundle-eMAdLQYS.js +30 -0
  385. package/dist/cjs/chunks/bundle-eMAdLQYS.js.map +1 -0
  386. package/dist/cjs/chunks/bundle-fFp5dCjH.js +238 -0
  387. package/dist/cjs/chunks/bundle-fFp5dCjH.js.map +1 -0
  388. package/dist/cjs/chunks/bundle-fXAUBZTE.js +181 -0
  389. package/dist/cjs/chunks/bundle-fXAUBZTE.js.map +1 -0
  390. package/dist/cjs/chunks/bundle-hAYm1E9a.js +10 -0
  391. package/dist/cjs/chunks/bundle-hAYm1E9a.js.map +1 -0
  392. package/dist/cjs/chunks/bundle-isd9KugI.js +1858 -0
  393. package/dist/cjs/chunks/bundle-isd9KugI.js.map +1 -0
  394. package/dist/cjs/chunks/bundle-oImpAjjb.js +136 -0
  395. package/dist/cjs/chunks/bundle-oImpAjjb.js.map +1 -0
  396. package/dist/cjs/chunks/bundle-oXm8ulgi.js +15 -0
  397. package/dist/cjs/chunks/bundle-oXm8ulgi.js.map +1 -0
  398. package/dist/cjs/chunks/bundle-q-A6a_rC.js +360 -0
  399. package/dist/cjs/chunks/bundle-q-A6a_rC.js.map +1 -0
  400. package/dist/cjs/chunks/bundle-q2F5p3vc.js +79 -0
  401. package/dist/cjs/chunks/bundle-q2F5p3vc.js.map +1 -0
  402. package/dist/cjs/chunks/bundle-rN2rLxDW.js +84 -0
  403. package/dist/cjs/chunks/bundle-rN2rLxDW.js.map +1 -0
  404. package/dist/cjs/chunks/bundle-sQoST7ZS.js +17 -0
  405. package/dist/cjs/chunks/bundle-sQoST7ZS.js.map +1 -0
  406. package/dist/cjs/chunks/bundle-sjCeO7Mj.js +279 -0
  407. package/dist/cjs/chunks/bundle-sjCeO7Mj.js.map +1 -0
  408. package/dist/cjs/chunks/bundle-stRq_8W4.js +69 -0
  409. package/dist/cjs/chunks/bundle-stRq_8W4.js.map +1 -0
  410. package/dist/cjs/chunks/bundle-txKvbPEx.js +128 -0
  411. package/dist/cjs/chunks/bundle-txKvbPEx.js.map +1 -0
  412. package/dist/cjs/chunks/bundle-uWB1AoIz.js +264 -0
  413. package/dist/cjs/chunks/bundle-uWB1AoIz.js.map +1 -0
  414. package/dist/cjs/chunks/bundle-ujHFJVoU.js +99 -0
  415. package/dist/cjs/chunks/bundle-ujHFJVoU.js.map +1 -0
  416. package/dist/cjs/chunks/bundle-yPWVmQGL.js +224 -0
  417. package/dist/cjs/chunks/bundle-yPWVmQGL.js.map +1 -0
  418. package/dist/cjs/hooks/useModal.js +59 -0
  419. package/dist/cjs/index.js +222 -0
  420. package/dist/cjs/lame.all.js +10 -0
  421. package/dist/cjs/lame.all.js.map +1 -0
  422. package/dist/cjs/pubSub/topics.js +18 -0
  423. package/dist/cjs/sendbirdSelectors.js +580 -0
  424. package/dist/cjs/ui/Accordion.js +52 -0
  425. package/dist/cjs/ui/AccordionGroup.js +17 -0
  426. package/dist/cjs/ui/AdminMessage.js +21 -0
  427. package/dist/cjs/ui/Avatar.js +18 -0
  428. package/dist/cjs/ui/Badge.js +26 -0
  429. package/dist/cjs/ui/BottomSheet.js +38 -0
  430. package/dist/cjs/ui/Button.js +53 -0
  431. package/dist/cjs/ui/ChannelAvatar.js +32 -0
  432. package/dist/cjs/ui/ConnectionStatus.js +20 -0
  433. package/dist/cjs/ui/ContextMenu.js +216 -0
  434. package/dist/cjs/ui/DateSeparator.js +21 -0
  435. package/dist/cjs/ui/EmojiReactions.js +179 -0
  436. package/dist/cjs/ui/EmojiReactions.js.map +1 -0
  437. package/dist/cjs/ui/FileMessageItemBody.js +41 -0
  438. package/dist/cjs/ui/FileViewer.js +33 -0
  439. package/dist/cjs/ui/Icon.js +1140 -0
  440. package/dist/cjs/ui/IconButton.js +26 -0
  441. package/dist/cjs/ui/ImageRenderer.js +151 -0
  442. package/dist/cjs/ui/ImageRenderer.js.map +1 -0
  443. package/dist/cjs/ui/Input.js +26 -0
  444. package/dist/cjs/ui/Label.js +16 -0
  445. package/dist/cjs/ui/LinkLabel.js +32 -0
  446. package/dist/cjs/ui/Loader.js +20 -0
  447. package/dist/cjs/ui/MentionLabel.js +69 -0
  448. package/dist/cjs/ui/MentionUserLabel.js +12 -0
  449. package/dist/cjs/ui/MessageContent.js +341 -0
  450. package/dist/cjs/ui/MessageContent.js.map +1 -0
  451. package/dist/cjs/ui/MessageInput/hooks/usePaste.js +17 -0
  452. package/dist/cjs/ui/MessageInput.js +464 -0
  453. package/dist/cjs/ui/MessageItemMenu.js +131 -0
  454. package/dist/cjs/ui/MessageItemReactionMenu.js +58 -0
  455. package/dist/cjs/ui/MessageSearchFileItem.js +92 -0
  456. package/dist/cjs/ui/MessageSearchItem.js +63 -0
  457. package/dist/cjs/ui/MessageStatus.js +26 -0
  458. package/dist/cjs/ui/Modal.js +26 -0
  459. package/dist/cjs/ui/MutedAvatarOverlay.js +23 -0
  460. package/dist/cjs/ui/OGMessageItemBody.js +87 -0
  461. package/dist/cjs/ui/OpenChannelAdminMessage.js +17 -0
  462. package/dist/cjs/ui/OpenChannelAvatar.js +26 -0
  463. package/dist/cjs/ui/OpenchannelConversationHeader.js +34 -0
  464. package/dist/cjs/ui/OpenchannelFileMessage.js +141 -0
  465. package/dist/cjs/ui/OpenchannelFileMessage.js.map +1 -0
  466. package/dist/cjs/ui/OpenchannelOGMessage.js +186 -0
  467. package/dist/cjs/ui/OpenchannelOGMessage.js.map +1 -0
  468. package/dist/cjs/ui/OpenchannelThumbnailMessage.js +178 -0
  469. package/dist/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -0
  470. package/dist/cjs/ui/OpenchannelUserMessage.js +149 -0
  471. package/dist/cjs/ui/OpenchannelUserMessage.js.map +1 -0
  472. package/dist/cjs/ui/PlaceHolder.js +58 -0
  473. package/dist/cjs/ui/PlaybackTime.js +22 -0
  474. package/dist/cjs/ui/QuoteMessage.js +81 -0
  475. package/dist/cjs/ui/QuoteMessageInput.js +84 -0
  476. package/dist/cjs/ui/ReactionBadge.js +28 -0
  477. package/dist/cjs/ui/ReactionButton.js +25 -0
  478. package/dist/cjs/ui/SortByRow.js +31 -0
  479. package/dist/cjs/ui/TextButton.js +17 -0
  480. package/dist/cjs/ui/TextMessageItemBody.js +66 -0
  481. package/dist/cjs/ui/ThreadReplies.js +44 -0
  482. package/dist/cjs/ui/ThumbnailMessageItemBody.js +45 -0
  483. package/dist/cjs/ui/Toggle.js +131 -0
  484. package/dist/cjs/ui/Tooltip.js +17 -0
  485. package/dist/cjs/ui/TooltipWrapper.js +21 -0
  486. package/dist/cjs/ui/TypingIndicatorBubble.js +69 -0
  487. package/dist/cjs/ui/UnknownMessageItemBody.js +29 -0
  488. package/dist/cjs/ui/UserListItem.js +75 -0
  489. package/dist/cjs/ui/UserListItem.js.map +1 -0
  490. package/dist/cjs/ui/UserProfile.js +60 -0
  491. package/dist/cjs/ui/VoiceMessageInput.js +21 -0
  492. package/dist/cjs/ui/VoiceMessageItemBody.js +74 -0
  493. package/dist/cjs/ui/Word.js +82 -0
  494. package/dist/cjs/useSendbirdStateContext.js +27 -0
  495. package/dist/cjs/utils/message/isVoiceMessage.js +11 -0
  496. package/dist/cjs/withSendbird.js +28 -0
  497. package/dist/dist/index.css +7839 -0
  498. package/dist/dist/index.css.map +1 -0
  499. package/dist/hooks/useModal.js +55 -0
  500. package/dist/index.js +200 -0
  501. package/dist/lame.all.js +4 -0
  502. package/dist/lame.all.js.map +1 -0
  503. package/dist/package.json +1521 -0
  504. package/dist/pubSub/topics.js +2 -0
  505. package/dist/sendbirdSelectors.js +555 -0
  506. package/dist/types/lib/hooks/useConnect/setupConnection.d.ts +18 -0
  507. package/dist/types/modules/Channel/components/Message/hooks/useIsElementInViewport.d.ts +2 -0
  508. package/dist/types/modules/Channel/components/Message/hooks/useLazyImageLoader.d.ts +2 -0
  509. package/dist/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +29 -0
  510. package/dist/types/modules/Channel/context/hooks/useResendMessageCallback.d.ts +16 -0
  511. package/dist/types/modules/ChannelList/components/ChannelListUI/index.d.ts +18 -0
  512. package/dist/types/modules/EditUserProfile/components/EditUserProfileUI/EditUserProfileUIView.d.ts +8 -0
  513. package/dist/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +17 -0
  514. package/dist/types/types.d.ts +61 -0
  515. package/dist/types/ui/EmojiReactions/ReactionItem.d.ts +18 -0
  516. package/dist/types/ui/Label/stringSet.d.ts +193 -0
  517. package/dist/ui/Accordion.js +47 -0
  518. package/dist/ui/AccordionGroup.js +15 -0
  519. package/dist/ui/AdminMessage.js +19 -0
  520. package/dist/ui/Avatar.js +9 -0
  521. package/dist/ui/Badge.js +24 -0
  522. package/dist/ui/BottomSheet.js +36 -0
  523. package/dist/ui/Button.js +49 -0
  524. package/dist/ui/ChannelAvatar.js +30 -0
  525. package/dist/ui/ConnectionStatus.js +18 -0
  526. package/dist/ui/ContextMenu.js +207 -0
  527. package/dist/ui/DateSeparator.js +19 -0
  528. package/dist/ui/EmojiReactions.js +177 -0
  529. package/dist/ui/EmojiReactions.js.map +1 -0
  530. package/dist/ui/FileMessageItemBody.js +39 -0
  531. package/dist/ui/FileViewer.js +24 -0
  532. package/dist/ui/Icon.js +1116 -0
  533. package/dist/ui/IconButton.js +24 -0
  534. package/dist/ui/ImageRenderer.js +145 -0
  535. package/dist/ui/ImageRenderer.js.map +1 -0
  536. package/dist/ui/Input.js +21 -0
  537. package/dist/ui/Label.js +5 -0
  538. package/dist/ui/LinkLabel.js +26 -0
  539. package/dist/ui/Loader.js +18 -0
  540. package/dist/ui/MentionLabel.js +67 -0
  541. package/dist/ui/MentionUserLabel.js +10 -0
  542. package/dist/ui/MessageContent.js +339 -0
  543. package/dist/ui/MessageInput/hooks/usePaste.js +8 -0
  544. package/dist/ui/MessageInput.js +462 -0
  545. package/dist/ui/MessageItemMenu.js +126 -0
  546. package/dist/ui/MessageItemReactionMenu.js +53 -0
  547. package/dist/ui/MessageSearchFileItem.js +90 -0
  548. package/dist/ui/MessageSearchItem.js +61 -0
  549. package/dist/ui/MessageStatus.js +17 -0
  550. package/dist/ui/Modal.js +14 -0
  551. package/dist/ui/MutedAvatarOverlay.js +21 -0
  552. package/dist/ui/OGMessageItemBody.js +85 -0
  553. package/dist/ui/OpenChannelAdminMessage.js +15 -0
  554. package/dist/ui/OpenChannelAvatar.js +24 -0
  555. package/dist/ui/OpenchannelConversationHeader.js +32 -0
  556. package/dist/ui/OpenchannelFileMessage.js +139 -0
  557. package/dist/ui/OpenchannelOGMessage.js +184 -0
  558. package/dist/ui/OpenchannelThumbnailMessage.js +176 -0
  559. package/dist/ui/OpenchannelUserMessage.js +147 -0
  560. package/dist/ui/PlaceHolder.js +53 -0
  561. package/dist/ui/PlaybackTime.js +17 -0
  562. package/dist/ui/QuoteMessage.js +79 -0
  563. package/dist/ui/QuoteMessageInput.js +82 -0
  564. package/dist/ui/ReactionBadge.js +26 -0
  565. package/dist/ui/ReactionButton.js +23 -0
  566. package/dist/ui/SortByRow.js +29 -0
  567. package/dist/ui/TextButton.js +15 -0
  568. package/dist/ui/TextMessageItemBody.js +64 -0
  569. package/dist/ui/ThreadReplies.js +42 -0
  570. package/dist/ui/ThumbnailMessageItemBody.js +43 -0
  571. package/dist/ui/Toggle.js +126 -0
  572. package/dist/ui/Tooltip.js +15 -0
  573. package/dist/ui/TooltipWrapper.js +19 -0
  574. package/dist/ui/TypingIndicatorBubble.js +67 -0
  575. package/dist/ui/UnknownMessageItemBody.js +27 -0
  576. package/dist/ui/UserListItem.js +73 -0
  577. package/dist/ui/UserProfile.js +58 -0
  578. package/dist/ui/VoiceMessageInput.js +15 -0
  579. package/dist/ui/VoiceMessageItemBody.js +69 -0
  580. package/dist/ui/Word.js +80 -0
  581. package/dist/useSendbirdStateContext.js +22 -0
  582. package/dist/utils/message/isVoiceMessage.js +9 -0
  583. package/dist/withSendbird.js +23 -0
  584. package/package.json +111 -1477
  585. package/App.js +0 -421
  586. package/Channel/components/ChannelHeader.js +0 -67
  587. package/Channel/components/ChannelUI.js +0 -161
  588. package/Channel/components/FileViewer.js +0 -88
  589. package/Channel/components/FrozenNotification.js +0 -16
  590. package/Channel/components/Message.js +0 -341
  591. package/Channel/components/MessageInput.js +0 -204
  592. package/Channel/components/MessageList.js +0 -111
  593. package/Channel/components/RemoveMessageModal.js +0 -52
  594. package/Channel/components/SuggestedMentionList.js +0 -198
  595. package/Channel/components/TypingIndicator.js +0 -84
  596. package/Channel/components/UnreadCount.js +0 -33
  597. package/Channel/context.js +0 -24
  598. package/Channel/hooks/useHandleUploadFiles.js +0 -237
  599. package/Channel/hooks/useInitialMessagesFetch.js +0 -109
  600. package/Channel/utils/compareMessagesForGrouping.js +0 -26
  601. package/Channel/utils/getMessagePartsInfo.js +0 -34
  602. package/Channel.js +0 -131
  603. package/ChannelList/components/AddChannel.js +0 -61
  604. package/ChannelList/components/ChannelListHeader.js +0 -41
  605. package/ChannelList/components/ChannelListUI.js +0 -147
  606. package/ChannelList/components/ChannelPreview.js +0 -131
  607. package/ChannelList/components/ChannelPreviewAction.js +0 -71
  608. package/ChannelList/context.js +0 -15
  609. package/ChannelList.js +0 -81
  610. package/ChannelSettings/components/ChannelProfile.js +0 -65
  611. package/ChannelSettings/components/ChannelSettingsUI.js +0 -119
  612. package/ChannelSettings/components/EditDetailsModal.js +0 -97
  613. package/ChannelSettings/components/LeaveChannel.js +0 -67
  614. package/ChannelSettings/components/ModerationPanel.js +0 -455
  615. package/ChannelSettings/components/UserListItem.js +0 -65
  616. package/ChannelSettings/components/UserListItem.js.map +0 -1
  617. package/ChannelSettings/components/UserPanel.js +0 -64
  618. package/ChannelSettings/context.js +0 -69
  619. package/ChannelSettings.js +0 -61
  620. package/CreateChannel/components/CreateChannelUI.js +0 -48
  621. package/CreateChannel/components/InviteUsers.js +0 -167
  622. package/CreateChannel/components/SelectChannelType.js +0 -80
  623. package/CreateChannel/context.js +0 -9
  624. package/CreateChannel.js +0 -44
  625. package/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -68
  626. package/CreateOpenChannel/context.js +0 -49
  627. package/CreateOpenChannel.js +0 -33
  628. package/EditUserProfile/components/EditUserProfileUI.js +0 -98
  629. package/EditUserProfile/components/EditUserProfileUI.js.map +0 -1
  630. package/EditUserProfile.js +0 -34
  631. package/MessageSearch/components/MessageSearchUI.js +0 -89
  632. package/MessageSearch/context.js +0 -258
  633. package/MessageSearch.js +0 -77
  634. package/OpenChannel/components/FrozenChannelNotification.js +0 -15
  635. package/OpenChannel/components/OpenChannelHeader.js +0 -47
  636. package/OpenChannel/components/OpenChannelInput.js +0 -56
  637. package/OpenChannel/components/OpenChannelMessage.js +0 -196
  638. package/OpenChannel/components/OpenChannelMessageList.js +0 -121
  639. package/OpenChannel/components/OpenChannelUI.js +0 -101
  640. package/OpenChannel/context.js +0 -14
  641. package/OpenChannel.js +0 -79
  642. package/OpenChannelList/components/OpenChannelListUI.js +0 -114
  643. package/OpenChannelList/components/OpenChannelPreview.js +0 -29
  644. package/OpenChannelList/context.js +0 -7
  645. package/OpenChannelList.js +0 -45
  646. package/OpenChannelSettings/components/EditDetailsModal.js +0 -89
  647. package/OpenChannelSettings/components/OpenChannelProfile.js +0 -56
  648. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -90
  649. package/OpenChannelSettings/components/OperatorUI.js +0 -502
  650. package/OpenChannelSettings/components/ParticipantUI.js +0 -36
  651. package/OpenChannelSettings/context.js +0 -123
  652. package/OpenChannelSettings.js +0 -56
  653. package/SendbirdProvider.js +0 -1060
  654. package/Thread/components/ParentMessageInfo.js +0 -246
  655. package/Thread/components/ParentMessageInfo.js.map +0 -1
  656. package/Thread/components/ParentMessageInfoItem.js +0 -148
  657. package/Thread/components/ThreadHeader.js +0 -32
  658. package/Thread/components/ThreadList.js +0 -170
  659. package/Thread/components/ThreadListItem.js +0 -327
  660. package/Thread/components/ThreadListItem.js.map +0 -1
  661. package/Thread/components/ThreadMessageInput.js +0 -186
  662. package/Thread/components/ThreadUI.js +0 -265
  663. package/Thread/context.js +0 -1301
  664. package/Thread/context.js.map +0 -1
  665. package/Thread.js +0 -127
  666. package/VoicePlayer/context.js +0 -7
  667. package/VoicePlayer/useVoicePlayer.js +0 -71
  668. package/VoiceRecorder/context.js +0 -132
  669. package/VoiceRecorder/useVoiceRecorder.js +0 -108
  670. package/chunks/bundle-0IelBspE.js +0 -78
  671. package/chunks/bundle-0IelBspE.js.map +0 -1
  672. package/chunks/bundle-0SIFukuT.js +0 -173
  673. package/chunks/bundle-0SIFukuT.js.map +0 -1
  674. package/chunks/bundle-2AUp3oeN.js +0 -15
  675. package/chunks/bundle-2AUp3oeN.js.map +0 -1
  676. package/chunks/bundle-2YEsND5T.js +0 -4
  677. package/chunks/bundle-2YEsND5T.js.map +0 -1
  678. package/chunks/bundle-3WQuaADd.js +0 -24
  679. package/chunks/bundle-3WQuaADd.js.map +0 -1
  680. package/chunks/bundle-5JvP07dI.js +0 -62
  681. package/chunks/bundle-5JvP07dI.js.map +0 -1
  682. package/chunks/bundle-6uVd8Nrl.js +0 -66
  683. package/chunks/bundle-6uVd8Nrl.js.map +0 -1
  684. package/chunks/bundle-7x4clnC7.js +0 -42
  685. package/chunks/bundle-7x4clnC7.js.map +0 -1
  686. package/chunks/bundle-89OkQYTj.js +0 -4
  687. package/chunks/bundle-89OkQYTj.js.map +0 -1
  688. package/chunks/bundle-8VA5hO1c.js +0 -13
  689. package/chunks/bundle-8VA5hO1c.js.map +0 -1
  690. package/chunks/bundle-967zXkjf.js +0 -12
  691. package/chunks/bundle-967zXkjf.js.map +0 -1
  692. package/chunks/bundle-96I4BbNe.js +0 -1455
  693. package/chunks/bundle-96I4BbNe.js.map +0 -1
  694. package/chunks/bundle-EPtYsHAJ.js +0 -14
  695. package/chunks/bundle-EPtYsHAJ.js.map +0 -1
  696. package/chunks/bundle-EteEacTX.js +0 -220
  697. package/chunks/bundle-EteEacTX.js.map +0 -1
  698. package/chunks/bundle-GGcTNRCI.js +0 -57
  699. package/chunks/bundle-GGcTNRCI.js.map +0 -1
  700. package/chunks/bundle-GiSLT4lG.js +0 -36
  701. package/chunks/bundle-GiSLT4lG.js.map +0 -1
  702. package/chunks/bundle-IeIHBN9i.js +0 -8
  703. package/chunks/bundle-IeIHBN9i.js.map +0 -1
  704. package/chunks/bundle-JSlDfYOF.js +0 -16
  705. package/chunks/bundle-JSlDfYOF.js.map +0 -1
  706. package/chunks/bundle-JhG5BHdE.js +0 -5
  707. package/chunks/bundle-JhG5BHdE.js.map +0 -1
  708. package/chunks/bundle-JuKER7D_.js +0 -213
  709. package/chunks/bundle-JuKER7D_.js.map +0 -1
  710. package/chunks/bundle-Jw6D-oM_.js +0 -18
  711. package/chunks/bundle-Jw6D-oM_.js.map +0 -1
  712. package/chunks/bundle-KOKqPpBq.js +0 -9
  713. package/chunks/bundle-KOKqPpBq.js.map +0 -1
  714. package/chunks/bundle-Ku1a64TD.js +0 -230
  715. package/chunks/bundle-Ku1a64TD.js.map +0 -1
  716. package/chunks/bundle-LTnLzJFb.js +0 -176
  717. package/chunks/bundle-LTnLzJFb.js.map +0 -1
  718. package/chunks/bundle-LhtrqZSE.js +0 -26
  719. package/chunks/bundle-LhtrqZSE.js.map +0 -1
  720. package/chunks/bundle-Mn36ivpf.js +0 -76
  721. package/chunks/bundle-Mn36ivpf.js.map +0 -1
  722. package/chunks/bundle-Nv1SlZSC.js +0 -72
  723. package/chunks/bundle-Nv1SlZSC.js.map +0 -1
  724. package/chunks/bundle-OiOp4RUP.js +0 -98
  725. package/chunks/bundle-OiOp4RUP.js.map +0 -1
  726. package/chunks/bundle-PwOQ689V.js +0 -28
  727. package/chunks/bundle-PwOQ689V.js.map +0 -1
  728. package/chunks/bundle-QO9wq7-1.js +0 -1519
  729. package/chunks/bundle-QO9wq7-1.js.map +0 -1
  730. package/chunks/bundle-Sk3SXXP7.js +0 -30
  731. package/chunks/bundle-Sk3SXXP7.js.map +0 -1
  732. package/chunks/bundle-Tep20T57.js +0 -70
  733. package/chunks/bundle-Tep20T57.js.map +0 -1
  734. package/chunks/bundle-WZvwkbYN.js +0 -69
  735. package/chunks/bundle-WZvwkbYN.js.map +0 -1
  736. package/chunks/bundle-Xly_X4hP.js +0 -16
  737. package/chunks/bundle-Xly_X4hP.js.map +0 -1
  738. package/chunks/bundle-Xq25cpwP.js +0 -826
  739. package/chunks/bundle-Xq25cpwP.js.map +0 -1
  740. package/chunks/bundle-Y6TqPszM.js +0 -97
  741. package/chunks/bundle-Y6TqPszM.js.map +0 -1
  742. package/chunks/bundle-YQkYq090.js +0 -13
  743. package/chunks/bundle-YQkYq090.js.map +0 -1
  744. package/chunks/bundle-YdRy5sj8.js +0 -355
  745. package/chunks/bundle-YdRy5sj8.js.map +0 -1
  746. package/chunks/bundle-ZNwxfYJx.js +0 -24
  747. package/chunks/bundle-ZNwxfYJx.js.map +0 -1
  748. package/chunks/bundle-ZT6XnGSN.js +0 -657
  749. package/chunks/bundle-ZT6XnGSN.js.map +0 -1
  750. package/chunks/bundle-cJc3JBZb.js +0 -77
  751. package/chunks/bundle-cJc3JBZb.js.map +0 -1
  752. package/chunks/bundle-dJBzT033.js +0 -31
  753. package/chunks/bundle-dJBzT033.js.map +0 -1
  754. package/chunks/bundle-h4Ck6NLh.js +0 -25
  755. package/chunks/bundle-h4Ck6NLh.js.map +0 -1
  756. package/chunks/bundle-hGeYEXGB.js +0 -125
  757. package/chunks/bundle-hGeYEXGB.js.map +0 -1
  758. package/chunks/bundle-jw3t70tT.js +0 -233
  759. package/chunks/bundle-jw3t70tT.js.map +0 -1
  760. package/chunks/bundle-jyTJAjUy.js +0 -134
  761. package/chunks/bundle-jyTJAjUy.js.map +0 -1
  762. package/chunks/bundle-k4WuO78S.js +0 -222
  763. package/chunks/bundle-k4WuO78S.js.map +0 -1
  764. package/chunks/bundle-l0M5nN1Q.js +0 -131
  765. package/chunks/bundle-l0M5nN1Q.js.map +0 -1
  766. package/chunks/bundle-lSKfBDuq.js +0 -132
  767. package/chunks/bundle-lSKfBDuq.js.map +0 -1
  768. package/chunks/bundle-menQ38z9.js +0 -147
  769. package/chunks/bundle-menQ38z9.js.map +0 -1
  770. package/chunks/bundle-nHhZeAVb.js +0 -96
  771. package/chunks/bundle-nHhZeAVb.js.map +0 -1
  772. package/chunks/bundle-oghsyfOE.js +0 -174
  773. package/chunks/bundle-oghsyfOE.js.map +0 -1
  774. package/chunks/bundle-pCwi8C-K.js +0 -29
  775. package/chunks/bundle-pCwi8C-K.js.map +0 -1
  776. package/chunks/bundle-pmVgESW3.js +0 -1853
  777. package/chunks/bundle-pmVgESW3.js.map +0 -1
  778. package/chunks/bundle-s3qW-HFQ.js +0 -36
  779. package/chunks/bundle-s3qW-HFQ.js.map +0 -1
  780. package/chunks/bundle-tUJWK_IX.js +0 -277
  781. package/chunks/bundle-tUJWK_IX.js.map +0 -1
  782. package/chunks/bundle-vSJ8dTAZ.js +0 -211
  783. package/chunks/bundle-vSJ8dTAZ.js.map +0 -1
  784. package/chunks/bundle-wRCPXISN.js +0 -262
  785. package/chunks/bundle-wRCPXISN.js.map +0 -1
  786. package/chunks/bundle-xgxXEKxk.js +0 -508
  787. package/chunks/bundle-xgxXEKxk.js.map +0 -1
  788. package/chunks/bundle-zCWUhqT2.js +0 -4
  789. package/chunks/bundle-zCWUhqT2.js.map +0 -1
  790. package/chunks/bundle-zz1eCYds.js +0 -4
  791. package/chunks/bundle-zz1eCYds.js.map +0 -1
  792. package/cjs/App.js +0 -423
  793. package/cjs/Channel/components/ChannelHeader.js +0 -69
  794. package/cjs/Channel/components/ChannelUI.js +0 -163
  795. package/cjs/Channel/components/FileViewer.js +0 -93
  796. package/cjs/Channel/components/FrozenNotification.js +0 -18
  797. package/cjs/Channel/components/Message.js +0 -343
  798. package/cjs/Channel/components/MessageInput.js +0 -209
  799. package/cjs/Channel/components/MessageList.js +0 -117
  800. package/cjs/Channel/components/RemoveMessageModal.js +0 -54
  801. package/cjs/Channel/components/SuggestedMentionList.js +0 -200
  802. package/cjs/Channel/components/TypingIndicator.js +0 -89
  803. package/cjs/Channel/components/UnreadCount.js +0 -35
  804. package/cjs/Channel/context.js +0 -31
  805. package/cjs/Channel/hooks/useHandleUploadFiles.js +0 -239
  806. package/cjs/Channel/hooks/useInitialMessagesFetch.js +0 -111
  807. package/cjs/Channel/utils/compareMessagesForGrouping.js +0 -28
  808. package/cjs/Channel/utils/getMessagePartsInfo.js +0 -36
  809. package/cjs/Channel.js +0 -133
  810. package/cjs/ChannelList/components/AddChannel.js +0 -66
  811. package/cjs/ChannelList/components/ChannelListHeader.js +0 -43
  812. package/cjs/ChannelList/components/ChannelListUI.js +0 -149
  813. package/cjs/ChannelList/components/ChannelPreview.js +0 -133
  814. package/cjs/ChannelList/components/ChannelPreviewAction.js +0 -73
  815. package/cjs/ChannelList/context.js +0 -22
  816. package/cjs/ChannelList.js +0 -83
  817. package/cjs/ChannelSettings/components/ChannelProfile.js +0 -67
  818. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +0 -121
  819. package/cjs/ChannelSettings/components/EditDetailsModal.js +0 -99
  820. package/cjs/ChannelSettings/components/LeaveChannel.js +0 -69
  821. package/cjs/ChannelSettings/components/ModerationPanel.js +0 -457
  822. package/cjs/ChannelSettings/components/UserListItem.js +0 -67
  823. package/cjs/ChannelSettings/components/UserPanel.js +0 -66
  824. package/cjs/ChannelSettings/context.js +0 -72
  825. package/cjs/ChannelSettings.js +0 -63
  826. package/cjs/CreateChannel/components/CreateChannelUI.js +0 -50
  827. package/cjs/CreateChannel/components/InviteUsers.js +0 -169
  828. package/cjs/CreateChannel/components/SelectChannelType.js +0 -82
  829. package/cjs/CreateChannel/context.js +0 -16
  830. package/cjs/CreateChannel.js +0 -46
  831. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -70
  832. package/cjs/CreateOpenChannel/context.js +0 -52
  833. package/cjs/CreateOpenChannel.js +0 -35
  834. package/cjs/EditUserProfile/components/EditUserProfileUI.js +0 -100
  835. package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +0 -1
  836. package/cjs/EditUserProfile.js +0 -36
  837. package/cjs/MessageSearch/components/MessageSearchUI.js +0 -94
  838. package/cjs/MessageSearch/context.js +0 -261
  839. package/cjs/MessageSearch.js +0 -79
  840. package/cjs/OpenChannel/components/FrozenChannelNotification.js +0 -17
  841. package/cjs/OpenChannel/components/OpenChannelHeader.js +0 -49
  842. package/cjs/OpenChannel/components/OpenChannelInput.js +0 -58
  843. package/cjs/OpenChannel/components/OpenChannelMessage.js +0 -198
  844. package/cjs/OpenChannel/components/OpenChannelMessageList.js +0 -123
  845. package/cjs/OpenChannel/components/OpenChannelUI.js +0 -103
  846. package/cjs/OpenChannel/context.js +0 -21
  847. package/cjs/OpenChannel.js +0 -81
  848. package/cjs/OpenChannelList/components/OpenChannelListUI.js +0 -116
  849. package/cjs/OpenChannelList/components/OpenChannelPreview.js +0 -31
  850. package/cjs/OpenChannelList/context.js +0 -17
  851. package/cjs/OpenChannelList.js +0 -47
  852. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +0 -91
  853. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +0 -58
  854. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -92
  855. package/cjs/OpenChannelSettings/components/OperatorUI.js +0 -508
  856. package/cjs/OpenChannelSettings/components/ParticipantUI.js +0 -42
  857. package/cjs/OpenChannelSettings/context.js +0 -126
  858. package/cjs/OpenChannelSettings.js +0 -58
  859. package/cjs/SendbirdProvider.js +0 -1066
  860. package/cjs/Thread/components/ParentMessageInfo.js +0 -248
  861. package/cjs/Thread/components/ParentMessageInfo.js.map +0 -1
  862. package/cjs/Thread/components/ParentMessageInfoItem.js +0 -150
  863. package/cjs/Thread/components/ThreadHeader.js +0 -34
  864. package/cjs/Thread/components/ThreadList.js +0 -172
  865. package/cjs/Thread/components/ThreadListItem.js +0 -329
  866. package/cjs/Thread/components/ThreadListItem.js.map +0 -1
  867. package/cjs/Thread/components/ThreadMessageInput.js +0 -188
  868. package/cjs/Thread/components/ThreadUI.js +0 -267
  869. package/cjs/Thread/context.js +0 -1304
  870. package/cjs/Thread/context.js.map +0 -1
  871. package/cjs/Thread.js +0 -129
  872. package/cjs/VoicePlayer/context.js +0 -15
  873. package/cjs/VoicePlayer/useVoicePlayer.js +0 -73
  874. package/cjs/VoiceRecorder/context.js +0 -138
  875. package/cjs/VoiceRecorder/useVoiceRecorder.js +0 -111
  876. package/cjs/chunks/bundle-0MHADZvF.js +0 -84
  877. package/cjs/chunks/bundle-0MHADZvF.js.map +0 -1
  878. package/cjs/chunks/bundle-0bOWh2mP.js +0 -139
  879. package/cjs/chunks/bundle-0bOWh2mP.js.map +0 -1
  880. package/cjs/chunks/bundle-0wbO-LdY.js +0 -46
  881. package/cjs/chunks/bundle-0wbO-LdY.js.map +0 -1
  882. package/cjs/chunks/bundle-5MVOBR4R.js +0 -79
  883. package/cjs/chunks/bundle-5MVOBR4R.js.map +0 -1
  884. package/cjs/chunks/bundle-5NqynIJA.js +0 -264
  885. package/cjs/chunks/bundle-5NqynIJA.js.map +0 -1
  886. package/cjs/chunks/bundle-5cuVj6Hi.js +0 -181
  887. package/cjs/chunks/bundle-5cuVj6Hi.js.map +0 -1
  888. package/cjs/chunks/bundle-7gBYfQwU.js +0 -1523
  889. package/cjs/chunks/bundle-7gBYfQwU.js.map +0 -1
  890. package/cjs/chunks/bundle-A4ywDIVT.js +0 -35
  891. package/cjs/chunks/bundle-A4ywDIVT.js.map +0 -1
  892. package/cjs/chunks/bundle-AQhLE-Ci.js +0 -7
  893. package/cjs/chunks/bundle-AQhLE-Ci.js.map +0 -1
  894. package/cjs/chunks/bundle-AoaxviqO.js +0 -68
  895. package/cjs/chunks/bundle-AoaxviqO.js.map +0 -1
  896. package/cjs/chunks/bundle-BA9K_smf.js +0 -360
  897. package/cjs/chunks/bundle-BA9K_smf.js.map +0 -1
  898. package/cjs/chunks/bundle-EVdeXpsD.js +0 -48
  899. package/cjs/chunks/bundle-EVdeXpsD.js.map +0 -1
  900. package/cjs/chunks/bundle-F--qTOLe.js +0 -707
  901. package/cjs/chunks/bundle-F--qTOLe.js.map +0 -1
  902. package/cjs/chunks/bundle-FV9lCJz1.js +0 -831
  903. package/cjs/chunks/bundle-FV9lCJz1.js.map +0 -1
  904. package/cjs/chunks/bundle-FpImAp7o.js +0 -137
  905. package/cjs/chunks/bundle-FpImAp7o.js.map +0 -1
  906. package/cjs/chunks/bundle-GE1I3PNS.js +0 -84
  907. package/cjs/chunks/bundle-GE1I3PNS.js.map +0 -1
  908. package/cjs/chunks/bundle-HaufoaVC.js +0 -18
  909. package/cjs/chunks/bundle-HaufoaVC.js.map +0 -1
  910. package/cjs/chunks/bundle-HjwY9t7s.js +0 -217
  911. package/cjs/chunks/bundle-HjwY9t7s.js.map +0 -1
  912. package/cjs/chunks/bundle-IxIg8fhp.js +0 -99
  913. package/cjs/chunks/bundle-IxIg8fhp.js.map +0 -1
  914. package/cjs/chunks/bundle-JragPpHy.js +0 -69
  915. package/cjs/chunks/bundle-JragPpHy.js.map +0 -1
  916. package/cjs/chunks/bundle-KKPmuuwX.js +0 -74
  917. package/cjs/chunks/bundle-KKPmuuwX.js.map +0 -1
  918. package/cjs/chunks/bundle-KVlEj9_l.js +0 -1460
  919. package/cjs/chunks/bundle-KVlEj9_l.js.map +0 -1
  920. package/cjs/chunks/bundle-MBuX_zXW.js +0 -27
  921. package/cjs/chunks/bundle-MBuX_zXW.js.map +0 -1
  922. package/cjs/chunks/bundle-MeuNh9Q9.js +0 -17
  923. package/cjs/chunks/bundle-MeuNh9Q9.js.map +0 -1
  924. package/cjs/chunks/bundle-N1ipvkhN.js +0 -6
  925. package/cjs/chunks/bundle-N1ipvkhN.js.map +0 -1
  926. package/cjs/chunks/bundle-NYFm08XH.js +0 -15
  927. package/cjs/chunks/bundle-NYFm08XH.js.map +0 -1
  928. package/cjs/chunks/bundle-Pe-j2f1D.js +0 -8
  929. package/cjs/chunks/bundle-Pe-j2f1D.js.map +0 -1
  930. package/cjs/chunks/bundle-QH7iLrPR.js +0 -102
  931. package/cjs/chunks/bundle-QH7iLrPR.js.map +0 -1
  932. package/cjs/chunks/bundle-SngxTjas.js +0 -30
  933. package/cjs/chunks/bundle-SngxTjas.js.map +0 -1
  934. package/cjs/chunks/bundle-VoZZnYtF.js +0 -236
  935. package/cjs/chunks/bundle-VoZZnYtF.js.map +0 -1
  936. package/cjs/chunks/bundle-XoWonC_b.js +0 -128
  937. package/cjs/chunks/bundle-XoWonC_b.js.map +0 -1
  938. package/cjs/chunks/bundle-YjWwnwWH.js +0 -178
  939. package/cjs/chunks/bundle-YjWwnwWH.js.map +0 -1
  940. package/cjs/chunks/bundle-YkzD-qec.js +0 -279
  941. package/cjs/chunks/bundle-YkzD-qec.js.map +0 -1
  942. package/cjs/chunks/bundle-ZurhBjw4.js +0 -20
  943. package/cjs/chunks/bundle-ZurhBjw4.js.map +0 -1
  944. package/cjs/chunks/bundle-cV7uGK08.js +0 -510
  945. package/cjs/chunks/bundle-cV7uGK08.js.map +0 -1
  946. package/cjs/chunks/bundle-fWyUHuJu.js +0 -11
  947. package/cjs/chunks/bundle-fWyUHuJu.js.map +0 -1
  948. package/cjs/chunks/bundle-gM8i5lGF.js +0 -27
  949. package/cjs/chunks/bundle-gM8i5lGF.js.map +0 -1
  950. package/cjs/chunks/bundle-hxGMLtWg.js +0 -22
  951. package/cjs/chunks/bundle-hxGMLtWg.js.map +0 -1
  952. package/cjs/chunks/bundle-i5KLDxjz.js +0 -6
  953. package/cjs/chunks/bundle-i5KLDxjz.js.map +0 -1
  954. package/cjs/chunks/bundle-igY82TbB.js +0 -39
  955. package/cjs/chunks/bundle-igY82TbB.js.map +0 -1
  956. package/cjs/chunks/bundle-l92Ws-Rs.js +0 -32
  957. package/cjs/chunks/bundle-l92Ws-Rs.js.map +0 -1
  958. package/cjs/chunks/bundle-mgmuHFWU.js +0 -26
  959. package/cjs/chunks/bundle-mgmuHFWU.js.map +0 -1
  960. package/cjs/chunks/bundle-nGMCZjvM.js +0 -1858
  961. package/cjs/chunks/bundle-nGMCZjvM.js.map +0 -1
  962. package/cjs/chunks/bundle-nuIgQkwQ.js +0 -75
  963. package/cjs/chunks/bundle-nuIgQkwQ.js.map +0 -1
  964. package/cjs/chunks/bundle-o1ta9AIa.js +0 -19
  965. package/cjs/chunks/bundle-o1ta9AIa.js.map +0 -1
  966. package/cjs/chunks/bundle-omofvX-G.js +0 -178
  967. package/cjs/chunks/bundle-omofvX-G.js.map +0 -1
  968. package/cjs/chunks/bundle-ow5FLcVV.js +0 -16
  969. package/cjs/chunks/bundle-ow5FLcVV.js.map +0 -1
  970. package/cjs/chunks/bundle-pOTnhSyt.js +0 -15
  971. package/cjs/chunks/bundle-pOTnhSyt.js.map +0 -1
  972. package/cjs/chunks/bundle-pVKke2mQ.js +0 -224
  973. package/cjs/chunks/bundle-pVKke2mQ.js.map +0 -1
  974. package/cjs/chunks/bundle-pxBxPT0b.js +0 -159
  975. package/cjs/chunks/bundle-pxBxPT0b.js.map +0 -1
  976. package/cjs/chunks/bundle-tFuTz5CT.js +0 -228
  977. package/cjs/chunks/bundle-tFuTz5CT.js.map +0 -1
  978. package/cjs/chunks/bundle-ugapct3R.js +0 -236
  979. package/cjs/chunks/bundle-ugapct3R.js.map +0 -1
  980. package/cjs/chunks/bundle-v8bBiJ_c.js +0 -215
  981. package/cjs/chunks/bundle-v8bBiJ_c.js.map +0 -1
  982. package/cjs/chunks/bundle-vSdu8rrq.js +0 -74
  983. package/cjs/chunks/bundle-vSdu8rrq.js.map +0 -1
  984. package/cjs/chunks/bundle-vWUmeH2R.js +0 -79
  985. package/cjs/chunks/bundle-vWUmeH2R.js.map +0 -1
  986. package/cjs/chunks/bundle-vWlSj3_G.js +0 -10
  987. package/cjs/chunks/bundle-vWlSj3_G.js.map +0 -1
  988. package/cjs/chunks/bundle-wN0CLPzM.js +0 -38
  989. package/cjs/chunks/bundle-wN0CLPzM.js.map +0 -1
  990. package/cjs/chunks/bundle-x3a8KQ02.js +0 -136
  991. package/cjs/chunks/bundle-x3a8KQ02.js.map +0 -1
  992. package/cjs/chunks/bundle-xeeBDhY6.js +0 -6
  993. package/cjs/chunks/bundle-xeeBDhY6.js.map +0 -1
  994. package/cjs/chunks/bundle-xlnqnYUH.js +0 -109
  995. package/cjs/chunks/bundle-xlnqnYUH.js.map +0 -1
  996. package/cjs/chunks/bundle-yTYZiuXi.js +0 -28
  997. package/cjs/chunks/bundle-yTYZiuXi.js.map +0 -1
  998. package/cjs/hooks/useModal.js +0 -59
  999. package/cjs/index.js +0 -222
  1000. package/cjs/lame.all.js +0 -16659
  1001. package/cjs/lame.all.js.map +0 -1
  1002. package/cjs/pubSub/topics.js +0 -18
  1003. package/cjs/sendbirdSelectors.js +0 -580
  1004. package/cjs/ui/Accordion.js +0 -52
  1005. package/cjs/ui/AccordionGroup.js +0 -17
  1006. package/cjs/ui/AdminMessage.js +0 -21
  1007. package/cjs/ui/Avatar.js +0 -18
  1008. package/cjs/ui/Badge.js +0 -26
  1009. package/cjs/ui/BottomSheet.js +0 -38
  1010. package/cjs/ui/Button.js +0 -53
  1011. package/cjs/ui/ChannelAvatar.js +0 -32
  1012. package/cjs/ui/ConnectionStatus.js +0 -20
  1013. package/cjs/ui/ContextMenu.js +0 -216
  1014. package/cjs/ui/DateSeparator.js +0 -21
  1015. package/cjs/ui/EmojiReactions.js +0 -180
  1016. package/cjs/ui/EmojiReactions.js.map +0 -1
  1017. package/cjs/ui/FileMessageItemBody.js +0 -41
  1018. package/cjs/ui/FileViewer.js +0 -33
  1019. package/cjs/ui/Icon.js +0 -1140
  1020. package/cjs/ui/IconButton.js +0 -26
  1021. package/cjs/ui/ImageRenderer.js +0 -120
  1022. package/cjs/ui/ImageRenderer.js.map +0 -1
  1023. package/cjs/ui/Input.js +0 -26
  1024. package/cjs/ui/Label.js +0 -16
  1025. package/cjs/ui/LinkLabel.js +0 -32
  1026. package/cjs/ui/Loader.js +0 -20
  1027. package/cjs/ui/MentionLabel.js +0 -69
  1028. package/cjs/ui/MentionUserLabel.js +0 -12
  1029. package/cjs/ui/MessageContent.js +0 -339
  1030. package/cjs/ui/MessageInput/hooks/usePaste.js +0 -17
  1031. package/cjs/ui/MessageInput.js +0 -464
  1032. package/cjs/ui/MessageItemMenu.js +0 -131
  1033. package/cjs/ui/MessageItemReactionMenu.js +0 -58
  1034. package/cjs/ui/MessageSearchFileItem.js +0 -92
  1035. package/cjs/ui/MessageSearchItem.js +0 -63
  1036. package/cjs/ui/MessageStatus.js +0 -26
  1037. package/cjs/ui/Modal.js +0 -26
  1038. package/cjs/ui/MutedAvatarOverlay.js +0 -23
  1039. package/cjs/ui/OGMessageItemBody.js +0 -87
  1040. package/cjs/ui/OpenChannelAdminMessage.js +0 -17
  1041. package/cjs/ui/OpenChannelAvatar.js +0 -26
  1042. package/cjs/ui/OpenchannelConversationHeader.js +0 -34
  1043. package/cjs/ui/OpenchannelFileMessage.js +0 -139
  1044. package/cjs/ui/OpenchannelOGMessage.js +0 -184
  1045. package/cjs/ui/OpenchannelThumbnailMessage.js +0 -176
  1046. package/cjs/ui/OpenchannelUserMessage.js +0 -147
  1047. package/cjs/ui/PlaceHolder.js +0 -58
  1048. package/cjs/ui/PlaybackTime.js +0 -22
  1049. package/cjs/ui/QuoteMessage.js +0 -81
  1050. package/cjs/ui/QuoteMessageInput.js +0 -84
  1051. package/cjs/ui/ReactionBadge.js +0 -28
  1052. package/cjs/ui/ReactionButton.js +0 -25
  1053. package/cjs/ui/SortByRow.js +0 -31
  1054. package/cjs/ui/TextButton.js +0 -17
  1055. package/cjs/ui/TextMessageItemBody.js +0 -66
  1056. package/cjs/ui/ThreadReplies.js +0 -44
  1057. package/cjs/ui/ThumbnailMessageItemBody.js +0 -45
  1058. package/cjs/ui/Toggle.js +0 -131
  1059. package/cjs/ui/Tooltip.js +0 -17
  1060. package/cjs/ui/TooltipWrapper.js +0 -21
  1061. package/cjs/ui/TypingIndicatorBubble.js +0 -69
  1062. package/cjs/ui/UnknownMessageItemBody.js +0 -29
  1063. package/cjs/ui/UserListItem.js +0 -73
  1064. package/cjs/ui/UserProfile.js +0 -60
  1065. package/cjs/ui/VoiceMessageInput.js +0 -21
  1066. package/cjs/ui/VoiceMessageItemBody.js +0 -74
  1067. package/cjs/ui/Word.js +0 -82
  1068. package/cjs/useSendbirdStateContext.js +0 -27
  1069. package/cjs/utils/message/isVoiceMessage.js +0 -11
  1070. package/cjs/withSendbird.js +0 -28
  1071. package/dist/index.css +0 -7839
  1072. package/dist/index.css.map +0 -1
  1073. package/hooks/useModal.js +0 -55
  1074. package/index.js +0 -200
  1075. package/lame.all.js +0 -16655
  1076. package/lame.all.js.map +0 -1
  1077. package/pubSub/topics.js +0 -2
  1078. package/sendbirdSelectors.js +0 -555
  1079. package/types/lib/hooks/useConnect/setupConnection.d.ts +0 -18
  1080. package/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +0 -29
  1081. package/types/modules/Channel/context/hooks/useResendMessageCallback.d.ts +0 -14
  1082. package/types/modules/ChannelList/components/ChannelListUI/index.d.ts +0 -23
  1083. package/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +0 -3
  1084. package/types/types.d.ts +0 -59
  1085. package/types/ui/EmojiReactions/ReactionItem.d.ts +0 -17
  1086. package/types/ui/Label/stringSet.d.ts +0 -189
  1087. package/ui/Accordion.js +0 -47
  1088. package/ui/AccordionGroup.js +0 -15
  1089. package/ui/AdminMessage.js +0 -19
  1090. package/ui/Avatar.js +0 -9
  1091. package/ui/Badge.js +0 -24
  1092. package/ui/BottomSheet.js +0 -36
  1093. package/ui/Button.js +0 -49
  1094. package/ui/ChannelAvatar.js +0 -30
  1095. package/ui/ConnectionStatus.js +0 -18
  1096. package/ui/ContextMenu.js +0 -207
  1097. package/ui/DateSeparator.js +0 -19
  1098. package/ui/EmojiReactions.js +0 -178
  1099. package/ui/EmojiReactions.js.map +0 -1
  1100. package/ui/FileMessageItemBody.js +0 -39
  1101. package/ui/FileViewer.js +0 -24
  1102. package/ui/Icon.js +0 -1116
  1103. package/ui/IconButton.js +0 -24
  1104. package/ui/ImageRenderer.js +0 -114
  1105. package/ui/ImageRenderer.js.map +0 -1
  1106. package/ui/Input.js +0 -21
  1107. package/ui/Label.js +0 -5
  1108. package/ui/LinkLabel.js +0 -26
  1109. package/ui/Loader.js +0 -18
  1110. package/ui/MentionLabel.js +0 -67
  1111. package/ui/MentionUserLabel.js +0 -10
  1112. package/ui/MessageContent.js +0 -337
  1113. package/ui/MessageContent.js.map +0 -1
  1114. package/ui/MessageInput/hooks/usePaste.js +0 -8
  1115. package/ui/MessageInput.js +0 -462
  1116. package/ui/MessageItemMenu.js +0 -126
  1117. package/ui/MessageItemReactionMenu.js +0 -53
  1118. package/ui/MessageSearchFileItem.js +0 -90
  1119. package/ui/MessageSearchItem.js +0 -61
  1120. package/ui/MessageStatus.js +0 -17
  1121. package/ui/Modal.js +0 -14
  1122. package/ui/MutedAvatarOverlay.js +0 -21
  1123. package/ui/OGMessageItemBody.js +0 -85
  1124. package/ui/OpenChannelAdminMessage.js +0 -15
  1125. package/ui/OpenChannelAvatar.js +0 -24
  1126. package/ui/OpenchannelConversationHeader.js +0 -32
  1127. package/ui/OpenchannelFileMessage.js +0 -137
  1128. package/ui/OpenchannelFileMessage.js.map +0 -1
  1129. package/ui/OpenchannelOGMessage.js +0 -182
  1130. package/ui/OpenchannelOGMessage.js.map +0 -1
  1131. package/ui/OpenchannelThumbnailMessage.js +0 -174
  1132. package/ui/OpenchannelThumbnailMessage.js.map +0 -1
  1133. package/ui/OpenchannelUserMessage.js +0 -145
  1134. package/ui/OpenchannelUserMessage.js.map +0 -1
  1135. package/ui/PlaceHolder.js +0 -53
  1136. package/ui/PlaybackTime.js +0 -17
  1137. package/ui/QuoteMessage.js +0 -79
  1138. package/ui/QuoteMessageInput.js +0 -82
  1139. package/ui/ReactionBadge.js +0 -26
  1140. package/ui/ReactionButton.js +0 -23
  1141. package/ui/SortByRow.js +0 -29
  1142. package/ui/TextButton.js +0 -15
  1143. package/ui/TextMessageItemBody.js +0 -64
  1144. package/ui/ThreadReplies.js +0 -42
  1145. package/ui/ThumbnailMessageItemBody.js +0 -43
  1146. package/ui/Toggle.js +0 -126
  1147. package/ui/Tooltip.js +0 -15
  1148. package/ui/TooltipWrapper.js +0 -19
  1149. package/ui/TypingIndicatorBubble.js +0 -67
  1150. package/ui/UnknownMessageItemBody.js +0 -27
  1151. package/ui/UserListItem.js +0 -71
  1152. package/ui/UserListItem.js.map +0 -1
  1153. package/ui/UserProfile.js +0 -58
  1154. package/ui/VoiceMessageInput.js +0 -15
  1155. package/ui/VoiceMessageItemBody.js +0 -69
  1156. package/ui/Word.js +0 -80
  1157. package/useSendbirdStateContext.js +0 -22
  1158. package/utils/message/isVoiceMessage.js +0 -9
  1159. package/withSendbird.js +0 -23
  1160. /package/{App.js.map → dist/App.js.map} +0 -0
  1161. /package/{Channel → dist/Channel}/components/ChannelHeader.js.map +0 -0
  1162. /package/{Channel → dist/Channel}/components/ChannelUI.js.map +0 -0
  1163. /package/{Channel → dist/Channel}/components/FileViewer.js.map +0 -0
  1164. /package/{Channel → dist/Channel}/components/FrozenNotification.js.map +0 -0
  1165. /package/{Channel → dist/Channel}/components/Message.js.map +0 -0
  1166. /package/{Channel → dist/Channel}/components/MessageInput.js.map +0 -0
  1167. /package/{Channel → dist/Channel}/components/MessageList.js.map +0 -0
  1168. /package/{Channel → dist/Channel}/components/RemoveMessageModal.js.map +0 -0
  1169. /package/{Channel → dist/Channel}/components/SuggestedMentionList.js.map +0 -0
  1170. /package/{Channel → dist/Channel}/components/TypingIndicator.js.map +0 -0
  1171. /package/{Channel → dist/Channel}/components/UnreadCount.js.map +0 -0
  1172. /package/{Channel → dist/Channel}/context.js.map +0 -0
  1173. /package/{Channel → dist/Channel}/hooks/useHandleUploadFiles.js.map +0 -0
  1174. /package/{Channel → dist/Channel}/hooks/useInitialMessagesFetch.js.map +0 -0
  1175. /package/{Channel → dist/Channel}/utils/compareMessagesForGrouping.js.map +0 -0
  1176. /package/{Channel → dist/Channel}/utils/getMessagePartsInfo.js.map +0 -0
  1177. /package/{Channel.js.map → dist/Channel.js.map} +0 -0
  1178. /package/{ChannelList → dist/ChannelList}/components/AddChannel.js.map +0 -0
  1179. /package/{ChannelList → dist/ChannelList}/components/ChannelListHeader.js.map +0 -0
  1180. /package/{ChannelList → dist/ChannelList}/components/ChannelListUI.js.map +0 -0
  1181. /package/{ChannelList → dist/ChannelList}/components/ChannelPreview.js.map +0 -0
  1182. /package/{ChannelList → dist/ChannelList}/components/ChannelPreviewAction.js.map +0 -0
  1183. /package/{ChannelList → dist/ChannelList}/context.js.map +0 -0
  1184. /package/{ChannelList.js.map → dist/ChannelList.js.map} +0 -0
  1185. /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelProfile.js.map +0 -0
  1186. /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelSettingsUI.js.map +0 -0
  1187. /package/{ChannelSettings → dist/ChannelSettings}/components/EditDetailsModal.js.map +0 -0
  1188. /package/{ChannelSettings → dist/ChannelSettings}/components/LeaveChannel.js.map +0 -0
  1189. /package/{ChannelSettings → dist/ChannelSettings}/components/ModerationPanel.js.map +0 -0
  1190. /package/{cjs → dist}/ChannelSettings/components/UserListItem.js.map +0 -0
  1191. /package/{ChannelSettings → dist/ChannelSettings}/components/UserPanel.js.map +0 -0
  1192. /package/{ChannelSettings → dist/ChannelSettings}/context.js.map +0 -0
  1193. /package/{ChannelSettings.js.map → dist/ChannelSettings.js.map} +0 -0
  1194. /package/{CreateChannel → dist/CreateChannel}/components/CreateChannelUI.js.map +0 -0
  1195. /package/{CreateChannel → dist/CreateChannel}/components/InviteUsers.js.map +0 -0
  1196. /package/{CreateChannel → dist/CreateChannel}/components/SelectChannelType.js.map +0 -0
  1197. /package/{CreateChannel → dist/CreateChannel}/context.js.map +0 -0
  1198. /package/{CreateChannel.js.map → dist/CreateChannel.js.map} +0 -0
  1199. /package/{CreateOpenChannel → dist/CreateOpenChannel}/components/CreateOpenChannelUI.js.map +0 -0
  1200. /package/{CreateOpenChannel → dist/CreateOpenChannel}/context.js.map +0 -0
  1201. /package/{CreateOpenChannel.js.map → dist/CreateOpenChannel.js.map} +0 -0
  1202. /package/{EditUserProfile → dist/EditUserProfile}/context.js +0 -0
  1203. /package/{EditUserProfile → dist/EditUserProfile}/context.js.map +0 -0
  1204. /package/{EditUserProfile.js.map → dist/EditUserProfile.js.map} +0 -0
  1205. /package/{Message → dist/Message}/context.js +0 -0
  1206. /package/{Message → dist/Message}/context.js.map +0 -0
  1207. /package/{Message → dist/Message}/hooks/useDirtyGetMentions.js +0 -0
  1208. /package/{Message → dist/Message}/hooks/useDirtyGetMentions.js.map +0 -0
  1209. /package/{MessageSearch → dist/MessageSearch}/components/MessageSearchUI.js.map +0 -0
  1210. /package/{MessageSearch → dist/MessageSearch}/context.js.map +0 -0
  1211. /package/{MessageSearch.js.map → dist/MessageSearch.js.map} +0 -0
  1212. /package/{OpenChannel → dist/OpenChannel}/components/FrozenChannelNotification.js.map +0 -0
  1213. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelHeader.js.map +0 -0
  1214. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelInput.js.map +0 -0
  1215. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelMessage.js.map +0 -0
  1216. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelMessageList.js.map +0 -0
  1217. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelUI.js.map +0 -0
  1218. /package/{OpenChannel → dist/OpenChannel}/context.js.map +0 -0
  1219. /package/{OpenChannel.js.map → dist/OpenChannel.js.map} +0 -0
  1220. /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelListUI.js.map +0 -0
  1221. /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelPreview.js.map +0 -0
  1222. /package/{OpenChannelList → dist/OpenChannelList}/context.js.map +0 -0
  1223. /package/{OpenChannelList.js.map → dist/OpenChannelList.js.map} +0 -0
  1224. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/EditDetailsModal.js.map +0 -0
  1225. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelProfile.js.map +0 -0
  1226. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelSettingsUI.js.map +0 -0
  1227. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OperatorUI.js.map +0 -0
  1228. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/ParticipantUI.js.map +0 -0
  1229. /package/{OpenChannelSettings → dist/OpenChannelSettings}/context.js.map +0 -0
  1230. /package/{OpenChannelSettings.js.map → dist/OpenChannelSettings.js.map} +0 -0
  1231. /package/{SendbirdProvider.js.map → dist/SendbirdProvider.js.map} +0 -0
  1232. /package/{Thread → dist/Thread}/components/ParentMessageInfoItem.js.map +0 -0
  1233. /package/{Thread → dist/Thread}/components/ThreadHeader.js.map +0 -0
  1234. /package/{Thread → dist/Thread}/components/ThreadList.js.map +0 -0
  1235. /package/{Thread → dist/Thread}/components/ThreadMessageInput.js.map +0 -0
  1236. /package/{Thread → dist/Thread}/components/ThreadUI.js.map +0 -0
  1237. /package/{Thread → dist/Thread}/context/types.js +0 -0
  1238. /package/{Thread → dist/Thread}/context/types.js.map +0 -0
  1239. /package/{Thread.js.map → dist/Thread.js.map} +0 -0
  1240. /package/{VoicePlayer → dist/VoicePlayer}/context.js.map +0 -0
  1241. /package/{VoicePlayer → dist/VoicePlayer}/useVoicePlayer.js.map +0 -0
  1242. /package/{VoiceRecorder → dist/VoiceRecorder}/context.js.map +0 -0
  1243. /package/{VoiceRecorder → dist/VoiceRecorder}/useVoiceRecorder.js.map +0 -0
  1244. /package/{cjs → dist/cjs}/App.js.map +0 -0
  1245. /package/{cjs → dist/cjs}/Channel/components/ChannelHeader.js.map +0 -0
  1246. /package/{cjs → dist/cjs}/Channel/components/ChannelUI.js.map +0 -0
  1247. /package/{cjs → dist/cjs}/Channel/components/FileViewer.js.map +0 -0
  1248. /package/{cjs → dist/cjs}/Channel/components/FrozenNotification.js.map +0 -0
  1249. /package/{cjs → dist/cjs}/Channel/components/Message.js.map +0 -0
  1250. /package/{cjs → dist/cjs}/Channel/components/MessageInput.js.map +0 -0
  1251. /package/{cjs → dist/cjs}/Channel/components/MessageList.js.map +0 -0
  1252. /package/{cjs → dist/cjs}/Channel/components/RemoveMessageModal.js.map +0 -0
  1253. /package/{cjs → dist/cjs}/Channel/components/SuggestedMentionList.js.map +0 -0
  1254. /package/{cjs → dist/cjs}/Channel/components/TypingIndicator.js.map +0 -0
  1255. /package/{cjs → dist/cjs}/Channel/components/UnreadCount.js.map +0 -0
  1256. /package/{cjs → dist/cjs}/Channel/context.js.map +0 -0
  1257. /package/{cjs → dist/cjs}/Channel/hooks/useHandleUploadFiles.js.map +0 -0
  1258. /package/{cjs → dist/cjs}/Channel/hooks/useInitialMessagesFetch.js.map +0 -0
  1259. /package/{cjs → dist/cjs}/Channel/utils/compareMessagesForGrouping.js.map +0 -0
  1260. /package/{cjs → dist/cjs}/Channel/utils/getMessagePartsInfo.js.map +0 -0
  1261. /package/{cjs → dist/cjs}/Channel.js.map +0 -0
  1262. /package/{cjs → dist/cjs}/ChannelList/components/AddChannel.js.map +0 -0
  1263. /package/{cjs → dist/cjs}/ChannelList/components/ChannelListHeader.js.map +0 -0
  1264. /package/{cjs → dist/cjs}/ChannelList/components/ChannelListUI.js.map +0 -0
  1265. /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreview.js.map +0 -0
  1266. /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreviewAction.js.map +0 -0
  1267. /package/{cjs → dist/cjs}/ChannelList/context.js.map +0 -0
  1268. /package/{cjs → dist/cjs}/ChannelList.js.map +0 -0
  1269. /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelProfile.js.map +0 -0
  1270. /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelSettingsUI.js.map +0 -0
  1271. /package/{cjs → dist/cjs}/ChannelSettings/components/EditDetailsModal.js.map +0 -0
  1272. /package/{cjs → dist/cjs}/ChannelSettings/components/LeaveChannel.js.map +0 -0
  1273. /package/{cjs → dist/cjs}/ChannelSettings/components/ModerationPanel.js.map +0 -0
  1274. /package/{cjs → dist/cjs}/ChannelSettings/components/UserPanel.js.map +0 -0
  1275. /package/{cjs → dist/cjs}/ChannelSettings/context.js.map +0 -0
  1276. /package/{cjs → dist/cjs}/ChannelSettings.js.map +0 -0
  1277. /package/{cjs → dist/cjs}/CreateChannel/components/CreateChannelUI.js.map +0 -0
  1278. /package/{cjs → dist/cjs}/CreateChannel/components/InviteUsers.js.map +0 -0
  1279. /package/{cjs → dist/cjs}/CreateChannel/components/SelectChannelType.js.map +0 -0
  1280. /package/{cjs → dist/cjs}/CreateChannel/context.js.map +0 -0
  1281. /package/{cjs → dist/cjs}/CreateChannel.js.map +0 -0
  1282. /package/{cjs → dist/cjs}/CreateOpenChannel/components/CreateOpenChannelUI.js.map +0 -0
  1283. /package/{cjs → dist/cjs}/CreateOpenChannel/context.js.map +0 -0
  1284. /package/{cjs → dist/cjs}/CreateOpenChannel.js.map +0 -0
  1285. /package/{cjs → dist/cjs}/EditUserProfile/context.js +0 -0
  1286. /package/{cjs → dist/cjs}/EditUserProfile/context.js.map +0 -0
  1287. /package/{cjs → dist/cjs}/EditUserProfile.js.map +0 -0
  1288. /package/{cjs → dist/cjs}/Message/context.js +0 -0
  1289. /package/{cjs → dist/cjs}/Message/context.js.map +0 -0
  1290. /package/{cjs → dist/cjs}/Message/hooks/useDirtyGetMentions.js +0 -0
  1291. /package/{cjs → dist/cjs}/Message/hooks/useDirtyGetMentions.js.map +0 -0
  1292. /package/{cjs → dist/cjs}/MessageSearch/components/MessageSearchUI.js.map +0 -0
  1293. /package/{cjs → dist/cjs}/MessageSearch/context.js.map +0 -0
  1294. /package/{cjs → dist/cjs}/MessageSearch.js.map +0 -0
  1295. /package/{cjs → dist/cjs}/OpenChannel/components/FrozenChannelNotification.js.map +0 -0
  1296. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelHeader.js.map +0 -0
  1297. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelInput.js.map +0 -0
  1298. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelMessage.js.map +0 -0
  1299. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelMessageList.js.map +0 -0
  1300. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelUI.js.map +0 -0
  1301. /package/{cjs → dist/cjs}/OpenChannel/context.js.map +0 -0
  1302. /package/{cjs → dist/cjs}/OpenChannel.js.map +0 -0
  1303. /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelListUI.js.map +0 -0
  1304. /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelPreview.js.map +0 -0
  1305. /package/{cjs → dist/cjs}/OpenChannelList/context.js.map +0 -0
  1306. /package/{cjs → dist/cjs}/OpenChannelList.js.map +0 -0
  1307. /package/{cjs → dist/cjs}/OpenChannelSettings/components/EditDetailsModal.js.map +0 -0
  1308. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelProfile.js.map +0 -0
  1309. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +0 -0
  1310. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OperatorUI.js.map +0 -0
  1311. /package/{cjs → dist/cjs}/OpenChannelSettings/components/ParticipantUI.js.map +0 -0
  1312. /package/{cjs → dist/cjs}/OpenChannelSettings/context.js.map +0 -0
  1313. /package/{cjs → dist/cjs}/OpenChannelSettings.js.map +0 -0
  1314. /package/{cjs → dist/cjs}/SendbirdProvider.js.map +0 -0
  1315. /package/{cjs → dist/cjs}/Thread/components/ParentMessageInfoItem.js.map +0 -0
  1316. /package/{cjs → dist/cjs}/Thread/components/ThreadHeader.js.map +0 -0
  1317. /package/{cjs → dist/cjs}/Thread/components/ThreadList.js.map +0 -0
  1318. /package/{cjs → dist/cjs}/Thread/components/ThreadMessageInput.js.map +0 -0
  1319. /package/{cjs → dist/cjs}/Thread/components/ThreadUI.js.map +0 -0
  1320. /package/{cjs → dist/cjs}/Thread/context/types.js +0 -0
  1321. /package/{cjs → dist/cjs}/Thread/context/types.js.map +0 -0
  1322. /package/{cjs → dist/cjs}/Thread.js.map +0 -0
  1323. /package/{cjs → dist/cjs}/VoicePlayer/context.js.map +0 -0
  1324. /package/{cjs → dist/cjs}/VoicePlayer/useVoicePlayer.js.map +0 -0
  1325. /package/{cjs → dist/cjs}/VoiceRecorder/context.js.map +0 -0
  1326. /package/{cjs → dist/cjs}/VoiceRecorder/useVoiceRecorder.js.map +0 -0
  1327. /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js +0 -0
  1328. /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js.map +0 -0
  1329. /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js +0 -0
  1330. /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js.map +0 -0
  1331. /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js +0 -0
  1332. /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js.map +0 -0
  1333. /package/{cjs → dist/cjs}/handlers/SessionHandler.js +0 -0
  1334. /package/{cjs → dist/cjs}/handlers/SessionHandler.js.map +0 -0
  1335. /package/{cjs → dist/cjs}/handlers/UserEventHandler.js +0 -0
  1336. /package/{cjs → dist/cjs}/handlers/UserEventHandler.js.map +0 -0
  1337. /package/{cjs → dist/cjs}/hooks/useModal.js.map +0 -0
  1338. /package/{cjs → dist/cjs}/index.js.map +0 -0
  1339. /package/{cjs → dist/cjs}/package.json +0 -0
  1340. /package/{cjs → dist/cjs}/pubSub/topics.js.map +0 -0
  1341. /package/{cjs → dist/cjs}/sendbirdSelectors.js.map +0 -0
  1342. /package/{cjs → dist/cjs}/ui/Accordion.js.map +0 -0
  1343. /package/{cjs → dist/cjs}/ui/AccordionGroup.js.map +0 -0
  1344. /package/{cjs → dist/cjs}/ui/AdminMessage.js.map +0 -0
  1345. /package/{cjs → dist/cjs}/ui/Avatar.js.map +0 -0
  1346. /package/{cjs → dist/cjs}/ui/Badge.js.map +0 -0
  1347. /package/{cjs → dist/cjs}/ui/BottomSheet.js.map +0 -0
  1348. /package/{cjs → dist/cjs}/ui/Button.js.map +0 -0
  1349. /package/{cjs → dist/cjs}/ui/ChannelAvatar.js.map +0 -0
  1350. /package/{cjs → dist/cjs}/ui/Checkbox.js +0 -0
  1351. /package/{cjs → dist/cjs}/ui/Checkbox.js.map +0 -0
  1352. /package/{cjs → dist/cjs}/ui/ConnectionStatus.js.map +0 -0
  1353. /package/{cjs → dist/cjs}/ui/ContextMenu.js.map +0 -0
  1354. /package/{cjs → dist/cjs}/ui/DateSeparator.js.map +0 -0
  1355. /package/{cjs → dist/cjs}/ui/FileMessageItemBody.js.map +0 -0
  1356. /package/{cjs → dist/cjs}/ui/FileViewer.js.map +0 -0
  1357. /package/{cjs → dist/cjs}/ui/Icon.js.map +0 -0
  1358. /package/{cjs → dist/cjs}/ui/IconButton.js.map +0 -0
  1359. /package/{cjs → dist/cjs}/ui/Input.js.map +0 -0
  1360. /package/{cjs → dist/cjs}/ui/Label.js.map +0 -0
  1361. /package/{cjs → dist/cjs}/ui/LinkLabel.js.map +0 -0
  1362. /package/{cjs → dist/cjs}/ui/Loader.js.map +0 -0
  1363. /package/{cjs → dist/cjs}/ui/MentionLabel.js.map +0 -0
  1364. /package/{cjs → dist/cjs}/ui/MentionUserLabel.js.map +0 -0
  1365. /package/{cjs → dist/cjs}/ui/MessageInput/hooks/usePaste.js.map +0 -0
  1366. /package/{cjs → dist/cjs}/ui/MessageInput.js.map +0 -0
  1367. /package/{cjs → dist/cjs}/ui/MessageItemMenu.js.map +0 -0
  1368. /package/{cjs → dist/cjs}/ui/MessageItemReactionMenu.js.map +0 -0
  1369. /package/{cjs → dist/cjs}/ui/MessageSearchFileItem.js.map +0 -0
  1370. /package/{cjs → dist/cjs}/ui/MessageSearchItem.js.map +0 -0
  1371. /package/{cjs → dist/cjs}/ui/MessageStatus.js.map +0 -0
  1372. /package/{cjs → dist/cjs}/ui/Modal.js.map +0 -0
  1373. /package/{cjs → dist/cjs}/ui/MutedAvatarOverlay.js.map +0 -0
  1374. /package/{cjs → dist/cjs}/ui/OGMessageItemBody.js.map +0 -0
  1375. /package/{cjs → dist/cjs}/ui/OpenChannelAdminMessage.js.map +0 -0
  1376. /package/{cjs → dist/cjs}/ui/OpenChannelAvatar.js.map +0 -0
  1377. /package/{cjs → dist/cjs}/ui/OpenchannelConversationHeader.js.map +0 -0
  1378. /package/{cjs → dist/cjs}/ui/PlaceHolder.js.map +0 -0
  1379. /package/{cjs → dist/cjs}/ui/PlaybackTime.js.map +0 -0
  1380. /package/{cjs → dist/cjs}/ui/ProgressBar.js +0 -0
  1381. /package/{cjs → dist/cjs}/ui/ProgressBar.js.map +0 -0
  1382. /package/{cjs → dist/cjs}/ui/QuoteMessage.js.map +0 -0
  1383. /package/{cjs → dist/cjs}/ui/QuoteMessageInput.js.map +0 -0
  1384. /package/{cjs → dist/cjs}/ui/ReactionBadge.js.map +0 -0
  1385. /package/{cjs → dist/cjs}/ui/ReactionButton.js.map +0 -0
  1386. /package/{cjs → dist/cjs}/ui/SortByRow.js.map +0 -0
  1387. /package/{cjs → dist/cjs}/ui/TextButton.js.map +0 -0
  1388. /package/{cjs → dist/cjs}/ui/TextMessageItemBody.js.map +0 -0
  1389. /package/{cjs → dist/cjs}/ui/ThreadReplies.js.map +0 -0
  1390. /package/{cjs → dist/cjs}/ui/ThumbnailMessageItemBody.js.map +0 -0
  1391. /package/{cjs → dist/cjs}/ui/Toggle.js.map +0 -0
  1392. /package/{cjs → dist/cjs}/ui/Tooltip.js.map +0 -0
  1393. /package/{cjs → dist/cjs}/ui/TooltipWrapper.js.map +0 -0
  1394. /package/{cjs → dist/cjs}/ui/TypingIndicatorBubble.js.map +0 -0
  1395. /package/{cjs → dist/cjs}/ui/UnknownMessageItemBody.js.map +0 -0
  1396. /package/{cjs → dist/cjs}/ui/UserProfile.js.map +0 -0
  1397. /package/{cjs → dist/cjs}/ui/VoiceMessageInput.js.map +0 -0
  1398. /package/{cjs → dist/cjs}/ui/VoiceMessageItemBody.js.map +0 -0
  1399. /package/{cjs → dist/cjs}/ui/Word.js.map +0 -0
  1400. /package/{cjs → dist/cjs}/useSendbirdStateContext.js.map +0 -0
  1401. /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js +0 -0
  1402. /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js.map +0 -0
  1403. /package/{cjs → dist/cjs}/utils/message/isVoiceMessage.js.map +0 -0
  1404. /package/{cjs → dist/cjs}/withSendbird.js.map +0 -0
  1405. /package/{handlers → dist/handlers}/ConnectionHandler.js +0 -0
  1406. /package/{handlers → dist/handlers}/ConnectionHandler.js.map +0 -0
  1407. /package/{handlers → dist/handlers}/GroupChannelHandler.js +0 -0
  1408. /package/{handlers → dist/handlers}/GroupChannelHandler.js.map +0 -0
  1409. /package/{handlers → dist/handlers}/OpenChannelHandler.js +0 -0
  1410. /package/{handlers → dist/handlers}/OpenChannelHandler.js.map +0 -0
  1411. /package/{handlers → dist/handlers}/SessionHandler.js +0 -0
  1412. /package/{handlers → dist/handlers}/SessionHandler.js.map +0 -0
  1413. /package/{handlers → dist/handlers}/UserEventHandler.js +0 -0
  1414. /package/{handlers → dist/handlers}/UserEventHandler.js.map +0 -0
  1415. /package/{hooks → dist/hooks}/useModal.js.map +0 -0
  1416. /package/{index.js.map → dist/index.js.map} +0 -0
  1417. /package/{pubSub → dist/pubSub}/topics.js.map +0 -0
  1418. /package/{sendbirdSelectors.js.map → dist/sendbirdSelectors.js.map} +0 -0
  1419. /package/{types → dist/types}/hooks/VoicePlayer/dux/actionTypes.d.ts +0 -0
  1420. /package/{types → dist/types}/hooks/VoicePlayer/dux/initialState.d.ts +0 -0
  1421. /package/{types → dist/types}/hooks/VoicePlayer/dux/reducer.d.ts +0 -0
  1422. /package/{types → dist/types}/hooks/VoicePlayer/index.d.ts +0 -0
  1423. /package/{types → dist/types}/hooks/VoicePlayer/useVoicePlayer.d.ts +0 -0
  1424. /package/{types → dist/types}/hooks/VoicePlayer/utils.d.ts +0 -0
  1425. /package/{types → dist/types}/hooks/VoiceRecorder/WebAudioUtils.d.ts +0 -0
  1426. /package/{types → dist/types}/hooks/VoiceRecorder/index.d.ts +0 -0
  1427. /package/{types → dist/types}/hooks/VoiceRecorder/useVoiceRecorder.d.ts +0 -0
  1428. /package/{types → dist/types}/hooks/useAppendDomNode.d.ts +0 -0
  1429. /package/{types → dist/types}/hooks/useDebounce.d.ts +0 -0
  1430. /package/{types → dist/types}/hooks/useHandleOnScrollCallback/index.d.ts +0 -0
  1431. /package/{types → dist/types}/hooks/useLongPress.d.ts +0 -0
  1432. /package/{types → dist/types}/hooks/useModal/ModalRoot/index.d.ts +0 -0
  1433. /package/{types → dist/types}/hooks/useModal/index.d.ts +0 -0
  1434. /package/{types → dist/types}/hooks/useMouseHover.d.ts +0 -0
  1435. /package/{types → dist/types}/hooks/useOnScrollReachedEndDetector/index.d.ts +0 -0
  1436. /package/{types → dist/types}/hooks/useOutsideAlerter.d.ts +0 -0
  1437. /package/{types → dist/types}/hooks/useSendbirdStateContext.d.ts +0 -0
  1438. /package/{types → dist/types}/hooks/useUnmount.d.ts +0 -0
  1439. /package/{types → dist/types}/index.d.ts +0 -0
  1440. /package/{types → dist/types}/lib/LocalizationContext.d.ts +0 -0
  1441. /package/{types → dist/types}/lib/Logger/index.d.ts +0 -0
  1442. /package/{types → dist/types}/lib/MediaQueryContext.d.ts +0 -0
  1443. /package/{types → dist/types}/lib/Sendbird.d.ts +0 -0
  1444. /package/{types → dist/types}/lib/SendbirdSdkContext.d.ts +0 -0
  1445. /package/{types → dist/types}/lib/SendbirdState.d.ts +0 -0
  1446. /package/{types → dist/types}/lib/UserProfileContext.d.ts +0 -0
  1447. /package/{types → dist/types}/lib/VoiceMessageProvider.d.ts +0 -0
  1448. /package/{types → dist/types}/lib/dux/sdk/actionTypes.d.ts +0 -0
  1449. /package/{types → dist/types}/lib/dux/sdk/initialState.d.ts +0 -0
  1450. /package/{types → dist/types}/lib/dux/sdk/reducers.d.ts +0 -0
  1451. /package/{types → dist/types}/lib/dux/user/actionTypes.d.ts +0 -0
  1452. /package/{types → dist/types}/lib/dux/user/initialState.d.ts +0 -0
  1453. /package/{types → dist/types}/lib/dux/user/reducers.d.ts +0 -0
  1454. /package/{types → dist/types}/lib/handlers/ConnectionHandler.d.ts +0 -0
  1455. /package/{types → dist/types}/lib/handlers/GroupChannelHandler.d.ts +0 -0
  1456. /package/{types → dist/types}/lib/handlers/OpenChannelHandler.d.ts +0 -0
  1457. /package/{types → dist/types}/lib/handlers/SessionHandler.d.ts +0 -0
  1458. /package/{types → dist/types}/lib/handlers/UserEventHandler.d.ts +0 -0
  1459. /package/{types → dist/types}/lib/hooks/schedulerFactory.d.ts +0 -0
  1460. /package/{types → dist/types}/lib/hooks/useConnect/__test__/data.mocks.d.ts +0 -0
  1461. /package/{types → dist/types}/lib/hooks/useConnect/connect.d.ts +0 -0
  1462. /package/{types → dist/types}/lib/hooks/useConnect/disconnectSdk.d.ts +0 -0
  1463. /package/{types → dist/types}/lib/hooks/useConnect/index.d.ts +0 -0
  1464. /package/{types → dist/types}/lib/hooks/useConnect/types.d.ts +0 -0
  1465. /package/{types → dist/types}/lib/hooks/useMarkAsDeliveredScheduler.d.ts +0 -0
  1466. /package/{types → dist/types}/lib/hooks/useMarkAsReadScheduler.d.ts +0 -0
  1467. /package/{types → dist/types}/lib/hooks/useOnlineStatus.d.ts +0 -0
  1468. /package/{types → dist/types}/lib/hooks/useTheme.d.ts +0 -0
  1469. /package/{types → dist/types}/lib/pubSub/index.d.ts +0 -0
  1470. /package/{types → dist/types}/lib/pubSub/topics.d.ts +0 -0
  1471. /package/{types → dist/types}/lib/selectors.d.ts +0 -0
  1472. /package/{types → dist/types}/lib/types.d.ts +0 -0
  1473. /package/{types → dist/types}/lib/utils/resolvedReplyType.d.ts +0 -0
  1474. /package/{types → dist/types}/lib/utils/uikitConfigMapper.d.ts +0 -0
  1475. /package/{types → dist/types}/modules/App/AppLayout.d.ts +0 -0
  1476. /package/{types → dist/types}/modules/App/DesktopLayout.d.ts +0 -0
  1477. /package/{types → dist/types}/modules/App/MobileLayout.d.ts +0 -0
  1478. /package/{types → dist/types}/modules/App/index.d.ts +0 -0
  1479. /package/{types → dist/types}/modules/App/types.d.ts +0 -0
  1480. /package/{types → dist/types}/modules/Channel/components/ChannelHeader/index.d.ts +0 -0
  1481. /package/{types → dist/types}/modules/Channel/components/ChannelHeader/utils.d.ts +0 -0
  1482. /package/{types → dist/types}/modules/Channel/components/ChannelUI/index.d.ts +0 -0
  1483. /package/{types → dist/types}/modules/Channel/components/FileViewer/index.d.ts +0 -0
  1484. /package/{types → dist/types}/modules/Channel/components/FrozenNotification/index.d.ts +0 -0
  1485. /package/{types → dist/types}/modules/Channel/components/Message/index.d.ts +0 -0
  1486. /package/{types → dist/types}/modules/Channel/components/MessageInput/VoiceMessageInputWrapper.d.ts +0 -0
  1487. /package/{types → dist/types}/modules/Channel/components/MessageInput/index.d.ts +0 -0
  1488. /package/{types → dist/types}/modules/Channel/components/MessageInput/useHandleUploadFiles.d.ts +0 -0
  1489. /package/{types → dist/types}/modules/Channel/components/MessageList/getMessagePartsInfo.d.ts +0 -0
  1490. /package/{types → dist/types}/modules/Channel/components/MessageList/hooks/useScrollBehavior.d.ts +0 -0
  1491. /package/{types → dist/types}/modules/Channel/components/MessageList/hooks/useSetScrollToBottom.d.ts +0 -0
  1492. /package/{types → dist/types}/modules/Channel/components/MessageList/index.d.ts +0 -0
  1493. /package/{types → dist/types}/modules/Channel/components/RemoveMessageModal.d.ts +0 -0
  1494. /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/SuggestedUserMentionItem.d.ts +0 -0
  1495. /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/index.d.ts +0 -0
  1496. /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/utils.d.ts +0 -0
  1497. /package/{types → dist/types}/modules/Channel/components/SuggestedReplies/index.d.ts +0 -0
  1498. /package/{types → dist/types}/modules/Channel/components/TypingIndicator.d.ts +0 -0
  1499. /package/{types → dist/types}/modules/Channel/components/UnreadCount/index.d.ts +0 -0
  1500. /package/{types → dist/types}/modules/Channel/context/ChannelProvider.d.ts +0 -0
  1501. /package/{types → dist/types}/modules/Channel/context/compareMessagesForGrouping.d.ts +0 -0
  1502. /package/{types → dist/types}/modules/Channel/context/const.d.ts +0 -0
  1503. /package/{types → dist/types}/modules/Channel/context/dux/actionTypes.d.ts +0 -0
  1504. /package/{types → dist/types}/modules/Channel/context/dux/initialState.d.ts +0 -0
  1505. /package/{types → dist/types}/modules/Channel/context/dux/reducers.d.ts +0 -0
  1506. /package/{types → dist/types}/modules/Channel/context/hooks/useDeleteMessageCallback.d.ts +0 -0
  1507. /package/{types → dist/types}/modules/Channel/context/hooks/useGetChannel.d.ts +0 -0
  1508. /package/{types → dist/types}/modules/Channel/context/hooks/useHandleChannelPubsubEvents.d.ts +0 -0
  1509. /package/{types → dist/types}/modules/Channel/context/hooks/useHandleReconnect.d.ts +0 -0
  1510. /package/{types → dist/types}/modules/Channel/context/hooks/useInitialMessagesFetch.d.ts +0 -0
  1511. /package/{types → dist/types}/modules/Channel/context/hooks/useReconnectOnIdle.d.ts +0 -0
  1512. /package/{types → dist/types}/modules/Channel/context/hooks/useScrollCallback.d.ts +0 -0
  1513. /package/{types → dist/types}/modules/Channel/context/hooks/useScrollDownCallback.d.ts +0 -0
  1514. /package/{types → dist/types}/modules/Channel/context/hooks/useScrollToMessage.d.ts +0 -0
  1515. /package/{types → dist/types}/modules/Channel/context/hooks/useSendFileMessageCallback.d.ts +0 -0
  1516. /package/{types → dist/types}/modules/Channel/context/hooks/useSendMessageCallback.d.ts +0 -0
  1517. /package/{types → dist/types}/modules/Channel/context/hooks/useSendMultipleFilesMessage.d.ts +0 -0
  1518. /package/{types → dist/types}/modules/Channel/context/hooks/useSendVoiceMessageCallback.d.ts +0 -0
  1519. /package/{types → dist/types}/modules/Channel/context/hooks/useStatefulFileInfoList.d.ts +0 -0
  1520. /package/{types → dist/types}/modules/Channel/context/hooks/useThreadMessageKindKeySelector.d.ts +0 -0
  1521. /package/{types → dist/types}/modules/Channel/context/hooks/useToggleReactionCallback.d.ts +0 -0
  1522. /package/{types → dist/types}/modules/Channel/context/hooks/useUpdateMessageCallback.d.ts +0 -0
  1523. /package/{types → dist/types}/modules/Channel/context/utils.d.ts +0 -0
  1524. /package/{types → dist/types}/modules/Channel/index.d.ts +0 -0
  1525. /package/{types → dist/types}/modules/ChannelList/components/AddChannel/index.d.ts +0 -0
  1526. /package/{types → dist/types}/modules/ChannelList/components/ChannelListHeader/index.d.ts +0 -0
  1527. /package/{types → dist/types}/modules/ChannelList/components/ChannelPreview/index.d.ts +0 -0
  1528. /package/{types → dist/types}/modules/ChannelList/components/ChannelPreview/utils.d.ts +0 -0
  1529. /package/{types → dist/types}/modules/ChannelList/components/ChannelPreviewAction.d.ts +0 -0
  1530. /package/{types → dist/types}/modules/ChannelList/components/LeaveChannel/index.d.ts +0 -0
  1531. /package/{types → dist/types}/modules/ChannelList/components/Placeholder.d.ts +0 -0
  1532. /package/{types → dist/types}/modules/ChannelList/context/ChannelListProvider.d.ts +0 -0
  1533. /package/{types → dist/types}/modules/ChannelList/context/hooks/useActiveChannelUrl.d.ts +0 -0
  1534. /package/{types → dist/types}/modules/ChannelList/context/hooks/useFetchChannelList.d.ts +0 -0
  1535. /package/{types → dist/types}/modules/ChannelList/dux/actionTypes.d.ts +0 -0
  1536. /package/{types → dist/types}/modules/ChannelList/dux/getNextChannel.d.ts +0 -0
  1537. /package/{types → dist/types}/modules/ChannelList/dux/initialState.d.ts +0 -0
  1538. /package/{types → dist/types}/modules/ChannelList/dux/reducers.d.ts +0 -0
  1539. /package/{types → dist/types}/modules/ChannelList/index.d.ts +0 -0
  1540. /package/{types → dist/types}/modules/ChannelList/utils.d.ts +0 -0
  1541. /package/{types → dist/types}/modules/ChannelSettings/components/ChannelProfile/index.d.ts +0 -0
  1542. /package/{types → dist/types}/modules/ChannelSettings/components/ChannelSettingsUI/index.d.ts +0 -0
  1543. /package/{types → dist/types}/modules/ChannelSettings/components/EditDetailsModal/index.d.ts +0 -0
  1544. /package/{types → dist/types}/modules/ChannelSettings/components/LeaveChannel/index.d.ts +0 -0
  1545. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/AddOperatorsModal.d.ts +0 -0
  1546. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/BannedUserList.d.ts +0 -0
  1547. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/BannedUsersModal.d.ts +0 -0
  1548. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/InviteUsersModal.d.ts +0 -0
  1549. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MemberList.d.ts +0 -0
  1550. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MembersModal.d.ts +0 -0
  1551. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MutedMemberList.d.ts +0 -0
  1552. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MutedMembersModal.d.ts +0 -0
  1553. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/OperatorList.d.ts +0 -0
  1554. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/OperatorsModal.d.ts +0 -0
  1555. /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/index.d.ts +0 -0
  1556. /package/{types → dist/types}/modules/ChannelSettings/components/UserListItem/index.d.ts +0 -0
  1557. /package/{types → dist/types}/modules/ChannelSettings/components/UserPanel/index.d.ts +0 -0
  1558. /package/{types → dist/types}/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +0 -0
  1559. /package/{types → dist/types}/modules/ChannelSettings/index.d.ts +0 -0
  1560. /package/{types → dist/types}/modules/CreateChannel/components/CreateChannelUI/index.d.ts +0 -0
  1561. /package/{types → dist/types}/modules/CreateChannel/components/InviteUsers/index.d.ts +0 -0
  1562. /package/{types → dist/types}/modules/CreateChannel/components/InviteUsers/utils.d.ts +0 -0
  1563. /package/{types → dist/types}/modules/CreateChannel/components/SelectChannelType.d.ts +0 -0
  1564. /package/{types → dist/types}/modules/CreateChannel/context/CreateChannelProvider.d.ts +0 -0
  1565. /package/{types → dist/types}/modules/CreateChannel/index.d.ts +0 -0
  1566. /package/{types → dist/types}/modules/CreateChannel/types.d.ts +0 -0
  1567. /package/{types → dist/types}/modules/CreateChannel/utils.d.ts +0 -0
  1568. /package/{types → dist/types}/modules/CreateOpenChannel/components/CreateOpenChannelUI/index.d.ts +0 -0
  1569. /package/{types → dist/types}/modules/CreateOpenChannel/context/CreateOpenChannelProvider.d.ts +0 -0
  1570. /package/{types → dist/types}/modules/CreateOpenChannel/index.d.ts +0 -0
  1571. /package/{types → dist/types}/modules/EditUserProfile/context/EditUserProfileProvider.d.ts +0 -0
  1572. /package/{types → dist/types}/modules/EditUserProfile/index.d.ts +0 -0
  1573. /package/{types → dist/types}/modules/Message/components/TextFragment/index.d.ts +0 -0
  1574. /package/{types → dist/types}/modules/Message/consts.d.ts +0 -0
  1575. /package/{types → dist/types}/modules/Message/context/MessageProvider.d.ts +0 -0
  1576. /package/{types → dist/types}/modules/Message/hooks/useDirtyGetMentions.d.ts +0 -0
  1577. /package/{types → dist/types}/modules/Message/utils/getMentionNodes.d.ts +0 -0
  1578. /package/{types → dist/types}/modules/Message/utils/tokens/keyGenerator.d.ts +0 -0
  1579. /package/{types → dist/types}/modules/Message/utils/tokens/tokenize.d.ts +0 -0
  1580. /package/{types → dist/types}/modules/Message/utils/tokens/types.d.ts +0 -0
  1581. /package/{types → dist/types}/modules/MessageSearch/components/MessageSearchUI/index.d.ts +0 -0
  1582. /package/{types → dist/types}/modules/MessageSearch/context/MessageSearchProvider.d.ts +0 -0
  1583. /package/{types → dist/types}/modules/MessageSearch/context/dux/actionTypes.d.ts +0 -0
  1584. /package/{types → dist/types}/modules/MessageSearch/context/dux/initialState.d.ts +0 -0
  1585. /package/{types → dist/types}/modules/MessageSearch/context/dux/reducers.d.ts +0 -0
  1586. /package/{types → dist/types}/modules/MessageSearch/context/hooks/useGetSearchedMessages.d.ts +0 -0
  1587. /package/{types → dist/types}/modules/MessageSearch/context/hooks/useScrollCallback.d.ts +0 -0
  1588. /package/{types → dist/types}/modules/MessageSearch/context/hooks/useSearchStringEffect.d.ts +0 -0
  1589. /package/{types → dist/types}/modules/MessageSearch/context/hooks/useSetChannel.d.ts +0 -0
  1590. /package/{types → dist/types}/modules/MessageSearch/index.d.ts +0 -0
  1591. /package/{types → dist/types}/modules/OpenChannel/components/FrozenChannelNotification/index.d.ts +0 -0
  1592. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelHeader/index.d.ts +0 -0
  1593. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelInput/index.d.ts +0 -0
  1594. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/RemoveMessageModal.d.ts +0 -0
  1595. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/index.d.ts +0 -0
  1596. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/utils.d.ts +0 -0
  1597. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessageList/index.d.ts +0 -0
  1598. /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelUI/index.d.ts +0 -0
  1599. /package/{types → dist/types}/modules/OpenChannel/context/OpenChannelProvider.d.ts +0 -0
  1600. /package/{types → dist/types}/modules/OpenChannel/context/dux/actionTypes.d.ts +0 -0
  1601. /package/{types → dist/types}/modules/OpenChannel/context/dux/initialState.d.ts +0 -0
  1602. /package/{types → dist/types}/modules/OpenChannel/context/dux/reducers.d.ts +0 -0
  1603. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useCheckScrollBottom.d.ts +0 -0
  1604. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useDeleteMessageCallback.d.ts +0 -0
  1605. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +0 -0
  1606. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +0 -0
  1607. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useInitialMessagesFetch.d.ts +0 -0
  1608. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useResendMessageCallback.d.ts +0 -0
  1609. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useScrollCallback.d.ts +0 -0
  1610. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useSendMessageCallback.d.ts +0 -0
  1611. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useSetChannel.d.ts +0 -0
  1612. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useTrimMessageList.d.ts +0 -0
  1613. /package/{types → dist/types}/modules/OpenChannel/context/hooks/useUpdateMessageCallback.d.ts +0 -0
  1614. /package/{types → dist/types}/modules/OpenChannel/context/utils.d.ts +0 -0
  1615. /package/{types → dist/types}/modules/OpenChannel/index.d.ts +0 -0
  1616. /package/{types → dist/types}/modules/OpenChannelApp/Community.d.ts +0 -0
  1617. /package/{types → dist/types}/modules/OpenChannelApp/Streaming.d.ts +0 -0
  1618. /package/{types → dist/types}/modules/OpenChannelApp/assets/Icons.d.ts +0 -0
  1619. /package/{types → dist/types}/modules/OpenChannelApp/components/CommunityChannelList.d.ts +0 -0
  1620. /package/{types → dist/types}/modules/OpenChannelApp/components/DummyStream.d.ts +0 -0
  1621. /package/{types → dist/types}/modules/OpenChannelApp/components/Login.d.ts +0 -0
  1622. /package/{types → dist/types}/modules/OpenChannelApp/components/OpenChannelPreview.d.ts +0 -0
  1623. /package/{types → dist/types}/modules/OpenChannelApp/components/Profile.d.ts +0 -0
  1624. /package/{types → dist/types}/modules/OpenChannelApp/components/StreamingChannelList.d.ts +0 -0
  1625. /package/{types → dist/types}/modules/OpenChannelApp/index.d.ts +0 -0
  1626. /package/{types → dist/types}/modules/OpenChannelApp/stories/utils.d.ts +0 -0
  1627. /package/{types → dist/types}/modules/OpenChannelList/components/OpenChannelListUI/index.d.ts +0 -0
  1628. /package/{types → dist/types}/modules/OpenChannelList/components/OpenChannelPreview/index.d.ts +0 -0
  1629. /package/{types → dist/types}/modules/OpenChannelList/context/OpenChannelListInterfaces.d.ts +0 -0
  1630. /package/{types → dist/types}/modules/OpenChannelList/context/OpenChannelListProvider.d.ts +0 -0
  1631. /package/{types → dist/types}/modules/OpenChannelList/context/dux/actionTypes.d.ts +0 -0
  1632. /package/{types → dist/types}/modules/OpenChannelList/context/dux/initialState.d.ts +0 -0
  1633. /package/{types → dist/types}/modules/OpenChannelList/context/dux/reducer.d.ts +0 -0
  1634. /package/{types → dist/types}/modules/OpenChannelList/context/hooks/createChannelListQuery.d.ts +0 -0
  1635. /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useFetchNextCallback.d.ts +0 -0
  1636. /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useRefreshOpenChannelList.d.ts +0 -0
  1637. /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useSetupOpenChannelList.d.ts +0 -0
  1638. /package/{types → dist/types}/modules/OpenChannelList/index.d.ts +0 -0
  1639. /package/{types → dist/types}/modules/OpenChannelSettings/components/EditDetailsModal.d.ts +0 -0
  1640. /package/{types → dist/types}/modules/OpenChannelSettings/components/InvalidChannel.d.ts +0 -0
  1641. /package/{types → dist/types}/modules/OpenChannelSettings/components/OpenChannelProfile/index.d.ts +0 -0
  1642. /package/{types → dist/types}/modules/OpenChannelSettings/components/OpenChannelSettingsUI/index.d.ts +0 -0
  1643. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/AddOperatorsModal.d.ts +0 -0
  1644. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/BannedUserList.d.ts +0 -0
  1645. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/BannedUsersModal.d.ts +0 -0
  1646. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/DeleteOpenChannel.d.ts +0 -0
  1647. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantList.d.ts +0 -0
  1648. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantsModal.d.ts +0 -0
  1649. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/OperatorList.d.ts +0 -0
  1650. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/OperatorsModal.d.ts +0 -0
  1651. /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/index.d.ts +0 -0
  1652. /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/ParticipantItem.d.ts +0 -0
  1653. /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/ParticipantsModal.d.ts +0 -0
  1654. /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/index.d.ts +0 -0
  1655. /package/{types → dist/types}/modules/OpenChannelSettings/context/OpenChannelSettingsProvider.d.ts +0 -0
  1656. /package/{types → dist/types}/modules/OpenChannelSettings/index.d.ts +0 -0
  1657. /package/{types → dist/types}/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +0 -0
  1658. /package/{types → dist/types}/modules/Thread/components/ParentMessageInfo/index.d.ts +0 -0
  1659. /package/{types → dist/types}/modules/Thread/components/RemoveMessageModal.d.ts +0 -0
  1660. /package/{types → dist/types}/modules/Thread/components/ThreadHeader/index.d.ts +0 -0
  1661. /package/{types → dist/types}/modules/Thread/components/ThreadList/ThreadListItem.d.ts +0 -0
  1662. /package/{types → dist/types}/modules/Thread/components/ThreadList/ThreadListItemContent.d.ts +0 -0
  1663. /package/{types → dist/types}/modules/Thread/components/ThreadList/index.d.ts +0 -0
  1664. /package/{types → dist/types}/modules/Thread/components/ThreadMessageInput/index.d.ts +0 -0
  1665. /package/{types → dist/types}/modules/Thread/components/ThreadUI/index.d.ts +0 -0
  1666. /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedHeader.d.ts +0 -0
  1667. /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedParentMessageInfo.d.ts +0 -0
  1668. /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedThreadList.d.ts +0 -0
  1669. /package/{types → dist/types}/modules/Thread/consts.d.ts +0 -0
  1670. /package/{types → dist/types}/modules/Thread/context/ThreadProvider.d.ts +0 -0
  1671. /package/{types → dist/types}/modules/Thread/context/dux/actionTypes.d.ts +0 -0
  1672. /package/{types → dist/types}/modules/Thread/context/dux/initialState.d.ts +0 -0
  1673. /package/{types → dist/types}/modules/Thread/context/dux/reducer.d.ts +0 -0
  1674. /package/{types → dist/types}/modules/Thread/context/hooks/useDeleteMessageCallback.d.ts +0 -0
  1675. /package/{types → dist/types}/modules/Thread/context/hooks/useGetAllEmoji.d.ts +0 -0
  1676. /package/{types → dist/types}/modules/Thread/context/hooks/useGetChannel.d.ts +0 -0
  1677. /package/{types → dist/types}/modules/Thread/context/hooks/useGetNextThreadsCallback.d.ts +0 -0
  1678. /package/{types → dist/types}/modules/Thread/context/hooks/useGetParentMessage.d.ts +0 -0
  1679. /package/{types → dist/types}/modules/Thread/context/hooks/useGetPrevThreadsCallback.d.ts +0 -0
  1680. /package/{types → dist/types}/modules/Thread/context/hooks/useGetThreadList.d.ts +0 -0
  1681. /package/{types → dist/types}/modules/Thread/context/hooks/useHandleChannelEvents.d.ts +0 -0
  1682. /package/{types → dist/types}/modules/Thread/context/hooks/useHandleThreadPubsubEvents.d.ts +0 -0
  1683. /package/{types → dist/types}/modules/Thread/context/hooks/useResendMessageCallback.d.ts +0 -0
  1684. /package/{types → dist/types}/modules/Thread/context/hooks/useSendFileMessage.d.ts +0 -0
  1685. /package/{types → dist/types}/modules/Thread/context/hooks/useSendMultipleFilesMessage.d.ts +0 -0
  1686. /package/{types → dist/types}/modules/Thread/context/hooks/useSendUserMessageCallback.d.ts +0 -0
  1687. /package/{types → dist/types}/modules/Thread/context/hooks/useSendVoiceMessageCallback.d.ts +0 -0
  1688. /package/{types → dist/types}/modules/Thread/context/hooks/useToggleReactionsCallback.d.ts +0 -0
  1689. /package/{types → dist/types}/modules/Thread/context/hooks/useUpdateMessageCallback.d.ts +0 -0
  1690. /package/{types → dist/types}/modules/Thread/context/utils.d.ts +0 -0
  1691. /package/{types → dist/types}/modules/Thread/index.d.ts +0 -0
  1692. /package/{types → dist/types}/modules/Thread/types.d.ts +0 -0
  1693. /package/{types → dist/types}/modules/internalInterfaces.d.ts +0 -0
  1694. /package/{types → dist/types}/ui/Accordion/AccordionGroup.d.ts +0 -0
  1695. /package/{types → dist/types}/ui/Accordion/context.d.ts +0 -0
  1696. /package/{types → dist/types}/ui/Accordion/index.d.ts +0 -0
  1697. /package/{types → dist/types}/ui/AdminMessage/adminMessageDummyData.mock.d.ts +0 -0
  1698. /package/{types → dist/types}/ui/AdminMessage/index.d.ts +0 -0
  1699. /package/{types → dist/types}/ui/Avatar/AvatarDefault.d.ts +0 -0
  1700. /package/{types → dist/types}/ui/Avatar/MutedAvatarOverlay.d.ts +0 -0
  1701. /package/{types → dist/types}/ui/Avatar/index.d.ts +0 -0
  1702. /package/{types → dist/types}/ui/Badge/index.d.ts +0 -0
  1703. /package/{types → dist/types}/ui/BottomSheet/index.d.ts +0 -0
  1704. /package/{types → dist/types}/ui/Button/index.d.ts +0 -0
  1705. /package/{types → dist/types}/ui/Button/types.d.ts +0 -0
  1706. /package/{types → dist/types}/ui/Button/utils.d.ts +0 -0
  1707. /package/{types → dist/types}/ui/ChannelAvatar/OpenChannelAvatar.d.ts +0 -0
  1708. /package/{types → dist/types}/ui/ChannelAvatar/index.d.ts +0 -0
  1709. /package/{types → dist/types}/ui/ChannelAvatar/utils.d.ts +0 -0
  1710. /package/{types → dist/types}/ui/Checkbox/index.d.ts +0 -0
  1711. /package/{types → dist/types}/ui/ConnectionStatus/index.d.ts +0 -0
  1712. /package/{types → dist/types}/ui/ContextMenu/EmojiListItems.d.ts +0 -0
  1713. /package/{types → dist/types}/ui/ContextMenu/MenuItems.d.ts +0 -0
  1714. /package/{types → dist/types}/ui/ContextMenu/index.d.ts +0 -0
  1715. /package/{types → dist/types}/ui/DateSeparator/index.d.ts +0 -0
  1716. /package/{types → dist/types}/ui/Docs/Introduction.d.ts +0 -0
  1717. /package/{types → dist/types}/ui/EmojiReactions/AddReactionBadgeItem.d.ts +0 -0
  1718. /package/{types → dist/types}/ui/EmojiReactions/index.d.ts +0 -0
  1719. /package/{types → dist/types}/ui/FileMessageItemBody/index.d.ts +0 -0
  1720. /package/{types → dist/types}/ui/FileViewer/DeleteButton.d.ts +0 -0
  1721. /package/{types → dist/types}/ui/FileViewer/Slider.d.ts +0 -0
  1722. /package/{types → dist/types}/ui/FileViewer/data.mock.d.ts +0 -0
  1723. /package/{types → dist/types}/ui/FileViewer/hooks/useKeyDown.d.ts +0 -0
  1724. /package/{types → dist/types}/ui/FileViewer/index.d.ts +0 -0
  1725. /package/{types → dist/types}/ui/FileViewer/types.d.ts +0 -0
  1726. /package/{types → dist/types}/ui/FileViewer/utils.d.ts +0 -0
  1727. /package/{types → dist/types}/ui/Icon/colors.d.ts +0 -0
  1728. /package/{types → dist/types}/ui/Icon/index.d.ts +0 -0
  1729. /package/{types → dist/types}/ui/Icon/type.d.ts +0 -0
  1730. /package/{types → dist/types}/ui/Icon/utils.d.ts +0 -0
  1731. /package/{types → dist/types}/ui/IconButton/index.d.ts +0 -0
  1732. /package/{types → dist/types}/ui/ImageGrid/index.d.ts +0 -0
  1733. /package/{types → dist/types}/ui/ImageRenderer/index.d.ts +0 -0
  1734. /package/{types → dist/types}/ui/ImageRenderer/useDynamicSideLength.d.ts +0 -0
  1735. /package/{types → dist/types}/ui/ImageRenderer/utils.d.ts +0 -0
  1736. /package/{types → dist/types}/ui/Input/index.d.ts +0 -0
  1737. /package/{types → dist/types}/ui/Label/index.d.ts +0 -0
  1738. /package/{types → dist/types}/ui/Label/stringFormatterUtils.d.ts +0 -0
  1739. /package/{types → dist/types}/ui/Label/types.d.ts +0 -0
  1740. /package/{types → dist/types}/ui/Label/utils.d.ts +0 -0
  1741. /package/{types → dist/types}/ui/LegacyEditUserProfile/index.d.ts +0 -0
  1742. /package/{types → dist/types}/ui/LinkLabel/index.d.ts +0 -0
  1743. /package/{types → dist/types}/ui/Loader/index.d.ts +0 -0
  1744. /package/{types → dist/types}/ui/MentionLabel/index.d.ts +0 -0
  1745. /package/{types → dist/types}/ui/MentionUserLabel/consts.d.ts +0 -0
  1746. /package/{types → dist/types}/ui/MentionUserLabel/index.d.ts +0 -0
  1747. /package/{types → dist/types}/ui/MentionUserLabel/renderToString.d.ts +0 -0
  1748. /package/{types → dist/types}/ui/MessageContent/MessageBody/index.d.ts +0 -0
  1749. /package/{types → dist/types}/ui/MessageContent/MessageHeader/index.d.ts +0 -0
  1750. /package/{types → dist/types}/ui/MessageContent/MessageProfile/index.d.ts +0 -0
  1751. /package/{types → dist/types}/ui/MessageContent/index.d.ts +0 -0
  1752. /package/{types → dist/types}/ui/MessageInput/const.d.ts +0 -0
  1753. /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/consts.d.ts +0 -0
  1754. /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/index.d.ts +0 -0
  1755. /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/insertTemplate.d.ts +0 -0
  1756. /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/types.d.ts +0 -0
  1757. /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/utils.d.ts +0 -0
  1758. /package/{types → dist/types}/ui/MessageInput/index.d.ts +0 -0
  1759. /package/{types → dist/types}/ui/MessageInput/messageInputUtils.d.ts +0 -0
  1760. /package/{types → dist/types}/ui/MessageInput/utils.d.ts +0 -0
  1761. /package/{types → dist/types}/ui/MessageItemMenu/index.d.ts +0 -0
  1762. /package/{types → dist/types}/ui/MessageItemReactionMenu/index.d.ts +0 -0
  1763. /package/{types → dist/types}/ui/MessageSearchFileItem/index.d.ts +0 -0
  1764. /package/{types → dist/types}/ui/MessageSearchFileItem/mockFileMessage.d.ts +0 -0
  1765. /package/{types → dist/types}/ui/MessageSearchFileItem/utils.d.ts +0 -0
  1766. /package/{types → dist/types}/ui/MessageSearchItem/getCreatedAt.d.ts +0 -0
  1767. /package/{types → dist/types}/ui/MessageSearchItem/index.d.ts +0 -0
  1768. /package/{types → dist/types}/ui/MessageSearchItem/messageDummyDate.mock.d.ts +0 -0
  1769. /package/{types → dist/types}/ui/MessageStatus/index.d.ts +0 -0
  1770. /package/{types → dist/types}/ui/MessageStatus/messageDummyData.mock.d.ts +0 -0
  1771. /package/{types → dist/types}/ui/MobileMenu/MobileBottomSheet.d.ts +0 -0
  1772. /package/{types → dist/types}/ui/MobileMenu/MobileContextMenu.d.ts +0 -0
  1773. /package/{types → dist/types}/ui/MobileMenu/MobileEmojisBottomSheet.d.ts +0 -0
  1774. /package/{types → dist/types}/ui/MobileMenu/ReactedMembersBottomSheet.d.ts +0 -0
  1775. /package/{types → dist/types}/ui/MobileMenu/index.d.ts +0 -0
  1776. /package/{types → dist/types}/ui/MobileMenu/types.d.ts +0 -0
  1777. /package/{types → dist/types}/ui/Modal/index.d.ts +0 -0
  1778. /package/{types → dist/types}/ui/MultipleFilesMessageItemBody/const.d.ts +0 -0
  1779. /package/{types → dist/types}/ui/MultipleFilesMessageItemBody/index.d.ts +0 -0
  1780. /package/{types → dist/types}/ui/OGMessageItemBody/consts.d.ts +0 -0
  1781. /package/{types → dist/types}/ui/OGMessageItemBody/index.d.ts +0 -0
  1782. /package/{types → dist/types}/ui/OpenChannelAdminMessage/index.d.ts +0 -0
  1783. /package/{types → dist/types}/ui/OpenChannelMobileMenu/index.d.ts +0 -0
  1784. /package/{types → dist/types}/ui/OpenchannelConversationHeader/index.d.ts +0 -0
  1785. /package/{types → dist/types}/ui/OpenchannelFileMessage/index.d.ts +0 -0
  1786. /package/{types → dist/types}/ui/OpenchannelFileMessage/mockMessages.d.ts +0 -0
  1787. /package/{types → dist/types}/ui/OpenchannelFileMessage/utils.d.ts +0 -0
  1788. /package/{types → dist/types}/ui/OpenchannelOGMessage/index.d.ts +0 -0
  1789. /package/{types → dist/types}/ui/OpenchannelOGMessage/utils.d.ts +0 -0
  1790. /package/{types → dist/types}/ui/OpenchannelThumbnailMessage/index.d.ts +0 -0
  1791. /package/{types → dist/types}/ui/OpenchannelThumbnailMessage/utils.d.ts +0 -0
  1792. /package/{types → dist/types}/ui/OpenchannelUserMessage/index.d.ts +0 -0
  1793. /package/{types → dist/types}/ui/OpenchannelUserMessage/utils.d.ts +0 -0
  1794. /package/{types → dist/types}/ui/PlaceHolder/index.d.ts +0 -0
  1795. /package/{types → dist/types}/ui/PlaybackTime/index.d.ts +0 -0
  1796. /package/{types → dist/types}/ui/ProgressBar/index.d.ts +0 -0
  1797. /package/{types → dist/types}/ui/QuoteMessage/index.d.ts +0 -0
  1798. /package/{types → dist/types}/ui/QuoteMessage/utils.d.ts +0 -0
  1799. /package/{types → dist/types}/ui/QuoteMessageInput/QuoteMessageThumbnail.d.ts +0 -0
  1800. /package/{types → dist/types}/ui/QuoteMessageInput/index.d.ts +0 -0
  1801. /package/{types → dist/types}/ui/QuoteMessageInput/mockMessage.d.ts +0 -0
  1802. /package/{types → dist/types}/ui/ReactionBadge/index.d.ts +0 -0
  1803. /package/{types → dist/types}/ui/ReactionButton/index.d.ts +0 -0
  1804. /package/{types → dist/types}/ui/SortByRow/index.d.ts +0 -0
  1805. /package/{types → dist/types}/ui/TextButton/index.d.ts +0 -0
  1806. /package/{types → dist/types}/ui/TextMessageItemBody/consts.d.ts +0 -0
  1807. /package/{types → dist/types}/ui/TextMessageItemBody/index.d.ts +0 -0
  1808. /package/{types → dist/types}/ui/ThreadReplies/index.d.ts +0 -0
  1809. /package/{types → dist/types}/ui/ThumbnailMessageItemBody/index.d.ts +0 -0
  1810. /package/{types → dist/types}/ui/Toggle/ToggleContainer.d.ts +0 -0
  1811. /package/{types → dist/types}/ui/Toggle/ToggleContext.d.ts +0 -0
  1812. /package/{types → dist/types}/ui/Toggle/ToggleUI.d.ts +0 -0
  1813. /package/{types → dist/types}/ui/Toggle/index.d.ts +0 -0
  1814. /package/{types → dist/types}/ui/Toggle/utils.d.ts +0 -0
  1815. /package/{types → dist/types}/ui/Tooltip/index.d.ts +0 -0
  1816. /package/{types → dist/types}/ui/TooltipWrapper/index.d.ts +0 -0
  1817. /package/{types → dist/types}/ui/TypingIndicatorBubble/TypingDots.d.ts +0 -0
  1818. /package/{types → dist/types}/ui/TypingIndicatorBubble/index.d.ts +0 -0
  1819. /package/{types → dist/types}/ui/UnknownMessageItemBody/index.d.ts +0 -0
  1820. /package/{types → dist/types}/ui/UserListItem/index.d.ts +0 -0
  1821. /package/{types → dist/types}/ui/UserProfile/index.d.ts +0 -0
  1822. /package/{types → dist/types}/ui/VoiceMessageInput/controlerIcons.d.ts +0 -0
  1823. /package/{types → dist/types}/ui/VoiceMessageInput/index.d.ts +0 -0
  1824. /package/{types → dist/types}/ui/VoiceMessageInput/types.d.ts +0 -0
  1825. /package/{types → dist/types}/ui/VoiceMessageItemBody/index.d.ts +0 -0
  1826. /package/{types → dist/types}/ui/Word/index.d.ts +0 -0
  1827. /package/{types → dist/types}/utils/cloneMessage.d.ts +0 -0
  1828. /package/{types → dist/types}/utils/color.d.ts +0 -0
  1829. /package/{types → dist/types}/utils/compareIds.d.ts +0 -0
  1830. /package/{types → dist/types}/utils/compressImages.d.ts +0 -0
  1831. /package/{types → dist/types}/utils/consts.d.ts +0 -0
  1832. /package/{types → dist/types}/utils/createStatefulFileInfoList.d.ts +0 -0
  1833. /package/{types → dist/types}/utils/exports/getOutgoingMessageState.d.ts +0 -0
  1834. /package/{types → dist/types}/utils/getIsReactionEnabled.d.ts +0 -0
  1835. /package/{types → dist/types}/utils/index.d.ts +0 -0
  1836. /package/{types → dist/types}/utils/isVoiceMessage.d.ts +0 -0
  1837. /package/{types → dist/types}/utils/numberToPx.d.ts +0 -0
  1838. /package/{types → dist/types}/utils/openChannelUtils.d.ts +0 -0
  1839. /package/{types → dist/types}/utils/pxToNumber.d.ts +0 -0
  1840. /package/{types → dist/types}/utils/testMocks/error.d.ts +0 -0
  1841. /package/{types → dist/types}/utils/testMocks/message.d.ts +0 -0
  1842. /package/{types → dist/types}/utils/testMocks/messageRequestHandler.d.ts +0 -0
  1843. /package/{types → dist/types}/utils/typeHelpers/objectValues.d.ts +0 -0
  1844. /package/{types → dist/types}/utils/typeHelpers/partialDeep.d.ts +0 -0
  1845. /package/{types → dist/types}/utils/typeHelpers/reducers/createAction.d.ts +0 -0
  1846. /package/{types → dist/types}/utils/useDidMountEffect.d.ts +0 -0
  1847. /package/{types → dist/types}/utils/utils.d.ts +0 -0
  1848. /package/{types → dist/types}/utils/uuid.d.ts +0 -0
  1849. /package/{ui → dist/ui}/Accordion.js.map +0 -0
  1850. /package/{ui → dist/ui}/AccordionGroup.js.map +0 -0
  1851. /package/{ui → dist/ui}/AdminMessage.js.map +0 -0
  1852. /package/{ui → dist/ui}/Avatar.js.map +0 -0
  1853. /package/{ui → dist/ui}/Badge.js.map +0 -0
  1854. /package/{ui → dist/ui}/BottomSheet.js.map +0 -0
  1855. /package/{ui → dist/ui}/Button.js.map +0 -0
  1856. /package/{ui → dist/ui}/ChannelAvatar.js.map +0 -0
  1857. /package/{ui → dist/ui}/Checkbox.js +0 -0
  1858. /package/{ui → dist/ui}/Checkbox.js.map +0 -0
  1859. /package/{ui → dist/ui}/ConnectionStatus.js.map +0 -0
  1860. /package/{ui → dist/ui}/ContextMenu.js.map +0 -0
  1861. /package/{ui → dist/ui}/DateSeparator.js.map +0 -0
  1862. /package/{ui → dist/ui}/FileMessageItemBody.js.map +0 -0
  1863. /package/{ui → dist/ui}/FileViewer.js.map +0 -0
  1864. /package/{ui → dist/ui}/Icon.js.map +0 -0
  1865. /package/{ui → dist/ui}/IconButton.js.map +0 -0
  1866. /package/{ui → dist/ui}/Input.js.map +0 -0
  1867. /package/{ui → dist/ui}/Label.js.map +0 -0
  1868. /package/{ui → dist/ui}/LinkLabel.js.map +0 -0
  1869. /package/{ui → dist/ui}/Loader.js.map +0 -0
  1870. /package/{ui → dist/ui}/MentionLabel.js.map +0 -0
  1871. /package/{ui → dist/ui}/MentionUserLabel.js.map +0 -0
  1872. /package/{cjs → dist}/ui/MessageContent.js.map +0 -0
  1873. /package/{ui → dist/ui}/MessageInput/hooks/usePaste.js.map +0 -0
  1874. /package/{ui → dist/ui}/MessageInput.js.map +0 -0
  1875. /package/{ui → dist/ui}/MessageItemMenu.js.map +0 -0
  1876. /package/{ui → dist/ui}/MessageItemReactionMenu.js.map +0 -0
  1877. /package/{ui → dist/ui}/MessageSearchFileItem.js.map +0 -0
  1878. /package/{ui → dist/ui}/MessageSearchItem.js.map +0 -0
  1879. /package/{ui → dist/ui}/MessageStatus.js.map +0 -0
  1880. /package/{ui → dist/ui}/Modal.js.map +0 -0
  1881. /package/{ui → dist/ui}/MutedAvatarOverlay.js.map +0 -0
  1882. /package/{ui → dist/ui}/OGMessageItemBody.js.map +0 -0
  1883. /package/{ui → dist/ui}/OpenChannelAdminMessage.js.map +0 -0
  1884. /package/{ui → dist/ui}/OpenChannelAvatar.js.map +0 -0
  1885. /package/{ui → dist/ui}/OpenchannelConversationHeader.js.map +0 -0
  1886. /package/{cjs → dist}/ui/OpenchannelFileMessage.js.map +0 -0
  1887. /package/{cjs → dist}/ui/OpenchannelOGMessage.js.map +0 -0
  1888. /package/{cjs → dist}/ui/OpenchannelThumbnailMessage.js.map +0 -0
  1889. /package/{cjs → dist}/ui/OpenchannelUserMessage.js.map +0 -0
  1890. /package/{ui → dist/ui}/PlaceHolder.js.map +0 -0
  1891. /package/{ui → dist/ui}/PlaybackTime.js.map +0 -0
  1892. /package/{ui → dist/ui}/ProgressBar.js +0 -0
  1893. /package/{ui → dist/ui}/ProgressBar.js.map +0 -0
  1894. /package/{ui → dist/ui}/QuoteMessage.js.map +0 -0
  1895. /package/{ui → dist/ui}/QuoteMessageInput.js.map +0 -0
  1896. /package/{ui → dist/ui}/ReactionBadge.js.map +0 -0
  1897. /package/{ui → dist/ui}/ReactionButton.js.map +0 -0
  1898. /package/{ui → dist/ui}/SortByRow.js.map +0 -0
  1899. /package/{ui → dist/ui}/TextButton.js.map +0 -0
  1900. /package/{ui → dist/ui}/TextMessageItemBody.js.map +0 -0
  1901. /package/{ui → dist/ui}/ThreadReplies.js.map +0 -0
  1902. /package/{ui → dist/ui}/ThumbnailMessageItemBody.js.map +0 -0
  1903. /package/{ui → dist/ui}/Toggle.js.map +0 -0
  1904. /package/{ui → dist/ui}/Tooltip.js.map +0 -0
  1905. /package/{ui → dist/ui}/TooltipWrapper.js.map +0 -0
  1906. /package/{ui → dist/ui}/TypingIndicatorBubble.js.map +0 -0
  1907. /package/{ui → dist/ui}/UnknownMessageItemBody.js.map +0 -0
  1908. /package/{cjs → dist}/ui/UserListItem.js.map +0 -0
  1909. /package/{ui → dist/ui}/UserProfile.js.map +0 -0
  1910. /package/{ui → dist/ui}/VoiceMessageInput.js.map +0 -0
  1911. /package/{ui → dist/ui}/VoiceMessageItemBody.js.map +0 -0
  1912. /package/{ui → dist/ui}/Word.js.map +0 -0
  1913. /package/{useSendbirdStateContext.js.map → dist/useSendbirdStateContext.js.map} +0 -0
  1914. /package/{utils → dist/utils}/message/getOutgoingMessageState.js +0 -0
  1915. /package/{utils → dist/utils}/message/getOutgoingMessageState.js.map +0 -0
  1916. /package/{utils → dist/utils}/message/isVoiceMessage.js.map +0 -0
  1917. /package/{withSendbird.js.map → dist/withSendbird.js.map} +0 -0
@@ -0,0 +1,1975 @@
1
+ # Changelog - v3
2
+
3
+ ## [v3.9.1] (Dec 8 2023)
4
+
5
+ ### Features:
6
+ * Improved image loading speed by implementing lazy load with `IntersectionObserver`
7
+ * Replaced lamejs binary
8
+ ### Fixes:
9
+ * Fixed a bug where the admin message disappears when sending a message
10
+ * Recognized the hash property in the URL
11
+ * Fixed a bug where resending MFM fails in the thread
12
+ * Group channel user left or banned event should not be ignored
13
+ * Removed left 0px from `<Avatar />` component to fix ruined align
14
+ * Applied StringSet for the file upload limit notification
15
+
16
+ ### Improvements:
17
+ * Divided `<EditUserProfileUI />` into Modal and View parts
18
+ * Added a message prop to `<ReactionItem />` component
19
+ * Improved the storybook of `<EmojiReactions />`
20
+
21
+ ## [v3.9.0] (Nov 24 2023)
22
+
23
+ ### Features:
24
+ #### Typing indicator bubble feature
25
+
26
+ `TypingIndicatorBubble` is a new typing indicator UI that can be turned on through `typingIndicatorTypes` option. When turned on, it will be displayed in `MessageList` upon receiving typing event in real time.
27
+
28
+ * Added `typingIndicatorTypes` global option
29
+ * Added `TypingIndicatorType` enum
30
+ * How to use?
31
+ ```tsx
32
+ <App
33
+ appId={appId}
34
+ userId={userId}
35
+ uikitOptions={{
36
+ groupChannel: {
37
+ // Below turns on both bubble and text typing indicators. Default is Text only.
38
+ typingIndicatorTypes: new Set([TypingIndicatorType.Bubble, TypingIndicatorType.Text]),
39
+ }
40
+ }}
41
+ />
42
+ ```
43
+ * Added `TypingIndicatorBubble`
44
+ * How to use?
45
+ ```tsx
46
+ const moveScroll = (): void => {
47
+ const current = scrollRef?.current;
48
+ if (current) {
49
+ const bottom = current.scrollHeight - current.scrollTop - current.offsetHeight;
50
+ if (scrollBottom < bottom && scrollBottom < SCROLL_BUFFER) {
51
+ // Move the scroll as much as the height of the message has changed
52
+ current.scrollTop += bottom - scrollBottom;
53
+ }
54
+ }
55
+ };
56
+
57
+ return (
58
+ <TypingIndicatorBubble
59
+ typingMembers={typingMembers}
60
+ handleScroll={moveScroll} // Scroll to the rendered typing indicator message IFF current scroll is bottom.
61
+ />
62
+ );
63
+ ```
64
+
65
+ #### Others
66
+ * Added support for `eventHandlers.connection.onFailed` callback in `setupConnection`. This callback will be called on connection failure
67
+ * How to use?
68
+ ```tsx
69
+ <Sendbird
70
+ appId={appId}
71
+ userId={undefined} // this will cause an error
72
+ eventHandlers={{
73
+ connection: {
74
+ onFailed: (error) => {
75
+ alert(error?.message); // display a browser alert and print the error message inside
76
+ }
77
+ }
78
+ }}
79
+ >
80
+ ```
81
+ * Added new props to the `MessageContent` component: `renderMessageMenu`, `renderEmojiMenu`, and `renderEmojiReactions`
82
+ * How to use?
83
+ ```tsx
84
+ <Channel
85
+ renderMessageContent={(props) => {
86
+ return <MessageContent
87
+ {...props}
88
+ renderMessageMenu={(props) => {
89
+ return <MessageMenu {...props} />
90
+ }}
91
+ renderEmojiMenu={(props) => {
92
+ return <MessageEmojiMenu {...props} />
93
+ }}
94
+ renderEmojiReactions={(props) => {
95
+ return <EmojiReactions {...props} />
96
+ }}
97
+ />
98
+ }}
99
+ />
100
+ ```
101
+ * Added `onProfileEditSuccess` prop to `App` and `ChannelList` components
102
+ * Added `renderFrozenNotification` in `ChannelUIProps`
103
+ * How to use?
104
+ ```tsx
105
+ <Channel
106
+ channelUrl={channelUrl}
107
+ renderFrozenNotification={() => {
108
+ return (
109
+ <div
110
+ className="sendbird-notification sendbird-notification--frozen sendbird-conversation__messages__notification"
111
+ >My custom Frozen Notification</div>
112
+ );
113
+ }}
114
+ />
115
+ ```
116
+ * Exported `VoiceMessageInputWrapper` and `useHandleUploadFiles`
117
+ * How to use?
118
+ ```tsx
119
+ import { useHandleUploadFiles } from '@sendbird/uikit-react/Channel/hooks/useHandleUploadFiles'
120
+ import { VoiceMessageInputWrapper, VoiceMessageInputWrapperProps } from '@sendbird/uikit-react/Channel/components/MessageInput'
121
+ ```
122
+
123
+ ### Fixes:
124
+ * Fixed a bug where setting `startingPoint` scrolls to the middle of the target message when it should be at the top of the message
125
+ * Applied dark theme to the slide left icon
126
+ * Fixed a bug where changing current channel not clearing pending and failed messages from the previous channel
127
+ * Fixed a bug where the thumbnail image of `OGMessage` being displayed as not fitting the container
128
+ * Fixed a bug where resending a failed message in `Thread` results in displaying resulting message in `Channel`
129
+ * Fixed a bug where unread message notification not being removed when scroll reaches bottom
130
+
131
+ ### Improvement:
132
+ * Channels list no longer displays unread message count badge for focused channel
133
+
134
+
135
+ ## [v3.8.2] (Nov 10 2023)
136
+
137
+ ### Features:
138
+ * `MessageContent` is not customizable with three new optional properties:
139
+ * `renderSenderProfile`, `renderMessageBody`, and `renderMessageHeader`
140
+ * How to use?
141
+ ```tsx
142
+ import Channel from '@sendbird/uikit-react/Channel'
143
+ import { useSendbirdStateContext } from '@sendbird/uikit-react/useSendbirdStateContext'
144
+ import { useChannelContext } from '@sendbird/uikit-react/Channel/context'
145
+ import MessageContent from '@sendbird/uikit-react/ui/MessageContent'
146
+
147
+ const CustomChannel = () => {
148
+ const { config } = useSendbirdStateContext();
149
+ const { userId } = config;
150
+ const { currentGroupChannel } = useChannelContext();
151
+ return (
152
+ <Channel
153
+ ...
154
+ renderMessage={({ message }) => {
155
+ return (
156
+ <MessageContent
157
+ userId={userId}
158
+ channel={currentGroupChannel}
159
+ message={message}
160
+ ...
161
+ renderSenderProfile={(props: MessageProfileProps) => (
162
+ <MessageProfile {...props}/>
163
+ )}
164
+ renderMessageBody={(props: MessageBodyProps) => (
165
+ <MessageBody {...props}/>
166
+ )}
167
+ renderMessageHeader={(props: MessageHeaderProps) => (
168
+ <MessageHeader {...props}/>
169
+ )}
170
+ />
171
+ )
172
+ }}
173
+ />
174
+ )
175
+ }
176
+ ```
177
+
178
+ ### Fixes:
179
+ * Fix runtime error due to publishing modules
180
+ * Add missing date locale to the `UnreadCount` banner since string
181
+ * Use the more impactful value between the `resizingWidth` and `resizingHeight`
182
+ * So, the original images' ratio won't be broken
183
+ * Apply the `ImageCompression` to the `Thread` module
184
+ * Apply the `ImageCompression` for sending file message and multiple files message
185
+
186
+ ### Improvements:
187
+ * Use `channel.members` instead of fetching for non-super group channels in the `SuggestedMentionList`
188
+
189
+ ## [v3.8.1] (Nov 10 2023) - DEPRECATED
190
+
191
+ ## [v3.8.0] (Nov 3 2023)
192
+
193
+ ### Feat:
194
+ * Added a feature to support predefined suggested reply options for AI chatbot trigger messages.
195
+ * Introduced custom date format string sets, allowing users to customize the date format for `DateSeparators` and `UnreadCount`.
196
+ * Exported the `initialMessagesFetch` callback from the hook to provide more flexibility in UIKit customization.
197
+
198
+ ### Fixes:
199
+ * Removed duplicate `UserProfileProvider` in `OpenChannelSettings``.
200
+ * Removed the logic blocking the addition of empty channels to the ChannelList.
201
+ * Fixed a runtime error in empty channels.
202
+ * Added precise object dependencies in effect hooks to prevent unnecessary re-renders in the Channel module.
203
+ * Used channel members instead of fetch when searched.
204
+
205
+ ### Chores:
206
+ * Migrated the rest of modules & UI components to TypeScript from Javascript.
207
+ * Introduced new build settings:
208
+ * Changes have been made to export modules using the [sub-path exports](https://nodejs.org/api/packages.html#subpath-exports) in the `package.json`. If you were using the package in a Native CJS environment, this might have an impact.
209
+ In that case, you can migrate the path as follows:
210
+ ```diff
211
+ - const ChannelList = require('@sendbird/uikit-react/cjs/ChannelList');
212
+ + const ChannelList = require('@sendbird/uikit-react/ChannelList');
213
+ ```
214
+ * TypeScript support also has been improved. Now, precise types based on the source code are used.
215
+
216
+ ## [v3.7.0] (Oct 23 2023)
217
+
218
+ ### Multiple Files Message
219
+ Now we are supporting Multiple Files Message feature!<br/>
220
+ You can select some **multiple files** in the message inputs, and send **multiple images** in one message.<br/>
221
+ If you select several types of files, only images will be combined in the message and the other files will be sent separately.
222
+ Also we have resolved many issues found during QA.
223
+
224
+ #### How to enable this feature?
225
+ You can turn it on in four places.
226
+
227
+ 1. App Component
228
+ ```tsx
229
+ import App from '@sendbird/uikit-react/App'
230
+
231
+ <App
232
+ ...
233
+ isMultipleFilesMessageEnabled
234
+ />
235
+ ```
236
+ 2. SendbirdProvider
237
+ ```tsx
238
+ import { SendbirdProvider } from '@sendbird/uikit-react/SendbirdProvider'
239
+
240
+ <SendbirdProvider
241
+ ...
242
+ isMultipleFilesMessageEnabled
243
+ >
244
+ {...}
245
+ </SendbirdProvider>
246
+ ```
247
+ 3. Channel
248
+ ```tsx
249
+ import Channel from '@sendbird/uikit-react/Channel';
250
+ import { ChannelProvider } from '@sendbird/uikit-react/Channel/context';
251
+
252
+ <Channel
253
+ ...
254
+ isMultipleFilesMessageEnabled
255
+ />
256
+ <ChannelProvider
257
+ ...
258
+ isMultipleFilesMessageEnabled
259
+ >
260
+ {...}
261
+ </ChannelProvider>
262
+ ```
263
+ 3. Thread
264
+ ```tsx
265
+ import Thread from '@sendbird/uikit-react/Thread';
266
+ import { ThreadProvider } from '@sendbird/uikit-react/Thread/context';
267
+
268
+ <Thread
269
+ ...
270
+ isMultipleFilesMessageEnabled
271
+ />
272
+ <ThreadProvider
273
+ ...
274
+ isMultipleFilesMessageEnabled
275
+ >
276
+ {...}
277
+ </ThreadProvider>
278
+ ```
279
+
280
+ ### Interface change/publish
281
+ * The properties of the `ChannelContext` and `ThreadContext` has been changed little bit.
282
+ * `allMessages` of the ChannelContext has been divided into `allMessages` and `localMessages`
283
+ * `allThreadMessages` of the ThreadContext has been divided into `allThreadMessages` and `localThreadMessages`
284
+ * Each local messages includes `pending` and `failed` messages, and the all messages will contain only `succeeded` messages
285
+ * **Please keep in mind, you have to migrate to using the local messages, IF you have used the `local messages` to draw your custom message components.**
286
+ * pubSub has been published
287
+ * `publishingModules` has been added to the payload of pubSub.publish
288
+ You can specify the particular modules that you propose for event publishing
289
+ ```tsx
290
+ import { useCallback } from 'react'
291
+ import { SendbirdProvider, useSendbirdStateContext } from '@sendbird/uikit-react/SendbirdProvider'
292
+ import { PUBSUB_TOPICS as topics, PublishingModuleTypes } from '@sendbird/uikit-react/pubSub/topics'
293
+
294
+ const CustomApp = () => {
295
+ const globalState = useSendbirdStateContext();
296
+ const { stores, config } = globalState;
297
+ const { sdk, initialized } = stores.sdkStore;
298
+ const { pubSub } = config;
299
+
300
+ const onSendFileMessageOnlyInChannel = useCallback((channel, params) => {
301
+ channel.sendFileMessage(params)
302
+ .onPending((pendingMessage) => {
303
+ pubSub.publish(topics.SEND_MESSAGE_START, {
304
+ channel,
305
+ message: pendingMessage,
306
+ publishingModules: [PublishingModuleTypes.CHANNEL],
307
+ });
308
+ })
309
+ .onFailed((failedMessage) => {
310
+ pubSub.publish(topics.SEND_MESSAGE_FAILED, {
311
+ channel,
312
+ message: failedMessage,
313
+ publishingModules: [PublishingModuleTypes.CHANNEL],
314
+ });
315
+ })
316
+ .onSucceeded((succeededMessage) => {
317
+ pubSub.publish(topics.SEND_FILE_MESSAGE, {
318
+ channel,
319
+ message: succeededMessage,
320
+ publishingModules: [PublishingModuleTypes.CHANNEL],
321
+ });
322
+ })
323
+ }, []);
324
+
325
+ return (<>...</>)
326
+ };
327
+
328
+ const App = () => (
329
+ <SendbirdProvider>
330
+ <CustomApp />
331
+ </SendbirdProvider>
332
+ );
333
+ ```
334
+
335
+ ### Fixes:
336
+ * Improve the pubSub&dispatch logics
337
+ * Allow deleting failed messages
338
+ * Check applicationUserListQuery.isLoading before fetching user list
339
+ * Fix the error message: "Query in progress."
340
+ * Fix missed or wrong type definitions
341
+ * `quoteMessage` of ChannelProviderInterface
342
+ * `useEditUserProfileProviderContext` has been renamed to `useEditUserProfileContext`
343
+ ```tsx
344
+ import { useEditUserProfileProviderContext } from '@sendbird/uikit-react/EditUserProfile/context'
345
+ // to
346
+ import { useEditUserProfileContext } from '@sendbird/uikit-react/EditUserProfile/context'
347
+ ```
348
+
349
+ ## [v3.6.10] (Oct 11 2023)
350
+ ### Fixes:
351
+ * (in Safari) Display the placeholder of the MessageInput when the input text is cleared
352
+ * Remove duplicated CSS line
353
+ * (in iOS) fix focusing on the chat screen starts from the top in Mobile device
354
+ * Move to the top in the ChannelList when the current user but a different peer sends a message
355
+
356
+ ## [v3.6.9] (Oct 6 2023)
357
+ ### Fixes:
358
+ * Able to see the quoted messages regardless of the ReplyType
359
+ * Improve the types of the function props of `ui/MessageInput` component
360
+ ```ts
361
+ interface MessageInputProps {
362
+ ...
363
+ onFileUpload?: (fileList: FileList) => void;
364
+ onSendMessage?: (props: { message: string, mentionTemplate: string }) => void;
365
+ onUpdateMessage?: (props: { messageId: string, message: string, mentionTemplate: string }) => void;
366
+ }
367
+ ```
368
+ * Move to the channel list when current user is banned or the channel is deleted in MobileLayout
369
+ * Add new iconColor: THUMBNAIL_ICON which doesn't change by theme
370
+ * Add some props types that we have missed in the public interface
371
+ * ChannelProvider
372
+ * Add
373
+ ```ts
374
+ interface ChannelContextProps {
375
+ onBeforeSendVoiceMessage?: (file: File, quotedMessage?: SendableMessageType) => FileMessageCreateParams;
376
+ }
377
+ ```
378
+ * Usage
379
+ ```tsx
380
+ import { ChannelProvider } from '@sendbird/uikit-react/Channel/context'
381
+
382
+ <ChannelProvider
383
+ onBeforeSendVoiceMessage={() => {}}
384
+ />
385
+ ```
386
+ * ThreadProvider
387
+ * Add
388
+ ```ts
389
+ interface ThreadProviderProps {
390
+ onBeforeSendUserMessage?: (message: string, quotedMessage?: SendableMessageType) => UserMessageCreateParams;
391
+ onBeforeSendFileMessage?: (file: File, quotedMessage?: SendableMessageType) => FileMessageCreateParams;
392
+ onBeforeSendVoiceMessage?: (file: File, quotedMessage?: SendableMessageType) => FileMessageCreateParams;
393
+ }
394
+ ```
395
+ * Usage
396
+ ```tsx
397
+ import { ThreadProvider } from '@sendbird/uikit-react/Thread/context'
398
+
399
+ <ThreadProvider
400
+ onBeforeSendUserMessage={() => {}}
401
+ onBeforeSendFileMessage={() => {}}
402
+ onBeforeSendVoiceMessage={() => {}}
403
+ />
404
+ ```
405
+ * ui/Button
406
+ * Add
407
+ ```ts
408
+ enum ButtonTypes {
409
+ PRIMARY = 'PRIMARY',
410
+ SECONDARY = 'SECONDARY',
411
+ DANGER = 'DANGER',
412
+ DISABLED = 'DISABLED',
413
+ }
414
+ enum ButtonSizes {
415
+ BIG = 'BIG',
416
+ SMALL = 'SMALL',
417
+ }
418
+ ```
419
+ * Usage
420
+ ```ts
421
+ import Button, { ButtonTypes, ButtonSizes } from '@sendbird/uikit-react/ui/Button'
422
+
423
+ <Button
424
+ type={ButtonTypes.PRIMARY}
425
+ size={ButtonSizes.BIG}
426
+ />
427
+ ```
428
+ * ui/Icon
429
+ * Add
430
+ ```ts
431
+ export enum IconTypes {
432
+ ADD = 'ADD',
433
+ ARROW_LEFT = 'ARROW_LEFT',
434
+ ATTACH = 'ATTACH',
435
+ AUDIO_ON_LINED = 'AUDIO_ON_LINED',
436
+ BAN = 'BAN',
437
+ BROADCAST = 'BROADCAST',
438
+ CAMERA = 'CAMERA',
439
+ CHANNELS = 'CHANNELS',
440
+ CHAT = 'CHAT',
441
+ CHAT_FILLED = 'CHAT_FILLED',
442
+ CHEVRON_DOWN = 'CHEVRON_DOWN',
443
+ CHEVRON_RIGHT = 'CHEVRON_RIGHT',
444
+ CLOSE = 'CLOSE',
445
+ COLLAPSE = 'COLLAPSE',
446
+ COPY = 'COPY',
447
+ CREATE = 'CREATE',
448
+ DELETE = 'DELETE',
449
+ DISCONNECTED = 'DISCONNECTED',
450
+ DOCUMENT = 'DOCUMENT',
451
+ DONE = 'DONE',
452
+ DONE_ALL = 'DONE_ALL',
453
+ DOWNLOAD = 'DOWNLOAD',
454
+ EDIT = 'EDIT',
455
+ EMOJI_MORE = 'EMOJI_MORE',
456
+ ERROR = 'ERROR',
457
+ EXPAND = 'EXPAND',
458
+ FILE_AUDIO = 'FILE_AUDIO',
459
+ FILE_DOCUMENT = 'FILE_DOCUMENT',
460
+ FREEZE = 'FREEZE',
461
+ GIF = 'GIF',
462
+ INFO = 'INFO',
463
+ LEAVE = 'LEAVE',
464
+ MEMBERS = 'MEMBERS',
465
+ MESSAGE = 'MESSAGE',
466
+ MODERATIONS = 'MODERATIONS',
467
+ MORE = 'MORE',
468
+ MUTE = 'MUTE',
469
+ NOTIFICATIONS = 'NOTIFICATIONS',
470
+ NOTIFICATIONS_OFF_FILLED = 'NOTIFICATIONS_OFF_FILLED',
471
+ OPERATOR = 'OPERATOR',
472
+ PHOTO = 'PHOTO',
473
+ PLAY = 'PLAY',
474
+ PLUS = 'PLUS',
475
+ QUESTION = 'QUESTION',
476
+ REFRESH = 'REFRESH',
477
+ REPLY = 'REPLY',
478
+ REMOVE = 'REMOVE',
479
+ SEARCH = 'SEARCH',
480
+ SEND = 'SEND',
481
+ SETTINGS_FILLED = 'SETTINGS_FILLED',
482
+ SLIDE_LEFT = 'SLIDE_LEFT',
483
+ SPINNER = 'SPINNER',
484
+ SUPERGROUP = 'SUPERGROUP',
485
+ THREAD = 'THREAD',
486
+ THUMBNAIL_NONE = 'THUMBNAIL_NONE',
487
+ TOGGLE_OFF = 'TOGGLE_OFF',
488
+ TOGGLE_ON = 'TOGGLE_ON',
489
+ USER = 'USER',
490
+ }
491
+ export enum IconColors {
492
+ DEFAULT = 'DEFAULT',
493
+ PRIMARY = 'PRIMARY',
494
+ PRIMARY_2 = 'PRIMARY_2',
495
+ SECONDARY = 'SECONDARY',
496
+ CONTENT = 'CONTENT',
497
+ CONTENT_INVERSE = 'CONTENT_INVERSE',
498
+ WHITE = 'WHITE',
499
+ GRAY = 'GRAY',
500
+ THUMBNAIL_ICON = 'THUMBNAIL_ICON',
501
+ SENT = 'SENT',
502
+ READ = 'READ',
503
+ ON_BACKGROUND_1 = 'ON_BACKGROUND_1',
504
+ ON_BACKGROUND_2 = 'ON_BACKGROUND_2',
505
+ ON_BACKGROUND_3 = 'ON_BACKGROUND_3',
506
+ ON_BACKGROUND_4 = 'ON_BACKGROUND_4',
507
+ BACKGROUND_3 = 'BACKGROUND_3',
508
+ ERROR = 'ERROR',
509
+ }
510
+ ```
511
+ * Usage
512
+ ```ts
513
+ import Icon, { IconTypes, IconColors } from '@sendbird/uikit-react/ui/Icon'
514
+
515
+ <Icon
516
+ type={IconTypes.INFO}
517
+ fillColor={IconColors.PRIMARY}
518
+ />
519
+ ```
520
+
521
+ ## [v3.6.8] (Sep 1 2023)
522
+ ### Feats:
523
+ * Update `ui/FileViewer` to support multiple images
524
+ * Modify the props structure
525
+ ```typescript
526
+ export enum ViewerTypes {
527
+ SINGLE = 'SINGLE',
528
+ MULTI = 'MULTI',
529
+ }
530
+ interface SenderInfo {
531
+ profileUrl: string;
532
+ nickname: string;
533
+ }
534
+ interface FileInfo {
535
+ name: string;
536
+ type: string;
537
+ url: string;
538
+ }
539
+ interface BaseViewer {
540
+ onClose: (e: React.MouseEvent) => void;
541
+ }
542
+ interface SingleFileViewer extends SenderInfo, FileInfo, BaseViewer {
543
+ viewerType?: typeof ViewerTypes.SINGLE;
544
+ isByMe?: boolean;
545
+ disableDelete?: boolean;
546
+ onDelete: (e: React.MouseEvent) => void;
547
+ }
548
+ interface MultiFilesViewer extends SenderInfo, BaseViewer {
549
+ viewerType: typeof ViewerTypes.MULTI;
550
+ fileInfoList: FileInfo[];
551
+ currentIndex: number;
552
+ onClickLeft: () => void;
553
+ onClickRight: () => void;
554
+ }
555
+ export type FileViewerComponentProps = SingleFileViewer | MultiFilesViewer;
556
+ ```
557
+ * Export misc. utils
558
+ * `Channel/utils/getMessagePartsInfo`
559
+ * `Channel/utils/compareMessagesForGrouping`
560
+ * `Message/hooks/useDirtyGetMentions`
561
+ * `ui/MessageInput/hooks/usePaste`
562
+
563
+ ### Fixes:
564
+ * Apply some props which are related to the `metadata` to the ChannelListQuery
565
+ * Add metadataKey, metadataValues, and metadataStartsWith to the Channel.queries.channelListQuery
566
+ * How to use
567
+ ```javascript
568
+ <Channel or ChannelProvider
569
+ queries={{
570
+ channelListQuery: {
571
+ metadataKey: 'isMatching',
572
+ metadataValues: ['true'],
573
+ }
574
+ }}
575
+ />
576
+ ```
577
+ * Improve types of `ui/FileViewer` and `Channel/component/FileViewer`
578
+ * Add some props that have been missed
579
+ * Fix `<ImageRenderer />` not converting number to pixel string
580
+ * Modify the types on useChannelContext & useThreadContext
581
+ * `useChannelContext.setQuoteMessage` should accept `UserMessage | FileMessage`
582
+ * `useThreadContext.sendMessage` should be `string`
583
+
584
+ ## [v3.6.7] (Aug 11 2023)
585
+ ### Feats:
586
+ * Added a new ImageGrid UI component (for internal use only) (#703)
587
+ * Introduced `fetchChannelList` to the `ChannelListContext`.
588
+ * Implemented a custom hook function `useFetchChannelList`.
589
+ * Utilized this function to fetch the channel list within the `ChannelListUI` component.
590
+ * Added relevant tests for this function.
591
+ * Provided the method through the `ChannelListContext`: `fetchChannelList`.
592
+ Example Usage:
593
+ ```jsx
594
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
595
+ import useSendbirdStateContext from '@sendbird/uikit-react/useSendbirdStateContext'
596
+ import { ChannelListProvider, useChannelListContext } from '@sendbird/uikit-react/ChannelList/context'
597
+
598
+ const isAboutSame = (a, b, px) => (Math.abs(a - b) <= px);
599
+
600
+ const CustomChannelList = () => {
601
+ const {
602
+ allChannels,
603
+ fetchChannelList,
604
+ } = useChannelListContext();
605
+
606
+ return (
607
+ <div
608
+ className="custom-channel-list"
609
+ onScroll={(e) => {
610
+ const target = e.target;
611
+ if (isAboutSame(target.clientHeight + target.scrollTop, target.scrollHeight, 10)) {
612
+ fetchChannelList();
613
+ }
614
+ }}
615
+ >
616
+ {allChannels.map((channel) => {
617
+ return // custom channel list item
618
+ })}
619
+ </div>
620
+ );
621
+ };
622
+
623
+ const CustomApp = () => {
624
+ return (
625
+ <div className="custom-app">
626
+ <SendbirdProvider ... >
627
+ <ChannelListProvider ... >
628
+ <CustomChannelList />
629
+ </ChannelListProvider>
630
+ </SendbirdProvider>
631
+ </div>
632
+ );
633
+ };
634
+ ```
635
+ ### Fixes:
636
+ * Removed duplicated getEmoji API call from the `useGetChannel` hook (#705).
637
+ * Fixed missing `SEND_MESSAGE_FAILED` event publishing (#704):
638
+ * Addressed the failure state in `sendbirdSelectors.getSendUserMessage` and published the `SEND_MESSAGE_FAILED` event.
639
+ * Corrected typo `SEND_MESSAGEGE_FAILURE`.
640
+
641
+ ### Chores:
642
+ * Added a troubleshooting guide to the README. (#702)
643
+ * Made minor improvements to the onboarding process. (#701)
644
+
645
+ ## [v3.6.6] (Aug 3 2023)
646
+ ### Feat:
647
+ * Add `customExtensionParams` for `sdk.addSendbirdExtensions` (#698)
648
+ The 3rd parameter customData to the `sdk.addSendbirdExtension` function, allowing it to be delivered from outside of UIKit React.
649
+ e.g.
650
+ ```
651
+ // its recommended to memoize customExtensionParams
652
+ const memoizedCustomExtensionParams = useRef({
653
+ // the key-value sets will be passed when sdk.addSendbirdExtensions is called
654
+ ...
655
+ })
656
+ <SendbirdProvider
657
+ customExtensionParams={memoizedCustomExtensionParams.current}
658
+ />
659
+ ```
660
+ * Call `sdk.addSendbirdExtensions` during the connection process (#682)
661
+
662
+ ### Fixes:
663
+ * Change the MessageInput cursor style from disabled to not-allowed; Thanks @roderickhsiao (#697)
664
+ * PendingMsg is missing isUserMessage method (#695)
665
+ This resolves the issue where spreading the message object in the reducer loses some methods like `isUserMessage` and `isFileMessage`
666
+ * fix util functions logic of verifying message type. We updated logic in util functions to verify the message type. (#700)
667
+
668
+
669
+ ### Chore:
670
+ * Update Trunk-Based Development to Scaled Trunk-Based Development (#696)
671
+ It describes the flow with short-lived feature branches, code review, and build automation before integrating into main.
672
+
673
+ ## [v3.6.5] (July 21 2023)
674
+ ### Feat:
675
+ * Add a new prop `sdkInitParams` that allows passing custom parameters when `sdk.init(params)` is called from outside of UIKit.
676
+
677
+ e.g.
678
+ ```
679
+ // its recommended to memoize sdkInitParams
680
+ const memoizedSdkInitParams = useRef({
681
+ appStateToggleEnabled: false,
682
+ debugMode: true,
683
+ // more options can be found here https://sendbird.com/docs/chat/v4/javascript/ref/interfaces/_sendbird_chat.SendbirdChatParams.html
684
+ })
685
+ <SendbirdProvider
686
+ sdkInitParams={memoizedSdkInitParams.current}
687
+ />
688
+ ```
689
+
690
+ ## [v3.6.4] (July 20 2023)
691
+ ### Feat:
692
+ * Create a separate package.json for CommonJS (cjs) module during build time. This package.json is located under dist/cjs directory. (#687)
693
+ * Add a new prop `isUserIdUsedForNickname` to the public interface. This prop allows using the userId as the nickname. (#683)
694
+ * Add an option to the ChannelProvider: `reconnectOnIdle`(default: true), which prevents data refresh in the background. (#690)
695
+
696
+ ### Fixes:
697
+ * Fix an issue where the server returns 32 messages even when requesting 31 messages in the Channel. Now, hasMorePrev will not be set to false when the result size is larger than the query. (#688)
698
+ * Verify the fetched message list size with the requested size of the MessageListParams. Added a test case for verifying the fetched message list size. (#686)
699
+ * Address the incorrect cjs path in package.json. The common js module path in the pacakge.json has been fixed. (#685)
700
+
701
+
702
+ ## [v3.6.3] (July 6 2023)
703
+ ### Feat:
704
+ * Add new scrollBehavior prop to Channel (#676)
705
+ The default option is set to "auto," preserving the existing scroll behavior.
706
+ Possible to set smooth for smooth scroll effect.
707
+
708
+ ### Fixes:
709
+ * Move message list scroll when the last message is edited (#674)
710
+ Added optional parameters to moveScroll to scroll only when the last message reaches the bottom.
711
+ Scroll is now moved only when the updatedAt property of the last message is changed.
712
+ * Add missing `UIKitConfig` to type definition (#677)
713
+ Reported by [GitHub PR #650](https://github.com/sendbird/sendbird-uikit-react/pull/650#issuecomment-1622331367).
714
+
715
+ ## [v3.6.2] (June 30 2023)
716
+
717
+ ### Fixes:
718
+ * UIKit@3.6.0 build error on CRA (#668)
719
+ UIKit@3.6.0 wouldnt work by default on CRA
720
+ because of module resolution error on uikit-tools
721
+ This is fixed in uikit-tools, and released in 40.alpha
722
+ see: https://github.com/sendbird/sendbird-uikit-core-ts/pull/55
723
+ * Improve invitation modal submit btn disable condition
724
+ Modify the invitation modal disable condition to not include the
725
+ logged-in user for the user counting logic
726
+
727
+ ## [v3.6.1] (June 30 2023)
728
+
729
+ ### Feat:
730
+ * Enable channel creation when no user present to select
731
+ If there are no users in the channel creation menu,
732
+ User still get to create an empty channel with themselves
733
+ * Mobile: Keep keyboard open after sending the message
734
+
735
+ ### Fixes:
736
+ * Update @sendbird/uikit-tools to 0.0.1-alpha.39
737
+ alpha.39 has CJS support, otherwise, UIKit wont work
738
+ on next-js page router
739
+
740
+ ### Chore:
741
+ * Update all examples to V4 + StackBlitz
742
+ * Update all sample code to V4
743
+ * Convert CodeSandbox to StackBlitz
744
+ * Render all examples with Vite
745
+ * Thanks @tylerhammer
746
+
747
+ ## [v3.6.0] (June 28 2023)
748
+
749
+ ### Feat:
750
+ * Official support for Feature Configuration
751
+ - You can now configure the features of UIKit through the `uikitOptions` prop of `<SendbirdProvider />` or `<App />` component. You can also find the detailed sample usage from [SAMPLE.md#UIKit-Configuration-Samples](./SAMPLES.md#UIKit-Configuration-Samples)
752
+ - The minimum `@sendbird/chat` version has been increased to 4.9.2.
753
+ ```jsx
754
+ <SendbirdProvider
755
+ uikitOptions={{
756
+ common: {
757
+ enableUsingDefaultUserProfile: true,
758
+ },
759
+ groupChannel: {
760
+ enableMention: false,
761
+ enableOgtag: true,
762
+ enableReaction: true,
763
+ enableTypingIndicator: true,
764
+ input: {
765
+ camera: {
766
+ enablePhoto: true,
767
+ enableVideo: true,
768
+ },
769
+ gallery: {
770
+ enablePhoto: true,
771
+ enableVideo: true,
772
+ },
773
+ enableDocument: true,
774
+ },
775
+ },
776
+ groupChannelList: {
777
+ enableTypingIndicator: true,
778
+ enableMessageReceiptStatus: true,
779
+ },
780
+ groupChannelSettings: {
781
+ enableMessageSearch: true,
782
+ },
783
+ openChannel: {
784
+ enableOgtag: true,
785
+ input: {
786
+ camera: {
787
+ enablePhoto: true,
788
+ enableVideo: true,
789
+ },
790
+ gallery: {
791
+ enablePhoto: true,
792
+ enableVideo: true,
793
+ },
794
+ enableDocument: true,
795
+ },
796
+ },
797
+ }}
798
+ />
799
+ ```
800
+
801
+ ## [v3.5.2] (June 23 2023)
802
+
803
+ Fixes:
804
+ * Allow to reduce the mobile app height
805
+ It was not able to reduce the height of the mobile app with some wrapper components
806
+ * Do not display the UnreadCount(new message notification) comp when unreadSince is null
807
+ * Improve sampling and bitrate of Voice Recording
808
+ * sampling rate: 11025
809
+ * bit rate: 12000
810
+ * Move scroll every time when message height changes
811
+ It moved scroll only when the last message height changes
812
+
813
+ ## [v3.5.1] (June 15 2023)
814
+
815
+ Fixes:
816
+ * Set fallback values \w global configs in App comp
817
+ * Use global config's replyType if channel one is undefined
818
+ * Use global disableUserProfile if each context's one is defined
819
+ * Clear `scrollBottom` on channel state loading
820
+ * Fixes a runtime error
821
+ caused by clicking "Reply in thread" menu from a parent message
822
+ * Check if the `message.type` property is empty
823
+ and return false when it is empty in the isVoiceMessage function
824
+
825
+ ## [v3.5.0] (June 14 2023)
826
+
827
+ ### Feat:
828
+ * Mobile Browser UX Revamp
829
+ We have revamped the UX to support mobile devices -
830
+ * Revamped Modals
831
+ * Revamped Context Menu -> Long press to open context menu
832
+ * Revamped Message Input
833
+
834
+ This feature is disabled by default. To enable this feature, add the following prop to `SendBirdProvider` & `App` component.
835
+ ```javascript
836
+ breakpoint?: string | boolean
837
+ ```
838
+
839
+ Example:
840
+ ```javascript
841
+ <SendBirdProvider breakpoint="768px">
842
+ ```
843
+ ```javascript
844
+ const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
845
+ return (
846
+ <SendbirdProvider breakpoint={isMobile} />
847
+ {
848
+ isMobile
849
+ ? <MobileChatLayout />
850
+ : <DesktopChatLayout />
851
+ }
852
+ </SendbirdProvider>
853
+ )
854
+ ```
855
+
856
+ Other props:
857
+ * SendbirdProvider?.onUserProfileMessage?: (channel: GroupChannel) => void
858
+ Callback for handling when user sends a user profile message.
859
+ * Channel?.onBackClick?: () => void
860
+ Callback for handling when user clicks on back button in channel.
861
+ This is only applicable for mobile devices.
862
+
863
+ * Configure UIKit through Dashboard(not released yet)
864
+ We are doing groundwork to support configuring UIKit through
865
+ the dashboard. This will allow you to configure UIKit without
866
+ having to add props to each component. This feature *will not* be a
867
+ breaking change and will be backwards compatible.
868
+
869
+ ### Chore:
870
+ * TSC error in typescript sample
871
+ * Samples -> Upgrade vite to 4.3.9
872
+
873
+ ### Fixes:
874
+ * Connection
875
+ * Disconnect SDK on Sendbird provider component unmount
876
+ * Message
877
+ * Desktop - allow text select on Labels
878
+ * Remove loading placeholder on ThumbnailMessage
879
+ * OGMessage width overflow while adding reaction
880
+ * Center align & remove ellipsis from admin message
881
+ * Voice Message
882
+ * Hide download option for voice message
883
+ * Show warning when there is no voice recording permission
884
+ * Race condition in playing audio files simultaneously
885
+ * Stop voice player when recorder exits
886
+ * Pause voice when component is removed from layout
887
+ * Replies
888
+ * Quoted text alignment for reply messages
889
+ * MessageList: Triggering of random clicks while scroll to parent
890
+ * Thread
891
+ * Improve parent message detection
892
+ * Emoji reactions overflow in message
893
+ * Settings
894
+ * <AllMemebers />: Show context menu on click
895
+ * Open Channel
896
+ * OpenChannel Context menu click leak
897
+ * Vertical scroll on labels in open channel list
898
+
899
+ ## [v3.4.9] (June 02 2023)
900
+
901
+ Fixes:
902
+ * ChannelList
903
+ * Display a channel on channel list only when there's a message
904
+ * Remove edited message from ChannelPreview
905
+
906
+ * MarkAsRead & MarkAsDelivered
907
+ * Batch markAsRead & markAsDelivered requests
908
+
909
+ * Scrolling
910
+ * Various scroll issues in Channel component
911
+ * Shaky scroll on messages when fetching messages
912
+ * Scroll into view when starting point is set
913
+ * Scroll into message on clicking quote reply
914
+ * Inconsistent rendering on scrollToBottom button
915
+
916
+ * Mention
917
+ * Improve max mention count logic in Messages
918
+ * Improve mention detection when there are curly braces in user's name Mentions
919
+ were not working when user nickname had curly braces
920
+
921
+ * Special channels
922
+ * Disable mention in the broadcast channel
923
+ * Change OpenChannelInput muted state notice text in broadcast channel
924
+
925
+ * Reply
926
+ * Apply ellipsis to a sender of quote and admin message
927
+
928
+ * Thread
929
+ * Add border bottom to the ParentMessageInfo component
930
+ * Modify string set for thread menu "Reply to Thread" -> "Reply in Thread"
931
+ Do not display "Reply in Thread" to the reply messages
932
+ * Prevent hover style of ParentMessageInfo component
933
+
934
+ * OpenChannel
935
+ * Apply theme to the OpenChannelList header
936
+
937
+ Chores:
938
+ * Add a sample with router
939
+ * Add dataId to the every menu items
940
+
941
+ ## [v3.4.8] (May 19 2023)
942
+
943
+ Fixes:
944
+ * Prevent white space only text sending
945
+ * Mentioned user Regex parsing
946
+ Mention will now work even if userId has `.*+?^${}()|[\]\\` characters.
947
+ * ChannelList blink when when message is send
948
+ Happened when there were two channelLists in the same page with
949
+ different query params.
950
+ * ChannelSetting `renderUserProfile` prop
951
+ We were applying `renderChannelProfile` in place of `renderUserProfile`.
952
+ * MessageBody: Words break mid word
953
+ Words were breaking midword because all white spaces
954
+ were converted into nbsps. CSS couldnt distinguish nbsps
955
+ as whitespaces, so wrapping didnt work well.
956
+
957
+ Chores:
958
+ * Setup CircleCI
959
+ * We are moving from Github Actions to CircleCI
960
+ * Setup Husky
961
+ * Setup lint on post push
962
+ * Auto run yarn install on post pull
963
+ * Update EsLint
964
+ * Update version to 8.40.x
965
+ * Apply more strict rules
966
+
967
+ ## [v3.4.7] (May 4 2023)
968
+
969
+ Important Notes:
970
+ * @sendbird/chat@4.8.0 has an issue with `abortcontroller-polyfill` plugin. Please use version 4.7.2 or install it separately.
971
+
972
+ Features:
973
+ * Set Chat SDK v4.3.0 as the minimum required version.
974
+ * Add a new UI component, Toggle:
975
+ * `ToggleContainer`: A context provider component that manages only the toggle status.
976
+ * `ToggleUI`: A UI component that does not include the status managing logic.
977
+ * `Toggle`: A combination of ToggleContainer and ToggleUI components.
978
+ * `useToggleContext`: A custom useContext hook that provides context from ToggleContainer.
979
+ ```javascript
980
+ import { Toggle, ToggleContainer, ToggleUI, useToggleContext } from '@sendbird/ui/Toggle';
981
+ ```
982
+
983
+ Fixes:
984
+ * Apply `isMuted` to the participant list. Operators can now unmute the muted participants from the participant list.
985
+ * Update the max mention count notice message.
986
+ * Modify the URL Regex to filter various types of formats.
987
+ * Give a left margin to the link text inside the message.
988
+ * Move the message list scroll after the OG image is loaded.
989
+ * Specify that getSdk returns SendbirdGroupChannel or SendbirdOpenChannel.
990
+ * Fix the issue where the current channel flickers on the ChannelList while creating a new group channel.
991
+
992
+ Chores:
993
+ * Rewrite the connection logic in sdk/thunks to hooks/useConnect
994
+ ```
995
+ const reconnect = useConnect({
996
+ appId,
997
+ userId,
998
+ accessToken,
999
+ }, {
1000
+ logger,
1001
+ nickname,
1002
+ profileUrl,
1003
+ configureSession,
1004
+ customApiHost,
1005
+ customWebSocketHost,
1006
+ sdk: sdkStore?.sdk,
1007
+ sdkDispatcher,
1008
+ userDispatcher,
1009
+ });
1010
+ ```
1011
+ * Rename `smart-components/` to `modules/`.
1012
+ * Modify Logger method:
1013
+ * The first parameter (log message) of the method is now required.
1014
+ * Any other values can be passed to the second parameter of the method in a key-value format.
1015
+
1016
+ ## [v3.4.6] (Apr 21 2023)
1017
+
1018
+ Fixes:
1019
+ * Use markAsReadScheduler in MessageList:
1020
+ * `markAsReadScheduler` method throttles `markAsRead` calls.
1021
+ * Reduces cmd no ack error.
1022
+ * Apply common scroll hook to GroupChannel MessageList:
1023
+ * Prevent whole page from scrolling when <GroupChannel /> scrolls. This issue occurs when customer implements an <GroupChannel /> in a web page with scroll.
1024
+ * This is a same fix that we fixed OpenChannel in `v3.4.4`.
1025
+ * To unify message sending policies with ios & android:
1026
+ * Do not show send button when there is only new line or empty space in the input.
1027
+ * Do not trim leading white spaces in message text.
1028
+ * Optimize lamjs import:
1029
+ * Lazy load the audio converting processor(lamejs) only when `isVoiceMessageEnabled` is true.
1030
+ * This saves 106KB Gzipped(85KB Brotli) if you are not using the VoiceMessage feature.
1031
+
1032
+ ## [v3.4.5] (Apr 7 2023)
1033
+
1034
+ Features:
1035
+
1036
+ * Add a message list filter of UI level in the `Channel` module
1037
+ * Add `Channel.filterMessageList?: (messages: BaseMessage): boolean;`, a UI level filter prop
1038
+ to Channel. This function will be used to filter messages in `<MessageList />`
1039
+
1040
+ example:
1041
+ ```javascript
1042
+ // set your channel URL
1043
+ const channel = "";
1044
+ export const ChannelWithFilter = () => {
1045
+ const channelFilter = useCallback((message) => {
1046
+ const now = Date.now();
1047
+ const twoWeeksAgo = now - 1000 * 60 * 60 * 24 * 14;
1048
+ return message.createdAt > twoWeeksAgo;
1049
+ }, []);
1050
+ return (
1051
+ <Channel
1052
+ channelUrl={channel}
1053
+ filterMessageList={channelFilter}
1054
+ />
1055
+ );
1056
+ };
1057
+ ```
1058
+
1059
+ * Improve structure of message UI for copying
1060
+ Before:
1061
+ * The words inside messages were kept in separate spans
1062
+ * This would lead to unfavourable formatting when pasted in other applications
1063
+
1064
+ After:
1065
+ * Remove span for wrapping simple strings in message body
1066
+ * Urls and Mentions will still be wrapped in spans(for formatting)
1067
+ * Apply new logic & components(TextFragment) to tokenize strings
1068
+ * Improve keys used in rendering inside message,
1069
+ * UUIDs are not the optimal way to improve rendering
1070
+ * Create a composite key with message.updatedAt
1071
+ * Refactor usePaste hook to make mentions work ~
1072
+ * Fix overflow of long strings
1073
+ * Deprecate `Word` and `convertWordToStringObj`
1074
+
1075
+ * Export MessageProvider, a simple provider to avoid prop drilling into Messages
1076
+ Note - this is still in works, but these props will remain
1077
+ * In the future, we will add methods - to this module - to:
1078
+ * Edit & delete callbacks
1079
+ * Menu render options(ACLs)
1080
+ * Reaction configs
1081
+ * This will improve the customizability and remove a lot of prop drilling in Messages
1082
+
1083
+ ```
1084
+ export type MessageProviderProps = {
1085
+ children: React.ReactNode;
1086
+ message: BaseMessage;
1087
+ isByMe?: boolean;
1088
+ }
1089
+
1090
+ import { MessageProvider, useMessageContext } from '@sendbird/uikit-react/Message/context'
1091
+ ```
1092
+ Incase if you were using MessageComponents and see error message
1093
+ `useMessageContext must be used within a MessageProvider `
1094
+ use: `<MessageProvider message={message}><CustomMessage /></MessageProvider>`
1095
+
1096
+ * Add a scheduler for calling markAsRead intervally
1097
+ * The `markAsRead` is called on individual channels is un-optimal(causes command ack. error)
1098
+ because we have a list of channels that do this
1099
+ ideally this should be fixed in server/SDK
1100
+ this is a work around for the meantime to un-throttle the customer
1101
+
1102
+ Fixes:
1103
+ * Set current channel on `ChannelList` when opening channel from the parent message of `Thread`
1104
+ * Issue: The ChannelPreview item is not selected when opening the channel from
1105
+ the ParentMessage of the Thread
1106
+ * Fix: Set activeChannelUrl of ChannelList
1107
+ * Detect new lines in safari on the `MessageInput` component
1108
+ * Safari puts `<div>text</div>` for new lines inside content editable div(input)
1109
+ * Other browsers put newline or `br`
1110
+
1111
+ ## [v3.4.4] (Mar 31 2023)
1112
+
1113
+ Features:
1114
+ * Increase default maximum recording time of Voice Message to 10 minutes
1115
+ * Add logger to VoicePlayer, VoiceRecorder, and useSendVoiceMessage hook
1116
+
1117
+ Fixes:
1118
+ * Prevent whole page from scrolling when OpenChannel scrolls
1119
+ This issue occurs when customer implements an OpenChannel in a web page with scroll
1120
+ * Fix edgecase in which voice messages were sent twice
1121
+ * Clean up Thread interface
1122
+ If message.parentMessage doesnt exist, treat message as parentMessage
1123
+ `<Thread message={message} />`
1124
+
1125
+ ## [v3.4.3] (Mar 24 2023)
1126
+
1127
+ Features:
1128
+ * Add rollup-plugin-size-snapshot for bundle-size
1129
+ Run rollup-plugin-size-snapshot on build,
1130
+ we will check bundle size before every release
1131
+ * Move old samples to use vite
1132
+ React team these days are using vite for their samples,
1133
+ CRA is discourged
1134
+ * Run code coverage on commenting `./coverage`
1135
+ Check code coverage on PR comment
1136
+ * Add prop to disable Channel & Thread inputs
1137
+ Add prop: `disabled?: false` for Channel & Thread MessageInputWrapper
1138
+ * Replace renderToString(react-dom) with custom fn
1139
+ Replace renderToString from react-dom/server with custom function
1140
+ This function was creating issue in customers with cra@4 & react@17
1141
+
1142
+ Fixes:
1143
+ * Replace outdated CSS rules
1144
+ `justify-content: start;` and `height: fill-available;`
1145
+ * Menu position in tight screens
1146
+ * Condition where some menus get clipped in left side:
1147
+ * Usually user profile in channel moderation
1148
+ * Context menu of last item in channel gets clipped in the bottom
1149
+
1150
+
1151
+ ## [v3.4.2] (Mar 17 2023)
1152
+
1153
+ Features:
1154
+ * Mentions should be preserved when copy pasted from sendbird-messages and message input
1155
+ * Make sure you are posting mentions of users from same channel
1156
+ * We dont support pasting of rich text from other applications
1157
+ * For copying simple text, we recommend using paste option in message context-menu
1158
+
1159
+ * Conditions tested:
1160
+ 1. paste simple text
1161
+ 2. paste text with mention
1162
+ 3. paste text with mention and text
1163
+ 4. paste text with mention and text and paste again before and after
1164
+ 5. copy message with mention(only one mention, no other text) and paste
1165
+ 6. copy message with mention from input and paste(before and after)
1166
+
1167
+ Chores:
1168
+ * Arrange the order of the string set table
1169
+ Some string-set were missing on the current string set table, so our customers werent able to use the latest state of the string set feature
1170
+
1171
+ Library added:
1172
+ * [dompurify@3.0.1](https://www.npmjs.com/package/dompurify): +8Kb Gzipped
1173
+
1174
+ ## [v3.4.1] (Mar 10 2023)
1175
+
1176
+ Fixes:
1177
+ * Keep scroll if context menu is opened when receiving messages
1178
+ * Handle Ephemeral channel
1179
+ * Group channel list
1180
+ * Remove the message receipt status (channel preview)
1181
+ * Remove the unread message count (channel preview)
1182
+ * Group channel
1183
+ * Remove the message edit
1184
+ * Remove the message delete
1185
+ * Remove the message reactions
1186
+ * Remove the message receipt status (message)
1187
+ * Remove the message reply (quote_reply, thread)
1188
+ * Group channel settings
1189
+ * Remove the search in channel
1190
+ * Open channel
1191
+ * Remove the message edit
1192
+ * Remove the message delete
1193
+ * Clear timeout in useLayoutEffect of Message
1194
+ * This removes memory leak warnings
1195
+
1196
+ ## [v3.4.0] (Mar 6 2023)
1197
+
1198
+ ### Voice Message
1199
+ Voice message is a new type of message and feature that you can use in group channel. You can record your voice on the message input and send it to the channel. Also the messages will be displayed as a new design of the voice message. You are able to use this feature from this version.
1200
+
1201
+ #### How to turn on/off
1202
+ * You can turn this feature on/off using the props `isVoiceMessageEnabled` on the <App /> and <SendbirdProvider /> components. Here is an example.
1203
+ ```javascript
1204
+ import App from '@sendbird/uikit-react/App'
1205
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
1206
+ import { useEffect } from 'react'
1207
+
1208
+ const QuickStart = () => (<App isVoiceMessageEnabled />)
1209
+ const CustomApp = () => {
1210
+ const [useVoiceMessage, setUseVoiceMessage] = useEffect(true)
1211
+ return (
1212
+ <SendbirdProvider
1213
+ isVoiceMessageEnabled={useVoiceMessage}
1214
+ >
1215
+ {/* Implement your custom app here */}
1216
+ </SendbirdProvider>
1217
+ )
1218
+ }
1219
+ ```
1220
+
1221
+ #### How to customize the voice message in Channel and Thread?
1222
+ You can identify the voice message to check if `message.type` includes `sbu_type=voice`. But you can use `isVoiceMessage` util function to do that.
1223
+ ```javascript
1224
+ import Channel from '@sendbird/uikit-react/Channel'
1225
+ import isVoiceMessage from '@sendbird/uikit-react/utils/message/isVoiceMessage'
1226
+
1227
+ const CustomChannel = () => {
1228
+ return (
1229
+ <Channel
1230
+ renderMessage={({ message }) => {
1231
+ if (isVoiceMessage(message)) {
1232
+ // Return your custom voice message item component
1233
+ }
1234
+ return null
1235
+ }}
1236
+ />
1237
+ )
1238
+ }
1239
+ ```
1240
+
1241
+ #### Limitation & Next step
1242
+ * For now, it's not able to customize the inner components of VoiceMessageInput. We are going to provide an interface to customize it in the future. Until that time, you can replace the VoiceMessageInput component using the `renderVoiceMessageIcon` props of MessageInput component.
1243
+
1244
+ #### What has been changed?
1245
+ * Add props `isVoiceMessageEnabled` and `voiceRecord` props to the App, `SendbirdProvider`, and `MessageInput` components, to turn on/off the voice message recording feature
1246
+ ```javascript
1247
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
1248
+ const CustomApp = () => {
1249
+ return (
1250
+ <SendbirdProvider
1251
+ isVoiceMessageEnabled
1252
+ voiceRecord={{
1253
+ maxRecordingTime: 60000,
1254
+ minRecordingTime: 1000,
1255
+ }}
1256
+ >
1257
+ {/* implement custom application */}
1258
+ </SendbirdProvider>
1259
+ )
1260
+ }
1261
+ ```
1262
+ * Add props `onVoiceMessageIconClick` to the `MessageInput` component
1263
+ * Add props `onBeforeSendVoiceMessage` to the `Channel` component
1264
+ * Fetch message list including `MetaArray` in the `Channel` and `Thread` modules
1265
+ * Provide new IconType `AudioOnLined` & new IconColor `Primary2` and `OnBackground4`
1266
+ * Provide new string sets
1267
+ ```javascript
1268
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
1269
+ const CustomApp = () => {
1270
+ return (
1271
+ <SendbirdProvider
1272
+ stringSet={{
1273
+ BUTTON__OK: 'OK',
1274
+ VOICE_MESSAGE: 'Voice Message',
1275
+ MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_MUTED: 'You\'re muted by the operator.',
1276
+ MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_FROZEN: 'Channel is frozen.',
1277
+ }}
1278
+ >
1279
+ {/* implement custom application */}
1280
+ </SendbirdProvider>
1281
+ )
1282
+ }
1283
+ ```
1284
+ * `BUTTON__OK`: 'OK' → Used on the submit button of pop up modal
1285
+ * `MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_MUTED`: 'You\'re muted by the operator.' → Used in an alert pop-up modal
1286
+ * `MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_FROZEN`: 'Channel is frozen.' → Used in an alert pop-up modal
1287
+ * `VOICE_MESSAGE`: 'Voice Message' → Used in ChannelPreviewItem, QuoteMessage, and MessageSearch to appear that the message type is the voice## External Contributions
1288
+
1289
+ #### What has been added?
1290
+ * Install `lamejs` to convert the audio file to mp3 (iOS support)
1291
+ * UI components
1292
+ ```javascript
1293
+ import PlaybackTime from "@sendbird/uikit-react/ui/PlaybackTime"
1294
+ import ProgressBar from "@sendbird/uikit-react/ui/ProgressBar"
1295
+ import VoiceMessageInput from "@sendbird/uikit-react/ui/VoiceMessageInput"
1296
+ import VoiceMessageItemBody from "@sendbird/uikit-react/ui/VoiceMessageItemBody"
1297
+ ```
1298
+ * PlaybackTime: Display the current time in 00:00 format with the received millisecond value
1299
+ * ProgressBar: Display the current progress status with the received maxSize and currentSize of millisecond unit value
1300
+ * VoiceMessageInput: UI component for recording and playing a voice message
1301
+ * VoiceMessageItemBody: UI component for rendering a voice message also able to play voice message
1302
+ * VoiceRecorder
1303
+ ```javascript
1304
+ import { VoiceRecorderProvider, useVoiceRecorderContext } from '@sendbird/uikit-react/VoiceRecorder/context'
1305
+ import useVoiceRecorder from '@sendbird/uikit-react/VoiceRecorder/useVoiceRecorder'
1306
+ ```
1307
+ * VoiceRecorderProvider: A react context provider component providing `start`, and `stop` functions
1308
+ * useVoiceRecorderContext: A react useContext hook of VoiceRecorderProvider
1309
+ * useVoiceRecorder: A react hook that provides advanced context, `recordingLimit`, `recordingTime`, `recordingFile`, and `recordingStatus`. Recommend using this hook in the customized components.
1310
+ * VoicePlayer
1311
+ ```javascript
1312
+ import { VoicePlayerProvider, useVoicePlayerContext } from '@sendbird/uikit-react/VoicePlayer/context'
1313
+ import useVoicePlayer from '@sendbird/uikit-react/VoicePlayer/useVoicePlayer'
1314
+ ```
1315
+ * VoicePlayerProvider: A react context provider component providing `play`, and `pause` functions
1316
+ * useVoicePlayerContext: A react useContext hook of VoicePlayerProvider
1317
+ * useVoicePlayer: A react hook that provides advanced context, `playbackTime`, `duration`, and `playingStatus`. Recommend using this hook in the customized components.
1318
+ * utils/isVoiceMessage: A function that you can check if the given message is a voice message
1319
+ ```javascript
1320
+ import isVoiceMessage from '@sendbird/uikit-react/utils/message/isVoiceMessage'
1321
+ const isVoiceMsg: boolean = isVoiceMessage(message);
1322
+ ```
1323
+
1324
+ Features:
1325
+ * Add props `renderFileUploadIcon`, `renderVoiceMessageIcon`, and `renderSendMessageIcon` into the `Channel`, `ChannelUI`, and `MessageInput` component
1326
+ ```javascript
1327
+ interface MessageInputProps {
1328
+ renderFileUploadIcon?: () => React.ReactElement;
1329
+ renderVoiceMessageIcon?: () => React.ReactElement;
1330
+ renderSendMessageIcon?: () => React.ReactElement;
1331
+ }
1332
+ ```
1333
+
1334
+ Fixes:
1335
+ * Use ApplicationUserListQuery on ChannelSettings component
1336
+ * Fix some visual issues on the normal User Panel of ChannelSettings
1337
+ * Indentify faulty images in OG message
1338
+ * Add classname: sendbird-og-message-item-body__og-thumbnail__empty to identify faulty images in OG message
1339
+ Clients can use CSS to target this class~
1340
+ ```css
1341
+ .sendbird-og-message-item-body__og-thumbnail__empty {
1342
+ display: none;
1343
+ }
1344
+ ```
1345
+
1346
+ ## [v3.3.7] (Feb 24 2023)
1347
+
1348
+ Features:
1349
+ * Add props `activeChannelUrl` to ChannelList to give an option to pragmatically set a channel from a parent component router
1350
+ ```javascript
1351
+ const MyChannelList = () => {
1352
+ const [myActiveChannel] = useState()
1353
+ return (<ChannelList activeChannelUrl={myActiveChannel.url} />)
1354
+ }
1355
+ ```
1356
+
1357
+ Fixes:
1358
+ * Fix not showing newly recived messages in channel which has less messages
1359
+ * Use a real `channel.invitedAt` value when trying to fetch MessageSearchQuery
1360
+ * Disable the checkbox of the joined users on the InviteUsersModal
1361
+ * Set the default value of CheckBox component: `@sendbird/uikit-react/ui/CheckBox` as false
1362
+
1363
+ ## [v3.3.6] (Feb 13 2023)
1364
+
1365
+ Fixes:
1366
+ * pubsub should be initialized with useState
1367
+ * update onBeforeCreateChannel example to use chat V4
1368
+
1369
+ ## [v3.5.0-beta.0] (Feb 6 2023)
1370
+
1371
+ ### Notification Channel
1372
+
1373
+ A notification channel is a new group channel dedicated to receiving one way marketing and transactional messages. To allow users to view messages sent through Sendbird Message Builder with the correct rendering, you need to implement the notification channel view using <NotificationChannel>
1374
+
1375
+ Overview:
1376
+ * Provide new module `NotificationChannel`
1377
+ * NotificationChannel
1378
+ `import NotificationChannel from '@sendbird/uikit-react/NotificationChannel'`
1379
+ props:
1380
+ * channelUrl: string;
1381
+ * children?: React.ReactElement;
1382
+ // To customize Query
1383
+ * messageListParams?: MessageListParams;
1384
+ // Sets last seen externally
1385
+ * lastSeen?: number;
1386
+ // handles Actions sepcified in Message Templates
1387
+ * handleWebAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
1388
+ * handleCustomAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
1389
+ * handlePredefinedAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
1390
+ // UI overrides
1391
+ * isLoading?: boolean;
1392
+ * renderPlaceholderLoader?: () => React.ReactElement;
1393
+ * renderPlaceholderInvalid?: () => React.ReactElement;
1394
+ * renderPlaceholderEmpty?: () => React.ReactElement;
1395
+ * renderHeader?: () => React.ReactElement;
1396
+ * renderMessageHeader?: ({ message }) => React.ReactElement;
1397
+ * renderMessage?: ({ message }) => React.ReactElement;
1398
+
1399
+ ```
1400
+ example:
1401
+ export const NotificationChannelComponenet = () => (
1402
+ <Sendbird
1403
+ appId={appId}
1404
+ userId={userId}
1405
+ accessToken={accessToken}
1406
+ >
1407
+ <div style={{ height: '960px', width: '360px' }}>
1408
+ <NotificationChannel
1409
+ channelUrl={`SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION_${userId}`}
1410
+ renderPlaceholderLoader={() => <MyBrandLogo />};
1411
+ handleCustomAction={(event, action, message) => {
1412
+ ... implement custom action
1413
+ }}
1414
+ />
1415
+ </div>
1416
+ </Sendbird>
1417
+ );
1418
+ ```
1419
+ * Submodules:
1420
+ * Context
1421
+ `import { NotficationChannelProvider useNotficationChannelContext } from '@sendbird/uikit-react/NotificationChannel/context'`
1422
+ Handles business logic of Notification Channel
1423
+ * NotificationChannelUI
1424
+ `import NotificationChannelUI from '@sendbird/uikit-react/NotificationChannel/components/NotificationChannelUI'`
1425
+ UI wrapper of Notification Channel
1426
+ * NotificationMessageWrap
1427
+ `import NotificationMessageWrap from '@sendbird/uikit-react/NotificationChannel/components/NotificationMessageWrap'`
1428
+ * NotificationList
1429
+ `import NotificationList from '@sendbird/uikit-react/NotificationChannel/components/NotificationList'`
1430
+ * External modules:
1431
+ Unlike some of our other releases we decide to release some components into seperate packages to enahnce reusability with other platforms/projects
1432
+ * MessageTemplateParser('@sendbird/react-message-template')
1433
+ * MessageTemplate
1434
+ `import { createMessageTemplate } from '@sendbird/react-message-template'`
1435
+ * Parser
1436
+ `import { createParser } from '@sendbird/react-message-template'`
1437
+ * Renderer
1438
+ `import { createRenderer } from '@sendbird/react-message-template'`
1439
+ * MessageTemplateParser('@sendbird/react-message-template')
1440
+ * Context
1441
+ `import { MessageProvider, useMessageContext } from '@sendbird/react-uikit-message-template-view';`
1442
+ * MessageTemplateView
1443
+ `import { MessageTemplateView } from '@sendbird/react-uikit-message-template-view';`
1444
+
1445
+ ## [v3.3.5] (Feb 3 2023)
1446
+ Features:
1447
+ * Voice Recorder&Player logic(not public yet)
1448
+ * Add a voice record logic: VoiceRecorderProvider, useVoiceRecorderContext, useVoiceRecorder
1449
+ * Add an audio play logic: VoicePlayerProvider, useVoicePlayerContext, useVoicePlayer
1450
+ * Create an integrated sample for the group channel
1451
+
1452
+ Fix:
1453
+ * Migrate the outdated ChannelListQuery interface
1454
+ * Issue: A customer said the `userIdsFilter` of ChannelListQuery doesn't work when receiving messages
1455
+ There's been an internal channel filtering logic with custom channelListQuery, but it's broken because we've used the outdated interface of Chat SDK.
1456
+ * Fix: We migrated the outdated interface `_searchFilter` and `_userIdsFilter` to new things `searchFilter` and `userIdsFilter
1457
+ * Use the same word-splitting logic on the TextMessage and OGMessage
1458
+ * TextMessage will also allow opening the URL links
1459
+ * Use the same word wrapping style on the TextMessage and OGMessage
1460
+ * Apply string set into the moderation section
1461
+ * Add string set
1462
+ * CHANNEL_SETTING__OPERATORS__ADD_BUTTON: 'Add'
1463
+ * CHANNEL_SETTING__MODERATION__EMPTY_BAN: 'No banned members yet'
1464
+ * CHANNEL_SETTING__MODERATION__ALL_BAN: 'All banned members'
1465
+ * Edit should not be allowed when input is empty
1466
+ * New channel interrupts the current conversation
1467
+ * Do not set the current channel when getting an invitation
1468
+ * Add test for USER_INVITED in the reducer of ChannelList
1469
+
1470
+ ## [v3.3.4] (Jan 6 2023)
1471
+ Fix:
1472
+ * Add the time stamp rendering case for before this year on the ChannelList
1473
+ * Improve the message input security
1474
+ * Possibility of XSS has been discovered
1475
+ * Recommend to do a version up, if you are using UIKit version 3.0.0 or higher
1476
+
1477
+ ## [v3.3.3] (Dec 22 2022)
1478
+ Fix:
1479
+ * Change default value of the image compression rate to 70%(0.7)
1480
+
1481
+ ## [v3.3.2] (Dec 8 2022)
1482
+ Features:
1483
+ * Add props `renderTitle` to the <ChannelListHeader /> component
1484
+ * `renderHeader` of <ChannelListHeader /> will be deprecated
1485
+ * Add interface overrideInviteUser
1486
+
1487
+ Add overrideInviteUser to ChannelList, CreateChannel and ChannelSettings
1488
+
1489
+ This interface overrides InviteMember functionality. Customer has to create the channel
1490
+ and close the popup manually
1491
+
1492
+ ```javascript
1493
+ export type OverrideInviteUserType = {
1494
+ users: Array<string>;
1495
+ onClose: () => void;
1496
+ channelType: 'group' | 'supergroup' | 'broadcast';
1497
+ };
1498
+ export interface ChannelListProps {
1499
+ overrideInviteUser?(params: OverrideInviteUserType): void;
1500
+ }
1501
+ export interface CreateChannelProps {
1502
+ overrideInviteUser?(params: OverrideInviteUserType): void;
1503
+ }
1504
+ export type OverrideInviteMemberType = {
1505
+ users: Array<string>;
1506
+ onClose: () => void;
1507
+ channel: GroupChannel;
1508
+ };
1509
+ ChannelSettings.overrideInviteUser?(params: OverrideInviteMemberType): void;
1510
+ ```
1511
+
1512
+ example:
1513
+ ```javascript
1514
+ <ChannelList
1515
+ overrideInviteUser={({users, onClose, channelType}) => {
1516
+ createMyChannel(users, channelType).then(() => {
1517
+ onClose();
1518
+ })
1519
+ }}
1520
+ />
1521
+ ```
1522
+
1523
+ Fixes:
1524
+ * Allow to override entire message search query.
1525
+ Now message search query supports searching messages in multiple channels.
1526
+ * Modify type definitions for props `ThreadUIProps.renderMessage`.
1527
+ * Remove duplication of create channel button when using `renderHeader` of <ChannelList />.
1528
+ * The online status should work even configureSession is provided.
1529
+ This was disabled because of a bug in sessionHandler in SDK now, we can re-enable this.
1530
+ * Create channel sometimes had empty operatorID.
1531
+ Use sendbird state to access currentUserID and use it incase prop value is empty.
1532
+ Also, remove legacy HOC pattern.
1533
+ * Add the props type `isMentionEnabled` of <App />.
1534
+ * Change the props type `messageSearchQuery` of <MessageSearch /> to **MessageSearchQueryParams**.
1535
+
1536
+ ## [v3.3.1] (Nov 23 2022)
1537
+ Fixes:
1538
+ * Rename properties of `useThreadContext`
1539
+ * `channelStatus` to `channelState`
1540
+ * `parentMessageInfoStatus` to `parentMessageState`
1541
+ * `threadListStatus` to `threadListState`
1542
+ * Change the state types to enum
1543
+ ```typescript
1544
+ enum ChannelStateTypes {
1545
+ NIL = 'NIL',
1546
+ LOADING = 'LOADING',
1547
+ INVALID = 'INVALID',
1548
+ INITIALIZED = 'INITIALIZED',
1549
+ }
1550
+ enum ParentMessageStateTypes {
1551
+ NIL = 'NIL',
1552
+ LOADING = 'LOADING',
1553
+ INVALID = 'INVALID',
1554
+ INITIALIZED = 'INITIALIZED',
1555
+ }
1556
+ enum ThreadListStateTypes {
1557
+ NIL = 'NIL',
1558
+ LOADING = 'LOADING',
1559
+ INVALID = 'INVALID',
1560
+ INITIALIZED = 'INITIALIZED',
1561
+ }
1562
+ ```
1563
+
1564
+ ## [v3.3.0] (Nov 23 2022)
1565
+ Features:
1566
+ * Provide new module `Thread`. See the specific informations of this module on the [Docs page](https://sendbird.com/docs/uikit)
1567
+ * You can use a combined component `Thread`. Import it with
1568
+ ```typescript
1569
+ import Thread from "@sendbird/uikit-react/Thread"
1570
+ ```
1571
+ * Also you can use `ThreadProvider` and `useThreadContext` for customization. Import it with
1572
+ ```typescript
1573
+ import { ThreadProvider, useThreadContext } from "@sendbird/uikit-react/Thread/context"
1574
+ ```
1575
+ * And the other UI components are provided under the Thread. `ThreadUI`, `ThreadHeader`, `ParentMessageInfo`, `ParentMessageInfoItem`, `ThreadList`, `ThreadListItem`, and `ThreadMessageInput` are it
1576
+ * Add channel props
1577
+ * `threadReplySelectType`: Type of the value should be
1578
+ ```typescript
1579
+ enum ThreadReplySelectType { PARENT, THREAD }
1580
+ ```
1581
+ You can see how to use it below
1582
+ ```typescript
1583
+ import { ThreadReplySelectType } from "@sendbird/uikit-react/Channel/context";
1584
+
1585
+ <Channel
1586
+ ...
1587
+ threadReplySelectType={ThreadReplySelectType.PARENT}
1588
+ />
1589
+ ```
1590
+ * `animatedMessage`: Type of the value should be number(messageId)
1591
+ * `onReplyInThread`: This function is called when user click the button "Reply in thread" on the message context menu
1592
+ ```typescript
1593
+ type onReplyInThread = ({ message: UserMessage | FileMessage }) => void
1594
+ ```
1595
+ * `onQuoteMessageClick`: This function is called when user click the quote message on the message of Channel
1596
+ ```typescript
1597
+ type onQuoteMessageClick = ({ message: UserMessage | FileMessage }) => {}
1598
+ ```
1599
+ * `onMessageAnimated`: This function is called after that message item is animated
1600
+ ```typescript
1601
+ type onMessageAnimated = () => void
1602
+ ```
1603
+ * `onMessageHighlighted`: This function is called after that message item is highlighted
1604
+ ```typescript
1605
+ type onMessageHighlighted = () => void
1606
+ ```
1607
+ * Add `ui/ThreadReplies` component
1608
+ ```typescript
1609
+ interface ThreadRepliesProps {
1610
+ className?: string;
1611
+ threadInfo: ThreadInfo;
1612
+ onClick?: (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>) => void;
1613
+ }
1614
+ ```
1615
+
1616
+ Fixes:
1617
+ * Do not allow operator to unregister itself on the OperatorList of GroupChannel
1618
+ * Create new group channel when user open 1:1 channel on the UserProfile
1619
+ * Register the channel creator as an operator in 1:1 channel
1620
+
1621
+ ## [v3.2.6] (Nov 14 2022)
1622
+ Fix:
1623
+ * Use ref instead of querySelector for DOM manipulation
1624
+ Fixes the issue where input is not cleared when multiple channels are open at the same time
1625
+ * Apply pre-line into the OpenChannelUserMessage
1626
+ Fixes the issue where OpenChannel UserMessage doesnt have new line
1627
+
1628
+ ## [v3.2.5] (Nov 7 2022)
1629
+ Fix:
1630
+ * Modify the type of parameters in the sendbirdSelectors
1631
+ There has been unsyncronous between reality and types
1632
+ This fix only affects to TypeScript
1633
+ * getLeaveGroupChannel: `channel` to `channelUrl`
1634
+ * getEnterOpenChannel: `channel` to `channelUrl`
1635
+ * getExitOpenChannel: `channel` to `channelUrl`
1636
+
1637
+ ## [v3.2.4] (Nov 1 2022)
1638
+ Features:
1639
+ * For Channel component, added separate prop isLoading?.boolean
1640
+ Usage: `<Channel channelUrl {currentChannelUrl} isLoading={!currentChannelUrl} />`
1641
+ * For flicker in ChannelList, no extra props
1642
+
1643
+ Fixes:
1644
+ * React UIKit placeholder rendering issue
1645
+ * Fix scroll issue in ChannelList where user cannot load more channels
1646
+ * Modify TS interface getLeaveChannel to getLeaveGroupChannel in selectors
1647
+
1648
+ ## [v3.2.3] (Oct 14 2022)
1649
+ Feature:
1650
+ * Add a prop `disableMarkAsRead` into the <Channel />
1651
+ This prop disables calling markAsRead in the Channel component
1652
+
1653
+ ## [v3.2.2] (Oct 13 2022)
1654
+
1655
+ Feature:
1656
+ * Export a type `OutgoingMessageStates`
1657
+ * Type: `enum OutgoingMessageStates { NONE, PENDING, SENT, FAILED, DELIVERED, READ }`
1658
+ * Export a util function `getOutgoingMessageState`
1659
+ * Importing path: "@sendbird/uikit-react/utils/message/getOutgoingMessageState"
1660
+ * Interface: `function getOutgoingMessageState(channel, message): OutgoingMessageStates`
1661
+ * Add a prop `disableMarkAsDelivered` into the <App /> and <SendbirdProvider />
1662
+ Some of our customers do not use the markAsDelivery feature,
1663
+ but we always have called the markAsDelivered on the ChannelList with every channel
1664
+ It caused a rate-limit issue, so we add a new prop to disable the markAdDelivered call for that case
1665
+
1666
+ ## [v3.2.1] (Oct 02 2022)
1667
+
1668
+ Fixes:
1669
+ * Do not bundle chat SDK with uikit compiled code
1670
+
1671
+ Compiled UIKit code that is distributed through npm shouldn't
1672
+ have Chat SDK minified code included in it
1673
+ Chat SDK should be a dependency of UIKit
1674
+ Advantages:
1675
+ * Chat SDK bug fixes will be added for free
1676
+ * Eliminate the need for handlers
1677
+ What caused the issue:
1678
+ If you are using rollup for bundling
1679
+ in config.external you have to be specific
1680
+ ie>
1681
+ This works:
1682
+ ```
1683
+ external: [
1684
+ '@sendbird/chat',
1685
+ '@sendbird/chat/groupChannel',
1686
+ '@sendbird/chat/openChannel',
1687
+ '@sendbird/chat/message',
1688
+ ]
1689
+ ```
1690
+ This doesn't:
1691
+ ```
1692
+ external: [ '@sendbird/chat', ]
1693
+ ```
1694
+
1695
+ * Only react and react-dom should be peerDependencies
1696
+
1697
+ For npm >= v7, npm autoinstall peerDependency packages
1698
+ According to `https://docs.npmjs.com/cli/v8/configuring-npm/package-json#peerdependencies`
1699
+ You want to express the compatibility of your package with a host tool
1700
+ or library while not necessarily doing a require of this host Even though react is required,
1701
+ its better to show that react is the host tool
1702
+
1703
+ ## [v3.2.0] (Sep 27 2022)
1704
+
1705
+ Features:
1706
+ * OpenChannelList component
1707
+ * Create new smart components (modules)
1708
+ * CreateOpenChannel
1709
+ * OpenChannelList
1710
+ * Add a renderHeader props into the ui/Modal component
1711
+ * Add stringSet for OpenChannelLisit and CreateOpenChannel components
1712
+ * OPEN_CHANNEL_LIST__TITLE: 'Channels',
1713
+ * CREATE_OPEN_CHANNEL_LIST__TITLE: 'New channel profile',
1714
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__IMG_SECTION: 'Channel image',
1715
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__IMG_UPLOAD: 'Upload',
1716
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__TEXT_SECTION: 'Channel name',
1717
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__TEXT_PLACE_HOLDER: 'Enter channel name',
1718
+ * CREATE_OPEN_CHANNEL_LIST__SUBMIT: 'Create',
1719
+ * Add prop?.value to MessageWrappers
1720
+ * @sendbird/uikit-react/Channel/components/MessageInput
1721
+ * @sendbird/uikit-react/OpenChannel/components/OpenChannelInput
1722
+ * @sendbird/uikit-react/ui/MessageInput
1723
+ * Value is reset when channelURL changes
1724
+
1725
+ Fixes:
1726
+ * Fix issue where ConnectionHandler overwrite SessionHandler
1727
+ * Use queries from @sendbird/chat
1728
+ * Use imported versions of GroupChannelListQueryParams and ApplicationUserListQueryParams
1729
+ * Fix `o`penChannel casing in type defn
1730
+ * Add some missing localization variables
1731
+ * Deprecate ChatHeader and ChannelPreview in @sendbird/uikit-react/ui
1732
+ * Replace the ButtonTypes and ButtonSizes into the Button/index
1733
+ * Apply scroll to input and dark theme color to UserProfile
1734
+ * Disable the create channel button when no user invite
1735
+ * Use ref from MessageInputWrapper props if present
1736
+ * Some CSS level polishing fixes~
1737
+
1738
+ Dev. Env:
1739
+ * Remove `enzyme` and `react-test-renderer`
1740
+ * Upgrade the `react` version to **v18**
1741
+ * Upgrade the `storybook` version to **v6.5.10**
1742
+ * Upgrade the `jest` and `babel-jest` to **v29**
1743
+ * Upgrade the `jsdom` to **v20**
1744
+ * Install `jest-environment-jsdom`
1745
+ * Install `global-jsdom`
1746
+ * Install `testing-library` (`@testing-library/react` and `@testing-library/jest-dom`)
1747
+ * Migrate every tests with `testing-library` instead of the `enzyme` and `react-test-renderer
1748
+ * Replace node-sass with sass(Dart Sass)
1749
+ * Reduce bundle size by treating react-dom/server as external
1750
+
1751
+ ## [v3.1.3] (Sep 19 2022)
1752
+
1753
+ Features:
1754
+ * Export SessionHandler through `@sendbird/uikit-react/handlers/SessionHandler`
1755
+ * This is a workaround to fix an issue where inhertiance chains break custom handler implementation
1756
+ * `import SessionHandler from '@sendbird/uikit-react/handlers/SessionHandler'`
1757
+ * Rem units can be used for typography
1758
+ * Pass prop `config.isREMUnitEnabled` -> true on SendbirdProvider
1759
+ to use "rem" units
1760
+ * We are adding rem as unit for typography/font size
1761
+
1762
+ Fixes:
1763
+ * Fix the position of ContextMenu
1764
+ * Do not exit the current open channel when the channel state is changed
1765
+ * Display menu only for operators on the member list
1766
+ * Hide muted icon when pop-up component is appeared
1767
+ * Set message context's border roundly by the state using the reaction feature
1768
+ * Add props `isReactionEnabled` to the <TextMessageItemBody />
1769
+ * Add props `isReactionEnabled` to the <OGMessageItemBody />
1770
+ * Add props `isReactionEnabled` to the <FileMessageItemBody />
1771
+ * Add props `isReactionEnabled` to the <ThumbnailMessageItemBody />
1772
+ * Add props `isReactionEnabled` to the <UnknownMessageItemBody />
1773
+ * Add the message as a parameter of renderCustomSeparator
1774
+ * before: renderCustomSeparator={() => ReactElement}
1775
+ * after: renderCustomSeparator={(props: { message }) => ReactElement}
1776
+ * Fix typo on the type
1777
+ * renderCustomSep'e'rator to renderCustomSep'a'rator
1778
+
1779
+ ## [v3.1.2] (Aug 31 2022)
1780
+
1781
+ * Migrate UI components into TypeScript
1782
+ This doesnt affect anyone, it a step in task to migrate the project source code into TS
1783
+
1784
+ Fixes:
1785
+ * Type defn: Change type of react elements to `React.ReactElement`
1786
+ * Change every `React.ReactNode` and `React.Component` to `React.ReactElement`
1787
+ * Use the type of SendbirdError
1788
+ * Use the type MessageSearchQueryParams
1789
+ * Use enum MessageSearchOrder.TIMESTAMP in the message search query params instead of `'ts' as const`
1790
+
1791
+ **ReactNode** could be `string | number | null | undefined | ReactElement | portal` and this(expecting string or number) causes **warning** when we use it like `<CustomComp />`
1792
+ ```typescript
1793
+ // in the component
1794
+ { renderMessage } = props
1795
+ const CustomMessage = useMemo(() => {
1796
+ return renderMessage({ ... });
1797
+ }, []);
1798
+ return (
1799
+ <div>
1800
+ <CustomMessage />
1801
+ </div>
1802
+ );
1803
+ ```
1804
+ so expecting **ReactElement** is better for our case
1805
+ * Fix message grouping:
1806
+ Set isMessageGroupingEnabed to true(was set to false during v2 migration)
1807
+
1808
+ ## [v3.1.1] (Aug 17 2022)
1809
+
1810
+ Features:
1811
+ * Add channel handlers to the open channel settings
1812
+ * Add an open channel handler into the OpenChannelSettings component
1813
+ * Use operators property to render operator list on the OpenChannelSetting
1814
+ instead of fetching operators
1815
+ * Export handlers through `@sendbird/uikit-react/handlers`, this is a workaround
1816
+ to fix an issue where inhertiance chains break custom handler implementation
1817
+ * ConnectionHandler -> `@sendbird/uikit-react/handlers/ConnectionHandler`
1818
+ * GroupChannelHandler -> `@sendbird/uikit-react/handlers/GroupChannelHandler`
1819
+ * OpenChannelHandler -> `@sendbird/uikit-react/handlers/OpenChannelHandler`
1820
+ * UserEventHandler -> `@sendbird/uikit-react/handlers/UserEventHandler`
1821
+ * Example: https://codesandbox.io/s/test-3-1-1-rc-5-f94w7i
1822
+
1823
+ Fixes:
1824
+ * Update SendableMessage to UserMessage and FileMessage
1825
+ * Change the type of MessageHandler.onFailed to FailedMessageHandler
1826
+ * Add missing type defns into scripts/index_d_ts
1827
+ * Typo in creating channelHandlerId on the ChannelList
1828
+
1829
+ ## [v3.1.0] (Aug 03 2022)
1830
+ Features:
1831
+ * Support moderation in OpenChannel
1832
+ * Provide moderations: mute, unmute, ban, and unban on the <OpenChannelSettings />
1833
+ * Provide moderations: register and unregister operator on the <OpenChannelSettings />
1834
+ * Add MutedParticipantList and MutedParticipantsModal into the <OpenChannelSettings />
1835
+ * Add BannedUserList and BannedUsersModal into the <OpenChannelSettings />
1836
+ * Add OperatorList and OperatorsModal into the <OpenChannelSettings />
1837
+ * Add AddOperatorsModal into the <OpenChannelSettings />
1838
+
1839
+ ## [v3.0.2] (Aug 03 2022)
1840
+ Fixes:
1841
+ * Explicitly export library as esm-module
1842
+ ESM library should have "type": "module" (package.json file that is going to /dist)
1843
+ This fixes Cannot use import outside module issue in next.js
1844
+ * Add optional chaining for createApplicationUserList
1845
+ * Fix QueryInProgress warning:
1846
+ React 18 strict mode glitch that causes useEffect to run twice
1847
+ * Cannot connect sometimes when customApiHost is empty
1848
+ Connection couldnt be established with no error message when customApiHost and customWebSocketHost
1849
+ were passed as empty string
1850
+ * Handle all chances of command not received error
1851
+ Handle chances of command not recieved error in markAsRead
1852
+ Experimental markasread handling -> longer times, no more call after unmount
1853
+ * Move typing handler in channellist into local variable
1854
+
1855
+ ## [v3.0.1] (July 28 2022)
1856
+
1857
+ Features:
1858
+ * Accept customApiHost & customWebSocketHost as props to SendbirdProvider
1859
+ * Add basic TS project sample
1860
+
1861
+ Fixes:
1862
+ * Improve URL detection in OG message
1863
+ * Add onCloseClick to MessageSearchProps
1864
+ * Safe call removeGroupChannelHandler in TypingIndicator
1865
+ * Apply userListQuery
1866
+ * Type definition for channellist and setting
1867
+
1868
+ ## [v3.0.0] (July 12 2022)
1869
+
1870
+ Features:
1871
+ * Support `modules` and `components` in the UIKit
1872
+ * Upgraded to `@sendbird/chat@4`
1873
+ * Support react 18
1874
+ * See the Migration Guide for Converting V2 to V3. [[details](./MIGRATION_v2-to-v3.md)]
1875
+ * See more details and breaking changes. [[details](./CHANGELOG.md)]
1876
+
1877
+ ## [3.0.0-beta.6] (June 03 2022)
1878
+
1879
+ Feature:
1880
+ * Show profile on clicking a mention
1881
+ * Visual highlight when user is mention
1882
+ * Add session handler interface
1883
+ ```
1884
+ // its recommended to memoize configureSession function
1885
+ const memoizedConfigureSession = (sb) => {
1886
+ const sessionHandler = new sb.SessionHandler();
1887
+ sessionHandler.onSessionTokenRequired = (onSuccess, onError) => {
1888
+ };
1889
+ return sessionHandler;
1890
+ };
1891
+
1892
+ // see: https://sendbird.com/docs/chat/v3/javascript/guides/authentication
1893
+ <SendbirdProvider
1894
+ configureSession={memoizedConfigureSession}
1895
+ />
1896
+ ```
1897
+
1898
+ Fix:
1899
+ * Change the front-weight of Subtitle2 from 600 to 500
1900
+ * Modify mention badge position on the ChannelListItem component
1901
+ * Change Info Icon size to 20px on the SuggestedMentionListItem component
1902
+ * Differentiate the message status 'read' and 'delivered' with message grouping
1903
+ * Modify KeyDown event handler on the message input for sending Korean text edge case
1904
+ Fix: Mention related stuff
1905
+ * Modify the onMouseOver event on the SuggestedMentionList component
1906
+ * Filter 'html' text when pasting text to the MessageInput component
1907
+ * Hide and apply ellipsis for overflowing text on the SuggestedMentionListItem component
1908
+ * Deactivate the MessageInput component when the current user is muted or the current channel is frozen
1909
+ * Reset the mention states of the current channel when changing channel and closing the edit MessageInput component
1910
+
1911
+ ## [3.0.0-beta.5] (May 24 2022)
1912
+ Fixes:
1913
+ * Export useChannelList
1914
+ * Active disableAutoSelect props
1915
+ * Remove empty CSS file to fix source map warning
1916
+
1917
+ DOC:
1918
+ * Add info about webpack 5 breaking changes
1919
+
1920
+ ## [3.0.0-beta.4] (May 24 2022) -> unpublished
1921
+ ## [3.0.0-beta.3] (May 19 2022)
1922
+ Fixes:
1923
+ * Rate limit markAsDelivered call
1924
+ * Do not render date separator when renderCustomSeparator is null
1925
+ Misc:
1926
+ * Update Chat SDK minimum version to `3.1.13`
1927
+
1928
+ ## [3.0.0-beta.2] (April 29 2022)
1929
+
1930
+ Feature:
1931
+ * Mention
1932
+ * Add isMentionEnabled props to the <App /> and <SendbirdProvider />
1933
+ * Add userMention into the config props of the <App /> andd <SendbirdProvider />
1934
+ * <SendbirdProvider config={{ userMention: { maxMentionCount: 10, maxSuggestionCount: 15 } }} />
1935
+ * maxMentionCount: A maximum count that you can mention in the message input
1936
+ * maxSuggestionCount: A maximum user count that the SuggestedMentionList suggests for user mention
1937
+ * Create SuggestedMentionList component under the Channel smart component
1938
+ * Create SuggestedUserMentionItem component
1939
+ * Create MentionUserLabel ui component
1940
+ * Add string set
1941
+ * MENTION_NAME__NO_NAME: '(No name)'
1942
+ * MENTION_COUNT__OVER_LIMIT: 'You can mention up to %d times per message.'
1943
+ Fix:
1944
+ * Type definition file fix for TS project
1945
+ For typescript projects, add `node_modules/@sendbird/uikit-react/index.d.ts`
1946
+ to your `include` section in tsconfig file to get type definitions
1947
+
1948
+ * Move font import to top of CSS file
1949
+ Some bundlers such as parcel throw error:
1950
+ `@import rules must precede all rules aside from @charset and @layer statements`
1951
+ Resolve this issue by moving the line to the top
1952
+
1953
+ ## [3.0.0-beta] (Apr 12 2022)
1954
+
1955
+ This is the official beta for Sendbird UIKit for React version 3!
1956
+
1957
+ TLDR -> We split the old `smart-components` into modules which contian context and UI. Context contain logic and UI Components handle UI
1958
+
1959
+ **[Check out the v2 to v3 migration guide for details](MIGRATION_v2-to-v3.md)**
1960
+
1961
+ Changelog:
1962
+ * Package should be installed using `@sendbird/uikit-react`
1963
+ * Restructure smart-components into modules that contain a context and related UI components
1964
+ * Export these context and UI components to allow fine-grain customization
1965
+ * Recommend to use these context elements `useXXXXX()` and react function components to make custom components
1966
+ * All generic UI components are available as exports
1967
+ * Restrcuture export paths to allow better tree-shaking
1968
+ * Example:
1969
+ ```
1970
+ import { useChannel } from '@sendbird/uikit-react/Channel/context';
1971
+ import ChannelUI from '@sendbird/uikit-react/Channel/components/ChannelUI';
1972
+ ```
1973
+ * We keep older export patterns to make migration easier
1974
+ * Retained modules - ChannelList, Channel, ChannelSettings, OpenChannel, OpenChannelSettings, MessageSearch
1975
+ * New modules(not including context and ui of above) - CreateChannel, EditUserProfile, ui