@sendbird/uikit-react 3.17.9 → 3.17.10

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 (879) hide show
  1. package/App.js +89 -89
  2. package/CHANGELOG.md +4 -0
  3. package/Channel/components/ChannelHeader.js +33 -33
  4. package/Channel/components/ChannelUI.js +68 -68
  5. package/Channel/components/FileViewer.js +31 -31
  6. package/Channel/components/FrozenNotification.js +6 -6
  7. package/Channel/components/Message.js +57 -57
  8. package/Channel/components/MessageInput.js +44 -44
  9. package/Channel/components/MessageInputWrapper.js +44 -44
  10. package/Channel/components/MessageList.js +61 -61
  11. package/Channel/components/RemoveMessageModal.js +30 -30
  12. package/Channel/components/SuggestedMentionList.js +30 -30
  13. package/Channel/components/TypingIndicator.js +9 -9
  14. package/Channel/components/UnreadCount.js +8 -8
  15. package/Channel/context.js +24 -24
  16. package/Channel/hooks/useHandleUploadFiles.js +18 -18
  17. package/Channel/hooks/useInitialMessagesFetch.js +8 -8
  18. package/Channel/utils/compareMessagesForGrouping.js +8 -8
  19. package/Channel/utils/getMessagePartsInfo.js +9 -9
  20. package/Channel.js +68 -68
  21. package/ChannelList/components/AddChannel.js +89 -89
  22. package/ChannelList/components/ChannelListHeader.js +13 -13
  23. package/ChannelList/components/ChannelListUI.js +89 -89
  24. package/ChannelList/components/ChannelPreview.js +32 -32
  25. package/ChannelList/components/ChannelPreviewAction.js +17 -17
  26. package/ChannelList/context.js +14 -14
  27. package/ChannelList.js +89 -89
  28. package/ChannelSettings/components/ChannelProfile.js +23 -23
  29. package/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
  30. package/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
  31. package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  32. package/ChannelSettings/components/ChannelSettingsUI.js +31 -31
  33. package/ChannelSettings/components/EditDetailsModal.js +19 -19
  34. package/ChannelSettings/components/LeaveChannel.js +20 -20
  35. package/ChannelSettings/components/ModerationPanel.js +29 -29
  36. package/ChannelSettings/components/UserListItem.js +19 -19
  37. package/ChannelSettings/components/UserPanel.js +28 -28
  38. package/ChannelSettings/context.js +9 -9
  39. package/ChannelSettings/hooks/useMenuList.js +29 -29
  40. package/ChannelSettings.js +31 -31
  41. package/CreateChannel/components/CreateChannelUI.js +89 -89
  42. package/CreateChannel/components/InviteUsers.js +89 -89
  43. package/CreateChannel/components/SelectChannelType.js +89 -89
  44. package/CreateChannel/context.js +89 -89
  45. package/CreateChannel.js +89 -89
  46. package/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
  47. package/CreateOpenChannel/context.js +4 -4
  48. package/CreateOpenChannel.js +15 -15
  49. package/EditUserProfile/components/EditUserProfileUI.js +15 -15
  50. package/EditUserProfile/context.js +1 -1
  51. package/EditUserProfile.js +15 -15
  52. package/GroupChannel/components/FileViewer.js +28 -28
  53. package/GroupChannel/components/FrozenNotification.js +6 -6
  54. package/GroupChannel/components/GroupChannelHeader.js +29 -29
  55. package/GroupChannel/components/GroupChannelUI.js +63 -63
  56. package/GroupChannel/components/Message.js +54 -54
  57. package/GroupChannel/components/MessageInputWrapper.js +41 -41
  58. package/GroupChannel/components/MessageList.js +56 -56
  59. package/GroupChannel/components/RemoveMessageModal.js +27 -27
  60. package/GroupChannel/components/SuggestedMentionList.js +15 -15
  61. package/GroupChannel/components/TypingIndicator.js +9 -9
  62. package/GroupChannel/components/UnreadCount.js +8 -8
  63. package/GroupChannel/context.js +15 -15
  64. package/GroupChannel.js +63 -63
  65. package/GroupChannelList/components/AddGroupChannel.js +89 -89
  66. package/GroupChannelList/components/GroupChannelListHeader.js +13 -13
  67. package/GroupChannelList/components/GroupChannelListItem.js +32 -32
  68. package/GroupChannelList/components/GroupChannelListUI.js +89 -89
  69. package/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
  70. package/GroupChannelList/context.js +10 -10
  71. package/GroupChannelList.js +89 -89
  72. package/MessageSearch/components/MessageSearchUI.js +20 -20
  73. package/MessageSearch/context.js +6 -6
  74. package/MessageSearch.js +22 -22
  75. package/OpenChannel/components/FrozenChannelNotification.js +5 -5
  76. package/OpenChannel/components/OpenChannelHeader.js +20 -20
  77. package/OpenChannel/components/OpenChannelInput.js +29 -29
  78. package/OpenChannel/components/OpenChannelMessage.js +39 -39
  79. package/OpenChannel/components/OpenChannelMessageList.js +43 -43
  80. package/OpenChannel/components/OpenChannelUI.js +43 -43
  81. package/OpenChannel/context.js +19 -19
  82. package/OpenChannel.js +43 -43
  83. package/OpenChannelList/components/OpenChannelListUI.js +17 -17
  84. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  85. package/OpenChannelList/context.js +7 -7
  86. package/OpenChannelList.js +17 -17
  87. package/OpenChannelSettings/components/EditDetailsModal.js +18 -18
  88. package/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
  89. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
  90. package/OpenChannelSettings/components/OperatorUI.js +24 -24
  91. package/OpenChannelSettings/components/ParticipantUI.js +22 -22
  92. package/OpenChannelSettings/context.js +6 -6
  93. package/OpenChannelSettings.js +24 -24
  94. package/SendbirdProvider.js +41 -39
  95. package/SendbirdProvider.js.map +1 -1
  96. package/Thread/components/ParentMessageInfo.js +49 -49
  97. package/Thread/components/ParentMessageInfoItem.js +34 -34
  98. package/Thread/components/ThreadHeader.js +8 -8
  99. package/Thread/components/ThreadList.js +56 -56
  100. package/Thread/components/ThreadListItem.js +56 -56
  101. package/Thread/components/ThreadMessageInput.js +46 -46
  102. package/Thread/components/ThreadUI.js +62 -62
  103. package/Thread/context.js +15 -15
  104. package/Thread.js +62 -62
  105. package/VoicePlayer/context.js +6 -6
  106. package/VoicePlayer/useVoicePlayer.js +14 -14
  107. package/VoiceRecorder/context.js +13 -13
  108. package/VoiceRecorder/useVoiceRecorder.js +12 -12
  109. package/chunks/{bundle-D6qBUoaE.js → bundle-44QynWoG.js} +2 -2
  110. package/chunks/bundle-44QynWoG.js.map +1 -0
  111. package/chunks/{bundle-Qi_Rn9eA.js → bundle-7K78yrCU.js} +11 -11
  112. package/chunks/{bundle-Qi_Rn9eA.js.map → bundle-7K78yrCU.js.map} +1 -1
  113. package/chunks/{bundle-CCnimzRm.js → bundle-B3Vz_eYg.js} +1 -1
  114. package/chunks/bundle-B3Vz_eYg.js.map +1 -0
  115. package/chunks/{bundle-DcwqOFAo.js → bundle-BE-vC7Lt.js} +7 -7
  116. package/chunks/bundle-BE-vC7Lt.js.map +1 -0
  117. package/chunks/{bundle-dJTl_jQ2.js → bundle-BNJo28hx.js} +3 -3
  118. package/chunks/bundle-BNJo28hx.js.map +1 -0
  119. package/chunks/{bundle-BEErY_8u.js → bundle-BNvlnMM2.js} +7 -7
  120. package/chunks/bundle-BNvlnMM2.js.map +1 -0
  121. package/chunks/{bundle-CuRh0Jsq.js → bundle-BPvTEy0t.js} +12 -12
  122. package/chunks/bundle-BPvTEy0t.js.map +1 -0
  123. package/chunks/{bundle-B-kVJIxO.js → bundle-BQqf09uI.js} +8 -8
  124. package/chunks/{bundle-B-kVJIxO.js.map → bundle-BQqf09uI.js.map} +1 -1
  125. package/chunks/{bundle-DAIIUGai.js → bundle-BREsEgZM.js} +3 -3
  126. package/chunks/bundle-BREsEgZM.js.map +1 -0
  127. package/chunks/{bundle-Ib5vN5sy.js → bundle-BS8MSmBM.js} +14 -14
  128. package/chunks/{bundle-Ib5vN5sy.js.map → bundle-BS8MSmBM.js.map} +1 -1
  129. package/chunks/{bundle-CEoD8yu5.js → bundle-BVBQRww-.js} +10 -10
  130. package/chunks/{bundle-CEoD8yu5.js.map → bundle-BVBQRww-.js.map} +1 -1
  131. package/chunks/{bundle-Cvu-h7MX.js → bundle-BZoeTBeq.js} +1 -1
  132. package/chunks/{bundle-Cvu-h7MX.js.map → bundle-BZoeTBeq.js.map} +1 -1
  133. package/chunks/{bundle-CuLHQGf2.js → bundle-BgOjuIrI.js} +1 -1
  134. package/chunks/bundle-BgOjuIrI.js.map +1 -0
  135. package/chunks/{bundle-DJuRf4bO.js → bundle-Bi2zy7Rq.js} +1 -1
  136. package/chunks/{bundle-DJuRf4bO.js.map → bundle-Bi2zy7Rq.js.map} +1 -1
  137. package/chunks/{bundle-DBi6n0F9.js → bundle-Bma0fCyK.js} +15 -15
  138. package/chunks/{bundle-DBi6n0F9.js.map → bundle-Bma0fCyK.js.map} +1 -1
  139. package/chunks/{bundle-B0IHR3Q1.js → bundle-BoZeHqfo.js} +4 -4
  140. package/chunks/bundle-BoZeHqfo.js.map +1 -0
  141. package/chunks/{bundle-DvQGsjFi.js → bundle-Bq3cKfll.js} +8 -8
  142. package/chunks/bundle-Bq3cKfll.js.map +1 -0
  143. package/chunks/{bundle-9croEwfz.js → bundle-BrAHUkpi.js} +2 -2
  144. package/chunks/{bundle-9croEwfz.js.map → bundle-BrAHUkpi.js.map} +1 -1
  145. package/chunks/{bundle-Ddr3tZ-J.js → bundle-Bu8UF7z9.js} +3 -3
  146. package/chunks/{bundle-Ddr3tZ-J.js.map → bundle-Bu8UF7z9.js.map} +1 -1
  147. package/chunks/{bundle-BC4qBi6k.js → bundle-BxRMl0NH.js} +1 -1
  148. package/chunks/bundle-BxRMl0NH.js.map +1 -0
  149. package/chunks/{bundle-d1MSNYh1.js → bundle-ByScbYGt.js} +33 -33
  150. package/chunks/{bundle-d1MSNYh1.js.map → bundle-ByScbYGt.js.map} +1 -1
  151. package/chunks/{bundle-BwE_FPIh.js → bundle-ByVmmqcj.js} +9 -6
  152. package/chunks/{bundle-BwE_FPIh.js.map → bundle-ByVmmqcj.js.map} +1 -1
  153. package/chunks/{bundle-D-JCGtym.js → bundle-BzEareAP.js} +1 -1
  154. package/chunks/bundle-BzEareAP.js.map +1 -0
  155. package/chunks/{bundle-C1gCBWHy.js → bundle-C-cNHvb3.js} +5 -5
  156. package/chunks/{bundle-C1gCBWHy.js.map → bundle-C-cNHvb3.js.map} +1 -1
  157. package/chunks/{bundle-DOwTRYa0.js → bundle-C3cyXpot.js} +1 -1
  158. package/chunks/bundle-C3cyXpot.js.map +1 -0
  159. package/chunks/{bundle-CZK_MkE6.js → bundle-C584816X.js} +3 -3
  160. package/chunks/bundle-C584816X.js.map +1 -0
  161. package/chunks/{bundle-BPZF5rRq.js → bundle-C6DfSdlB.js} +1 -1
  162. package/chunks/bundle-C6DfSdlB.js.map +1 -0
  163. package/chunks/{bundle-Cba1bZmH.js → bundle-C8ue-M9T.js} +5 -5
  164. package/chunks/{bundle-Cba1bZmH.js.map → bundle-C8ue-M9T.js.map} +1 -1
  165. package/chunks/{bundle-DMETKDWa.js → bundle-C98ZxHO9.js} +4 -4
  166. package/chunks/bundle-C98ZxHO9.js.map +1 -0
  167. package/chunks/{bundle-BOLcm9vh.js → bundle-CAtDWrGV.js} +4 -4
  168. package/chunks/bundle-CAtDWrGV.js.map +1 -0
  169. package/chunks/{bundle-D2pLxyr_.js → bundle-CCFaWKwf.js} +9 -9
  170. package/chunks/{bundle-D2pLxyr_.js.map → bundle-CCFaWKwf.js.map} +1 -1
  171. package/chunks/{bundle-BgSbRS9k.js → bundle-CD7nQMNh.js} +21 -21
  172. package/chunks/{bundle-BgSbRS9k.js.map → bundle-CD7nQMNh.js.map} +1 -1
  173. package/chunks/{bundle-xJtllU3b.js → bundle-CFHEY2p4.js} +12 -12
  174. package/chunks/{bundle-xJtllU3b.js.map → bundle-CFHEY2p4.js.map} +1 -1
  175. package/chunks/{bundle-CEeF7X-d.js → bundle-CIlc1dvT.js} +1 -1
  176. package/chunks/bundle-CIlc1dvT.js.map +1 -0
  177. package/chunks/{bundle-DVwnmwNv.js → bundle-CJX5Jh7u.js} +2 -2
  178. package/chunks/bundle-CJX5Jh7u.js.map +1 -0
  179. package/chunks/{bundle-RKLDiRza.js → bundle-CLLlK3L0.js} +2 -2
  180. package/chunks/bundle-CLLlK3L0.js.map +1 -0
  181. package/chunks/{bundle-Ygn2n6dz.js → bundle-CLxgZowy.js} +1 -1
  182. package/chunks/bundle-CLxgZowy.js.map +1 -0
  183. package/chunks/{bundle-CfxwKFS5.js → bundle-CQgnHPbJ.js} +1 -1
  184. package/chunks/bundle-CQgnHPbJ.js.map +1 -0
  185. package/chunks/{bundle-NG4uLTGg.js → bundle-CT2liYyN.js} +4 -4
  186. package/chunks/bundle-CT2liYyN.js.map +1 -0
  187. package/chunks/{bundle-CGNKFK26.js → bundle-CUdLrgmK.js} +1 -1
  188. package/chunks/bundle-CUdLrgmK.js.map +1 -0
  189. package/chunks/{bundle-ClwiBRbh.js → bundle-CVkjpnw8.js} +7 -7
  190. package/chunks/{bundle-ClwiBRbh.js.map → bundle-CVkjpnw8.js.map} +1 -1
  191. package/chunks/{bundle-BEdxA-2Z.js → bundle-CWttl_Pf.js} +3 -3
  192. package/chunks/bundle-CWttl_Pf.js.map +1 -0
  193. package/chunks/{bundle-D3rJTH4D.js → bundle-CY2NPyy9.js} +3 -3
  194. package/chunks/bundle-CY2NPyy9.js.map +1 -0
  195. package/chunks/{bundle-Cfq7wRxQ.js → bundle-CY6jSZJz.js} +2 -2
  196. package/chunks/bundle-CY6jSZJz.js.map +1 -0
  197. package/chunks/{bundle-Dz-Ir0w4.js → bundle-CbLxWQmt.js} +7 -7
  198. package/chunks/{bundle-Dz-Ir0w4.js.map → bundle-CbLxWQmt.js.map} +1 -1
  199. package/chunks/{bundle-B7k8kmYr.js → bundle-Cda4O3PL.js} +2 -2
  200. package/chunks/bundle-Cda4O3PL.js.map +1 -0
  201. package/chunks/{bundle-BVSZB8X3.js → bundle-CeknuDhO.js} +1 -1
  202. package/chunks/bundle-CeknuDhO.js.map +1 -0
  203. package/chunks/{bundle-xfy1mdqO.js → bundle-CgDS9B4O.js} +1 -1
  204. package/chunks/bundle-CgDS9B4O.js.map +1 -0
  205. package/chunks/{bundle-D6wlSO9k.js → bundle-CjHWsy4S.js} +1 -1
  206. package/chunks/bundle-CjHWsy4S.js.map +1 -0
  207. package/chunks/{bundle-DgUr6sGz.js → bundle-CqUk0XXd.js} +1 -1
  208. package/chunks/bundle-CqUk0XXd.js.map +1 -0
  209. package/chunks/{bundle-CPRu7it5.js → bundle-CtNthIiA.js} +5 -5
  210. package/chunks/bundle-CtNthIiA.js.map +1 -0
  211. package/chunks/{bundle-s-ZF6ERo.js → bundle-CwWHzn0O.js} +4 -4
  212. package/chunks/bundle-CwWHzn0O.js.map +1 -0
  213. package/chunks/{bundle-DUPSHqVe.js → bundle-Cx0E1vwh.js} +1 -1
  214. package/chunks/bundle-Cx0E1vwh.js.map +1 -0
  215. package/chunks/{bundle-PHBSR55j.js → bundle-Cy88TJjF.js} +4 -4
  216. package/chunks/bundle-Cy88TJjF.js.map +1 -0
  217. package/chunks/{bundle-B2miZUGu.js → bundle-CyU55YQc.js} +6 -6
  218. package/chunks/bundle-CyU55YQc.js.map +1 -0
  219. package/chunks/{bundle-Ck5bRHwA.js → bundle-CzS9d74N.js} +13 -13
  220. package/chunks/{bundle-CdVOvzGn.js.map → bundle-CzS9d74N.js.map} +1 -1
  221. package/chunks/{bundle-DL9RK6RY.js → bundle-CznW00mg.js} +12 -12
  222. package/chunks/{bundle-DL9RK6RY.js.map → bundle-CznW00mg.js.map} +1 -1
  223. package/chunks/{bundle--rmSBKsK.js → bundle-D3vBmq0k.js} +4 -4
  224. package/chunks/{bundle--rmSBKsK.js.map → bundle-D3vBmq0k.js.map} +1 -1
  225. package/chunks/{bundle-MPV86_iE.js → bundle-DArDRDUr.js} +1 -1
  226. package/chunks/{bundle-MPV86_iE.js.map → bundle-DArDRDUr.js.map} +1 -1
  227. package/chunks/{bundle-CDLjUZwZ.js → bundle-DEL8ljY9.js} +4 -4
  228. package/chunks/{bundle-CDLjUZwZ.js.map → bundle-DEL8ljY9.js.map} +1 -1
  229. package/chunks/{bundle-CasGi9da.js → bundle-DFwAWoi7.js} +7 -7
  230. package/chunks/{bundle-CasGi9da.js.map → bundle-DFwAWoi7.js.map} +1 -1
  231. package/chunks/{bundle-CKMn5fk3.js → bundle-DJM1hhs4.js} +4 -4
  232. package/chunks/{bundle-CKMn5fk3.js.map → bundle-DJM1hhs4.js.map} +1 -1
  233. package/chunks/{bundle-BH9M7i98.js → bundle-DKx3NR1w.js} +12 -12
  234. package/chunks/{bundle-BH9M7i98.js.map → bundle-DKx3NR1w.js.map} +1 -1
  235. package/chunks/{bundle-BHXeyOom.js → bundle-DMP4IOmZ.js} +4 -4
  236. package/chunks/bundle-DMP4IOmZ.js.map +1 -0
  237. package/chunks/{bundle-0vqOELrK.js → bundle-DQu3BLLd.js} +1 -1
  238. package/chunks/bundle-DQu3BLLd.js.map +1 -0
  239. package/chunks/{bundle-D9khldtR.js → bundle-DYU7abrP.js} +1 -1
  240. package/chunks/bundle-DYU7abrP.js.map +1 -0
  241. package/chunks/{bundle-CsuVM74g.js → bundle-DbWCSmuo.js} +2 -2
  242. package/chunks/{bundle-CsuVM74g.js.map → bundle-DbWCSmuo.js.map} +1 -1
  243. package/chunks/{bundle-B2Ur2ibC.js → bundle-DcYwBbme.js} +8 -8
  244. package/chunks/{bundle-B2Ur2ibC.js.map → bundle-DcYwBbme.js.map} +1 -1
  245. package/chunks/{bundle-Bgk_utSz.js → bundle-DcfQg8Uy.js} +1 -1
  246. package/chunks/bundle-DcfQg8Uy.js.map +1 -0
  247. package/chunks/{bundle-DLE838IF.js → bundle-DfkEzAlf.js} +3 -3
  248. package/chunks/{bundle-DLE838IF.js.map → bundle-DfkEzAlf.js.map} +1 -1
  249. package/chunks/{bundle-0XJDkYUm.js → bundle-DiDPUa4G.js} +2 -2
  250. package/chunks/{bundle-0XJDkYUm.js.map → bundle-DiDPUa4G.js.map} +1 -1
  251. package/chunks/{bundle-DxP5xNny.js → bundle-DnBGqmRP.js} +1 -1
  252. package/chunks/bundle-DnBGqmRP.js.map +1 -0
  253. package/chunks/{bundle-mimAWXZs.js → bundle-DobIp5EF.js} +1 -1
  254. package/chunks/bundle-DobIp5EF.js.map +1 -0
  255. package/chunks/{bundle-CBCMdreW.js → bundle-Ds73wciT.js} +10 -10
  256. package/chunks/{bundle-CBCMdreW.js.map → bundle-Ds73wciT.js.map} +1 -1
  257. package/chunks/{bundle-ClefHJJw.js → bundle-DvfLia2p.js} +3 -3
  258. package/chunks/{bundle-ClefHJJw.js.map → bundle-DvfLia2p.js.map} +1 -1
  259. package/chunks/{bundle-CPF7cWU6.js → bundle-Dwn0i3O0.js} +1 -1
  260. package/chunks/bundle-Dwn0i3O0.js.map +1 -0
  261. package/chunks/{bundle-D2FESJJJ.js → bundle-DwoUKI2F.js} +1 -1
  262. package/chunks/{bundle-D2FESJJJ.js.map → bundle-DwoUKI2F.js.map} +1 -1
  263. package/chunks/{bundle-Dmqve2pP.js → bundle-DxCD7jJG.js} +1 -1
  264. package/chunks/bundle-DxCD7jJG.js.map +1 -0
  265. package/chunks/{bundle-D3Dpium4.js → bundle-DzM4yc5s.js} +3 -3
  266. package/chunks/bundle-DzM4yc5s.js.map +1 -0
  267. package/chunks/{bundle-Cf042blz.js → bundle-FpTYjAqh.js} +5 -5
  268. package/chunks/{bundle-Cf042blz.js.map → bundle-FpTYjAqh.js.map} +1 -1
  269. package/chunks/{bundle-C6cGHDqn.js → bundle-H_Psj481.js} +5 -5
  270. package/chunks/{bundle-C6cGHDqn.js.map → bundle-H_Psj481.js.map} +1 -1
  271. package/chunks/{bundle-DFfxC3zu.js → bundle-MA8C181q.js} +6 -6
  272. package/chunks/bundle-MA8C181q.js.map +1 -0
  273. package/chunks/{bundle-COyKQxtP.js → bundle-QdDm0lM_.js} +9 -9
  274. package/chunks/{bundle-COyKQxtP.js.map → bundle-QdDm0lM_.js.map} +1 -1
  275. package/chunks/{bundle-Bpwo3SAQ.js → bundle-VHuYsTmC.js} +1 -1
  276. package/chunks/bundle-VHuYsTmC.js.map +1 -0
  277. package/chunks/{bundle-Ct3SgygU.js → bundle-VqoQQamR.js} +3 -3
  278. package/chunks/{bundle-Ct3SgygU.js.map → bundle-VqoQQamR.js.map} +1 -1
  279. package/chunks/{bundle-BhEU5--G.js → bundle-_96c-wim.js} +8 -8
  280. package/chunks/{bundle-BhEU5--G.js.map → bundle-_96c-wim.js.map} +1 -1
  281. package/chunks/{bundle-CdVOvzGn.js → bundle-aylKVP-t.js} +5 -5
  282. package/chunks/bundle-aylKVP-t.js.map +1 -0
  283. package/chunks/{bundle-CPu_RwBt.js → bundle-fT16CxUq.js} +1 -1
  284. package/chunks/{bundle-CPu_RwBt.js.map → bundle-fT16CxUq.js.map} +1 -1
  285. package/chunks/{bundle-BU45Zkw1.js → bundle-gclN7sr5.js} +5 -5
  286. package/chunks/{bundle-BU45Zkw1.js.map → bundle-gclN7sr5.js.map} +1 -1
  287. package/chunks/{bundle-D1cI9kRf.js → bundle-lcE93tnM.js} +1 -1
  288. package/chunks/bundle-lcE93tnM.js.map +1 -0
  289. package/chunks/{bundle-CzERxTzT.js → bundle-yydYieYt.js} +1 -1
  290. package/chunks/{bundle-CzERxTzT.js.map → bundle-yydYieYt.js.map} +1 -1
  291. package/chunks/{bundle-3TaAoFG_.js → bundle-zxR5w1Ch.js} +1 -1
  292. package/chunks/{bundle-3TaAoFG_.js.map → bundle-zxR5w1Ch.js.map} +1 -1
  293. package/cjs/App.js +89 -89
  294. package/cjs/Channel/components/ChannelHeader.js +33 -33
  295. package/cjs/Channel/components/ChannelUI.js +68 -68
  296. package/cjs/Channel/components/FileViewer.js +31 -31
  297. package/cjs/Channel/components/FrozenNotification.js +6 -6
  298. package/cjs/Channel/components/Message.js +57 -57
  299. package/cjs/Channel/components/MessageInput.js +44 -44
  300. package/cjs/Channel/components/MessageInputWrapper.js +44 -44
  301. package/cjs/Channel/components/MessageList.js +61 -61
  302. package/cjs/Channel/components/RemoveMessageModal.js +30 -30
  303. package/cjs/Channel/components/SuggestedMentionList.js +30 -30
  304. package/cjs/Channel/components/TypingIndicator.js +9 -9
  305. package/cjs/Channel/components/UnreadCount.js +8 -8
  306. package/cjs/Channel/context.js +24 -24
  307. package/cjs/Channel/hooks/useHandleUploadFiles.js +18 -18
  308. package/cjs/Channel/hooks/useInitialMessagesFetch.js +8 -8
  309. package/cjs/Channel/utils/compareMessagesForGrouping.js +8 -8
  310. package/cjs/Channel/utils/getMessagePartsInfo.js +9 -9
  311. package/cjs/Channel.js +68 -68
  312. package/cjs/ChannelList/components/AddChannel.js +89 -89
  313. package/cjs/ChannelList/components/ChannelListHeader.js +13 -13
  314. package/cjs/ChannelList/components/ChannelListUI.js +89 -89
  315. package/cjs/ChannelList/components/ChannelPreview.js +32 -32
  316. package/cjs/ChannelList/components/ChannelPreviewAction.js +17 -17
  317. package/cjs/ChannelList/context.js +14 -14
  318. package/cjs/ChannelList.js +89 -89
  319. package/cjs/ChannelSettings/components/ChannelProfile.js +23 -23
  320. package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
  321. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
  322. package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  323. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +31 -31
  324. package/cjs/ChannelSettings/components/EditDetailsModal.js +19 -19
  325. package/cjs/ChannelSettings/components/LeaveChannel.js +20 -20
  326. package/cjs/ChannelSettings/components/ModerationPanel.js +29 -29
  327. package/cjs/ChannelSettings/components/UserListItem.js +19 -19
  328. package/cjs/ChannelSettings/components/UserPanel.js +28 -28
  329. package/cjs/ChannelSettings/context.js +9 -9
  330. package/cjs/ChannelSettings/hooks/useMenuList.js +29 -29
  331. package/cjs/ChannelSettings.js +31 -31
  332. package/cjs/CreateChannel/components/CreateChannelUI.js +89 -89
  333. package/cjs/CreateChannel/components/InviteUsers.js +89 -89
  334. package/cjs/CreateChannel/components/SelectChannelType.js +89 -89
  335. package/cjs/CreateChannel/context.js +89 -89
  336. package/cjs/CreateChannel.js +89 -89
  337. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
  338. package/cjs/CreateOpenChannel/context.js +4 -4
  339. package/cjs/CreateOpenChannel.js +15 -15
  340. package/cjs/EditUserProfile/components/EditUserProfileUI.js +15 -15
  341. package/cjs/EditUserProfile/context.js +1 -1
  342. package/cjs/EditUserProfile.js +15 -15
  343. package/cjs/GroupChannel/components/FileViewer.js +28 -28
  344. package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
  345. package/cjs/GroupChannel/components/GroupChannelHeader.js +29 -29
  346. package/cjs/GroupChannel/components/GroupChannelUI.js +63 -63
  347. package/cjs/GroupChannel/components/Message.js +54 -54
  348. package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
  349. package/cjs/GroupChannel/components/MessageList.js +56 -56
  350. package/cjs/GroupChannel/components/RemoveMessageModal.js +27 -27
  351. package/cjs/GroupChannel/components/SuggestedMentionList.js +15 -15
  352. package/cjs/GroupChannel/components/TypingIndicator.js +9 -9
  353. package/cjs/GroupChannel/components/UnreadCount.js +8 -8
  354. package/cjs/GroupChannel/context.js +15 -15
  355. package/cjs/GroupChannel.js +63 -63
  356. package/cjs/GroupChannelList/components/AddGroupChannel.js +89 -89
  357. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +13 -13
  358. package/cjs/GroupChannelList/components/GroupChannelListItem.js +32 -32
  359. package/cjs/GroupChannelList/components/GroupChannelListUI.js +89 -89
  360. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
  361. package/cjs/GroupChannelList/context.js +10 -10
  362. package/cjs/GroupChannelList.js +89 -89
  363. package/cjs/MessageSearch/components/MessageSearchUI.js +20 -20
  364. package/cjs/MessageSearch/context.js +6 -6
  365. package/cjs/MessageSearch.js +22 -22
  366. package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
  367. package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
  368. package/cjs/OpenChannel/components/OpenChannelInput.js +29 -29
  369. package/cjs/OpenChannel/components/OpenChannelMessage.js +39 -39
  370. package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -43
  371. package/cjs/OpenChannel/components/OpenChannelUI.js +43 -43
  372. package/cjs/OpenChannel/context.js +19 -19
  373. package/cjs/OpenChannel.js +43 -43
  374. package/cjs/OpenChannelList/components/OpenChannelListUI.js +17 -17
  375. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  376. package/cjs/OpenChannelList/context.js +7 -7
  377. package/cjs/OpenChannelList.js +17 -17
  378. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +18 -18
  379. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
  380. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
  381. package/cjs/OpenChannelSettings/components/OperatorUI.js +24 -24
  382. package/cjs/OpenChannelSettings/components/ParticipantUI.js +22 -22
  383. package/cjs/OpenChannelSettings/context.js +6 -6
  384. package/cjs/OpenChannelSettings.js +24 -24
  385. package/cjs/SendbirdProvider.js +41 -39
  386. package/cjs/SendbirdProvider.js.map +1 -1
  387. package/cjs/Thread/components/ParentMessageInfo.js +49 -49
  388. package/cjs/Thread/components/ParentMessageInfoItem.js +34 -34
  389. package/cjs/Thread/components/ThreadHeader.js +8 -8
  390. package/cjs/Thread/components/ThreadList.js +56 -56
  391. package/cjs/Thread/components/ThreadListItem.js +56 -56
  392. package/cjs/Thread/components/ThreadMessageInput.js +46 -46
  393. package/cjs/Thread/components/ThreadUI.js +62 -62
  394. package/cjs/Thread/context.js +15 -15
  395. package/cjs/Thread.js +62 -62
  396. package/cjs/VoicePlayer/context.js +6 -6
  397. package/cjs/VoicePlayer/useVoicePlayer.js +14 -14
  398. package/cjs/VoiceRecorder/context.js +13 -13
  399. package/cjs/VoiceRecorder/useVoiceRecorder.js +12 -12
  400. package/cjs/chunks/{bundle-O6xYslTS.js → bundle--PzY8B9b.js} +1 -1
  401. package/cjs/chunks/bundle--PzY8B9b.js.map +1 -0
  402. package/cjs/chunks/{bundle-DTg3wGbo.js → bundle-814F-8SV.js} +4 -4
  403. package/cjs/chunks/bundle-814F-8SV.js.map +1 -0
  404. package/cjs/chunks/{bundle-BNqbA-KS.js → bundle-8OrPgTB0.js} +1 -1
  405. package/cjs/chunks/{bundle-BNqbA-KS.js.map → bundle-8OrPgTB0.js.map} +1 -1
  406. package/cjs/chunks/{bundle-Dq-f9_1G.js → bundle-B-PfgBAR.js} +1 -1
  407. package/cjs/chunks/bundle-B-PfgBAR.js.map +1 -0
  408. package/cjs/chunks/{bundle-BQp09506.js → bundle-B-ecCniP.js} +8 -8
  409. package/cjs/chunks/{bundle-BQp09506.js.map → bundle-B-ecCniP.js.map} +1 -1
  410. package/cjs/chunks/{bundle-BW6bZYUd.js → bundle-B06i03vA.js} +1 -1
  411. package/cjs/chunks/bundle-B06i03vA.js.map +1 -0
  412. package/cjs/chunks/{bundle-Bz39Opug.js → bundle-B2eNle8H.js} +3 -3
  413. package/cjs/chunks/{bundle-Bz39Opug.js.map → bundle-B2eNle8H.js.map} +1 -1
  414. package/cjs/chunks/{bundle-Big5EiPX.js → bundle-B3ldlWad.js} +1 -1
  415. package/cjs/chunks/bundle-B3ldlWad.js.map +1 -0
  416. package/cjs/chunks/{bundle-OZGVCQmA.js → bundle-B4m7sr4v.js} +5 -5
  417. package/cjs/chunks/bundle-B4m7sr4v.js.map +1 -0
  418. package/cjs/chunks/{bundle-XC2N8EdZ.js → bundle-BB0OziBI.js} +2 -2
  419. package/cjs/chunks/bundle-BB0OziBI.js.map +1 -0
  420. package/cjs/chunks/{bundle-20LgzbC4.js → bundle-BMTUZPER.js} +5 -5
  421. package/cjs/chunks/{bundle-20LgzbC4.js.map → bundle-BMTUZPER.js.map} +1 -1
  422. package/cjs/chunks/{bundle-C1-19p4S.js → bundle-BOjQNN-9.js} +21 -21
  423. package/cjs/chunks/bundle-BOjQNN-9.js.map +1 -0
  424. package/cjs/chunks/{bundle-BMvff8GA.js → bundle-BRLFKHZl.js} +1 -1
  425. package/cjs/chunks/bundle-BRLFKHZl.js.map +1 -0
  426. package/cjs/chunks/{bundle-uEyQwyEV.js → bundle-BTCz3gK0.js} +10 -10
  427. package/cjs/chunks/bundle-BTCz3gK0.js.map +1 -0
  428. package/cjs/chunks/{bundle-DAU8asBH.js → bundle-BUfNcSdS.js} +1 -1
  429. package/cjs/chunks/bundle-BUfNcSdS.js.map +1 -0
  430. package/cjs/chunks/{bundle-CGWI78fM.js → bundle-BXHdNDVQ.js} +1 -1
  431. package/cjs/chunks/bundle-BXHdNDVQ.js.map +1 -0
  432. package/cjs/chunks/{bundle-CiRyF7gN.js → bundle-BXqpEfns.js} +2 -2
  433. package/cjs/chunks/bundle-BXqpEfns.js.map +1 -0
  434. package/cjs/chunks/{bundle-B8chyd-B.js → bundle-BYGUXntZ.js} +3 -3
  435. package/cjs/chunks/{bundle-B8chyd-B.js.map → bundle-BYGUXntZ.js.map} +1 -1
  436. package/cjs/chunks/{bundle-Cg9M1U0A.js → bundle-Batig6Ji.js} +1 -1
  437. package/cjs/chunks/bundle-Batig6Ji.js.map +1 -0
  438. package/cjs/chunks/{bundle-BRTmKjMK.js → bundle-BbjIi7z9.js} +9 -6
  439. package/cjs/chunks/{bundle-BRTmKjMK.js.map → bundle-BbjIi7z9.js.map} +1 -1
  440. package/cjs/chunks/{bundle-BQn6baQG.js → bundle-BfRikWcg.js} +9 -9
  441. package/cjs/chunks/{bundle-BQn6baQG.js.map → bundle-BfRikWcg.js.map} +1 -1
  442. package/cjs/chunks/{bundle-CDMjqLdr.js → bundle-Bfk09i2f.js} +11 -11
  443. package/cjs/chunks/{bundle-CDMjqLdr.js.map → bundle-Bfk09i2f.js.map} +1 -1
  444. package/cjs/chunks/{bundle-ypRWOZme.js → bundle-Bhfa8ipt.js} +7 -7
  445. package/cjs/chunks/bundle-Bhfa8ipt.js.map +1 -0
  446. package/cjs/chunks/{bundle-BMlAyMNH.js → bundle-BngPWMsd.js} +1 -1
  447. package/cjs/chunks/bundle-BngPWMsd.js.map +1 -0
  448. package/cjs/chunks/{bundle-XCyOjLsG.js → bundle-C3p_3lFI.js} +3 -3
  449. package/cjs/chunks/bundle-C3p_3lFI.js.map +1 -0
  450. package/cjs/chunks/{bundle-Cz_c12Ki.js → bundle-C5JFjCcJ.js} +5 -5
  451. package/cjs/chunks/bundle-C5JFjCcJ.js.map +1 -0
  452. package/cjs/chunks/{bundle-CznDpjTe.js → bundle-CHs395io.js} +1 -1
  453. package/cjs/chunks/bundle-CHs395io.js.map +1 -0
  454. package/cjs/chunks/{bundle-6yGpgiZP.js → bundle-CKCTCe5Y.js} +4 -4
  455. package/cjs/chunks/bundle-CKCTCe5Y.js.map +1 -0
  456. package/cjs/chunks/{bundle-BmZ4luyR.js → bundle-CKSYAC_v.js} +3 -3
  457. package/cjs/chunks/bundle-CKSYAC_v.js.map +1 -0
  458. package/cjs/chunks/{bundle-DKUvopox.js → bundle-CKcQSwT_.js} +3 -3
  459. package/cjs/chunks/bundle-CKcQSwT_.js.map +1 -0
  460. package/cjs/chunks/{bundle-DG3ksxCR.js → bundle-CKhBx4oa.js} +4 -4
  461. package/cjs/chunks/bundle-CKhBx4oa.js.map +1 -0
  462. package/cjs/chunks/{bundle-DMA6rB-A.js → bundle-CNBWylyQ.js} +4 -4
  463. package/cjs/chunks/bundle-CNBWylyQ.js.map +1 -0
  464. package/cjs/chunks/{bundle-B5duwwsI.js → bundle-COPpQkYW.js} +1 -1
  465. package/cjs/chunks/bundle-COPpQkYW.js.map +1 -0
  466. package/cjs/chunks/{bundle-C8GpGF_8.js → bundle-COU8ZAhT.js} +1 -1
  467. package/cjs/chunks/bundle-COU8ZAhT.js.map +1 -0
  468. package/cjs/chunks/{bundle-Dy08PisB.js → bundle-CVCFUpNm.js} +9 -9
  469. package/cjs/chunks/{bundle-Dy08PisB.js.map → bundle-CVCFUpNm.js.map} +1 -1
  470. package/cjs/chunks/{bundle-DIDvKjOo.js → bundle-CX_kBn6i.js} +7 -7
  471. package/cjs/chunks/bundle-CX_kBn6i.js.map +1 -0
  472. package/cjs/chunks/{bundle-BBleHvAS.js → bundle-Cd429rPu.js} +3 -3
  473. package/cjs/chunks/bundle-Cd429rPu.js.map +1 -0
  474. package/cjs/chunks/{bundle-B8jKDk3O.js → bundle-Chl1y42J.js} +1 -1
  475. package/cjs/chunks/bundle-Chl1y42J.js.map +1 -0
  476. package/cjs/chunks/{bundle-CvPDIC6S.js → bundle-Cl1F2dVf.js} +4 -4
  477. package/cjs/chunks/bundle-Cl1F2dVf.js.map +1 -0
  478. package/cjs/chunks/{bundle-DiX_ED1E.js → bundle-Cll76wxt.js} +1 -1
  479. package/cjs/chunks/bundle-Cll76wxt.js.map +1 -0
  480. package/cjs/chunks/{bundle-CKxh6blR.js → bundle-CnunHQIE.js} +8 -8
  481. package/cjs/chunks/bundle-CnunHQIE.js.map +1 -0
  482. package/cjs/chunks/{bundle-CUsh0Afn.js → bundle-CoQLe8gx.js} +1 -1
  483. package/cjs/chunks/{bundle-CUsh0Afn.js.map → bundle-CoQLe8gx.js.map} +1 -1
  484. package/cjs/chunks/{bundle-HUA-G_ip.js → bundle-CrTeH6bJ.js} +1 -1
  485. package/cjs/chunks/bundle-CrTeH6bJ.js.map +1 -0
  486. package/cjs/chunks/{bundle-CyKXslW4.js → bundle-Cu-E4uhH.js} +8 -8
  487. package/cjs/chunks/bundle-Cu-E4uhH.js.map +1 -0
  488. package/cjs/chunks/{bundle-B-ihNr_V.js → bundle-CyqCxWZT.js} +4 -4
  489. package/cjs/chunks/bundle-CyqCxWZT.js.map +1 -0
  490. package/cjs/chunks/{bundle-5L9w6fPj.js → bundle-CzQxs20C.js} +1 -1
  491. package/cjs/chunks/bundle-CzQxs20C.js.map +1 -0
  492. package/cjs/chunks/{bundle-CtlpUph4.js → bundle-CzscNNMs.js} +33 -33
  493. package/cjs/chunks/{bundle-CtlpUph4.js.map → bundle-CzscNNMs.js.map} +1 -1
  494. package/cjs/chunks/{bundle-BJ8umAod.js → bundle-Czv9Hg_y.js} +2 -2
  495. package/cjs/chunks/{bundle-BJ8umAod.js.map → bundle-Czv9Hg_y.js.map} +1 -1
  496. package/cjs/chunks/{bundle-CHORdLLF.js → bundle-D316Q_r0.js} +3 -3
  497. package/cjs/chunks/{bundle-CHORdLLF.js.map → bundle-D316Q_r0.js.map} +1 -1
  498. package/cjs/chunks/{bundle-bKuw5dNh.js → bundle-D3ah5_IJ.js} +1 -1
  499. package/cjs/chunks/{bundle-bKuw5dNh.js.map → bundle-D3ah5_IJ.js.map} +1 -1
  500. package/cjs/chunks/{bundle-Ghbywh3S.js → bundle-D7BpE_pB.js} +12 -12
  501. package/cjs/chunks/bundle-D7BpE_pB.js.map +1 -0
  502. package/cjs/chunks/{bundle-BEwj0I5I.js → bundle-DBDL0nRL.js} +8 -8
  503. package/cjs/chunks/bundle-DBDL0nRL.js.map +1 -0
  504. package/cjs/chunks/{bundle-BLTxyNi9.js → bundle-DCcUF9x7.js} +12 -12
  505. package/cjs/chunks/{bundle-BLTxyNi9.js.map → bundle-DCcUF9x7.js.map} +1 -1
  506. package/cjs/chunks/{bundle-u2J4dWFk.js → bundle-DD_yVvf1.js} +3 -3
  507. package/cjs/chunks/bundle-DD_yVvf1.js.map +1 -0
  508. package/cjs/chunks/{bundle-BYEau3Mi.js → bundle-DFR87f0X.js} +5 -5
  509. package/cjs/chunks/{bundle-BYEau3Mi.js.map → bundle-DFR87f0X.js.map} +1 -1
  510. package/cjs/chunks/{bundle-DvxJOEHp.js → bundle-DHMqj-xF.js} +7 -7
  511. package/cjs/chunks/bundle-DHMqj-xF.js.map +1 -0
  512. package/cjs/chunks/{bundle-DZ0HNIRB.js → bundle-DJFecfEm.js} +4 -4
  513. package/cjs/chunks/bundle-DJFecfEm.js.map +1 -0
  514. package/cjs/chunks/{bundle-Cyv8f6Dp.js → bundle-DOkicHCg.js} +1 -1
  515. package/cjs/chunks/bundle-DOkicHCg.js.map +1 -0
  516. package/cjs/chunks/{bundle-Dv0Tv4Ob.js → bundle-DQ1pnb5z.js} +1 -1
  517. package/cjs/chunks/bundle-DQ1pnb5z.js.map +1 -0
  518. package/cjs/chunks/{bundle-CnyIw-9P.js → bundle-DZ8Uar-L.js} +2 -2
  519. package/cjs/chunks/bundle-DZ8Uar-L.js.map +1 -0
  520. package/cjs/chunks/{bundle-310NMH3A.js → bundle-DZGqZ52T.js} +1 -1
  521. package/cjs/chunks/bundle-DZGqZ52T.js.map +1 -0
  522. package/cjs/chunks/{bundle-BoZAvmkQ.js → bundle-DdsGxM39.js} +6 -6
  523. package/cjs/chunks/bundle-DdsGxM39.js.map +1 -0
  524. package/cjs/chunks/{bundle-BVK9u5RL.js → bundle-DfUHWW29.js} +2 -2
  525. package/cjs/chunks/bundle-DfUHWW29.js.map +1 -0
  526. package/cjs/chunks/{bundle-Cgs4OrTZ.js → bundle-DiJHF9YJ.js} +7 -7
  527. package/cjs/chunks/{bundle-Cgs4OrTZ.js.map → bundle-DiJHF9YJ.js.map} +1 -1
  528. package/cjs/chunks/{bundle-BGONS4W9.js → bundle-DkI6G6PW.js} +1 -1
  529. package/cjs/chunks/{bundle-BGONS4W9.js.map → bundle-DkI6G6PW.js.map} +1 -1
  530. package/cjs/chunks/{bundle-B68_sPfN.js → bundle-DliNMy0M.js} +2 -2
  531. package/cjs/chunks/bundle-DliNMy0M.js.map +1 -0
  532. package/cjs/chunks/{bundle-SFafFZrY.js → bundle-Dlo-vb4P.js} +5 -5
  533. package/cjs/chunks/bundle-Dlo-vb4P.js.map +1 -0
  534. package/cjs/chunks/{bundle-D6xB6Fgw.js → bundle-DmbZjvRc.js} +15 -15
  535. package/cjs/chunks/{bundle-D6xB6Fgw.js.map → bundle-DmbZjvRc.js.map} +1 -1
  536. package/cjs/chunks/{bundle-DDpnpPb0.js → bundle-DqHwOshw.js} +1 -1
  537. package/cjs/chunks/bundle-DqHwOshw.js.map +1 -0
  538. package/cjs/chunks/{bundle-BlMCuxjI.js → bundle-DsHJ31yC.js} +5 -5
  539. package/cjs/chunks/{bundle-BlMCuxjI.js.map → bundle-DsHJ31yC.js.map} +1 -1
  540. package/cjs/chunks/{bundle-tuwCJK5K.js → bundle-DtVAlWM4.js} +1 -1
  541. package/cjs/chunks/bundle-DtVAlWM4.js.map +1 -0
  542. package/cjs/chunks/{bundle-CxRRYmUT.js → bundle-DuABYNkQ.js} +4 -4
  543. package/cjs/chunks/{bundle-CxRRYmUT.js.map → bundle-DuABYNkQ.js.map} +1 -1
  544. package/cjs/chunks/{bundle-CgYQdFxC.js → bundle-DyKIB46z.js} +13 -13
  545. package/cjs/chunks/{bundle-CgYQdFxC.js.map → bundle-DyKIB46z.js.map} +1 -1
  546. package/cjs/chunks/{bundle-WLpJfRu7.js → bundle-Dz196p2P.js} +4 -4
  547. package/cjs/chunks/bundle-Dz196p2P.js.map +1 -0
  548. package/cjs/chunks/{bundle-BK6TOE_5.js → bundle-HqVsOj-b.js} +10 -10
  549. package/cjs/chunks/bundle-HqVsOj-b.js.map +1 -0
  550. package/cjs/chunks/{bundle-wIQiwE1h.js → bundle-IUtR_XJG.js} +6 -6
  551. package/cjs/chunks/bundle-IUtR_XJG.js.map +1 -0
  552. package/cjs/chunks/{bundle-aHy47zCA.js → bundle-KhVg_sE0.js} +1 -1
  553. package/cjs/chunks/bundle-KhVg_sE0.js.map +1 -0
  554. package/cjs/chunks/{bundle-BBWgt9n1.js → bundle-L7tKUhzo.js} +1 -1
  555. package/cjs/chunks/bundle-L7tKUhzo.js.map +1 -0
  556. package/cjs/chunks/{bundle-BGWx_pcP.js → bundle-NHTJoN9Q.js} +1 -1
  557. package/cjs/chunks/bundle-NHTJoN9Q.js.map +1 -0
  558. package/cjs/chunks/{bundle-DFtSkbmI.js → bundle-O10pK2XX.js} +3 -3
  559. package/cjs/chunks/bundle-O10pK2XX.js.map +1 -0
  560. package/cjs/chunks/{bundle-8BUtMsck.js → bundle-RjGO8My3.js} +2 -2
  561. package/cjs/chunks/bundle-RjGO8My3.js.map +1 -0
  562. package/cjs/chunks/{bundle-DUUHkjIn.js → bundle-TMLyypqr.js} +2 -2
  563. package/cjs/chunks/bundle-TMLyypqr.js.map +1 -0
  564. package/cjs/chunks/{bundle-b2IC6-e7.js → bundle-VU45mQZx.js} +1 -1
  565. package/cjs/chunks/bundle-VU45mQZx.js.map +1 -0
  566. package/cjs/chunks/{bundle-B2sezGCK.js → bundle-XaUvL9w0.js} +12 -12
  567. package/cjs/chunks/{bundle-B2sezGCK.js.map → bundle-XaUvL9w0.js.map} +1 -1
  568. package/cjs/chunks/{bundle-DuB-liuN.js → bundle-_MVb0Kx_.js} +14 -14
  569. package/cjs/chunks/bundle-_MVb0Kx_.js.map +1 -0
  570. package/cjs/chunks/{bundle-DBjjQb1z.js → bundle-efExYkYv.js} +3 -3
  571. package/cjs/chunks/bundle-efExYkYv.js.map +1 -0
  572. package/cjs/chunks/{bundle-DnhCPMJ1.js → bundle-f__T9xli.js} +1 -1
  573. package/cjs/chunks/bundle-f__T9xli.js.map +1 -0
  574. package/cjs/chunks/{bundle-d99fH1a-.js → bundle-fsMd9LLE.js} +5 -5
  575. package/cjs/chunks/{bundle-d99fH1a-.js.map → bundle-fsMd9LLE.js.map} +1 -1
  576. package/cjs/chunks/{bundle-CENfe91j.js → bundle-h6a18UoJ.js} +12 -12
  577. package/cjs/chunks/{bundle-CENfe91j.js.map → bundle-h6a18UoJ.js.map} +1 -1
  578. package/cjs/chunks/{bundle-Bks1cRDf.js → bundle-m5uOYWuv.js} +4 -4
  579. package/cjs/chunks/bundle-m5uOYWuv.js.map +1 -0
  580. package/cjs/chunks/{bundle-B83lbsnt.js → bundle-tM7nBlLo.js} +1 -1
  581. package/cjs/chunks/bundle-tM7nBlLo.js.map +1 -0
  582. package/cjs/chunks/{bundle-hnk7D_z0.js → bundle-tocC95yV.js} +7 -7
  583. package/cjs/chunks/bundle-tocC95yV.js.map +1 -0
  584. package/cjs/hooks/useConnectionState.js +5 -5
  585. package/cjs/hooks/useLocalization.js +4 -4
  586. package/cjs/hooks/useModal.js +13 -13
  587. package/cjs/index.js +90 -90
  588. package/cjs/pubSub/topics.js +1 -1
  589. package/cjs/sendbirdSelectors.js +2 -2
  590. package/cjs/ui/Accordion.js +2 -2
  591. package/cjs/ui/AccordionGroup.js +1 -1
  592. package/cjs/ui/AdminMessage.js +3 -3
  593. package/cjs/ui/Avatar.js +4 -4
  594. package/cjs/ui/Badge.js +5 -5
  595. package/cjs/ui/BottomSheet.js +13 -13
  596. package/cjs/ui/Button.js +3 -3
  597. package/cjs/ui/ChannelAvatar.js +5 -5
  598. package/cjs/ui/ConnectionStatus.js +6 -6
  599. package/cjs/ui/ContextMenu.js +14 -14
  600. package/cjs/ui/DateSeparator.js +4 -4
  601. package/cjs/ui/EmojiReactions.js +23 -23
  602. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
  603. package/cjs/ui/FileMessageItemBody.js +13 -13
  604. package/cjs/ui/FileViewer.js +19 -19
  605. package/cjs/ui/Header.js +6 -6
  606. package/cjs/ui/Icon.js +2 -2
  607. package/cjs/ui/IconButton.js +1 -1
  608. package/cjs/ui/ImageRenderer.js +2 -2
  609. package/cjs/ui/Input.js +3 -3
  610. package/cjs/ui/Label.js +3 -3
  611. package/cjs/ui/LinkLabel.js +4 -4
  612. package/cjs/ui/Loader.js +2 -2
  613. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  614. package/cjs/ui/MentionLabel.js +19 -19
  615. package/cjs/ui/MentionUserLabel.js +2 -2
  616. package/cjs/ui/MessageContent.js +104 -174
  617. package/cjs/ui/MessageContent.js.map +1 -1
  618. package/cjs/ui/MessageFeedbackFailedModal.js +16 -13
  619. package/cjs/ui/MessageFeedbackFailedModal.js.map +1 -1
  620. package/cjs/ui/MessageFeedbackModal.js +16 -13
  621. package/cjs/ui/MessageFeedbackModal.js.map +1 -1
  622. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  623. package/cjs/ui/MessageInput.js +20 -20
  624. package/cjs/ui/MessageItemMenu.js +15 -15
  625. package/cjs/ui/MessageItemReactionMenu.js +16 -16
  626. package/cjs/ui/MessageMenu.js +16 -16
  627. package/cjs/ui/MessageSearchFileItem.js +17 -17
  628. package/cjs/ui/MessageSearchItem.js +12 -12
  629. package/cjs/ui/MessageStatus.js +15 -15
  630. package/cjs/ui/MessageTemplate.js +1 -1
  631. package/cjs/ui/MobileFeedbackMenu.js +13 -13
  632. package/cjs/ui/MobileMenu.js +18 -18
  633. package/cjs/ui/Modal.js +12 -12
  634. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  635. package/cjs/ui/OGMessageItemBody.js +23 -23
  636. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  637. package/cjs/ui/OpenChannelAvatar.js +8 -8
  638. package/cjs/ui/OpenchannelConversationHeader.js +8 -8
  639. package/cjs/ui/OpenchannelFileMessage.js +24 -24
  640. package/cjs/ui/OpenchannelOGMessage.js +26 -26
  641. package/cjs/ui/OpenchannelThumbnailMessage.js +23 -23
  642. package/cjs/ui/OpenchannelUserMessage.js +24 -24
  643. package/cjs/ui/PlaceHolder.js +6 -6
  644. package/cjs/ui/PlaybackTime.js +3 -3
  645. package/cjs/ui/ProgressBar.js +1 -1
  646. package/cjs/ui/QuoteMessage.js +12 -12
  647. package/cjs/ui/QuoteMessageInput.js +12 -12
  648. package/cjs/ui/ReactionBadge.js +3 -3
  649. package/cjs/ui/ReactionButton.js +4 -4
  650. package/cjs/ui/SortByRow.js +2 -2
  651. package/cjs/ui/TemplateMessageItemBody.js +14 -14
  652. package/cjs/ui/TextButton.js +2 -2
  653. package/cjs/ui/TextMessageItemBody.js +22 -22
  654. package/cjs/ui/ThreadReplies.js +8 -8
  655. package/cjs/ui/ThumbnailMessageItemBody.js +10 -10
  656. package/cjs/ui/Toggle.js +4 -4
  657. package/cjs/ui/Tooltip.js +3 -3
  658. package/cjs/ui/TooltipWrapper.js +1 -1
  659. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  660. package/cjs/ui/UnknownMessageItemBody.js +10 -10
  661. package/cjs/ui/UserListItem.js +19 -19
  662. package/cjs/ui/UserListItemMenu.js +16 -16
  663. package/cjs/ui/UserProfile.js +13 -13
  664. package/cjs/ui/VoiceMessageInput.js +9 -9
  665. package/cjs/ui/VoiceMessageItemBody.js +14 -14
  666. package/cjs/ui/Word.js +19 -19
  667. package/cjs/useSendbirdStateContext.js +4 -4
  668. package/cjs/utils/message/isVoiceMessage.js +6 -6
  669. package/cjs/withSendbird.js +24 -24
  670. package/hooks/useConnectionState.js +5 -5
  671. package/hooks/useLocalization.js +4 -4
  672. package/hooks/useModal.js +14 -14
  673. package/index.js +90 -90
  674. package/package.json +2 -2
  675. package/pubSub/topics.js +1 -1
  676. package/sendbirdSelectors.js +2 -2
  677. package/types/ui/FormMessageItemBody/FormInput.d.ts +6 -0
  678. package/types/ui/FormMessageItemBody/index.d.ts +3 -0
  679. package/types/ui/MessageFeedbackFailedModal/index.d.ts +6 -0
  680. package/types/ui/MessageFeedbackModal/index.d.ts +6 -0
  681. package/types/ui/MobileFeedbackMenu/index.d.ts +3 -0
  682. package/types/utils/index.d.ts +3 -0
  683. package/ui/Accordion.js +2 -2
  684. package/ui/AccordionGroup.js +1 -1
  685. package/ui/AdminMessage.js +3 -3
  686. package/ui/Avatar.js +4 -4
  687. package/ui/Badge.js +5 -5
  688. package/ui/BottomSheet.js +13 -13
  689. package/ui/Button.js +3 -3
  690. package/ui/ChannelAvatar.js +5 -5
  691. package/ui/ConnectionStatus.js +6 -6
  692. package/ui/ContextMenu.js +14 -14
  693. package/ui/DateSeparator.js +4 -4
  694. package/ui/EmojiReactions.js +23 -23
  695. package/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
  696. package/ui/FileMessageItemBody.js +13 -13
  697. package/ui/FileViewer.js +19 -19
  698. package/ui/Header.js +6 -6
  699. package/ui/Icon.js +2 -2
  700. package/ui/IconButton.js +1 -1
  701. package/ui/ImageRenderer.js +2 -2
  702. package/ui/Input.js +3 -3
  703. package/ui/Label.js +3 -3
  704. package/ui/LinkLabel.js +4 -4
  705. package/ui/Loader.js +2 -2
  706. package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  707. package/ui/MentionLabel.js +19 -19
  708. package/ui/MentionUserLabel.js +2 -2
  709. package/ui/MessageContent.js +66 -136
  710. package/ui/MessageContent.js.map +1 -1
  711. package/ui/MessageFeedbackFailedModal.js +16 -13
  712. package/ui/MessageFeedbackFailedModal.js.map +1 -1
  713. package/ui/MessageFeedbackModal.js +16 -13
  714. package/ui/MessageFeedbackModal.js.map +1 -1
  715. package/ui/MessageInput/hooks/usePaste.js +7 -7
  716. package/ui/MessageInput.js +20 -20
  717. package/ui/MessageItemMenu.js +15 -15
  718. package/ui/MessageItemReactionMenu.js +16 -16
  719. package/ui/MessageMenu.js +16 -16
  720. package/ui/MessageSearchFileItem.js +17 -17
  721. package/ui/MessageSearchItem.js +12 -12
  722. package/ui/MessageStatus.js +15 -15
  723. package/ui/MessageTemplate.js +1 -1
  724. package/ui/MobileFeedbackMenu.js +13 -13
  725. package/ui/MobileMenu.js +18 -18
  726. package/ui/Modal.js +12 -12
  727. package/ui/MutedAvatarOverlay.js +2 -2
  728. package/ui/OGMessageItemBody.js +23 -23
  729. package/ui/OpenChannelAdminMessage.js +3 -3
  730. package/ui/OpenChannelAvatar.js +8 -8
  731. package/ui/OpenchannelConversationHeader.js +8 -8
  732. package/ui/OpenchannelFileMessage.js +24 -24
  733. package/ui/OpenchannelOGMessage.js +26 -26
  734. package/ui/OpenchannelThumbnailMessage.js +23 -23
  735. package/ui/OpenchannelUserMessage.js +24 -24
  736. package/ui/PlaceHolder.js +6 -6
  737. package/ui/PlaybackTime.js +3 -3
  738. package/ui/ProgressBar.js +1 -1
  739. package/ui/QuoteMessage.js +12 -12
  740. package/ui/QuoteMessageInput.js +12 -12
  741. package/ui/ReactionBadge.js +3 -3
  742. package/ui/ReactionButton.js +4 -4
  743. package/ui/SortByRow.js +2 -2
  744. package/ui/TemplateMessageItemBody.js +14 -14
  745. package/ui/TextButton.js +2 -2
  746. package/ui/TextMessageItemBody.js +22 -22
  747. package/ui/ThreadReplies.js +8 -8
  748. package/ui/ThumbnailMessageItemBody.js +10 -10
  749. package/ui/Toggle.js +4 -4
  750. package/ui/Tooltip.js +3 -3
  751. package/ui/TooltipWrapper.js +1 -1
  752. package/ui/TypingIndicatorBubble.js +4 -4
  753. package/ui/UnknownMessageItemBody.js +10 -10
  754. package/ui/UserListItem.js +19 -19
  755. package/ui/UserListItemMenu.js +17 -17
  756. package/ui/UserProfile.js +13 -13
  757. package/ui/VoiceMessageInput.js +9 -9
  758. package/ui/VoiceMessageItemBody.js +14 -14
  759. package/ui/Word.js +19 -19
  760. package/useSendbirdStateContext.js +4 -4
  761. package/utils/message/isVoiceMessage.js +6 -6
  762. package/withSendbird.js +24 -24
  763. package/chunks/bundle-0vqOELrK.js.map +0 -1
  764. package/chunks/bundle-B0IHR3Q1.js.map +0 -1
  765. package/chunks/bundle-B2miZUGu.js.map +0 -1
  766. package/chunks/bundle-B7k8kmYr.js.map +0 -1
  767. package/chunks/bundle-BC4qBi6k.js.map +0 -1
  768. package/chunks/bundle-BEErY_8u.js.map +0 -1
  769. package/chunks/bundle-BEdxA-2Z.js.map +0 -1
  770. package/chunks/bundle-BHXeyOom.js.map +0 -1
  771. package/chunks/bundle-BOLcm9vh.js.map +0 -1
  772. package/chunks/bundle-BPZF5rRq.js.map +0 -1
  773. package/chunks/bundle-BVSZB8X3.js.map +0 -1
  774. package/chunks/bundle-Bgk_utSz.js.map +0 -1
  775. package/chunks/bundle-Bpwo3SAQ.js.map +0 -1
  776. package/chunks/bundle-CCnimzRm.js.map +0 -1
  777. package/chunks/bundle-CEeF7X-d.js.map +0 -1
  778. package/chunks/bundle-CGNKFK26.js.map +0 -1
  779. package/chunks/bundle-CPF7cWU6.js.map +0 -1
  780. package/chunks/bundle-CPRu7it5.js.map +0 -1
  781. package/chunks/bundle-CZK_MkE6.js.map +0 -1
  782. package/chunks/bundle-Cfq7wRxQ.js.map +0 -1
  783. package/chunks/bundle-CfxwKFS5.js.map +0 -1
  784. package/chunks/bundle-Ck5bRHwA.js.map +0 -1
  785. package/chunks/bundle-CuLHQGf2.js.map +0 -1
  786. package/chunks/bundle-CuRh0Jsq.js.map +0 -1
  787. package/chunks/bundle-D-JCGtym.js.map +0 -1
  788. package/chunks/bundle-D1cI9kRf.js.map +0 -1
  789. package/chunks/bundle-D3Dpium4.js.map +0 -1
  790. package/chunks/bundle-D3rJTH4D.js.map +0 -1
  791. package/chunks/bundle-D6qBUoaE.js.map +0 -1
  792. package/chunks/bundle-D6wlSO9k.js.map +0 -1
  793. package/chunks/bundle-D9khldtR.js.map +0 -1
  794. package/chunks/bundle-DAIIUGai.js.map +0 -1
  795. package/chunks/bundle-DFfxC3zu.js.map +0 -1
  796. package/chunks/bundle-DMETKDWa.js.map +0 -1
  797. package/chunks/bundle-DOwTRYa0.js.map +0 -1
  798. package/chunks/bundle-DUPSHqVe.js.map +0 -1
  799. package/chunks/bundle-DVwnmwNv.js.map +0 -1
  800. package/chunks/bundle-DcwqOFAo.js.map +0 -1
  801. package/chunks/bundle-DgUr6sGz.js.map +0 -1
  802. package/chunks/bundle-Dmqve2pP.js.map +0 -1
  803. package/chunks/bundle-DvQGsjFi.js.map +0 -1
  804. package/chunks/bundle-DxP5xNny.js.map +0 -1
  805. package/chunks/bundle-NG4uLTGg.js.map +0 -1
  806. package/chunks/bundle-PHBSR55j.js.map +0 -1
  807. package/chunks/bundle-RKLDiRza.js.map +0 -1
  808. package/chunks/bundle-Ygn2n6dz.js.map +0 -1
  809. package/chunks/bundle-dJTl_jQ2.js.map +0 -1
  810. package/chunks/bundle-mimAWXZs.js.map +0 -1
  811. package/chunks/bundle-s-ZF6ERo.js.map +0 -1
  812. package/chunks/bundle-xfy1mdqO.js.map +0 -1
  813. package/cjs/chunks/bundle-310NMH3A.js.map +0 -1
  814. package/cjs/chunks/bundle-5L9w6fPj.js.map +0 -1
  815. package/cjs/chunks/bundle-6yGpgiZP.js.map +0 -1
  816. package/cjs/chunks/bundle-8BUtMsck.js.map +0 -1
  817. package/cjs/chunks/bundle-B-ihNr_V.js.map +0 -1
  818. package/cjs/chunks/bundle-B5duwwsI.js.map +0 -1
  819. package/cjs/chunks/bundle-B68_sPfN.js.map +0 -1
  820. package/cjs/chunks/bundle-B83lbsnt.js.map +0 -1
  821. package/cjs/chunks/bundle-B8jKDk3O.js.map +0 -1
  822. package/cjs/chunks/bundle-BBWgt9n1.js.map +0 -1
  823. package/cjs/chunks/bundle-BBleHvAS.js.map +0 -1
  824. package/cjs/chunks/bundle-BEwj0I5I.js.map +0 -1
  825. package/cjs/chunks/bundle-BGWx_pcP.js.map +0 -1
  826. package/cjs/chunks/bundle-BK6TOE_5.js.map +0 -1
  827. package/cjs/chunks/bundle-BMlAyMNH.js.map +0 -1
  828. package/cjs/chunks/bundle-BMvff8GA.js.map +0 -1
  829. package/cjs/chunks/bundle-BVK9u5RL.js.map +0 -1
  830. package/cjs/chunks/bundle-BW6bZYUd.js.map +0 -1
  831. package/cjs/chunks/bundle-Big5EiPX.js.map +0 -1
  832. package/cjs/chunks/bundle-Bks1cRDf.js.map +0 -1
  833. package/cjs/chunks/bundle-BmZ4luyR.js.map +0 -1
  834. package/cjs/chunks/bundle-BoZAvmkQ.js.map +0 -1
  835. package/cjs/chunks/bundle-C1-19p4S.js.map +0 -1
  836. package/cjs/chunks/bundle-C8GpGF_8.js.map +0 -1
  837. package/cjs/chunks/bundle-CGWI78fM.js.map +0 -1
  838. package/cjs/chunks/bundle-CKxh6blR.js.map +0 -1
  839. package/cjs/chunks/bundle-Cg9M1U0A.js.map +0 -1
  840. package/cjs/chunks/bundle-CiRyF7gN.js.map +0 -1
  841. package/cjs/chunks/bundle-CnyIw-9P.js.map +0 -1
  842. package/cjs/chunks/bundle-CvPDIC6S.js.map +0 -1
  843. package/cjs/chunks/bundle-CyKXslW4.js.map +0 -1
  844. package/cjs/chunks/bundle-Cyv8f6Dp.js.map +0 -1
  845. package/cjs/chunks/bundle-Cz_c12Ki.js.map +0 -1
  846. package/cjs/chunks/bundle-CznDpjTe.js.map +0 -1
  847. package/cjs/chunks/bundle-DAU8asBH.js.map +0 -1
  848. package/cjs/chunks/bundle-DBjjQb1z.js.map +0 -1
  849. package/cjs/chunks/bundle-DDpnpPb0.js.map +0 -1
  850. package/cjs/chunks/bundle-DFtSkbmI.js.map +0 -1
  851. package/cjs/chunks/bundle-DG3ksxCR.js.map +0 -1
  852. package/cjs/chunks/bundle-DIDvKjOo.js.map +0 -1
  853. package/cjs/chunks/bundle-DKUvopox.js.map +0 -1
  854. package/cjs/chunks/bundle-DMA6rB-A.js.map +0 -1
  855. package/cjs/chunks/bundle-DTg3wGbo.js.map +0 -1
  856. package/cjs/chunks/bundle-DUUHkjIn.js.map +0 -1
  857. package/cjs/chunks/bundle-DZ0HNIRB.js.map +0 -1
  858. package/cjs/chunks/bundle-DiX_ED1E.js.map +0 -1
  859. package/cjs/chunks/bundle-DnhCPMJ1.js.map +0 -1
  860. package/cjs/chunks/bundle-Dq-f9_1G.js.map +0 -1
  861. package/cjs/chunks/bundle-DuB-liuN.js.map +0 -1
  862. package/cjs/chunks/bundle-Dv0Tv4Ob.js.map +0 -1
  863. package/cjs/chunks/bundle-DvxJOEHp.js.map +0 -1
  864. package/cjs/chunks/bundle-Ghbywh3S.js.map +0 -1
  865. package/cjs/chunks/bundle-HUA-G_ip.js.map +0 -1
  866. package/cjs/chunks/bundle-O6xYslTS.js.map +0 -1
  867. package/cjs/chunks/bundle-OZGVCQmA.js.map +0 -1
  868. package/cjs/chunks/bundle-SFafFZrY.js.map +0 -1
  869. package/cjs/chunks/bundle-WLpJfRu7.js.map +0 -1
  870. package/cjs/chunks/bundle-XC2N8EdZ.js.map +0 -1
  871. package/cjs/chunks/bundle-XCyOjLsG.js.map +0 -1
  872. package/cjs/chunks/bundle-aHy47zCA.js.map +0 -1
  873. package/cjs/chunks/bundle-b2IC6-e7.js.map +0 -1
  874. package/cjs/chunks/bundle-hnk7D_z0.js.map +0 -1
  875. package/cjs/chunks/bundle-tuwCJK5K.js.map +0 -1
  876. package/cjs/chunks/bundle-u2J4dWFk.js.map +0 -1
  877. package/cjs/chunks/bundle-uEyQwyEV.js.map +0 -1
  878. package/cjs/chunks/bundle-wIQiwE1h.js.map +0 -1
  879. package/cjs/chunks/bundle-ypRWOZme.js.map +0 -1
@@ -1,7 +1,7 @@
1
1
  import React__default from 'react';
2
- import { C as ContextMenu, b as MenuItems, c as MenuItem } from './bundle-CasGi9da.js';
3
- import { u as useLocalization } from './bundle-s-ZF6ERo.js';
4
- import { u as useSendbird } from './bundle-DMETKDWa.js';
2
+ import { C as ContextMenu, b as MenuItems, c as MenuItem } from './bundle-DFwAWoi7.js';
3
+ import { u as useLocalization } from './bundle-CwWHzn0O.js';
4
+ import { u as useSendbird } from './bundle-C98ZxHO9.js';
5
5
 
6
6
  var OpenChannelMessageStatusTypes = {
7
7
  NONE: 'none',
@@ -94,4 +94,4 @@ var OpenChannelMobileMenu = function (props) {
94
94
  };
95
95
 
96
96
  export { OpenChannelMobileMenu as O, isFineEdit as a, isFineResend as b, isFineDelete as c, checkIsPending as d, checkIsFailed as e, checkIsSent as f, getSenderFromMessage as g, isFineCopy as i, showMenuTrigger as s };
97
- //# sourceMappingURL=bundle--rmSBKsK.js.map
97
+ //# sourceMappingURL=bundle-D3vBmq0k.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle--rmSBKsK.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-D3vBmq0k.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -66,4 +66,4 @@ function toDate(argument) {
66
66
  }
67
67
 
68
68
  export { _typeof as _, requiredArgs as r, toDate as t };
69
- //# sourceMappingURL=bundle-MPV86_iE.js.map
69
+ //# sourceMappingURL=bundle-DArDRDUr.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-MPV86_iE.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}\nexport { _typeof as default };","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAA,SAAS,OAAO,CAAC,CAAC,EAAE;AACpB,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
1
+ {"version":3,"file":"bundle-DArDRDUr.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}\nexport { _typeof as default };","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAA,SAAS,OAAO,CAAC,CAAC,EAAE;AACpB,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
@@ -1,8 +1,8 @@
1
1
  import { useCallback, useEffect } from 'react';
2
2
  import { ReplyType } from '@sendbird/chat/message';
3
- import { s as scrollIntoLast, d as scrollToRenderedMessage } from './bundle-DLE838IF.js';
4
- import './bundle-CEeF7X-d.js';
5
- import { f as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-mimAWXZs.js';
3
+ import { s as scrollIntoLast, d as scrollToRenderedMessage } from './bundle-DfkEzAlf.js';
4
+ import './bundle-CIlc1dvT.js';
5
+ import { f as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-DobIp5EF.js';
6
6
 
7
7
  // For legacy
8
8
  // These are not used for collections(GroupChannel)
@@ -156,4 +156,4 @@ function useInitialMessagesFetch(_a, _b) {
156
156
  }
157
157
 
158
158
  export { FETCH_INITIAL_MESSAGES_START as F, MARK_AS_READ as M, NEXT_RESULT_SIZE as N, ON_MESSAGE_RECEIVED as O, PREV_RESULT_SIZE as P, RESET_MESSAGES as R, SEND_MESSAGE_START as S, FETCH_INITIAL_MESSAGES_SUCCESS as a, FETCH_PREV_MESSAGES_SUCCESS as b, FETCH_NEXT_MESSAGES_SUCCESS as c, FETCH_INITIAL_MESSAGES_FAILURE as d, FETCH_PREV_MESSAGES_FAILURE as e, FETCH_NEXT_MESSAGES_FAILURE as f, SEND_MESSAGE_SUCCESS as g, SEND_MESSAGE_FAILURE as h, SET_CURRENT_CHANNEL as i, SET_CHANNEL_INVALID as j, ON_MESSAGE_UPDATED as k, ON_MESSAGE_THREAD_INFO_UPDATED as l, RESEND_MESSAGE_START as m, ON_MESSAGE_DELETED as n, ON_MESSAGE_DELETED_BY_REQ_ID as o, SET_EMOJI_CONTAINER as p, ON_REACTION_UPDATED as q, MESSAGE_LIST_PARAMS_CHANGED as r, ON_FILE_INFO_UPLOADED as s, ON_TYPING_STATUS_UPDATED as t, MARK_AS_UNREAD as u, useInitialMessagesFetch as v, channelActions as w };
159
- //# sourceMappingURL=bundle-CDLjUZwZ.js.map
159
+ //# sourceMappingURL=bundle-DEL8ljY9.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CDLjUZwZ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DEL8ljY9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,15 +1,15 @@
1
- import { e as __extends, _ as __assign, c as __spreadArray } from './bundle-CPu_RwBt.js';
1
+ import { e as __extends, _ as __assign, c as __spreadArray } from './bundle-fT16CxUq.js';
2
2
  import React__default, { useState, useRef, useCallback, useEffect, Children, createContext, useContext } from 'react';
3
3
  import { createPortal } from 'react-dom';
4
- import { c as classnames } from './bundle-BC4qBi6k.js';
4
+ import { c as classnames } from './bundle-BxRMl0NH.js';
5
5
  import { Role } from '@sendbird/chat';
6
6
  import { OpenChannel } from '@sendbird/chat/openChannel';
7
7
  import SortByRow from '../ui/SortByRow.js';
8
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-D3Dpium4.js';
8
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DzM4yc5s.js';
9
9
  import '../ui/IconButton.js';
10
- import './bundle-BwE_FPIh.js';
11
- import './bundle-s-ZF6ERo.js';
12
- import './bundle-Ct3SgygU.js';
10
+ import './bundle-ByVmmqcj.js';
11
+ import './bundle-CwWHzn0O.js';
12
+ import './bundle-VqoQQamR.js';
13
13
  import '@sendbird/chat/groupChannel';
14
14
 
15
15
  var APP_LAYOUT_ROOT = 'sendbird-app__layout';
@@ -340,4 +340,4 @@ function ContextMenu(_a) {
340
340
  }
341
341
 
342
342
  export { APP_LAYOUT_ROOT as A, BottomSheetMenuItem as B, ContextMenu as C, EMOJI_MENU_ROOT_ID as E, MessageMenuProvider as M, OperatorMenuItem as O, MenuItem$1 as a, MenuItems as b, MenuItem as c, MENU_ROOT_ID as d, MENU_OBSERVING_CLASS_NAME as e, EmojiListItems as f, getObservingId as g, MuteMenuItem as h, EmojiReactionListRoot as i, MenuRoot as j, useMessageMenuContext as u };
343
- //# sourceMappingURL=bundle-CasGi9da.js.map
343
+ //# sourceMappingURL=bundle-DFwAWoi7.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CasGi9da.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DFwAWoi7.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { i as isSameDay } from './bundle-CsuVM74g.js';
2
- import { r as requiredArgs, t as toDate } from './bundle-MPV86_iE.js';
3
- import { t as toInteger } from './bundle-ClefHJJw.js';
1
+ import { i as isSameDay } from './bundle-DbWCSmuo.js';
2
+ import { r as requiredArgs, t as toDate } from './bundle-DArDRDUr.js';
3
+ import { t as toInteger } from './bundle-DvfLia2p.js';
4
4
 
5
5
  /**
6
6
  * @name isToday
@@ -163,4 +163,4 @@ function isYesterday(dirtyDate) {
163
163
  }
164
164
 
165
165
  export { isYesterday as a, isThisYear as b, isToday as i };
166
- //# sourceMappingURL=bundle-CKMn5fk3.js.map
166
+ //# sourceMappingURL=bundle-DJM1hhs4.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CKMn5fk3.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
1
+ {"version":3,"file":"bundle-DJM1hhs4.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
@@ -1,21 +1,21 @@
1
- import { _ as __assign } from './bundle-CPu_RwBt.js';
1
+ import { _ as __assign } from './bundle-fT16CxUq.js';
2
2
  import React__default, { useState } from 'react';
3
- import { u as useLongPress } from './bundle-CZK_MkE6.js';
4
- import { u as useLocalization } from './bundle-s-ZF6ERo.js';
5
- import { u as useMediaQueryContext } from './bundle-Bgk_utSz.js';
6
- import { n as noop } from './bundle-BC4qBi6k.js';
7
- import { i as isVoiceMessage } from './bundle-BwE_FPIh.js';
8
- import { a as getLastMessageText, b as getTotalMembers, M as MessageStatus, c as getLastMessageCreatedAt, d as getChannelUnreadMessageCount } from './bundle-B-kVJIxO.js';
3
+ import { u as useLongPress } from './bundle-C584816X.js';
4
+ import { u as useLocalization } from './bundle-CwWHzn0O.js';
5
+ import { u as useMediaQueryContext } from './bundle-DcfQg8Uy.js';
6
+ import { n as noop } from './bundle-BxRMl0NH.js';
7
+ import { i as isVoiceMessage } from './bundle-ByVmmqcj.js';
8
+ import { a as getLastMessageText, b as getTotalMembers, M as MessageStatus, c as getLastMessageCreatedAt, d as getChannelUnreadMessageCount } from './bundle-BQqf09uI.js';
9
9
  import { TypingIndicatorText } from '../GroupChannel/components/TypingIndicator.js';
10
10
  import Badge from '../ui/Badge.js';
11
11
  import ChannelAvatar from '../ui/ChannelAvatar.js';
12
12
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
13
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-D3Dpium4.js';
13
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DzM4yc5s.js';
14
14
  import MentionUserLabel from '../ui/MentionUserLabel.js';
15
- import { M as Modal } from './bundle-DvQGsjFi.js';
15
+ import { M as Modal } from './bundle-Bq3cKfll.js';
16
16
  import TextButton from '../ui/TextButton.js';
17
- import { g as getChannelPreviewMessage } from './bundle-0XJDkYUm.js';
18
- import { u as useSendbird } from './bundle-DMETKDWa.js';
17
+ import { g as getChannelPreviewMessage } from './bundle-DiDPUa4G.js';
18
+ import { u as useSendbird } from './bundle-C98ZxHO9.js';
19
19
 
20
20
  var GroupChannelListItemView = function (_a) {
21
21
  var channel = _a.channel, tabIndex = _a.tabIndex, isTyping = _a.isTyping, isSelected = _a.isSelected, channelName = _a.channelName, _b = _a.isMessageStatusEnabled, isMessageStatusEnabled = _b === void 0 ? true : _b, _c = _a.onClick, onClick = _c === void 0 ? noop : _c, _d = _a.onLeaveChannel, onLeaveChannel = _d === void 0 ? function () { return Promise.resolve(); } : _d, renderChannelAction = _a.renderChannelAction;
@@ -90,4 +90,4 @@ var GroupChannelListItemView = function (_a) {
90
90
  };
91
91
 
92
92
  export { GroupChannelListItemView as G };
93
- //# sourceMappingURL=bundle-BH9M7i98.js.map
93
+ //# sourceMappingURL=bundle-DKx3NR1w.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-BH9M7i98.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DKx3NR1w.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,9 +1,9 @@
1
- import { c as __spreadArray } from './bundle-CPu_RwBt.js';
1
+ import { c as __spreadArray } from './bundle-fT16CxUq.js';
2
2
  import React__default from 'react';
3
3
  import ImageRenderer from '../ui/ImageRenderer.js';
4
- import { p as pxToNumber } from './bundle-D6wlSO9k.js';
4
+ import { p as pxToNumber } from './bundle-CjHWsy4S.js';
5
5
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
6
- import { c as classnames } from './bundle-BC4qBi6k.js';
6
+ import { c as classnames } from './bundle-BxRMl0NH.js';
7
7
 
8
8
  var AvatarDefault = function (props) {
9
9
  var width = props.width, height = props.height, text = props.text;
@@ -68,4 +68,4 @@ function Avatar(_a, ref) {
68
68
  var Avatar$1 = React__default.forwardRef(Avatar);
69
69
 
70
70
  export { Avatar$1 as A, AvatarDefault as a, AvatarInner as b };
71
- //# sourceMappingURL=bundle-BHXeyOom.js.map
71
+ //# sourceMappingURL=bundle-DMP4IOmZ.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DMP4IOmZ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -22,4 +22,4 @@ var changeColorToClassName = function (color) {
22
22
  };
23
23
 
24
24
  export { Colors as C, changeColorToClassName as c };
25
- //# sourceMappingURL=bundle-0vqOELrK.js.map
25
+ //# sourceMappingURL=bundle-DQu3BLLd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DQu3BLLd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -20,4 +20,4 @@ function useReconnectOnIdle(isOnline, currentGroupChannel, reconnectOnIdle) {
20
20
  }
21
21
 
22
22
  export { useReconnectOnIdle as u };
23
- //# sourceMappingURL=bundle-D9khldtR.js.map
23
+ //# sourceMappingURL=bundle-DYU7abrP.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DYU7abrP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
- import { r as requiredArgs, t as toDate } from './bundle-MPV86_iE.js';
1
+ import { r as requiredArgs, t as toDate } from './bundle-DArDRDUr.js';
2
2
 
3
3
  /**
4
4
  * @name startOfDay
@@ -61,4 +61,4 @@ function isSameDay(dirtyDateLeft, dirtyDateRight) {
61
61
  }
62
62
 
63
63
  export { isSameDay as i };
64
- //# sourceMappingURL=bundle-CsuVM74g.js.map
64
+ //# sourceMappingURL=bundle-DbWCSmuo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CsuVM74g.js","sources":["../../node_modules/date-fns/esm/startOfDay/index.js","../../node_modules/date-fns/esm/isSameDay/index.js"],"sourcesContent":["import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name startOfDay\n * @category Day Helpers\n * @summary Return the start of a day for the given date.\n *\n * @description\n * Return the start of a day for the given date.\n * The result will be in the local timezone.\n *\n * @param {Date|Number} date - the original date\n * @returns {Date} the start of a day\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // The start of a day for 2 September 2014 11:55:00:\n * const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 00:00:00\n */\nexport default function startOfDay(dirtyDate) {\n requiredArgs(1, arguments);\n var date = toDate(dirtyDate);\n date.setHours(0, 0, 0, 0);\n return date;\n}","import startOfDay from \"../startOfDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameDay\n * @category Day Helpers\n * @summary Are the given dates in the same day (and year and month)?\n *\n * @description\n * Are the given dates in the same day (and year and month)?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same day (and year and month)\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 4 September 06:00:00 and 4 September 18:00:00 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0))\n * //=> true\n *\n * @example\n * // Are 4 September and 4 October in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2014, 9, 4))\n * //=> false\n *\n * @example\n * // Are 4 September, 2014 and 4 September, 2015 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2015, 8, 4))\n * //=> false\n */\nexport default function isSameDay(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeftStartOfDay = startOfDay(dirtyDateLeft);\n var dateRightStartOfDay = startOfDay(dirtyDateRight);\n return dateLeftStartOfDay.getTime() === dateRightStartOfDay.getTime();\n}"],"names":[],"mappings":";;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAC5B,EAAE,OAAO,IAAI,CAAC;AACd;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,SAAS,CAAC,aAAa,EAAE,cAAc,EAAE;AACjE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,kBAAkB,GAAG,UAAU,CAAC,aAAa,CAAC,CAAC;AACrD,EAAE,IAAI,mBAAmB,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;AACvD,EAAE,OAAO,kBAAkB,CAAC,OAAO,EAAE,KAAK,mBAAmB,CAAC,OAAO,EAAE,CAAC;AACxE;;;;","x_google_ignoreList":[0,1]}
1
+ {"version":3,"file":"bundle-DbWCSmuo.js","sources":["../../node_modules/date-fns/esm/startOfDay/index.js","../../node_modules/date-fns/esm/isSameDay/index.js"],"sourcesContent":["import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name startOfDay\n * @category Day Helpers\n * @summary Return the start of a day for the given date.\n *\n * @description\n * Return the start of a day for the given date.\n * The result will be in the local timezone.\n *\n * @param {Date|Number} date - the original date\n * @returns {Date} the start of a day\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // The start of a day for 2 September 2014 11:55:00:\n * const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 00:00:00\n */\nexport default function startOfDay(dirtyDate) {\n requiredArgs(1, arguments);\n var date = toDate(dirtyDate);\n date.setHours(0, 0, 0, 0);\n return date;\n}","import startOfDay from \"../startOfDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameDay\n * @category Day Helpers\n * @summary Are the given dates in the same day (and year and month)?\n *\n * @description\n * Are the given dates in the same day (and year and month)?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same day (and year and month)\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 4 September 06:00:00 and 4 September 18:00:00 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0))\n * //=> true\n *\n * @example\n * // Are 4 September and 4 October in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2014, 9, 4))\n * //=> false\n *\n * @example\n * // Are 4 September, 2014 and 4 September, 2015 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2015, 8, 4))\n * //=> false\n */\nexport default function isSameDay(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeftStartOfDay = startOfDay(dirtyDateLeft);\n var dateRightStartOfDay = startOfDay(dirtyDateRight);\n return dateLeftStartOfDay.getTime() === dateRightStartOfDay.getTime();\n}"],"names":[],"mappings":";;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAC5B,EAAE,OAAO,IAAI,CAAC;AACd;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,SAAS,CAAC,aAAa,EAAE,cAAc,EAAE;AACjE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,kBAAkB,GAAG,UAAU,CAAC,aAAa,CAAC,CAAC;AACrD,EAAE,IAAI,mBAAmB,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;AACvD,EAAE,OAAO,kBAAkB,CAAC,OAAO,EAAE,KAAK,mBAAmB,CAAC,OAAO,EAAE,CAAC;AACxE;;;;","x_google_ignoreList":[0,1]}
@@ -1,12 +1,12 @@
1
- import { c as __spreadArray, a as __awaiter, b as __generator, _ as __assign } from './bundle-CPu_RwBt.js';
2
- import { u as useStore, c as createStore, s as shimExports } from './bundle-Ct3SgygU.js';
1
+ import { c as __spreadArray, a as __awaiter, b as __generator, _ as __assign } from './bundle-fT16CxUq.js';
2
+ import { u as useStore, c as createStore, s as shimExports } from './bundle-VqoQQamR.js';
3
3
  import React__default, { useEffect, createContext, useState, useCallback, useRef, useContext, useMemo } from 'react';
4
4
  import { GroupChannelHandler } from '@sendbird/chat/groupChannel';
5
- import { u as uuidv4 } from './bundle-DxP5xNny.js';
6
- import { c as compareIds } from './bundle-D1cI9kRf.js';
7
- import { c as classnames, d as deleteNullish } from './bundle-BC4qBi6k.js';
8
- import { U as UserProfileProvider } from './bundle-DVwnmwNv.js';
9
- import { u as useSendbird } from './bundle-DMETKDWa.js';
5
+ import { u as uuidv4 } from './bundle-DnBGqmRP.js';
6
+ import { c as compareIds } from './bundle-lcE93tnM.js';
7
+ import { c as classnames, d as deleteNullish } from './bundle-BxRMl0NH.js';
8
+ import { U as UserProfileProvider } from './bundle-CJX5Jh7u.js';
9
+ import { u as useSendbird } from './bundle-C98ZxHO9.js';
10
10
 
11
11
  function useSetChannel(_a) {
12
12
  var _this = this;
@@ -222,4 +222,4 @@ var useChannelSettings = function () {
222
222
  };
223
223
 
224
224
  export { ChannelSettingsContext as C, ChannelSettingsProvider as a, useChannelSettingsContext as b, useChannelSettings as u };
225
- //# sourceMappingURL=bundle-B2Ur2ibC.js.map
225
+ //# sourceMappingURL=bundle-DcYwBbme.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-B2Ur2ibC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DcYwBbme.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -69,4 +69,4 @@ var MediaQueryProvider = function (props) {
69
69
  var useMediaQueryContext = function () { return React__default.useContext(MediaQueryContext); };
70
70
 
71
71
  export { MediaQueryProvider as M, useMediaQueryContext as u };
72
- //# sourceMappingURL=bundle-Bgk_utSz.js.map
72
+ //# sourceMappingURL=bundle-DcfQg8Uy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DcfQg8Uy.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { c as __spreadArray } from './bundle-CPu_RwBt.js';
1
+ import { c as __spreadArray } from './bundle-fT16CxUq.js';
2
2
  import { SendingStatus } from '@sendbird/chat/message';
3
- import './bundle-s-ZF6ERo.js';
3
+ import './bundle-CwWHzn0O.js';
4
4
 
5
5
  var scrollToRenderedMessage = function (scrollRef, initialTimeStamp, setIsScrolled) {
6
6
  var _a;
@@ -122,4 +122,4 @@ var isAboutSame = function (a, b, px) {
122
122
  };
123
123
 
124
124
  export { isAboutSame as a, isDisabledBecauseFrozen as b, isDisabledBecauseMuted as c, scrollToRenderedMessage as d, getNicknamesMapFromMembers as e, getAllEmojisMapFromEmojiContainer as g, isOperator as i, mergeAndSortMessages as m, passUnsuccessfullMessages as p, scrollIntoLast as s };
125
- //# sourceMappingURL=bundle-DLE838IF.js.map
125
+ //# sourceMappingURL=bundle-DfkEzAlf.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-DLE838IF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DfkEzAlf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
- import { c as __spreadArray } from './bundle-CPu_RwBt.js';
1
+ import { c as __spreadArray } from './bundle-fT16CxUq.js';
2
2
 
3
3
  var USER_MENTION_PREFIX = '@';
4
4
 
@@ -237,4 +237,4 @@ function getWhiteSpacePreservedText(text) {
237
237
  }
238
238
 
239
239
  export { TOKEN_TYPES as T, USER_MENTION_PREFIX as U, tokenizeMarkdown as a, getWhiteSpacePreservedText as b, getChannelPreviewMessage as g, tokenizeMessage as t };
240
- //# sourceMappingURL=bundle-0XJDkYUm.js.map
240
+ //# sourceMappingURL=bundle-DiDPUa4G.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-0XJDkYUm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DiDPUa4G.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -10,4 +10,4 @@ var uuidv4 = function () { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace
10
10
  }); };
11
11
 
12
12
  export { uuidv4 as u };
13
- //# sourceMappingURL=bundle-DxP5xNny.js.map
13
+ //# sourceMappingURL=bundle-DnBGqmRP.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DnBGqmRP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -38,4 +38,4 @@ var CACHED_MESSAGE_TEMPLATES_KEY = 'sendbird_message_templates_key';
38
38
  var MESSAGE_TEMPLATE_KEY = 'message_template';
39
39
 
40
40
  export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, CACHED_MESSAGE_TEMPLATES_TOKEN_KEY as C, DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT as D, MESSAGE_TEMPLATE_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S, VOICE_RECORDER_AUDIO_BIT_RATE as V, VOICE_MESSAGE_FILE_NAME as a, VOICE_MESSAGE_MIME_TYPE as b, VOICE_PLAYER_AUDIO_ID as c, VOICE_RECORDER_AUDIO_SAMPLE_RATE as d, SCROLL_BOTTOM_DELAY_FOR_SEND as e, SCROLL_BOTTOM_DELAY_FOR_FETCH as f, VOICE_RECORDER_DEFAULT_MIN as g, VOICE_RECORDER_CLICK_BUFFER_TIME as h, META_ARRAY_VOICE_DURATION_KEY as i, META_ARRAY_MESSAGE_TYPE_KEY as j, META_ARRAY_MESSAGE_TYPE_VALUE__VOICE as k, VOICE_MESSAGE_FILE_NAME__XM4A as l, VOICE_MESSAGE_MIME_TYPE__XM4A as m, VOICE_PLAYER_ROOT_ID as n, SLIDER_BUTTON_ICON_SIDE_LENGTH as o, CACHED_MESSAGE_TEMPLATES_KEY as p, DEFAULT_UPLOAD_SIZE_LIMIT as q, VOICE_RECORDER_DEFAULT_MAX as r, DELIVERY_RECEIPT as s };
41
- //# sourceMappingURL=bundle-mimAWXZs.js.map
41
+ //# sourceMappingURL=bundle-DobIp5EF.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DobIp5EF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,14 +1,14 @@
1
1
  import React__default, { useRef, useContext, useEffect, useMemo, useState } from 'react';
2
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-D3Dpium4.js';
2
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DzM4yc5s.js';
3
3
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
4
- import { A as Avatar } from './bundle-BHXeyOom.js';
5
- import { L as LocalizationContext, u as useLocalization } from './bundle-s-ZF6ERo.js';
6
- import { u as uuidv4 } from './bundle-DxP5xNny.js';
7
- import { c as classnames } from './bundle-BC4qBi6k.js';
8
- import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-CEeF7X-d.js';
9
- import { M as MessageInputKeys } from './bundle-Ygn2n6dz.js';
10
- import { a as __awaiter, b as __generator } from './bundle-CPu_RwBt.js';
11
- import { u as useSendbird } from './bundle-DMETKDWa.js';
4
+ import { A as Avatar } from './bundle-DMP4IOmZ.js';
5
+ import { L as LocalizationContext, u as useLocalization } from './bundle-CwWHzn0O.js';
6
+ import { u as uuidv4 } from './bundle-DnBGqmRP.js';
7
+ import { c as classnames } from './bundle-BxRMl0NH.js';
8
+ import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-CIlc1dvT.js';
9
+ import { M as MessageInputKeys } from './bundle-CLxgZowy.js';
10
+ import { a as __awaiter, b as __generator } from './bundle-fT16CxUq.js';
11
+ import { u as useSendbird } from './bundle-C98ZxHO9.js';
12
12
 
13
13
  function SuggestedUserMentionItem(props) {
14
14
  var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
@@ -170,4 +170,4 @@ var SuggestedMentionListView = function (props) {
170
170
  };
171
171
 
172
172
  export { SuggestedMentionListView as S };
173
- //# sourceMappingURL=bundle-CBCMdreW.js.map
173
+ //# sourceMappingURL=bundle-Ds73wciT.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CBCMdreW.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-Ds73wciT.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
- import { r as requiredArgs, _ as _typeof, t as toDate } from './bundle-MPV86_iE.js';
2
- import { l as locale } from './bundle-3TaAoFG_.js';
1
+ import { r as requiredArgs, _ as _typeof, t as toDate } from './bundle-DArDRDUr.js';
2
+ import { l as locale } from './bundle-zxR5w1Ch.js';
3
3
 
4
4
  /**
5
5
  * @name isDate
@@ -1644,4 +1644,4 @@ function cleanEscapedString(input) {
1644
1644
  }
1645
1645
 
1646
1646
  export { format as f, toInteger as t };
1647
- //# sourceMappingURL=bundle-ClefHJJw.js.map
1647
+ //# sourceMappingURL=bundle-DvfLia2p.js.map