@sendbird/uikit-react 3.14.5 → 3.14.6
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.
- package/.env +3 -0
- package/App.js +83 -83
- package/CHANGELOG.md +4 -0
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +63 -63
- package/Channel/components/FileViewer.js +29 -29
- package/Channel/components/FrozenNotification.js +6 -5
- package/Channel/components/FrozenNotification.js.map +1 -1
- package/Channel/components/Message.js +57 -54
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +46 -46
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +59 -59
- package/Channel/components/RemoveMessageModal.js +28 -28
- package/Channel/components/SuggestedMentionList.js +26 -26
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +107 -133
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useHandleUploadFiles.js +15 -15
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +4 -4
- package/Channel/utils/getMessagePartsInfo.js +8 -8
- package/Channel.js +63 -63
- package/ChannelList/components/AddChannel.js +22 -22
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +36 -36
- package/ChannelList/components/ChannelPreview.js +28 -28
- package/ChannelList/components/ChannelPreviewAction.js +13 -13
- package/ChannelList/context.js +9 -9
- package/ChannelList.js +35 -35
- package/ChannelSettings/components/ChannelProfile.js +20 -20
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsUI.js +26 -26
- package/ChannelSettings/components/EditDetailsModal.js +32 -27
- package/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/ChannelSettings/components/LeaveChannel.js +16 -16
- package/ChannelSettings/components/ModerationPanel.js +39 -36
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +19 -19
- package/ChannelSettings/components/UserPanel.js +22 -22
- package/ChannelSettings/context.js +10 -5
- package/ChannelSettings/context.js.map +1 -1
- package/ChannelSettings.js +23 -23
- package/CreateChannel/components/CreateChannelUI.js +19 -19
- package/CreateChannel/components/InviteUsers.js +28 -31
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +16 -16
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +18 -18
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +26 -22
- package/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/CreateOpenChannel/context.js +10 -10
- package/CreateOpenChannel.js +16 -16
- package/EditUserProfile/components/EditUserProfileUI.js +26 -22
- package/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/EditUserProfile/context.js +12 -13
- package/EditUserProfile/context.js.map +1 -1
- package/EditUserProfile.js +17 -17
- package/GroupChannel/components/FileViewer.js +28 -29
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +7 -6
- package/GroupChannel/components/FrozenNotification.js.map +1 -1
- package/GroupChannel/components/GroupChannelHeader.js +24 -24
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +55 -52
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +41 -41
- package/GroupChannel/components/MessageList.js +53 -53
- package/GroupChannel/components/RemoveMessageModal.js +25 -25
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +8 -8
- package/GroupChannel/context.js +39 -31
- package/GroupChannel/context.js.map +1 -1
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +20 -20
- package/GroupChannelList/components/GroupChannelListHeader.js +11 -11
- package/GroupChannelList/components/GroupChannelListItem.js +26 -26
- package/GroupChannelList/components/GroupChannelListUI.js +35 -35
- package/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +34 -34
- package/MessageSearch/components/MessageSearchUI.js +21 -22
- package/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/MessageSearch/context.js +18 -10
- package/MessageSearch/context.js.map +1 -1
- package/MessageSearch.js +24 -25
- package/MessageSearch.js.map +1 -1
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/OpenChannel/components/OpenChannelInput.js +26 -26
- package/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/OpenChannel/components/OpenChannelMessageList.js +43 -42
- package/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/OpenChannel/components/OpenChannelUI.js +40 -40
- package/OpenChannel/context.js +19 -19
- package/OpenChannel.js +40 -40
- package/OpenChannelList/components/OpenChannelListUI.js +18 -18
- package/OpenChannelList/components/OpenChannelPreview.js +8 -8
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +18 -18
- package/OpenChannelSettings/components/EditDetailsModal.js +34 -30
- package/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelProfile.js +19 -19
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/OpenChannelSettings/components/OperatorUI.js +56 -49
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +18 -18
- package/OpenChannelSettings/context.js +10 -5
- package/OpenChannelSettings/context.js.map +1 -1
- package/OpenChannelSettings.js +20 -20
- package/SendbirdProvider.js +37 -43
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +52 -51
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +43 -41
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +9 -9
- package/Thread/components/ThreadList.js +48 -48
- package/Thread/components/ThreadListItem.js +56 -58
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +46 -46
- package/Thread/components/ThreadUI.js +60 -58
- package/Thread/components/ThreadUI.js.map +1 -1
- package/Thread/context.js +28 -38
- package/Thread/context.js.map +1 -1
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +17 -17
- package/VoiceRecorder/context.js +13 -13
- package/VoiceRecorder/useVoiceRecorder.js +20 -20
- package/chunks/{bundle-Cj-w5I5i.js → bundle-3Mubyujl.js} +1 -1
- package/chunks/bundle-3Mubyujl.js.map +1 -0
- package/chunks/{bundle-DEFOjZw9.js → bundle-B-DnYw4p.js} +4 -4
- package/chunks/bundle-B-DnYw4p.js.map +1 -0
- package/chunks/{bundle-YveljAuC.js → bundle-B3nNazhn.js} +1 -1
- package/chunks/bundle-B3nNazhn.js.map +1 -0
- package/chunks/{bundle-BI0n-T1b.js → bundle-B3sFrr1p.js} +4 -4
- package/chunks/bundle-B3sFrr1p.js.map +1 -0
- package/chunks/{bundle-DG8DFRNL.js → bundle-B3xB7_P4.js} +6 -5
- package/chunks/{bundle-DG8DFRNL.js.map → bundle-B3xB7_P4.js.map} +1 -1
- package/chunks/{bundle-Cw_yF4Vi.js → bundle-B4izwMfD.js} +1 -1
- package/chunks/bundle-B4izwMfD.js.map +1 -0
- package/chunks/{bundle-E4462uBn.js → bundle-B65gr4tC.js} +1 -1
- package/chunks/bundle-B65gr4tC.js.map +1 -0
- package/chunks/{bundle-CDMcNani.js → bundle-B9ue8vfn.js} +6 -5
- package/chunks/{bundle-CDMcNani.js.map → bundle-B9ue8vfn.js.map} +1 -1
- package/chunks/{bundle-BxaysvGU.js → bundle-BFa8UJ8b.js} +2 -2
- package/chunks/bundle-BFa8UJ8b.js.map +1 -0
- package/chunks/{bundle-Br_sURBN.js → bundle-BKVuhi2w.js} +1 -1
- package/chunks/bundle-BKVuhi2w.js.map +1 -0
- package/chunks/{bundle-D2MpL8t0.js → bundle-BMQLJ23N.js} +16 -11
- package/chunks/{bundle-D2MpL8t0.js.map → bundle-BMQLJ23N.js.map} +1 -1
- package/chunks/{bundle-Cdx5L_Jm.js → bundle-BRZDoZIQ.js} +3 -3
- package/chunks/bundle-BRZDoZIQ.js.map +1 -0
- package/chunks/{bundle-SI5OarjR.js → bundle-BWiA6-mB.js} +3 -3
- package/chunks/{bundle-SI5OarjR.js.map → bundle-BWiA6-mB.js.map} +1 -1
- package/chunks/{bundle-cgNuve_E.js → bundle-BYyMnx0z.js} +2 -2
- package/chunks/bundle-BYyMnx0z.js.map +1 -0
- package/chunks/{bundle-Y_WIAHds.js → bundle-BaXke8XU.js} +3 -3
- package/chunks/bundle-BaXke8XU.js.map +1 -0
- package/chunks/{bundle-HFOQJZAX.js → bundle-Bd6fN8eX.js} +1 -1
- package/chunks/bundle-Bd6fN8eX.js.map +1 -0
- package/chunks/{bundle-C1XVT5qc.js → bundle-BgL9QnGd.js} +5 -4
- package/chunks/bundle-BgL9QnGd.js.map +1 -0
- package/chunks/{bundle-B26G55qN.js → bundle-BiK_ngKm.js} +1 -1
- package/chunks/{bundle-B26G55qN.js.map → bundle-BiK_ngKm.js.map} +1 -1
- package/chunks/{bundle-CUOi3VHK.js → bundle-BjTYwue9.js} +5 -5
- package/chunks/{bundle-CUOi3VHK.js.map → bundle-BjTYwue9.js.map} +1 -1
- package/chunks/{bundle-BQPvwBK8.js → bundle-Bmk2FVdj.js} +1 -1
- package/chunks/bundle-Bmk2FVdj.js.map +1 -0
- package/chunks/{bundle-hF8Gurf8.js → bundle-Boh0Ffwo.js} +1 -1
- package/chunks/bundle-Boh0Ffwo.js.map +1 -0
- package/chunks/{bundle-C8hyJJ4a.js → bundle-C093wLqR.js} +10 -9
- package/chunks/{bundle-C8hyJJ4a.js.map → bundle-C093wLqR.js.map} +1 -1
- package/chunks/{bundle-B4q4jk6S.js → bundle-C3gISq8S.js} +31 -26
- package/chunks/bundle-C3gISq8S.js.map +1 -0
- package/chunks/{bundle-CTqXLoJ-.js → bundle-C7Vw36CA.js} +1 -1
- package/chunks/{bundle-CTqXLoJ-.js.map → bundle-C7Vw36CA.js.map} +1 -1
- package/chunks/{bundle-C2B-jwQF.js → bundle-C8jE79mn.js} +1 -1
- package/chunks/bundle-C8jE79mn.js.map +1 -0
- package/chunks/{bundle-u9Zl-7Je.js → bundle-CFgnDIJC.js} +1 -1
- package/chunks/bundle-CFgnDIJC.js.map +1 -0
- package/chunks/{bundle-DiVyB2HD.js → bundle-CGmq3qGM.js} +25 -30
- package/chunks/bundle-CGmq3qGM.js.map +1 -0
- package/chunks/{bundle-DudTIr4X.js → bundle-COYqO05C.js} +1 -1
- package/chunks/bundle-COYqO05C.js.map +1 -0
- package/chunks/{bundle-B8F-tpmW.js → bundle-COd0N3nE.js} +34 -30
- package/chunks/{bundle-B8F-tpmW.js.map → bundle-COd0N3nE.js.map} +1 -1
- package/chunks/{bundle-DHrYAkRt.js → bundle-COoyrRF6.js} +2 -1
- package/chunks/bundle-COoyrRF6.js.map +1 -0
- package/chunks/{bundle-C5i4dn9q.js → bundle-CWXSCBTE.js} +1 -1
- package/chunks/bundle-CWXSCBTE.js.map +1 -0
- package/chunks/{bundle-BD-1uffr.js → bundle-CYknZObK.js} +6 -6
- package/chunks/{bundle-BD-1uffr.js.map → bundle-CYknZObK.js.map} +1 -1
- package/chunks/{bundle-60et0yds.js → bundle-C_dNvBEo.js} +2 -4
- package/chunks/bundle-C_dNvBEo.js.map +1 -0
- package/chunks/{bundle-DElB1Hqa.js → bundle-CbFt9rKR.js} +6 -6
- package/chunks/bundle-CbFt9rKR.js.map +1 -0
- package/chunks/{bundle-B621kS6J.js → bundle-Ce-B4ROs.js} +1 -1
- package/chunks/{bundle-B621kS6J.js.map → bundle-Ce-B4ROs.js.map} +1 -1
- package/chunks/{bundle-BGTq2aZA.js → bundle-Ck_ke5Gq.js} +4 -4
- package/chunks/bundle-Ck_ke5Gq.js.map +1 -0
- package/chunks/{bundle-DYmy2oK3.js → bundle-Cn6S1UKt.js} +11 -11
- package/chunks/bundle-Cn6S1UKt.js.map +1 -0
- package/chunks/{bundle-C6yCDg1g.js → bundle-Cp2PKGXI.js} +18 -17
- package/chunks/{bundle-C6yCDg1g.js.map → bundle-Cp2PKGXI.js.map} +1 -1
- package/chunks/{bundle-CtgXJZJt.js → bundle-CriEArZn.js} +1 -1
- package/chunks/bundle-CriEArZn.js.map +1 -0
- package/chunks/{bundle-2jZ-0hKC.js → bundle-Ct6xKrI3.js} +35 -38
- package/{cjs/chunks/bundle-BEtlTF8Q.js.map → chunks/bundle-Ct6xKrI3.js.map} +1 -1
- package/chunks/{bundle-D-cEFrBM.js → bundle-CttExrDx.js} +19 -35
- package/chunks/{bundle-D-cEFrBM.js.map → bundle-CttExrDx.js.map} +1 -1
- package/chunks/{bundle-DZl5IVWc.js → bundle-D1rcEkoi.js} +2 -2
- package/chunks/{bundle-DZl5IVWc.js.map → bundle-D1rcEkoi.js.map} +1 -1
- package/chunks/{bundle-BXXtOrta.js → bundle-D5P54ZJi.js} +58 -50
- package/chunks/{bundle-BXXtOrta.js.map → bundle-D5P54ZJi.js.map} +1 -1
- package/chunks/{bundle-BfjOoJk6.js → bundle-D9dyuFq0.js} +8 -8
- package/chunks/bundle-D9dyuFq0.js.map +1 -0
- package/chunks/{bundle-CDy_GVNR.js → bundle-DKkCwVCs.js} +1 -1
- package/chunks/{bundle-CDy_GVNR.js.map → bundle-DKkCwVCs.js.map} +1 -1
- package/chunks/{bundle-BA5xmpyI.js → bundle-DKs8lowG.js} +40 -62
- package/chunks/{bundle-BA5xmpyI.js.map → bundle-DKs8lowG.js.map} +1 -1
- package/chunks/{bundle-C8XqVZD9.js → bundle-DQZG-uS3.js} +6 -6
- package/chunks/bundle-DQZG-uS3.js.map +1 -0
- package/chunks/{bundle-D5DtB0L7.js → bundle-DQdztuN4.js} +62 -69
- package/chunks/{bundle-D5DtB0L7.js.map → bundle-DQdztuN4.js.map} +1 -1
- package/chunks/{bundle-ARb5Lm9T.js → bundle-DYErcqMl.js} +2 -2
- package/chunks/bundle-DYErcqMl.js.map +1 -0
- package/chunks/{bundle-DwvN2wPi.js → bundle-DYtgOX1c.js} +6 -6
- package/chunks/bundle-DYtgOX1c.js.map +1 -0
- package/chunks/{bundle-thdxvFU8.js → bundle-DhBuJR0w.js} +3 -2
- package/chunks/bundle-DhBuJR0w.js.map +1 -0
- package/chunks/{bundle-DwPw_RW5.js → bundle-Dk5y6RzJ.js} +1 -1
- package/chunks/bundle-Dk5y6RzJ.js.map +1 -0
- package/chunks/{bundle-9Pg6kODx.js → bundle-DprHnWfH.js} +1 -1
- package/chunks/{bundle-9Pg6kODx.js.map → bundle-DprHnWfH.js.map} +1 -1
- package/chunks/{bundle-uI-GOX6U.js → bundle-DuBg9tG9.js} +2 -2
- package/chunks/bundle-DuBg9tG9.js.map +1 -0
- package/chunks/{bundle-WdeDKCD0.js → bundle-DuRujwfr.js} +10 -10
- package/chunks/bundle-DuRujwfr.js.map +1 -0
- package/chunks/{bundle-e3NlFYfX.js → bundle-Dv6nIlPZ.js} +7 -7
- package/chunks/bundle-Dv6nIlPZ.js.map +1 -0
- package/chunks/{bundle-Chn4Xw78.js → bundle-DvNDJy8Z.js} +2 -2
- package/chunks/bundle-DvNDJy8Z.js.map +1 -0
- package/chunks/{bundle-DhJuLwLJ.js → bundle-Dw9nwO7e.js} +1 -1
- package/chunks/bundle-Dw9nwO7e.js.map +1 -0
- package/chunks/{bundle-2vhBVWLQ.js → bundle-DwJ8HgZK.js} +7 -4
- package/{cjs/chunks/bundle-Bpy7IQta.js.map → chunks/bundle-DwJ8HgZK.js.map} +1 -1
- package/chunks/{bundle-DVc25Jb7.js → bundle-EYdnditu.js} +5 -5
- package/chunks/bundle-EYdnditu.js.map +1 -0
- package/chunks/{bundle-klvZ-YE5.js → bundle-EgWLYRXK.js} +1 -1
- package/chunks/bundle-EgWLYRXK.js.map +1 -0
- package/chunks/{bundle-DoXeGvHN.js → bundle-FfoT30Gt.js} +1 -1
- package/chunks/bundle-FfoT30Gt.js.map +1 -0
- package/chunks/{bundle-Pw31xKtZ.js → bundle-GMapp_Tb.js} +9 -5
- package/chunks/bundle-GMapp_Tb.js.map +1 -0
- package/chunks/{bundle-iA2l_iD3.js → bundle-Ps1Qc3cX.js} +9 -3
- package/chunks/bundle-Ps1Qc3cX.js.map +1 -0
- package/chunks/{bundle-DUVa5cu6.js → bundle-QPuxH0uW.js} +1 -1
- package/chunks/bundle-QPuxH0uW.js.map +1 -0
- package/chunks/{bundle-xHRJMo_A.js → bundle-RoB3xpYU.js} +3 -3
- package/chunks/bundle-RoB3xpYU.js.map +1 -0
- package/chunks/{bundle-DVMiIa_8.js → bundle-RuTR5KRM.js} +13 -13
- package/chunks/{bundle-DVMiIa_8.js.map → bundle-RuTR5KRM.js.map} +1 -1
- package/chunks/{bundle-CLQfFjkS.js → bundle-U_oIvkG2.js} +3 -3
- package/chunks/bundle-U_oIvkG2.js.map +1 -0
- package/chunks/{bundle-Dpj_mOs8.js → bundle-YUF6WfTL.js} +30 -33
- package/chunks/bundle-YUF6WfTL.js.map +1 -0
- package/chunks/{bundle-HhDUyQa4.js → bundle-ZBhGb8Lc.js} +2 -2
- package/chunks/bundle-ZBhGb8Lc.js.map +1 -0
- package/chunks/{bundle-BUMKThPh.js → bundle-gH-X0MYD.js} +17 -16
- package/chunks/{bundle-BEbribQZ.js.map → bundle-gH-X0MYD.js.map} +1 -1
- package/chunks/{bundle-KmtzKHnJ.js → bundle-gNs_MAJh.js} +1 -1
- package/chunks/bundle-gNs_MAJh.js.map +1 -0
- package/chunks/{bundle-BCuW6lS8.js → bundle-h8I0AuUK.js} +2 -2
- package/chunks/bundle-h8I0AuUK.js.map +1 -0
- package/chunks/{bundle-BH5EGLxi.js → bundle-janisM9b.js} +7 -7
- package/chunks/{bundle-BH5EGLxi.js.map → bundle-janisM9b.js.map} +1 -1
- package/chunks/bundle-nfJ9J5Md.js +18 -0
- package/chunks/bundle-nfJ9J5Md.js.map +1 -0
- package/chunks/{bundle-q3jyuKU7.js → bundle-prXB4t_m.js} +3 -3
- package/chunks/bundle-prXB4t_m.js.map +1 -0
- package/chunks/{bundle-BEbribQZ.js → bundle-sX9kxwmI.js} +11 -13
- package/chunks/{bundle-BUMKThPh.js.map → bundle-sX9kxwmI.js.map} +1 -1
- package/chunks/{bundle-DQ3tLeW9.js → bundle-t4qeDosj.js} +2 -2
- package/chunks/{bundle-DQ3tLeW9.js.map → bundle-t4qeDosj.js.map} +1 -1
- package/chunks/{bundle-8J9SSfIS.js → bundle-uIqOEfCa.js} +1 -1
- package/chunks/bundle-uIqOEfCa.js.map +1 -0
- package/chunks/{bundle-CclWZYVY.js → bundle-zwvszN0Y.js} +19 -16
- package/{cjs/chunks/bundle-Cc89qdjT.js.map → chunks/bundle-zwvszN0Y.js.map} +1 -1
- package/cjs/App.js +83 -83
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +63 -63
- package/cjs/Channel/components/FileViewer.js +29 -29
- package/cjs/Channel/components/FrozenNotification.js +6 -5
- package/cjs/Channel/components/FrozenNotification.js.map +1 -1
- package/cjs/Channel/components/Message.js +57 -54
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +46 -46
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +59 -59
- package/cjs/Channel/components/RemoveMessageModal.js +28 -28
- package/cjs/Channel/components/SuggestedMentionList.js +26 -26
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +7 -7
- package/cjs/Channel/context.js +107 -133
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useHandleUploadFiles.js +15 -15
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +4 -4
- package/cjs/Channel/utils/getMessagePartsInfo.js +8 -8
- package/cjs/Channel.js +63 -63
- package/cjs/ChannelList/components/AddChannel.js +22 -22
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +36 -36
- package/cjs/ChannelList/components/ChannelPreview.js +28 -28
- package/cjs/ChannelList/components/ChannelPreviewAction.js +13 -13
- package/cjs/ChannelList/context.js +9 -9
- package/cjs/ChannelList.js +35 -35
- package/cjs/ChannelSettings/components/ChannelProfile.js +20 -20
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +25 -25
- package/cjs/ChannelSettings/components/EditDetailsModal.js +32 -27
- package/cjs/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/ChannelSettings/components/LeaveChannel.js +16 -16
- package/cjs/ChannelSettings/components/ModerationPanel.js +39 -36
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/cjs/ChannelSettings/components/UserListItem.js +19 -19
- package/cjs/ChannelSettings/components/UserPanel.js +22 -22
- package/cjs/ChannelSettings/context.js +10 -5
- package/cjs/ChannelSettings/context.js.map +1 -1
- package/cjs/ChannelSettings.js +23 -23
- package/cjs/CreateChannel/components/CreateChannelUI.js +19 -19
- package/cjs/CreateChannel/components/InviteUsers.js +28 -31
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +16 -16
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +18 -18
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +26 -22
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/cjs/CreateOpenChannel/context.js +10 -10
- package/cjs/CreateOpenChannel.js +16 -16
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +26 -22
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/cjs/EditUserProfile/context.js +11 -12
- package/cjs/EditUserProfile/context.js.map +1 -1
- package/cjs/EditUserProfile.js +17 -17
- package/cjs/GroupChannel/components/FileViewer.js +28 -29
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +7 -6
- package/cjs/GroupChannel/components/FrozenNotification.js.map +1 -1
- package/cjs/GroupChannel/components/GroupChannelHeader.js +24 -24
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +55 -52
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
- package/cjs/GroupChannel/components/MessageList.js +53 -53
- package/cjs/GroupChannel/components/RemoveMessageModal.js +25 -25
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +8 -8
- package/cjs/GroupChannel/context.js +39 -31
- package/cjs/GroupChannel/context.js.map +1 -1
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +20 -20
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +11 -11
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +26 -26
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +35 -35
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +34 -34
- package/cjs/MessageSearch/components/MessageSearchUI.js +21 -22
- package/cjs/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/cjs/MessageSearch/context.js +18 -10
- package/cjs/MessageSearch/context.js.map +1 -1
- package/cjs/MessageSearch.js +24 -25
- package/cjs/MessageSearch.js.map +1 -1
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/cjs/OpenChannel/components/OpenChannelInput.js +26 -26
- package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -42
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +40 -40
- package/cjs/OpenChannel/context.js +19 -19
- package/cjs/OpenChannel.js +40 -40
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +18 -18
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +8 -8
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +18 -18
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +34 -30
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +19 -19
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/cjs/OpenChannelSettings/components/OperatorUI.js +56 -49
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +18 -18
- package/cjs/OpenChannelSettings/context.js +10 -5
- package/cjs/OpenChannelSettings/context.js.map +1 -1
- package/cjs/OpenChannelSettings.js +20 -20
- package/cjs/SendbirdProvider.js +37 -43
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +52 -51
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +43 -41
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +9 -9
- package/cjs/Thread/components/ThreadList.js +48 -48
- package/cjs/Thread/components/ThreadListItem.js +56 -58
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +46 -46
- package/cjs/Thread/components/ThreadUI.js +60 -58
- package/cjs/Thread/components/ThreadUI.js.map +1 -1
- package/cjs/Thread/context.js +28 -38
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +16 -16
- package/cjs/VoiceRecorder/context.js +13 -13
- package/cjs/VoiceRecorder/useVoiceRecorder.js +20 -20
- package/cjs/chunks/{bundle-DvkiHRsE.js → bundle-0t_JDxef.js} +6 -5
- package/cjs/chunks/bundle-0t_JDxef.js.map +1 -0
- package/cjs/chunks/{bundle-ZItyfz7r.js → bundle-133JUAh1.js} +4 -4
- package/cjs/chunks/bundle-133JUAh1.js.map +1 -0
- package/cjs/chunks/{bundle-CpIdIHld.js → bundle-13qq2yWM.js} +10 -10
- package/cjs/chunks/bundle-13qq2yWM.js.map +1 -0
- package/cjs/chunks/{bundle-CDJXrIVC.js → bundle-1A4pOyri.js} +1 -1
- package/cjs/chunks/{bundle-CDJXrIVC.js.map → bundle-1A4pOyri.js.map} +1 -1
- package/cjs/chunks/{bundle-BG8qs_3y.js → bundle-6_B00yYz.js} +1 -1
- package/cjs/chunks/bundle-6_B00yYz.js.map +1 -0
- package/cjs/chunks/{bundle-BvhC4El1.js → bundle-6aemRbmn.js} +18 -17
- package/cjs/chunks/{bundle-BvhC4El1.js.map → bundle-6aemRbmn.js.map} +1 -1
- package/cjs/chunks/{bundle-DpK1fr1j.js → bundle-7CEyuoln.js} +1 -1
- package/cjs/chunks/bundle-7CEyuoln.js.map +1 -0
- package/cjs/chunks/{bundle-B-0_xv9u.js → bundle-86A5Bf9J.js} +9 -3
- package/cjs/chunks/bundle-86A5Bf9J.js.map +1 -0
- package/cjs/chunks/{bundle-BOrMDMdN.js → bundle-A_xDyoq6.js} +30 -33
- package/cjs/chunks/bundle-A_xDyoq6.js.map +1 -0
- package/cjs/chunks/{bundle-DFVUnSWq.js → bundle-B1Ql7yM0.js} +2 -2
- package/cjs/chunks/bundle-B1Ql7yM0.js.map +1 -0
- package/cjs/chunks/{bundle-B2h5VMZ6.js → bundle-B2WuxwoH.js} +2 -2
- package/cjs/chunks/bundle-B2WuxwoH.js.map +1 -0
- package/cjs/chunks/{bundle-D1X4MKLh.js → bundle-BBsKv3Vz.js} +6 -5
- package/{chunks/bundle-B4q4jk6S.js.map → cjs/chunks/bundle-BBsKv3Vz.js.map} +1 -1
- package/cjs/chunks/{bundle-B1uXZFKP.js → bundle-BE-L5873.js} +19 -16
- package/cjs/chunks/{bundle-B1uXZFKP.js.map → bundle-BE-L5873.js.map} +1 -1
- package/cjs/chunks/{bundle-DZMn5ScB.js → bundle-BE1dAigY.js} +6 -6
- package/cjs/chunks/bundle-BE1dAigY.js.map +1 -0
- package/cjs/chunks/{bundle-Ci6F_UQc.js → bundle-BFy8_d3W.js} +1 -1
- package/cjs/chunks/bundle-BFy8_d3W.js.map +1 -0
- package/cjs/chunks/{bundle-CcmMvK6l.js → bundle-BK_SqbHE.js} +1 -1
- package/cjs/chunks/bundle-BK_SqbHE.js.map +1 -0
- package/cjs/chunks/{bundle-8IuV93EV.js → bundle-BLs0JcXs.js} +62 -69
- package/cjs/chunks/{bundle-8IuV93EV.js.map → bundle-BLs0JcXs.js.map} +1 -1
- package/cjs/chunks/{bundle-DWBc-Yv7.js → bundle-BNMoxGCr.js} +1 -1
- package/cjs/chunks/bundle-BNMoxGCr.js.map +1 -0
- package/cjs/chunks/{bundle-Ca7xeBTO.js → bundle-BNzVVkzd.js} +3 -1
- package/cjs/chunks/bundle-BNzVVkzd.js.map +1 -0
- package/cjs/chunks/{bundle-DsrfvJYA.js → bundle-BPV3CKzS.js} +30 -25
- package/cjs/chunks/bundle-BPV3CKzS.js.map +1 -0
- package/cjs/chunks/{bundle-Pfx0MBr4.js → bundle-Bgeq75IH.js} +3 -3
- package/cjs/chunks/bundle-Bgeq75IH.js.map +1 -0
- package/cjs/chunks/{bundle-B4EdciCR.js → bundle-BimsU_nb.js} +2 -1
- package/cjs/chunks/bundle-BimsU_nb.js.map +1 -0
- package/cjs/chunks/{bundle-OCHWYrfg.js → bundle-BtsHzLKX.js} +2 -2
- package/cjs/chunks/bundle-BtsHzLKX.js.map +1 -0
- package/cjs/chunks/{bundle-BMN1aDia.js → bundle-Bvsx1m1J.js} +1 -1
- package/cjs/chunks/bundle-Bvsx1m1J.js.map +1 -0
- package/cjs/chunks/{bundle-DOUm656A.js → bundle-Bw1ttM89.js} +3 -3
- package/cjs/chunks/bundle-Bw1ttM89.js.map +1 -0
- package/cjs/chunks/{bundle-IE4yQ0qq.js → bundle-BzyQ6Vof.js} +1 -1
- package/cjs/chunks/bundle-BzyQ6Vof.js.map +1 -0
- package/cjs/chunks/{bundle-cl2q8NwQ.js → bundle-C1YuUjH3.js} +6 -6
- package/cjs/chunks/bundle-C1YuUjH3.js.map +1 -0
- package/cjs/chunks/{bundle-DFsKxEv-.js → bundle-C4Gs08vJ.js} +34 -30
- package/cjs/chunks/bundle-C4Gs08vJ.js.map +1 -0
- package/cjs/chunks/{bundle-DWGp201o.js → bundle-CA69fSDI.js} +2 -2
- package/cjs/chunks/bundle-CA69fSDI.js.map +1 -0
- package/cjs/chunks/{bundle-ClBBhzU-.js → bundle-CBNBRNN0.js} +1 -1
- package/cjs/chunks/bundle-CBNBRNN0.js.map +1 -0
- package/cjs/chunks/{bundle-hVU-fzqu.js → bundle-CCYpnzRf.js} +58 -50
- package/cjs/chunks/bundle-CCYpnzRf.js.map +1 -0
- package/cjs/chunks/{bundle-DvpCzVKY.js → bundle-CHvJg3bD.js} +1 -1
- package/cjs/chunks/bundle-CHvJg3bD.js.map +1 -0
- package/cjs/chunks/{bundle-D4e0UT-6.js → bundle-CI1zoEKe.js} +1 -1
- package/cjs/chunks/bundle-CI1zoEKe.js.map +1 -0
- package/cjs/chunks/{bundle-Cvu5DOpl.js → bundle-CJk1q-XX.js} +13 -13
- package/cjs/chunks/{bundle-Cvu5DOpl.js.map → bundle-CJk1q-XX.js.map} +1 -1
- package/cjs/chunks/{bundle-DLTCoQzD.js → bundle-CL4Kklzg.js} +1 -1
- package/cjs/chunks/bundle-CL4Kklzg.js.map +1 -0
- package/cjs/chunks/{bundle-IZLtKe6R.js → bundle-CTraI7aM.js} +11 -11
- package/cjs/chunks/bundle-CTraI7aM.js.map +1 -0
- package/cjs/chunks/{bundle-BAqFIbKr.js → bundle-CW2oMonb.js} +16 -11
- package/cjs/chunks/bundle-CW2oMonb.js.map +1 -0
- package/cjs/chunks/{bundle-C0ZNrrcl.js → bundle-C_8UQBXr.js} +5 -4
- package/cjs/chunks/bundle-C_8UQBXr.js.map +1 -0
- package/cjs/chunks/{bundle-CjYhSLRD.js → bundle-Cd-3W3UM.js} +2 -2
- package/cjs/chunks/{bundle-CjYhSLRD.js.map → bundle-Cd-3W3UM.js.map} +1 -1
- package/cjs/chunks/{bundle-WETElB-o.js → bundle-Cd0cyqgA.js} +7 -7
- package/cjs/chunks/bundle-Cd0cyqgA.js.map +1 -0
- package/cjs/chunks/{bundle-BEtlTF8Q.js → bundle-CliI7H5v.js} +39 -61
- package/cjs/chunks/bundle-CliI7H5v.js.map +1 -0
- package/cjs/chunks/{bundle-BCt-Rzil.js → bundle-CoJbL3ob.js} +4 -4
- package/cjs/chunks/bundle-CoJbL3ob.js.map +1 -0
- package/cjs/chunks/{bundle-B2KKkvdj.js → bundle-CuOOXDK0.js} +1 -1
- package/cjs/chunks/bundle-CuOOXDK0.js.map +1 -0
- package/cjs/chunks/{bundle-LLV3t4--.js → bundle-D1Ka8I9e.js} +5 -5
- package/cjs/chunks/bundle-D1Ka8I9e.js.map +1 -0
- package/cjs/chunks/{bundle-DGJX80zy.js → bundle-D1mguvwi.js} +10 -9
- package/cjs/chunks/bundle-D1mguvwi.js.map +1 -0
- package/cjs/chunks/{bundle-SfusZfMJ.js → bundle-D3BhVTZt.js} +1 -1
- package/cjs/chunks/bundle-D3BhVTZt.js.map +1 -0
- package/cjs/chunks/{bundle-DPrTZ-1L.js → bundle-D7rSRN-8.js} +5 -5
- package/cjs/chunks/bundle-D7rSRN-8.js.map +1 -0
- package/cjs/chunks/{bundle-BNVygboA.js → bundle-DAEHB1AV.js} +3 -3
- package/cjs/chunks/bundle-DAEHB1AV.js.map +1 -0
- package/cjs/chunks/{bundle-dr9zoU1D.js → bundle-DMUz-Xui.js} +17 -16
- package/cjs/chunks/{bundle-dr9zoU1D.js.map → bundle-DMUz-Xui.js.map} +1 -1
- package/cjs/chunks/{bundle-CLte647H.js → bundle-DOoshvnj.js} +1 -1
- package/cjs/chunks/bundle-DOoshvnj.js.map +1 -0
- package/cjs/chunks/{bundle-hXD0NDZt.js → bundle-DQu5RJ2y.js} +4 -4
- package/cjs/chunks/bundle-DQu5RJ2y.js.map +1 -0
- package/cjs/chunks/{bundle-Cc89qdjT.js → bundle-DSLFcE0C.js} +11 -13
- package/{chunks/bundle-CclWZYVY.js.map → cjs/chunks/bundle-DSLFcE0C.js.map} +1 -1
- package/cjs/chunks/{bundle-CgOafeY_.js → bundle-DTJnlh7y.js} +3 -3
- package/cjs/chunks/{bundle-CgOafeY_.js.map → bundle-DTJnlh7y.js.map} +1 -1
- package/cjs/chunks/{bundle-D7v4i_Ae.js → bundle-DTzydpqA.js} +2 -4
- package/cjs/chunks/bundle-DTzydpqA.js.map +1 -0
- package/cjs/chunks/{bundle-jLW3AG2G.js → bundle-DUzcm-3u.js} +1 -1
- package/cjs/chunks/{bundle-jLW3AG2G.js.map → bundle-DUzcm-3u.js.map} +1 -1
- package/cjs/chunks/{bundle-DJ9gapN2.js → bundle-DW8u-n3u.js} +25 -30
- package/cjs/chunks/{bundle-DJ9gapN2.js.map → bundle-DW8u-n3u.js.map} +1 -1
- package/cjs/chunks/{bundle-Deao1Upp.js → bundle-DY5rfl6W.js} +3 -3
- package/cjs/chunks/bundle-DY5rfl6W.js.map +1 -0
- package/cjs/chunks/{bundle-CxNGVWIy.js → bundle-DcQeRT4T.js} +1 -1
- package/cjs/chunks/bundle-DcQeRT4T.js.map +1 -0
- package/cjs/chunks/{bundle-BCQxFX-W.js → bundle-Dd1DS9KT.js} +1 -1
- package/cjs/chunks/bundle-Dd1DS9KT.js.map +1 -0
- package/cjs/chunks/{bundle-CPIzT1cf.js → bundle-DikFXMAd.js} +1 -1
- package/cjs/chunks/bundle-DikFXMAd.js.map +1 -0
- package/cjs/chunks/{bundle-CHXLIlQ1.js → bundle-DohVekRv.js} +19 -35
- package/cjs/chunks/{bundle-CHXLIlQ1.js.map → bundle-DohVekRv.js.map} +1 -1
- package/cjs/chunks/{bundle-Cw7xe6J1.js → bundle-DrYI_bNa.js} +7 -7
- package/cjs/chunks/{bundle-Cw7xe6J1.js.map → bundle-DrYI_bNa.js.map} +1 -1
- package/cjs/chunks/{bundle-Bpy7IQta.js → bundle-Dymg5zVO.js} +7 -4
- package/cjs/chunks/{bundle-DGJX80zy.js.map → bundle-Dymg5zVO.js.map} +1 -1
- package/cjs/chunks/{bundle-30fh5iPx.js → bundle-H13ErLKW.js} +2 -2
- package/cjs/chunks/bundle-H13ErLKW.js.map +1 -0
- package/cjs/chunks/{bundle-Cnyr9_mq.js → bundle-KUj3wjEl.js} +3 -3
- package/cjs/chunks/bundle-KUj3wjEl.js.map +1 -0
- package/cjs/chunks/{bundle-GFjnAifB.js → bundle-Kf3idGio.js} +9 -5
- package/cjs/chunks/bundle-Kf3idGio.js.map +1 -0
- package/cjs/chunks/{bundle-Bw_LvbLk.js → bundle-LO6QlzTz.js} +2 -2
- package/cjs/chunks/bundle-LO6QlzTz.js.map +1 -0
- package/cjs/chunks/{bundle-CLNUkVC8.js → bundle-OIKGVRus.js} +1 -1
- package/cjs/chunks/bundle-OIKGVRus.js.map +1 -0
- package/cjs/chunks/bundle-OWb8eJt-.js +22 -0
- package/cjs/chunks/bundle-OWb8eJt-.js.map +1 -0
- package/cjs/chunks/{bundle-glVs_8wY.js → bundle-RUFiV4i0.js} +1 -1
- package/cjs/chunks/bundle-RUFiV4i0.js.map +1 -0
- package/cjs/chunks/{bundle-CL-vjR4o.js → bundle-TEjGhclf.js} +2 -2
- package/cjs/chunks/{bundle-CL-vjR4o.js.map → bundle-TEjGhclf.js.map} +1 -1
- package/cjs/chunks/{bundle-Ub33KGva.js → bundle-YRiE_c63.js} +1 -1
- package/cjs/chunks/bundle-YRiE_c63.js.map +1 -0
- package/cjs/chunks/{bundle-BiTKgXrx.js → bundle-ZjYFUjTH.js} +35 -38
- package/{chunks/bundle-2jZ-0hKC.js.map → cjs/chunks/bundle-ZjYFUjTH.js.map} +1 -1
- package/cjs/chunks/{bundle-DmVeFWB4.js → bundle-cqwHj7Dj.js} +2 -2
- package/cjs/chunks/bundle-cqwHj7Dj.js.map +1 -0
- package/cjs/chunks/{bundle-C-r9vRgc.js → bundle-eTYC1RPT.js} +1 -1
- package/cjs/chunks/bundle-eTYC1RPT.js.map +1 -0
- package/cjs/chunks/{bundle-D9UFa9yx.js → bundle-jHjvHr01.js} +1 -1
- package/cjs/chunks/bundle-jHjvHr01.js.map +1 -0
- package/cjs/chunks/{bundle-xADAFEo0.js → bundle-kbRkyLdH.js} +6 -6
- package/cjs/chunks/bundle-kbRkyLdH.js.map +1 -0
- package/cjs/chunks/{bundle-Bv_QMEk2.js → bundle-lYouUxag.js} +6 -6
- package/cjs/chunks/bundle-lYouUxag.js.map +1 -0
- package/cjs/chunks/{bundle-Bc92JuA7.js → bundle-ozey_V94.js} +8 -8
- package/cjs/chunks/bundle-ozey_V94.js.map +1 -0
- package/cjs/chunks/{bundle-C4UzGGy_.js → bundle-wz_O1vyk.js} +1 -1
- package/cjs/chunks/bundle-wz_O1vyk.js.map +1 -0
- package/cjs/hooks/useModal.js +13 -13
- package/cjs/index.js +78 -78
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +3 -3
- package/cjs/ui/Accordion.js +3 -3
- package/cjs/ui/AccordionGroup.js +1 -1
- package/cjs/ui/AdminMessage.js +3 -3
- package/cjs/ui/Avatar.js +4 -4
- package/cjs/ui/Badge.js +5 -5
- package/cjs/ui/BottomSheet.js +16 -16
- package/cjs/ui/Button.js +5 -5
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +6 -6
- package/cjs/ui/DateSeparator.js +5 -5
- package/cjs/ui/EmojiReactions.js +22 -22
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +17 -17
- package/cjs/ui/Header.js +8 -8
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +4 -2
- package/cjs/ui/ImageRenderer.js.map +1 -1
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +4 -4
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +14 -14
- package/cjs/ui/MentionUserLabel.js +3 -2
- package/cjs/ui/MentionUserLabel.js.map +1 -1
- package/cjs/ui/MessageContent.js +76 -69
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +14 -14
- package/cjs/ui/MessageFeedbackModal.js +19 -19
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +103 -82
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +20 -20
- package/cjs/ui/MessageItemReactionMenu.js +15 -15
- package/cjs/ui/MessageSearchFileItem.js +15 -15
- package/cjs/ui/MessageSearchItem.js +13 -13
- package/cjs/ui/MessageStatus.js +11 -11
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +13 -13
- package/cjs/ui/Modal.js +13 -13
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +23 -22
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +18 -18
- package/cjs/ui/OpenchannelOGMessage.js +36 -36
- package/cjs/ui/OpenchannelThumbnailMessage.js +18 -18
- package/cjs/ui/OpenchannelUserMessage.js +23 -23
- package/cjs/ui/PlaceHolder.js +7 -7
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/ProgressBar.js +2 -1
- package/cjs/ui/ProgressBar.js.map +1 -1
- package/cjs/ui/QuoteMessage.js +8 -8
- package/cjs/ui/QuoteMessageInput.js +11 -11
- package/cjs/ui/ReactionBadge.js +4 -4
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +22 -20
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +25 -22
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +10 -10
- package/cjs/ui/ThumbnailMessageItemBody.js +6 -6
- package/cjs/ui/Toggle.js +3 -3
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +3 -3
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +15 -15
- package/cjs/ui/UserProfile.js +12 -12
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +20 -19
- package/cjs/ui/VoiceMessageItemBody.js.map +1 -1
- package/cjs/ui/Word.js +14 -14
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +2 -2
- package/cjs/withSendbird.js +4 -3
- package/cjs/withSendbird.js.map +1 -1
- package/dist/index.css +3 -4
- package/hooks/useModal.js +13 -13
- package/index.js +78 -78
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +3 -3
- package/types/hooks/VoicePlayer/useVoicePlayer.d.ts +2 -2
- package/types/hooks/VoiceRecorder/WebAudioUtils.d.ts +5 -2
- package/types/hooks/VoiceRecorder/useVoiceRecorder.d.ts +1 -1
- package/types/lib/LocalizationContext.d.ts +3 -4
- package/types/lib/Logger/index.d.ts +1 -1
- package/types/lib/Sendbird.d.ts +2 -8
- package/types/lib/SendbirdSdkContext.d.ts +3 -0
- package/types/lib/hooks/useTheme.d.ts +1 -1
- package/types/lib/pubSub/topics.d.ts +2 -2
- package/types/lib/selectors.d.ts +4 -4
- package/types/lib/types.d.ts +5 -5
- package/types/modules/App/AppLayout.d.ts +1 -1
- package/types/modules/App/types.d.ts +1 -1
- package/types/modules/Channel/components/Message/index.d.ts +1 -1
- package/types/modules/Channel/context/ChannelProvider.d.ts +11 -12
- package/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useHandleReconnect.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useHandleReconnectForChannelList.d.ts +4 -4
- package/types/modules/Channel/context/hooks/useInitialMessagesFetch.d.ts +3 -3
- package/types/modules/Channel/context/hooks/useReconnectOnIdle.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useScrollCallback.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useScrollDownCallback.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useScrollToMessage.d.ts +3 -3
- package/types/modules/Channel/context/hooks/useSendFileMessageCallback.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useSendVoiceMessageCallback.d.ts +1 -1
- package/types/modules/Channel/context/utils.d.ts +4 -4
- package/types/modules/ChannelList/components/ChannelListUI/index.d.ts +1 -1
- package/types/modules/ChannelList/context/ChannelListProvider.d.ts +7 -7
- package/types/modules/ChannelList/index.d.ts +1 -1
- package/types/modules/ChannelList/utils.d.ts +2 -2
- package/types/modules/ChannelSettings/components/UserListItem/index.d.ts +4 -7
- package/types/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +1 -1
- package/types/modules/CreateChannel/context/CreateChannelProvider.d.ts +3 -2
- package/types/modules/EditUserProfile/components/EditUserProfileUI/EditUserProfileUIView.d.ts +1 -1
- package/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +1 -1
- package/types/modules/EditUserProfile/context/EditUserProfileProvider.d.ts +1 -1
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +9 -9
- package/types/modules/GroupChannel/components/MessageInputWrapper/MessageInputWrapperView.d.ts +2 -2
- package/types/modules/GroupChannel/components/MessageList/getMessagePartsInfo.d.ts +3 -3
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +4 -4
- package/types/modules/GroupChannel/context/hooks/useMessageActions.d.ts +1 -1
- package/types/modules/GroupChannel/context/utils.d.ts +2 -2
- package/types/modules/MessageSearch/context/MessageSearchProvider.d.ts +4 -4
- package/types/modules/MessageSearch/context/hooks/useGetSearchedMessages.d.ts +1 -1
- package/types/modules/MessageSearch/context/hooks/useScrollCallback.d.ts +4 -4
- package/types/modules/MessageSearch/index.d.ts +0 -1
- package/types/modules/OpenChannel/context/OpenChannelProvider.d.ts +1 -2
- package/types/modules/OpenChannel/context/hooks/useDeleteMessageCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +3 -3
- package/types/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useInitialMessagesFetch.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useResendMessageCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useScrollCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useSendMessageCallback.d.ts +2 -2
- package/types/modules/OpenChannel/context/hooks/useSetChannel.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useTrimMessageList.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useUpdateMessageCallback.d.ts +3 -3
- package/types/modules/OpenChannel/context/utils.d.ts +2 -3
- package/types/modules/OpenChannelList/context/hooks/createChannelListQuery.d.ts +1 -1
- package/types/modules/OpenChannelList/context/hooks/useRefreshOpenChannelList.d.ts +1 -1
- package/types/modules/OpenChannelList/context/hooks/useSetupOpenChannelList.d.ts +1 -1
- package/types/modules/OpenChannelSettings/components/ParticipantUI/ParticipantItem.d.ts +2 -2
- package/types/modules/OpenChannelSettings/context/OpenChannelSettingsProvider.d.ts +3 -4
- package/types/modules/Thread/context/ThreadProvider.d.ts +7 -5
- package/types/modules/Thread/context/hooks/useDeleteMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useGetChannel.d.ts +2 -2
- package/types/modules/Thread/context/hooks/useGetParentMessage.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useHandleChannelEvents.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useHandleThreadPubsubEvents.d.ts +2 -2
- package/types/modules/Thread/context/hooks/useResendMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendFileMessage.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendUserMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendVoiceMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useThreadFetchers.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useToggleReactionsCallback.d.ts +3 -2
- package/types/modules/Thread/context/hooks/useUpdateMessageCallback.d.ts +9 -2
- package/types/modules/Thread/context/utils.d.ts +3 -4
- package/types/ui/AdminMessage/index.d.ts +1 -1
- package/types/ui/ChannelAvatar/utils.d.ts +3 -3
- package/types/ui/ContextMenu/MenuItems.d.ts +3 -3
- package/types/ui/ImageRenderer/index.d.ts +7 -7
- package/types/ui/ImageRenderer/useDynamicSideLength.d.ts +2 -2
- package/types/ui/ImageRenderer/utils.d.ts +1 -1
- package/types/ui/LegacyEditUserProfile/index.d.ts +1 -1
- package/types/ui/MessageContent/MessageProfile/index.d.ts +1 -1
- package/types/ui/MessageInput/hooks/usePaste/types.d.ts +1 -1
- package/types/ui/MessageItemMenu/index.d.ts +5 -7
- package/types/ui/MessageItemReactionMenu/index.d.ts +1 -1
- package/types/ui/ThreadReplies/index.d.ts +1 -1
- package/types/ui/UserProfile/index.d.ts +1 -1
- package/types/ui/Word/index.d.ts +1 -1
- package/types/utils/consts.d.ts +1 -0
- package/types/utils/exports/getOutgoingMessageState.d.ts +1 -1
- package/types/utils/getIsReactionEnabled.d.ts +1 -1
- package/types/utils/index.d.ts +2 -2
- package/types/utils/messages.d.ts +1 -1
- package/types/utils/numberToPx.d.ts +1 -1
- package/ui/Accordion.js +3 -3
- package/ui/AccordionGroup.js +1 -1
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +16 -16
- package/ui/Button.js +5 -5
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +6 -6
- package/ui/DateSeparator.js +5 -5
- package/ui/EmojiReactions.js +22 -22
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +17 -17
- package/ui/Header.js +8 -8
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +4 -2
- package/ui/ImageRenderer.js.map +1 -1
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +4 -4
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +14 -14
- package/ui/MentionUserLabel.js +3 -2
- package/ui/MentionUserLabel.js.map +1 -1
- package/ui/MessageContent.js +76 -69
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +14 -14
- package/ui/MessageFeedbackModal.js +19 -19
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +103 -82
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +20 -20
- package/ui/MessageItemReactionMenu.js +15 -15
- package/ui/MessageSearchFileItem.js +15 -15
- package/ui/MessageSearchItem.js +13 -13
- package/ui/MessageStatus.js +11 -11
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +13 -13
- package/ui/Modal.js +13 -13
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +23 -22
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +18 -18
- package/ui/OpenchannelOGMessage.js +36 -36
- package/ui/OpenchannelThumbnailMessage.js +18 -18
- package/ui/OpenchannelUserMessage.js +23 -23
- package/ui/PlaceHolder.js +7 -7
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +2 -1
- package/ui/ProgressBar.js.map +1 -1
- package/ui/QuoteMessage.js +8 -8
- package/ui/QuoteMessageInput.js +11 -11
- package/ui/ReactionBadge.js +4 -4
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +22 -20
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +25 -22
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +10 -10
- package/ui/ThumbnailMessageItemBody.js +6 -6
- package/ui/Toggle.js +3 -3
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +3 -3
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +15 -15
- package/ui/UserProfile.js +12 -12
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +20 -19
- package/ui/VoiceMessageItemBody.js.map +1 -1
- package/ui/Word.js +14 -14
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +2 -2
- package/withSendbird.js +4 -3
- package/withSendbird.js.map +1 -1
- package/chunks/bundle-2vhBVWLQ.js.map +0 -1
- package/chunks/bundle-60et0yds.js.map +0 -1
- package/chunks/bundle-8J9SSfIS.js.map +0 -1
- package/chunks/bundle-ARb5Lm9T.js.map +0 -1
- package/chunks/bundle-BCuW6lS8.js.map +0 -1
- package/chunks/bundle-BGTq2aZA.js.map +0 -1
- package/chunks/bundle-BI0n-T1b.js.map +0 -1
- package/chunks/bundle-BQPvwBK8.js.map +0 -1
- package/chunks/bundle-BfjOoJk6.js.map +0 -1
- package/chunks/bundle-Br_sURBN.js.map +0 -1
- package/chunks/bundle-BxaysvGU.js.map +0 -1
- package/chunks/bundle-C1XVT5qc.js.map +0 -1
- package/chunks/bundle-C2B-jwQF.js.map +0 -1
- package/chunks/bundle-C5i4dn9q.js.map +0 -1
- package/chunks/bundle-C8XqVZD9.js.map +0 -1
- package/chunks/bundle-CAdxJnio.js +0 -16
- package/chunks/bundle-CAdxJnio.js.map +0 -1
- package/chunks/bundle-CLQfFjkS.js.map +0 -1
- package/chunks/bundle-Cdx5L_Jm.js.map +0 -1
- package/chunks/bundle-Chn4Xw78.js.map +0 -1
- package/chunks/bundle-Cj-w5I5i.js.map +0 -1
- package/chunks/bundle-CtgXJZJt.js.map +0 -1
- package/chunks/bundle-Cw_yF4Vi.js.map +0 -1
- package/chunks/bundle-DEFOjZw9.js.map +0 -1
- package/chunks/bundle-DElB1Hqa.js.map +0 -1
- package/chunks/bundle-DHrYAkRt.js.map +0 -1
- package/chunks/bundle-DUVa5cu6.js.map +0 -1
- package/chunks/bundle-DVc25Jb7.js.map +0 -1
- package/chunks/bundle-DYmy2oK3.js.map +0 -1
- package/chunks/bundle-DhJuLwLJ.js.map +0 -1
- package/chunks/bundle-DiVyB2HD.js.map +0 -1
- package/chunks/bundle-DoXeGvHN.js.map +0 -1
- package/chunks/bundle-Dpj_mOs8.js.map +0 -1
- package/chunks/bundle-DudTIr4X.js.map +0 -1
- package/chunks/bundle-DwPw_RW5.js.map +0 -1
- package/chunks/bundle-DwvN2wPi.js.map +0 -1
- package/chunks/bundle-E4462uBn.js.map +0 -1
- package/chunks/bundle-HFOQJZAX.js.map +0 -1
- package/chunks/bundle-HhDUyQa4.js.map +0 -1
- package/chunks/bundle-KmtzKHnJ.js.map +0 -1
- package/chunks/bundle-Pw31xKtZ.js.map +0 -1
- package/chunks/bundle-WdeDKCD0.js.map +0 -1
- package/chunks/bundle-Y_WIAHds.js.map +0 -1
- package/chunks/bundle-YveljAuC.js.map +0 -1
- package/chunks/bundle-cgNuve_E.js.map +0 -1
- package/chunks/bundle-e3NlFYfX.js.map +0 -1
- package/chunks/bundle-hF8Gurf8.js.map +0 -1
- package/chunks/bundle-iA2l_iD3.js.map +0 -1
- package/chunks/bundle-klvZ-YE5.js.map +0 -1
- package/chunks/bundle-q3jyuKU7.js.map +0 -1
- package/chunks/bundle-thdxvFU8.js.map +0 -1
- package/chunks/bundle-u9Zl-7Je.js.map +0 -1
- package/chunks/bundle-uI-GOX6U.js.map +0 -1
- package/chunks/bundle-xHRJMo_A.js.map +0 -1
- package/cjs/chunks/bundle-30fh5iPx.js.map +0 -1
- package/cjs/chunks/bundle-B-0_xv9u.js.map +0 -1
- package/cjs/chunks/bundle-B2KKkvdj.js.map +0 -1
- package/cjs/chunks/bundle-B2h5VMZ6.js.map +0 -1
- package/cjs/chunks/bundle-B4EdciCR.js.map +0 -1
- package/cjs/chunks/bundle-B7wJ4Hqk.js +0 -20
- package/cjs/chunks/bundle-B7wJ4Hqk.js.map +0 -1
- package/cjs/chunks/bundle-BAqFIbKr.js.map +0 -1
- package/cjs/chunks/bundle-BCQxFX-W.js.map +0 -1
- package/cjs/chunks/bundle-BCt-Rzil.js.map +0 -1
- package/cjs/chunks/bundle-BG8qs_3y.js.map +0 -1
- package/cjs/chunks/bundle-BMN1aDia.js.map +0 -1
- package/cjs/chunks/bundle-BNVygboA.js.map +0 -1
- package/cjs/chunks/bundle-BOrMDMdN.js.map +0 -1
- package/cjs/chunks/bundle-Bc92JuA7.js.map +0 -1
- package/cjs/chunks/bundle-BiTKgXrx.js.map +0 -1
- package/cjs/chunks/bundle-Bv_QMEk2.js.map +0 -1
- package/cjs/chunks/bundle-Bw_LvbLk.js.map +0 -1
- package/cjs/chunks/bundle-C-r9vRgc.js.map +0 -1
- package/cjs/chunks/bundle-C0ZNrrcl.js.map +0 -1
- package/cjs/chunks/bundle-C4UzGGy_.js.map +0 -1
- package/cjs/chunks/bundle-CLNUkVC8.js.map +0 -1
- package/cjs/chunks/bundle-CLte647H.js.map +0 -1
- package/cjs/chunks/bundle-CPIzT1cf.js.map +0 -1
- package/cjs/chunks/bundle-Ca7xeBTO.js.map +0 -1
- package/cjs/chunks/bundle-CcmMvK6l.js.map +0 -1
- package/cjs/chunks/bundle-Ci6F_UQc.js.map +0 -1
- package/cjs/chunks/bundle-ClBBhzU-.js.map +0 -1
- package/cjs/chunks/bundle-Cnyr9_mq.js.map +0 -1
- package/cjs/chunks/bundle-CpIdIHld.js.map +0 -1
- package/cjs/chunks/bundle-CxNGVWIy.js.map +0 -1
- package/cjs/chunks/bundle-D1X4MKLh.js.map +0 -1
- package/cjs/chunks/bundle-D4e0UT-6.js.map +0 -1
- package/cjs/chunks/bundle-D7v4i_Ae.js.map +0 -1
- package/cjs/chunks/bundle-D9UFa9yx.js.map +0 -1
- package/cjs/chunks/bundle-DFVUnSWq.js.map +0 -1
- package/cjs/chunks/bundle-DFsKxEv-.js.map +0 -1
- package/cjs/chunks/bundle-DLTCoQzD.js.map +0 -1
- package/cjs/chunks/bundle-DOUm656A.js.map +0 -1
- package/cjs/chunks/bundle-DPrTZ-1L.js.map +0 -1
- package/cjs/chunks/bundle-DWBc-Yv7.js.map +0 -1
- package/cjs/chunks/bundle-DWGp201o.js.map +0 -1
- package/cjs/chunks/bundle-DZMn5ScB.js.map +0 -1
- package/cjs/chunks/bundle-Deao1Upp.js.map +0 -1
- package/cjs/chunks/bundle-DmVeFWB4.js.map +0 -1
- package/cjs/chunks/bundle-DpK1fr1j.js.map +0 -1
- package/cjs/chunks/bundle-DsrfvJYA.js.map +0 -1
- package/cjs/chunks/bundle-DvkiHRsE.js.map +0 -1
- package/cjs/chunks/bundle-DvpCzVKY.js.map +0 -1
- package/cjs/chunks/bundle-GFjnAifB.js.map +0 -1
- package/cjs/chunks/bundle-IE4yQ0qq.js.map +0 -1
- package/cjs/chunks/bundle-IZLtKe6R.js.map +0 -1
- package/cjs/chunks/bundle-LLV3t4--.js.map +0 -1
- package/cjs/chunks/bundle-OCHWYrfg.js.map +0 -1
- package/cjs/chunks/bundle-Pfx0MBr4.js.map +0 -1
- package/cjs/chunks/bundle-SfusZfMJ.js.map +0 -1
- package/cjs/chunks/bundle-Ub33KGva.js.map +0 -1
- package/cjs/chunks/bundle-WETElB-o.js.map +0 -1
- package/cjs/chunks/bundle-ZItyfz7r.js.map +0 -1
- package/cjs/chunks/bundle-cl2q8NwQ.js.map +0 -1
- package/cjs/chunks/bundle-glVs_8wY.js.map +0 -1
- package/cjs/chunks/bundle-hVU-fzqu.js.map +0 -1
- package/cjs/chunks/bundle-hXD0NDZt.js.map +0 -1
- package/cjs/chunks/bundle-xADAFEo0.js.map +0 -1
- package/dist/index.css.map +0 -1
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
var GroupChannel_components_TypingIndicator = require('../../GroupChannel/components/TypingIndicator.js');
|
|
4
4
|
require('react');
|
|
5
5
|
require('@sendbird/chat/groupChannel');
|
|
6
|
-
require('../../chunks/bundle-
|
|
7
|
-
require('../../chunks/bundle-
|
|
8
|
-
require('../../chunks/bundle-
|
|
9
|
-
require('../../chunks/bundle-
|
|
10
|
-
require('../../chunks/bundle-
|
|
6
|
+
require('../../chunks/bundle-DY5rfl6W.js');
|
|
7
|
+
require('../../chunks/bundle-eTYC1RPT.js');
|
|
8
|
+
require('../../chunks/bundle-BNMoxGCr.js');
|
|
9
|
+
require('../../chunks/bundle-OWb8eJt-.js');
|
|
10
|
+
require('../../chunks/bundle-1A4pOyri.js');
|
|
11
11
|
require('../../useSendbirdStateContext.js');
|
|
12
12
|
require('../../withSendbird.js');
|
|
13
|
-
require('../../chunks/bundle-
|
|
13
|
+
require('../../chunks/bundle-YRiE_c63.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
var GroupChannel_components_UnreadCount = require('../../GroupChannel/components/UnreadCount.js');
|
|
4
4
|
require('react');
|
|
5
|
-
require('../../chunks/bundle-
|
|
6
|
-
require('../../chunks/bundle-
|
|
7
|
-
require('../../chunks/bundle-
|
|
8
|
-
require('../../chunks/bundle-
|
|
9
|
-
require('../../chunks/bundle-
|
|
5
|
+
require('../../chunks/bundle-OWb8eJt-.js');
|
|
6
|
+
require('../../chunks/bundle-eTYC1RPT.js');
|
|
7
|
+
require('../../chunks/bundle-BNMoxGCr.js');
|
|
8
|
+
require('../../chunks/bundle-1A4pOyri.js');
|
|
9
|
+
require('../../chunks/bundle-DY5rfl6W.js');
|
|
10
10
|
require('../../ui/Icon.js');
|
|
11
|
-
require('../../chunks/bundle-
|
|
12
|
-
require('../../chunks/bundle-
|
|
11
|
+
require('../../chunks/bundle-DOoshvnj.js');
|
|
12
|
+
require('../../chunks/bundle-Cd-3W3UM.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
package/cjs/Channel/context.js
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var UserProfileContext = require('../chunks/bundle-
|
|
4
|
+
var UserProfileContext = require('../chunks/bundle-DTzydpqA.js');
|
|
5
5
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
6
|
-
var _const = require('../chunks/bundle-
|
|
7
|
-
var utils = require('../chunks/bundle-
|
|
8
|
-
var getIsReactionEnabled = require('../chunks/bundle-
|
|
9
|
-
var _tslib = require('../chunks/bundle-
|
|
10
|
-
var index$1 = require('../chunks/bundle-
|
|
6
|
+
var _const = require('../chunks/bundle-CuOOXDK0.js');
|
|
7
|
+
var utils = require('../chunks/bundle-BBsKv3Vz.js');
|
|
8
|
+
var getIsReactionEnabled = require('../chunks/bundle-H13ErLKW.js');
|
|
9
|
+
var _tslib = require('../chunks/bundle-eTYC1RPT.js');
|
|
10
|
+
var index$1 = require('../chunks/bundle-Cd-3W3UM.js');
|
|
11
11
|
var message = require('@sendbird/chat/message');
|
|
12
|
-
var index = require('../chunks/bundle-
|
|
13
|
-
var actionTypes = require('../chunks/bundle-
|
|
14
|
-
var compareIds = require('../chunks/bundle-
|
|
15
|
-
var Channel_hooks_useInitialMessagesFetch = require('../chunks/bundle-
|
|
12
|
+
var index = require('../chunks/bundle-DrYI_bNa.js');
|
|
13
|
+
var actionTypes = require('../chunks/bundle-BzyQ6Vof.js');
|
|
14
|
+
var compareIds = require('../chunks/bundle-BK_SqbHE.js');
|
|
15
|
+
var Channel_hooks_useInitialMessagesFetch = require('../chunks/bundle-0t_JDxef.js');
|
|
16
16
|
var groupChannel = require('@sendbird/chat/groupChannel');
|
|
17
|
-
var uuid = require('../chunks/bundle-
|
|
18
|
-
var useReconnectOnIdle = require('../chunks/bundle-
|
|
19
|
-
var consts = require('../chunks/bundle-
|
|
20
|
-
var pubSub_topics = require('../chunks/bundle-
|
|
21
|
-
var useToggleReactionCallback = require('../chunks/bundle-
|
|
22
|
-
var resolvedReplyType = require('../chunks/bundle-
|
|
23
|
-
var useSendMultipleFilesMessage = require('../chunks/bundle-
|
|
17
|
+
var uuid = require('../chunks/bundle-YRiE_c63.js');
|
|
18
|
+
var useReconnectOnIdle = require('../chunks/bundle-BtsHzLKX.js');
|
|
19
|
+
var consts = require('../chunks/bundle-BNzVVkzd.js');
|
|
20
|
+
var pubSub_topics = require('../chunks/bundle-7CEyuoln.js');
|
|
21
|
+
var useToggleReactionCallback = require('../chunks/bundle-kbRkyLdH.js');
|
|
22
|
+
var resolvedReplyType = require('../chunks/bundle-6_B00yYz.js');
|
|
23
|
+
var useSendMultipleFilesMessage = require('../chunks/bundle-DSLFcE0C.js');
|
|
24
24
|
require('../withSendbird.js');
|
|
25
|
-
require('../chunks/bundle-
|
|
25
|
+
require('../chunks/bundle-1A4pOyri.js');
|
|
26
26
|
require('../utils/message/getOutgoingMessageState.js');
|
|
27
27
|
|
|
28
28
|
var initialState = {
|
|
@@ -338,7 +338,9 @@ function useHandleChannelEvents(_a, _b) {
|
|
|
338
338
|
var scrollToEnd = false;
|
|
339
339
|
try {
|
|
340
340
|
var current = scrollRef.current;
|
|
341
|
-
|
|
341
|
+
if (current) {
|
|
342
|
+
scrollToEnd = current.offsetHeight + current.scrollTop >= current.scrollHeight - 10;
|
|
343
|
+
}
|
|
342
344
|
// 10 is a buffer
|
|
343
345
|
}
|
|
344
346
|
catch (error) {
|
|
@@ -467,7 +469,7 @@ function useHandleChannelEvents(_a, _b) {
|
|
|
467
469
|
},
|
|
468
470
|
onUserBanned: function (channel, user) {
|
|
469
471
|
var _a;
|
|
470
|
-
if (compareIds.compareIds(channel === null || channel === void 0 ? void 0 : channel.url, channelUrl)) {
|
|
472
|
+
if (compareIds.compareIds(channel === null || channel === void 0 ? void 0 : channel.url, channelUrl) && channel.isGroupChannel()) {
|
|
471
473
|
logger.info('Channel | useHandleChannelEvents: onUserBanned', { channel: channel, user: user });
|
|
472
474
|
var isByMe = (user === null || user === void 0 ? void 0 : user.userId) === ((_a = sdk === null || sdk === void 0 ? void 0 : sdk.currentUser) === null || _a === void 0 ? void 0 : _a.userId);
|
|
473
475
|
messagesDispatcher({
|
|
@@ -574,7 +576,7 @@ function useHandleReconnect(_a, _b) {
|
|
|
574
576
|
var shouldReconnect = useReconnectOnIdle.useReconnectOnIdle(isOnline, currentGroupChannel, reconnectOnIdle).shouldReconnect;
|
|
575
577
|
React.useEffect(function () {
|
|
576
578
|
return function () {
|
|
577
|
-
var _a, _b;
|
|
579
|
+
var _a, _b, _c;
|
|
578
580
|
// state changed from offline to online AND tab is visible
|
|
579
581
|
if (shouldReconnect) {
|
|
580
582
|
logger.info('Refreshing conversation state');
|
|
@@ -593,6 +595,7 @@ function useHandleReconnect(_a, _b) {
|
|
|
593
595
|
}
|
|
594
596
|
if (userFilledMessageListQuery) {
|
|
595
597
|
Object.keys(userFilledMessageListQuery).forEach(function (key) {
|
|
598
|
+
// @ts-ignore
|
|
596
599
|
messageListParams_1[key] = userFilledMessageListQuery[key];
|
|
597
600
|
});
|
|
598
601
|
}
|
|
@@ -601,14 +604,14 @@ function useHandleReconnect(_a, _b) {
|
|
|
601
604
|
type: actionTypes.FETCH_INITIAL_MESSAGES_START,
|
|
602
605
|
payload: null,
|
|
603
606
|
});
|
|
604
|
-
(_b = sdk === null || sdk === void 0 ? void 0 : sdk.groupChannel) === null || _b === void 0 ? void 0 : _b.getChannel(currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.url).then(function (groupChannel) {
|
|
607
|
+
(_b = sdk === null || sdk === void 0 ? void 0 : sdk.groupChannel) === null || _b === void 0 ? void 0 : _b.getChannel((_c = currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.url) !== null && _c !== void 0 ? _c : '').then(function (groupChannel) {
|
|
605
608
|
var lastMessageTime = new Date().getTime();
|
|
606
609
|
groupChannel.getMessagesByTimestamp(lastMessageTime, messageListParams_1)
|
|
607
610
|
.then(function (messages) {
|
|
608
611
|
messagesDispatcher({
|
|
609
612
|
type: actionTypes.FETCH_INITIAL_MESSAGES_SUCCESS,
|
|
610
613
|
payload: {
|
|
611
|
-
currentGroupChannel:
|
|
614
|
+
currentGroupChannel: groupChannel,
|
|
612
615
|
messages: messages,
|
|
613
616
|
},
|
|
614
617
|
});
|
|
@@ -618,11 +621,11 @@ function useHandleReconnect(_a, _b) {
|
|
|
618
621
|
logger.error('Channel: Fetching messages failed', error);
|
|
619
622
|
messagesDispatcher({
|
|
620
623
|
type: actionTypes.FETCH_INITIAL_MESSAGES_FAILURE,
|
|
621
|
-
payload: { currentGroupChannel:
|
|
624
|
+
payload: { currentGroupChannel: groupChannel },
|
|
622
625
|
});
|
|
623
626
|
});
|
|
624
627
|
if (!disableMarkAsRead) {
|
|
625
|
-
markAsReadScheduler.push(
|
|
628
|
+
markAsReadScheduler.push(groupChannel);
|
|
626
629
|
}
|
|
627
630
|
});
|
|
628
631
|
}
|
|
@@ -651,6 +654,7 @@ function useScrollCallback(_a, _b) {
|
|
|
651
654
|
}
|
|
652
655
|
if (userFilledMessageListQuery) {
|
|
653
656
|
Object.keys(userFilledMessageListQuery).forEach(function (key) {
|
|
657
|
+
// @ts-ignore
|
|
654
658
|
messageListParams[key] = userFilledMessageListQuery[key];
|
|
655
659
|
});
|
|
656
660
|
}
|
|
@@ -658,17 +662,14 @@ function useScrollCallback(_a, _b) {
|
|
|
658
662
|
currentGroupChannel: currentGroupChannel,
|
|
659
663
|
userFilledMessageListQuery: userFilledMessageListQuery,
|
|
660
664
|
});
|
|
661
|
-
currentGroupChannel
|
|
662
|
-
.getMessagesByTimestamp(oldestMessageTimeStamp || new Date().getTime(), messageListParams)
|
|
663
|
-
.then(function (messages) {
|
|
665
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.getMessagesByTimestamp(oldestMessageTimeStamp || new Date().getTime(), messageListParams).then(function (messages) {
|
|
664
666
|
messagesDispatcher({
|
|
665
667
|
type: actionTypes.FETCH_PREV_MESSAGES_SUCCESS,
|
|
666
668
|
payload: { currentGroupChannel: currentGroupChannel, messages: messages },
|
|
667
669
|
});
|
|
668
670
|
if (callback)
|
|
669
671
|
setTimeout(function () { return callback(); });
|
|
670
|
-
})
|
|
671
|
-
.catch(function () {
|
|
672
|
+
}).catch(function () {
|
|
672
673
|
messagesDispatcher({
|
|
673
674
|
type: actionTypes.FETCH_PREV_MESSAGES_FAILURE,
|
|
674
675
|
payload: { currentGroupChannel: currentGroupChannel },
|
|
@@ -699,20 +700,18 @@ function useScrollDownCallback(_a, _b) {
|
|
|
699
700
|
}
|
|
700
701
|
if (userFilledMessageListQuery) {
|
|
701
702
|
Object.keys(userFilledMessageListQuery).forEach(function (key) {
|
|
703
|
+
// @ts-ignore
|
|
702
704
|
messageListParams[key] = userFilledMessageListQuery[key];
|
|
703
705
|
});
|
|
704
706
|
}
|
|
705
707
|
logger.info('Channel: Fetching later messages', { currentGroupChannel: currentGroupChannel, userFilledMessageListQuery: userFilledMessageListQuery });
|
|
706
|
-
currentGroupChannel
|
|
707
|
-
.getMessagesByTimestamp(latestMessageTimeStamp || new Date().getTime(), messageListParams)
|
|
708
|
-
.then(function (messages) {
|
|
708
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.getMessagesByTimestamp(latestMessageTimeStamp || new Date().getTime(), messageListParams).then(function (messages) {
|
|
709
709
|
messagesDispatcher({
|
|
710
710
|
type: actionTypes.FETCH_NEXT_MESSAGES_SUCCESS,
|
|
711
711
|
payload: { currentGroupChannel: currentGroupChannel, messages: messages },
|
|
712
712
|
});
|
|
713
713
|
setTimeout(function () { return cb([messages, null]); });
|
|
714
|
-
})
|
|
715
|
-
.catch(function (error) {
|
|
714
|
+
}).catch(function (error) {
|
|
716
715
|
logger.error('Channel: Fetching later messages failed', error);
|
|
717
716
|
messagesDispatcher({
|
|
718
717
|
type: actionTypes.FETCH_NEXT_MESSAGES_FAILURE,
|
|
@@ -742,17 +741,14 @@ function useDeleteMessageCallback(_a, _b) {
|
|
|
742
741
|
}
|
|
743
742
|
else {
|
|
744
743
|
logger.info('Channel | useDeleteMessageCallback: Deleting message from remote:', sendingStatus);
|
|
745
|
-
currentGroupChannel
|
|
746
|
-
.deleteMessage(message$1)
|
|
747
|
-
.then(function () {
|
|
744
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.deleteMessage(message$1).then(function () {
|
|
748
745
|
logger.info('Channel | useDeleteMessageCallback: Deleting message success!', message$1);
|
|
749
746
|
messagesDispatcher({
|
|
750
747
|
type: actionTypes.ON_MESSAGE_DELETED,
|
|
751
748
|
payload: message$1.messageId,
|
|
752
749
|
});
|
|
753
750
|
resolve();
|
|
754
|
-
})
|
|
755
|
-
.catch(function (err) {
|
|
751
|
+
}).catch(function (err) {
|
|
756
752
|
logger.warning('Channel | useDeleteMessageCallback: Deleting message failed!', err);
|
|
757
753
|
reject(err);
|
|
758
754
|
});
|
|
@@ -770,7 +766,7 @@ function useUpdateMessageCallback(_a, _b) {
|
|
|
770
766
|
var params = {
|
|
771
767
|
message: message,
|
|
772
768
|
};
|
|
773
|
-
if (isMentionEnabled &&
|
|
769
|
+
if (isMentionEnabled && mentionedUsers && mentionedUsers.length > 0) {
|
|
774
770
|
params.mentionedUsers = mentionedUsers;
|
|
775
771
|
}
|
|
776
772
|
if (isMentionEnabled && mentionTemplate) {
|
|
@@ -787,9 +783,7 @@ function useUpdateMessageCallback(_a, _b) {
|
|
|
787
783
|
}
|
|
788
784
|
var params = shouldCreateCustomParams ? onBeforeUpdateUserMessage(message) : createParamsDefault(message);
|
|
789
785
|
logger.info('Channel: Updating message!', params);
|
|
790
|
-
currentGroupChannel
|
|
791
|
-
.updateUserMessage(messageId, params)
|
|
792
|
-
.then(function (msg) {
|
|
786
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.updateUserMessage(messageId, params).then(function (msg) {
|
|
793
787
|
if (callback) {
|
|
794
788
|
callback(null, msg);
|
|
795
789
|
}
|
|
@@ -806,8 +800,7 @@ function useUpdateMessageCallback(_a, _b) {
|
|
|
806
800
|
channel: currentGroupChannel,
|
|
807
801
|
publishingModules: [pubSub_topics.PublishingModuleType.CHANNEL],
|
|
808
802
|
});
|
|
809
|
-
})
|
|
810
|
-
.catch(function (err) {
|
|
803
|
+
}).catch(function (err) {
|
|
811
804
|
if (callback) {
|
|
812
805
|
callback(err, null);
|
|
813
806
|
}
|
|
@@ -823,23 +816,19 @@ function useResendMessageCallback(_a, _b) {
|
|
|
823
816
|
if (failedMessage === null || failedMessage === void 0 ? void 0 : failedMessage.isResendable) {
|
|
824
817
|
// userMessage
|
|
825
818
|
if (failedMessage.isUserMessage()) {
|
|
826
|
-
currentGroupChannel
|
|
827
|
-
.resendMessage(failedMessage)
|
|
828
|
-
.onPending(function (message) {
|
|
819
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.resendMessage(failedMessage).onPending(function (message) {
|
|
829
820
|
logger.info('Channel: Resending message start!', message);
|
|
830
821
|
messagesDispatcher({
|
|
831
822
|
type: actionTypes.RESEND_MESSAGE_START,
|
|
832
823
|
payload: message,
|
|
833
824
|
});
|
|
834
|
-
})
|
|
835
|
-
.onSucceeded(function (message) {
|
|
825
|
+
}).onSucceeded(function (message) {
|
|
836
826
|
logger.info('Channel: Resending message success!', message);
|
|
837
827
|
messagesDispatcher({
|
|
838
828
|
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
839
829
|
payload: message,
|
|
840
830
|
});
|
|
841
|
-
})
|
|
842
|
-
.onFailed(function (e, message) {
|
|
831
|
+
}).onFailed(function (e, message) {
|
|
843
832
|
logger.warning('Channel: Resending message failed!', e);
|
|
844
833
|
messagesDispatcher({
|
|
845
834
|
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
@@ -848,23 +837,19 @@ function useResendMessageCallback(_a, _b) {
|
|
|
848
837
|
});
|
|
849
838
|
}
|
|
850
839
|
else if (failedMessage.isFileMessage()) {
|
|
851
|
-
currentGroupChannel
|
|
852
|
-
.resendMessage(failedMessage)
|
|
853
|
-
.onPending(function (message) {
|
|
840
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.resendMessage(failedMessage).onPending(function (message) {
|
|
854
841
|
logger.info('Channel: Resending file message start!', message);
|
|
855
842
|
messagesDispatcher({
|
|
856
843
|
type: actionTypes.RESEND_MESSAGE_START,
|
|
857
844
|
payload: message,
|
|
858
845
|
});
|
|
859
|
-
})
|
|
860
|
-
.onSucceeded(function (message) {
|
|
846
|
+
}).onSucceeded(function (message) {
|
|
861
847
|
logger.info('Channel: Resending file message success!', message);
|
|
862
848
|
messagesDispatcher({
|
|
863
849
|
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
864
850
|
payload: message,
|
|
865
851
|
});
|
|
866
|
-
})
|
|
867
|
-
.onFailed(function (e, message) {
|
|
852
|
+
}).onFailed(function (e, message) {
|
|
868
853
|
logger.warning('Channel: Resending file message failed!', e);
|
|
869
854
|
messagesDispatcher({
|
|
870
855
|
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
@@ -873,16 +858,14 @@ function useResendMessageCallback(_a, _b) {
|
|
|
873
858
|
});
|
|
874
859
|
}
|
|
875
860
|
else if (failedMessage.isMultipleFilesMessage()) {
|
|
876
|
-
currentGroupChannel
|
|
877
|
-
.resendMessage(failedMessage)
|
|
878
|
-
.onPending(function (message) {
|
|
861
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.resendMessage(failedMessage).onPending(function (message) {
|
|
879
862
|
logger.info('Channel: Resending multiple files message start!', message);
|
|
880
863
|
messagesDispatcher({
|
|
881
864
|
type: actionTypes.RESEND_MESSAGE_START,
|
|
882
865
|
payload: message,
|
|
883
866
|
});
|
|
884
|
-
})
|
|
885
|
-
|
|
867
|
+
}).onFileUploaded(function (requestId, index, uploadableFileInfo, error) {
|
|
868
|
+
var _a;
|
|
886
869
|
logger.info('Channel: Resending multiple files message file uploaded!', {
|
|
887
870
|
requestId: requestId,
|
|
888
871
|
index: index,
|
|
@@ -891,7 +874,7 @@ function useResendMessageCallback(_a, _b) {
|
|
|
891
874
|
});
|
|
892
875
|
pubSub.publish(pubSub_topics.pubSubTopics.ON_FILE_INFO_UPLOADED, {
|
|
893
876
|
response: {
|
|
894
|
-
channelUrl: currentGroupChannel.url,
|
|
877
|
+
channelUrl: (_a = currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.url) !== null && _a !== void 0 ? _a : '',
|
|
895
878
|
requestId: requestId,
|
|
896
879
|
index: index,
|
|
897
880
|
uploadableFileInfo: uploadableFileInfo,
|
|
@@ -899,15 +882,13 @@ function useResendMessageCallback(_a, _b) {
|
|
|
899
882
|
},
|
|
900
883
|
publishingModules: [pubSub_topics.PublishingModuleType.CHANNEL],
|
|
901
884
|
});
|
|
902
|
-
})
|
|
903
|
-
.onSucceeded(function (message) {
|
|
885
|
+
}).onSucceeded(function (message) {
|
|
904
886
|
logger.info('Channel: Resending multiple files message success!', message);
|
|
905
887
|
messagesDispatcher({
|
|
906
888
|
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
907
889
|
payload: message,
|
|
908
890
|
});
|
|
909
|
-
})
|
|
910
|
-
.onFailed(function (e, message) {
|
|
891
|
+
}).onFailed(function (e, message) {
|
|
911
892
|
logger.warning('Channel: Resending multiple files message failed!', e);
|
|
912
893
|
messagesDispatcher({
|
|
913
894
|
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
@@ -935,12 +916,12 @@ function useSendMessageCallback(_a, _b) {
|
|
|
935
916
|
message: message,
|
|
936
917
|
};
|
|
937
918
|
// if (isMentionEnabled && mentionedUserIds?.length > 0) {
|
|
938
|
-
if (isMentionEnabled &&
|
|
919
|
+
if (isMentionEnabled && mentionedUsers && mentionedUsers.length > 0) {
|
|
939
920
|
// params.mentionedUserIds = mentionedUserIds;
|
|
940
921
|
params.mentionedUsers = mentionedUsers;
|
|
941
922
|
}
|
|
942
923
|
// if (isMentionEnabled && mentionTemplate && mentionedUserIds?.length > 0) {
|
|
943
|
-
if (isMentionEnabled && mentionTemplate &&
|
|
924
|
+
if (isMentionEnabled && mentionTemplate && mentionedUsers && mentionedUsers.length > 0) {
|
|
944
925
|
params.mentionedMessageTemplate = mentionTemplate;
|
|
945
926
|
}
|
|
946
927
|
if (quoteMessage) {
|
|
@@ -955,9 +936,7 @@ function useSendMessageCallback(_a, _b) {
|
|
|
955
936
|
}
|
|
956
937
|
var params = shouldCreateCustomParams ? onBeforeSendUserMessage(message, quoteMessage) : createParamsDefault();
|
|
957
938
|
logger.info('Channel: Sending message has started', params);
|
|
958
|
-
currentGroupChannel
|
|
959
|
-
.sendUserMessage(params)
|
|
960
|
-
.onPending(function (pendingMsg) {
|
|
939
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.sendUserMessage(params).onPending(function (pendingMsg) {
|
|
961
940
|
pubSub.publish(pubSub_topics.pubSubTopics.SEND_MESSAGE_START, {
|
|
962
941
|
/* pubSub is used instead of messagesDispatcher
|
|
963
942
|
to avoid redundantly calling `messageActionTypes.SEND_MESSAGE_START` */
|
|
@@ -966,15 +945,13 @@ function useSendMessageCallback(_a, _b) {
|
|
|
966
945
|
publishingModules: [pubSub_topics.PublishingModuleType.CHANNEL],
|
|
967
946
|
});
|
|
968
947
|
setTimeout(function () { return utils.scrollIntoLast(0, scrollRef); }, consts.SCROLL_BOTTOM_DELAY_FOR_SEND);
|
|
969
|
-
})
|
|
970
|
-
.onFailed(function (err, msg) {
|
|
948
|
+
}).onFailed(function (err, msg) {
|
|
971
949
|
logger.warning('Channel: Sending message failed!', { message: msg, error: err });
|
|
972
950
|
messagesDispatcher({
|
|
973
951
|
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
974
952
|
payload: msg,
|
|
975
953
|
});
|
|
976
|
-
})
|
|
977
|
-
.onSucceeded(function (msg) {
|
|
954
|
+
}).onSucceeded(function (msg) {
|
|
978
955
|
logger.info('Channel: Sending message success!', msg);
|
|
979
956
|
messagesDispatcher({
|
|
980
957
|
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
@@ -988,59 +965,52 @@ function useSendMessageCallback(_a, _b) {
|
|
|
988
965
|
function useSendFileMessageCallback(_a, _b) {
|
|
989
966
|
var currentGroupChannel = _a.currentGroupChannel, onBeforeSendFileMessage = _a.onBeforeSendFileMessage, imageCompression = _a.imageCompression;
|
|
990
967
|
var logger = _b.logger, pubSub = _b.pubSub, scrollRef = _b.scrollRef, messagesDispatcher = _b.messagesDispatcher;
|
|
991
|
-
var sendMessage = React.useCallback(function (compressedFile, quoteMessage) {
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
if (
|
|
997
|
-
params =
|
|
998
|
-
|
|
999
|
-
params.isReplyToChannel = true;
|
|
1000
|
-
params.parentMessageId = quoteMessage.messageId;
|
|
1001
|
-
}
|
|
968
|
+
var sendMessage = React.useCallback(function (compressedFile, quoteMessage) { return new Promise(function (resolve, reject) {
|
|
969
|
+
// Create FileMessageParams
|
|
970
|
+
var params = onBeforeSendFileMessage === null || onBeforeSendFileMessage === void 0 ? void 0 : onBeforeSendFileMessage(compressedFile, quoteMessage);
|
|
971
|
+
if (!params) {
|
|
972
|
+
params = { file: compressedFile };
|
|
973
|
+
if (quoteMessage) {
|
|
974
|
+
params.isReplyToChannel = true;
|
|
975
|
+
params.parentMessageId = quoteMessage.messageId;
|
|
1002
976
|
}
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
pubSub
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
publishingModules: [pubSub_topics.PublishingModuleType.CHANNEL],
|
|
1017
|
-
});
|
|
1018
|
-
setTimeout(function () { return utils.scrollIntoLast(0, scrollRef); }, consts.SCROLL_BOTTOM_DELAY_FOR_SEND);
|
|
1019
|
-
})
|
|
1020
|
-
.onFailed(function (err, failedMessage) {
|
|
1021
|
-
logger.error('Channel: Sending file message failed!', { failedMessage: failedMessage, err: err });
|
|
1022
|
-
// TODO: v4 - remove logic that modifies the original object.
|
|
1023
|
-
// It makes the code difficult to track, likely causing unpredictable side effects.
|
|
1024
|
-
// @ts-ignore eslint-disable-next-line no-param-reassign
|
|
1025
|
-
failedMessage.localUrl = URL.createObjectURL(compressedFile);
|
|
1026
|
-
// @ts-ignore eslint-disable-next-line no-param-reassign
|
|
1027
|
-
failedMessage.file = compressedFile;
|
|
1028
|
-
messagesDispatcher({
|
|
1029
|
-
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
1030
|
-
payload: failedMessage,
|
|
1031
|
-
});
|
|
1032
|
-
reject(err);
|
|
1033
|
-
})
|
|
1034
|
-
.onSucceeded(function (succeededMessage) {
|
|
1035
|
-
logger.info('Channel: Sending file message success!', succeededMessage);
|
|
1036
|
-
messagesDispatcher({
|
|
1037
|
-
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
1038
|
-
payload: succeededMessage,
|
|
1039
|
-
});
|
|
1040
|
-
resolve(succeededMessage);
|
|
977
|
+
}
|
|
978
|
+
// Send FileMessage
|
|
979
|
+
logger.info('Channel: Uploading file message start!', params);
|
|
980
|
+
currentGroupChannel === null || currentGroupChannel === void 0 ? void 0 : currentGroupChannel.sendFileMessage(params).onPending(function (pendingMessage) {
|
|
981
|
+
pubSub.publish(pubSub_topics.pubSubTopics.SEND_MESSAGE_START, {
|
|
982
|
+
/* pubSub is used instead of messagesDispatcher
|
|
983
|
+
to avoid redundantly calling `messageActionTypes.SEND_MESSAGE_START` */
|
|
984
|
+
// TODO: remove data pollution
|
|
985
|
+
message: _tslib.__assign(_tslib.__assign({}, pendingMessage), { url: URL.createObjectURL(compressedFile),
|
|
986
|
+
// pending thumbnail message seems to be failed
|
|
987
|
+
requestState: 'pending', isUserMessage: pendingMessage.isUserMessage, isFileMessage: pendingMessage.isFileMessage, isAdminMessage: pendingMessage.isAdminMessage, isMultipleFilesMessage: pendingMessage.isMultipleFilesMessage }),
|
|
988
|
+
channel: currentGroupChannel,
|
|
989
|
+
publishingModules: [pubSub_topics.PublishingModuleType.CHANNEL],
|
|
1041
990
|
});
|
|
991
|
+
setTimeout(function () { return utils.scrollIntoLast(0, scrollRef); }, consts.SCROLL_BOTTOM_DELAY_FOR_SEND);
|
|
992
|
+
}).onFailed(function (err, failedMessage) {
|
|
993
|
+
logger.error('Channel: Sending file message failed!', { failedMessage: failedMessage, err: err });
|
|
994
|
+
// TODO: v4 - remove logic that modifies the original object.
|
|
995
|
+
// It makes the code difficult to track, likely causing unpredictable side effects.
|
|
996
|
+
// @ts-ignore eslint-disable-next-line no-param-reassign
|
|
997
|
+
failedMessage.localUrl = URL.createObjectURL(compressedFile);
|
|
998
|
+
// @ts-ignore eslint-disable-next-line no-param-reassign
|
|
999
|
+
failedMessage.file = compressedFile;
|
|
1000
|
+
messagesDispatcher({
|
|
1001
|
+
type: actionTypes.SEND_MESSAGE_FAILURE,
|
|
1002
|
+
payload: failedMessage,
|
|
1003
|
+
});
|
|
1004
|
+
reject(err);
|
|
1005
|
+
}).onSucceeded(function (succeededMessage) {
|
|
1006
|
+
logger.info('Channel: Sending file message success!', succeededMessage);
|
|
1007
|
+
messagesDispatcher({
|
|
1008
|
+
type: actionTypes.SEND_MESSAGE_SUCCESS,
|
|
1009
|
+
payload: succeededMessage,
|
|
1010
|
+
});
|
|
1011
|
+
resolve(succeededMessage);
|
|
1042
1012
|
});
|
|
1043
|
-
}, [currentGroupChannel, onBeforeSendFileMessage, imageCompression]);
|
|
1013
|
+
}); }, [currentGroupChannel, onBeforeSendFileMessage, imageCompression]);
|
|
1044
1014
|
return [sendMessage];
|
|
1045
1015
|
}
|
|
1046
1016
|
|
|
@@ -1102,8 +1072,7 @@ var useSendVoiceMessageCallback = function (_a, _b) {
|
|
|
1102
1072
|
if (!currentGroupChannel) {
|
|
1103
1073
|
return;
|
|
1104
1074
|
}
|
|
1105
|
-
var messageParams = (onBeforeSendVoiceMessage
|
|
1106
|
-
&& typeof onBeforeSendVoiceMessage === 'function')
|
|
1075
|
+
var messageParams = (onBeforeSendVoiceMessage && typeof onBeforeSendVoiceMessage === 'function')
|
|
1107
1076
|
? onBeforeSendVoiceMessage(file, quoteMessage)
|
|
1108
1077
|
: {
|
|
1109
1078
|
file: file,
|
|
@@ -1246,7 +1215,7 @@ var useHandleChannelPubsubEvents = function (_a) {
|
|
|
1246
1215
|
]);
|
|
1247
1216
|
};
|
|
1248
1217
|
|
|
1249
|
-
var ChannelContext = React.createContext(
|
|
1218
|
+
var ChannelContext = React.createContext(null);
|
|
1250
1219
|
var ChannelProvider = function (props) {
|
|
1251
1220
|
var _a, _b, _c, _d, _e, _f, _g;
|
|
1252
1221
|
var channelUrl = props.channelUrl, children = props.children, isReactionEnabled = props.isReactionEnabled, _h = props.isMessageGroupingEnabled, isMessageGroupingEnabled = _h === void 0 ? true : _h, isMultipleFilesMessageEnabled = props.isMultipleFilesMessageEnabled, showSearchIcon = props.showSearchIcon, animatedMessage = props.animatedMessage, highlightedMessage = props.highlightedMessage, startingPoint = props.startingPoint, onBeforeSendUserMessage = props.onBeforeSendUserMessage, onBeforeSendFileMessage = props.onBeforeSendFileMessage, onBeforeUpdateUserMessage = props.onBeforeUpdateUserMessage, onBeforeSendVoiceMessage = props.onBeforeSendVoiceMessage, onBeforeSendMultipleFilesMessage = props.onBeforeSendMultipleFilesMessage, onChatHeaderActionClick = props.onChatHeaderActionClick, onSearchClick = props.onSearchClick, onBackClick = props.onBackClick, threadReplySelectType = props.threadReplySelectType, queries = props.queries, filterMessageList = props.filterMessageList, _j = props.disableMarkAsRead, disableMarkAsRead = _j === void 0 ? false : _j, onReplyInThread = props.onReplyInThread, onQuoteMessageClick = props.onQuoteMessageClick, onMessageAnimated = props.onMessageAnimated, onMessageHighlighted = props.onMessageHighlighted, _k = props.scrollBehavior, scrollBehavior = _k === void 0 ? 'auto' : _k, _l = props.reconnectOnIdle, reconnectOnIdle = _l === void 0 ? true : _l;
|
|
@@ -1490,7 +1459,12 @@ var ChannelProvider = function (props) {
|
|
|
1490
1459
|
} },
|
|
1491
1460
|
React.createElement(UserProfileContext.UserProfileProvider, { disableUserProfile: (_g = props === null || props === void 0 ? void 0 : props.disableUserProfile) !== null && _g !== void 0 ? _g : !config.common.enableUsingDefaultUserProfile, renderUserProfile: props === null || props === void 0 ? void 0 : props.renderUserProfile, onUserProfileMessage: onUserProfileMessage }, children)));
|
|
1492
1461
|
};
|
|
1493
|
-
var useChannelContext = function () {
|
|
1462
|
+
var useChannelContext = function () {
|
|
1463
|
+
var context = React.useContext(ChannelContext);
|
|
1464
|
+
if (!context)
|
|
1465
|
+
throw new Error('ChannelContext not found. Use within the Channel module.');
|
|
1466
|
+
return context;
|
|
1467
|
+
};
|
|
1494
1468
|
|
|
1495
1469
|
exports.ChannelProvider = ChannelProvider;
|
|
1496
1470
|
exports.useChannelContext = useChannelContext;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"context.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('../../chunks/bundle-
|
|
3
|
+
var _tslib = require('../../chunks/bundle-eTYC1RPT.js');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var useSendbirdStateContext = require('../../useSendbirdStateContext.js');
|
|
6
|
-
var index = require('../../chunks/bundle-
|
|
7
|
-
var ui_Modal = require('../../chunks/bundle-
|
|
8
|
-
require('../../chunks/bundle-
|
|
6
|
+
var index = require('../../chunks/bundle-DrYI_bNa.js');
|
|
7
|
+
var ui_Modal = require('../../chunks/bundle-DW8u-n3u.js');
|
|
8
|
+
require('../../chunks/bundle-DY5rfl6W.js');
|
|
9
9
|
var ui_Button = require('../../ui/Button.js');
|
|
10
|
-
var LocalizationContext = require('../../chunks/bundle-
|
|
11
|
-
var compressImages = require('../../chunks/bundle-
|
|
12
|
-
var consts = require('../../chunks/bundle-
|
|
10
|
+
var LocalizationContext = require('../../chunks/bundle-OWb8eJt-.js');
|
|
11
|
+
var compressImages = require('../../chunks/bundle-C1YuUjH3.js');
|
|
12
|
+
var consts = require('../../chunks/bundle-BNzVVkzd.js');
|
|
13
13
|
require('../../withSendbird.js');
|
|
14
14
|
require('@sendbird/chat/groupChannel');
|
|
15
15
|
require('../../utils/message/getOutgoingMessageState.js');
|
|
16
|
-
require('../../chunks/bundle-
|
|
16
|
+
require('../../chunks/bundle-DOoshvnj.js');
|
|
17
17
|
require('react-dom');
|
|
18
|
-
require('../../chunks/bundle-
|
|
18
|
+
require('../../chunks/bundle-OIKGVRus.js');
|
|
19
19
|
require('../../ui/IconButton.js');
|
|
20
20
|
require('../../ui/Icon.js');
|
|
21
21
|
require('@sendbird/uikit-tools');
|
|
22
22
|
require('css-vars-ponyfill');
|
|
23
23
|
require('@sendbird/chat');
|
|
24
|
-
require('../../chunks/bundle-
|
|
24
|
+
require('../../chunks/bundle-YRiE_c63.js');
|
|
25
25
|
require('@sendbird/chat/openChannel');
|
|
26
|
-
require('../../chunks/bundle-
|
|
27
|
-
require('../../chunks/bundle-
|
|
28
|
-
require('../../chunks/bundle-
|
|
29
|
-
require('../../chunks/bundle-
|
|
30
|
-
require('../../chunks/bundle-
|
|
26
|
+
require('../../chunks/bundle-CW2oMonb.js');
|
|
27
|
+
require('../../chunks/bundle-Dymg5zVO.js');
|
|
28
|
+
require('../../chunks/bundle-BNMoxGCr.js');
|
|
29
|
+
require('../../chunks/bundle-1A4pOyri.js');
|
|
30
|
+
require('../../chunks/bundle-DcQeRT4T.js');
|
|
31
31
|
|
|
32
32
|
var useHandleUploadFiles = function (_a, _b) {
|
|
33
33
|
var sendFileMessage = _a.sendFileMessage, sendMultipleFilesMessage = _a.sendMultipleFilesMessage, quoteMessage = _a.quoteMessage;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
require('react');
|
|
4
4
|
require('@sendbird/chat/message');
|
|
5
|
-
require('../../chunks/bundle-
|
|
6
|
-
require('../../chunks/bundle-
|
|
7
|
-
var Channel_hooks_useInitialMessagesFetch = require('../../chunks/bundle-
|
|
8
|
-
require('../../chunks/bundle-
|
|
9
|
-
require('../../chunks/bundle-
|
|
10
|
-
require('../../chunks/bundle-
|
|
5
|
+
require('../../chunks/bundle-BBsKv3Vz.js');
|
|
6
|
+
require('../../chunks/bundle-BzyQ6Vof.js');
|
|
7
|
+
var Channel_hooks_useInitialMessagesFetch = require('../../chunks/bundle-0t_JDxef.js');
|
|
8
|
+
require('../../chunks/bundle-BNzVVkzd.js');
|
|
9
|
+
require('../../chunks/bundle-eTYC1RPT.js');
|
|
10
|
+
require('../../chunks/bundle-CuOOXDK0.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require('../../chunks/bundle-
|
|
6
|
-
var index$1 = require('../../chunks/bundle-
|
|
7
|
-
require('../../chunks/bundle-
|
|
8
|
-
require('../../chunks/bundle-
|
|
5
|
+
var index = require('../../chunks/bundle-Cd-3W3UM.js');
|
|
6
|
+
var index$1 = require('../../chunks/bundle-DrYI_bNa.js');
|
|
7
|
+
require('../../chunks/bundle-1A4pOyri.js');
|
|
8
|
+
require('../../chunks/bundle-eTYC1RPT.js');
|
|
9
9
|
require('@sendbird/chat/groupChannel');
|
|
10
10
|
require('../../utils/message/getOutgoingMessageState.js');
|
|
11
11
|
|