@sendbird/uikit-react 3.15.6 → 3.15.7

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 (883) hide show
  1. package/App.js +80 -80
  2. package/CHANGELOG.md +20 -0
  3. package/Channel/components/ChannelHeader.js +34 -34
  4. package/Channel/components/ChannelUI.js +66 -66
  5. package/Channel/components/FileViewer.js +31 -31
  6. package/Channel/components/FrozenNotification.js +5 -5
  7. package/Channel/components/Message.js +61 -58
  8. package/Channel/components/Message.js.map +1 -1
  9. package/Channel/components/MessageInput.js +43 -43
  10. package/Channel/components/MessageInputWrapper.js +43 -43
  11. package/Channel/components/MessageList.js +59 -59
  12. package/Channel/components/RemoveMessageModal.js +30 -30
  13. package/Channel/components/SuggestedMentionList.js +32 -32
  14. package/Channel/components/TypingIndicator.js +5 -5
  15. package/Channel/components/UnreadCount.js +7 -7
  16. package/Channel/context.js +28 -28
  17. package/Channel/hooks/useHandleUploadFiles.js +16 -16
  18. package/Channel/hooks/useInitialMessagesFetch.js +8 -8
  19. package/Channel/utils/compareMessagesForGrouping.js +8 -8
  20. package/Channel/utils/getMessagePartsInfo.js +9 -9
  21. package/Channel.js +66 -66
  22. package/ChannelList/components/AddChannel.js +22 -22
  23. package/ChannelList/components/ChannelListHeader.js +9 -9
  24. package/ChannelList/components/ChannelListUI.js +37 -37
  25. package/ChannelList/components/ChannelPreview.js +30 -30
  26. package/ChannelList/components/ChannelPreviewAction.js +14 -14
  27. package/ChannelList/context.js +18 -18
  28. package/ChannelList.js +37 -37
  29. package/ChannelSettings/components/ChannelProfile.js +20 -20
  30. package/ChannelSettings/components/ChannelSettingMenuList.js +17 -17
  31. package/ChannelSettings/components/ChannelSettingsHeader.js +7 -7
  32. package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  33. package/ChannelSettings/components/ChannelSettingsUI.js +27 -27
  34. package/ChannelSettings/components/EditDetailsModal.js +20 -20
  35. package/ChannelSettings/components/LeaveChannel.js +17 -17
  36. package/ChannelSettings/components/ModerationPanel.js +25 -25
  37. package/ChannelSettings/components/UserListItem.js +18 -18
  38. package/ChannelSettings/components/UserPanel.js +24 -24
  39. package/ChannelSettings/context.js +16 -16
  40. package/ChannelSettings/hooks/useMenuList.js +25 -25
  41. package/ChannelSettings.js +27 -27
  42. package/CreateChannel/components/CreateChannelUI.js +19 -19
  43. package/CreateChannel/components/InviteUsers.js +19 -19
  44. package/CreateChannel/components/SelectChannelType.js +16 -16
  45. package/CreateChannel/context.js +4 -4
  46. package/CreateChannel.js +19 -19
  47. package/CreateOpenChannel/components/CreateOpenChannelUI.js +17 -17
  48. package/CreateOpenChannel/context.js +1 -1
  49. package/CreateOpenChannel.js +17 -17
  50. package/EditUserProfile/components/EditUserProfileUI.js +18 -18
  51. package/EditUserProfile/context.js +1 -1
  52. package/EditUserProfile.js +18 -18
  53. package/GroupChannel/components/FileViewer.js +26 -26
  54. package/GroupChannel/components/FrozenNotification.js +5 -5
  55. package/GroupChannel/components/GroupChannelHeader.js +29 -29
  56. package/GroupChannel/components/GroupChannelUI.js +59 -59
  57. package/GroupChannel/components/Message.js +56 -53
  58. package/GroupChannel/components/Message.js.map +1 -1
  59. package/GroupChannel/components/MessageInputWrapper.js +38 -38
  60. package/GroupChannel/components/MessageList.js +52 -52
  61. package/GroupChannel/components/RemoveMessageModal.js +25 -25
  62. package/GroupChannel/components/SuggestedMentionList.js +11 -11
  63. package/GroupChannel/components/TypingIndicator.js +5 -5
  64. package/GroupChannel/components/UnreadCount.js +7 -7
  65. package/GroupChannel/context.js +23 -23
  66. package/GroupChannel.js +59 -59
  67. package/GroupChannelList/components/AddGroupChannel.js +21 -21
  68. package/GroupChannelList/components/GroupChannelListHeader.js +9 -9
  69. package/GroupChannelList/components/GroupChannelListItem.js +28 -28
  70. package/GroupChannelList/components/GroupChannelListUI.js +36 -36
  71. package/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
  72. package/GroupChannelList/context.js +16 -16
  73. package/GroupChannelList.js +36 -36
  74. package/MessageSearch/components/MessageSearchUI.js +15 -15
  75. package/MessageSearch/context.js +1 -1
  76. package/MessageSearch.js +17 -17
  77. package/OpenChannel/components/FrozenChannelNotification.js +4 -4
  78. package/OpenChannel/components/OpenChannelHeader.js +21 -21
  79. package/OpenChannel/components/OpenChannelInput.js +27 -27
  80. package/OpenChannel/components/OpenChannelMessage.js +36 -36
  81. package/OpenChannel/components/OpenChannelMessageList.js +40 -40
  82. package/OpenChannel/components/OpenChannelUI.js +40 -40
  83. package/OpenChannel/context.js +20 -20
  84. package/OpenChannel.js +40 -40
  85. package/OpenChannelList/components/OpenChannelListUI.js +19 -19
  86. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  87. package/OpenChannelList/context.js +3 -3
  88. package/OpenChannelList.js +19 -19
  89. package/OpenChannelSettings/components/EditDetailsModal.js +20 -20
  90. package/OpenChannelSettings/components/OpenChannelProfile.js +20 -20
  91. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +21 -21
  92. package/OpenChannelSettings/components/OperatorUI.js +21 -21
  93. package/OpenChannelSettings/components/ParticipantUI.js +19 -19
  94. package/OpenChannelSettings/context.js +15 -15
  95. package/OpenChannelSettings.js +21 -21
  96. package/SendbirdProvider.js +20 -20
  97. package/Thread/components/ParentMessageInfo.js +45 -45
  98. package/Thread/components/ParentMessageInfoItem.js +30 -30
  99. package/Thread/components/ThreadHeader.js +7 -7
  100. package/Thread/components/ThreadList.js +52 -52
  101. package/Thread/components/ThreadListItem.js +52 -52
  102. package/Thread/components/ThreadMessageInput.js +43 -43
  103. package/Thread/components/ThreadUI.js +58 -58
  104. package/Thread/context.js +21 -21
  105. package/Thread.js +58 -58
  106. package/VoicePlayer/context.js +4 -4
  107. package/VoicePlayer/useVoicePlayer.js +14 -14
  108. package/VoiceRecorder/context.js +14 -14
  109. package/VoiceRecorder/useVoiceRecorder.js +14 -14
  110. package/chunks/{bundle-B_14cMxa.js → bundle-3OW5t08v.js} +1 -1
  111. package/chunks/{bundle-B_14cMxa.js.map → bundle-3OW5t08v.js.map} +1 -1
  112. package/chunks/{bundle-DWCm-9so.js → bundle-B6I7SV-0.js} +1 -1
  113. package/chunks/bundle-B6I7SV-0.js.map +1 -0
  114. package/chunks/{bundle-QYB3Mk61.js → bundle-B9zrKMRJ.js} +2 -2
  115. package/chunks/bundle-B9zrKMRJ.js.map +1 -0
  116. package/chunks/{bundle-VPiE9Blu.js → bundle-BE5Dw72m.js} +6 -6
  117. package/chunks/bundle-BE5Dw72m.js.map +1 -0
  118. package/chunks/{bundle-QgerWYLz.js → bundle-BKmrhRhi.js} +1 -1
  119. package/chunks/bundle-BKmrhRhi.js.map +1 -0
  120. package/chunks/{bundle-BdE39Lk2.js → bundle-BPRSyHcX.js} +11 -11
  121. package/chunks/bundle-BPRSyHcX.js.map +1 -0
  122. package/chunks/{bundle-T3QhBjHY.js → bundle-BRQfx_hR.js} +11 -11
  123. package/chunks/{bundle-T3QhBjHY.js.map → bundle-BRQfx_hR.js.map} +1 -1
  124. package/chunks/{bundle-DaPdVbQX.js → bundle-BVIiwHeo.js} +9 -9
  125. package/chunks/{bundle-DaPdVbQX.js.map → bundle-BVIiwHeo.js.map} +1 -1
  126. package/chunks/{bundle-CxLxJCBu.js → bundle-BXYHgzRj.js} +1 -1
  127. package/chunks/{bundle-CxLxJCBu.js.map → bundle-BXYHgzRj.js.map} +1 -1
  128. package/chunks/{bundle-CqNbtpjG.js → bundle-BajDDCOS.js} +3 -3
  129. package/chunks/{bundle-CqNbtpjG.js.map → bundle-BajDDCOS.js.map} +1 -1
  130. package/chunks/{bundle-DRpjMk0B.js → bundle-Bd7J49Pj.js} +12 -12
  131. package/chunks/{bundle-DRpjMk0B.js.map → bundle-Bd7J49Pj.js.map} +1 -1
  132. package/chunks/{bundle-QsOiwa9F.js → bundle-Bdc0r0vX.js} +3 -3
  133. package/chunks/bundle-Bdc0r0vX.js.map +1 -0
  134. package/chunks/{bundle-AJS7Mngy.js → bundle-Bf00X-bc.js} +3 -3
  135. package/chunks/{bundle-AJS7Mngy.js.map → bundle-Bf00X-bc.js.map} +1 -1
  136. package/chunks/{bundle-B5pWUwTI.js → bundle-BnRVAspH.js} +1 -1
  137. package/chunks/bundle-BnRVAspH.js.map +1 -0
  138. package/chunks/{bundle-CGb4JGZ-.js → bundle-BqOj5e7u.js} +1 -1
  139. package/chunks/bundle-BqOj5e7u.js.map +1 -0
  140. package/chunks/{bundle-rjBen5BS.js → bundle-Bsdfe5yG.js} +2 -2
  141. package/chunks/bundle-Bsdfe5yG.js.map +1 -0
  142. package/chunks/{bundle-DGcs2Mkk.js → bundle-Buop2NT2.js} +3 -3
  143. package/chunks/{bundle-DGcs2Mkk.js.map → bundle-Buop2NT2.js.map} +1 -1
  144. package/chunks/{bundle-CewnJAub.js → bundle-Bytw3a1z.js} +3 -3
  145. package/chunks/{bundle-CewnJAub.js.map → bundle-Bytw3a1z.js.map} +1 -1
  146. package/chunks/{bundle-Dq0ggazV.js → bundle-C12wpwcO.js} +2 -2
  147. package/chunks/{bundle-Dq0ggazV.js.map → bundle-C12wpwcO.js.map} +1 -1
  148. package/chunks/{bundle-2-RfbPHL.js → bundle-C1PaUKxY.js} +3 -3
  149. package/chunks/bundle-C1PaUKxY.js.map +1 -0
  150. package/chunks/{bundle-CUy8ANPh.js → bundle-C1baEW8R.js} +3 -3
  151. package/chunks/{bundle-CUy8ANPh.js.map → bundle-C1baEW8R.js.map} +1 -1
  152. package/chunks/{bundle-gBmMoaTG.js → bundle-C373kKPf.js} +4 -4
  153. package/chunks/bundle-C373kKPf.js.map +1 -0
  154. package/chunks/{bundle-DdJ9pMWn.js → bundle-C4eUm39A.js} +4 -4
  155. package/chunks/bundle-C4eUm39A.js.map +1 -0
  156. package/chunks/{bundle-AV2qqH9G.js → bundle-C5677rct.js} +4 -4
  157. package/chunks/bundle-C5677rct.js.map +1 -0
  158. package/chunks/{bundle-CcOOoseq.js → bundle-CD0EW-ph.js} +5 -5
  159. package/chunks/bundle-CD0EW-ph.js.map +1 -0
  160. package/chunks/{bundle-CbXgxoLr.js → bundle-CFXlbz6X.js} +5 -5
  161. package/chunks/{bundle-CbXgxoLr.js.map → bundle-CFXlbz6X.js.map} +1 -1
  162. package/chunks/{bundle-BA9oFJ90.js → bundle-CGbKAqtd.js} +41 -15
  163. package/chunks/{bundle-BA9oFJ90.js.map → bundle-CGbKAqtd.js.map} +1 -1
  164. package/chunks/{bundle-DwAJZ4P8.js → bundle-CIXFH8vX.js} +1 -1
  165. package/chunks/bundle-CIXFH8vX.js.map +1 -0
  166. package/chunks/{bundle-BoENnpQQ.js → bundle-CK28kSQl.js} +1 -1
  167. package/chunks/bundle-CK28kSQl.js.map +1 -0
  168. package/chunks/{bundle-CYoJWHCE.js → bundle-CTIvAUPR.js} +1 -1
  169. package/chunks/bundle-CTIvAUPR.js.map +1 -0
  170. package/chunks/{bundle-GawAxqNK.js → bundle-CWUQ80OI.js} +57 -54
  171. package/chunks/{bundle-GawAxqNK.js.map → bundle-CWUQ80OI.js.map} +1 -1
  172. package/chunks/{bundle-DiK8ifY3.js → bundle-CXA05pe2.js} +1 -1
  173. package/chunks/bundle-CXA05pe2.js.map +1 -0
  174. package/chunks/{bundle-rPN_itAt.js → bundle-CXcQbCC8.js} +5 -5
  175. package/chunks/{bundle-rPN_itAt.js.map → bundle-CXcQbCC8.js.map} +1 -1
  176. package/chunks/{bundle-CdrSitU9.js → bundle-CXwDMEak.js} +6 -6
  177. package/chunks/bundle-CXwDMEak.js.map +1 -0
  178. package/chunks/{bundle-D4d941oR.js → bundle-CZHzuE_v.js} +1 -1
  179. package/chunks/bundle-CZHzuE_v.js.map +1 -0
  180. package/chunks/{bundle-BzR1dD25.js → bundle-CZybJwCN.js} +6 -6
  181. package/chunks/{bundle-BzR1dD25.js.map → bundle-CZybJwCN.js.map} +1 -1
  182. package/chunks/{bundle-X_IrklBY.js → bundle-CaWp0im0.js} +3 -3
  183. package/chunks/{bundle-X_IrklBY.js.map → bundle-CaWp0im0.js.map} +1 -1
  184. package/chunks/{bundle-B5N-CojP.js → bundle-CdmtMf8Y.js} +3 -3
  185. package/chunks/{bundle-B5N-CojP.js.map → bundle-CdmtMf8Y.js.map} +1 -1
  186. package/chunks/{bundle-mqagBpi9.js → bundle-CeFR-WNJ.js} +1 -1
  187. package/chunks/bundle-CeFR-WNJ.js.map +1 -0
  188. package/chunks/{bundle-DXFVroy5.js → bundle-CfyvTsrV.js} +9 -9
  189. package/chunks/bundle-CfyvTsrV.js.map +1 -0
  190. package/chunks/{bundle-D9B0ru2u.js → bundle-ChPqJjpP.js} +8 -8
  191. package/chunks/{bundle-D9B0ru2u.js.map → bundle-ChPqJjpP.js.map} +1 -1
  192. package/chunks/{bundle-DKdROCX_.js → bundle-ClfkSu0m.js} +1 -1
  193. package/chunks/bundle-ClfkSu0m.js.map +1 -0
  194. package/chunks/{bundle-DS1EhNtb.js → bundle-CqMQE3-R.js} +1 -1
  195. package/chunks/{bundle-DS1EhNtb.js.map → bundle-CqMQE3-R.js.map} +1 -1
  196. package/chunks/{bundle-Dfzawq4C.js → bundle-CunaqP3n.js} +6 -6
  197. package/chunks/bundle-CunaqP3n.js.map +1 -0
  198. package/chunks/{bundle-Dgu8bVmd.js → bundle-CwopwRQp.js} +9 -9
  199. package/chunks/{bundle-Dgu8bVmd.js.map → bundle-CwopwRQp.js.map} +1 -1
  200. package/chunks/{bundle-CpMvhj21.js → bundle-Cytf5OXn.js} +1 -1
  201. package/chunks/bundle-Cytf5OXn.js.map +1 -0
  202. package/chunks/{bundle-jrZGOZ7u.js → bundle-CzzanD4i.js} +4 -4
  203. package/chunks/{bundle-jrZGOZ7u.js.map → bundle-CzzanD4i.js.map} +1 -1
  204. package/chunks/{bundle-CTVxl16S.js → bundle-DCjrv9Kz.js} +2 -2
  205. package/chunks/bundle-DCjrv9Kz.js.map +1 -0
  206. package/chunks/{bundle-DOfhjbKd.js → bundle-DGC3rWK4.js} +4 -4
  207. package/chunks/bundle-DGC3rWK4.js.map +1 -0
  208. package/chunks/{bundle-DcPIDUrE.js → bundle-DGskllVK.js} +2 -2
  209. package/chunks/bundle-DGskllVK.js.map +1 -0
  210. package/chunks/{bundle-CBHlCwa8.js → bundle-DKJYxqyB.js} +1 -1
  211. package/chunks/bundle-DKJYxqyB.js.map +1 -0
  212. package/chunks/{bundle-CsqTBO6B.js → bundle-DMgkYVtL.js} +6 -6
  213. package/chunks/{bundle-CsqTBO6B.js.map → bundle-DMgkYVtL.js.map} +1 -1
  214. package/chunks/{bundle-CjJk57u5.js → bundle-DNnUvjnZ.js} +3 -3
  215. package/chunks/bundle-DNnUvjnZ.js.map +1 -0
  216. package/chunks/{bundle-DUYVf7yy.js → bundle-DNxlbhL-.js} +8 -8
  217. package/chunks/{bundle-DUYVf7yy.js.map → bundle-DNxlbhL-.js.map} +1 -1
  218. package/chunks/{bundle-BW3AiewC.js → bundle-DPABwR4A.js} +2 -2
  219. package/chunks/bundle-DPABwR4A.js.map +1 -0
  220. package/chunks/{bundle-d1cOX5nv.js → bundle-DWyboFhb.js} +3 -3
  221. package/chunks/{bundle-d1cOX5nv.js.map → bundle-DWyboFhb.js.map} +1 -1
  222. package/chunks/{bundle-GdEa10s3.js → bundle-DZw8Wfu-.js} +17 -20
  223. package/chunks/{bundle-GdEa10s3.js.map → bundle-DZw8Wfu-.js.map} +1 -1
  224. package/chunks/{bundle-DTvXJ1Ss.js → bundle-DaHMAS7E.js} +12 -12
  225. package/chunks/{bundle-DTvXJ1Ss.js.map → bundle-DaHMAS7E.js.map} +1 -1
  226. package/chunks/{bundle-BJuj9G4S.js → bundle-Db8gqi-L.js} +1 -1
  227. package/chunks/bundle-Db8gqi-L.js.map +1 -0
  228. package/chunks/{bundle-BjAeG049.js → bundle-Dh2SecIj.js} +1 -1
  229. package/chunks/bundle-Dh2SecIj.js.map +1 -0
  230. package/chunks/{bundle-B5157rdG.js → bundle-DmX77DTu.js} +1 -1
  231. package/chunks/bundle-DmX77DTu.js.map +1 -0
  232. package/chunks/{bundle-CzHaD4PM.js → bundle-Do-Uo0Mj.js} +4 -4
  233. package/chunks/bundle-Do-Uo0Mj.js.map +1 -0
  234. package/chunks/{bundle-CH6t4mkR.js → bundle-DoVEdOJ0.js} +1 -1
  235. package/chunks/bundle-DoVEdOJ0.js.map +1 -0
  236. package/chunks/{bundle-C-nZYnmy.js → bundle-DokyceKk.js} +1 -1
  237. package/chunks/{bundle-C-nZYnmy.js.map → bundle-DokyceKk.js.map} +1 -1
  238. package/chunks/{bundle-AmtSwuex.js → bundle-DsnagByW.js} +2 -2
  239. package/chunks/{bundle-AmtSwuex.js.map → bundle-DsnagByW.js.map} +1 -1
  240. package/chunks/{bundle-Ci-RNuvu.js → bundle-DtujCCHB.js} +1 -1
  241. package/chunks/bundle-DtujCCHB.js.map +1 -0
  242. package/chunks/{bundle-C_zEpfCP.js → bundle-Dwpc_MJZ.js} +1 -1
  243. package/chunks/bundle-Dwpc_MJZ.js.map +1 -0
  244. package/chunks/{bundle-Bs4dlPq1.js → bundle-DxT0jQsV.js} +1 -1
  245. package/chunks/bundle-DxT0jQsV.js.map +1 -0
  246. package/chunks/{bundle-D2GzZ_yy.js → bundle-DyTMSX7q.js} +1 -1
  247. package/chunks/bundle-DyTMSX7q.js.map +1 -0
  248. package/chunks/{bundle-DP3z2QNm.js → bundle-Dz4_R08c.js} +1 -1
  249. package/chunks/bundle-Dz4_R08c.js.map +1 -0
  250. package/chunks/{bundle-C3wdhLEG.js → bundle-DzMGbPvb.js} +2 -2
  251. package/chunks/bundle-DzMGbPvb.js.map +1 -0
  252. package/chunks/{bundle-3sZs8f9n.js → bundle-HWSjhK3Z.js} +1 -1
  253. package/chunks/bundle-HWSjhK3Z.js.map +1 -0
  254. package/chunks/{bundle-c6Xd_0m8.js → bundle-LEy2gyna.js} +22 -21
  255. package/chunks/{bundle-c6Xd_0m8.js.map → bundle-LEy2gyna.js.map} +1 -1
  256. package/chunks/{bundle-pv93aExN.js → bundle-LvdMqVFE.js} +3 -3
  257. package/chunks/bundle-LvdMqVFE.js.map +1 -0
  258. package/chunks/{bundle-CHqSZaW8.js → bundle-OSl93HLe.js} +13 -13
  259. package/chunks/{bundle-CHqSZaW8.js.map → bundle-OSl93HLe.js.map} +1 -1
  260. package/chunks/{bundle-DrGRld-t.js → bundle-OhvPSLJH.js} +2 -2
  261. package/chunks/bundle-OhvPSLJH.js.map +1 -0
  262. package/chunks/{bundle-DCHZRHdl.js → bundle-YDVJPPbj.js} +6 -6
  263. package/chunks/{bundle-DCHZRHdl.js.map → bundle-YDVJPPbj.js.map} +1 -1
  264. package/chunks/{bundle-D9MeorzH.js → bundle-b7Foa0HG.js} +1 -1
  265. package/chunks/bundle-b7Foa0HG.js.map +1 -0
  266. package/chunks/{bundle-D2HQ66dZ.js → bundle-mZUrgg4o.js} +1 -1
  267. package/chunks/bundle-mZUrgg4o.js.map +1 -0
  268. package/chunks/{bundle-DoHO4wpB.js → bundle-rR4UDSt3.js} +5 -5
  269. package/chunks/{bundle-DoHO4wpB.js.map → bundle-rR4UDSt3.js.map} +1 -1
  270. package/chunks/{bundle-kFa80LJe.js → bundle-u-vzK-oc.js} +1 -1
  271. package/chunks/bundle-u-vzK-oc.js.map +1 -0
  272. package/chunks/{bundle-DXKWyDSR.js → bundle-wIpBG4h1.js} +1 -1
  273. package/chunks/bundle-wIpBG4h1.js.map +1 -0
  274. package/chunks/{bundle-BcC0-Nxn.js → bundle-xG1e3S1C.js} +1 -1
  275. package/chunks/{bundle-BcC0-Nxn.js.map → bundle-xG1e3S1C.js.map} +1 -1
  276. package/chunks/{bundle-w2yLrIlh.js → bundle-xuXUit3M.js} +8 -8
  277. package/chunks/bundle-xuXUit3M.js.map +1 -0
  278. package/chunks/{bundle-CiR8AZTC.js → bundle-ySMjorsI.js} +1 -1
  279. package/chunks/bundle-ySMjorsI.js.map +1 -0
  280. package/chunks/{bundle-BlguTwHI.js → bundle-ydxNdZ_o.js} +1 -1
  281. package/chunks/bundle-ydxNdZ_o.js.map +1 -0
  282. package/cjs/App.js +80 -80
  283. package/cjs/Channel/components/ChannelHeader.js +34 -34
  284. package/cjs/Channel/components/ChannelUI.js +66 -66
  285. package/cjs/Channel/components/FileViewer.js +31 -31
  286. package/cjs/Channel/components/FrozenNotification.js +5 -5
  287. package/cjs/Channel/components/Message.js +61 -58
  288. package/cjs/Channel/components/Message.js.map +1 -1
  289. package/cjs/Channel/components/MessageInput.js +43 -43
  290. package/cjs/Channel/components/MessageInputWrapper.js +43 -43
  291. package/cjs/Channel/components/MessageList.js +59 -59
  292. package/cjs/Channel/components/RemoveMessageModal.js +30 -30
  293. package/cjs/Channel/components/SuggestedMentionList.js +32 -32
  294. package/cjs/Channel/components/TypingIndicator.js +5 -5
  295. package/cjs/Channel/components/UnreadCount.js +7 -7
  296. package/cjs/Channel/context.js +28 -28
  297. package/cjs/Channel/hooks/useHandleUploadFiles.js +16 -16
  298. package/cjs/Channel/hooks/useInitialMessagesFetch.js +8 -8
  299. package/cjs/Channel/utils/compareMessagesForGrouping.js +8 -8
  300. package/cjs/Channel/utils/getMessagePartsInfo.js +9 -9
  301. package/cjs/Channel.js +66 -66
  302. package/cjs/ChannelList/components/AddChannel.js +22 -22
  303. package/cjs/ChannelList/components/ChannelListHeader.js +9 -9
  304. package/cjs/ChannelList/components/ChannelListUI.js +37 -37
  305. package/cjs/ChannelList/components/ChannelPreview.js +30 -30
  306. package/cjs/ChannelList/components/ChannelPreviewAction.js +14 -14
  307. package/cjs/ChannelList/context.js +18 -18
  308. package/cjs/ChannelList.js +37 -37
  309. package/cjs/ChannelSettings/components/ChannelProfile.js +20 -20
  310. package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +17 -17
  311. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +7 -7
  312. package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  313. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +27 -27
  314. package/cjs/ChannelSettings/components/EditDetailsModal.js +20 -20
  315. package/cjs/ChannelSettings/components/LeaveChannel.js +17 -17
  316. package/cjs/ChannelSettings/components/ModerationPanel.js +25 -25
  317. package/cjs/ChannelSettings/components/UserListItem.js +18 -18
  318. package/cjs/ChannelSettings/components/UserPanel.js +24 -24
  319. package/cjs/ChannelSettings/context.js +16 -16
  320. package/cjs/ChannelSettings/hooks/useMenuList.js +25 -25
  321. package/cjs/ChannelSettings.js +27 -27
  322. package/cjs/CreateChannel/components/CreateChannelUI.js +19 -19
  323. package/cjs/CreateChannel/components/InviteUsers.js +19 -19
  324. package/cjs/CreateChannel/components/SelectChannelType.js +16 -16
  325. package/cjs/CreateChannel/context.js +4 -4
  326. package/cjs/CreateChannel.js +19 -19
  327. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +17 -17
  328. package/cjs/CreateOpenChannel/context.js +1 -1
  329. package/cjs/CreateOpenChannel.js +17 -17
  330. package/cjs/EditUserProfile/components/EditUserProfileUI.js +18 -18
  331. package/cjs/EditUserProfile/context.js +1 -1
  332. package/cjs/EditUserProfile.js +18 -18
  333. package/cjs/GroupChannel/components/FileViewer.js +26 -26
  334. package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
  335. package/cjs/GroupChannel/components/GroupChannelHeader.js +29 -29
  336. package/cjs/GroupChannel/components/GroupChannelUI.js +59 -59
  337. package/cjs/GroupChannel/components/Message.js +56 -53
  338. package/cjs/GroupChannel/components/Message.js.map +1 -1
  339. package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
  340. package/cjs/GroupChannel/components/MessageList.js +52 -52
  341. package/cjs/GroupChannel/components/RemoveMessageModal.js +25 -25
  342. package/cjs/GroupChannel/components/SuggestedMentionList.js +11 -11
  343. package/cjs/GroupChannel/components/TypingIndicator.js +5 -5
  344. package/cjs/GroupChannel/components/UnreadCount.js +7 -7
  345. package/cjs/GroupChannel/context.js +23 -23
  346. package/cjs/GroupChannel.js +59 -59
  347. package/cjs/GroupChannelList/components/AddGroupChannel.js +21 -21
  348. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +9 -9
  349. package/cjs/GroupChannelList/components/GroupChannelListItem.js +28 -28
  350. package/cjs/GroupChannelList/components/GroupChannelListUI.js +36 -36
  351. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
  352. package/cjs/GroupChannelList/context.js +16 -16
  353. package/cjs/GroupChannelList.js +36 -36
  354. package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
  355. package/cjs/MessageSearch/context.js +1 -1
  356. package/cjs/MessageSearch.js +17 -17
  357. package/cjs/OpenChannel/components/FrozenChannelNotification.js +4 -4
  358. package/cjs/OpenChannel/components/OpenChannelHeader.js +21 -21
  359. package/cjs/OpenChannel/components/OpenChannelInput.js +27 -27
  360. package/cjs/OpenChannel/components/OpenChannelMessage.js +36 -36
  361. package/cjs/OpenChannel/components/OpenChannelMessageList.js +40 -40
  362. package/cjs/OpenChannel/components/OpenChannelUI.js +40 -40
  363. package/cjs/OpenChannel/context.js +20 -20
  364. package/cjs/OpenChannel.js +40 -40
  365. package/cjs/OpenChannelList/components/OpenChannelListUI.js +19 -19
  366. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  367. package/cjs/OpenChannelList/context.js +3 -3
  368. package/cjs/OpenChannelList.js +19 -19
  369. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +20 -20
  370. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +20 -20
  371. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +21 -21
  372. package/cjs/OpenChannelSettings/components/OperatorUI.js +21 -21
  373. package/cjs/OpenChannelSettings/components/ParticipantUI.js +19 -19
  374. package/cjs/OpenChannelSettings/context.js +15 -15
  375. package/cjs/OpenChannelSettings.js +21 -21
  376. package/cjs/SendbirdProvider.js +20 -20
  377. package/cjs/Thread/components/ParentMessageInfo.js +45 -45
  378. package/cjs/Thread/components/ParentMessageInfoItem.js +30 -30
  379. package/cjs/Thread/components/ThreadHeader.js +7 -7
  380. package/cjs/Thread/components/ThreadList.js +52 -52
  381. package/cjs/Thread/components/ThreadListItem.js +52 -52
  382. package/cjs/Thread/components/ThreadMessageInput.js +43 -43
  383. package/cjs/Thread/components/ThreadUI.js +58 -58
  384. package/cjs/Thread/context.js +21 -21
  385. package/cjs/Thread.js +58 -58
  386. package/cjs/VoicePlayer/context.js +4 -4
  387. package/cjs/VoicePlayer/useVoicePlayer.js +14 -14
  388. package/cjs/VoiceRecorder/context.js +14 -14
  389. package/cjs/VoiceRecorder/useVoiceRecorder.js +14 -14
  390. package/cjs/chunks/{bundle-D2ax25qZ.js → bundle-3LPv4D2P.js} +3 -3
  391. package/cjs/chunks/{bundle-D2ax25qZ.js.map → bundle-3LPv4D2P.js.map} +1 -1
  392. package/cjs/chunks/{bundle-C46LqYyh.js → bundle-6UON_E5C.js} +1 -1
  393. package/cjs/chunks/bundle-6UON_E5C.js.map +1 -0
  394. package/cjs/chunks/{bundle-C58VJxCs.js → bundle-7go2K8uq.js} +2 -2
  395. package/cjs/chunks/bundle-7go2K8uq.js.map +1 -0
  396. package/cjs/chunks/{bundle-Bh9p4eL5.js → bundle-7jdGkMcR.js} +3 -3
  397. package/cjs/chunks/bundle-7jdGkMcR.js.map +1 -0
  398. package/cjs/chunks/{bundle-BnZPnCS1.js → bundle-8fcxuhSX.js} +1 -1
  399. package/cjs/chunks/{bundle-BnZPnCS1.js.map → bundle-8fcxuhSX.js.map} +1 -1
  400. package/cjs/chunks/{bundle-CFdryFSh.js → bundle-8zDGipU7.js} +1 -1
  401. package/cjs/chunks/bundle-8zDGipU7.js.map +1 -0
  402. package/cjs/chunks/{bundle-ChfAP41k.js → bundle-B1_3qECK.js} +3 -3
  403. package/cjs/chunks/bundle-B1_3qECK.js.map +1 -0
  404. package/cjs/chunks/{bundle-BfbzW2vr.js → bundle-B6CYfy5G.js} +2 -2
  405. package/cjs/chunks/{bundle-BfbzW2vr.js.map → bundle-B6CYfy5G.js.map} +1 -1
  406. package/cjs/chunks/{bundle-CCNmiNBT.js → bundle-B7MRYbDB.js} +13 -13
  407. package/cjs/chunks/bundle-B7MRYbDB.js.map +1 -0
  408. package/cjs/chunks/{bundle-nzMbthND.js → bundle-B8k-AR8U.js} +1 -1
  409. package/cjs/chunks/bundle-B8k-AR8U.js.map +1 -0
  410. package/cjs/chunks/{bundle-bZHcfwel.js → bundle-BExNUO-I.js} +2 -2
  411. package/cjs/chunks/bundle-BExNUO-I.js.map +1 -0
  412. package/cjs/chunks/{bundle-ki2BXxTR.js → bundle-BGwWHCrY.js} +1 -1
  413. package/cjs/chunks/bundle-BGwWHCrY.js.map +1 -0
  414. package/cjs/chunks/{bundle-Dg3AsE_I.js → bundle-BLZTs7Bw.js} +1 -1
  415. package/cjs/chunks/bundle-BLZTs7Bw.js.map +1 -0
  416. package/cjs/chunks/{bundle-BG9oylBB.js → bundle-BLby41Ih.js} +22 -21
  417. package/cjs/chunks/{bundle-BG9oylBB.js.map → bundle-BLby41Ih.js.map} +1 -1
  418. package/cjs/chunks/{bundle-BHl3Hq-q.js → bundle-BNctnRkH.js} +1 -1
  419. package/cjs/chunks/bundle-BNctnRkH.js.map +1 -0
  420. package/cjs/chunks/{bundle-cEg-vIno.js → bundle-BR24PQ_Y.js} +5 -5
  421. package/cjs/chunks/bundle-BR24PQ_Y.js.map +1 -0
  422. package/cjs/chunks/{bundle-D7q15dUg.js → bundle-BVvqa2be.js} +1 -1
  423. package/cjs/chunks/bundle-BVvqa2be.js.map +1 -0
  424. package/cjs/chunks/{bundle-BrJRkkxI.js → bundle-Bcw2cZ_a.js} +11 -11
  425. package/cjs/chunks/{bundle-BrJRkkxI.js.map → bundle-Bcw2cZ_a.js.map} +1 -1
  426. package/cjs/chunks/{bundle-kDmuLnl7.js → bundle-BdnslzVC.js} +1 -1
  427. package/cjs/chunks/bundle-BdnslzVC.js.map +1 -0
  428. package/cjs/chunks/{bundle-B99NksU1.js → bundle-BjEgVcUH.js} +4 -4
  429. package/cjs/chunks/bundle-BjEgVcUH.js.map +1 -0
  430. package/cjs/chunks/{bundle-BdOQSlg8.js → bundle-Bk7WqfP1.js} +3 -3
  431. package/cjs/chunks/bundle-Bk7WqfP1.js.map +1 -0
  432. package/cjs/chunks/{bundle-yxVAAzPF.js → bundle-BlEXhX-6.js} +6 -6
  433. package/cjs/chunks/bundle-BlEXhX-6.js.map +1 -0
  434. package/cjs/chunks/{bundle-4erteucE.js → bundle-BleAojLg.js} +1 -1
  435. package/cjs/chunks/bundle-BleAojLg.js.map +1 -0
  436. package/cjs/chunks/{bundle-B1wRtVQE.js → bundle-BmdNMFfe.js} +1 -1
  437. package/cjs/chunks/bundle-BmdNMFfe.js.map +1 -0
  438. package/cjs/chunks/{bundle-DgaIgNw7.js → bundle-BmtNH_1z.js} +3 -3
  439. package/cjs/chunks/bundle-BmtNH_1z.js.map +1 -0
  440. package/cjs/chunks/{bundle-BTVhcfBF.js → bundle-BrY1UcVB.js} +12 -12
  441. package/cjs/chunks/bundle-BrY1UcVB.js.map +1 -0
  442. package/cjs/chunks/{bundle-Ct7Vja5E.js → bundle-BsTi1HKd.js} +1 -1
  443. package/cjs/chunks/{bundle-Ct7Vja5E.js.map → bundle-BsTi1HKd.js.map} +1 -1
  444. package/cjs/chunks/{bundle-B8bE6mmM.js → bundle-Bt03qFW-.js} +4 -4
  445. package/cjs/chunks/{bundle-B8bE6mmM.js.map → bundle-Bt03qFW-.js.map} +1 -1
  446. package/cjs/chunks/{bundle-BVPJ7Z_F.js → bundle-BtnZ51l-.js} +5 -5
  447. package/cjs/chunks/{bundle-BVPJ7Z_F.js.map → bundle-BtnZ51l-.js.map} +1 -1
  448. package/cjs/chunks/{bundle-BSdv_4rq.js → bundle-BucbwMfw.js} +1 -1
  449. package/cjs/chunks/{bundle-BSdv_4rq.js.map → bundle-BucbwMfw.js.map} +1 -1
  450. package/cjs/chunks/{bundle-Kv_xoALE.js → bundle-C17oXN6p.js} +11 -11
  451. package/cjs/chunks/{bundle-Kv_xoALE.js.map → bundle-C17oXN6p.js.map} +1 -1
  452. package/cjs/chunks/{bundle-De4jqnzj.js → bundle-C8tHp_tf.js} +2 -2
  453. package/cjs/chunks/bundle-C8tHp_tf.js.map +1 -0
  454. package/cjs/chunks/{bundle-CtHeK1-9.js → bundle-CBNb5A4I.js} +1 -1
  455. package/cjs/chunks/bundle-CBNb5A4I.js.map +1 -0
  456. package/cjs/chunks/{bundle-B_WS0exW.js → bundle-CBwzJwvY.js} +2 -2
  457. package/cjs/chunks/{bundle-B_WS0exW.js.map → bundle-CBwzJwvY.js.map} +1 -1
  458. package/cjs/chunks/{bundle-AGX9GDfp.js → bundle-CCDuzPEB.js} +6 -6
  459. package/cjs/chunks/bundle-CCDuzPEB.js.map +1 -0
  460. package/cjs/chunks/{bundle-CtDLL0dX.js → bundle-CDJfGNHo.js} +12 -12
  461. package/cjs/chunks/{bundle-CtDLL0dX.js.map → bundle-CDJfGNHo.js.map} +1 -1
  462. package/cjs/chunks/{bundle-DWYr_udk.js → bundle-CFkoZMCI.js} +3 -3
  463. package/cjs/chunks/bundle-CFkoZMCI.js.map +1 -0
  464. package/cjs/chunks/{bundle-DlUfvasr.js → bundle-CIHyRPyY.js} +1 -1
  465. package/cjs/chunks/bundle-CIHyRPyY.js.map +1 -0
  466. package/cjs/chunks/{bundle-FupN89oG.js → bundle-CLPMQSSE.js} +1 -1
  467. package/cjs/chunks/bundle-CLPMQSSE.js.map +1 -0
  468. package/cjs/chunks/{bundle-DormKOde.js → bundle-CWecYP7Y.js} +2 -2
  469. package/cjs/chunks/bundle-CWecYP7Y.js.map +1 -0
  470. package/cjs/chunks/{bundle-nqpiwGrf.js → bundle-C_MOuMuV.js} +1 -1
  471. package/cjs/chunks/bundle-C_MOuMuV.js.map +1 -0
  472. package/cjs/chunks/{bundle-C7iW1YXM.js → bundle-Cee0WbLc.js} +5 -5
  473. package/cjs/chunks/bundle-Cee0WbLc.js.map +1 -0
  474. package/cjs/chunks/{bundle-BWj9bHJr.js → bundle-ChVzPfrd.js} +1 -1
  475. package/cjs/chunks/bundle-ChVzPfrd.js.map +1 -0
  476. package/cjs/chunks/{bundle-LPDBHnUG.js → bundle-ChsWMr1t.js} +2 -2
  477. package/cjs/chunks/bundle-ChsWMr1t.js.map +1 -0
  478. package/cjs/chunks/{bundle-C0TzGDsV.js → bundle-ClwiERB3.js} +9 -9
  479. package/cjs/chunks/{bundle-C0TzGDsV.js.map → bundle-ClwiERB3.js.map} +1 -1
  480. package/cjs/chunks/{bundle-zybaePo9.js → bundle-CqYuk4FD.js} +1 -1
  481. package/cjs/chunks/bundle-CqYuk4FD.js.map +1 -0
  482. package/cjs/chunks/{bundle-DtjZ8gz_.js → bundle-Cr1Nv2m5.js} +1 -1
  483. package/cjs/chunks/bundle-Cr1Nv2m5.js.map +1 -0
  484. package/cjs/chunks/{bundle-B4ddXNPV.js → bundle-CrTtA48x.js} +3 -3
  485. package/cjs/chunks/bundle-CrTtA48x.js.map +1 -0
  486. package/cjs/chunks/{bundle-COh0v4Nw.js → bundle-CuX916ps.js} +9 -9
  487. package/cjs/chunks/{bundle-COh0v4Nw.js.map → bundle-CuX916ps.js.map} +1 -1
  488. package/cjs/chunks/{bundle-D2WvavCb.js → bundle-D-k5z7TN.js} +3 -3
  489. package/cjs/chunks/bundle-D-k5z7TN.js.map +1 -0
  490. package/cjs/chunks/{bundle-CfvwGGIv.js → bundle-D0HvD9f6.js} +1 -1
  491. package/cjs/chunks/bundle-D0HvD9f6.js.map +1 -0
  492. package/cjs/chunks/{bundle-B5nluCgf.js → bundle-D2hKB5qG.js} +1 -1
  493. package/cjs/chunks/bundle-D2hKB5qG.js.map +1 -0
  494. package/cjs/chunks/{bundle-D4-yrnBd.js → bundle-D5rCJ8a0.js} +1 -1
  495. package/cjs/chunks/bundle-D5rCJ8a0.js.map +1 -0
  496. package/cjs/chunks/{bundle-CXTI-r-K.js → bundle-D6LPwVEM.js} +1 -1
  497. package/cjs/chunks/bundle-D6LPwVEM.js.map +1 -0
  498. package/cjs/chunks/{bundle-Drgw8r9-.js → bundle-D8FmLqeo.js} +57 -54
  499. package/cjs/chunks/bundle-D8FmLqeo.js.map +1 -0
  500. package/cjs/chunks/{bundle-CXcDT8Da.js → bundle-DFOy8Vjx.js} +6 -6
  501. package/cjs/chunks/bundle-DFOy8Vjx.js.map +1 -0
  502. package/cjs/chunks/{bundle-DyIjO87F.js → bundle-DHObKJBi.js} +3 -3
  503. package/cjs/chunks/{bundle-DyIjO87F.js.map → bundle-DHObKJBi.js.map} +1 -1
  504. package/cjs/chunks/{bundle-CWuXh6bZ.js → bundle-DKH-jTSP.js} +1 -1
  505. package/cjs/chunks/bundle-DKH-jTSP.js.map +1 -0
  506. package/cjs/chunks/{bundle-Dffwbiy_.js → bundle-DMIMzh92.js} +2 -2
  507. package/cjs/chunks/bundle-DMIMzh92.js.map +1 -0
  508. package/cjs/chunks/{bundle-Efqr4p5P.js → bundle-DPwrFGpD.js} +4 -4
  509. package/cjs/chunks/bundle-DPwrFGpD.js.map +1 -0
  510. package/cjs/chunks/{bundle-BHpgOCTU.js → bundle-DT1VkqGP.js} +17 -20
  511. package/cjs/chunks/bundle-DT1VkqGP.js.map +1 -0
  512. package/cjs/chunks/{bundle-Bu3BLfvI.js → bundle-DZTBaP7X.js} +4 -4
  513. package/cjs/chunks/bundle-DZTBaP7X.js.map +1 -0
  514. package/cjs/chunks/{bundle-BkiVNmZI.js → bundle-D_WlWum1.js} +9 -9
  515. package/cjs/chunks/bundle-D_WlWum1.js.map +1 -0
  516. package/cjs/chunks/{bundle-B19u8wg6.js → bundle-D_YmKhKg.js} +6 -6
  517. package/cjs/chunks/{bundle-B19u8wg6.js.map → bundle-D_YmKhKg.js.map} +1 -1
  518. package/cjs/chunks/{bundle-Dtkhmor2.js → bundle-DbmaLjo7.js} +41 -15
  519. package/cjs/chunks/{bundle-Dtkhmor2.js.map → bundle-DbmaLjo7.js.map} +1 -1
  520. package/cjs/chunks/{bundle-B0WShP73.js → bundle-DeDPg-8M.js} +3 -3
  521. package/cjs/chunks/{bundle-B0WShP73.js.map → bundle-DeDPg-8M.js.map} +1 -1
  522. package/cjs/chunks/{bundle-DWAM41PH.js → bundle-DiJTshcy.js} +1 -1
  523. package/cjs/chunks/bundle-DiJTshcy.js.map +1 -0
  524. package/cjs/chunks/{bundle-DgK3Eyej.js → bundle-Dm2zEOMa.js} +5 -5
  525. package/cjs/chunks/{bundle-DgK3Eyej.js.map → bundle-Dm2zEOMa.js.map} +1 -1
  526. package/cjs/chunks/{bundle-1FpUZD1-.js → bundle-DogbrTLB.js} +1 -1
  527. package/cjs/chunks/bundle-DogbrTLB.js.map +1 -0
  528. package/cjs/chunks/{bundle-BXpl_WnC.js → bundle-DrRVllsW.js} +8 -8
  529. package/cjs/chunks/bundle-DrRVllsW.js.map +1 -0
  530. package/cjs/chunks/{bundle-Cppp85AW.js → bundle-G45ozTAX.js} +3 -3
  531. package/cjs/chunks/bundle-G45ozTAX.js.map +1 -0
  532. package/cjs/chunks/{bundle-BEl_EPZZ.js → bundle-HpKek_CB.js} +8 -8
  533. package/cjs/chunks/{bundle-BEl_EPZZ.js.map → bundle-HpKek_CB.js.map} +1 -1
  534. package/cjs/chunks/{bundle-DufP6x7V.js → bundle-M8daFQIk.js} +1 -1
  535. package/cjs/chunks/bundle-M8daFQIk.js.map +1 -0
  536. package/cjs/chunks/{bundle-3cs0QTVC.js → bundle-MOeg0w2y.js} +8 -8
  537. package/cjs/chunks/bundle-MOeg0w2y.js.map +1 -0
  538. package/cjs/chunks/{bundle-s6zxpsD2.js → bundle-O7aiBHjb.js} +1 -1
  539. package/cjs/chunks/bundle-O7aiBHjb.js.map +1 -0
  540. package/cjs/chunks/{bundle-BfltwQmn.js → bundle-PQzwy3jy.js} +4 -4
  541. package/cjs/chunks/bundle-PQzwy3jy.js.map +1 -0
  542. package/cjs/chunks/{bundle-DLJaRSlI.js → bundle-T-G9xEkp.js} +6 -6
  543. package/cjs/chunks/{bundle-DLJaRSlI.js.map → bundle-T-G9xEkp.js.map} +1 -1
  544. package/cjs/chunks/{bundle-BccP5Ibj.js → bundle-Yjpq8vbP.js} +6 -6
  545. package/cjs/chunks/bundle-Yjpq8vbP.js.map +1 -0
  546. package/cjs/chunks/{bundle-CGj7JjS6.js → bundle-aG-hWuAD.js} +3 -3
  547. package/cjs/chunks/{bundle-CGj7JjS6.js.map → bundle-aG-hWuAD.js.map} +1 -1
  548. package/cjs/chunks/{bundle-g_KraWwN.js → bundle-hCJeSxP-.js} +1 -1
  549. package/cjs/chunks/bundle-hCJeSxP-.js.map +1 -0
  550. package/cjs/chunks/{bundle-DqI18R30.js → bundle-rpsBHYco.js} +2 -2
  551. package/cjs/chunks/bundle-rpsBHYco.js.map +1 -0
  552. package/cjs/chunks/{bundle-bY1hgshj.js → bundle-uECaYGj5.js} +1 -1
  553. package/cjs/chunks/bundle-uECaYGj5.js.map +1 -0
  554. package/cjs/chunks/{bundle-cTn0cfLN.js → bundle-uI_O2Czp.js} +1 -1
  555. package/cjs/chunks/bundle-uI_O2Czp.js.map +1 -0
  556. package/cjs/chunks/{bundle-Co9yOyxu.js → bundle-vUisJAG7.js} +1 -1
  557. package/cjs/chunks/bundle-vUisJAG7.js.map +1 -0
  558. package/cjs/chunks/{bundle-BxoqIm61.js → bundle-z80qnG4i.js} +1 -1
  559. package/cjs/chunks/bundle-z80qnG4i.js.map +1 -0
  560. package/cjs/chunks/{bundle-ddTeWqgo.js → bundle-zzt8w6dw.js} +4 -4
  561. package/cjs/chunks/{bundle-ddTeWqgo.js.map → bundle-zzt8w6dw.js.map} +1 -1
  562. package/cjs/hooks/useLocalization.js +3 -3
  563. package/cjs/hooks/useModal.js +14 -14
  564. package/cjs/index.js +84 -84
  565. package/cjs/pubSub/topics.js +1 -1
  566. package/cjs/sendbirdSelectors.js +2 -2
  567. package/cjs/ui/Accordion.js +2 -2
  568. package/cjs/ui/AccordionGroup.js +1 -1
  569. package/cjs/ui/AdminMessage.js +3 -3
  570. package/cjs/ui/Avatar.js +4 -4
  571. package/cjs/ui/Badge.js +4 -4
  572. package/cjs/ui/BottomSheet.js +14 -14
  573. package/cjs/ui/Button.js +3 -3
  574. package/cjs/ui/ChannelAvatar.js +5 -5
  575. package/cjs/ui/ConnectionStatus.js +5 -5
  576. package/cjs/ui/ContextMenu.js +11 -11
  577. package/cjs/ui/DateSeparator.js +4 -4
  578. package/cjs/ui/EmojiReactions.js +20 -20
  579. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
  580. package/cjs/ui/FileMessageItemBody.js +10 -10
  581. package/cjs/ui/FileViewer.js +17 -17
  582. package/cjs/ui/Header.js +6 -6
  583. package/cjs/ui/Icon.js +2 -2
  584. package/cjs/ui/IconButton.js +1 -1
  585. package/cjs/ui/ImageRenderer.js +2 -2
  586. package/cjs/ui/Input.js +3 -3
  587. package/cjs/ui/Label.js +3 -3
  588. package/cjs/ui/LinkLabel.js +4 -4
  589. package/cjs/ui/Loader.js +2 -2
  590. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  591. package/cjs/ui/MentionLabel.js +18 -18
  592. package/cjs/ui/MentionUserLabel.js +2 -2
  593. package/cjs/ui/MessageContent.js +40 -40
  594. package/cjs/ui/MessageFeedbackFailedModal.js +15 -15
  595. package/cjs/ui/MessageFeedbackModal.js +15 -15
  596. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  597. package/cjs/ui/MessageInput.js +48 -41
  598. package/cjs/ui/MessageInput.js.map +1 -1
  599. package/cjs/ui/MessageItemMenu.js +12 -12
  600. package/cjs/ui/MessageItemReactionMenu.js +13 -13
  601. package/cjs/ui/MessageMenu.js +12 -12
  602. package/cjs/ui/MessageSearchFileItem.js +15 -15
  603. package/cjs/ui/MessageSearchItem.js +11 -11
  604. package/cjs/ui/MessageStatus.js +13 -13
  605. package/cjs/ui/MessageTemplate.js +1 -1
  606. package/cjs/ui/MobileFeedbackMenu.js +14 -14
  607. package/cjs/ui/MobileMenu.js +15 -15
  608. package/cjs/ui/Modal.js +14 -14
  609. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  610. package/cjs/ui/OGMessageItemBody.js +21 -21
  611. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  612. package/cjs/ui/OpenChannelAvatar.js +7 -7
  613. package/cjs/ui/OpenchannelConversationHeader.js +7 -7
  614. package/cjs/ui/OpenchannelFileMessage.js +22 -22
  615. package/cjs/ui/OpenchannelOGMessage.js +24 -24
  616. package/cjs/ui/OpenchannelThumbnailMessage.js +21 -21
  617. package/cjs/ui/OpenchannelUserMessage.js +22 -22
  618. package/cjs/ui/PlaceHolder.js +5 -5
  619. package/cjs/ui/PlaybackTime.js +3 -3
  620. package/cjs/ui/ProgressBar.js +1 -1
  621. package/cjs/ui/QuoteMessage.js +10 -10
  622. package/cjs/ui/QuoteMessageInput.js +10 -10
  623. package/cjs/ui/ReactionBadge.js +3 -3
  624. package/cjs/ui/ReactionButton.js +4 -4
  625. package/cjs/ui/SortByRow.js +2 -2
  626. package/cjs/ui/TemplateMessageItemBody.js +10 -10
  627. package/cjs/ui/TextButton.js +2 -2
  628. package/cjs/ui/TextMessageItemBody.js +21 -21
  629. package/cjs/ui/ThreadReplies.js +7 -7
  630. package/cjs/ui/ThumbnailMessageItemBody.js +9 -9
  631. package/cjs/ui/Toggle.js +1 -1
  632. package/cjs/ui/Tooltip.js +3 -3
  633. package/cjs/ui/TooltipWrapper.js +1 -1
  634. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  635. package/cjs/ui/UnknownMessageItemBody.js +8 -8
  636. package/cjs/ui/UserListItem.js +18 -18
  637. package/cjs/ui/UserListItemMenu.js +12 -12
  638. package/cjs/ui/UserProfile.js +18 -18
  639. package/cjs/ui/VoiceMessageInput.js +8 -8
  640. package/cjs/ui/VoiceMessageItemBody.js +14 -14
  641. package/cjs/ui/Word.js +18 -18
  642. package/cjs/useSendbirdStateContext.js +1 -1
  643. package/cjs/utils/message/isVoiceMessage.js +5 -5
  644. package/cjs/withSendbird.js +1 -1
  645. package/dist/index.css +2 -2
  646. package/hooks/useLocalization.js +3 -3
  647. package/hooks/useModal.js +14 -14
  648. package/index.js +84 -84
  649. package/package.json +1 -1
  650. package/pubSub/topics.js +1 -1
  651. package/sendbirdSelectors.js +2 -2
  652. package/types/hooks/VoiceRecorder/index.d.ts +1 -1
  653. package/types/hooks/useKeyDown/useKeyDown.d.ts +1 -0
  654. package/types/lib/hooks/useConnect/__test__/data.mocks.d.ts +5 -5
  655. package/types/lib/hooks/useConnect/types.d.ts +1 -0
  656. package/types/lib/pubSub/index.d.ts +1 -1
  657. package/types/modules/App/types.d.ts +1 -0
  658. package/types/modules/Channel/context/hooks/useSendMultipleFilesMessage.d.ts +1 -0
  659. package/types/modules/ChannelList/context/hooks/useActiveChannelUrl.d.ts +1 -0
  660. package/types/modules/ChannelList/utils.d.ts +3 -1
  661. package/types/modules/CreateChannel/utils.d.ts +2 -2
  662. package/types/modules/Message/hooks/useDirtyGetMentions.d.ts +1 -0
  663. package/types/modules/MessageSearch/index.d.ts +1 -0
  664. package/types/modules/OpenChannel/components/FrozenChannelNotification/index.d.ts +1 -0
  665. package/types/modules/OpenChannel/components/OpenChannelHeader/index.d.ts +1 -0
  666. package/types/modules/OpenChannel/components/OpenChannelMessage/RemoveMessageModal.d.ts +1 -0
  667. package/types/modules/OpenChannel/context/hooks/useCheckScrollBottom.d.ts +1 -0
  668. package/types/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +1 -0
  669. package/types/modules/OpenChannelApp/components/CommunityChannelList.d.ts +1 -0
  670. package/types/modules/OpenChannelApp/components/StreamingChannelList.d.ts +1 -0
  671. package/types/ui/Accordion/index.d.ts +1 -0
  672. package/types/ui/ChannelAvatar/OpenChannelAvatar.d.ts +1 -0
  673. package/types/ui/ChannelAvatar/index.d.ts +1 -0
  674. package/types/ui/ContextMenu/index.d.ts +1 -1
  675. package/types/ui/Docs/Introduction.d.ts +1 -0
  676. package/types/ui/FormMessageItemBody/index.d.ts +2 -0
  677. package/types/ui/MentionLabel/index.d.ts +1 -0
  678. package/types/ui/MentionUserLabel/index.d.ts +1 -0
  679. package/types/ui/MessageInput/hooks/usePaste/insertTemplate.d.ts +1 -1
  680. package/types/ui/MessageInput/hooks/usePaste/types.d.ts +1 -0
  681. package/types/ui/MessageInput/utils.d.ts +5 -1
  682. package/types/ui/MessageSearchItem/index.d.ts +1 -0
  683. package/types/ui/OpenchannelConversationHeader/index.d.ts +1 -0
  684. package/types/ui/OpenchannelFileMessage/index.d.ts +1 -0
  685. package/types/ui/OpenchannelOGMessage/index.d.ts +1 -0
  686. package/types/ui/OpenchannelThumbnailMessage/index.d.ts +1 -0
  687. package/types/ui/Word/index.d.ts +1 -0
  688. package/types/utils/index.d.ts +9 -1
  689. package/types/utils/isVoiceMessage.d.ts +1 -1
  690. package/types/utils/messages.d.ts +1 -1
  691. package/ui/Accordion.js +2 -2
  692. package/ui/AccordionGroup.js +1 -1
  693. package/ui/AdminMessage.js +3 -3
  694. package/ui/Avatar.js +4 -4
  695. package/ui/Badge.js +4 -4
  696. package/ui/BottomSheet.js +14 -14
  697. package/ui/Button.js +3 -3
  698. package/ui/ChannelAvatar.js +5 -5
  699. package/ui/ConnectionStatus.js +5 -5
  700. package/ui/ContextMenu.js +11 -11
  701. package/ui/DateSeparator.js +4 -4
  702. package/ui/EmojiReactions.js +20 -20
  703. package/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
  704. package/ui/FileMessageItemBody.js +10 -10
  705. package/ui/FileViewer.js +17 -17
  706. package/ui/Header.js +6 -6
  707. package/ui/Icon.js +2 -2
  708. package/ui/IconButton.js +1 -1
  709. package/ui/ImageRenderer.js +2 -2
  710. package/ui/Input.js +3 -3
  711. package/ui/Label.js +3 -3
  712. package/ui/LinkLabel.js +4 -4
  713. package/ui/Loader.js +2 -2
  714. package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  715. package/ui/MentionLabel.js +18 -18
  716. package/ui/MentionUserLabel.js +2 -2
  717. package/ui/MessageContent.js +40 -40
  718. package/ui/MessageFeedbackFailedModal.js +15 -15
  719. package/ui/MessageFeedbackModal.js +15 -15
  720. package/ui/MessageInput/hooks/usePaste.js +7 -7
  721. package/ui/MessageInput.js +48 -41
  722. package/ui/MessageInput.js.map +1 -1
  723. package/ui/MessageItemMenu.js +12 -12
  724. package/ui/MessageItemReactionMenu.js +13 -13
  725. package/ui/MessageMenu.js +12 -12
  726. package/ui/MessageSearchFileItem.js +15 -15
  727. package/ui/MessageSearchItem.js +11 -11
  728. package/ui/MessageStatus.js +13 -13
  729. package/ui/MessageTemplate.js +1 -1
  730. package/ui/MobileFeedbackMenu.js +14 -14
  731. package/ui/MobileMenu.js +15 -15
  732. package/ui/Modal.js +14 -14
  733. package/ui/MutedAvatarOverlay.js +2 -2
  734. package/ui/OGMessageItemBody.js +21 -21
  735. package/ui/OpenChannelAdminMessage.js +3 -3
  736. package/ui/OpenChannelAvatar.js +7 -7
  737. package/ui/OpenchannelConversationHeader.js +7 -7
  738. package/ui/OpenchannelFileMessage.js +22 -22
  739. package/ui/OpenchannelOGMessage.js +24 -24
  740. package/ui/OpenchannelThumbnailMessage.js +21 -21
  741. package/ui/OpenchannelUserMessage.js +22 -22
  742. package/ui/PlaceHolder.js +5 -5
  743. package/ui/PlaybackTime.js +3 -3
  744. package/ui/ProgressBar.js +1 -1
  745. package/ui/QuoteMessage.js +10 -10
  746. package/ui/QuoteMessageInput.js +10 -10
  747. package/ui/ReactionBadge.js +3 -3
  748. package/ui/ReactionButton.js +4 -4
  749. package/ui/SortByRow.js +2 -2
  750. package/ui/TemplateMessageItemBody.js +10 -10
  751. package/ui/TextButton.js +2 -2
  752. package/ui/TextMessageItemBody.js +21 -21
  753. package/ui/ThreadReplies.js +7 -7
  754. package/ui/ThumbnailMessageItemBody.js +9 -9
  755. package/ui/Toggle.js +1 -1
  756. package/ui/Tooltip.js +3 -3
  757. package/ui/TooltipWrapper.js +1 -1
  758. package/ui/TypingIndicatorBubble.js +4 -4
  759. package/ui/UnknownMessageItemBody.js +8 -8
  760. package/ui/UserListItem.js +18 -18
  761. package/ui/UserListItemMenu.js +13 -13
  762. package/ui/UserProfile.js +18 -18
  763. package/ui/VoiceMessageInput.js +8 -8
  764. package/ui/VoiceMessageItemBody.js +14 -14
  765. package/ui/Word.js +18 -18
  766. package/useSendbirdStateContext.js +1 -1
  767. package/utils/message/isVoiceMessage.js +5 -5
  768. package/withSendbird.js +1 -1
  769. package/chunks/bundle-2-RfbPHL.js.map +0 -1
  770. package/chunks/bundle-3sZs8f9n.js.map +0 -1
  771. package/chunks/bundle-AV2qqH9G.js.map +0 -1
  772. package/chunks/bundle-B5157rdG.js.map +0 -1
  773. package/chunks/bundle-B5pWUwTI.js.map +0 -1
  774. package/chunks/bundle-BJuj9G4S.js.map +0 -1
  775. package/chunks/bundle-BW3AiewC.js.map +0 -1
  776. package/chunks/bundle-BdE39Lk2.js.map +0 -1
  777. package/chunks/bundle-BjAeG049.js.map +0 -1
  778. package/chunks/bundle-BlguTwHI.js.map +0 -1
  779. package/chunks/bundle-BoENnpQQ.js.map +0 -1
  780. package/chunks/bundle-Bs4dlPq1.js.map +0 -1
  781. package/chunks/bundle-C3wdhLEG.js.map +0 -1
  782. package/chunks/bundle-CBHlCwa8.js.map +0 -1
  783. package/chunks/bundle-CGb4JGZ-.js.map +0 -1
  784. package/chunks/bundle-CH6t4mkR.js.map +0 -1
  785. package/chunks/bundle-CTVxl16S.js.map +0 -1
  786. package/chunks/bundle-CYoJWHCE.js.map +0 -1
  787. package/chunks/bundle-C_zEpfCP.js.map +0 -1
  788. package/chunks/bundle-CcOOoseq.js.map +0 -1
  789. package/chunks/bundle-CdrSitU9.js.map +0 -1
  790. package/chunks/bundle-Ci-RNuvu.js.map +0 -1
  791. package/chunks/bundle-CiR8AZTC.js.map +0 -1
  792. package/chunks/bundle-CjJk57u5.js.map +0 -1
  793. package/chunks/bundle-CpMvhj21.js.map +0 -1
  794. package/chunks/bundle-CzHaD4PM.js.map +0 -1
  795. package/chunks/bundle-D2GzZ_yy.js.map +0 -1
  796. package/chunks/bundle-D2HQ66dZ.js.map +0 -1
  797. package/chunks/bundle-D4d941oR.js.map +0 -1
  798. package/chunks/bundle-D9MeorzH.js.map +0 -1
  799. package/chunks/bundle-DKdROCX_.js.map +0 -1
  800. package/chunks/bundle-DOfhjbKd.js.map +0 -1
  801. package/chunks/bundle-DP3z2QNm.js.map +0 -1
  802. package/chunks/bundle-DWCm-9so.js.map +0 -1
  803. package/chunks/bundle-DXFVroy5.js.map +0 -1
  804. package/chunks/bundle-DXKWyDSR.js.map +0 -1
  805. package/chunks/bundle-DcPIDUrE.js.map +0 -1
  806. package/chunks/bundle-DdJ9pMWn.js.map +0 -1
  807. package/chunks/bundle-Dfzawq4C.js.map +0 -1
  808. package/chunks/bundle-DiK8ifY3.js.map +0 -1
  809. package/chunks/bundle-DrGRld-t.js.map +0 -1
  810. package/chunks/bundle-DwAJZ4P8.js.map +0 -1
  811. package/chunks/bundle-QYB3Mk61.js.map +0 -1
  812. package/chunks/bundle-QgerWYLz.js.map +0 -1
  813. package/chunks/bundle-QsOiwa9F.js.map +0 -1
  814. package/chunks/bundle-VPiE9Blu.js.map +0 -1
  815. package/chunks/bundle-gBmMoaTG.js.map +0 -1
  816. package/chunks/bundle-kFa80LJe.js.map +0 -1
  817. package/chunks/bundle-mqagBpi9.js.map +0 -1
  818. package/chunks/bundle-pv93aExN.js.map +0 -1
  819. package/chunks/bundle-rjBen5BS.js.map +0 -1
  820. package/chunks/bundle-w2yLrIlh.js.map +0 -1
  821. package/cjs/chunks/bundle-1FpUZD1-.js.map +0 -1
  822. package/cjs/chunks/bundle-3cs0QTVC.js.map +0 -1
  823. package/cjs/chunks/bundle-4erteucE.js.map +0 -1
  824. package/cjs/chunks/bundle-AGX9GDfp.js.map +0 -1
  825. package/cjs/chunks/bundle-B1wRtVQE.js.map +0 -1
  826. package/cjs/chunks/bundle-B4ddXNPV.js.map +0 -1
  827. package/cjs/chunks/bundle-B5nluCgf.js.map +0 -1
  828. package/cjs/chunks/bundle-B99NksU1.js.map +0 -1
  829. package/cjs/chunks/bundle-BHl3Hq-q.js.map +0 -1
  830. package/cjs/chunks/bundle-BHpgOCTU.js.map +0 -1
  831. package/cjs/chunks/bundle-BTVhcfBF.js.map +0 -1
  832. package/cjs/chunks/bundle-BWj9bHJr.js.map +0 -1
  833. package/cjs/chunks/bundle-BXpl_WnC.js.map +0 -1
  834. package/cjs/chunks/bundle-BccP5Ibj.js.map +0 -1
  835. package/cjs/chunks/bundle-BdOQSlg8.js.map +0 -1
  836. package/cjs/chunks/bundle-BfltwQmn.js.map +0 -1
  837. package/cjs/chunks/bundle-Bh9p4eL5.js.map +0 -1
  838. package/cjs/chunks/bundle-BkiVNmZI.js.map +0 -1
  839. package/cjs/chunks/bundle-Bu3BLfvI.js.map +0 -1
  840. package/cjs/chunks/bundle-BxoqIm61.js.map +0 -1
  841. package/cjs/chunks/bundle-C46LqYyh.js.map +0 -1
  842. package/cjs/chunks/bundle-C58VJxCs.js.map +0 -1
  843. package/cjs/chunks/bundle-C7iW1YXM.js.map +0 -1
  844. package/cjs/chunks/bundle-CCNmiNBT.js.map +0 -1
  845. package/cjs/chunks/bundle-CFdryFSh.js.map +0 -1
  846. package/cjs/chunks/bundle-CWuXh6bZ.js.map +0 -1
  847. package/cjs/chunks/bundle-CXTI-r-K.js.map +0 -1
  848. package/cjs/chunks/bundle-CXcDT8Da.js.map +0 -1
  849. package/cjs/chunks/bundle-CfvwGGIv.js.map +0 -1
  850. package/cjs/chunks/bundle-ChfAP41k.js.map +0 -1
  851. package/cjs/chunks/bundle-Co9yOyxu.js.map +0 -1
  852. package/cjs/chunks/bundle-Cppp85AW.js.map +0 -1
  853. package/cjs/chunks/bundle-CtHeK1-9.js.map +0 -1
  854. package/cjs/chunks/bundle-D2WvavCb.js.map +0 -1
  855. package/cjs/chunks/bundle-D4-yrnBd.js.map +0 -1
  856. package/cjs/chunks/bundle-D7q15dUg.js.map +0 -1
  857. package/cjs/chunks/bundle-DWAM41PH.js.map +0 -1
  858. package/cjs/chunks/bundle-DWYr_udk.js.map +0 -1
  859. package/cjs/chunks/bundle-De4jqnzj.js.map +0 -1
  860. package/cjs/chunks/bundle-Dffwbiy_.js.map +0 -1
  861. package/cjs/chunks/bundle-Dg3AsE_I.js.map +0 -1
  862. package/cjs/chunks/bundle-DgaIgNw7.js.map +0 -1
  863. package/cjs/chunks/bundle-DlUfvasr.js.map +0 -1
  864. package/cjs/chunks/bundle-DormKOde.js.map +0 -1
  865. package/cjs/chunks/bundle-DqI18R30.js.map +0 -1
  866. package/cjs/chunks/bundle-Drgw8r9-.js.map +0 -1
  867. package/cjs/chunks/bundle-DtjZ8gz_.js.map +0 -1
  868. package/cjs/chunks/bundle-DufP6x7V.js.map +0 -1
  869. package/cjs/chunks/bundle-Efqr4p5P.js.map +0 -1
  870. package/cjs/chunks/bundle-FupN89oG.js.map +0 -1
  871. package/cjs/chunks/bundle-LPDBHnUG.js.map +0 -1
  872. package/cjs/chunks/bundle-bY1hgshj.js.map +0 -1
  873. package/cjs/chunks/bundle-bZHcfwel.js.map +0 -1
  874. package/cjs/chunks/bundle-cEg-vIno.js.map +0 -1
  875. package/cjs/chunks/bundle-cTn0cfLN.js.map +0 -1
  876. package/cjs/chunks/bundle-g_KraWwN.js.map +0 -1
  877. package/cjs/chunks/bundle-kDmuLnl7.js.map +0 -1
  878. package/cjs/chunks/bundle-ki2BXxTR.js.map +0 -1
  879. package/cjs/chunks/bundle-nqpiwGrf.js.map +0 -1
  880. package/cjs/chunks/bundle-nzMbthND.js.map +0 -1
  881. package/cjs/chunks/bundle-s6zxpsD2.js.map +0 -1
  882. package/cjs/chunks/bundle-yxVAAzPF.js.map +0 -1
  883. package/cjs/chunks/bundle-zybaePo9.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-GawAxqNK.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CWUQ80OI.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -7,4 +7,4 @@ var isMobileIOS = function (userAgent) {
7
7
  };
8
8
 
9
9
  export { isSafari as a, isMobileIOS as i };
10
- //# sourceMappingURL=bundle-DiK8ifY3.js.map
10
+ //# sourceMappingURL=bundle-CXA05pe2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CXA05pe2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
@@ -1,9 +1,9 @@
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-AJS7Mngy.js';
4
- import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-CGb4JGZ-.js';
5
- import './bundle-CpMvhj21.js';
6
- import { d as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-DP3z2QNm.js';
3
+ import { s as scrollIntoLast, d as scrollToRenderedMessage } from './bundle-Bf00X-bc.js';
4
+ import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-BqOj5e7u.js';
5
+ import './bundle-Cytf5OXn.js';
6
+ import { d as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-Dz4_R08c.js';
7
7
 
8
8
  // For legacy
9
9
  // These are not used for collections(GroupChannel)
@@ -100,4 +100,4 @@ function useInitialMessagesFetch(_a, _b) {
100
100
  }
101
101
 
102
102
  export { NEXT_RESULT_SIZE as N, PREV_RESULT_SIZE as P, useInitialMessagesFetch as u };
103
- //# sourceMappingURL=bundle-rPN_itAt.js.map
103
+ //# sourceMappingURL=bundle-CXcQbCC8.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-rPN_itAt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CXcQbCC8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,13 +1,13 @@
1
- import { _ as __assign } from './bundle-CxLxJCBu.js';
1
+ import { _ as __assign } from './bundle-BXYHgzRj.js';
2
2
  import React__default from 'react';
3
3
  import { IconTypes, IconColors } from '../ui/Icon.js';
4
4
  import ChannelAvatar from '../ui/ChannelAvatar.js';
5
- import { g as getChannelTitle } from './bundle-C3wdhLEG.js';
6
- import { u as useMediaQueryContext } from './bundle-Ci-RNuvu.js';
5
+ import { g as getChannelTitle } from './bundle-DzMGbPvb.js';
6
+ import { u as useMediaQueryContext } from './bundle-DtujCCHB.js';
7
7
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
8
- import { u as useLocalization } from './bundle-d1cOX5nv.js';
8
+ import { u as useLocalization } from './bundle-DWyboFhb.js';
9
9
  import Header from '../ui/Header.js';
10
- import { c as classnames } from './bundle-kFa80LJe.js';
10
+ import { c as classnames } from './bundle-u-vzK-oc.js';
11
11
 
12
12
  var GroupChannelHeaderView = function (_a) {
13
13
  var className = _a.className, currentChannel = _a.currentChannel, showSearchIcon = _a.showSearchIcon, onBackClick = _a.onBackClick, onSearchClick = _a.onSearchClick, onChatHeaderActionClick = _a.onChatHeaderActionClick,
@@ -28,4 +28,4 @@ var GroupChannelHeaderView = function (_a) {
28
28
  };
29
29
 
30
30
  export { GroupChannelHeaderView as G };
31
- //# sourceMappingURL=bundle-CdrSitU9.js.map
31
+ //# sourceMappingURL=bundle-CXwDMEak.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CXwDMEak.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -25,4 +25,4 @@ var copyToClipboard = function (text) {
25
25
  };
26
26
 
27
27
  export { copyToClipboard as c };
28
- //# sourceMappingURL=bundle-D4d941oR.js.map
28
+ //# sourceMappingURL=bundle-CZHzuE_v.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CZHzuE_v.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,15 +1,15 @@
1
- import { e as __extends, _ as __assign, c as __spreadArray } from './bundle-CxLxJCBu.js';
1
+ import { e as __extends, _ as __assign, c as __spreadArray } from './bundle-BXYHgzRj.js';
2
2
  import React__default, { useState, useRef, useCallback, useEffect, createContext, useContext } from 'react';
3
3
  import { createPortal } from 'react-dom';
4
- import { c as classnames } from './bundle-kFa80LJe.js';
4
+ import { c as classnames } from './bundle-u-vzK-oc.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
8
  import '../withSendbird.js';
9
9
  import '../ui/IconButton.js';
10
- import './bundle-BA9oFJ90.js';
11
- import './bundle-d1cOX5nv.js';
12
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-CjJk57u5.js';
10
+ import './bundle-CGbKAqtd.js';
11
+ import './bundle-DWyboFhb.js';
12
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DNnUvjnZ.js';
13
13
 
14
14
  var APP_LAYOUT_ROOT = 'sendbird-app__layout';
15
15
 
@@ -324,4 +324,4 @@ function ContextMenu(_a) {
324
324
  }
325
325
 
326
326
  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 };
327
- //# sourceMappingURL=bundle-BzR1dD25.js.map
327
+ //# sourceMappingURL=bundle-CZybJwCN.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-BzR1dD25.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CZybJwCN.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,10 +1,10 @@
1
1
  import React__default, { useState, useMemo, useRef, useEffect } from 'react';
2
- import { a as __awaiter, b as __generator, _ as __assign } from './bundle-CxLxJCBu.js';
2
+ import { a as __awaiter, b as __generator, _ as __assign } from './bundle-BXYHgzRj.js';
3
3
  import { SendingStatus } from '@sendbird/chat/message';
4
4
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
5
5
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
6
6
  import ImageRenderer, { getBorderRadiusForMultipleImageRenderer } from '../ui/ImageRenderer.js';
7
- import { x as getClassName, z as isGif, K } from './bundle-BA9oFJ90.js';
7
+ import { x as getClassName, z as isGif, K } from './bundle-CGbKAqtd.js';
8
8
  import FileViewer from '../ui/FileViewer.js';
9
9
 
10
10
  function ImageGrid(_a) {
@@ -178,4 +178,4 @@ var useFileInfoListWithUploaded = function (message) {
178
178
  };
179
179
 
180
180
  export { MultipleFilesMessageItemBody as M, ThreadMessageKind as T, useFileInfoListWithUploaded as a, useThreadMessageKindKeySelector as u };
181
- //# sourceMappingURL=bundle-X_IrklBY.js.map
181
+ //# sourceMappingURL=bundle-CaWp0im0.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-X_IrklBY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CaWp0im0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
- import { a as __awaiter, b as __generator } from './bundle-CxLxJCBu.js';
2
- import { p as pxToNumber } from './bundle-C_zEpfCP.js';
1
+ import { a as __awaiter, b as __generator } from './bundle-BXYHgzRj.js';
2
+ import { p as pxToNumber } from './bundle-Dwpc_MJZ.js';
3
3
 
4
4
  var compressImage = function (_a) {
5
5
  var imageFile = _a.imageFile, compressionRate = _a.compressionRate, resizingWidth = _a.resizingWidth, resizingHeight = _a.resizingHeight, outputFormat = _a.outputFormat;
@@ -118,4 +118,4 @@ var compressImages = function (_a) { return __awaiter(void 0, [_a], void 0, func
118
118
  }); };
119
119
 
120
120
  export { compressImages as c };
121
- //# sourceMappingURL=bundle-B5N-CojP.js.map
121
+ //# sourceMappingURL=bundle-CdmtMf8Y.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-B5N-CojP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CdmtMf8Y.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -39,4 +39,4 @@ var PUBSUB_TOPICS;
39
39
  var pubSubTopics = PUBSUB_TOPICS;
40
40
 
41
41
  export { PublishingModuleType as P, shouldPubSubPublishToThread as a, PUBSUB_TOPICS as b, pubSubTopics as p, shouldPubSubPublishToChannel as s };
42
- //# sourceMappingURL=bundle-mqagBpi9.js.map
42
+ //# sourceMappingURL=bundle-CeFR-WNJ.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CeFR-WNJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,21 +1,21 @@
1
1
  import React__default, { useContext } from 'react';
2
- import './bundle-CxLxJCBu.js';
2
+ import './bundle-BXYHgzRj.js';
3
3
  import '@sendbird/uikit-tools';
4
4
  import '../withSendbird.js';
5
- import './bundle-DRpjMk0B.js';
5
+ import './bundle-Bd7J49Pj.js';
6
6
  import 'css-vars-ponyfill';
7
- import './bundle-BA9oFJ90.js';
7
+ import './bundle-CGbKAqtd.js';
8
8
  import '@sendbird/chat';
9
9
  import '@sendbird/chat/openChannel';
10
10
  import '@sendbird/chat/groupChannel';
11
- import './bundle-DdJ9pMWn.js';
12
- import './bundle-d1cOX5nv.js';
13
- import './bundle-Ci-RNuvu.js';
14
- import './bundle-BzR1dD25.js';
11
+ import './bundle-C4eUm39A.js';
12
+ import './bundle-DWyboFhb.js';
13
+ import './bundle-DtujCCHB.js';
14
+ import './bundle-CZybJwCN.js';
15
15
  import 'react-dom';
16
16
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
17
17
  import '../ui/IconButton.js';
18
- import './bundle-CjJk57u5.js';
18
+ import './bundle-DNnUvjnZ.js';
19
19
 
20
20
  /**
21
21
  * user profile goes deep inside the component tree
@@ -42,4 +42,4 @@ var UserProfileProvider = function (_a) {
42
42
  };
43
43
 
44
44
  export { UserProfileProvider as U, useUserProfileContext as u };
45
- //# sourceMappingURL=bundle-DXFVroy5.js.map
45
+ //# sourceMappingURL=bundle-CfyvTsrV.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CfyvTsrV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,15 +1,15 @@
1
- import { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray } from './bundle-CxLxJCBu.js';
1
+ import { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray } from './bundle-BXYHgzRj.js';
2
2
  import React__default, { useState, useContext, useEffect, useCallback } from 'react';
3
- import { L as LocalizationContext, u as useLocalization } from './bundle-d1cOX5nv.js';
3
+ import { L as LocalizationContext, u as useLocalization } from './bundle-DWyboFhb.js';
4
4
  import { useChannelSettingsContext } from '../ChannelSettings/context.js';
5
5
  import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
6
- import { U as UserListItemMenu } from './bundle-CsqTBO6B.js';
6
+ import { U as UserListItemMenu } from './bundle-DMgkYVtL.js';
7
7
  import { UserListItem } from '../ui/UserListItem.js';
8
- import { M as Modal } from './bundle-DRpjMk0B.js';
9
- import { u as useOnScrollPositionChangeDetector } from './bundle-CzHaD4PM.js';
10
- import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-CjJk57u5.js';
8
+ import { M as Modal } from './bundle-Bd7J49Pj.js';
9
+ import { u as useOnScrollPositionChangeDetector } from './bundle-Do-Uo0Mj.js';
10
+ import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-DNnUvjnZ.js';
11
11
  import { OperatorFilter } from '@sendbird/chat/groupChannel';
12
- import { n as noop } from './bundle-kFa80LJe.js';
12
+ import { n as noop } from './bundle-u-vzK-oc.js';
13
13
 
14
14
  function OperatorsModal(_a) {
15
15
  var _this = this;
@@ -357,4 +357,4 @@ var MutedMemberList = function (_a) {
357
357
  };
358
358
 
359
359
  export { BannedUserList as B, MutedMemberList as M, OperatorList as O };
360
- //# sourceMappingURL=bundle-D9B0ru2u.js.map
360
+ //# sourceMappingURL=bundle-ChPqJjpP.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-D9B0ru2u.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-ChPqJjpP.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-DKdROCX_.js.map
13
+ //# sourceMappingURL=bundle-ClfkSu0m.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-ClfkSu0m.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -247,4 +247,4 @@ var getStringSet = function (lang) {
247
247
  };
248
248
 
249
249
  export { getStringSet as g };
250
- //# sourceMappingURL=bundle-DS1EhNtb.js.map
250
+ //# sourceMappingURL=bundle-CqMQE3-R.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-DS1EhNtb.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CqMQE3-R.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,10 +1,10 @@
1
1
  import React__default, { useContext } from 'react';
2
- import { M as Modal } from './bundle-DRpjMk0B.js';
3
- import './bundle-CxLxJCBu.js';
4
- import './bundle-CjJk57u5.js';
2
+ import { M as Modal } from './bundle-Bd7J49Pj.js';
3
+ import './bundle-BXYHgzRj.js';
4
+ import './bundle-DNnUvjnZ.js';
5
5
  import { ButtonTypes } from '../ui/Button.js';
6
- import { L as LocalizationContext } from './bundle-d1cOX5nv.js';
7
- import { g as getModalDeleteMessageTitle } from './bundle-DcPIDUrE.js';
6
+ import { L as LocalizationContext } from './bundle-DWyboFhb.js';
7
+ import { g as getModalDeleteMessageTitle } from './bundle-DGskllVK.js';
8
8
 
9
9
  var RemoveMessageModalView = function (props) {
10
10
  var _a;
@@ -25,4 +25,4 @@ var RemoveMessageModalView = function (props) {
25
25
  };
26
26
 
27
27
  export { RemoveMessageModalView as R };
28
- //# sourceMappingURL=bundle-Dfzawq4C.js.map
28
+ //# sourceMappingURL=bundle-CunaqP3n.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CunaqP3n.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-CjJk57u5.js';
2
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DNnUvjnZ.js';
3
3
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
4
- import { A as Avatar } from './bundle-DOfhjbKd.js';
5
- import { L as LocalizationContext, u as useLocalization } from './bundle-d1cOX5nv.js';
6
- import { u as uuidv4 } from './bundle-DKdROCX_.js';
7
- import { c as classnames } from './bundle-kFa80LJe.js';
4
+ import { A as Avatar } from './bundle-DGC3rWK4.js';
5
+ import { L as LocalizationContext, u as useLocalization } from './bundle-DWyboFhb.js';
6
+ import { u as uuidv4 } from './bundle-ClfkSu0m.js';
7
+ import { c as classnames } from './bundle-u-vzK-oc.js';
8
8
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
9
- import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-CpMvhj21.js';
10
- import { M as MessageInputKeys } from './bundle-D2GzZ_yy.js';
11
- import { a as __awaiter, b as __generator } from './bundle-CxLxJCBu.js';
9
+ import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-Cytf5OXn.js';
10
+ import { M as MessageInputKeys } from './bundle-DyTMSX7q.js';
11
+ import { a as __awaiter, b as __generator } from './bundle-BXYHgzRj.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;
@@ -169,4 +169,4 @@ var SuggestedMentionListView = function (props) {
169
169
  };
170
170
 
171
171
  export { SuggestedMentionListView as S };
172
- //# sourceMappingURL=bundle-Dgu8bVmd.js.map
172
+ //# sourceMappingURL=bundle-CwopwRQp.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-Dgu8bVmd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CwopwRQp.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -9,4 +9,4 @@ var ThreadReplySelectType;
9
9
  })(ThreadReplySelectType || (ThreadReplySelectType = {}));
10
10
 
11
11
  export { MAX_USER_MENTION_COUNT as M, ThreadReplySelectType as T, UIKIT_COMPATIBLE_FORM_VERSION as U, USER_MENTION_TEMP_CHAR as a, MAX_USER_SUGGESTION_COUNT as b };
12
- //# sourceMappingURL=bundle-CpMvhj21.js.map
12
+ //# sourceMappingURL=bundle-Cytf5OXn.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-Cytf5OXn.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { i as isSameDay } from './bundle-Dq0ggazV.js';
2
- import { r as requiredArgs, t as toDate } from './bundle-C-nZYnmy.js';
3
- import { t as toInteger } from './bundle-CewnJAub.js';
1
+ import { i as isSameDay } from './bundle-C12wpwcO.js';
2
+ import { r as requiredArgs, t as toDate } from './bundle-DokyceKk.js';
3
+ import { t as toInteger } from './bundle-Bytw3a1z.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-jrZGOZ7u.js.map
166
+ //# sourceMappingURL=bundle-CzzanD4i.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-jrZGOZ7u.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-CzzanD4i.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,4 +1,4 @@
1
- import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-BA9oFJ90.js';
1
+ import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-CGbKAqtd.js';
2
2
 
3
3
  function getMessageFirstFileType(message) {
4
4
  return K(message)
@@ -65,4 +65,4 @@ function getMessageFirstFileThumbnailUrl(message) {
65
65
  }
66
66
 
67
67
  export { getMessageFirstFileType as a, getMessageFirstFileName as b, getMessageFirstFileThumbnailUrl as c, getMessageFirstFileUrl as g };
68
- //# sourceMappingURL=bundle-CTVxl16S.js.map
68
+ //# sourceMappingURL=bundle-DCjrv9Kz.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DCjrv9Kz.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,9 +1,9 @@
1
- import { c as __spreadArray } from './bundle-CxLxJCBu.js';
1
+ import { c as __spreadArray } from './bundle-BXYHgzRj.js';
2
2
  import React__default from 'react';
3
3
  import ImageRenderer from '../ui/ImageRenderer.js';
4
- import { p as pxToNumber } from './bundle-C_zEpfCP.js';
4
+ import { p as pxToNumber } from './bundle-Dwpc_MJZ.js';
5
5
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
6
- import { c as classnames } from './bundle-kFa80LJe.js';
6
+ import { c as classnames } from './bundle-u-vzK-oc.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-DOfhjbKd.js.map
71
+ //# sourceMappingURL=bundle-DGC3rWK4.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DGC3rWK4.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
- import { K, c as isMultipleFilesMessage } from './bundle-BA9oFJ90.js';
1
+ import { K, c as isMultipleFilesMessage } from './bundle-CGbKAqtd.js';
2
2
 
3
3
  function getModalDeleteMessageTitle(stringSet, message) {
4
4
  return K(message)
@@ -12,4 +12,4 @@ function getModalDeleteMessageTitle(stringSet, message) {
12
12
  }
13
13
 
14
14
  export { getModalDeleteMessageTitle as g };
15
- //# sourceMappingURL=bundle-DcPIDUrE.js.map
15
+ //# sourceMappingURL=bundle-DGskllVK.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DGskllVK.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -17,4 +17,4 @@ var AddGroupChannelView = function (_a) {
17
17
  };
18
18
 
19
19
  export { AddGroupChannelView as A };
20
- //# sourceMappingURL=bundle-CBHlCwa8.js.map
20
+ //# sourceMappingURL=bundle-DKJYxqyB.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DKJYxqyB.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
@@ -1,15 +1,15 @@
1
- import { a as __awaiter, b as __generator, d as __rest, _ as __assign } from './bundle-CxLxJCBu.js';
1
+ import { a as __awaiter, b as __generator, d as __rest, _ as __assign } from './bundle-BXYHgzRj.js';
2
2
  import React__default, { useState, useRef, useCallback, createContext, useContext } from 'react';
3
3
  import { Role } from '@sendbird/chat';
4
4
  import { OpenChannel } from '@sendbird/chat/openChannel';
5
5
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
6
6
  import '../withSendbird.js';
7
- import { a as MenuItem, b as MenuItems } from './bundle-BzR1dD25.js';
7
+ import { a as MenuItem, b as MenuItems } from './bundle-CZybJwCN.js';
8
8
  import 'react-dom';
9
9
  import IconButton from '../ui/IconButton.js';
10
- import './bundle-BA9oFJ90.js';
11
- import { u as useLocalization } from './bundle-d1cOX5nv.js';
12
- import { c as classnames } from './bundle-kFa80LJe.js';
10
+ import './bundle-CGbKAqtd.js';
11
+ import { u as useLocalization } from './bundle-DWyboFhb.js';
12
+ import { c as classnames } from './bundle-u-vzK-oc.js';
13
13
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
14
14
 
15
15
  // Utility function to handle processing state and promise execution
@@ -275,4 +275,4 @@ var UserListItemMenu = function (props) {
275
275
  };
276
276
 
277
277
  export { UserListItemMenu as U, UserListItemMenuProvider as a, useUserListItemMenuContext as u };
278
- //# sourceMappingURL=bundle-CsqTBO6B.js.map
278
+ //# sourceMappingURL=bundle-DMgkYVtL.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CsqTBO6B.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DMgkYVtL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { c as __spreadArray } from './bundle-CxLxJCBu.js';
1
+ import { c as __spreadArray } from './bundle-BXYHgzRj.js';
2
2
  import React__default, { forwardRef } from 'react';
3
- import { g as getStringSet } from './bundle-DS1EhNtb.js';
3
+ import { g as getStringSet } from './bundle-CqMQE3-R.js';
4
4
 
5
5
  var Typography = {
6
6
  H_1: 'H_1',
@@ -83,4 +83,4 @@ var LabelColors = Colors;
83
83
  var LabelStringSet = getStringSet('en');
84
84
 
85
85
  export { Label as L, LabelTypography as a, LabelColors as b, LabelStringSet as c, changeColorToClassName as d };
86
- //# sourceMappingURL=bundle-CjJk57u5.js.map
86
+ //# sourceMappingURL=bundle-DNnUvjnZ.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DNnUvjnZ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,15 +1,15 @@
1
- import { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray, d as __rest } from './bundle-CxLxJCBu.js';
1
+ import { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray, d as __rest } from './bundle-BXYHgzRj.js';
2
2
  import React__default, { useState, useContext, useEffect, useMemo, useCallback } from 'react';
3
3
  import { Role } from '@sendbird/chat';
4
- import { L as LocalizationContext, u as useLocalization } from './bundle-d1cOX5nv.js';
4
+ import { L as LocalizationContext, u as useLocalization } from './bundle-DWyboFhb.js';
5
5
  import { useChannelSettingsContext } from '../ChannelSettings/context.js';
6
6
  import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
7
- import { U as UserListItemMenu } from './bundle-CsqTBO6B.js';
7
+ import { U as UserListItemMenu } from './bundle-DMgkYVtL.js';
8
8
  import { UserListItem } from '../ui/UserListItem.js';
9
- import { M as Modal } from './bundle-DRpjMk0B.js';
10
- import { n as noop } from './bundle-kFa80LJe.js';
11
- import { u as useOnScrollPositionChangeDetector } from './bundle-CzHaD4PM.js';
12
- import './bundle-CjJk57u5.js';
9
+ import { M as Modal } from './bundle-Bd7J49Pj.js';
10
+ import { n as noop } from './bundle-u-vzK-oc.js';
11
+ import { u as useOnScrollPositionChangeDetector } from './bundle-Do-Uo0Mj.js';
12
+ import './bundle-DNnUvjnZ.js';
13
13
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
14
14
 
15
15
  function MembersModal(_a) {
@@ -257,4 +257,4 @@ var MemberList = function (_a) {
257
257
  };
258
258
 
259
259
  export { MemberList as M };
260
- //# sourceMappingURL=bundle-DUYVf7yy.js.map
260
+ //# sourceMappingURL=bundle-DNxlbhL-.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-DUYVf7yy.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-DNxlbhL-.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import { useEffect } from 'react';
2
- import { V as VOICE_PLAYER_ROOT_ID } from './bundle-DP3z2QNm.js';
2
+ import { V as VOICE_PLAYER_ROOT_ID } from './bundle-Dz4_R08c.js';
3
3
 
4
4
  var useHTMLTextDirection = function (direction) {
5
5
  useEffect(function () {
@@ -29,4 +29,4 @@ var useMessageLayoutDirection = function (direction, forceLeftToRightMessageLayo
29
29
  };
30
30
 
31
31
  export { useHTMLTextDirection as a, useMessageLayoutDirection as u };
32
- //# sourceMappingURL=bundle-BW3AiewC.js.map
32
+ //# sourceMappingURL=bundle-DPABwR4A.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-DPABwR4A.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { _ as __assign } from './bundle-CxLxJCBu.js';
1
+ import { _ as __assign } from './bundle-BXYHgzRj.js';
2
2
  import React__default from 'react';
3
- import { g as getStringSet } from './bundle-DS1EhNtb.js';
3
+ import { g as getStringSet } from './bundle-CqMQE3-R.js';
4
4
 
5
5
  var formatDistanceLocale = {
6
6
  lessThanXSeconds: {
@@ -498,4 +498,4 @@ var useLocalization = function () {
498
498
  };
499
499
 
500
500
  export { LocalizationContext as L, LocalizationProvider as a, locale as l, useLocalization as u };
501
- //# sourceMappingURL=bundle-d1cOX5nv.js.map
501
+ //# sourceMappingURL=bundle-DWyboFhb.js.map