@sendbird/uikit-react 3.6.3 → 3.6.4-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 (1337) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/App.js +734 -0
  3. package/dist/App.js.map +1 -0
  4. package/dist/CHANGELOG.md +1287 -0
  5. package/dist/Channel/components/ChannelHeader.js +114 -0
  6. package/dist/Channel/components/ChannelUI.js +189 -0
  7. package/dist/Channel/components/FileViewer.js +158 -0
  8. package/dist/Channel/components/FrozenNotification.js +24 -0
  9. package/dist/Channel/components/Message.js +410 -0
  10. package/dist/Channel/components/MessageInput.js +246 -0
  11. package/dist/Channel/components/MessageList.js +356 -0
  12. package/dist/Channel/components/RemoveMessageModal.js +60 -0
  13. package/dist/Channel/components/SuggestedMentionList.js +259 -0
  14. package/dist/Channel/components/TypingIndicator.js +88 -0
  15. package/dist/Channel/components/UnreadCount.js +38 -0
  16. package/dist/Channel/context.js +20 -0
  17. package/dist/Channel.js +155 -0
  18. package/dist/ChannelList/components/AddChannel.js +75 -0
  19. package/dist/ChannelList/components/ChannelListHeader.js +76 -0
  20. package/dist/ChannelList/components/ChannelListUI.js +227 -0
  21. package/dist/ChannelList/components/ChannelPreview.js +183 -0
  22. package/dist/ChannelList/components/ChannelPreviewAction.js +133 -0
  23. package/dist/ChannelList/context.js +14 -0
  24. package/dist/ChannelList.js +97 -0
  25. package/dist/ChannelListProvider-6c1df64a.js +967 -0
  26. package/dist/ChannelListProvider-6c1df64a.js.map +1 -0
  27. package/dist/ChannelProvider-1dc36682.js +2144 -0
  28. package/dist/ChannelProvider-1dc36682.js.map +1 -0
  29. package/dist/ChannelSettings/components/ChannelProfile.js +89 -0
  30. package/dist/ChannelSettings/components/ChannelSettingsUI.js +152 -0
  31. package/dist/ChannelSettings/components/EditDetailsModal.js +146 -0
  32. package/dist/ChannelSettings/components/LeaveChannel.js +95 -0
  33. package/dist/ChannelSettings/components/ModerationPanel.js +788 -0
  34. package/dist/ChannelSettings/components/UserListItem.js +107 -0
  35. package/dist/ChannelSettings/components/UserPanel.js +78 -0
  36. package/dist/ChannelSettings/context.js +96 -0
  37. package/dist/ChannelSettings.js +76 -0
  38. package/dist/CreateChannel/components/CreateChannelUI.js +58 -0
  39. package/dist/CreateChannel/components/InviteUsers.js +198 -0
  40. package/dist/CreateChannel/components/SelectChannelType.js +133 -0
  41. package/dist/CreateChannel/context.js +9 -0
  42. package/dist/CreateChannel.js +58 -0
  43. package/dist/CreateChannelProvider-ec477081.js +44 -0
  44. package/dist/CreateChannelProvider-ec477081.js.map +1 -0
  45. package/dist/CreateOpenChannel/components/CreateOpenChannelUI.js +120 -0
  46. package/dist/CreateOpenChannel/context.js +63 -0
  47. package/dist/CreateOpenChannel.js +47 -0
  48. package/dist/EditUserProfile/components/EditUserProfileUI.js +26 -0
  49. package/dist/EditUserProfile.js +41 -0
  50. package/dist/LICENSE +21 -0
  51. package/dist/LocalizationContext-1701e5c8.js +20 -0
  52. package/dist/LocalizationContext-1701e5c8.js.map +1 -0
  53. package/dist/MediaQueryContext-e5b401d0.js +87 -0
  54. package/dist/MediaQueryContext-e5b401d0.js.map +1 -0
  55. package/dist/MemberList-415d00a9.js +403 -0
  56. package/dist/MemberList-415d00a9.js.map +1 -0
  57. package/dist/MessageSearch/components/MessageSearchUI.js +143 -0
  58. package/dist/MessageSearch/context.js +371 -0
  59. package/dist/MessageSearch.js +135 -0
  60. package/dist/OpenChannel/components/FrozenChannelNotification.js +21 -0
  61. package/dist/OpenChannel/components/OpenChannelHeader.js +92 -0
  62. package/dist/OpenChannel/components/OpenChannelInput.js +76 -0
  63. package/dist/OpenChannel/components/OpenChannelMessage.js +289 -0
  64. package/dist/OpenChannel/components/OpenChannelMessageList.js +147 -0
  65. package/dist/OpenChannel/components/OpenChannelUI.js +121 -0
  66. package/dist/OpenChannel/context.js +15 -0
  67. package/dist/OpenChannel.js +94 -0
  68. package/dist/OpenChannelList/components/OpenChannelListUI.js +182 -0
  69. package/dist/OpenChannelList/components/OpenChannelPreview.js +66 -0
  70. package/dist/OpenChannelList/context.js +7 -0
  71. package/dist/OpenChannelList.js +61 -0
  72. package/dist/OpenChannelListProvider-acb00ca3.js +429 -0
  73. package/dist/OpenChannelListProvider-acb00ca3.js.map +1 -0
  74. package/dist/OpenChannelProvider-995a7397.js +1885 -0
  75. package/dist/OpenChannelProvider-995a7397.js.map +1 -0
  76. package/dist/OpenChannelSettings/components/EditDetailsModal.js +139 -0
  77. package/dist/OpenChannelSettings/components/OpenChannelProfile.js +78 -0
  78. package/dist/OpenChannelSettings/components/OpenChannelSettingsUI.js +128 -0
  79. package/dist/OpenChannelSettings/components/OperatorUI.js +842 -0
  80. package/dist/OpenChannelSettings/components/ParticipantUI.js +36 -0
  81. package/dist/OpenChannelSettings/context.js +132 -0
  82. package/dist/OpenChannelSettings.js +66 -0
  83. package/dist/README.md +172 -0
  84. package/dist/RemoveMessageModal-bf0ab3b2.js +36 -0
  85. package/dist/RemoveMessageModal-bf0ab3b2.js.map +1 -0
  86. package/dist/SendbirdProvider.js +1198 -0
  87. package/dist/SendbirdProvider.js.map +1 -0
  88. package/dist/Thread/components/ParentMessageInfo.js +381 -0
  89. package/dist/Thread/components/ParentMessageInfoItem.js +220 -0
  90. package/dist/Thread/components/ThreadHeader.js +60 -0
  91. package/dist/Thread/components/ThreadList.js +167 -0
  92. package/dist/Thread/components/ThreadListItem.js +555 -0
  93. package/dist/Thread/components/ThreadMessageInput.js +226 -0
  94. package/dist/Thread/components/ThreadUI.js +348 -0
  95. package/dist/Thread/context.js +18 -0
  96. package/dist/Thread.js +145 -0
  97. package/dist/ThreadProvider-dea308a0.js +1695 -0
  98. package/dist/ThreadProvider-dea308a0.js.map +1 -0
  99. package/dist/UserProfileContext-74e9a128.js +41 -0
  100. package/dist/UserProfileContext-74e9a128.js.map +1 -0
  101. package/dist/VoiceMessageInputWrapper-4625a847.js +170 -0
  102. package/dist/VoiceMessageInputWrapper-4625a847.js.map +1 -0
  103. package/dist/VoicePlayer/context.js +7 -0
  104. package/dist/VoicePlayer/useVoicePlayer.js +84 -0
  105. package/dist/VoiceRecorder/context.js +156 -0
  106. package/dist/VoiceRecorder/useVoiceRecorder.js +121 -0
  107. package/dist/WebAudioUtils-9bed7a8e.js +126 -0
  108. package/dist/WebAudioUtils-9bed7a8e.js.map +1 -0
  109. package/dist/_rollupPluginBabelHelpers-cc035350.js +66 -0
  110. package/dist/_rollupPluginBabelHelpers-cc035350.js.map +1 -0
  111. package/dist/actionTypes-cccf62ac.js +8 -0
  112. package/dist/actionTypes-cccf62ac.js.map +1 -0
  113. package/dist/cjs/App.js +741 -0
  114. package/dist/cjs/App.js.map +1 -0
  115. package/dist/cjs/Channel/components/ChannelHeader.js +120 -0
  116. package/dist/cjs/Channel/components/ChannelUI.js +195 -0
  117. package/dist/cjs/Channel/components/FileViewer.js +167 -0
  118. package/dist/cjs/Channel/components/FrozenNotification.js +30 -0
  119. package/dist/cjs/Channel/components/Message.js +416 -0
  120. package/dist/cjs/Channel/components/MessageInput.js +252 -0
  121. package/dist/cjs/Channel/components/MessageList.js +362 -0
  122. package/dist/cjs/Channel/components/RemoveMessageModal.js +66 -0
  123. package/dist/cjs/Channel/components/SuggestedMentionList.js +265 -0
  124. package/dist/cjs/Channel/components/TypingIndicator.js +97 -0
  125. package/dist/cjs/Channel/components/UnreadCount.js +44 -0
  126. package/dist/cjs/Channel/context.js +29 -0
  127. package/dist/cjs/Channel.js +161 -0
  128. package/dist/cjs/ChannelList/components/AddChannel.js +84 -0
  129. package/dist/cjs/ChannelList/components/ChannelListHeader.js +82 -0
  130. package/dist/cjs/ChannelList/components/ChannelListUI.js +233 -0
  131. package/dist/cjs/ChannelList/components/ChannelPreview.js +189 -0
  132. package/dist/cjs/ChannelList/components/ChannelPreviewAction.js +140 -0
  133. package/dist/cjs/ChannelList/context.js +23 -0
  134. package/dist/cjs/ChannelList.js +103 -0
  135. package/dist/cjs/ChannelListProvider-6278e465.js +979 -0
  136. package/dist/cjs/ChannelListProvider-6278e465.js.map +1 -0
  137. package/dist/cjs/ChannelProvider-a05d259f.js +2157 -0
  138. package/dist/cjs/ChannelProvider-a05d259f.js.map +1 -0
  139. package/dist/cjs/ChannelSettings/components/ChannelProfile.js +95 -0
  140. package/dist/cjs/ChannelSettings/components/ChannelSettingsUI.js +158 -0
  141. package/dist/cjs/ChannelSettings/components/EditDetailsModal.js +152 -0
  142. package/dist/cjs/ChannelSettings/components/LeaveChannel.js +101 -0
  143. package/dist/cjs/ChannelSettings/components/ModerationPanel.js +794 -0
  144. package/dist/cjs/ChannelSettings/components/UserListItem.js +113 -0
  145. package/dist/cjs/ChannelSettings/components/UserPanel.js +84 -0
  146. package/dist/cjs/ChannelSettings/context.js +105 -0
  147. package/dist/cjs/ChannelSettings.js +82 -0
  148. package/dist/cjs/CreateChannel/components/CreateChannelUI.js +64 -0
  149. package/dist/cjs/CreateChannel/components/InviteUsers.js +204 -0
  150. package/dist/cjs/CreateChannel/components/SelectChannelType.js +139 -0
  151. package/dist/cjs/CreateChannel/context.js +18 -0
  152. package/dist/cjs/CreateChannel.js +64 -0
  153. package/dist/cjs/CreateChannelProvider-2e0d0496.js +52 -0
  154. package/dist/cjs/CreateChannelProvider-2e0d0496.js.map +1 -0
  155. package/dist/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +126 -0
  156. package/dist/cjs/CreateOpenChannel/context.js +72 -0
  157. package/dist/cjs/CreateOpenChannel.js +53 -0
  158. package/dist/cjs/EditUserProfile/components/EditUserProfileUI.js +32 -0
  159. package/dist/cjs/EditUserProfile.js +47 -0
  160. package/dist/cjs/LocalizationContext-44d2f61b.js +28 -0
  161. package/dist/cjs/LocalizationContext-44d2f61b.js.map +1 -0
  162. package/dist/cjs/MediaQueryContext-5d311a86.js +94 -0
  163. package/dist/cjs/MediaQueryContext-5d311a86.js.map +1 -0
  164. package/dist/cjs/MemberList-324a4047.js +409 -0
  165. package/dist/cjs/MemberList-324a4047.js.map +1 -0
  166. package/dist/cjs/MessageSearch/components/MessageSearchUI.js +152 -0
  167. package/dist/cjs/MessageSearch/context.js +380 -0
  168. package/dist/cjs/MessageSearch.js +141 -0
  169. package/dist/cjs/OpenChannel/components/FrozenChannelNotification.js +27 -0
  170. package/dist/cjs/OpenChannel/components/OpenChannelHeader.js +98 -0
  171. package/dist/cjs/OpenChannel/components/OpenChannelInput.js +82 -0
  172. package/dist/cjs/OpenChannel/components/OpenChannelMessage.js +295 -0
  173. package/dist/cjs/OpenChannel/components/OpenChannelMessageList.js +153 -0
  174. package/dist/cjs/OpenChannel/components/OpenChannelUI.js +127 -0
  175. package/dist/cjs/OpenChannel/context.js +24 -0
  176. package/dist/cjs/OpenChannel.js +100 -0
  177. package/dist/cjs/OpenChannelList/components/OpenChannelListUI.js +188 -0
  178. package/dist/cjs/OpenChannelList/components/OpenChannelPreview.js +72 -0
  179. package/dist/cjs/OpenChannelList/context.js +17 -0
  180. package/dist/cjs/OpenChannelList.js +67 -0
  181. package/dist/cjs/OpenChannelListProvider-42bc1841.js +439 -0
  182. package/dist/cjs/OpenChannelListProvider-42bc1841.js.map +1 -0
  183. package/dist/cjs/OpenChannelProvider-ecae68c8.js +1894 -0
  184. package/dist/cjs/OpenChannelProvider-ecae68c8.js.map +1 -0
  185. package/dist/cjs/OpenChannelSettings/components/EditDetailsModal.js +145 -0
  186. package/dist/cjs/OpenChannelSettings/components/OpenChannelProfile.js +84 -0
  187. package/dist/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +134 -0
  188. package/dist/cjs/OpenChannelSettings/components/OperatorUI.js +852 -0
  189. package/dist/cjs/OpenChannelSettings/components/ParticipantUI.js +42 -0
  190. package/dist/cjs/OpenChannelSettings/context.js +141 -0
  191. package/dist/cjs/OpenChannelSettings.js +72 -0
  192. package/dist/cjs/RemoveMessageModal-81daa8a0.js +42 -0
  193. package/dist/cjs/RemoveMessageModal-81daa8a0.js.map +1 -0
  194. package/dist/cjs/SendbirdProvider.js +1206 -0
  195. package/dist/cjs/SendbirdProvider.js.map +1 -0
  196. package/dist/cjs/Thread/components/ParentMessageInfo.js +387 -0
  197. package/dist/cjs/Thread/components/ParentMessageInfoItem.js +226 -0
  198. package/dist/cjs/Thread/components/ThreadHeader.js +66 -0
  199. package/dist/cjs/Thread/components/ThreadList.js +173 -0
  200. package/dist/cjs/Thread/components/ThreadListItem.js +561 -0
  201. package/dist/cjs/Thread/components/ThreadMessageInput.js +232 -0
  202. package/dist/cjs/Thread/components/ThreadUI.js +354 -0
  203. package/dist/cjs/Thread/context.js +27 -0
  204. package/dist/cjs/Thread.js +151 -0
  205. package/dist/cjs/ThreadProvider-bac1bea8.js +1704 -0
  206. package/dist/cjs/ThreadProvider-bac1bea8.js.map +1 -0
  207. package/dist/cjs/UserProfileContext-9d843d68.js +49 -0
  208. package/dist/cjs/UserProfileContext-9d843d68.js.map +1 -0
  209. package/dist/cjs/VoiceMessageInputWrapper-6625f53a.js +176 -0
  210. package/dist/cjs/VoiceMessageInputWrapper-6625f53a.js.map +1 -0
  211. package/dist/cjs/VoicePlayer/context.js +17 -0
  212. package/dist/cjs/VoicePlayer/useVoicePlayer.js +88 -0
  213. package/dist/cjs/VoiceRecorder/context.js +166 -0
  214. package/dist/cjs/VoiceRecorder/useVoiceRecorder.js +126 -0
  215. package/dist/cjs/WebAudioUtils-23153df4.js +129 -0
  216. package/dist/cjs/WebAudioUtils-23153df4.js.map +1 -0
  217. package/dist/cjs/_rollupPluginBabelHelpers-21ae158b.js +70 -0
  218. package/dist/cjs/_rollupPluginBabelHelpers-21ae158b.js.map +1 -0
  219. package/dist/cjs/actionTypes-944c8755.js +10 -0
  220. package/dist/cjs/actionTypes-944c8755.js.map +1 -0
  221. package/dist/cjs/color-0c04efbd.js +37 -0
  222. package/dist/cjs/color-0c04efbd.js.map +1 -0
  223. package/dist/cjs/compareIds-a846891d.js +17 -0
  224. package/dist/cjs/compareIds-a846891d.js.map +1 -0
  225. package/dist/cjs/const-1ea78727.js +20 -0
  226. package/dist/cjs/const-1ea78727.js.map +1 -0
  227. package/dist/cjs/const-bd02657f.js +22 -0
  228. package/dist/cjs/const-bd02657f.js.map +1 -0
  229. package/dist/cjs/consts-867f1ae6.js +6 -0
  230. package/dist/cjs/consts-867f1ae6.js.map +1 -0
  231. package/dist/cjs/consts-900e72b9.js +43 -0
  232. package/dist/cjs/consts-900e72b9.js.map +1 -0
  233. package/dist/cjs/consts-b93ef9ea.js +6 -0
  234. package/dist/cjs/consts-b93ef9ea.js.map +1 -0
  235. package/dist/cjs/consts-bce71b24.js +6 -0
  236. package/dist/cjs/consts-bce71b24.js.map +1 -0
  237. package/dist/cjs/context-2bf3186e.js +20 -0
  238. package/dist/cjs/context-2bf3186e.js.map +1 -0
  239. package/dist/cjs/dist/index.css +7570 -0
  240. package/dist/cjs/dist/index.css.map +1 -0
  241. package/dist/cjs/index-0a446cca.js +9 -0
  242. package/dist/cjs/index-0a446cca.js.map +1 -0
  243. package/dist/cjs/index-1b3c69da.js +585 -0
  244. package/dist/cjs/index-1b3c69da.js.map +1 -0
  245. package/dist/cjs/index-24f791d1.js +178 -0
  246. package/dist/cjs/index-24f791d1.js.map +1 -0
  247. package/dist/cjs/index-2bfd366f.js +129 -0
  248. package/dist/cjs/index-2bfd366f.js.map +1 -0
  249. package/dist/cjs/index-4d2879d6.js +161 -0
  250. package/dist/cjs/index-4d2879d6.js.map +1 -0
  251. package/dist/cjs/index-50c4a83b.js +330 -0
  252. package/dist/cjs/index-50c4a83b.js.map +1 -0
  253. package/dist/cjs/index-77d10148.js +171 -0
  254. package/dist/cjs/index-77d10148.js.map +1 -0
  255. package/dist/cjs/index-78a1037e.js +456 -0
  256. package/dist/cjs/index-78a1037e.js.map +1 -0
  257. package/dist/cjs/index-88e8fdfa.js +503 -0
  258. package/dist/cjs/index-88e8fdfa.js.map +1 -0
  259. package/dist/cjs/index-892b4b7f.js +1857 -0
  260. package/dist/cjs/index-892b4b7f.js.map +1 -0
  261. package/dist/cjs/index-8cd9b25d.js +57 -0
  262. package/dist/cjs/index-8cd9b25d.js.map +1 -0
  263. package/dist/cjs/index-9a5e4383.js +118 -0
  264. package/dist/cjs/index-9a5e4383.js.map +1 -0
  265. package/dist/cjs/index-a3268370.js +68 -0
  266. package/dist/cjs/index-a3268370.js.map +1 -0
  267. package/dist/cjs/index-b339cfde.js +202 -0
  268. package/dist/cjs/index-b339cfde.js.map +1 -0
  269. package/dist/cjs/index-b6657c80.js +149 -0
  270. package/dist/cjs/index-b6657c80.js.map +1 -0
  271. package/dist/cjs/index-beae7f2c.js +367 -0
  272. package/dist/cjs/index-beae7f2c.js.map +1 -0
  273. package/dist/cjs/index-c08f5bf5.js +79 -0
  274. package/dist/cjs/index-c08f5bf5.js.map +1 -0
  275. package/dist/cjs/index.js +207 -0
  276. package/dist/cjs/index.module-5a6a79b6.js +6 -0
  277. package/dist/cjs/index.module-5a6a79b6.js.map +1 -0
  278. package/dist/cjs/package.json +52 -0
  279. package/dist/cjs/resolvedReplyType-14fa0f85.js +32 -0
  280. package/dist/cjs/resolvedReplyType-14fa0f85.js.map +1 -0
  281. package/dist/cjs/sendbirdSelectors.js +586 -0
  282. package/dist/cjs/stringSet-7aebf034.js +205 -0
  283. package/dist/cjs/stringSet-7aebf034.js.map +1 -0
  284. package/dist/cjs/tokenize-44139f1e.js +164 -0
  285. package/dist/cjs/tokenize-44139f1e.js.map +1 -0
  286. package/dist/cjs/topics-373d2156.js +18 -0
  287. package/dist/cjs/topics-373d2156.js.map +1 -0
  288. package/dist/cjs/types-df5bd4e5.js +17 -0
  289. package/dist/cjs/types-df5bd4e5.js.map +1 -0
  290. package/dist/cjs/ui/Accordion.js +70 -0
  291. package/dist/cjs/ui/AccordionGroup.js +29 -0
  292. package/dist/cjs/ui/AdminMessage.js +31 -0
  293. package/dist/cjs/ui/Avatar.js +203 -0
  294. package/dist/cjs/ui/Badge.js +35 -0
  295. package/dist/cjs/ui/BottomSheet.js +45 -0
  296. package/dist/cjs/ui/Button.js +79 -0
  297. package/dist/cjs/ui/ChannelAvatar.js +55 -0
  298. package/dist/cjs/ui/ConnectionStatus.js +33 -0
  299. package/dist/cjs/ui/ContextMenu.js +305 -0
  300. package/dist/cjs/ui/DateSeparator.js +34 -0
  301. package/dist/cjs/ui/EmojiReactions.js +335 -0
  302. package/dist/cjs/ui/FileMessageItemBody.js +63 -0
  303. package/dist/cjs/ui/FileViewer.js +137 -0
  304. package/dist/cjs/ui/IconButton.js +49 -0
  305. package/dist/cjs/ui/Input.js +54 -0
  306. package/dist/cjs/ui/Label.js +16 -0
  307. package/dist/cjs/ui/LinkLabel.js +61 -0
  308. package/dist/cjs/ui/MentionLabel.js +97 -0
  309. package/dist/cjs/ui/MentionUserLabel.js +27 -0
  310. package/dist/cjs/ui/MessageContent.js +430 -0
  311. package/dist/cjs/ui/MessageInput.js +846 -0
  312. package/dist/cjs/ui/MessageItemMenu.js +162 -0
  313. package/dist/cjs/ui/MessageItemReactionMenu.js +109 -0
  314. package/dist/cjs/ui/MessageSearchFileItem.js +137 -0
  315. package/dist/cjs/ui/MessageSearchItem.js +104 -0
  316. package/dist/cjs/ui/MessageStatus.js +25 -0
  317. package/dist/cjs/ui/Modal.js +132 -0
  318. package/dist/cjs/ui/OGMessageItemBody.js +133 -0
  319. package/dist/cjs/ui/OpenChannelAdminMessage.js +27 -0
  320. package/dist/cjs/ui/OpenChannelAvatar.js +41 -0
  321. package/dist/cjs/ui/OpenchannelConversationHeader.js +76 -0
  322. package/dist/cjs/ui/OpenchannelFileMessage.js +253 -0
  323. package/dist/cjs/ui/OpenchannelOGMessage.js +351 -0
  324. package/dist/cjs/ui/OpenchannelThumbnailMessage.js +332 -0
  325. package/dist/cjs/ui/OpenchannelUserMessage.js +279 -0
  326. package/dist/cjs/ui/PlaceHolder.js +19 -0
  327. package/dist/cjs/ui/PlaybackTime.js +35 -0
  328. package/dist/cjs/ui/QuoteMessage.js +158 -0
  329. package/dist/cjs/ui/QuoteMessageInput.js +99 -0
  330. package/dist/cjs/ui/ReactionBadge.js +50 -0
  331. package/dist/cjs/ui/ReactionButton.js +47 -0
  332. package/dist/cjs/ui/SortByRow.js +43 -0
  333. package/dist/cjs/ui/TextButton.js +29 -0
  334. package/dist/cjs/ui/TextMessageItemBody.js +79 -0
  335. package/dist/cjs/ui/ThreadReplies.js +85 -0
  336. package/dist/cjs/ui/ThumbnailMessageItemBody.js +77 -0
  337. package/dist/cjs/ui/Toggle.js +202 -0
  338. package/dist/cjs/ui/Tooltip.js +27 -0
  339. package/dist/cjs/ui/UnknownMessageItemBody.js +43 -0
  340. package/dist/cjs/ui/UserListItem.js +133 -0
  341. package/dist/cjs/ui/UserProfile.js +93 -0
  342. package/dist/cjs/ui/VoiceMessageItemBody.js +119 -0
  343. package/dist/cjs/ui/VoiceMessgeInput.js +22 -0
  344. package/dist/cjs/ui/Word.js +107 -0
  345. package/dist/cjs/useDirtyGetMentions-1500af53.js +77 -0
  346. package/dist/cjs/useDirtyGetMentions-1500af53.js.map +1 -0
  347. package/dist/cjs/useLongPress-83b6a2f1.js +87 -0
  348. package/dist/cjs/useLongPress-83b6a2f1.js.map +1 -0
  349. package/dist/cjs/useSendbirdStateContext.js +21 -0
  350. package/dist/cjs/utils/message/isVoiceMessage.js +12 -0
  351. package/dist/cjs/utils-6a43371d.js +31 -0
  352. package/dist/cjs/utils-6a43371d.js.map +1 -0
  353. package/dist/cjs/utils-6a748c02.js +6 -0
  354. package/dist/cjs/utils-6a748c02.js.map +1 -0
  355. package/dist/cjs/utils-c71f0bea.js +35 -0
  356. package/dist/cjs/utils-c71f0bea.js.map +1 -0
  357. package/dist/cjs/utils-d7f7f189.js +28 -0
  358. package/dist/cjs/utils-d7f7f189.js.map +1 -0
  359. package/dist/cjs/uuid-dee74248.js +15 -0
  360. package/dist/cjs/uuid-dee74248.js.map +1 -0
  361. package/dist/cjs/withSendbird.js +32 -0
  362. package/dist/color-ea3bf5b8.js +34 -0
  363. package/dist/color-ea3bf5b8.js.map +1 -0
  364. package/dist/compareIds-367bb030.js +15 -0
  365. package/dist/compareIds-367bb030.js.map +1 -0
  366. package/dist/const-2e67461b.js +18 -0
  367. package/dist/const-2e67461b.js.map +1 -0
  368. package/dist/const-7c266a95.js +13 -0
  369. package/dist/const-7c266a95.js.map +1 -0
  370. package/dist/consts-3a33a0a8.js +4 -0
  371. package/dist/consts-3a33a0a8.js.map +1 -0
  372. package/dist/consts-44eaef6b.js +28 -0
  373. package/dist/consts-44eaef6b.js.map +1 -0
  374. package/dist/consts-a0834b70.js +4 -0
  375. package/dist/consts-a0834b70.js.map +1 -0
  376. package/dist/consts-b3274b3d.js +4 -0
  377. package/dist/consts-b3274b3d.js.map +1 -0
  378. package/dist/context-b513d868.js +13 -0
  379. package/dist/context-b513d868.js.map +1 -0
  380. package/dist/dist/index.css +7570 -0
  381. package/dist/dist/index.css.map +1 -0
  382. package/dist/index-02ceed0a.js +320 -0
  383. package/dist/index-02ceed0a.js.map +1 -0
  384. package/dist/index-0aa8cbad.js +137 -0
  385. package/dist/index-0aa8cbad.js.map +1 -0
  386. package/dist/index-11fe17e1.js +110 -0
  387. package/dist/index-11fe17e1.js.map +1 -0
  388. package/dist/index-3461216d.js +76 -0
  389. package/dist/index-3461216d.js.map +1 -0
  390. package/dist/index-35696958.js +450 -0
  391. package/dist/index-35696958.js.map +1 -0
  392. package/dist/index-3f8e1a51.js +66 -0
  393. package/dist/index-3f8e1a51.js.map +1 -0
  394. package/dist/index-44c86e58.js +7 -0
  395. package/dist/index-44c86e58.js.map +1 -0
  396. package/dist/index-581e7610.js +360 -0
  397. package/dist/index-581e7610.js.map +1 -0
  398. package/dist/index-5a62f6b7.js +1852 -0
  399. package/dist/index-5a62f6b7.js.map +1 -0
  400. package/dist/index-7e5538e6.js +174 -0
  401. package/dist/index-7e5538e6.js.map +1 -0
  402. package/dist/index-99ab01f6.js +540 -0
  403. package/dist/index-99ab01f6.js.map +1 -0
  404. package/dist/index-9c80246a.js +164 -0
  405. package/dist/index-9c80246a.js.map +1 -0
  406. package/dist/index-a31ee68d.js +51 -0
  407. package/dist/index-a31ee68d.js.map +1 -0
  408. package/dist/index-cac27d56.js +154 -0
  409. package/dist/index-cac27d56.js.map +1 -0
  410. package/dist/index-e30c58e0.js +187 -0
  411. package/dist/index-e30c58e0.js.map +1 -0
  412. package/dist/index-f50d7ab0.js +118 -0
  413. package/dist/index-f50d7ab0.js.map +1 -0
  414. package/dist/index-ff8f2f61.js +501 -0
  415. package/dist/index-ff8f2f61.js.map +1 -0
  416. package/dist/index.d.ts +2627 -0
  417. package/dist/index.js +187 -0
  418. package/dist/index.module-d24badee.js +4 -0
  419. package/dist/index.module-d24badee.js.map +1 -0
  420. package/dist/package.json +127 -0
  421. package/dist/resolvedReplyType-6bb8f548.js +29 -0
  422. package/dist/resolvedReplyType-6bb8f548.js.map +1 -0
  423. package/dist/sendbirdSelectors.js +561 -0
  424. package/dist/stringSet-e9bb0333.js +203 -0
  425. package/dist/stringSet-e9bb0333.js.map +1 -0
  426. package/dist/tokenize-d12690c3.js +159 -0
  427. package/dist/tokenize-d12690c3.js.map +1 -0
  428. package/dist/topics-0b30f52b.js +16 -0
  429. package/dist/topics-0b30f52b.js.map +1 -0
  430. package/dist/types-28e84810.js +15 -0
  431. package/dist/types-28e84810.js.map +1 -0
  432. package/dist/ui/Accordion.js +61 -0
  433. package/dist/ui/AccordionGroup.js +23 -0
  434. package/dist/ui/AdminMessage.js +25 -0
  435. package/dist/ui/Avatar.js +194 -0
  436. package/dist/ui/Badge.js +29 -0
  437. package/dist/ui/BottomSheet.js +39 -0
  438. package/dist/ui/Button.js +69 -0
  439. package/dist/ui/ChannelAvatar.js +49 -0
  440. package/dist/ui/ConnectionStatus.js +27 -0
  441. package/dist/ui/ContextMenu.js +292 -0
  442. package/dist/ui/DateSeparator.js +28 -0
  443. package/dist/ui/EmojiReactions.js +329 -0
  444. package/dist/ui/FileMessageItemBody.js +57 -0
  445. package/dist/ui/FileViewer.js +128 -0
  446. package/dist/ui/IconButton.js +43 -0
  447. package/dist/ui/Input.js +45 -0
  448. package/dist/ui/Label.js +5 -0
  449. package/dist/ui/LinkLabel.js +50 -0
  450. package/dist/ui/MentionLabel.js +91 -0
  451. package/dist/ui/MentionUserLabel.js +21 -0
  452. package/dist/ui/MessageContent.js +424 -0
  453. package/dist/ui/MessageInput.js +838 -0
  454. package/dist/ui/MessageItemMenu.js +156 -0
  455. package/dist/ui/MessageItemReactionMenu.js +103 -0
  456. package/dist/ui/MessageSearchFileItem.js +131 -0
  457. package/dist/ui/MessageSearchItem.js +98 -0
  458. package/dist/ui/MessageStatus.js +16 -0
  459. package/dist/ui/Modal.js +121 -0
  460. package/dist/ui/OGMessageItemBody.js +127 -0
  461. package/dist/ui/OpenChannelAdminMessage.js +21 -0
  462. package/dist/ui/OpenChannelAvatar.js +35 -0
  463. package/dist/ui/OpenchannelConversationHeader.js +70 -0
  464. package/dist/ui/OpenchannelFileMessage.js +247 -0
  465. package/dist/ui/OpenchannelOGMessage.js +345 -0
  466. package/dist/ui/OpenchannelThumbnailMessage.js +326 -0
  467. package/dist/ui/OpenchannelUserMessage.js +273 -0
  468. package/dist/ui/PlaceHolder.js +10 -0
  469. package/dist/ui/PlaybackTime.js +26 -0
  470. package/dist/ui/QuoteMessage.js +152 -0
  471. package/dist/ui/QuoteMessageInput.js +93 -0
  472. package/dist/ui/ReactionBadge.js +44 -0
  473. package/dist/ui/ReactionButton.js +41 -0
  474. package/dist/ui/SortByRow.js +37 -0
  475. package/dist/ui/TextButton.js +23 -0
  476. package/dist/ui/TextMessageItemBody.js +73 -0
  477. package/dist/ui/ThreadReplies.js +79 -0
  478. package/dist/ui/ThumbnailMessageItemBody.js +71 -0
  479. package/dist/ui/Toggle.js +191 -0
  480. package/dist/ui/Tooltip.js +21 -0
  481. package/dist/ui/UnknownMessageItemBody.js +37 -0
  482. package/dist/ui/UserListItem.js +127 -0
  483. package/dist/ui/UserProfile.js +87 -0
  484. package/dist/ui/VoiceMessageItemBody.js +110 -0
  485. package/dist/ui/VoiceMessgeInput.js +14 -0
  486. package/dist/ui/Word.js +101 -0
  487. package/dist/useDirtyGetMentions-2df51ec3.js +75 -0
  488. package/dist/useDirtyGetMentions-2df51ec3.js.map +1 -0
  489. package/dist/useLongPress-6d0b6619.js +85 -0
  490. package/dist/useLongPress-6d0b6619.js.map +1 -0
  491. package/dist/useSendbirdStateContext.js +19 -0
  492. package/dist/utils/message/isVoiceMessage.js +8 -0
  493. package/dist/utils-05aa9060.js +4 -0
  494. package/dist/utils-05aa9060.js.map +1 -0
  495. package/dist/utils-a59107a2.js +26 -0
  496. package/dist/utils-a59107a2.js.map +1 -0
  497. package/dist/utils-cd7ab927.js +31 -0
  498. package/dist/utils-cd7ab927.js.map +1 -0
  499. package/dist/utils-f1b4b34b.js +29 -0
  500. package/dist/utils-f1b4b34b.js.map +1 -0
  501. package/dist/uuid-8b344dd2.js +13 -0
  502. package/dist/uuid-8b344dd2.js.map +1 -0
  503. package/dist/withSendbird.js +23 -0
  504. package/package.json +43 -13
  505. package/App.js +0 -730
  506. package/App.js.map +0 -1
  507. package/Channel/components/ChannelHeader.js +0 -114
  508. package/Channel/components/ChannelUI.js +0 -189
  509. package/Channel/components/FileViewer.js +0 -158
  510. package/Channel/components/FrozenNotification.js +0 -24
  511. package/Channel/components/Message.js +0 -410
  512. package/Channel/components/MessageInput.js +0 -246
  513. package/Channel/components/MessageList.js +0 -356
  514. package/Channel/components/RemoveMessageModal.js +0 -60
  515. package/Channel/components/SuggestedMentionList.js +0 -259
  516. package/Channel/components/TypingIndicator.js +0 -88
  517. package/Channel/components/UnreadCount.js +0 -38
  518. package/Channel/context.js +0 -20
  519. package/Channel.js +0 -155
  520. package/ChannelList/components/AddChannel.js +0 -75
  521. package/ChannelList/components/ChannelListHeader.js +0 -76
  522. package/ChannelList/components/ChannelListUI.js +0 -227
  523. package/ChannelList/components/ChannelPreview.js +0 -183
  524. package/ChannelList/components/ChannelPreviewAction.js +0 -133
  525. package/ChannelList/context.js +0 -14
  526. package/ChannelList.js +0 -97
  527. package/ChannelListProvider-1f3a3b98.js +0 -967
  528. package/ChannelListProvider-1f3a3b98.js.map +0 -1
  529. package/ChannelProvider-5c274c35.js +0 -2144
  530. package/ChannelProvider-5c274c35.js.map +0 -1
  531. package/ChannelSettings/components/ChannelProfile.js +0 -89
  532. package/ChannelSettings/components/ChannelSettingsUI.js +0 -152
  533. package/ChannelSettings/components/EditDetailsModal.js +0 -146
  534. package/ChannelSettings/components/LeaveChannel.js +0 -95
  535. package/ChannelSettings/components/ModerationPanel.js +0 -788
  536. package/ChannelSettings/components/UserListItem.js +0 -107
  537. package/ChannelSettings/components/UserPanel.js +0 -78
  538. package/ChannelSettings/context.js +0 -96
  539. package/ChannelSettings.js +0 -76
  540. package/CreateChannel/components/CreateChannelUI.js +0 -58
  541. package/CreateChannel/components/InviteUsers.js +0 -198
  542. package/CreateChannel/components/SelectChannelType.js +0 -133
  543. package/CreateChannel/context.js +0 -9
  544. package/CreateChannel.js +0 -58
  545. package/CreateChannelProvider-7c210c5c.js +0 -44
  546. package/CreateChannelProvider-7c210c5c.js.map +0 -1
  547. package/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -120
  548. package/CreateOpenChannel/context.js +0 -63
  549. package/CreateOpenChannel.js +0 -47
  550. package/EditUserProfile/components/EditUserProfileUI.js +0 -26
  551. package/EditUserProfile.js +0 -41
  552. package/LocalizationContext-946f1522.js +0 -20
  553. package/LocalizationContext-946f1522.js.map +0 -1
  554. package/MediaQueryContext-3082308b.js +0 -87
  555. package/MediaQueryContext-3082308b.js.map +0 -1
  556. package/MemberList-56b35618.js +0 -403
  557. package/MemberList-56b35618.js.map +0 -1
  558. package/MessageSearch/components/MessageSearchUI.js +0 -143
  559. package/MessageSearch/context.js +0 -371
  560. package/MessageSearch.js +0 -135
  561. package/OpenChannel/components/FrozenChannelNotification.js +0 -21
  562. package/OpenChannel/components/OpenChannelHeader.js +0 -92
  563. package/OpenChannel/components/OpenChannelInput.js +0 -76
  564. package/OpenChannel/components/OpenChannelMessage.js +0 -289
  565. package/OpenChannel/components/OpenChannelMessageList.js +0 -147
  566. package/OpenChannel/components/OpenChannelUI.js +0 -121
  567. package/OpenChannel/context.js +0 -15
  568. package/OpenChannel.js +0 -94
  569. package/OpenChannelList/components/OpenChannelListUI.js +0 -182
  570. package/OpenChannelList/components/OpenChannelPreview.js +0 -66
  571. package/OpenChannelList/context.js +0 -7
  572. package/OpenChannelList.js +0 -61
  573. package/OpenChannelListProvider-3e2d0231.js +0 -429
  574. package/OpenChannelListProvider-3e2d0231.js.map +0 -1
  575. package/OpenChannelProvider-1015964c.js +0 -1885
  576. package/OpenChannelProvider-1015964c.js.map +0 -1
  577. package/OpenChannelSettings/components/EditDetailsModal.js +0 -139
  578. package/OpenChannelSettings/components/OpenChannelProfile.js +0 -78
  579. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -128
  580. package/OpenChannelSettings/components/OperatorUI.js +0 -842
  581. package/OpenChannelSettings/components/ParticipantUI.js +0 -36
  582. package/OpenChannelSettings/context.js +0 -132
  583. package/OpenChannelSettings.js +0 -66
  584. package/RemoveMessageModal-0c26de36.js +0 -36
  585. package/RemoveMessageModal-0c26de36.js.map +0 -1
  586. package/SendbirdProvider.js +0 -1192
  587. package/SendbirdProvider.js.map +0 -1
  588. package/Thread/components/ParentMessageInfo.js +0 -381
  589. package/Thread/components/ParentMessageInfoItem.js +0 -220
  590. package/Thread/components/ThreadHeader.js +0 -60
  591. package/Thread/components/ThreadList.js +0 -167
  592. package/Thread/components/ThreadListItem.js +0 -555
  593. package/Thread/components/ThreadMessageInput.js +0 -226
  594. package/Thread/components/ThreadUI.js +0 -348
  595. package/Thread/context.js +0 -18
  596. package/Thread.js +0 -145
  597. package/ThreadProvider-d0b84f35.js +0 -1695
  598. package/ThreadProvider-d0b84f35.js.map +0 -1
  599. package/UserProfileContext-00a2876c.js +0 -41
  600. package/UserProfileContext-00a2876c.js.map +0 -1
  601. package/VoiceMessageInputWrapper-a5804e24.js +0 -170
  602. package/VoiceMessageInputWrapper-a5804e24.js.map +0 -1
  603. package/VoicePlayer/context.js +0 -7
  604. package/VoicePlayer/useVoicePlayer.js +0 -84
  605. package/VoiceRecorder/context.js +0 -156
  606. package/VoiceRecorder/useVoiceRecorder.js +0 -121
  607. package/WebAudioUtils-eae97f80.js +0 -126
  608. package/WebAudioUtils-eae97f80.js.map +0 -1
  609. package/_rollupPluginBabelHelpers-b483a7d2.js +0 -66
  610. package/_rollupPluginBabelHelpers-b483a7d2.js.map +0 -1
  611. package/actionTypes-cb0b031b.js +0 -8
  612. package/actionTypes-cb0b031b.js.map +0 -1
  613. package/cjs/App.js +0 -737
  614. package/cjs/App.js.map +0 -1
  615. package/cjs/Channel/components/ChannelHeader.js +0 -120
  616. package/cjs/Channel/components/ChannelUI.js +0 -195
  617. package/cjs/Channel/components/FileViewer.js +0 -167
  618. package/cjs/Channel/components/FrozenNotification.js +0 -30
  619. package/cjs/Channel/components/Message.js +0 -416
  620. package/cjs/Channel/components/MessageInput.js +0 -252
  621. package/cjs/Channel/components/MessageList.js +0 -362
  622. package/cjs/Channel/components/RemoveMessageModal.js +0 -66
  623. package/cjs/Channel/components/SuggestedMentionList.js +0 -265
  624. package/cjs/Channel/components/TypingIndicator.js +0 -97
  625. package/cjs/Channel/components/UnreadCount.js +0 -44
  626. package/cjs/Channel/context.js +0 -29
  627. package/cjs/Channel.js +0 -161
  628. package/cjs/ChannelList/components/AddChannel.js +0 -84
  629. package/cjs/ChannelList/components/ChannelListHeader.js +0 -82
  630. package/cjs/ChannelList/components/ChannelListUI.js +0 -233
  631. package/cjs/ChannelList/components/ChannelPreview.js +0 -189
  632. package/cjs/ChannelList/components/ChannelPreviewAction.js +0 -140
  633. package/cjs/ChannelList/context.js +0 -23
  634. package/cjs/ChannelList.js +0 -103
  635. package/cjs/ChannelListProvider-b45b79f5.js +0 -979
  636. package/cjs/ChannelListProvider-b45b79f5.js.map +0 -1
  637. package/cjs/ChannelProvider-7abd9fa3.js +0 -2157
  638. package/cjs/ChannelProvider-7abd9fa3.js.map +0 -1
  639. package/cjs/ChannelSettings/components/ChannelProfile.js +0 -95
  640. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +0 -158
  641. package/cjs/ChannelSettings/components/EditDetailsModal.js +0 -152
  642. package/cjs/ChannelSettings/components/LeaveChannel.js +0 -101
  643. package/cjs/ChannelSettings/components/ModerationPanel.js +0 -794
  644. package/cjs/ChannelSettings/components/UserListItem.js +0 -113
  645. package/cjs/ChannelSettings/components/UserPanel.js +0 -84
  646. package/cjs/ChannelSettings/context.js +0 -105
  647. package/cjs/ChannelSettings.js +0 -82
  648. package/cjs/CreateChannel/components/CreateChannelUI.js +0 -64
  649. package/cjs/CreateChannel/components/InviteUsers.js +0 -204
  650. package/cjs/CreateChannel/components/SelectChannelType.js +0 -139
  651. package/cjs/CreateChannel/context.js +0 -18
  652. package/cjs/CreateChannel.js +0 -64
  653. package/cjs/CreateChannelProvider-1cf31fc6.js +0 -52
  654. package/cjs/CreateChannelProvider-1cf31fc6.js.map +0 -1
  655. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -126
  656. package/cjs/CreateOpenChannel/context.js +0 -72
  657. package/cjs/CreateOpenChannel.js +0 -53
  658. package/cjs/EditUserProfile/components/EditUserProfileUI.js +0 -32
  659. package/cjs/EditUserProfile.js +0 -47
  660. package/cjs/LocalizationContext-c014018b.js +0 -28
  661. package/cjs/LocalizationContext-c014018b.js.map +0 -1
  662. package/cjs/MediaQueryContext-aea0ce1a.js +0 -94
  663. package/cjs/MediaQueryContext-aea0ce1a.js.map +0 -1
  664. package/cjs/MemberList-c86e360b.js +0 -409
  665. package/cjs/MemberList-c86e360b.js.map +0 -1
  666. package/cjs/MessageSearch/components/MessageSearchUI.js +0 -152
  667. package/cjs/MessageSearch/context.js +0 -380
  668. package/cjs/MessageSearch.js +0 -141
  669. package/cjs/OpenChannel/components/FrozenChannelNotification.js +0 -27
  670. package/cjs/OpenChannel/components/OpenChannelHeader.js +0 -98
  671. package/cjs/OpenChannel/components/OpenChannelInput.js +0 -82
  672. package/cjs/OpenChannel/components/OpenChannelMessage.js +0 -295
  673. package/cjs/OpenChannel/components/OpenChannelMessageList.js +0 -153
  674. package/cjs/OpenChannel/components/OpenChannelUI.js +0 -127
  675. package/cjs/OpenChannel/context.js +0 -24
  676. package/cjs/OpenChannel.js +0 -100
  677. package/cjs/OpenChannelList/components/OpenChannelListUI.js +0 -188
  678. package/cjs/OpenChannelList/components/OpenChannelPreview.js +0 -72
  679. package/cjs/OpenChannelList/context.js +0 -17
  680. package/cjs/OpenChannelList.js +0 -67
  681. package/cjs/OpenChannelListProvider-6804c86a.js +0 -439
  682. package/cjs/OpenChannelListProvider-6804c86a.js.map +0 -1
  683. package/cjs/OpenChannelProvider-6ca34d20.js +0 -1894
  684. package/cjs/OpenChannelProvider-6ca34d20.js.map +0 -1
  685. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +0 -145
  686. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +0 -84
  687. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -134
  688. package/cjs/OpenChannelSettings/components/OperatorUI.js +0 -852
  689. package/cjs/OpenChannelSettings/components/ParticipantUI.js +0 -42
  690. package/cjs/OpenChannelSettings/context.js +0 -141
  691. package/cjs/OpenChannelSettings.js +0 -72
  692. package/cjs/RemoveMessageModal-443d81bf.js +0 -42
  693. package/cjs/RemoveMessageModal-443d81bf.js.map +0 -1
  694. package/cjs/SendbirdProvider.js +0 -1200
  695. package/cjs/SendbirdProvider.js.map +0 -1
  696. package/cjs/Thread/components/ParentMessageInfo.js +0 -387
  697. package/cjs/Thread/components/ParentMessageInfoItem.js +0 -226
  698. package/cjs/Thread/components/ThreadHeader.js +0 -66
  699. package/cjs/Thread/components/ThreadList.js +0 -173
  700. package/cjs/Thread/components/ThreadListItem.js +0 -561
  701. package/cjs/Thread/components/ThreadMessageInput.js +0 -232
  702. package/cjs/Thread/components/ThreadUI.js +0 -354
  703. package/cjs/Thread/context.js +0 -27
  704. package/cjs/Thread.js +0 -151
  705. package/cjs/ThreadProvider-48a2b384.js +0 -1704
  706. package/cjs/ThreadProvider-48a2b384.js.map +0 -1
  707. package/cjs/UserProfileContext-218e40b8.js +0 -49
  708. package/cjs/UserProfileContext-218e40b8.js.map +0 -1
  709. package/cjs/VoiceMessageInputWrapper-90c4bdb2.js +0 -176
  710. package/cjs/VoiceMessageInputWrapper-90c4bdb2.js.map +0 -1
  711. package/cjs/VoicePlayer/context.js +0 -17
  712. package/cjs/VoicePlayer/useVoicePlayer.js +0 -88
  713. package/cjs/VoiceRecorder/context.js +0 -166
  714. package/cjs/VoiceRecorder/useVoiceRecorder.js +0 -126
  715. package/cjs/WebAudioUtils-752880d0.js +0 -129
  716. package/cjs/WebAudioUtils-752880d0.js.map +0 -1
  717. package/cjs/_rollupPluginBabelHelpers-a2f03c55.js +0 -70
  718. package/cjs/_rollupPluginBabelHelpers-a2f03c55.js.map +0 -1
  719. package/cjs/actionTypes-12a94d6c.js +0 -10
  720. package/cjs/actionTypes-12a94d6c.js.map +0 -1
  721. package/cjs/color-e2978317.js +0 -37
  722. package/cjs/color-e2978317.js.map +0 -1
  723. package/cjs/compareIds-0f9de3a1.js +0 -17
  724. package/cjs/compareIds-0f9de3a1.js.map +0 -1
  725. package/cjs/const-2371a4db.js +0 -20
  726. package/cjs/const-2371a4db.js.map +0 -1
  727. package/cjs/const-fc4d15a8.js +0 -22
  728. package/cjs/const-fc4d15a8.js.map +0 -1
  729. package/cjs/consts-0374d4b1.js +0 -6
  730. package/cjs/consts-0374d4b1.js.map +0 -1
  731. package/cjs/consts-65d5b30a.js +0 -6
  732. package/cjs/consts-65d5b30a.js.map +0 -1
  733. package/cjs/consts-e09f89f0.js +0 -43
  734. package/cjs/consts-e09f89f0.js.map +0 -1
  735. package/cjs/consts-fb57db79.js +0 -6
  736. package/cjs/consts-fb57db79.js.map +0 -1
  737. package/cjs/context-5404064d.js +0 -20
  738. package/cjs/context-5404064d.js.map +0 -1
  739. package/cjs/dist/index.css +0 -7570
  740. package/cjs/dist/index.css.map +0 -1
  741. package/cjs/index-016f7465.js +0 -456
  742. package/cjs/index-016f7465.js.map +0 -1
  743. package/cjs/index-035bdafb.js +0 -503
  744. package/cjs/index-035bdafb.js.map +0 -1
  745. package/cjs/index-10a942ae.js +0 -57
  746. package/cjs/index-10a942ae.js.map +0 -1
  747. package/cjs/index-347004c1.js +0 -129
  748. package/cjs/index-347004c1.js.map +0 -1
  749. package/cjs/index-3a1678b7.js +0 -118
  750. package/cjs/index-3a1678b7.js.map +0 -1
  751. package/cjs/index-4321dbbb.js +0 -79
  752. package/cjs/index-4321dbbb.js.map +0 -1
  753. package/cjs/index-449ba503.js +0 -178
  754. package/cjs/index-449ba503.js.map +0 -1
  755. package/cjs/index-451eee29.js +0 -202
  756. package/cjs/index-451eee29.js.map +0 -1
  757. package/cjs/index-45f1fd2f.js +0 -68
  758. package/cjs/index-45f1fd2f.js.map +0 -1
  759. package/cjs/index-513a30b7.js +0 -330
  760. package/cjs/index-513a30b7.js.map +0 -1
  761. package/cjs/index-b03881eb.js +0 -149
  762. package/cjs/index-b03881eb.js.map +0 -1
  763. package/cjs/index-b6aac2a6.js +0 -367
  764. package/cjs/index-b6aac2a6.js.map +0 -1
  765. package/cjs/index-b713c814.js +0 -161
  766. package/cjs/index-b713c814.js.map +0 -1
  767. package/cjs/index-dcbd98e1.js +0 -171
  768. package/cjs/index-dcbd98e1.js.map +0 -1
  769. package/cjs/index-ee440b53.js +0 -1857
  770. package/cjs/index-ee440b53.js.map +0 -1
  771. package/cjs/index-f4d89559.js +0 -585
  772. package/cjs/index-f4d89559.js.map +0 -1
  773. package/cjs/index-fea92ea0.js +0 -9
  774. package/cjs/index-fea92ea0.js.map +0 -1
  775. package/cjs/index.js +0 -207
  776. package/cjs/index.module-81f6dfc4.js +0 -6
  777. package/cjs/index.module-81f6dfc4.js.map +0 -1
  778. package/cjs/resolvedReplyType-478d89dd.js +0 -32
  779. package/cjs/resolvedReplyType-478d89dd.js.map +0 -1
  780. package/cjs/sendbirdSelectors.js +0 -586
  781. package/cjs/stringSet-b0d09ab2.js +0 -205
  782. package/cjs/stringSet-b0d09ab2.js.map +0 -1
  783. package/cjs/tokenize-dd712668.js +0 -164
  784. package/cjs/tokenize-dd712668.js.map +0 -1
  785. package/cjs/topics-d64c7836.js +0 -18
  786. package/cjs/topics-d64c7836.js.map +0 -1
  787. package/cjs/types-81253512.js +0 -17
  788. package/cjs/types-81253512.js.map +0 -1
  789. package/cjs/ui/Accordion.js +0 -70
  790. package/cjs/ui/AccordionGroup.js +0 -29
  791. package/cjs/ui/AdminMessage.js +0 -31
  792. package/cjs/ui/Avatar.js +0 -203
  793. package/cjs/ui/Badge.js +0 -35
  794. package/cjs/ui/BottomSheet.js +0 -45
  795. package/cjs/ui/Button.js +0 -79
  796. package/cjs/ui/ChannelAvatar.js +0 -55
  797. package/cjs/ui/ConnectionStatus.js +0 -33
  798. package/cjs/ui/ContextMenu.js +0 -305
  799. package/cjs/ui/DateSeparator.js +0 -34
  800. package/cjs/ui/EmojiReactions.js +0 -335
  801. package/cjs/ui/FileMessageItemBody.js +0 -63
  802. package/cjs/ui/FileViewer.js +0 -137
  803. package/cjs/ui/IconButton.js +0 -49
  804. package/cjs/ui/Input.js +0 -54
  805. package/cjs/ui/Label.js +0 -16
  806. package/cjs/ui/LinkLabel.js +0 -61
  807. package/cjs/ui/MentionLabel.js +0 -97
  808. package/cjs/ui/MentionUserLabel.js +0 -27
  809. package/cjs/ui/MessageContent.js +0 -430
  810. package/cjs/ui/MessageInput.js +0 -846
  811. package/cjs/ui/MessageItemMenu.js +0 -162
  812. package/cjs/ui/MessageItemReactionMenu.js +0 -109
  813. package/cjs/ui/MessageSearchFileItem.js +0 -137
  814. package/cjs/ui/MessageSearchItem.js +0 -104
  815. package/cjs/ui/MessageStatus.js +0 -25
  816. package/cjs/ui/Modal.js +0 -132
  817. package/cjs/ui/OGMessageItemBody.js +0 -133
  818. package/cjs/ui/OpenChannelAdminMessage.js +0 -27
  819. package/cjs/ui/OpenChannelAvatar.js +0 -41
  820. package/cjs/ui/OpenchannelConversationHeader.js +0 -76
  821. package/cjs/ui/OpenchannelFileMessage.js +0 -253
  822. package/cjs/ui/OpenchannelOGMessage.js +0 -351
  823. package/cjs/ui/OpenchannelThumbnailMessage.js +0 -332
  824. package/cjs/ui/OpenchannelUserMessage.js +0 -279
  825. package/cjs/ui/PlaceHolder.js +0 -19
  826. package/cjs/ui/PlaybackTime.js +0 -35
  827. package/cjs/ui/QuoteMessage.js +0 -158
  828. package/cjs/ui/QuoteMessageInput.js +0 -99
  829. package/cjs/ui/ReactionBadge.js +0 -50
  830. package/cjs/ui/ReactionButton.js +0 -47
  831. package/cjs/ui/SortByRow.js +0 -43
  832. package/cjs/ui/TextButton.js +0 -29
  833. package/cjs/ui/TextMessageItemBody.js +0 -79
  834. package/cjs/ui/ThreadReplies.js +0 -85
  835. package/cjs/ui/ThumbnailMessageItemBody.js +0 -77
  836. package/cjs/ui/Toggle.js +0 -202
  837. package/cjs/ui/Tooltip.js +0 -27
  838. package/cjs/ui/UnknownMessageItemBody.js +0 -43
  839. package/cjs/ui/UserListItem.js +0 -133
  840. package/cjs/ui/UserProfile.js +0 -93
  841. package/cjs/ui/VoiceMessageItemBody.js +0 -119
  842. package/cjs/ui/VoiceMessgeInput.js +0 -22
  843. package/cjs/ui/Word.js +0 -107
  844. package/cjs/useDirtyGetMentions-2f9462f1.js +0 -77
  845. package/cjs/useDirtyGetMentions-2f9462f1.js.map +0 -1
  846. package/cjs/useLongPress-d2e3654f.js +0 -87
  847. package/cjs/useLongPress-d2e3654f.js.map +0 -1
  848. package/cjs/useSendbirdStateContext.js +0 -21
  849. package/cjs/utils/message/isVoiceMessage.js +0 -12
  850. package/cjs/utils-29b5d4dd.js +0 -6
  851. package/cjs/utils-29b5d4dd.js.map +0 -1
  852. package/cjs/utils-799ac906.js +0 -28
  853. package/cjs/utils-799ac906.js.map +0 -1
  854. package/cjs/utils-d19c24e7.js +0 -35
  855. package/cjs/utils-d19c24e7.js.map +0 -1
  856. package/cjs/utils-f4dc128f.js +0 -31
  857. package/cjs/utils-f4dc128f.js.map +0 -1
  858. package/cjs/uuid-3462be83.js +0 -15
  859. package/cjs/uuid-3462be83.js.map +0 -1
  860. package/cjs/withSendbird.js +0 -32
  861. package/color-10f2cc07.js +0 -34
  862. package/color-10f2cc07.js.map +0 -1
  863. package/compareIds-ccc43f55.js +0 -15
  864. package/compareIds-ccc43f55.js.map +0 -1
  865. package/const-767f4b57.js +0 -18
  866. package/const-767f4b57.js.map +0 -1
  867. package/const-890116eb.js +0 -13
  868. package/const-890116eb.js.map +0 -1
  869. package/consts-0aca4c3a.js +0 -4
  870. package/consts-0aca4c3a.js.map +0 -1
  871. package/consts-1f057d2b.js +0 -4
  872. package/consts-1f057d2b.js.map +0 -1
  873. package/consts-7e4768e1.js +0 -28
  874. package/consts-7e4768e1.js.map +0 -1
  875. package/consts-da1e0e7e.js +0 -4
  876. package/consts-da1e0e7e.js.map +0 -1
  877. package/context-d11ebc96.js +0 -13
  878. package/context-d11ebc96.js.map +0 -1
  879. package/dist/index.css +0 -7570
  880. package/dist/index.css.map +0 -1
  881. package/index-1d39c765.js +0 -1852
  882. package/index-1d39c765.js.map +0 -1
  883. package/index-1f96f97d.js +0 -76
  884. package/index-1f96f97d.js.map +0 -1
  885. package/index-2862f2a8.js +0 -320
  886. package/index-2862f2a8.js.map +0 -1
  887. package/index-343ce5b1.js +0 -154
  888. package/index-343ce5b1.js.map +0 -1
  889. package/index-5ad0eb61.js +0 -164
  890. package/index-5ad0eb61.js.map +0 -1
  891. package/index-5e5ae563.js +0 -540
  892. package/index-5e5ae563.js.map +0 -1
  893. package/index-63ad98b8.js +0 -7
  894. package/index-63ad98b8.js.map +0 -1
  895. package/index-73542816.js +0 -360
  896. package/index-73542816.js.map +0 -1
  897. package/index-bccf4a37.js +0 -51
  898. package/index-bccf4a37.js.map +0 -1
  899. package/index-c764dea7.js +0 -501
  900. package/index-c764dea7.js.map +0 -1
  901. package/index-cd1c87b8.js +0 -174
  902. package/index-cd1c87b8.js.map +0 -1
  903. package/index-e090ec3e.js +0 -187
  904. package/index-e090ec3e.js.map +0 -1
  905. package/index-e10c31c8.js +0 -110
  906. package/index-e10c31c8.js.map +0 -1
  907. package/index-ea2470a3.js +0 -118
  908. package/index-ea2470a3.js.map +0 -1
  909. package/index-eb11c99c.js +0 -450
  910. package/index-eb11c99c.js.map +0 -1
  911. package/index-f7ed4f21.js +0 -66
  912. package/index-f7ed4f21.js.map +0 -1
  913. package/index-ffea1bf6.js +0 -137
  914. package/index-ffea1bf6.js.map +0 -1
  915. package/index.d.ts +0 -2627
  916. package/index.js +0 -187
  917. package/index.module-44f80561.js +0 -4
  918. package/index.module-44f80561.js.map +0 -1
  919. package/resolvedReplyType-335fb072.js +0 -29
  920. package/resolvedReplyType-335fb072.js.map +0 -1
  921. package/sendbirdSelectors.js +0 -561
  922. package/stringSet-4a6632f7.js +0 -203
  923. package/stringSet-4a6632f7.js.map +0 -1
  924. package/tokenize-ad9d76bd.js +0 -159
  925. package/tokenize-ad9d76bd.js.map +0 -1
  926. package/topics-6de6eb25.js +0 -16
  927. package/topics-6de6eb25.js.map +0 -1
  928. package/types-9f55bf02.js +0 -15
  929. package/types-9f55bf02.js.map +0 -1
  930. package/ui/Accordion.js +0 -61
  931. package/ui/AccordionGroup.js +0 -23
  932. package/ui/AdminMessage.js +0 -25
  933. package/ui/Avatar.js +0 -194
  934. package/ui/Badge.js +0 -29
  935. package/ui/BottomSheet.js +0 -39
  936. package/ui/Button.js +0 -69
  937. package/ui/ChannelAvatar.js +0 -49
  938. package/ui/ConnectionStatus.js +0 -27
  939. package/ui/ContextMenu.js +0 -292
  940. package/ui/DateSeparator.js +0 -28
  941. package/ui/EmojiReactions.js +0 -329
  942. package/ui/FileMessageItemBody.js +0 -57
  943. package/ui/FileViewer.js +0 -128
  944. package/ui/IconButton.js +0 -43
  945. package/ui/Input.js +0 -45
  946. package/ui/Label.js +0 -5
  947. package/ui/LinkLabel.js +0 -50
  948. package/ui/MentionLabel.js +0 -91
  949. package/ui/MentionUserLabel.js +0 -21
  950. package/ui/MessageContent.js +0 -424
  951. package/ui/MessageInput.js +0 -838
  952. package/ui/MessageItemMenu.js +0 -156
  953. package/ui/MessageItemReactionMenu.js +0 -103
  954. package/ui/MessageSearchFileItem.js +0 -131
  955. package/ui/MessageSearchItem.js +0 -98
  956. package/ui/MessageStatus.js +0 -16
  957. package/ui/Modal.js +0 -121
  958. package/ui/OGMessageItemBody.js +0 -127
  959. package/ui/OpenChannelAdminMessage.js +0 -21
  960. package/ui/OpenChannelAvatar.js +0 -35
  961. package/ui/OpenchannelConversationHeader.js +0 -70
  962. package/ui/OpenchannelFileMessage.js +0 -247
  963. package/ui/OpenchannelOGMessage.js +0 -345
  964. package/ui/OpenchannelThumbnailMessage.js +0 -326
  965. package/ui/OpenchannelUserMessage.js +0 -273
  966. package/ui/PlaceHolder.js +0 -10
  967. package/ui/PlaybackTime.js +0 -26
  968. package/ui/QuoteMessage.js +0 -152
  969. package/ui/QuoteMessageInput.js +0 -93
  970. package/ui/ReactionBadge.js +0 -44
  971. package/ui/ReactionButton.js +0 -41
  972. package/ui/SortByRow.js +0 -37
  973. package/ui/TextButton.js +0 -23
  974. package/ui/TextMessageItemBody.js +0 -73
  975. package/ui/ThreadReplies.js +0 -79
  976. package/ui/ThumbnailMessageItemBody.js +0 -71
  977. package/ui/Toggle.js +0 -191
  978. package/ui/Tooltip.js +0 -21
  979. package/ui/UnknownMessageItemBody.js +0 -37
  980. package/ui/UserListItem.js +0 -127
  981. package/ui/UserProfile.js +0 -87
  982. package/ui/VoiceMessageItemBody.js +0 -110
  983. package/ui/VoiceMessgeInput.js +0 -14
  984. package/ui/Word.js +0 -101
  985. package/useDirtyGetMentions-b20104b0.js +0 -75
  986. package/useDirtyGetMentions-b20104b0.js.map +0 -1
  987. package/useLongPress-81ea622f.js +0 -85
  988. package/useLongPress-81ea622f.js.map +0 -1
  989. package/useSendbirdStateContext.js +0 -19
  990. package/utils/message/isVoiceMessage.js +0 -8
  991. package/utils-43a3a6c6.js +0 -29
  992. package/utils-43a3a6c6.js.map +0 -1
  993. package/utils-834dac5f.js +0 -4
  994. package/utils-834dac5f.js.map +0 -1
  995. package/utils-d062897c.js +0 -31
  996. package/utils-d062897c.js.map +0 -1
  997. package/utils-df79f9e8.js +0 -26
  998. package/utils-df79f9e8.js.map +0 -1
  999. package/uuid-79fbb889.js +0 -13
  1000. package/uuid-79fbb889.js.map +0 -1
  1001. package/withSendbird.js +0 -23
  1002. /package/{Channel → dist/Channel}/components/ChannelHeader.js.map +0 -0
  1003. /package/{Channel → dist/Channel}/components/ChannelUI.js.map +0 -0
  1004. /package/{Channel → dist/Channel}/components/FileViewer.js.map +0 -0
  1005. /package/{Channel → dist/Channel}/components/FrozenNotification.js.map +0 -0
  1006. /package/{Channel → dist/Channel}/components/Message.js.map +0 -0
  1007. /package/{Channel → dist/Channel}/components/MessageInput.js.map +0 -0
  1008. /package/{Channel → dist/Channel}/components/MessageList.js.map +0 -0
  1009. /package/{Channel → dist/Channel}/components/RemoveMessageModal.js.map +0 -0
  1010. /package/{Channel → dist/Channel}/components/SuggestedMentionList.js.map +0 -0
  1011. /package/{Channel → dist/Channel}/components/TypingIndicator.js.map +0 -0
  1012. /package/{Channel → dist/Channel}/components/UnreadCount.js.map +0 -0
  1013. /package/{Channel → dist/Channel}/context.js.map +0 -0
  1014. /package/{Channel.js.map → dist/Channel.js.map} +0 -0
  1015. /package/{ChannelList → dist/ChannelList}/components/AddChannel.js.map +0 -0
  1016. /package/{ChannelList → dist/ChannelList}/components/ChannelListHeader.js.map +0 -0
  1017. /package/{ChannelList → dist/ChannelList}/components/ChannelListUI.js.map +0 -0
  1018. /package/{ChannelList → dist/ChannelList}/components/ChannelPreview.js.map +0 -0
  1019. /package/{ChannelList → dist/ChannelList}/components/ChannelPreviewAction.js.map +0 -0
  1020. /package/{ChannelList → dist/ChannelList}/context.js.map +0 -0
  1021. /package/{ChannelList.js.map → dist/ChannelList.js.map} +0 -0
  1022. /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelProfile.js.map +0 -0
  1023. /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelSettingsUI.js.map +0 -0
  1024. /package/{ChannelSettings → dist/ChannelSettings}/components/EditDetailsModal.js.map +0 -0
  1025. /package/{ChannelSettings → dist/ChannelSettings}/components/LeaveChannel.js.map +0 -0
  1026. /package/{ChannelSettings → dist/ChannelSettings}/components/ModerationPanel.js.map +0 -0
  1027. /package/{ChannelSettings → dist/ChannelSettings}/components/UserListItem.js.map +0 -0
  1028. /package/{ChannelSettings → dist/ChannelSettings}/components/UserPanel.js.map +0 -0
  1029. /package/{ChannelSettings → dist/ChannelSettings}/context.js.map +0 -0
  1030. /package/{ChannelSettings.js.map → dist/ChannelSettings.js.map} +0 -0
  1031. /package/{CreateChannel → dist/CreateChannel}/components/CreateChannelUI.js.map +0 -0
  1032. /package/{CreateChannel → dist/CreateChannel}/components/InviteUsers.js.map +0 -0
  1033. /package/{CreateChannel → dist/CreateChannel}/components/SelectChannelType.js.map +0 -0
  1034. /package/{CreateChannel → dist/CreateChannel}/context.js.map +0 -0
  1035. /package/{CreateChannel.js.map → dist/CreateChannel.js.map} +0 -0
  1036. /package/{CreateOpenChannel → dist/CreateOpenChannel}/components/CreateOpenChannelUI.js.map +0 -0
  1037. /package/{CreateOpenChannel → dist/CreateOpenChannel}/context.js.map +0 -0
  1038. /package/{CreateOpenChannel.js.map → dist/CreateOpenChannel.js.map} +0 -0
  1039. /package/{EditUserProfile → dist/EditUserProfile}/components/EditUserProfileUI.js.map +0 -0
  1040. /package/{EditUserProfile → dist/EditUserProfile}/context.js +0 -0
  1041. /package/{EditUserProfile → dist/EditUserProfile}/context.js.map +0 -0
  1042. /package/{EditUserProfile.js.map → dist/EditUserProfile.js.map} +0 -0
  1043. /package/{Message → dist/Message}/context.js +0 -0
  1044. /package/{Message → dist/Message}/context.js.map +0 -0
  1045. /package/{MessageSearch → dist/MessageSearch}/components/MessageSearchUI.js.map +0 -0
  1046. /package/{MessageSearch → dist/MessageSearch}/context.js.map +0 -0
  1047. /package/{MessageSearch.js.map → dist/MessageSearch.js.map} +0 -0
  1048. /package/{OpenChannel → dist/OpenChannel}/components/FrozenChannelNotification.js.map +0 -0
  1049. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelHeader.js.map +0 -0
  1050. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelInput.js.map +0 -0
  1051. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelMessage.js.map +0 -0
  1052. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelMessageList.js.map +0 -0
  1053. /package/{OpenChannel → dist/OpenChannel}/components/OpenChannelUI.js.map +0 -0
  1054. /package/{OpenChannel → dist/OpenChannel}/context.js.map +0 -0
  1055. /package/{OpenChannel.js.map → dist/OpenChannel.js.map} +0 -0
  1056. /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelListUI.js.map +0 -0
  1057. /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelPreview.js.map +0 -0
  1058. /package/{OpenChannelList → dist/OpenChannelList}/context.js.map +0 -0
  1059. /package/{OpenChannelList.js.map → dist/OpenChannelList.js.map} +0 -0
  1060. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/EditDetailsModal.js.map +0 -0
  1061. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelProfile.js.map +0 -0
  1062. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelSettingsUI.js.map +0 -0
  1063. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OperatorUI.js.map +0 -0
  1064. /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/ParticipantUI.js.map +0 -0
  1065. /package/{OpenChannelSettings → dist/OpenChannelSettings}/context.js.map +0 -0
  1066. /package/{OpenChannelSettings.js.map → dist/OpenChannelSettings.js.map} +0 -0
  1067. /package/{Thread → dist/Thread}/components/ParentMessageInfo.js.map +0 -0
  1068. /package/{Thread → dist/Thread}/components/ParentMessageInfoItem.js.map +0 -0
  1069. /package/{Thread → dist/Thread}/components/ThreadHeader.js.map +0 -0
  1070. /package/{Thread → dist/Thread}/components/ThreadList.js.map +0 -0
  1071. /package/{Thread → dist/Thread}/components/ThreadListItem.js.map +0 -0
  1072. /package/{Thread → dist/Thread}/components/ThreadMessageInput.js.map +0 -0
  1073. /package/{Thread → dist/Thread}/components/ThreadUI.js.map +0 -0
  1074. /package/{Thread → dist/Thread}/context/types.js +0 -0
  1075. /package/{Thread → dist/Thread}/context/types.js.map +0 -0
  1076. /package/{Thread → dist/Thread}/context.js.map +0 -0
  1077. /package/{Thread.js.map → dist/Thread.js.map} +0 -0
  1078. /package/{VoicePlayer → dist/VoicePlayer}/context.js.map +0 -0
  1079. /package/{VoicePlayer → dist/VoicePlayer}/useVoicePlayer.js.map +0 -0
  1080. /package/{VoiceRecorder → dist/VoiceRecorder}/context.js.map +0 -0
  1081. /package/{VoiceRecorder → dist/VoiceRecorder}/useVoiceRecorder.js.map +0 -0
  1082. /package/{cjs → dist/cjs}/Channel/components/ChannelHeader.js.map +0 -0
  1083. /package/{cjs → dist/cjs}/Channel/components/ChannelUI.js.map +0 -0
  1084. /package/{cjs → dist/cjs}/Channel/components/FileViewer.js.map +0 -0
  1085. /package/{cjs → dist/cjs}/Channel/components/FrozenNotification.js.map +0 -0
  1086. /package/{cjs → dist/cjs}/Channel/components/Message.js.map +0 -0
  1087. /package/{cjs → dist/cjs}/Channel/components/MessageInput.js.map +0 -0
  1088. /package/{cjs → dist/cjs}/Channel/components/MessageList.js.map +0 -0
  1089. /package/{cjs → dist/cjs}/Channel/components/RemoveMessageModal.js.map +0 -0
  1090. /package/{cjs → dist/cjs}/Channel/components/SuggestedMentionList.js.map +0 -0
  1091. /package/{cjs → dist/cjs}/Channel/components/TypingIndicator.js.map +0 -0
  1092. /package/{cjs → dist/cjs}/Channel/components/UnreadCount.js.map +0 -0
  1093. /package/{cjs → dist/cjs}/Channel/context.js.map +0 -0
  1094. /package/{cjs → dist/cjs}/Channel.js.map +0 -0
  1095. /package/{cjs → dist/cjs}/ChannelList/components/AddChannel.js.map +0 -0
  1096. /package/{cjs → dist/cjs}/ChannelList/components/ChannelListHeader.js.map +0 -0
  1097. /package/{cjs → dist/cjs}/ChannelList/components/ChannelListUI.js.map +0 -0
  1098. /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreview.js.map +0 -0
  1099. /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreviewAction.js.map +0 -0
  1100. /package/{cjs → dist/cjs}/ChannelList/context.js.map +0 -0
  1101. /package/{cjs → dist/cjs}/ChannelList.js.map +0 -0
  1102. /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelProfile.js.map +0 -0
  1103. /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelSettingsUI.js.map +0 -0
  1104. /package/{cjs → dist/cjs}/ChannelSettings/components/EditDetailsModal.js.map +0 -0
  1105. /package/{cjs → dist/cjs}/ChannelSettings/components/LeaveChannel.js.map +0 -0
  1106. /package/{cjs → dist/cjs}/ChannelSettings/components/ModerationPanel.js.map +0 -0
  1107. /package/{cjs → dist/cjs}/ChannelSettings/components/UserListItem.js.map +0 -0
  1108. /package/{cjs → dist/cjs}/ChannelSettings/components/UserPanel.js.map +0 -0
  1109. /package/{cjs → dist/cjs}/ChannelSettings/context.js.map +0 -0
  1110. /package/{cjs → dist/cjs}/ChannelSettings.js.map +0 -0
  1111. /package/{cjs → dist/cjs}/CreateChannel/components/CreateChannelUI.js.map +0 -0
  1112. /package/{cjs → dist/cjs}/CreateChannel/components/InviteUsers.js.map +0 -0
  1113. /package/{cjs → dist/cjs}/CreateChannel/components/SelectChannelType.js.map +0 -0
  1114. /package/{cjs → dist/cjs}/CreateChannel/context.js.map +0 -0
  1115. /package/{cjs → dist/cjs}/CreateChannel.js.map +0 -0
  1116. /package/{cjs → dist/cjs}/CreateOpenChannel/components/CreateOpenChannelUI.js.map +0 -0
  1117. /package/{cjs → dist/cjs}/CreateOpenChannel/context.js.map +0 -0
  1118. /package/{cjs → dist/cjs}/CreateOpenChannel.js.map +0 -0
  1119. /package/{cjs → dist/cjs}/EditUserProfile/components/EditUserProfileUI.js.map +0 -0
  1120. /package/{cjs → dist/cjs}/EditUserProfile/context.js +0 -0
  1121. /package/{cjs → dist/cjs}/EditUserProfile/context.js.map +0 -0
  1122. /package/{cjs → dist/cjs}/EditUserProfile.js.map +0 -0
  1123. /package/{cjs → dist/cjs}/Message/context.js +0 -0
  1124. /package/{cjs → dist/cjs}/Message/context.js.map +0 -0
  1125. /package/{cjs → dist/cjs}/MessageSearch/components/MessageSearchUI.js.map +0 -0
  1126. /package/{cjs → dist/cjs}/MessageSearch/context.js.map +0 -0
  1127. /package/{cjs → dist/cjs}/MessageSearch.js.map +0 -0
  1128. /package/{cjs → dist/cjs}/OpenChannel/components/FrozenChannelNotification.js.map +0 -0
  1129. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelHeader.js.map +0 -0
  1130. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelInput.js.map +0 -0
  1131. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelMessage.js.map +0 -0
  1132. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelMessageList.js.map +0 -0
  1133. /package/{cjs → dist/cjs}/OpenChannel/components/OpenChannelUI.js.map +0 -0
  1134. /package/{cjs → dist/cjs}/OpenChannel/context.js.map +0 -0
  1135. /package/{cjs → dist/cjs}/OpenChannel.js.map +0 -0
  1136. /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelListUI.js.map +0 -0
  1137. /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelPreview.js.map +0 -0
  1138. /package/{cjs → dist/cjs}/OpenChannelList/context.js.map +0 -0
  1139. /package/{cjs → dist/cjs}/OpenChannelList.js.map +0 -0
  1140. /package/{cjs → dist/cjs}/OpenChannelSettings/components/EditDetailsModal.js.map +0 -0
  1141. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelProfile.js.map +0 -0
  1142. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +0 -0
  1143. /package/{cjs → dist/cjs}/OpenChannelSettings/components/OperatorUI.js.map +0 -0
  1144. /package/{cjs → dist/cjs}/OpenChannelSettings/components/ParticipantUI.js.map +0 -0
  1145. /package/{cjs → dist/cjs}/OpenChannelSettings/context.js.map +0 -0
  1146. /package/{cjs → dist/cjs}/OpenChannelSettings.js.map +0 -0
  1147. /package/{cjs → dist/cjs}/Thread/components/ParentMessageInfo.js.map +0 -0
  1148. /package/{cjs → dist/cjs}/Thread/components/ParentMessageInfoItem.js.map +0 -0
  1149. /package/{cjs → dist/cjs}/Thread/components/ThreadHeader.js.map +0 -0
  1150. /package/{cjs → dist/cjs}/Thread/components/ThreadList.js.map +0 -0
  1151. /package/{cjs → dist/cjs}/Thread/components/ThreadListItem.js.map +0 -0
  1152. /package/{cjs → dist/cjs}/Thread/components/ThreadMessageInput.js.map +0 -0
  1153. /package/{cjs → dist/cjs}/Thread/components/ThreadUI.js.map +0 -0
  1154. /package/{cjs → dist/cjs}/Thread/context/types.js +0 -0
  1155. /package/{cjs → dist/cjs}/Thread/context/types.js.map +0 -0
  1156. /package/{cjs → dist/cjs}/Thread/context.js.map +0 -0
  1157. /package/{cjs → dist/cjs}/Thread.js.map +0 -0
  1158. /package/{cjs → dist/cjs}/VoicePlayer/context.js.map +0 -0
  1159. /package/{cjs → dist/cjs}/VoicePlayer/useVoicePlayer.js.map +0 -0
  1160. /package/{cjs → dist/cjs}/VoiceRecorder/context.js.map +0 -0
  1161. /package/{cjs → dist/cjs}/VoiceRecorder/useVoiceRecorder.js.map +0 -0
  1162. /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js +0 -0
  1163. /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js.map +0 -0
  1164. /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js +0 -0
  1165. /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js.map +0 -0
  1166. /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js +0 -0
  1167. /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js.map +0 -0
  1168. /package/{cjs → dist/cjs}/handlers/SessionHandler.js +0 -0
  1169. /package/{cjs → dist/cjs}/handlers/SessionHandler.js.map +0 -0
  1170. /package/{cjs → dist/cjs}/handlers/UserEventHandler.js +0 -0
  1171. /package/{cjs → dist/cjs}/handlers/UserEventHandler.js.map +0 -0
  1172. /package/{cjs → dist/cjs}/index.js.map +0 -0
  1173. /package/{cjs → dist/cjs}/lame.all.js +0 -0
  1174. /package/{cjs → dist/cjs}/lame.all.js.map +0 -0
  1175. /package/{cjs → dist/cjs}/sendbirdSelectors.js.map +0 -0
  1176. /package/{cjs → dist/cjs}/ui/Accordion.js.map +0 -0
  1177. /package/{cjs → dist/cjs}/ui/AccordionGroup.js.map +0 -0
  1178. /package/{cjs → dist/cjs}/ui/AdminMessage.js.map +0 -0
  1179. /package/{cjs → dist/cjs}/ui/Avatar.js.map +0 -0
  1180. /package/{cjs → dist/cjs}/ui/Badge.js.map +0 -0
  1181. /package/{cjs → dist/cjs}/ui/BottomSheet.js.map +0 -0
  1182. /package/{cjs → dist/cjs}/ui/Button.js.map +0 -0
  1183. /package/{cjs → dist/cjs}/ui/ChannelAvatar.js.map +0 -0
  1184. /package/{cjs → dist/cjs}/ui/Checkbox.js +0 -0
  1185. /package/{cjs → dist/cjs}/ui/Checkbox.js.map +0 -0
  1186. /package/{cjs → dist/cjs}/ui/ConnectionStatus.js.map +0 -0
  1187. /package/{cjs → dist/cjs}/ui/ContextMenu.js.map +0 -0
  1188. /package/{cjs → dist/cjs}/ui/DateSeparator.js.map +0 -0
  1189. /package/{cjs → dist/cjs}/ui/EmojiReactions.js.map +0 -0
  1190. /package/{cjs → dist/cjs}/ui/FileMessageItemBody.js.map +0 -0
  1191. /package/{cjs → dist/cjs}/ui/FileViewer.js.map +0 -0
  1192. /package/{cjs → dist/cjs}/ui/Icon.js +0 -0
  1193. /package/{cjs → dist/cjs}/ui/Icon.js.map +0 -0
  1194. /package/{cjs → dist/cjs}/ui/IconButton.js.map +0 -0
  1195. /package/{cjs → dist/cjs}/ui/ImageRenderer.js +0 -0
  1196. /package/{cjs → dist/cjs}/ui/ImageRenderer.js.map +0 -0
  1197. /package/{cjs → dist/cjs}/ui/Input.js.map +0 -0
  1198. /package/{cjs → dist/cjs}/ui/Label.js.map +0 -0
  1199. /package/{cjs → dist/cjs}/ui/LinkLabel.js.map +0 -0
  1200. /package/{cjs → dist/cjs}/ui/Loader.js +0 -0
  1201. /package/{cjs → dist/cjs}/ui/Loader.js.map +0 -0
  1202. /package/{cjs → dist/cjs}/ui/MentionLabel.js.map +0 -0
  1203. /package/{cjs → dist/cjs}/ui/MentionUserLabel.js.map +0 -0
  1204. /package/{cjs → dist/cjs}/ui/MessageContent.js.map +0 -0
  1205. /package/{cjs → dist/cjs}/ui/MessageInput.js.map +0 -0
  1206. /package/{cjs → dist/cjs}/ui/MessageItemMenu.js.map +0 -0
  1207. /package/{cjs → dist/cjs}/ui/MessageItemReactionMenu.js.map +0 -0
  1208. /package/{cjs → dist/cjs}/ui/MessageSearchFileItem.js.map +0 -0
  1209. /package/{cjs → dist/cjs}/ui/MessageSearchItem.js.map +0 -0
  1210. /package/{cjs → dist/cjs}/ui/MessageStatus.js.map +0 -0
  1211. /package/{cjs → dist/cjs}/ui/Modal.js.map +0 -0
  1212. /package/{cjs → dist/cjs}/ui/MutedAvatarOverlay.js +0 -0
  1213. /package/{cjs → dist/cjs}/ui/MutedAvatarOverlay.js.map +0 -0
  1214. /package/{cjs → dist/cjs}/ui/OGMessageItemBody.js.map +0 -0
  1215. /package/{cjs → dist/cjs}/ui/OpenChannelAdminMessage.js.map +0 -0
  1216. /package/{cjs → dist/cjs}/ui/OpenChannelAvatar.js.map +0 -0
  1217. /package/{cjs → dist/cjs}/ui/OpenchannelConversationHeader.js.map +0 -0
  1218. /package/{cjs → dist/cjs}/ui/OpenchannelFileMessage.js.map +0 -0
  1219. /package/{cjs → dist/cjs}/ui/OpenchannelOGMessage.js.map +0 -0
  1220. /package/{cjs → dist/cjs}/ui/OpenchannelThumbnailMessage.js.map +0 -0
  1221. /package/{cjs → dist/cjs}/ui/OpenchannelUserMessage.js.map +0 -0
  1222. /package/{cjs → dist/cjs}/ui/PlaceHolder.js.map +0 -0
  1223. /package/{cjs → dist/cjs}/ui/PlaybackTime.js.map +0 -0
  1224. /package/{cjs → dist/cjs}/ui/ProgressBar.js +0 -0
  1225. /package/{cjs → dist/cjs}/ui/ProgressBar.js.map +0 -0
  1226. /package/{cjs → dist/cjs}/ui/QuoteMessage.js.map +0 -0
  1227. /package/{cjs → dist/cjs}/ui/QuoteMessageInput.js.map +0 -0
  1228. /package/{cjs → dist/cjs}/ui/ReactionBadge.js.map +0 -0
  1229. /package/{cjs → dist/cjs}/ui/ReactionButton.js.map +0 -0
  1230. /package/{cjs → dist/cjs}/ui/SortByRow.js.map +0 -0
  1231. /package/{cjs → dist/cjs}/ui/TextButton.js.map +0 -0
  1232. /package/{cjs → dist/cjs}/ui/TextMessageItemBody.js.map +0 -0
  1233. /package/{cjs → dist/cjs}/ui/ThreadReplies.js.map +0 -0
  1234. /package/{cjs → dist/cjs}/ui/ThumbnailMessageItemBody.js.map +0 -0
  1235. /package/{cjs → dist/cjs}/ui/Toggle.js.map +0 -0
  1236. /package/{cjs → dist/cjs}/ui/Tooltip.js.map +0 -0
  1237. /package/{cjs → dist/cjs}/ui/TooltipWrapper.js +0 -0
  1238. /package/{cjs → dist/cjs}/ui/TooltipWrapper.js.map +0 -0
  1239. /package/{cjs → dist/cjs}/ui/UnknownMessageItemBody.js.map +0 -0
  1240. /package/{cjs → dist/cjs}/ui/UserListItem.js.map +0 -0
  1241. /package/{cjs → dist/cjs}/ui/UserProfile.js.map +0 -0
  1242. /package/{cjs → dist/cjs}/ui/VoiceMessageItemBody.js.map +0 -0
  1243. /package/{cjs → dist/cjs}/ui/VoiceMessgeInput.js.map +0 -0
  1244. /package/{cjs → dist/cjs}/ui/Word.js.map +0 -0
  1245. /package/{cjs → dist/cjs}/useSendbirdStateContext.js.map +0 -0
  1246. /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js +0 -0
  1247. /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js.map +0 -0
  1248. /package/{cjs → dist/cjs}/utils/message/isVoiceMessage.js.map +0 -0
  1249. /package/{cjs → dist/cjs}/withSendbird.js.map +0 -0
  1250. /package/{handlers → dist/handlers}/ConnectionHandler.js +0 -0
  1251. /package/{handlers → dist/handlers}/ConnectionHandler.js.map +0 -0
  1252. /package/{handlers → dist/handlers}/GroupChannelHandler.js +0 -0
  1253. /package/{handlers → dist/handlers}/GroupChannelHandler.js.map +0 -0
  1254. /package/{handlers → dist/handlers}/OpenChannelHandler.js +0 -0
  1255. /package/{handlers → dist/handlers}/OpenChannelHandler.js.map +0 -0
  1256. /package/{handlers → dist/handlers}/SessionHandler.js +0 -0
  1257. /package/{handlers → dist/handlers}/SessionHandler.js.map +0 -0
  1258. /package/{handlers → dist/handlers}/UserEventHandler.js +0 -0
  1259. /package/{handlers → dist/handlers}/UserEventHandler.js.map +0 -0
  1260. /package/{index.js.map → dist/index.js.map} +0 -0
  1261. /package/{lame.all.js → dist/lame.all.js} +0 -0
  1262. /package/{lame.all.js.map → dist/lame.all.js.map} +0 -0
  1263. /package/{sendbirdSelectors.js.map → dist/sendbirdSelectors.js.map} +0 -0
  1264. /package/{ui → dist/ui}/Accordion.js.map +0 -0
  1265. /package/{ui → dist/ui}/AccordionGroup.js.map +0 -0
  1266. /package/{ui → dist/ui}/AdminMessage.js.map +0 -0
  1267. /package/{ui → dist/ui}/Avatar.js.map +0 -0
  1268. /package/{ui → dist/ui}/Badge.js.map +0 -0
  1269. /package/{ui → dist/ui}/BottomSheet.js.map +0 -0
  1270. /package/{ui → dist/ui}/Button.js.map +0 -0
  1271. /package/{ui → dist/ui}/ChannelAvatar.js.map +0 -0
  1272. /package/{ui → dist/ui}/Checkbox.js +0 -0
  1273. /package/{ui → dist/ui}/Checkbox.js.map +0 -0
  1274. /package/{ui → dist/ui}/ConnectionStatus.js.map +0 -0
  1275. /package/{ui → dist/ui}/ContextMenu.js.map +0 -0
  1276. /package/{ui → dist/ui}/DateSeparator.js.map +0 -0
  1277. /package/{ui → dist/ui}/EmojiReactions.js.map +0 -0
  1278. /package/{ui → dist/ui}/FileMessageItemBody.js.map +0 -0
  1279. /package/{ui → dist/ui}/FileViewer.js.map +0 -0
  1280. /package/{ui → dist/ui}/Icon.js +0 -0
  1281. /package/{ui → dist/ui}/Icon.js.map +0 -0
  1282. /package/{ui → dist/ui}/IconButton.js.map +0 -0
  1283. /package/{ui → dist/ui}/ImageRenderer.js +0 -0
  1284. /package/{ui → dist/ui}/ImageRenderer.js.map +0 -0
  1285. /package/{ui → dist/ui}/Input.js.map +0 -0
  1286. /package/{ui → dist/ui}/Label.js.map +0 -0
  1287. /package/{ui → dist/ui}/LinkLabel.js.map +0 -0
  1288. /package/{ui → dist/ui}/Loader.js +0 -0
  1289. /package/{ui → dist/ui}/Loader.js.map +0 -0
  1290. /package/{ui → dist/ui}/MentionLabel.js.map +0 -0
  1291. /package/{ui → dist/ui}/MentionUserLabel.js.map +0 -0
  1292. /package/{ui → dist/ui}/MessageContent.js.map +0 -0
  1293. /package/{ui → dist/ui}/MessageInput.js.map +0 -0
  1294. /package/{ui → dist/ui}/MessageItemMenu.js.map +0 -0
  1295. /package/{ui → dist/ui}/MessageItemReactionMenu.js.map +0 -0
  1296. /package/{ui → dist/ui}/MessageSearchFileItem.js.map +0 -0
  1297. /package/{ui → dist/ui}/MessageSearchItem.js.map +0 -0
  1298. /package/{ui → dist/ui}/MessageStatus.js.map +0 -0
  1299. /package/{ui → dist/ui}/Modal.js.map +0 -0
  1300. /package/{ui → dist/ui}/MutedAvatarOverlay.js +0 -0
  1301. /package/{ui → dist/ui}/MutedAvatarOverlay.js.map +0 -0
  1302. /package/{ui → dist/ui}/OGMessageItemBody.js.map +0 -0
  1303. /package/{ui → dist/ui}/OpenChannelAdminMessage.js.map +0 -0
  1304. /package/{ui → dist/ui}/OpenChannelAvatar.js.map +0 -0
  1305. /package/{ui → dist/ui}/OpenchannelConversationHeader.js.map +0 -0
  1306. /package/{ui → dist/ui}/OpenchannelFileMessage.js.map +0 -0
  1307. /package/{ui → dist/ui}/OpenchannelOGMessage.js.map +0 -0
  1308. /package/{ui → dist/ui}/OpenchannelThumbnailMessage.js.map +0 -0
  1309. /package/{ui → dist/ui}/OpenchannelUserMessage.js.map +0 -0
  1310. /package/{ui → dist/ui}/PlaceHolder.js.map +0 -0
  1311. /package/{ui → dist/ui}/PlaybackTime.js.map +0 -0
  1312. /package/{ui → dist/ui}/ProgressBar.js +0 -0
  1313. /package/{ui → dist/ui}/ProgressBar.js.map +0 -0
  1314. /package/{ui → dist/ui}/QuoteMessage.js.map +0 -0
  1315. /package/{ui → dist/ui}/QuoteMessageInput.js.map +0 -0
  1316. /package/{ui → dist/ui}/ReactionBadge.js.map +0 -0
  1317. /package/{ui → dist/ui}/ReactionButton.js.map +0 -0
  1318. /package/{ui → dist/ui}/SortByRow.js.map +0 -0
  1319. /package/{ui → dist/ui}/TextButton.js.map +0 -0
  1320. /package/{ui → dist/ui}/TextMessageItemBody.js.map +0 -0
  1321. /package/{ui → dist/ui}/ThreadReplies.js.map +0 -0
  1322. /package/{ui → dist/ui}/ThumbnailMessageItemBody.js.map +0 -0
  1323. /package/{ui → dist/ui}/Toggle.js.map +0 -0
  1324. /package/{ui → dist/ui}/Tooltip.js.map +0 -0
  1325. /package/{ui → dist/ui}/TooltipWrapper.js +0 -0
  1326. /package/{ui → dist/ui}/TooltipWrapper.js.map +0 -0
  1327. /package/{ui → dist/ui}/UnknownMessageItemBody.js.map +0 -0
  1328. /package/{ui → dist/ui}/UserListItem.js.map +0 -0
  1329. /package/{ui → dist/ui}/UserProfile.js.map +0 -0
  1330. /package/{ui → dist/ui}/VoiceMessageItemBody.js.map +0 -0
  1331. /package/{ui → dist/ui}/VoiceMessgeInput.js.map +0 -0
  1332. /package/{ui → dist/ui}/Word.js.map +0 -0
  1333. /package/{useSendbirdStateContext.js.map → dist/useSendbirdStateContext.js.map} +0 -0
  1334. /package/{utils → dist/utils}/message/getOutgoingMessageState.js +0 -0
  1335. /package/{utils → dist/utils}/message/getOutgoingMessageState.js.map +0 -0
  1336. /package/{utils → dist/utils}/message/isVoiceMessage.js.map +0 -0
  1337. /package/{withSendbird.js.map → dist/withSendbird.js.map} +0 -0
@@ -0,0 +1,1287 @@
1
+ # Changelog - v3
2
+
3
+ ## [v3.6.4] (July 19 2023)
4
+ ### Feat:
5
+ * Created a separate package.json for CommonJS (cjs) module during build time. This package.json is located under dist/cjs directory. (#687)
6
+ * Added a new prop `isUserIdUsedForNickname` to the public interface. This prop allows using the userId as the nickname. (#683)
7
+
8
+ ### Fixes:
9
+ * Fixed 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)
10
+ * Verified the fetched message list size with the requested size of the MessageListParams. Added a test case for verifying the fetched message list size. (#686)
11
+ * Addressed the incorrect cjs path in package.json. The common js module path in the pacakge.json has been fixed. (#685)
12
+
13
+
14
+ ## [v3.6.3] (July 6 2023)
15
+ ### Feat:
16
+ * Add new scrollBehavior prop to Channel (#676)
17
+ The default option is set to "auto," preserving the existing scroll behavior.
18
+ Possible to set smooth for smooth scroll effect.
19
+
20
+ ### Fixes:
21
+ * Move message list scroll when the last message is edited (#674)
22
+ Added optional parameters to moveScroll to scroll only when the last message reaches the bottom.
23
+ Scroll is now moved only when the updatedAt property of the last message is changed.
24
+ * Add missing `UIKitConfig` to type definition (#677)
25
+ Reported by [GitHub PR #650](https://github.com/sendbird/sendbird-uikit-react/pull/650#issuecomment-1622331367).
26
+
27
+ ## [v3.6.2] (June 30 2023)
28
+
29
+ ### Fixes:
30
+ * UIKit@3.6.0 build error on CRA (#668)
31
+ UIKit@3.6.0 wouldnt work by default on CRA
32
+ because of module resolution error on uikit-tools
33
+ This is fixed in uikit-tools, and released in 40.alpha
34
+ see: https://github.com/sendbird/sendbird-uikit-core-ts/pull/55
35
+ * Improve invitation modal submit btn disable condition
36
+ Modify the invitation modal disable condition to not include the
37
+ logged-in user for the user counting logic
38
+
39
+ ## [v3.6.1] (June 30 2023)
40
+
41
+ ### Feat:
42
+ * Enable channel creation when no user present to select
43
+ If there are no users in the channel creation menu,
44
+ User still get to create an empty channel with themselves
45
+ * Mobile: Keep keyboard open after sending the message
46
+
47
+ ### Fixes:
48
+ * Update @sendbird/uikit-tools to 0.0.1-alpha.39
49
+ alpha.39 has CJS support, otherwise, UIKit wont work
50
+ on next-js page router
51
+
52
+ ### Chore:
53
+ * Update all examples to V4 + StackBlitz
54
+ * Update all sample code to V4
55
+ * Convert CodeSandbox to StackBlitz
56
+ * Render all examples with Vite
57
+ * Thanks @tylerhammer
58
+
59
+ ## [v3.6.0] (June 28 2023)
60
+
61
+ ### Feat:
62
+ * Official support for Feature Configuration
63
+ - 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)
64
+ - The minimum `@sendbird/chat` version has been increased to 4.9.2.
65
+ ```jsx
66
+ <SendbirdProvider
67
+ uikitOptions={{
68
+ common: {
69
+ enableUsingDefaultUserProfile: true,
70
+ },
71
+ groupChannel: {
72
+ enableMention: false,
73
+ enableOgtag: true,
74
+ enableReaction: true,
75
+ enableTypingIndicator: true,
76
+ input: {
77
+ camera: {
78
+ enablePhoto: true,
79
+ enableVideo: true,
80
+ },
81
+ gallery: {
82
+ enablePhoto: true,
83
+ enableVideo: true,
84
+ },
85
+ enableDocument: true,
86
+ },
87
+ },
88
+ groupChannelList: {
89
+ enableTypingIndicator: true,
90
+ enableMessageReceiptStatus: true,
91
+ },
92
+ groupChannelSettings: {
93
+ enableMessageSearch: true,
94
+ },
95
+ openChannel: {
96
+ enableOgtag: true,
97
+ input: {
98
+ camera: {
99
+ enablePhoto: true,
100
+ enableVideo: true,
101
+ },
102
+ gallery: {
103
+ enablePhoto: true,
104
+ enableVideo: true,
105
+ },
106
+ enableDocument: true,
107
+ },
108
+ },
109
+ }}
110
+ />
111
+ ```
112
+
113
+ ## [v3.5.2] (June 23 2023)
114
+
115
+ Fixes:
116
+ * Allow to reduce the mobile app height
117
+ It was not able to reduce the height of the mobile app with some wrapper components
118
+ * Do not display the UnreadCount(new message notification) comp when unreadSince is null
119
+ * Improve sampling and bitrate of Voice Recording
120
+ * sampling rate: 11025
121
+ * bit rate: 12000
122
+ * Move scroll every time when message height changes
123
+ It moved scroll only when the last message height changes
124
+
125
+ ## [v3.5.1] (June 15 2023)
126
+
127
+ Fixes:
128
+ * Set fallback values \w global configs in App comp
129
+ * Use global config's replyType if channel one is undefined
130
+ * Use global disableUserProfile if each context's one is defined
131
+ * Clear `scrollBottom` on channel state loading
132
+ * Fixes a runtime error
133
+ caused by clicking "Reply in thread" menu from a parent message
134
+ * Check if the `message.type` property is empty
135
+ and return false when it is empty in the isVoiceMessage function
136
+
137
+ ## [v3.5.0] (June 14 2023)
138
+
139
+ ### Feat:
140
+ * Mobile Browser UX Revamp
141
+ We have revamped the UX to support mobile devices -
142
+ * Revamped Modals
143
+ * Revamped Context Menu -> Long press to open context menu
144
+ * Revamped Message Input
145
+
146
+ This feature is disabled by default. To enable this feature, add the following prop to `SendBirdProvider` & `App` component.
147
+ ```javascript
148
+ breakpoint?: string | boolean
149
+ ```
150
+
151
+ Example:
152
+ ```javascript
153
+ <SendBirdProvider breakpoint="768px">
154
+ ```
155
+ ```javascript
156
+ const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
157
+ return (
158
+ <SendbirdProvider breakpoint={isMobile} />
159
+ {
160
+ isMobile
161
+ ? <MobileChatLayout />
162
+ : <DesktopChatLayout />
163
+ }
164
+ </SendbirdProvider>
165
+ )
166
+ ```
167
+
168
+ Other props:
169
+ * SendbirdProvider?.onUserProfileMessage?: (channel: GroupChannel) => void
170
+ Callback for handling when user sends a user profile message.
171
+ * Channel?.onBackClick?: () => void
172
+ Callback for handling when user clicks on back button in channel.
173
+ This is only applicable for mobile devices.
174
+
175
+ * Configure UIKit through Dashboard(not released yet)
176
+ We are doing groundwork to support configuring UIKit through
177
+ the dashboard. This will allow you to configure UIKit without
178
+ having to add props to each component. This feature *will not* be a
179
+ breaking change and will be backwards compatible.
180
+
181
+ ### Chore:
182
+ * TSC error in typescript sample
183
+ * Samples -> Upgrade vite to 4.3.9
184
+
185
+ ### Fixes:
186
+ * Connection
187
+ * Disconnect SDK on Sendbird provider component unmount
188
+ * Message
189
+ * Desktop - allow text select on Labels
190
+ * Remove loading placeholder on ThumbnailMessage
191
+ * OGMessage width overflow while adding reaction
192
+ * Center align & remove ellipsis from admin message
193
+ * Voice Message
194
+ * Hide download option for voice message
195
+ * Show warning when there is no voice recording permission
196
+ * Race condition in playing audio files simultaneously
197
+ * Stop voice player when recorder exits
198
+ * Pause voice when component is removed from layout
199
+ * Replies
200
+ * Quoted text alignment for reply messages
201
+ * MessageList: Triggering of random clicks while scroll to parent
202
+ * Thread
203
+ * Improve parent message detection
204
+ * Emoji reactions overflow in message
205
+ * Settings
206
+ * <AllMemebers />: Show context menu on click
207
+ * Open Channel
208
+ * OpenChannel Context menu click leak
209
+ * Vertical scroll on labels in open channel list
210
+
211
+ ## [v3.4.9] (June 02 2023)
212
+
213
+ Fixes:
214
+ * ChannelList
215
+ * Display a channel on channel list only when there's a message
216
+ * Remove edited message from ChannelPreview
217
+
218
+ * MarkAsRead & MarkAsDelivered
219
+ * Batch markAsRead & markAsDelivered requests
220
+
221
+ * Scrolling
222
+ * Various scroll issues in Channel component
223
+ * Shaky scroll on messages when fetching messages
224
+ * Scroll into view when starting point is set
225
+ * Scroll into message on clicking quote reply
226
+ * Inconsistent rendering on scrollToBottom button
227
+
228
+ * Mention
229
+ * Improve max mention count logic in Messages
230
+ * Improve mention detection when there are curly braces in user's name Mentions
231
+ were not working when user nickname had curly braces
232
+
233
+ * Special channels
234
+ * Disable mention in the broadcast channel
235
+ * Change OpenChannelInput muted state notice text in broadcast channel
236
+
237
+ * Reply
238
+ * Apply ellipsis to a sender of quote and admin message
239
+
240
+ * Thread
241
+ * Add border bottom to the ParentMessageInfo component
242
+ * Modify string set for thread menu "Reply to Thread" -> "Reply in Thread"
243
+ Do not display "Reply in Thread" to the reply messages
244
+ * Prevent hover style of ParentMessageInfo component
245
+
246
+ * OpenChannel
247
+ * Apply theme to the OpenChannelList header
248
+
249
+ Chores:
250
+ * Add a sample with router
251
+ * Add dataId to the every menu items
252
+
253
+ ## [v3.4.8] (May 19 2023)
254
+
255
+ Fixes:
256
+ * Prevent white space only text sending
257
+ * Mentioned user Regex parsing
258
+ Mention will now work even if userId has `.*+?^${}()|[\]\\` characters.
259
+ * ChannelList blink when when message is send
260
+ Happened when there were two channelLists in the same page with
261
+ different query params.
262
+ * ChannelSetting `renderUserProfile` prop
263
+ We were applying `renderChannelProfile` in place of `renderUserProfile`.
264
+ * MessageBody: Words break mid word
265
+ Words were breaking midword because all white spaces
266
+ were converted into nbsps. CSS couldnt distinguish nbsps
267
+ as whitespaces, so wrapping didnt work well.
268
+
269
+ Chores:
270
+ * Setup CircleCI
271
+ * We are moving from Github Actions to CircleCI
272
+ * Setup Husky
273
+ * Setup lint on post push
274
+ * Auto run yarn install on post pull
275
+ * Update EsLint
276
+ * Update version to 8.40.x
277
+ * Apply more strict rules
278
+
279
+ ## [v3.4.7] (May 4 2023)
280
+
281
+ Important Notes:
282
+ * @sendbird/chat@4.8.0 has an issue with `abortcontroller-polyfill` plugin. Please use version 4.7.2 or install it separately.
283
+
284
+ Features:
285
+ * Set Chat SDK v4.3.0 as the minimum required version.
286
+ * Add a new UI component, Toggle:
287
+ * `ToggleContainer`: A context provider component that manages only the toggle status.
288
+ * `ToggleUI`: A UI component that does not include the status managing logic.
289
+ * `Toggle`: A combination of ToggleContainer and ToggleUI components.
290
+ * `useToggleContext`: A custom useContext hook that provides context from ToggleContainer.
291
+ ```javascript
292
+ import { Toggle, ToggleContainer, ToggleUI, useToggleContext } from '@sendbird/ui/Toggle';
293
+ ```
294
+
295
+ Fixes:
296
+ * Apply `isMuted` to the participant list. Operators can now unmute the muted participants from the participant list.
297
+ * Update the max mention count notice message.
298
+ * Modify the URL Regex to filter various types of formats.
299
+ * Give a left margin to the link text inside the message.
300
+ * Move the message list scroll after the OG image is loaded.
301
+ * Specify that getSdk returns SendbirdGroupChannel or SendbirdOpenChannel.
302
+ * Fix the issue where the current channel flickers on the ChannelList while creating a new group channel.
303
+
304
+ Chores:
305
+ * Rewrite the connection logic in sdk/thunks to hooks/useConnect
306
+ ```
307
+ const reconnect = useConnect({
308
+ appId,
309
+ userId,
310
+ accessToken,
311
+ }, {
312
+ logger,
313
+ nickname,
314
+ profileUrl,
315
+ configureSession,
316
+ customApiHost,
317
+ customWebSocketHost,
318
+ sdk: sdkStore?.sdk,
319
+ sdkDispatcher,
320
+ userDispatcher,
321
+ });
322
+ ```
323
+ * Rename `smart-components/` to `modules/`.
324
+ * Modify Logger method:
325
+ * The first parameter (log message) of the method is now required.
326
+ * Any other values can be passed to the second parameter of the method in a key-value format.
327
+
328
+ ## [v3.4.6] (Apr 21 2023)
329
+
330
+ Fixes:
331
+ * Use markAsReadScheduler in MessageList:
332
+ * `markAsReadScheduler` method throttles `markAsRead` calls.
333
+ * Reduces cmd no ack error.
334
+ * Apply common scroll hook to GroupChannel MessageList:
335
+ * Prevent whole page from scrolling when <GroupChannel /> scrolls. This issue occurs when customer implements an <GroupChannel /> in a web page with scroll.
336
+ * This is a same fix that we fixed OpenChannel in `v3.4.4`.
337
+ * To unify message sending policies with ios & android:
338
+ * Do not show send button when there is only new line or empty space in the input.
339
+ * Do not trim leading white spaces in message text.
340
+ * Optimize lamjs import:
341
+ * Lazy load the audio converting processor(lamejs) only when `isVoiceMessageEnabled` is true.
342
+ * This saves 106KB Gzipped(85KB Brotli) if you are not using the VoiceMessage feature.
343
+
344
+ ## [v3.4.5] (Apr 7 2023)
345
+
346
+ Features:
347
+
348
+ * Add a message list filter of UI level in the `Channel` module
349
+ * Add `Channel.filterMessageList?: (messages: BaseMessage): boolean;`, a UI level filter prop
350
+ to Channel. This function will be used to filter messages in `<MessageList />`
351
+
352
+ example:
353
+ ```javascript
354
+ // set your channel URL
355
+ const channel = "";
356
+ export const ChannelWithFilter = () => {
357
+ const channelFilter = useCallback((message) => {
358
+ const now = Date.now();
359
+ const twoWeeksAgo = now - 1000 * 60 * 60 * 24 * 14;
360
+ return message.createdAt > twoWeeksAgo;
361
+ }, []);
362
+ return (
363
+ <Channel
364
+ channelUrl={channel}
365
+ filterMessageList={channelFilter}
366
+ />
367
+ );
368
+ };
369
+ ```
370
+
371
+ * Improve structure of message UI for copying
372
+ Before:
373
+ * The words inside messages were kept in separate spans
374
+ * This would lead to unfavourable formatting when pasted in other applications
375
+
376
+ After:
377
+ * Remove span for wrapping simple strings in message body
378
+ * Urls and Mentions will still be wrapped in spans(for formatting)
379
+ * Apply new logic & components(TextFragment) to tokenize strings
380
+ * Improve keys used in rendering inside message,
381
+ * UUIDs are not the optimal way to improve rendering
382
+ * Create a composite key with message.updatedAt
383
+ * Refactor usePaste hook to make mentions work ~
384
+ * Fix overflow of long strings
385
+ * Deprecate `Word` and `convertWordToStringObj`
386
+
387
+ * Export MessageProvider, a simple provider to avoid prop drilling into Messages
388
+ Note - this is still in works, but these props will remain
389
+ * In the future, we will add methods - to this module - to:
390
+ * Edit & delete callbacks
391
+ * Menu render options(ACLs)
392
+ * Reaction configs
393
+ * This will improve the customizability and remove a lot of prop drilling in Messages
394
+
395
+ ```
396
+ export type MessageProviderProps = {
397
+ children: React.ReactNode;
398
+ message: BaseMessage;
399
+ isByMe?: boolean;
400
+ }
401
+
402
+ import { MessageProvider, useMessageContext } from '@sendbird/uikit-react/Message/context'
403
+ ```
404
+ Incase if you were using MessageComponents and see error message
405
+ `useMessageContext must be used within a MessageProvider `
406
+ use: `<MessageProvider message={message}><CustomMessage /></MessageProvider>`
407
+
408
+ * Add a scheduler for calling markAsRead intervally
409
+ * The `markAsRead` is called on individual channels is un-optimal(causes command ack. error)
410
+ because we have a list of channels that do this
411
+ ideally this should be fixed in server/SDK
412
+ this is a work around for the meantime to un-throttle the customer
413
+
414
+ Fixes:
415
+ * Set current channel on `ChannelList` when opening channel from the parent message of `Thread`
416
+ * Issue: The ChannelPreview item is not selected when opening the channel from
417
+ the ParentMessage of the Thread
418
+ * Fix: Set activeChannelUrl of ChannelList
419
+ * Detect new lines in safari on the `MessageInput` component
420
+ * Safari puts `<div>text</div>` for new lines inside content editable div(input)
421
+ * Other browsers put newline or `br`
422
+
423
+ ## [v3.4.4] (Mar 31 2023)
424
+
425
+ Features:
426
+ * Increase default maximum recording time of Voice Message to 10 minutes
427
+ * Add logger to VoicePlayer, VoiceRecorder, and useSendVoiceMessage hook
428
+
429
+ Fixes:
430
+ * Prevent whole page from scrolling when OpenChannel scrolls
431
+ This issue occurs when customer implements an OpenChannel in a web page with scroll
432
+ * Fix edgecase in which voice messages were sent twice
433
+ * Clean up Thread interface
434
+ If message.parentMessage doesnt exist, treat message as parentMessage
435
+ `<Thread message={message} />`
436
+
437
+ ## [v3.4.3] (Mar 24 2023)
438
+
439
+ Features:
440
+ * Add rollup-plugin-size-snapshot for bundle-size
441
+ Run rollup-plugin-size-snapshot on build,
442
+ we will check bundle size before every release
443
+ * Move old samples to use vite
444
+ React team these days are using vite for their samples,
445
+ CRA is discourged
446
+ * Run code coverage on commenting `./coverage`
447
+ Check code coverage on PR comment
448
+ * Add prop to disable Channel & Thread inputs
449
+ Add prop: `disabled?: false` for Channel & Thread MessageInputWrapper
450
+ * Replace renderToString(react-dom) with custom fn
451
+ Replace renderToString from react-dom/server with custom function
452
+ This function was creating issue in customers with cra@4 & react@17
453
+
454
+ Fixes:
455
+ * Replace outdated CSS rules
456
+ `justify-content: start;` and `height: fill-available;`
457
+ * Menu position in tight screens
458
+ * Condition where some menus get clipped in left side:
459
+ * Usually user profile in channel moderation
460
+ * Context menu of last item in channel gets clipped in the bottom
461
+
462
+
463
+ ## [v3.4.2] (Mar 17 2023)
464
+
465
+ Features:
466
+ * Mentions should be preserved when copy pasted from sendbird-messages and message input
467
+ * Make sure you are posting mentions of users from same channel
468
+ * We dont support pasting of rich text from other applications
469
+ * For copying simple text, we recommend using paste option in message context-menu
470
+
471
+ * Conditions tested:
472
+ 1. paste simple text
473
+ 2. paste text with mention
474
+ 3. paste text with mention and text
475
+ 4. paste text with mention and text and paste again before and after
476
+ 5. copy message with mention(only one mention, no other text) and paste
477
+ 6. copy message with mention from input and paste(before and after)
478
+
479
+ Chores:
480
+ * Arrange the order of the string set table
481
+ 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
482
+
483
+ Library added:
484
+ * [dompurify@3.0.1](https://www.npmjs.com/package/dompurify): +8Kb Gzipped
485
+
486
+ ## [v3.4.1] (Mar 10 2023)
487
+
488
+ Fixes:
489
+ * Keep scroll if context menu is opened when receiving messages
490
+ * Handle Ephemeral channel
491
+ * Group channel list
492
+ * Remove the message receipt status (channel preview)
493
+ * Remove the unread message count (channel preview)
494
+ * Group channel
495
+ * Remove the message edit
496
+ * Remove the message delete
497
+ * Remove the message reactions
498
+ * Remove the message receipt status (message)
499
+ * Remove the message reply (quote_reply, thread)
500
+ * Group channel settings
501
+ * Remove the search in channel
502
+ * Open channel
503
+ * Remove the message edit
504
+ * Remove the message delete
505
+ * Clear timeout in useLayoutEffect of Message
506
+ * This removes memory leak warnings
507
+
508
+ ## [v3.4.0] (Mar 6 2023)
509
+
510
+ ### Voice Message
511
+ 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.
512
+
513
+ #### How to turn on/off
514
+ * You can turn this feature on/off using the props `isVoiceMessageEnabled` on the <App /> and <SendbirdProvider /> components. Here is an example.
515
+ ```javascript
516
+ import App from '@sendbird/uikit-react/App'
517
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
518
+ import { useEffect } from 'react'
519
+
520
+ const QuickStart = () => (<App isVoiceMessageEnabled />)
521
+ const CustomApp = () => {
522
+ const [useVoiceMessage, setUseVoiceMessage] = useEffect(true)
523
+ return (
524
+ <SendbirdProvider
525
+ isVoiceMessageEnabled={useVoiceMessage}
526
+ >
527
+ {/* Implement your custom app here */}
528
+ </SendbirdProvider>
529
+ )
530
+ }
531
+ ```
532
+
533
+ #### How to customize the voice message in Channel and Thread?
534
+ 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.
535
+ ```javascript
536
+ import Channel from '@sendbird/uikit-react/Channel'
537
+ import isVoiceMessage from '@sendbird/uikit-react/utils/message/isVoiceMessage'
538
+
539
+ const CustomChannel = () => {
540
+ return (
541
+ <Channel
542
+ renderMessage={({ message }) => {
543
+ if (isVoiceMessage(message)) {
544
+ // Return your custom voice message item component
545
+ }
546
+ return null
547
+ }}
548
+ />
549
+ )
550
+ }
551
+ ```
552
+
553
+ #### Limitation & Next step
554
+ * 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.
555
+
556
+ #### What has been changed?
557
+ * Add props `isVoiceMessageEnabled` and `voiceRecord` props to the App, `SendbirdProvider`, and `MessageInput` components, to turn on/off the voice message recording feature
558
+ ```javascript
559
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
560
+ const CustomApp = () => {
561
+ return (
562
+ <SendbirdProvider
563
+ isVoiceMessageEnabled
564
+ voiceRecord={{
565
+ maxRecordingTime: 60000,
566
+ minRecordingTime: 1000,
567
+ }}
568
+ >
569
+ {/* implement custom application */}
570
+ </SendbirdProvider>
571
+ )
572
+ }
573
+ ```
574
+ * Add props `onVoiceMessageIconClick` to the `MessageInput` component
575
+ * Add props `onBeforeSendVoiceMessage` to the `Channel` component
576
+ * Fetch message list including `MetaArray` in the `Channel` and `Thread` modules
577
+ * Provide new IconType `AudioOnLined` & new IconColor `Primary2` and `OnBackground4`
578
+ * Provide new string sets
579
+ ```javascript
580
+ import SendbirdProvider from '@sendbird/uikit-react/SendbirdProvider'
581
+ const CustomApp = () => {
582
+ return (
583
+ <SendbirdProvider
584
+ stringSet={{
585
+ BUTTON__OK: 'OK',
586
+ VOICE_MESSAGE: 'Voice Message',
587
+ MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_MUTED: 'You\'re muted by the operator.',
588
+ MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_FROZEN: 'Channel is frozen.',
589
+ }}
590
+ >
591
+ {/* implement custom application */}
592
+ </SendbirdProvider>
593
+ )
594
+ }
595
+ ```
596
+ * `BUTTON__OK`: 'OK' → Used on the submit button of pop up modal
597
+ * `MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_MUTED`: 'You\'re muted by the operator.' → Used in an alert pop-up modal
598
+ * `MODAL__VOICE_MESSAGE_INPUT_DISABLED__TITLE_FROZEN`: 'Channel is frozen.' → Used in an alert pop-up modal
599
+ * `VOICE_MESSAGE`: 'Voice Message' → Used in ChannelPreviewItem, QuoteMessage, and MessageSearch to appear that the message type is the voice## External Contributions
600
+
601
+ #### What has been added?
602
+ * Install `lamejs` to convert the audio file to mp3 (iOS support)
603
+ * UI components
604
+ ```javascript
605
+ import PlaybackTime from "@sendbird/uikit-react/ui/PlaybackTime"
606
+ import ProgressBar from "@sendbird/uikit-react/ui/ProgressBar"
607
+ import VoiceMessageInput from "@sendbird/uikit-react/ui/VoiceMessageInput"
608
+ import VoiceMessageItemBody from "@sendbird/uikit-react/ui/VoiceMessageItemBody"
609
+ ```
610
+ * PlaybackTime: Display the current time in 00:00 format with the received millisecond value
611
+ * ProgressBar: Display the current progress status with the received maxSize and currentSize of millisecond unit value
612
+ * VoiceMessageInput: UI component for recording and playing a voice message
613
+ * VoiceMessageItemBody: UI component for rendering a voice message also able to play voice message
614
+ * VoiceRecorder
615
+ ```javascript
616
+ import { VoiceRecorderProvider, useVoiceRecorderContext } from '@sendbird/uikit-react/VoiceRecorder/context'
617
+ import useVoiceRecorder from '@sendbird/uikit-react/VoiceRecorder/useVoiceRecorder'
618
+ ```
619
+ * VoiceRecorderProvider: A react context provider component providing `start`, and `stop` functions
620
+ * useVoiceRecorderContext: A react useContext hook of VoiceRecorderProvider
621
+ * useVoiceRecorder: A react hook that provides advanced context, `recordingLimit`, `recordingTime`, `recordingFile`, and `recordingStatus`. Recommend using this hook in the customized components.
622
+ * VoicePlayer
623
+ ```javascript
624
+ import { VoicePlayerProvider, useVoicePlayerContext } from '@sendbird/uikit-react/VoicePlayer/context'
625
+ import useVoicePlayer from '@sendbird/uikit-react/VoicePlayer/useVoicePlayer'
626
+ ```
627
+ * VoicePlayerProvider: A react context provider component providing `play`, and `pause` functions
628
+ * useVoicePlayerContext: A react useContext hook of VoicePlayerProvider
629
+ * useVoicePlayer: A react hook that provides advanced context, `playbackTime`, `duration`, and `playingStatus`. Recommend using this hook in the customized components.
630
+ * utils/isVoiceMessage: A function that you can check if the given message is a voice message
631
+ ```javascript
632
+ import isVoiceMessage from '@sendbird/uikit-react/utils/message/isVoiceMessage'
633
+ const isVoiceMsg: boolean = isVoiceMessage(message);
634
+ ```
635
+
636
+ Features:
637
+ * Add props `renderFileUploadIcon`, `renderVoiceMessageIcon`, and `renderSendMessageIcon` into the `Channel`, `ChannelUI`, and `MessageInput` component
638
+ ```javascript
639
+ interface MessageInputProps {
640
+ renderFileUploadIcon?: () => React.ReactElement;
641
+ renderVoiceMessageIcon?: () => React.ReactElement;
642
+ renderSendMessageIcon?: () => React.ReactElement;
643
+ }
644
+ ```
645
+
646
+ Fixes:
647
+ * Use ApplicationUserListQuery on ChannelSettings component
648
+ * Fix some visual issues on the normal User Panel of ChannelSettings
649
+ * Indentify faulty images in OG message
650
+ * Add classname: sendbird-og-message-item-body__og-thumbnail__empty to identify faulty images in OG message
651
+ Clients can use CSS to target this class~
652
+ ```css
653
+ .sendbird-og-message-item-body__og-thumbnail__empty {
654
+ display: none;
655
+ }
656
+ ```
657
+
658
+ ## [v3.3.7] (Feb 24 2023)
659
+
660
+ Features:
661
+ * Add props `activeChannelUrl` to ChannelList to give an option to pragmatically set a channel from a parent component router
662
+ ```javascript
663
+ const MyChannelList = () => {
664
+ const [myActiveChannel] = useState()
665
+ return (<ChannelList activeChannelUrl={myActiveChannel.url} />)
666
+ }
667
+ ```
668
+
669
+ Fixes:
670
+ * Fix not showing newly recived messages in channel which has less messages
671
+ * Use a real `channel.invitedAt` value when trying to fetch MessageSearchQuery
672
+ * Disable the checkbox of the joined users on the InviteUsersModal
673
+ * Set the default value of CheckBox component: `@sendbird/uikit-react/ui/CheckBox` as false
674
+
675
+ ## [v3.3.6] (Feb 13 2023)
676
+
677
+ Fixes:
678
+ * pubsub should be initialized with useState
679
+ * update onBeforeCreateChannel example to use chat V4
680
+
681
+ ## [v3.5.0-beta.0] (Feb 6 2023)
682
+
683
+ ### Notification Channel
684
+
685
+ 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>
686
+
687
+ Overview:
688
+ * Provide new module `NotificationChannel`
689
+ * NotificationChannel
690
+ `import NotificationChannel from '@sendbird/uikit-react/NotificationChannel'`
691
+ props:
692
+ * channelUrl: string;
693
+ * children?: React.ReactElement;
694
+ // To customize Query
695
+ * messageListParams?: MessageListParams;
696
+ // Sets last seen externally
697
+ * lastSeen?: number;
698
+ // handles Actions sepcified in Message Templates
699
+ * handleWebAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
700
+ * handleCustomAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
701
+ * handlePredefinedAction?(event: React.SyntheticEvent, action: Action, message: BaseMessage): null;
702
+ // UI overrides
703
+ * isLoading?: boolean;
704
+ * renderPlaceholderLoader?: () => React.ReactElement;
705
+ * renderPlaceholderInvalid?: () => React.ReactElement;
706
+ * renderPlaceholderEmpty?: () => React.ReactElement;
707
+ * renderHeader?: () => React.ReactElement;
708
+ * renderMessageHeader?: ({ message }) => React.ReactElement;
709
+ * renderMessage?: ({ message }) => React.ReactElement;
710
+
711
+ ```
712
+ example:
713
+ export const NotificationChannelComponenet = () => (
714
+ <Sendbird
715
+ appId={appId}
716
+ userId={userId}
717
+ accessToken={accessToken}
718
+ >
719
+ <div style={{ height: '960px', width: '360px' }}>
720
+ <NotificationChannel
721
+ channelUrl={`SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION_${userId}`}
722
+ renderPlaceholderLoader={() => <MyBrandLogo />};
723
+ handleCustomAction={(event, action, message) => {
724
+ ... implement custom action
725
+ }}
726
+ />
727
+ </div>
728
+ </Sendbird>
729
+ );
730
+ ```
731
+ * Submodules:
732
+ * Context
733
+ `import { NotficationChannelProvider useNotficationChannelContext } from '@sendbird/uikit-react/NotificationChannel/context'`
734
+ Handles business logic of Notification Channel
735
+ * NotificationChannelUI
736
+ `import NotificationChannelUI from '@sendbird/uikit-react/NotificationChannel/components/NotificationChannelUI'`
737
+ UI wrapper of Notification Channel
738
+ * NotificationMessageWrap
739
+ `import NotificationMessageWrap from '@sendbird/uikit-react/NotificationChannel/components/NotificationMessageWrap'`
740
+ * NotificationList
741
+ `import NotificationList from '@sendbird/uikit-react/NotificationChannel/components/NotificationList'`
742
+ * External modules:
743
+ Unlike some of our other releases we decide to release some components into seperate packages to enahnce reusability with other platforms/projects
744
+ * MessageTemplateParser('@sendbird/react-message-template')
745
+ * MessageTemplate
746
+ `import { createMessageTemplate } from '@sendbird/react-message-template'`
747
+ * Parser
748
+ `import { createParser } from '@sendbird/react-message-template'`
749
+ * Renderer
750
+ `import { createRenderer } from '@sendbird/react-message-template'`
751
+ * MessageTemplateParser('@sendbird/react-message-template')
752
+ * Context
753
+ `import { MessageProvider, useMessageContext } from '@sendbird/react-uikit-message-template-view';`
754
+ * MessageTemplateView
755
+ `import { MessageTemplateView } from '@sendbird/react-uikit-message-template-view';`
756
+
757
+ ## [v3.3.5] (Feb 3 2023)
758
+ Features:
759
+ * Voice Recorder&Player logic(not public yet)
760
+ * Add a voice record logic: VoiceRecorderProvider, useVoiceRecorderContext, useVoiceRecorder
761
+ * Add an audio play logic: VoicePlayerProvider, useVoicePlayerContext, useVoicePlayer
762
+ * Create an integrated sample for the group channel
763
+
764
+ Fix:
765
+ * Migrate the outdated ChannelListQuery interface
766
+ * Issue: A customer said the `userIdsFilter` of ChannelListQuery doesn't work when receiving messages
767
+ 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.
768
+ * Fix: We migrated the outdated interface `_searchFilter` and `_userIdsFilter` to new things `searchFilter` and `userIdsFilter
769
+ * Use the same word-splitting logic on the TextMessage and OGMessage
770
+ * TextMessage will also allow opening the URL links
771
+ * Use the same word wrapping style on the TextMessage and OGMessage
772
+ * Apply string set into the moderation section
773
+ * Add string set
774
+ * CHANNEL_SETTING__OPERATORS__ADD_BUTTON: 'Add'
775
+ * CHANNEL_SETTING__MODERATION__EMPTY_BAN: 'No banned members yet'
776
+ * CHANNEL_SETTING__MODERATION__ALL_BAN: 'All banned members'
777
+ * Edit should not be allowed when input is empty
778
+ * New channel interrupts the current conversation
779
+ * Do not set the current channel when getting an invitation
780
+ * Add test for USER_INVITED in the reducer of ChannelList
781
+
782
+ ## [v3.3.4] (Jan 6 2023)
783
+ Fix:
784
+ * Add the time stamp rendering case for before this year on the ChannelList
785
+ * Improve the message input security
786
+ * Possibility of XSS has been discovered
787
+ * Recommend to do a version up, if you are using UIKit version 3.0.0 or higher
788
+
789
+ ## [v3.3.3] (Dec 22 2022)
790
+ Fix:
791
+ * Change default value of the image compression rate to 70%(0.7)
792
+
793
+ ## [v3.3.2] (Dec 8 2022)
794
+ Features:
795
+ * Add props `renderTitle` to the <ChannelListHeader /> component
796
+ * `renderHeader` of <ChannelListHeader /> will be deprecated
797
+ * Add interface overrideInviteUser
798
+
799
+ Add overrideInviteUser to ChannelList, CreateChannel and ChannelSettings
800
+
801
+ This interface overrides InviteMember functionality. Customer has to create the channel
802
+ and close the popup manually
803
+
804
+ ```javascript
805
+ export type OverrideInviteUserType = {
806
+ users: Array<string>;
807
+ onClose: () => void;
808
+ channelType: 'group' | 'supergroup' | 'broadcast';
809
+ };
810
+ export interface ChannelListProps {
811
+ overrideInviteUser?(params: OverrideInviteUserType): void;
812
+ }
813
+ export interface CreateChannelProps {
814
+ overrideInviteUser?(params: OverrideInviteUserType): void;
815
+ }
816
+ export type OverrideInviteMemberType = {
817
+ users: Array<string>;
818
+ onClose: () => void;
819
+ channel: GroupChannel;
820
+ };
821
+ ChannelSettings.overrideInviteUser?(params: OverrideInviteMemberType): void;
822
+ ```
823
+
824
+ example:
825
+ ```javascript
826
+ <ChannelList
827
+ overrideInviteUser={({users, onClose, channelType}) => {
828
+ createMyChannel(users, channelType).then(() => {
829
+ onClose();
830
+ })
831
+ }}
832
+ />
833
+ ```
834
+
835
+ Fixes:
836
+ * Allow to override entire message search query.
837
+ Now message search query supports searching messages in multiple channels.
838
+ * Modify type definitions for props `ThreadUIProps.renderMessage`.
839
+ * Remove duplication of create channel button when using `renderHeader` of <ChannelList />.
840
+ * The online status should work even configureSession is provided.
841
+ This was disabled because of a bug in sessionHandler in SDK now, we can re-enable this.
842
+ * Create channel sometimes had empty operatorID.
843
+ Use sendbird state to access currentUserID and use it incase prop value is empty.
844
+ Also, remove legacy HOC pattern.
845
+ * Add the props type `isMentionEnabled` of <App />.
846
+ * Change the props type `messageSearchQuery` of <MessageSearch /> to **MessageSearchQueryParams**.
847
+
848
+ ## [v3.3.1] (Nov 23 2022)
849
+ Fixes:
850
+ * Rename properties of `useThreadContext`
851
+ * `channelStatus` to `channelState`
852
+ * `parentMessageInfoStatus` to `parentMessageState`
853
+ * `threadListStatus` to `threadListState`
854
+ * Change the state types to enum
855
+ ```typescript
856
+ enum ChannelStateTypes {
857
+ NIL = 'NIL',
858
+ LOADING = 'LOADING',
859
+ INVALID = 'INVALID',
860
+ INITIALIZED = 'INITIALIZED',
861
+ }
862
+ enum ParentMessageStateTypes {
863
+ NIL = 'NIL',
864
+ LOADING = 'LOADING',
865
+ INVALID = 'INVALID',
866
+ INITIALIZED = 'INITIALIZED',
867
+ }
868
+ enum ThreadListStateTypes {
869
+ NIL = 'NIL',
870
+ LOADING = 'LOADING',
871
+ INVALID = 'INVALID',
872
+ INITIALIZED = 'INITIALIZED',
873
+ }
874
+ ```
875
+
876
+ ## [v3.3.0] (Nov 23 2022)
877
+ Features:
878
+ * Provide new module `Thread`. See the specific informations of this module on the [Docs page](https://sendbird.com/docs/uikit)
879
+ * You can use a combined component `Thread`. Import it with
880
+ ```typescript
881
+ import Thread from "@sendbird/uikit-react/Thread"
882
+ ```
883
+ * Also you can use `ThreadProvider` and `useThreadContext` for customization. Import it with
884
+ ```typescript
885
+ import { ThreadProvider, useThreadContext } from "@sendbird/uikit-react/Thread/context"
886
+ ```
887
+ * And the other UI components are provided under the Thread. `ThreadUI`, `ThreadHeader`, `ParentMessageInfo`, `ParentMessageInfoItem`, `ThreadList`, `ThreadListItem`, and `ThreadMessageInput` are it
888
+ * Add channel props
889
+ * `threadReplySelectType`: Type of the value should be
890
+ ```typescript
891
+ enum ThreadReplySelectType { PARENT, THREAD }
892
+ ```
893
+ You can see how to use it below
894
+ ```typescript
895
+ import { ThreadReplySelectType } from "@sendbird/uikit-react/Channel/context";
896
+
897
+ <Channel
898
+ ...
899
+ threadReplySelectType={ThreadReplySelectType.PARENT}
900
+ />
901
+ ```
902
+ * `animatedMessage`: Type of the value should be number(messageId)
903
+ * `onReplyInThread`: This function is called when user click the button "Reply in thread" on the message context menu
904
+ ```typescript
905
+ type onReplyInThread = ({ message: UserMessage | FileMessage }) => void
906
+ ```
907
+ * `onQuoteMessageClick`: This function is called when user click the quote message on the message of Channel
908
+ ```typescript
909
+ type onQuoteMessageClick = ({ message: UserMessage | FileMessage }) => {}
910
+ ```
911
+ * `onMessageAnimated`: This function is called after that message item is animated
912
+ ```typescript
913
+ type onMessageAnimated = () => void
914
+ ```
915
+ * `onMessageHighlighted`: This function is called after that message item is highlighted
916
+ ```typescript
917
+ type onMessageHighlighted = () => void
918
+ ```
919
+ * Add `ui/ThreadReplies` component
920
+ ```typescript
921
+ interface ThreadRepliesProps {
922
+ className?: string;
923
+ threadInfo: ThreadInfo;
924
+ onClick?: (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>) => void;
925
+ }
926
+ ```
927
+
928
+ Fixes:
929
+ * Do not allow operator to unregister itself on the OperatorList of GroupChannel
930
+ * Create new group channel when user open 1:1 channel on the UserProfile
931
+ * Register the channel creator as an operator in 1:1 channel
932
+
933
+ ## [v3.2.6] (Nov 14 2022)
934
+ Fix:
935
+ * Use ref instead of querySelector for DOM manipulation
936
+ Fixes the issue where input is not cleared when multiple channels are open at the same time
937
+ * Apply pre-line into the OpenChannelUserMessage
938
+ Fixes the issue where OpenChannel UserMessage doesnt have new line
939
+
940
+ ## [v3.2.5] (Nov 7 2022)
941
+ Fix:
942
+ * Modify the type of parameters in the sendbirdSelectors
943
+ There has been unsyncronous between reality and types
944
+ This fix only affects to TypeScript
945
+ * getLeaveGroupChannel: `channel` to `channelUrl`
946
+ * getEnterOpenChannel: `channel` to `channelUrl`
947
+ * getExitOpenChannel: `channel` to `channelUrl`
948
+
949
+ ## [v3.2.4] (Nov 1 2022)
950
+ Features:
951
+ * For Channel component, added separate prop isLoading?.boolean
952
+ Usage: `<Channel channelUrl {currentChannelUrl} isLoading={!currentChannelUrl} />`
953
+ * For flicker in ChannelList, no extra props
954
+
955
+ Fixes:
956
+ * React UIKit placeholder rendering issue
957
+ * Fix scroll issue in ChannelList where user cannot load more channels
958
+ * Modify TS interface getLeaveChannel to getLeaveGroupChannel in selectors
959
+
960
+ ## [v3.2.3] (Oct 14 2022)
961
+ Feature:
962
+ * Add a prop `disableMarkAsRead` into the <Channel />
963
+ This prop disables calling markAsRead in the Channel component
964
+
965
+ ## [v3.2.2] (Oct 13 2022)
966
+
967
+ Feature:
968
+ * Export a type `OutgoingMessageStates`
969
+ * Type: `enum OutgoingMessageStates { NONE, PENDING, SENT, FAILED, DELIVERED, READ }`
970
+ * Export a util function `getOutgoingMessageState`
971
+ * Importing path: "@sendbird/uikit-react/utils/message/getOutgoingMessageState"
972
+ * Interface: `function getOutgoingMessageState(channel, message): OutgoingMessageStates`
973
+ * Add a prop `disableMarkAsDelivered` into the <App /> and <SendbirdProvider />
974
+ Some of our customers do not use the markAsDelivery feature,
975
+ but we always have called the markAsDelivered on the ChannelList with every channel
976
+ It caused a rate-limit issue, so we add a new prop to disable the markAdDelivered call for that case
977
+
978
+ ## [v3.2.1] (Oct 02 2022)
979
+
980
+ Fixes:
981
+ * Do not bundle chat SDK with uikit compiled code
982
+
983
+ Compiled UIKit code that is distributed through npm shouldn't
984
+ have Chat SDK minified code included in it
985
+ Chat SDK should be a dependency of UIKit
986
+ Advantages:
987
+ * Chat SDK bug fixes will be added for free
988
+ * Eliminate the need for handlers
989
+ What caused the issue:
990
+ If you are using rollup for bundling
991
+ in config.external you have to be specific
992
+ ie>
993
+ This works:
994
+ ```
995
+ external: [
996
+ '@sendbird/chat',
997
+ '@sendbird/chat/groupChannel',
998
+ '@sendbird/chat/openChannel',
999
+ '@sendbird/chat/message',
1000
+ ]
1001
+ ```
1002
+ This doesn't:
1003
+ ```
1004
+ external: [ '@sendbird/chat', ]
1005
+ ```
1006
+
1007
+ * Only react and react-dom should be peerDependencies
1008
+
1009
+ For npm >= v7, npm autoinstall peerDependency packages
1010
+ According to `https://docs.npmjs.com/cli/v8/configuring-npm/package-json#peerdependencies`
1011
+ You want to express the compatibility of your package with a host tool
1012
+ or library while not necessarily doing a require of this host Even though react is required,
1013
+ its better to show that react is the host tool
1014
+
1015
+ ## [v3.2.0] (Sep 27 2022)
1016
+
1017
+ Features:
1018
+ * OpenChannelList component
1019
+ * Create new smart components (modules)
1020
+ * CreateOpenChannel
1021
+ * OpenChannelList
1022
+ * Add a renderHeader props into the ui/Modal component
1023
+ * Add stringSet for OpenChannelLisit and CreateOpenChannel components
1024
+ * OPEN_CHANNEL_LIST__TITLE: 'Channels',
1025
+ * CREATE_OPEN_CHANNEL_LIST__TITLE: 'New channel profile',
1026
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__IMG_SECTION: 'Channel image',
1027
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__IMG_UPLOAD: 'Upload',
1028
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__TEXT_SECTION: 'Channel name',
1029
+ * CREATE_OPEN_CHANNEL_LIST__SUBTITLE__TEXT_PLACE_HOLDER: 'Enter channel name',
1030
+ * CREATE_OPEN_CHANNEL_LIST__SUBMIT: 'Create',
1031
+ * Add prop?.value to MessageWrappers
1032
+ * @sendbird/uikit-react/Channel/components/MessageInput
1033
+ * @sendbird/uikit-react/OpenChannel/components/OpenChannelInput
1034
+ * @sendbird/uikit-react/ui/MessageInput
1035
+ * Value is reset when channelURL changes
1036
+
1037
+ Fixes:
1038
+ * Fix issue where ConnectionHandler overwrite SessionHandler
1039
+ * Use queries from @sendbird/chat
1040
+ * Use imported versions of GroupChannelListQueryParams and ApplicationUserListQueryParams
1041
+ * Fix `o`penChannel casing in type defn
1042
+ * Add some missing localization variables
1043
+ * Deprecate ChatHeader and ChannelPreview in @sendbird/uikit-react/ui
1044
+ * Replace the ButtonTypes and ButtonSizes into the Button/index
1045
+ * Apply scroll to input and dark theme color to UserProfile
1046
+ * Disable the create channel button when no user invite
1047
+ * Use ref from MessageInputWrapper props if present
1048
+ * Some CSS level polishing fixes~
1049
+
1050
+ Dev. Env:
1051
+ * Remove `enzyme` and `react-test-renderer`
1052
+ * Upgrade the `react` version to **v18**
1053
+ * Upgrade the `storybook` version to **v6.5.10**
1054
+ * Upgrade the `jest` and `babel-jest` to **v29**
1055
+ * Upgrade the `jsdom` to **v20**
1056
+ * Install `jest-environment-jsdom`
1057
+ * Install `global-jsdom`
1058
+ * Install `testing-library` (`@testing-library/react` and `@testing-library/jest-dom`)
1059
+ * Migrate every tests with `testing-library` instead of the `enzyme` and `react-test-renderer
1060
+ * Replace node-sass with sass(Dart Sass)
1061
+ * Reduce bundle size by treating react-dom/server as external
1062
+
1063
+ ## [v3.1.3] (Sep 19 2022)
1064
+
1065
+ Features:
1066
+ * Export SessionHandler through `@sendbird/uikit-react/handlers/SessionHandler`
1067
+ * This is a workaround to fix an issue where inhertiance chains break custom handler implementation
1068
+ * `import SessionHandler from '@sendbird/uikit-react/handlers/SessionHandler'`
1069
+ * Rem units can be used for typography
1070
+ * Pass prop `config.isREMUnitEnabled` -> true on SendbirdProvider
1071
+ to use "rem" units
1072
+ * We are adding rem as unit for typography/font size
1073
+
1074
+ Fixes:
1075
+ * Fix the position of ContextMenu
1076
+ * Do not exit the current open channel when the channel state is changed
1077
+ * Display menu only for operators on the member list
1078
+ * Hide muted icon when pop-up component is appeared
1079
+ * Set message context's border roundly by the state using the reaction feature
1080
+ * Add props `isReactionEnabled` to the <TextMessageItemBody />
1081
+ * Add props `isReactionEnabled` to the <OGMessageItemBody />
1082
+ * Add props `isReactionEnabled` to the <FileMessageItemBody />
1083
+ * Add props `isReactionEnabled` to the <ThumbnailMessageItemBody />
1084
+ * Add props `isReactionEnabled` to the <UnknownMessageItemBody />
1085
+ * Add the message as a parameter of renderCustomSeparator
1086
+ * before: renderCustomSeparator={() => ReactElement}
1087
+ * after: renderCustomSeparator={(props: { message }) => ReactElement}
1088
+ * Fix typo on the type
1089
+ * renderCustomSep'e'rator to renderCustomSep'a'rator
1090
+
1091
+ ## [v3.1.2] (Aug 31 2022)
1092
+
1093
+ * Migrate UI components into TypeScript
1094
+ This doesnt affect anyone, it a step in task to migrate the project source code into TS
1095
+
1096
+ Fixes:
1097
+ * Type defn: Change type of react elements to `React.ReactElement`
1098
+ * Change every `React.ReactNode` and `React.Component` to `React.ReactElement`
1099
+ * Use the type of SendbirdError
1100
+ * Use the type MessageSearchQueryParams
1101
+ * Use enum MessageSearchOrder.TIMESTAMP in the message search query params instead of `'ts' as const`
1102
+
1103
+ **ReactNode** could be `string | number | null | undefined | ReactElement | portal` and this(expecting string or number) causes **warning** when we use it like `<CustomComp />`
1104
+ ```typescript
1105
+ // in the component
1106
+ { renderMessage } = props
1107
+ const CustomMessage = useMemo(() => {
1108
+ return renderMessage({ ... });
1109
+ }, []);
1110
+ return (
1111
+ <div>
1112
+ <CustomMessage />
1113
+ </div>
1114
+ );
1115
+ ```
1116
+ so expecting **ReactElement** is better for our case
1117
+ * Fix message grouping:
1118
+ Set isMessageGroupingEnabed to true(was set to false during v2 migration)
1119
+
1120
+ ## [v3.1.1] (Aug 17 2022)
1121
+
1122
+ Features:
1123
+ * Add channel handlers to the open channel settings
1124
+ * Add an open channel handler into the OpenChannelSettings component
1125
+ * Use operators property to render operator list on the OpenChannelSetting
1126
+ instead of fetching operators
1127
+ * Export handlers through `@sendbird/uikit-react/handlers`, this is a workaround
1128
+ to fix an issue where inhertiance chains break custom handler implementation
1129
+ * ConnectionHandler -> `@sendbird/uikit-react/handlers/ConnectionHandler`
1130
+ * GroupChannelHandler -> `@sendbird/uikit-react/handlers/GroupChannelHandler`
1131
+ * OpenChannelHandler -> `@sendbird/uikit-react/handlers/OpenChannelHandler`
1132
+ * UserEventHandler -> `@sendbird/uikit-react/handlers/UserEventHandler`
1133
+ * Example: https://codesandbox.io/s/test-3-1-1-rc-5-f94w7i
1134
+
1135
+ Fixes:
1136
+ * Update SendableMessage to UserMessage and FileMessage
1137
+ * Change the type of MessageHandler.onFailed to FailedMessageHandler
1138
+ * Add missing type defns into scripts/index_d_ts
1139
+ * Typo in creating channelHandlerId on the ChannelList
1140
+
1141
+ ## [v3.1.0] (Aug 03 2022)
1142
+ Features:
1143
+ * Support moderation in OpenChannel
1144
+ * Provide moderations: mute, unmute, ban, and unban on the <OpenChannelSettings />
1145
+ * Provide moderations: register and unregister operator on the <OpenChannelSettings />
1146
+ * Add MutedParticipantList and MutedParticipantsModal into the <OpenChannelSettings />
1147
+ * Add BannedUserList and BannedUsersModal into the <OpenChannelSettings />
1148
+ * Add OperatorList and OperatorsModal into the <OpenChannelSettings />
1149
+ * Add AddOperatorsModal into the <OpenChannelSettings />
1150
+
1151
+ ## [v3.0.2] (Aug 03 2022)
1152
+ Fixes:
1153
+ * Explicitly export library as esm-module
1154
+ ESM library should have "type": "module" (package.json file that is going to /dist)
1155
+ This fixes Cannot use import outside module issue in next.js
1156
+ * Add optional chaining for createApplicationUserList
1157
+ * Fix QueryInProgress warning:
1158
+ React 18 strict mode glitch that causes useEffect to run twice
1159
+ * Cannot connect sometimes when customApiHost is empty
1160
+ Connection couldnt be established with no error message when customApiHost and customWebSocketHost
1161
+ were passed as empty string
1162
+ * Handle all chances of command not received error
1163
+ Handle chances of command not recieved error in markAsRead
1164
+ Experimental markasread handling -> longer times, no more call after unmount
1165
+ * Move typing handler in channellist into local variable
1166
+
1167
+ ## [v3.0.1] (July 28 2022)
1168
+
1169
+ Features:
1170
+ * Accept customApiHost & customWebSocketHost as props to SendbirdProvider
1171
+ * Add basic TS project sample
1172
+
1173
+ Fixes:
1174
+ * Improve URL detection in OG message
1175
+ * Add onCloseClick to MessageSearchProps
1176
+ * Safe call removeGroupChannelHandler in TypingIndicator
1177
+ * Apply userListQuery
1178
+ * Type definition for channellist and setting
1179
+
1180
+ ## [v3.0.0] (July 12 2022)
1181
+
1182
+ Features:
1183
+ * Support `modules` and `components` in the UIKit
1184
+ * Upgraded to `@sendbird/chat@4`
1185
+ * Support react 18
1186
+ * See the Migration Guide for Converting V2 to V3. [[details](./MIGRATION_v2-to-v3.md)]
1187
+ * See more details and breaking changes. [[details](./CHANGELOG.md)]
1188
+
1189
+ ## [3.0.0-beta.6] (June 03 2022)
1190
+
1191
+ Feature:
1192
+ * Show profile on clicking a mention
1193
+ * Visual highlight when user is mention
1194
+ * Add session handler interface
1195
+ ```
1196
+ // its recommended to memoize configureSession function
1197
+ const memoizedConfigureSession = (sb) => {
1198
+ const sessionHandler = new sb.SessionHandler();
1199
+ sessionHandler.onSessionTokenRequired = (onSuccess, onError) => {
1200
+ };
1201
+ return sessionHandler;
1202
+ };
1203
+
1204
+ // see: https://sendbird.com/docs/chat/v3/javascript/guides/authentication
1205
+ <SendbirdProvider
1206
+ configureSession={memoizedConfigureSession}
1207
+ />
1208
+ ```
1209
+
1210
+ Fix:
1211
+ * Change the front-weight of Subtitle2 from 600 to 500
1212
+ * Modify mention badge position on the ChannelListItem component
1213
+ * Change Info Icon size to 20px on the SuggestedMentionListItem component
1214
+ * Differentiate the message status 'read' and 'delivered' with message grouping
1215
+ * Modify KeyDown event handler on the message input for sending Korean text edge case
1216
+ Fix: Mention related stuff
1217
+ * Modify the onMouseOver event on the SuggestedMentionList component
1218
+ * Filter 'html' text when pasting text to the MessageInput component
1219
+ * Hide and apply ellipsis for overflowing text on the SuggestedMentionListItem component
1220
+ * Deactivate the MessageInput component when the current user is muted or the current channel is frozen
1221
+ * Reset the mention states of the current channel when changing channel and closing the edit MessageInput component
1222
+
1223
+ ## [3.0.0-beta.5] (May 24 2022)
1224
+ Fixes:
1225
+ * Export useChannelList
1226
+ * Active disableAutoSelect props
1227
+ * Remove empty CSS file to fix source map warning
1228
+
1229
+ DOC:
1230
+ * Add info about webpack 5 breaking changes
1231
+
1232
+ ## [3.0.0-beta.4] (May 24 2022) -> unpublished
1233
+ ## [3.0.0-beta.3] (May 19 2022)
1234
+ Fixes:
1235
+ * Rate limit markAsDelivered call
1236
+ * Do not render date separator when renderCustomSeparator is null
1237
+ Misc:
1238
+ * Update Chat SDK minimum version to `3.1.13`
1239
+
1240
+ ## [3.0.0-beta.2] (April 29 2022)
1241
+
1242
+ Feature:
1243
+ * Mention
1244
+ * Add isMentionEnabled props to the <App /> and <SendbirdProvider />
1245
+ * Add userMention into the config props of the <App /> andd <SendbirdProvider />
1246
+ * <SendbirdProvider config={{ userMention: { maxMentionCount: 10, maxSuggestionCount: 15 } }} />
1247
+ * maxMentionCount: A maximum count that you can mention in the message input
1248
+ * maxSuggestionCount: A maximum user count that the SuggestedMentionList suggests for user mention
1249
+ * Create SuggestedMentionList component under the Channel smart component
1250
+ * Create SuggestedUserMentionItem component
1251
+ * Create MentionUserLabel ui component
1252
+ * Add string set
1253
+ * MENTION_NAME__NO_NAME: '(No name)'
1254
+ * MENTION_COUNT__OVER_LIMIT: 'You can mention up to %d times per message.'
1255
+ Fix:
1256
+ * Type definition file fix for TS project
1257
+ For typescript projects, add `node_modules/@sendbird/uikit-react/index.d.ts`
1258
+ to your `include` section in tsconfig file to get type definitions
1259
+
1260
+ * Move font import to top of CSS file
1261
+ Some bundlers such as parcel throw error:
1262
+ `@import rules must precede all rules aside from @charset and @layer statements`
1263
+ Resolve this issue by moving the line to the top
1264
+
1265
+ ## [3.0.0-beta] (Apr 12 2022)
1266
+
1267
+ This is the official beta for Sendbird UIKit for React version 3!
1268
+
1269
+ TLDR -> We split the old `smart-components` into modules which contian context and UI. Context contain logic and UI Components handle UI
1270
+
1271
+ **[Check out the v2 to v3 migration guide for details](MIGRATION_v2-to-v3.md)**
1272
+
1273
+ Changelog:
1274
+ * Package should be installed using `@sendbird/uikit-react`
1275
+ * Restructure smart-components into modules that contain a context and related UI components
1276
+ * Export these context and UI components to allow fine-grain customization
1277
+ * Recommend to use these context elements `useXXXXX()` and react function components to make custom components
1278
+ * All generic UI components are available as exports
1279
+ * Restrcuture export paths to allow better tree-shaking
1280
+ * Example:
1281
+ ```
1282
+ import { useChannel } from '@sendbird/uikit-react/Channel/context';
1283
+ import ChannelUI from '@sendbird/uikit-react/Channel/components/ChannelUI';
1284
+ ```
1285
+ * We keep older export patterns to make migration easier
1286
+ * Retained modules - ChannelList, Channel, ChannelSettings, OpenChannel, OpenChannelSettings, MessageSearch
1287
+ * New modules(not including context and ui of above) - CreateChannel, EditUserProfile, ui