@sendbird/uikit-react 3.13.2 → 3.13.3
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/App.js +78 -78
- package/CHANGELOG.md +75 -1
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +64 -64
- package/Channel/components/FileViewer.js +28 -28
- package/Channel/components/FrozenNotification.js +5 -5
- package/Channel/components/Message.js +53 -53
- package/Channel/components/MessageFeedbackModal.js +9 -9
- package/Channel/components/MessageInput.js +41 -41
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +57 -57
- package/Channel/components/RemoveMessageModal.js +27 -27
- package/Channel/components/SuggestedMentionList.js +27 -27
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +19 -19
- package/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/Channel/utils/getMessagePartsInfo.js +6 -6
- package/Channel.js +64 -64
- package/ChannelList/components/AddChannel.js +20 -20
- package/ChannelList/components/ChannelListHeader.js +8 -8
- package/ChannelList/components/ChannelListUI.js +34 -34
- package/ChannelList/components/ChannelPreview.js +27 -27
- package/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/ChannelList/context.js +10 -10
- package/ChannelList.js +34 -34
- package/ChannelSettings/components/ChannelProfile.js +14 -14
- package/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/ChannelSettings/components/ChannelSettingsUI.js +23 -23
- package/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/ChannelSettings/components/LeaveChannel.js +11 -11
- package/ChannelSettings/components/ModerationPanel.js +21 -21
- package/ChannelSettings/components/UserListItem.js +13 -13
- package/ChannelSettings/components/UserPanel.js +20 -20
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +23 -23
- package/CreateChannel/components/CreateChannelUI.js +16 -16
- package/CreateChannel/components/InviteUsers.js +16 -16
- package/CreateChannel/components/SelectChannelType.js +10 -10
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +16 -16
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +11 -11
- package/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/EditUserProfile.js +12 -12
- package/GroupChannel/components/FileViewer.js +56 -27
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +5 -5
- package/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +52 -52
- package/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/GroupChannel/components/MessageList.js +51 -51
- package/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +7 -7
- package/GroupChannel/context.js +13 -13
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +33 -33
- package/MessageSearch/components/MessageSearchUI.js +14 -14
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +14 -14
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/OpenChannel/components/OpenChannelInput.js +25 -25
- package/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/OpenChannel/components/OpenChannelUI.js +39 -39
- package/OpenChannel/context.js +17 -17
- package/OpenChannel.js +39 -39
- package/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +14 -14
- package/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +19 -19
- package/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +19 -19
- package/SendbirdProvider.js +24 -48
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +75 -46
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +73 -34
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +7 -7
- package/Thread/components/ThreadList.js +46 -46
- package/Thread/components/ThreadListItem.js +109 -52
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +42 -42
- package/Thread/components/ThreadUI.js +56 -56
- package/Thread/context.js +11 -10
- package/Thread/context.js.map +1 -1
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +10 -10
- package/VoiceRecorder/context.js +10 -10
- package/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/chunks/{bundle-2UMLs1R6.js → bundle-1ymLj4Og.js} +1 -1
- package/chunks/bundle-1ymLj4Og.js.map +1 -0
- package/chunks/{bundle-DzQcMztv.js → bundle-4a9M9y8N.js} +1 -1
- package/chunks/{bundle-DzQcMztv.js.map → bundle-4a9M9y8N.js.map} +1 -1
- package/chunks/{bundle-B9ZQfJSL.js → bundle-5HwGq_hd.js} +4 -4
- package/chunks/{bundle-B9ZQfJSL.js.map → bundle-5HwGq_hd.js.map} +1 -1
- package/chunks/{bundle-hAKR7PVp.js → bundle-B8HW06Fl.js} +1 -1
- package/chunks/bundle-B8HW06Fl.js.map +1 -0
- package/chunks/{bundle-D57EENOn.js → bundle-BAsn0CBE.js} +1 -1
- package/chunks/bundle-BAsn0CBE.js.map +1 -0
- package/chunks/{bundle-BRhZt2zf.js → bundle-BHOxoDJO.js} +1 -1
- package/chunks/{bundle-BRhZt2zf.js.map → bundle-BHOxoDJO.js.map} +1 -1
- package/chunks/{bundle-BgunHZ2y.js → bundle-BIvhXCoF.js} +1 -1
- package/chunks/bundle-BIvhXCoF.js.map +1 -0
- package/chunks/{bundle-BkTOcqVY.js → bundle-BMvaJoQA.js} +40 -9
- package/{cjs/chunks/bundle-B2QAlKH1.js.map → chunks/bundle-BMvaJoQA.js.map} +1 -1
- package/chunks/{bundle-TYwaKAYl.js → bundle-BOrV2z_R.js} +54 -52
- package/chunks/{bundle-TYwaKAYl.js.map → bundle-BOrV2z_R.js.map} +1 -1
- package/chunks/{bundle-BlSpe5qA.js → bundle-BVGlC_pg.js} +1 -1
- package/chunks/bundle-BVGlC_pg.js.map +1 -0
- package/chunks/{bundle-BV8WCwVA.js → bundle-BX0LQWqY.js} +3 -3
- package/chunks/bundle-BX0LQWqY.js.map +1 -0
- package/chunks/{bundle-DwRQcRou.js → bundle-BXpzbAbi.js} +3 -3
- package/chunks/bundle-BXpzbAbi.js.map +1 -0
- package/chunks/{bundle-5DiiOFi-.js → bundle-BkM4cdOJ.js} +9 -9
- package/chunks/bundle-BkM4cdOJ.js.map +1 -0
- package/chunks/{bundle-ugWtu0YZ.js → bundle-BlHQV-25.js} +1 -1
- package/chunks/bundle-BlHQV-25.js.map +1 -0
- package/chunks/{bundle-C-UZ_gr4.js → bundle-Bm_WZS3a.js} +2 -2
- package/chunks/{bundle-C-UZ_gr4.js.map → bundle-Bm_WZS3a.js.map} +1 -1
- package/chunks/{bundle-RJu3P_iQ.js → bundle-BntzGGYb.js} +1 -1
- package/chunks/bundle-BntzGGYb.js.map +1 -0
- package/chunks/{bundle-BpyUTLY3.js → bundle-BpDuHeEB.js} +4 -4
- package/chunks/bundle-BpDuHeEB.js.map +1 -0
- package/chunks/{bundle-CUBnQyTA.js → bundle-BxBdkxXV.js} +1 -1
- package/chunks/{bundle-CUBnQyTA.js.map → bundle-BxBdkxXV.js.map} +1 -1
- package/chunks/{bundle-QPbZ_XSR.js → bundle-C2vpr4DU.js} +3 -3
- package/chunks/{bundle-QPbZ_XSR.js.map → bundle-C2vpr4DU.js.map} +1 -1
- package/chunks/{bundle-C7SA85dp.js → bundle-C6ZXjQ1L.js} +1 -1
- package/chunks/bundle-C6ZXjQ1L.js.map +1 -0
- package/chunks/{bundle-Cgtk2LV4.js → bundle-C6fuKmVo.js} +4 -4
- package/chunks/bundle-C6fuKmVo.js.map +1 -0
- package/chunks/{bundle-CI0ovNa-.js → bundle-CAki7JUf.js} +1 -1
- package/chunks/bundle-CAki7JUf.js.map +1 -0
- package/chunks/{bundle-DdwjYXOX.js → bundle-CCUBCV04.js} +6 -6
- package/chunks/bundle-CCUBCV04.js.map +1 -0
- package/chunks/{bundle-C6MmX70M.js → bundle-CIO0N9hp.js} +1 -1
- package/chunks/bundle-CIO0N9hp.js.map +1 -0
- package/chunks/{bundle-BKPDTl9U.js → bundle-CIhbNReG.js} +3 -3
- package/chunks/bundle-CIhbNReG.js.map +1 -0
- package/chunks/{bundle-CU8x_Vlw.js → bundle-CJ9_QDKY.js} +1 -1
- package/chunks/bundle-CJ9_QDKY.js.map +1 -0
- package/chunks/{bundle-CHxXgtL2.js → bundle-CLqgMCvn.js} +1 -1
- package/chunks/bundle-CLqgMCvn.js.map +1 -0
- package/chunks/{bundle-C9WS75DY.js → bundle-CMKCY3ba.js} +3 -3
- package/chunks/{bundle-C9WS75DY.js.map → bundle-CMKCY3ba.js.map} +1 -1
- package/chunks/{bundle-D-OF1Dsr.js → bundle-COR7gPrO.js} +3 -3
- package/chunks/{bundle-D-OF1Dsr.js.map → bundle-COR7gPrO.js.map} +1 -1
- package/chunks/{bundle-mkC088ne.js → bundle-CP1hwfFC.js} +1 -1
- package/chunks/bundle-CP1hwfFC.js.map +1 -0
- package/chunks/{bundle-BNL2dgIA.js → bundle-CS4RK0T7.js} +8 -8
- package/chunks/{bundle-BNL2dgIA.js.map → bundle-CS4RK0T7.js.map} +1 -1
- package/chunks/{bundle-BdCGrzcY.js → bundle-CT3xDvIx.js} +1 -1
- package/chunks/bundle-CT3xDvIx.js.map +1 -0
- package/chunks/{bundle-4bxiD94h.js → bundle-CVDtzU3E.js} +1 -1
- package/chunks/{bundle-4bxiD94h.js.map → bundle-CVDtzU3E.js.map} +1 -1
- package/chunks/{bundle-Bm8gzDx1.js → bundle-CVFMpKJZ.js} +4 -4
- package/chunks/{bundle-Bm8gzDx1.js.map → bundle-CVFMpKJZ.js.map} +1 -1
- package/chunks/{bundle-CBIAPOPy.js → bundle-CYtZF1xr.js} +11 -11
- package/chunks/{bundle-CBIAPOPy.js.map → bundle-CYtZF1xr.js.map} +1 -1
- package/chunks/{bundle-2g0N2xdw.js → bundle-CZYvKysu.js} +1 -1
- package/chunks/bundle-CZYvKysu.js.map +1 -0
- package/chunks/{bundle-DPRlCjJt.js → bundle-CfZFWZM3.js} +3 -3
- package/chunks/bundle-CfZFWZM3.js.map +1 -0
- package/chunks/{bundle-Cm3yLDom.js → bundle-CilkBcv-.js} +2 -2
- package/chunks/bundle-CilkBcv-.js.map +1 -0
- package/chunks/{bundle-CtBgDIuq.js → bundle-CjW6ZQ1k.js} +10 -10
- package/chunks/{bundle-CtBgDIuq.js.map → bundle-CjW6ZQ1k.js.map} +1 -1
- package/chunks/{bundle-CXMfzdI7.js → bundle-CkInAxxb.js} +1 -1
- package/chunks/bundle-CkInAxxb.js.map +1 -0
- package/chunks/{bundle-CExm_LIL.js → bundle-CmdUup8N.js} +14 -14
- package/chunks/{bundle-CExm_LIL.js.map → bundle-CmdUup8N.js.map} +1 -1
- package/chunks/{bundle-C6387K33.js → bundle-Cvm8Ag45.js} +1 -1
- package/chunks/bundle-Cvm8Ag45.js.map +1 -0
- package/chunks/{bundle-Hl5CUM1x.js → bundle-D3OeBr-9.js} +1 -1
- package/chunks/bundle-D3OeBr-9.js.map +1 -0
- package/chunks/{bundle-CIHv_OFc.js → bundle-D45e30Hl.js} +4 -4
- package/chunks/bundle-D45e30Hl.js.map +1 -0
- package/chunks/{bundle-B1ObaBN3.js → bundle-D47WMGAq.js} +1 -1
- package/chunks/{bundle-B1ObaBN3.js.map → bundle-D47WMGAq.js.map} +1 -1
- package/chunks/{bundle-CcRuHA7i.js → bundle-D6kFzMhH.js} +5 -5
- package/chunks/{bundle-CcRuHA7i.js.map → bundle-D6kFzMhH.js.map} +1 -1
- package/chunks/{bundle-5rwlX4db.js → bundle-DBzkkIf1.js} +2 -2
- package/chunks/{bundle-5rwlX4db.js.map → bundle-DBzkkIf1.js.map} +1 -1
- package/chunks/{bundle-BZK5eiX2.js → bundle-DEqxoG9B.js} +1 -1
- package/chunks/bundle-DEqxoG9B.js.map +1 -0
- package/chunks/{bundle-D9xWky57.js → bundle-DHp0VTVS.js} +1 -1
- package/chunks/bundle-DHp0VTVS.js.map +1 -0
- package/chunks/{bundle-D1otjGeL.js → bundle-DI3fL4Xw.js} +3 -3
- package/chunks/{bundle-D1otjGeL.js.map → bundle-DI3fL4Xw.js.map} +1 -1
- package/chunks/{bundle-OTdL9cWR.js → bundle-DIEAFe_F.js} +2 -2
- package/chunks/bundle-DIEAFe_F.js.map +1 -0
- package/chunks/{bundle-x0WnpBed.js → bundle-DNq8IoOw.js} +7 -7
- package/chunks/{bundle-x0WnpBed.js.map → bundle-DNq8IoOw.js.map} +1 -1
- package/chunks/{bundle-BUHwsL2D.js → bundle-DPhbbRZE.js} +3 -3
- package/chunks/bundle-DPhbbRZE.js.map +1 -0
- package/chunks/{bundle-BqWBruLa.js → bundle-DQnpJfyk.js} +3 -3
- package/chunks/bundle-DQnpJfyk.js.map +1 -0
- package/chunks/{bundle-Clnr6ml_.js → bundle-DTywBX7q.js} +10 -10
- package/chunks/{bundle-Clnr6ml_.js.map → bundle-DTywBX7q.js.map} +1 -1
- package/chunks/{bundle-cWhfb441.js → bundle-DYJilNov.js} +1 -1
- package/chunks/bundle-DYJilNov.js.map +1 -0
- package/chunks/{bundle-DT8UMQCr.js → bundle-DaQK1Cox.js} +1 -1
- package/chunks/{bundle-DT8UMQCr.js.map → bundle-DaQK1Cox.js.map} +1 -1
- package/chunks/{bundle-_B5yFEP0.js → bundle-DavEbLba.js} +2 -2
- package/chunks/bundle-DavEbLba.js.map +1 -0
- package/chunks/{bundle-5E39Cv3A.js → bundle-Di7baNGv.js} +1 -1
- package/chunks/bundle-Di7baNGv.js.map +1 -0
- package/chunks/{bundle-DIy5BllY.js → bundle-Dj4HLKX0.js} +16 -16
- package/chunks/bundle-Dj4HLKX0.js.map +1 -0
- package/chunks/{bundle-B1v1xIP1.js → bundle-DlHudqve.js} +1 -1
- package/chunks/bundle-DlHudqve.js.map +1 -0
- package/chunks/{bundle-DtcJzbuk.js → bundle-DoJNLxY9.js} +1 -1
- package/chunks/bundle-DoJNLxY9.js.map +1 -0
- package/chunks/{bundle-C6ZHgzD6.js → bundle-DqNfXH8L.js} +2 -2
- package/chunks/bundle-DqNfXH8L.js.map +1 -0
- package/chunks/{bundle-Bb7wwF7C.js → bundle-Ds2X6Fjs.js} +10 -10
- package/chunks/bundle-Ds2X6Fjs.js.map +1 -0
- package/chunks/{bundle-B9Jpp9ee.js → bundle-DuNr1Njk.js} +1 -1
- package/chunks/bundle-DuNr1Njk.js.map +1 -0
- package/chunks/{bundle-D4TIkniH.js → bundle-DxdGwARh.js} +3 -3
- package/chunks/{bundle-D4TIkniH.js.map → bundle-DxdGwARh.js.map} +1 -1
- package/chunks/{bundle-BRedj7J7.js → bundle-Dypl_pLH.js} +2 -2
- package/chunks/{bundle-BRedj7J7.js.map → bundle-Dypl_pLH.js.map} +1 -1
- package/chunks/{bundle-BxmlG4s-.js → bundle-GRqvZZ2N.js} +3 -3
- package/chunks/bundle-GRqvZZ2N.js.map +1 -0
- package/chunks/{bundle-B3KaaIrh.js → bundle-HsrPpAtd.js} +2 -2
- package/chunks/{bundle-B3KaaIrh.js.map → bundle-HsrPpAtd.js.map} +1 -1
- package/chunks/{bundle-kO-Z-dxL.js → bundle-IuZ6uyzU.js} +1 -1
- package/chunks/bundle-IuZ6uyzU.js.map +1 -0
- package/chunks/{bundle-BEzsjrvw.js → bundle-SvqLmXeF.js} +6 -6
- package/chunks/bundle-SvqLmXeF.js.map +1 -0
- package/chunks/{bundle-Pw0Ofufv.js → bundle-VttuSapS.js} +10 -10
- package/chunks/{bundle-Pw0Ofufv.js.map → bundle-VttuSapS.js.map} +1 -1
- package/chunks/{bundle-BYdjor8f.js → bundle-WrvoTlHQ.js} +1 -1
- package/chunks/bundle-WrvoTlHQ.js.map +1 -0
- package/chunks/{bundle-Be2HIA26.js → bundle-aE9efllI.js} +2 -2
- package/chunks/bundle-aE9efllI.js.map +1 -0
- package/chunks/{bundle-DIhQqYC5.js → bundle-aJhoAKLH.js} +6 -6
- package/chunks/bundle-aJhoAKLH.js.map +1 -0
- package/chunks/{bundle-sQj5xACh.js → bundle-fvRtOX6P.js} +5 -5
- package/chunks/bundle-fvRtOX6P.js.map +1 -0
- package/chunks/{bundle-CNInpRIS.js → bundle-j5EP0k3D.js} +3 -3
- package/chunks/bundle-j5EP0k3D.js.map +1 -0
- package/chunks/{bundle-Bceke7Nk.js → bundle-jd7__XU_.js} +7 -7
- package/chunks/bundle-jd7__XU_.js.map +1 -0
- package/chunks/{bundle-Cb6tbPro.js → bundle-oLhQai93.js} +2 -2
- package/chunks/bundle-oLhQai93.js.map +1 -0
- package/chunks/{bundle-BIcgVVCw.js → bundle-rl7Rvf_6.js} +12 -11
- package/chunks/{bundle-BIcgVVCw.js.map → bundle-rl7Rvf_6.js.map} +1 -1
- package/chunks/{bundle-C-35JoOu.js → bundle-ts_i6oEg.js} +1 -1
- package/chunks/bundle-ts_i6oEg.js.map +1 -0
- package/chunks/{bundle-B_ah2kxT.js → bundle-yNfnN0a6.js} +1 -1
- package/chunks/bundle-yNfnN0a6.js.map +1 -0
- package/cjs/App.js +78 -78
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +64 -64
- package/cjs/Channel/components/FileViewer.js +28 -28
- package/cjs/Channel/components/FrozenNotification.js +5 -5
- package/cjs/Channel/components/Message.js +53 -53
- package/cjs/Channel/components/MessageFeedbackModal.js +9 -9
- package/cjs/Channel/components/MessageInput.js +41 -41
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +57 -57
- package/cjs/Channel/components/RemoveMessageModal.js +27 -27
- package/cjs/Channel/components/SuggestedMentionList.js +27 -27
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +7 -7
- package/cjs/Channel/context.js +19 -19
- package/cjs/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/cjs/Channel/utils/getMessagePartsInfo.js +6 -6
- package/cjs/Channel.js +64 -64
- package/cjs/ChannelList/components/AddChannel.js +20 -20
- package/cjs/ChannelList/components/ChannelListHeader.js +8 -8
- package/cjs/ChannelList/components/ChannelListUI.js +34 -34
- package/cjs/ChannelList/components/ChannelPreview.js +27 -27
- package/cjs/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/cjs/ChannelList/context.js +10 -10
- package/cjs/ChannelList.js +34 -34
- package/cjs/ChannelSettings/components/ChannelProfile.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +23 -23
- package/cjs/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/cjs/ChannelSettings/components/LeaveChannel.js +11 -11
- package/cjs/ChannelSettings/components/ModerationPanel.js +21 -21
- package/cjs/ChannelSettings/components/UserListItem.js +13 -13
- package/cjs/ChannelSettings/components/UserPanel.js +20 -20
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +23 -23
- package/cjs/CreateChannel/components/CreateChannelUI.js +16 -16
- package/cjs/CreateChannel/components/InviteUsers.js +16 -16
- package/cjs/CreateChannel/components/SelectChannelType.js +10 -10
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +16 -16
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +11 -11
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/cjs/EditUserProfile.js +12 -12
- package/cjs/GroupChannel/components/FileViewer.js +56 -27
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
- package/cjs/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +52 -52
- package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
- package/cjs/GroupChannel/components/MessageList.js +51 -51
- package/cjs/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +7 -7
- package/cjs/GroupChannel/context.js +13 -13
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +33 -33
- package/cjs/MessageSearch/components/MessageSearchUI.js +14 -14
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +14 -14
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/cjs/OpenChannel/components/OpenChannelInput.js +25 -25
- package/cjs/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelUI.js +39 -39
- package/cjs/OpenChannel/context.js +17 -17
- package/cjs/OpenChannel.js +39 -39
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +14 -14
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +19 -19
- package/cjs/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +19 -19
- package/cjs/SendbirdProvider.js +24 -48
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +75 -46
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +73 -34
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +7 -7
- package/cjs/Thread/components/ThreadList.js +46 -46
- package/cjs/Thread/components/ThreadListItem.js +109 -52
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +42 -42
- package/cjs/Thread/components/ThreadUI.js +56 -56
- package/cjs/Thread/context.js +11 -10
- 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 +10 -10
- package/cjs/VoiceRecorder/context.js +10 -10
- package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/cjs/chunks/{bundle-CD82WkIi.js → bundle-1FXPxsfD.js} +1 -1
- package/cjs/chunks/bundle-1FXPxsfD.js.map +1 -0
- package/cjs/chunks/{bundle-nu9oFcYy.js → bundle-2ATovRxE.js} +4 -4
- package/cjs/chunks/bundle-2ATovRxE.js.map +1 -0
- package/cjs/chunks/{bundle-Cwr1hx-z.js → bundle-8uCH3epo.js} +11 -11
- package/cjs/chunks/{bundle-Cwr1hx-z.js.map → bundle-8uCH3epo.js.map} +1 -1
- package/cjs/chunks/{bundle-BgCtP7V4.js → bundle-B-njjZtk.js} +3 -3
- package/cjs/chunks/bundle-B-njjZtk.js.map +1 -0
- package/cjs/chunks/{bundle-BC16qA15.js → bundle-B3Lu20wG.js} +1 -1
- package/cjs/chunks/bundle-B3Lu20wG.js.map +1 -0
- package/cjs/chunks/{bundle-CWXfgOJy.js → bundle-B6FFmfTl.js} +2 -2
- package/cjs/chunks/bundle-B6FFmfTl.js.map +1 -0
- package/cjs/chunks/{bundle-BbpNwwR8.js → bundle-B7TedQKS.js} +2 -2
- package/cjs/chunks/bundle-B7TedQKS.js.map +1 -0
- package/cjs/chunks/{bundle-DWp3JSCd.js → bundle-BBS4PSSm.js} +1 -1
- package/cjs/chunks/bundle-BBS4PSSm.js.map +1 -0
- package/cjs/chunks/{bundle-WCt_Po-w.js → bundle-BBdLSx_x.js} +3 -3
- package/cjs/chunks/{bundle-WCt_Po-w.js.map → bundle-BBdLSx_x.js.map} +1 -1
- package/cjs/chunks/{bundle-DTcE7Dci.js → bundle-BElidCBa.js} +9 -9
- package/cjs/chunks/bundle-BElidCBa.js.map +1 -0
- package/cjs/chunks/{bundle-D8ubAia5.js → bundle-BJD09510.js} +6 -6
- package/cjs/chunks/bundle-BJD09510.js.map +1 -0
- package/cjs/chunks/{bundle-DF3rT3ak.js → bundle-BJjQQMo0.js} +4 -4
- package/cjs/chunks/bundle-BJjQQMo0.js.map +1 -0
- package/cjs/chunks/{bundle-BkYT_Hch.js → bundle-BNCNRHux.js} +3 -3
- package/cjs/chunks/bundle-BNCNRHux.js.map +1 -0
- package/cjs/chunks/{bundle-D1EDPlQX.js → bundle-BO1-msX2.js} +1 -1
- package/cjs/chunks/bundle-BO1-msX2.js.map +1 -0
- package/cjs/chunks/{bundle-7Mbs7JEn.js → bundle-BSLZ5pEu.js} +3 -3
- package/cjs/chunks/bundle-BSLZ5pEu.js.map +1 -0
- package/cjs/chunks/{bundle-CjWn0S2s.js → bundle-BXEAjuTY.js} +1 -1
- package/cjs/chunks/bundle-BXEAjuTY.js.map +1 -0
- package/cjs/chunks/{bundle-C4s5Xn-0.js → bundle-BXQqL0gU.js} +1 -1
- package/cjs/chunks/bundle-BXQqL0gU.js.map +1 -0
- package/cjs/chunks/{bundle-3-9K7DVM.js → bundle-B_BPxhrG.js} +6 -6
- package/cjs/chunks/bundle-B_BPxhrG.js.map +1 -0
- package/cjs/chunks/{bundle-BQtI4UIy.js → bundle-Bc6y_vRE.js} +1 -1
- package/cjs/chunks/bundle-Bc6y_vRE.js.map +1 -0
- package/cjs/chunks/{bundle-CEMPv2S1.js → bundle-BiEQOJHh.js} +1 -1
- package/cjs/chunks/bundle-BiEQOJHh.js.map +1 -0
- package/cjs/chunks/{bundle-FLujzEX2.js → bundle-BnTCpa1X.js} +12 -11
- package/cjs/chunks/bundle-BnTCpa1X.js.map +1 -0
- package/cjs/chunks/{bundle-DIvM3-on.js → bundle-Bpm6PJIl.js} +7 -7
- package/cjs/chunks/bundle-Bpm6PJIl.js.map +1 -0
- package/cjs/chunks/{bundle-UDIPXpOV.js → bundle-BpwSTA3F.js} +1 -1
- package/cjs/chunks/bundle-BpwSTA3F.js.map +1 -0
- package/cjs/chunks/{bundle-BcZEQhhq.js → bundle-BzBRoraS.js} +1 -1
- package/cjs/chunks/bundle-BzBRoraS.js.map +1 -0
- package/cjs/chunks/{bundle-Ud8W92re.js → bundle-C1j0QNr3.js} +5 -5
- package/cjs/chunks/bundle-C1j0QNr3.js.map +1 -0
- package/cjs/chunks/{bundle-Drfn-tNj.js → bundle-C36gEKFp.js} +2 -2
- package/cjs/chunks/bundle-C36gEKFp.js.map +1 -0
- package/cjs/chunks/{bundle-CaUIrp6R.js → bundle-CAyt7i0X.js} +1 -1
- package/cjs/chunks/bundle-CAyt7i0X.js.map +1 -0
- package/cjs/chunks/{bundle-Cn_c8gj0.js → bundle-CEcY1I0M.js} +8 -8
- package/cjs/chunks/{bundle-Cn_c8gj0.js.map → bundle-CEcY1I0M.js.map} +1 -1
- package/cjs/chunks/{bundle-CyopFRXm.js → bundle-CEiDcA9X.js} +1 -1
- package/cjs/chunks/{bundle-CyopFRXm.js.map → bundle-CEiDcA9X.js.map} +1 -1
- package/cjs/chunks/{bundle-qJ5-0bqN.js → bundle-CKC-b4Bw.js} +3 -3
- package/cjs/chunks/bundle-CKC-b4Bw.js.map +1 -0
- package/cjs/chunks/{bundle-WZOflhxA.js → bundle-CN0vR-TH.js} +2 -2
- package/cjs/chunks/{bundle-WZOflhxA.js.map → bundle-CN0vR-TH.js.map} +1 -1
- package/cjs/chunks/{bundle-CkG1F8lG.js → bundle-CQiNKK2y.js} +2 -2
- package/cjs/chunks/bundle-CQiNKK2y.js.map +1 -0
- package/cjs/chunks/{bundle-Dj0eVVGW.js → bundle-CXDp72cg.js} +10 -10
- package/cjs/chunks/bundle-CXDp72cg.js.map +1 -0
- package/cjs/chunks/{bundle-BYp2_-p_.js → bundle-CXaKbxhR.js} +40 -9
- package/cjs/chunks/bundle-CXaKbxhR.js.map +1 -0
- package/cjs/chunks/{bundle-CJ87J3R1.js → bundle-CbATYgnP.js} +3 -3
- package/cjs/chunks/bundle-CbATYgnP.js.map +1 -0
- package/cjs/chunks/{bundle-RH9DajrH.js → bundle-CfEubbCT.js} +2 -2
- package/cjs/chunks/bundle-CfEubbCT.js.map +1 -0
- package/cjs/chunks/{bundle-CfYRwgks.js → bundle-CfRX00vQ.js} +1 -1
- package/cjs/chunks/bundle-CfRX00vQ.js.map +1 -0
- package/cjs/chunks/{bundle-BTsTFHLV.js → bundle-ChQ3Q-GS.js} +7 -7
- package/cjs/chunks/bundle-ChQ3Q-GS.js.map +1 -0
- package/cjs/chunks/{bundle-UJc1wb2l.js → bundle-CncTMWLv.js} +10 -10
- package/cjs/chunks/{bundle-UJc1wb2l.js.map → bundle-CncTMWLv.js.map} +1 -1
- package/cjs/chunks/{bundle-B2QAlKH1.js → bundle-CoTIkHcU.js} +4 -4
- package/cjs/chunks/bundle-CoTIkHcU.js.map +1 -0
- package/cjs/chunks/{bundle-Bln5Elhn.js → bundle-CqTg15Dn.js} +1 -1
- package/cjs/chunks/bundle-CqTg15Dn.js.map +1 -0
- package/cjs/chunks/{bundle-D_4vATFJ.js → bundle-D1mv8BUm.js} +1 -1
- package/cjs/chunks/bundle-D1mv8BUm.js.map +1 -0
- package/cjs/chunks/{bundle-CwGDa8mu.js → bundle-DIfKPcm_.js} +1 -1
- package/cjs/chunks/bundle-DIfKPcm_.js.map +1 -0
- package/cjs/chunks/{bundle-D9rC4yPj.js → bundle-DKspFBdx.js} +1 -1
- package/cjs/chunks/bundle-DKspFBdx.js.map +1 -0
- package/cjs/chunks/{bundle-D-izgOCe.js → bundle-DOmB6XkC.js} +54 -52
- package/cjs/chunks/bundle-DOmB6XkC.js.map +1 -0
- package/cjs/chunks/{bundle--Ti8q5z8.js → bundle-DRT94QO5.js} +4 -4
- package/cjs/chunks/bundle-DRT94QO5.js.map +1 -0
- package/cjs/chunks/{bundle-BfzgaLQx.js → bundle-D_RomXCz.js} +1 -1
- package/cjs/chunks/bundle-D_RomXCz.js.map +1 -0
- package/cjs/chunks/{bundle-B-wprLUV.js → bundle-D_qbYkHk.js} +1 -1
- package/cjs/chunks/{bundle-B-wprLUV.js.map → bundle-D_qbYkHk.js.map} +1 -1
- package/cjs/chunks/{bundle-DgX9o5Mt.js → bundle-DcVYwXP-.js} +1 -1
- package/cjs/chunks/bundle-DcVYwXP-.js.map +1 -0
- package/cjs/chunks/{bundle-KR9lSala.js → bundle-DdS-jEnE.js} +3 -3
- package/cjs/chunks/bundle-DdS-jEnE.js.map +1 -0
- package/cjs/chunks/{bundle-XCOUGtdD.js → bundle-DeOn9o6F.js} +3 -3
- package/cjs/chunks/bundle-DeOn9o6F.js.map +1 -0
- package/cjs/chunks/{bundle-C11HvpZq.js → bundle-DiER49ZF.js} +1 -1
- package/cjs/chunks/bundle-DiER49ZF.js.map +1 -0
- package/cjs/chunks/{bundle-VqK6Sgiy.js → bundle-DkGYX29W.js} +3 -3
- package/cjs/chunks/bundle-DkGYX29W.js.map +1 -0
- package/cjs/chunks/{bundle-C2yYR5hZ.js → bundle-Dm7xuKwW.js} +10 -10
- package/cjs/chunks/{bundle-C2yYR5hZ.js.map → bundle-Dm7xuKwW.js.map} +1 -1
- package/cjs/chunks/{bundle-BcQPY3B6.js → bundle-DmPl_3ye.js} +2 -2
- package/cjs/chunks/bundle-DmPl_3ye.js.map +1 -0
- package/cjs/chunks/{bundle-DnF-KuhG.js → bundle-DsDhHgmF.js} +2 -2
- package/cjs/chunks/bundle-DsDhHgmF.js.map +1 -0
- package/cjs/chunks/{bundle-DLg-6Upp.js → bundle-DskQULoR.js} +2 -2
- package/cjs/chunks/{bundle-DLg-6Upp.js.map → bundle-DskQULoR.js.map} +1 -1
- package/cjs/chunks/{bundle-gSaGPkzz.js → bundle-DtroGUKx.js} +3 -3
- package/cjs/chunks/{bundle-gSaGPkzz.js.map → bundle-DtroGUKx.js.map} +1 -1
- package/cjs/chunks/{bundle-DG1IpvjA.js → bundle-DuHJq3hs.js} +16 -16
- package/cjs/chunks/bundle-DuHJq3hs.js.map +1 -0
- package/cjs/chunks/{bundle-BEQWEQgH.js → bundle-DvduWWQk.js} +3 -3
- package/cjs/chunks/bundle-DvduWWQk.js.map +1 -0
- package/cjs/chunks/{bundle-Dj2Oa2F6.js → bundle-HOuE7syZ.js} +1 -1
- package/cjs/chunks/{bundle-Dj2Oa2F6.js.map → bundle-HOuE7syZ.js.map} +1 -1
- package/cjs/chunks/{bundle-CxuGQxaT.js → bundle-HXyGAP9T.js} +1 -1
- package/cjs/chunks/bundle-HXyGAP9T.js.map +1 -0
- package/cjs/chunks/{bundle-DA7uhOAM.js → bundle-IVxSH9N4.js} +1 -1
- package/cjs/chunks/bundle-IVxSH9N4.js.map +1 -0
- package/cjs/chunks/{bundle-BruXgSj3.js → bundle-P5AI1HkP.js} +1 -1
- package/cjs/chunks/bundle-P5AI1HkP.js.map +1 -0
- package/cjs/chunks/{bundle-Dp2kRPpd.js → bundle-QSgOdsGM.js} +1 -1
- package/cjs/chunks/bundle-QSgOdsGM.js.map +1 -0
- package/cjs/chunks/{bundle-B_CGu6U0.js → bundle-QsOyTCMH.js} +5 -5
- package/cjs/chunks/{bundle-B_CGu6U0.js.map → bundle-QsOyTCMH.js.map} +1 -1
- package/cjs/chunks/{bundle-BO2p70mH.js → bundle-S09sS9Ub.js} +1 -1
- package/cjs/chunks/bundle-S09sS9Ub.js.map +1 -0
- package/cjs/chunks/{bundle-DLgX_uIA.js → bundle-Tx6vw4BY.js} +3 -3
- package/cjs/chunks/{bundle-DLgX_uIA.js.map → bundle-Tx6vw4BY.js.map} +1 -1
- package/cjs/chunks/{bundle-DqysFYzQ.js → bundle-VIGS3UfE.js} +2 -2
- package/cjs/chunks/bundle-VIGS3UfE.js.map +1 -0
- package/cjs/chunks/{bundle-CHVN5sv2.js → bundle-Vn-fJ6dU.js} +4 -4
- package/cjs/chunks/{bundle-CHVN5sv2.js.map → bundle-Vn-fJ6dU.js.map} +1 -1
- package/cjs/chunks/{bundle-xaau8Z4q.js → bundle-YUHup5bR.js} +1 -1
- package/cjs/chunks/bundle-YUHup5bR.js.map +1 -0
- package/cjs/chunks/{bundle-CHI5iCph.js → bundle-_D9xt-bK.js} +1 -1
- package/cjs/chunks/bundle-_D9xt-bK.js.map +1 -0
- package/cjs/chunks/{bundle-JKeFsVQp.js → bundle-d3t3a2vc.js} +1 -1
- package/cjs/chunks/bundle-d3t3a2vc.js.map +1 -0
- package/cjs/chunks/{bundle-BodKdXyG.js → bundle-knUfDzC9.js} +14 -14
- package/cjs/chunks/{bundle-BodKdXyG.js.map → bundle-knUfDzC9.js.map} +1 -1
- package/cjs/chunks/{bundle-DwpBeRp2.js → bundle-kzleXCM7.js} +6 -6
- package/cjs/chunks/bundle-kzleXCM7.js.map +1 -0
- package/cjs/chunks/{bundle-CEN95Xmn.js → bundle-p3gZAjMS.js} +1 -1
- package/cjs/chunks/bundle-p3gZAjMS.js.map +1 -0
- package/cjs/chunks/{bundle-BxER_OfA.js → bundle-pVDX6G_q.js} +3 -3
- package/cjs/chunks/bundle-pVDX6G_q.js.map +1 -0
- package/cjs/chunks/{bundle-CGBPEEGS.js → bundle-prE7SKQr.js} +1 -1
- package/cjs/chunks/{bundle-CGBPEEGS.js.map → bundle-prE7SKQr.js.map} +1 -1
- package/cjs/chunks/{bundle-Dwy0Hf3u.js → bundle-r8oxykjl.js} +10 -10
- package/cjs/chunks/bundle-r8oxykjl.js.map +1 -0
- package/cjs/chunks/{bundle-DQM5RZ7p.js → bundle-tbYf0yOX.js} +1 -1
- package/cjs/chunks/bundle-tbYf0yOX.js.map +1 -0
- package/cjs/chunks/{bundle-CTjNx2bJ.js → bundle-urLzDFXK.js} +1 -1
- package/cjs/chunks/bundle-urLzDFXK.js.map +1 -0
- package/cjs/chunks/{bundle-udIHWjxi.js → bundle-vxdq428L.js} +1 -1
- package/cjs/chunks/bundle-vxdq428L.js.map +1 -0
- package/cjs/hooks/useModal.js +9 -9
- package/cjs/index.js +82 -82
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +3 -3
- package/cjs/ui/AccordionGroup.js +2 -2
- 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 +9 -9
- package/cjs/ui/Button.js +3 -3
- 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 +4 -4
- package/cjs/ui/EmojiReactions.js +16 -16
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +50 -12
- package/cjs/ui/FileMessageItemBody.js.map +1 -1
- package/cjs/ui/FileViewer.js +15 -15
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +2 -2
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +3 -3
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +13 -13
- package/cjs/ui/MentionUserLabel.js +1 -1
- package/cjs/ui/MessageContent.js +69 -39
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +15 -15
- package/cjs/ui/MessageItemMenu.js +63 -26
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +9 -9
- package/cjs/ui/MessageSearchFileItem.js +14 -14
- package/cjs/ui/MessageSearchItem.js +11 -11
- package/cjs/ui/MessageStatus.js +12 -12
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +9 -9
- package/cjs/ui/Modal.js +8 -8
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +18 -17
- 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 +20 -20
- package/cjs/ui/OpenchannelThumbnailMessage.js +17 -17
- package/cjs/ui/OpenchannelUserMessage.js +18 -18
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/QuoteMessage.js +9 -9
- package/cjs/ui/QuoteMessageInput.js +9 -9
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +43 -17
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +16 -16
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +16 -15
- package/cjs/ui/UserListItem.js.map +1 -1
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +10 -10
- package/cjs/ui/Word.js +13 -13
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -3
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +93 -91
- package/dist/index.css.map +1 -1
- package/hooks/useModal.js +10 -10
- package/index.js +82 -82
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/modules/GroupChannel/components/FileViewer/FileViewerView.d.ts +5 -3
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +6 -0
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +6 -1
- package/types/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +3 -1
- package/types/modules/Thread/context/ThreadProvider.d.ts +2 -0
- package/types/ui/FileMessageItemBody/index.d.ts +3 -1
- package/types/ui/FileViewer/index.d.ts +2 -1
- package/types/ui/FileViewer/types.d.ts +4 -2
- package/types/ui/MessageContent/MessageBody/index.d.ts +2 -0
- package/types/ui/MessageContent/index.d.ts +2 -0
- package/types/ui/MessageItemMenu/index.d.ts +10 -2
- package/types/ui/MessageTemplate/messageTemplateErrorBoundary.d.ts +19 -0
- package/types/ui/MobileMenu/types.d.ts +2 -1
- package/types/ui/MultipleFilesMessageItemBody/index.d.ts +3 -1
- package/types/ui/UserListItem/index.d.ts +2 -1
- package/ui/Accordion.js +3 -3
- package/ui/AccordionGroup.js +2 -2
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +9 -9
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +6 -6
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +16 -16
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +50 -12
- package/ui/FileMessageItemBody.js.map +1 -1
- package/ui/FileViewer.js +15 -15
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +2 -2
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +3 -3
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +13 -13
- package/ui/MentionUserLabel.js +1 -1
- package/ui/MessageContent.js +69 -39
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +15 -15
- package/ui/MessageItemMenu.js +63 -26
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +9 -9
- package/ui/MessageSearchFileItem.js +14 -14
- package/ui/MessageSearchItem.js +11 -11
- package/ui/MessageStatus.js +12 -12
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +9 -9
- package/ui/Modal.js +8 -8
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +18 -17
- 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 +20 -20
- package/ui/OpenchannelThumbnailMessage.js +17 -17
- package/ui/OpenchannelUserMessage.js +18 -18
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/QuoteMessage.js +9 -9
- package/ui/QuoteMessageInput.js +9 -9
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +44 -18
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +16 -16
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +7 -7
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +16 -15
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +10 -10
- package/ui/Word.js +13 -13
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/withSendbird.js +1 -1
- package/chunks/bundle-2UMLs1R6.js.map +0 -1
- package/chunks/bundle-2g0N2xdw.js.map +0 -1
- package/chunks/bundle-5DiiOFi-.js.map +0 -1
- package/chunks/bundle-5E39Cv3A.js.map +0 -1
- package/chunks/bundle-B1v1xIP1.js.map +0 -1
- package/chunks/bundle-B9Jpp9ee.js.map +0 -1
- package/chunks/bundle-BEzsjrvw.js.map +0 -1
- package/chunks/bundle-BKPDTl9U.js.map +0 -1
- package/chunks/bundle-BUHwsL2D.js.map +0 -1
- package/chunks/bundle-BV8WCwVA.js.map +0 -1
- package/chunks/bundle-BYdjor8f.js.map +0 -1
- package/chunks/bundle-BZK5eiX2.js.map +0 -1
- package/chunks/bundle-B_ah2kxT.js.map +0 -1
- package/chunks/bundle-Bb7wwF7C.js.map +0 -1
- package/chunks/bundle-Bceke7Nk.js.map +0 -1
- package/chunks/bundle-BdCGrzcY.js.map +0 -1
- package/chunks/bundle-Be2HIA26.js.map +0 -1
- package/chunks/bundle-BgunHZ2y.js.map +0 -1
- package/chunks/bundle-BkTOcqVY.js.map +0 -1
- package/chunks/bundle-BlSpe5qA.js.map +0 -1
- package/chunks/bundle-BpyUTLY3.js.map +0 -1
- package/chunks/bundle-BqWBruLa.js.map +0 -1
- package/chunks/bundle-BxmlG4s-.js.map +0 -1
- package/chunks/bundle-C-35JoOu.js.map +0 -1
- package/chunks/bundle-C6387K33.js.map +0 -1
- package/chunks/bundle-C6MmX70M.js.map +0 -1
- package/chunks/bundle-C6ZHgzD6.js.map +0 -1
- package/chunks/bundle-C7SA85dp.js.map +0 -1
- package/chunks/bundle-CHxXgtL2.js.map +0 -1
- package/chunks/bundle-CI0ovNa-.js.map +0 -1
- package/chunks/bundle-CIHv_OFc.js.map +0 -1
- package/chunks/bundle-CNInpRIS.js.map +0 -1
- package/chunks/bundle-CU8x_Vlw.js.map +0 -1
- package/chunks/bundle-CXMfzdI7.js.map +0 -1
- package/chunks/bundle-Cb6tbPro.js.map +0 -1
- package/chunks/bundle-Cgtk2LV4.js.map +0 -1
- package/chunks/bundle-Cm3yLDom.js.map +0 -1
- package/chunks/bundle-D57EENOn.js.map +0 -1
- package/chunks/bundle-D9xWky57.js.map +0 -1
- package/chunks/bundle-DIhQqYC5.js.map +0 -1
- package/chunks/bundle-DIy5BllY.js.map +0 -1
- package/chunks/bundle-DPRlCjJt.js.map +0 -1
- package/chunks/bundle-DdwjYXOX.js.map +0 -1
- package/chunks/bundle-DtcJzbuk.js.map +0 -1
- package/chunks/bundle-DwRQcRou.js.map +0 -1
- package/chunks/bundle-Hl5CUM1x.js.map +0 -1
- package/chunks/bundle-OTdL9cWR.js.map +0 -1
- package/chunks/bundle-RJu3P_iQ.js.map +0 -1
- package/chunks/bundle-_B5yFEP0.js.map +0 -1
- package/chunks/bundle-cWhfb441.js.map +0 -1
- package/chunks/bundle-hAKR7PVp.js.map +0 -1
- package/chunks/bundle-kO-Z-dxL.js.map +0 -1
- package/chunks/bundle-mkC088ne.js.map +0 -1
- package/chunks/bundle-sQj5xACh.js.map +0 -1
- package/chunks/bundle-ugWtu0YZ.js.map +0 -1
- package/cjs/chunks/bundle--Ti8q5z8.js.map +0 -1
- package/cjs/chunks/bundle-3-9K7DVM.js.map +0 -1
- package/cjs/chunks/bundle-7Mbs7JEn.js.map +0 -1
- package/cjs/chunks/bundle-BC16qA15.js.map +0 -1
- package/cjs/chunks/bundle-BEQWEQgH.js.map +0 -1
- package/cjs/chunks/bundle-BO2p70mH.js.map +0 -1
- package/cjs/chunks/bundle-BQtI4UIy.js.map +0 -1
- package/cjs/chunks/bundle-BTsTFHLV.js.map +0 -1
- package/cjs/chunks/bundle-BYp2_-p_.js.map +0 -1
- package/cjs/chunks/bundle-BbpNwwR8.js.map +0 -1
- package/cjs/chunks/bundle-BcQPY3B6.js.map +0 -1
- package/cjs/chunks/bundle-BcZEQhhq.js.map +0 -1
- package/cjs/chunks/bundle-BfzgaLQx.js.map +0 -1
- package/cjs/chunks/bundle-BgCtP7V4.js.map +0 -1
- package/cjs/chunks/bundle-BkYT_Hch.js.map +0 -1
- package/cjs/chunks/bundle-Bln5Elhn.js.map +0 -1
- package/cjs/chunks/bundle-BruXgSj3.js.map +0 -1
- package/cjs/chunks/bundle-BxER_OfA.js.map +0 -1
- package/cjs/chunks/bundle-C11HvpZq.js.map +0 -1
- package/cjs/chunks/bundle-C4s5Xn-0.js.map +0 -1
- package/cjs/chunks/bundle-CD82WkIi.js.map +0 -1
- package/cjs/chunks/bundle-CEMPv2S1.js.map +0 -1
- package/cjs/chunks/bundle-CEN95Xmn.js.map +0 -1
- package/cjs/chunks/bundle-CHI5iCph.js.map +0 -1
- package/cjs/chunks/bundle-CJ87J3R1.js.map +0 -1
- package/cjs/chunks/bundle-CTjNx2bJ.js.map +0 -1
- package/cjs/chunks/bundle-CWXfgOJy.js.map +0 -1
- package/cjs/chunks/bundle-CaUIrp6R.js.map +0 -1
- package/cjs/chunks/bundle-CfYRwgks.js.map +0 -1
- package/cjs/chunks/bundle-CjWn0S2s.js.map +0 -1
- package/cjs/chunks/bundle-CkG1F8lG.js.map +0 -1
- package/cjs/chunks/bundle-CwGDa8mu.js.map +0 -1
- package/cjs/chunks/bundle-CxuGQxaT.js.map +0 -1
- package/cjs/chunks/bundle-D-izgOCe.js.map +0 -1
- package/cjs/chunks/bundle-D1EDPlQX.js.map +0 -1
- package/cjs/chunks/bundle-D8ubAia5.js.map +0 -1
- package/cjs/chunks/bundle-D9rC4yPj.js.map +0 -1
- package/cjs/chunks/bundle-DA7uhOAM.js.map +0 -1
- package/cjs/chunks/bundle-DF3rT3ak.js.map +0 -1
- package/cjs/chunks/bundle-DG1IpvjA.js.map +0 -1
- package/cjs/chunks/bundle-DIvM3-on.js.map +0 -1
- package/cjs/chunks/bundle-DQM5RZ7p.js.map +0 -1
- package/cjs/chunks/bundle-DTcE7Dci.js.map +0 -1
- package/cjs/chunks/bundle-DWp3JSCd.js.map +0 -1
- package/cjs/chunks/bundle-D_4vATFJ.js.map +0 -1
- package/cjs/chunks/bundle-DgX9o5Mt.js.map +0 -1
- package/cjs/chunks/bundle-Dj0eVVGW.js.map +0 -1
- package/cjs/chunks/bundle-DnF-KuhG.js.map +0 -1
- package/cjs/chunks/bundle-Dp2kRPpd.js.map +0 -1
- package/cjs/chunks/bundle-DqysFYzQ.js.map +0 -1
- package/cjs/chunks/bundle-Drfn-tNj.js.map +0 -1
- package/cjs/chunks/bundle-DwpBeRp2.js.map +0 -1
- package/cjs/chunks/bundle-Dwy0Hf3u.js.map +0 -1
- package/cjs/chunks/bundle-FLujzEX2.js.map +0 -1
- package/cjs/chunks/bundle-JKeFsVQp.js.map +0 -1
- package/cjs/chunks/bundle-KR9lSala.js.map +0 -1
- package/cjs/chunks/bundle-RH9DajrH.js.map +0 -1
- package/cjs/chunks/bundle-UDIPXpOV.js.map +0 -1
- package/cjs/chunks/bundle-Ud8W92re.js.map +0 -1
- package/cjs/chunks/bundle-VqK6Sgiy.js.map +0 -1
- package/cjs/chunks/bundle-XCOUGtdD.js.map +0 -1
- package/cjs/chunks/bundle-nu9oFcYy.js.map +0 -1
- package/cjs/chunks/bundle-qJ5-0bqN.js.map +0 -1
- package/cjs/chunks/bundle-udIHWjxi.js.map +0 -1
- package/cjs/chunks/bundle-xaau8Z4q.js.map +0 -1
|
@@ -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-
|
|
42
|
+
//# sourceMappingURL=bundle-DEqxoG9B.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DEqxoG9B.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DHp0VTVS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as __assign, c as __spreadArray } from './bundle-
|
|
1
|
+
import { _ as __assign, c as __spreadArray } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import { GroupChannelListOrder } from '@sendbird/chat/groupChannel';
|
|
3
3
|
import { OutgoingMessageStates, getOutgoingMessageState } from '../utils/message/getOutgoingMessageState.js';
|
|
4
|
-
import { K } from './bundle-
|
|
4
|
+
import { K } from './bundle-4a9M9y8N.js';
|
|
5
5
|
|
|
6
6
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
|
|
7
7
|
var SUPPORTED_MIMES = {
|
|
@@ -673,4 +673,4 @@ var isSendableMessage = function (message) {
|
|
|
673
673
|
};
|
|
674
674
|
|
|
675
675
|
export { isGif as A, convertWordToStringObj as B, isTemplateMessage as C, isAudio as D, isVoiceMessageMimeType as E, isSentStatus as F, arrayEqual as G, getMimeTypesUIKitAccepts as H, isImageMessage as I, isImageFileInfo as J, isAudioMessage as K, isOGMessage as L, isTextMessage as M, isThreadMessage as N, getEmojiUrl as O, isReactedBy as P, getEmojiTooltipString as Q, getEmojiMapAll as R, StringObjType as S, filterChannelListParams as T, UIKitMessageTypes as U, getChannelsWithUpsertedChannel as V, filterMessageListParams as W, isTextuallyNull as X, isReadMessage as a, isFileMessage as b, isMultipleFilesMessage as c, isEditedMessage as d, isSendableMessage as e, getSenderName as f, getSuggestedReplies as g, isSupportedFileView as h, isVoiceMessage as i, isVideo as j, isImage as k, isUserMessage as l, getUIKitMessageType as m, getUIKitMessageTypes as n, getUIKitFileType as o, isThumbnailMessage as p, isSentMessage as q, isVideoMessage as r, isGifMessage as s, truncateString as t, isFailedMessage as u, isPendingMessage as v, getClassName as w, copyToClipboard as x, getEmojiListAll as y, getUIKitFileTypes as z };
|
|
676
|
-
//# sourceMappingURL=bundle-
|
|
676
|
+
//# sourceMappingURL=bundle-DI3fL4Xw.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DI3fL4Xw.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
3
3
|
import { TypingIndicator } from '../GroupChannel/components/TypingIndicator.js';
|
|
4
|
-
import { T as TypingIndicatorType } from './bundle-
|
|
4
|
+
import { T as TypingIndicatorType } from './bundle-DlHudqve.js';
|
|
5
5
|
import ConnectionStatus from '../ui/ConnectionStatus.js';
|
|
6
6
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
7
7
|
|
|
@@ -40,4 +40,4 @@ var GroupChannelUIView = function (props) {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
export { GroupChannelUIView as G };
|
|
43
|
-
//# sourceMappingURL=bundle-
|
|
43
|
+
//# sourceMappingURL=bundle-DIEAFe_F.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DIEAFe_F.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
2
|
import DOMPurify from 'dompurify';
|
|
3
|
-
import { a as NodeNames, N as NodeTypes } from './bundle-
|
|
4
|
-
import { U as USER_MENTION_TEMP_CHAR } from './bundle-
|
|
5
|
-
import { c as __spreadArray } from './bundle-
|
|
6
|
-
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-
|
|
7
|
-
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-
|
|
8
|
-
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-
|
|
3
|
+
import { a as NodeNames, N as NodeTypes } from './bundle-ts_i6oEg.js';
|
|
4
|
+
import { U as USER_MENTION_TEMP_CHAR } from './bundle-CZYvKysu.js';
|
|
5
|
+
import { c as __spreadArray } from './bundle-CVDtzU3E.js';
|
|
6
|
+
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-B8HW06Fl.js';
|
|
7
|
+
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-CJ9_QDKY.js';
|
|
8
|
+
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-WrvoTlHQ.js';
|
|
9
9
|
|
|
10
10
|
function renderToString(_a) {
|
|
11
11
|
var userId = _a.userId, nickname = _a.nickname;
|
|
@@ -242,4 +242,4 @@ function usePaste(_a) {
|
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
export { extractTextAndMentions as e, isChannelTypeSupportsMultipleFilesMessage as i, nodeListToArray as n, renderToString as r, sanitizeString as s, usePaste as u };
|
|
245
|
-
//# sourceMappingURL=bundle-
|
|
245
|
+
//# sourceMappingURL=bundle-DNq8IoOw.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DNq8IoOw.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-DaQK1Cox.js';
|
|
4
4
|
|
|
5
5
|
var Typography = {
|
|
6
6
|
H_1: 'H_1',
|
|
@@ -81,4 +81,4 @@ var LabelColors = Colors;
|
|
|
81
81
|
var LabelStringSet = getStringSet('en');
|
|
82
82
|
|
|
83
83
|
export { Label as L, LabelTypography as a, LabelColors as b, LabelStringSet as c, changeColorToClassName as d };
|
|
84
|
-
//# sourceMappingURL=bundle-
|
|
84
|
+
//# sourceMappingURL=bundle-DPhbbRZE.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DPhbbRZE.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
3
|
+
import { S as SuggestedMentionListView } from './bundle-CS4RK0T7.js';
|
|
4
4
|
import { useThreadContext } from '../Thread/context.js';
|
|
5
5
|
|
|
6
6
|
var SuggestedMentionList = function (props) {
|
|
@@ -9,4 +9,4 @@ var SuggestedMentionList = function (props) {
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { SuggestedMentionList as S };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-DQnpJfyk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DQnpJfyk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React__default, { useState } from 'react';
|
|
2
2
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
3
|
-
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage, N as isThreadMessage, x as copyToClipboard, y as getEmojiListAll } from './bundle-
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
+
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage, N as isThreadMessage, x as copyToClipboard, y as getEmojiListAll } from './bundle-DI3fL4Xw.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-BX0LQWqY.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DPhbbRZE.js';
|
|
7
7
|
import BottomSheet from '../ui/BottomSheet.js';
|
|
8
8
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
9
9
|
import ReactionButton from '../ui/ReactionButton.js';
|
|
@@ -11,7 +11,7 @@ import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
|
11
11
|
|
|
12
12
|
var MobileContextMenu = function (props) {
|
|
13
13
|
var _a, _b, _c;
|
|
14
|
-
var hideMenu = props.hideMenu, channel = props.channel, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d;
|
|
14
|
+
var hideMenu = props.hideMenu, channel = props.channel, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d, _e = props.onDownloadClick, onDownloadClick = _e === void 0 ? null : _e;
|
|
15
15
|
var isByMe = ((_a = message === null || message === void 0 ? void 0 : message.sender) === null || _a === void 0 ? void 0 : _a.userId) === userId;
|
|
16
16
|
var stringSet = useLocalization().stringSet;
|
|
17
17
|
var showMenuItemCopy = isUserMessage(message);
|
|
@@ -90,7 +90,7 @@ var MobileContextMenu = function (props) {
|
|
|
90
90
|
showMenuItemDownload && (React__default.createElement(MenuItem, { className: "sendbird-message__mobile-context-menu-item menu-item-save", onClick: function () {
|
|
91
91
|
hideMenu();
|
|
92
92
|
}, dataSbId: "ui_mobile_message_item_menu_download_file" },
|
|
93
|
-
React__default.createElement("a", { className: "sendbird-message__contextmenu--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank" },
|
|
93
|
+
React__default.createElement("a", { className: "sendbird-message__contextmenu--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank", onClick: onDownloadClick },
|
|
94
94
|
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_1, color: LabelColors.ONBACKGROUND_1 }, stringSet.MESSAGE_MENU__SAVE),
|
|
95
95
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.PRIMARY, width: "24px", height: "24px" }))))));
|
|
96
96
|
} }));
|
|
@@ -99,7 +99,7 @@ var MobileContextMenu = function (props) {
|
|
|
99
99
|
var EMOJI_SIZE = 38;
|
|
100
100
|
var MobileBottomSheet = function (props) {
|
|
101
101
|
var _a, _b, _c;
|
|
102
|
-
var hideMenu = props.hideMenu, channel = props.channel, emojiContainer = props.emojiContainer, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, toggleReaction = props.toggleReaction, isReactionEnabled = props.isReactionEnabled, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, setQuoteMessage = props.setQuoteMessage, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d;
|
|
102
|
+
var hideMenu = props.hideMenu, channel = props.channel, emojiContainer = props.emojiContainer, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, toggleReaction = props.toggleReaction, isReactionEnabled = props.isReactionEnabled, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, setQuoteMessage = props.setQuoteMessage, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d, onDownloadClick = props.onDownloadClick;
|
|
103
103
|
var isByMe = ((_a = message === null || message === void 0 ? void 0 : message.sender) === null || _a === void 0 ? void 0 : _a.userId) === userId;
|
|
104
104
|
var stringSet = useLocalization().stringSet;
|
|
105
105
|
var globalStore = useSendbirdStateContext();
|
|
@@ -213,16 +213,16 @@ var MobileBottomSheet = function (props) {
|
|
|
213
213
|
showMenuItemDownload && (React__default.createElement("div", { className: 'sendbird-message__bottomsheet--action', onClick: function () {
|
|
214
214
|
hideMenu();
|
|
215
215
|
} },
|
|
216
|
-
React__default.createElement("a", { className: "sendbird-message__bottomsheet--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank" },
|
|
216
|
+
React__default.createElement("a", { className: "sendbird-message__bottomsheet--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank", onClick: onDownloadClick },
|
|
217
217
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.PRIMARY, width: "24px", height: "24px" }),
|
|
218
218
|
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_1, color: LabelColors.ONBACKGROUND_1 }, stringSet === null || stringSet === void 0 ? void 0 : stringSet.MESSAGE_MENU__SAVE)))))))));
|
|
219
219
|
};
|
|
220
220
|
|
|
221
221
|
var MobileMenu = function (props) {
|
|
222
|
-
var message = props.message, hideMenu = props.hideMenu, userId = props.userId, channel = props.channel, _a = props.isReactionEnabled, isReactionEnabled = _a === void 0 ? false : _a, isByMe = props.isByMe, replyType = props.replyType, disabled = props.disabled, deleteMenuState = props.deleteMenuState, showRemove = props.showRemove, showEdit = props.showEdit, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, emojiContainer = props.emojiContainer, toggleReaction = props.toggleReaction, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, isOpenedFromThread = props.isOpenedFromThread;
|
|
222
|
+
var message = props.message, hideMenu = props.hideMenu, userId = props.userId, channel = props.channel, _a = props.isReactionEnabled, isReactionEnabled = _a === void 0 ? false : _a, isByMe = props.isByMe, replyType = props.replyType, disabled = props.disabled, deleteMenuState = props.deleteMenuState, showRemove = props.showRemove, showEdit = props.showEdit, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, emojiContainer = props.emojiContainer, toggleReaction = props.toggleReaction, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, isOpenedFromThread = props.isOpenedFromThread, onDownloadClick = props.onDownloadClick;
|
|
223
223
|
return (React__default.createElement(React__default.Fragment, null, isReactionEnabled
|
|
224
|
-
? (React__default.createElement(MobileBottomSheet, { channel: channel, message: message, hideMenu: hideMenu, isByMe: isByMe, userId: userId, replyType: replyType, disabled: disabled, showRemove: showRemove, showEdit: showEdit, deleteMenuState: deleteMenuState, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, emojiContainer: emojiContainer, toggleReaction: toggleReaction, isReactionEnabled: isReactionEnabled, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread })) : (React__default.createElement(MobileContextMenu, { channel: channel, userId: userId, message: message, hideMenu: hideMenu, isByMe: isByMe, showEdit: showEdit, replyType: replyType, disabled: disabled, deleteMenuState: deleteMenuState, showRemove: showRemove, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, parentRef: parentRef, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread }))));
|
|
224
|
+
? (React__default.createElement(MobileBottomSheet, { channel: channel, message: message, hideMenu: hideMenu, isByMe: isByMe, userId: userId, replyType: replyType, disabled: disabled, showRemove: showRemove, showEdit: showEdit, deleteMenuState: deleteMenuState, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, emojiContainer: emojiContainer, toggleReaction: toggleReaction, isReactionEnabled: isReactionEnabled, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread, onDownloadClick: onDownloadClick })) : (React__default.createElement(MobileContextMenu, { channel: channel, userId: userId, message: message, hideMenu: hideMenu, isByMe: isByMe, showEdit: showEdit, replyType: replyType, disabled: disabled, deleteMenuState: deleteMenuState, showRemove: showRemove, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, parentRef: parentRef, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread, onDownloadClick: onDownloadClick }))));
|
|
225
225
|
};
|
|
226
226
|
|
|
227
227
|
export { MobileMenu as M };
|
|
228
|
-
//# sourceMappingURL=bundle-
|
|
228
|
+
//# sourceMappingURL=bundle-DTywBX7q.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DTywBX7q.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DYJilNov.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DaQK1Cox.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import { n as noop } from './bundle-
|
|
2
|
+
import { n as noop } from './bundle-CT3xDvIx.js';
|
|
3
3
|
|
|
4
4
|
var Context = React__default.createContext({
|
|
5
5
|
opened: '',
|
|
@@ -9,4 +9,4 @@ var Consumer = Context.Consumer;
|
|
|
9
9
|
var Provider = Context.Provider;
|
|
10
10
|
|
|
11
11
|
export { Consumer as C, Provider as P };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-DavEbLba.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DavEbLba.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -34,4 +34,4 @@ var CreateChannelProvider = function (props) {
|
|
|
34
34
|
var useCreateChannelContext = function () { return (React__default.useContext(CreateChannelContext)); };
|
|
35
35
|
|
|
36
36
|
export { CreateChannelProvider as C, CHANNEL_TYPE as a, useCreateChannelContext as u };
|
|
37
|
-
//# sourceMappingURL=bundle-
|
|
37
|
+
//# sourceMappingURL=bundle-Di7baNGv.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Di7baNGv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import React__default, { useRef, useContext } from 'react';
|
|
3
3
|
import { createPortal } from 'react-dom';
|
|
4
|
-
import { L as LocalizationContext } from './bundle-
|
|
4
|
+
import { L as LocalizationContext } from './bundle-BX0LQWqY.js';
|
|
5
5
|
import '../hooks/useModal.js';
|
|
6
|
-
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-
|
|
7
|
-
import { n as noop } from './bundle-
|
|
8
|
-
import { A as Avatar } from './bundle-
|
|
9
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-DI3fL4Xw.js';
|
|
7
|
+
import { n as noop } from './bundle-CT3xDvIx.js';
|
|
8
|
+
import { A as Avatar } from './bundle-BXpzbAbi.js';
|
|
9
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DPhbbRZE.js';
|
|
10
10
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
11
|
-
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-
|
|
12
|
-
import { u as useKeyDown } from './bundle-
|
|
13
|
-
import { a as MODAL_ROOT } from './bundle-
|
|
11
|
+
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-BlHQV-25.js';
|
|
12
|
+
import { u as useKeyDown } from './bundle-CP1hwfFC.js';
|
|
13
|
+
import { a as MODAL_ROOT } from './bundle-CCUBCV04.js';
|
|
14
14
|
|
|
15
15
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
|
|
16
16
|
var SUPPORTED_MIMES = {
|
|
@@ -85,9 +85,9 @@ function Slider(props) {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
var FileViewerComponent = function (props) {
|
|
88
|
-
var
|
|
89
|
-
var profileUrl = props.profileUrl, nickname = props.nickname, onClose = props.onClose;
|
|
88
|
+
var profileUrl = props.profileUrl, nickname = props.nickname, onClose = props.onClose, onDownloadClick = props.onDownloadClick;
|
|
90
89
|
var _a = props, onClickLeft = _a.onClickLeft, onClickRight = _a.onClickRight;
|
|
90
|
+
var ref = useRef(null);
|
|
91
91
|
var onKeyDown = useKeyDown(ref, {
|
|
92
92
|
Escape: function (e) { return onClose === null || onClose === void 0 ? void 0 : onClose(e); },
|
|
93
93
|
ArrowLeft: function () { return onClickLeft === null || onClickLeft === void 0 ? void 0 : onClickLeft(); },
|
|
@@ -106,7 +106,7 @@ var FileViewerComponent = function (props) {
|
|
|
106
106
|
React__default.createElement(Label, { className: "sendbird-fileviewer__header__left__sender-name", type: LabelTypography.BODY_1, color: LabelColors.ONBACKGROUND_2 }, nickname)),
|
|
107
107
|
React__default.createElement("div", { className: "sendbird-fileviewer__header__right" },
|
|
108
108
|
isSupportedFileView(type) && (React__default.createElement("div", { className: "sendbird-fileviewer__header__right__actions" },
|
|
109
|
-
React__default.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank" },
|
|
109
|
+
React__default.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank", onClick: onDownloadClick },
|
|
110
110
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.ON_BACKGROUND_1, height: "24px", width: "24px" })),
|
|
111
111
|
React__default.createElement(DeleteButton, __assign({ className: 'sendbird-fileviewer__header__right__actions__delete' }, props)))),
|
|
112
112
|
React__default.createElement("div", { className: "sendbird-fileviewer__header__right__actions__close" },
|
|
@@ -123,7 +123,7 @@ var FileViewerComponent = function (props) {
|
|
|
123
123
|
};
|
|
124
124
|
function FileViewer(_a) {
|
|
125
125
|
var _b, _c, _d;
|
|
126
|
-
var message = _a.message, _e = _a.statefulFileInfoList, statefulFileInfoList = _e === void 0 ? [] : _e, onClose = _a.onClose, _f = _a.isByMe, isByMe = _f === void 0 ? false : _f, onDelete = _a.onDelete, currentIndex = _a.currentIndex, onClickLeft = _a.onClickLeft, onClickRight = _a.onClickRight;
|
|
126
|
+
var message = _a.message, _e = _a.statefulFileInfoList, statefulFileInfoList = _e === void 0 ? [] : _e, onClose = _a.onClose, _f = _a.isByMe, isByMe = _f === void 0 ? false : _f, onDelete = _a.onDelete, currentIndex = _a.currentIndex, onClickLeft = _a.onClickLeft, onClickRight = _a.onClickRight, onDownloadClick = _a.onDownloadClick;
|
|
127
127
|
if (isMultipleFilesMessage(message)) {
|
|
128
128
|
var castedMessage = message;
|
|
129
129
|
return (React__default.createElement(FileViewerComponent, { profileUrl: castedMessage.sender.profileUrl, nickname: castedMessage.sender.nickname, viewerType: ViewerTypes.MULTI, fileInfoList: statefulFileInfoList.filter(function (fileInfo) {
|
|
@@ -134,14 +134,14 @@ function FileViewer(_a) {
|
|
|
134
134
|
type: fileInfo.mimeType || '',
|
|
135
135
|
url: fileInfo.url,
|
|
136
136
|
};
|
|
137
|
-
}), currentIndex: currentIndex || 0, onClickLeft: onClickLeft || noop, onClickRight: onClickRight || noop, onClose: onClose }));
|
|
137
|
+
}), currentIndex: currentIndex || 0, onClickLeft: onClickLeft || noop, onClickRight: onClickRight || noop, onClose: onClose, onDownloadClick: onDownloadClick }));
|
|
138
138
|
}
|
|
139
139
|
else if (isFileMessage(message)) {
|
|
140
140
|
var castedMessage = message;
|
|
141
|
-
return createPortal((React__default.createElement(FileViewerComponent, { profileUrl: (_b = castedMessage.sender) === null || _b === void 0 ? void 0 : _b.profileUrl, nickname: (_c = castedMessage.sender) === null || _c === void 0 ? void 0 : _c.nickname, name: castedMessage.name, type: castedMessage.type, url: castedMessage === null || castedMessage === void 0 ? void 0 : castedMessage.url, isByMe: isByMe, disableDelete: (((_d = castedMessage.threadInfo) === null || _d === void 0 ? void 0 : _d.replyCount) || 0) > 0, onClose: onClose, onDelete: onDelete || noop })), document.getElementById(MODAL_ROOT));
|
|
141
|
+
return createPortal((React__default.createElement(FileViewerComponent, { profileUrl: (_b = castedMessage.sender) === null || _b === void 0 ? void 0 : _b.profileUrl, nickname: (_c = castedMessage.sender) === null || _c === void 0 ? void 0 : _c.nickname, name: castedMessage.name, type: castedMessage.type, url: castedMessage === null || castedMessage === void 0 ? void 0 : castedMessage.url, isByMe: isByMe, disableDelete: (((_d = castedMessage.threadInfo) === null || _d === void 0 ? void 0 : _d.replyCount) || 0) > 0, onClose: onClose, onDelete: onDelete || noop, onDownloadClick: onDownloadClick })), document.getElementById(MODAL_ROOT));
|
|
142
142
|
}
|
|
143
143
|
return React__default.createElement(React__default.Fragment, null);
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
export { FileViewer as F, isVideo as a, FileViewerComponent as b, isImage as i };
|
|
147
|
-
//# sourceMappingURL=bundle-
|
|
147
|
+
//# sourceMappingURL=bundle-Dj4HLKX0.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Dj4HLKX0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DlHudqve.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DoJNLxY9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CVDtzU3E.js';
|
|
2
2
|
|
|
3
3
|
var USER_MENTION_PREFIX = '@';
|
|
4
4
|
|
|
@@ -143,4 +143,4 @@ function getWhiteSpacePreservedText(text) {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
export { TOKEN_TYPES as T, USER_MENTION_PREFIX as U, getWhiteSpacePreservedText as g, tokenizeMessage as t };
|
|
146
|
-
//# sourceMappingURL=bundle-
|
|
146
|
+
//# sourceMappingURL=bundle-DqNfXH8L.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DqNfXH8L.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import React__default, { useState } from 'react';
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
-
import { u as useLongPress } from './bundle-
|
|
5
|
-
import { u as useLocalization } from './bundle-
|
|
6
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
7
|
-
import { n as noop } from './bundle-
|
|
8
|
-
import { i as isVoiceMessage } from './bundle-
|
|
9
|
-
import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-
|
|
4
|
+
import { u as useLongPress } from './bundle-j5EP0k3D.js';
|
|
5
|
+
import { u as useLocalization } from './bundle-BX0LQWqY.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-CLqgMCvn.js';
|
|
7
|
+
import { n as noop } from './bundle-CT3xDvIx.js';
|
|
8
|
+
import { i as isVoiceMessage } from './bundle-DI3fL4Xw.js';
|
|
9
|
+
import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-jd7__XU_.js';
|
|
10
10
|
import { TypingIndicatorText } from '../GroupChannel/components/TypingIndicator.js';
|
|
11
11
|
import Badge from '../ui/Badge.js';
|
|
12
12
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
13
13
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
14
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
14
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DPhbbRZE.js';
|
|
15
15
|
import MentionUserLabel from '../ui/MentionUserLabel.js';
|
|
16
|
-
import { M as Modal } from './bundle-
|
|
16
|
+
import { M as Modal } from './bundle-CCUBCV04.js';
|
|
17
17
|
import TextButton from '../ui/TextButton.js';
|
|
18
18
|
|
|
19
19
|
var GroupChannelListItemView = function (_a) {
|
|
@@ -83,4 +83,4 @@ var GroupChannelListItemView = function (_a) {
|
|
|
83
83
|
};
|
|
84
84
|
|
|
85
85
|
export { GroupChannelListItemView as G };
|
|
86
|
-
//# sourceMappingURL=bundle-
|
|
86
|
+
//# sourceMappingURL=bundle-Ds2X6Fjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Ds2X6Fjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DuNr1Njk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React__default, { createContext, useReducer, useContext } from 'react';
|
|
2
|
-
import { _ as __assign } from './bundle-
|
|
3
|
-
import { i as VOICE_PLAYER_ROOT_ID, f as VOICE_PLAYER_AUDIO_ID, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE } from './bundle-
|
|
2
|
+
import { _ as __assign } from './bundle-CVDtzU3E.js';
|
|
3
|
+
import { i as VOICE_PLAYER_ROOT_ID, f as VOICE_PLAYER_AUDIO_ID, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE } from './bundle-BlHQV-25.js';
|
|
4
4
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
5
5
|
|
|
6
6
|
var INITIALIZE_AUDIO_UNIT = 'INITIALIZE_AUDIO_UNIT';
|
|
@@ -243,4 +243,4 @@ var VoicePlayerProvider = function (_a) {
|
|
|
243
243
|
var useVoicePlayerContext = function () { return useContext(Context); };
|
|
244
244
|
|
|
245
245
|
export { AudioUnitDefaultValue as A, VOICE_PLAYER_STATUS as V, ALL as a, VoicePlayerProvider as b, useVoicePlayerContext as u };
|
|
246
|
-
//# sourceMappingURL=bundle-
|
|
246
|
+
//# sourceMappingURL=bundle-DxdGwARh.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DxdGwARh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
4
|
+
import { u as useLocalization } from './bundle-BX0LQWqY.js';
|
|
5
5
|
|
|
6
6
|
var OpenChannelMessageStatusTypes = {
|
|
7
7
|
NONE: 'none',
|
|
@@ -95,4 +95,4 @@ var OpenChannelMobileMenu = function (props) {
|
|
|
95
95
|
};
|
|
96
96
|
|
|
97
97
|
export { OpenChannelMobileMenu as O, isFineEdit as a, isFineResend as b, isFineDelete as c, checkIsPending as d, checkIsFailed as e, checkIsSent as f, getSenderFromMessage as g, isFineCopy as i, showMenuTrigger as s };
|
|
98
|
-
//# sourceMappingURL=bundle-
|
|
98
|
+
//# sourceMappingURL=bundle-Dypl_pLH.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Dypl_pLH.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as isFileMessage, c as isMultipleFilesMessage } from './bundle-
|
|
2
|
-
import { K } from './bundle-
|
|
1
|
+
import { b as isFileMessage, c as isMultipleFilesMessage } from './bundle-DI3fL4Xw.js';
|
|
2
|
+
import { K } from './bundle-4a9M9y8N.js';
|
|
3
3
|
|
|
4
4
|
function getMessageFirstFileType(message) {
|
|
5
5
|
return K(message)
|
|
@@ -66,4 +66,4 @@ function getMessageFirstFileThumbnailUrl(message) {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export { getMessageFirstFileType as a, getMessageFirstFileName as b, getMessageFirstFileThumbnailUrl as c, getMessageFirstFileUrl as g };
|
|
69
|
-
//# sourceMappingURL=bundle-
|
|
69
|
+
//# sourceMappingURL=bundle-GRqvZZ2N.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-GRqvZZ2N.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import { SendingStatus } from '@sendbird/chat/message';
|
|
3
3
|
|
|
4
4
|
var scrollToRenderedMessage = function (scrollRef, initialTimeStamp, setIsScrolled) {
|
|
@@ -120,4 +120,4 @@ var isAboutSame = function (a, b, px) {
|
|
|
120
120
|
};
|
|
121
121
|
|
|
122
122
|
export { isDisabledBecauseFrozen as a, isDisabledBecauseMuted as b, scrollToRenderedMessage as c, getNicknamesMapFromMembers as d, getAllEmojisMapFromEmojiContainer as g, isAboutSame as i, mergeAndSortMessages as m, passUnsuccessfullMessages as p, scrollIntoLast as s };
|
|
123
|
-
//# sourceMappingURL=bundle-
|
|
123
|
+
//# sourceMappingURL=bundle-HsrPpAtd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-HsrPpAtd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -31,4 +31,4 @@ var isDisabledBecauseMuted = function (groupChannel) {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
export { isDisabledBecauseMuted as a, isContextMenuClosed as b, getMessageTopOffset as c, getComponentKeyFromMessage as g, isDisabledBecauseFrozen as i };
|
|
34
|
-
//# sourceMappingURL=bundle-
|
|
34
|
+
//# sourceMappingURL=bundle-IuZ6uyzU.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-IuZ6uyzU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default, { useContext } from 'react';
|
|
2
|
-
import { M as Modal } from './bundle-
|
|
3
|
-
import './bundle-
|
|
4
|
-
import './bundle-
|
|
2
|
+
import { M as Modal } from './bundle-CCUBCV04.js';
|
|
3
|
+
import './bundle-CVDtzU3E.js';
|
|
4
|
+
import './bundle-DPhbbRZE.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
7
|
-
import { g as getModalDeleteMessageTitle } from './bundle-
|
|
6
|
+
import { L as LocalizationContext } from './bundle-BX0LQWqY.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle-CIhbNReG.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-
|
|
28
|
+
//# sourceMappingURL=bundle-SvqLmXeF.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-SvqLmXeF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-
|
|
1
|
+
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-CVDtzU3E.js';
|
|
2
2
|
import React__default, { useEffect, useCallback, useReducer, useState, useMemo, useContext } from 'react';
|
|
3
3
|
import { GroupChannelHandler, GroupChannelListOrder } from '@sendbird/chat/groupChannel';
|
|
4
|
-
import { p as pubSubTopics } from './bundle-
|
|
5
|
-
import { u as uuidv4 } from './bundle-
|
|
6
|
-
import { n as noop } from './bundle-
|
|
7
|
-
import { D as DELIVERY_RECEIPT$1 } from './bundle-
|
|
8
|
-
import { U as UserProfileProvider } from './bundle-
|
|
4
|
+
import { p as pubSubTopics } from './bundle-DEqxoG9B.js';
|
|
5
|
+
import { u as uuidv4 } from './bundle-CkInAxxb.js';
|
|
6
|
+
import { n as noop } from './bundle-CT3xDvIx.js';
|
|
7
|
+
import { D as DELIVERY_RECEIPT$1 } from './bundle-BlHQV-25.js';
|
|
8
|
+
import { U as UserProfileProvider } from './bundle-yNfnN0a6.js';
|
|
9
9
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
10
|
-
import { K, S } from './bundle-
|
|
11
|
-
import { T as filterChannelListParams, V as getChannelsWithUpsertedChannel } from './bundle-
|
|
12
|
-
import { u as useReconnectOnIdle } from './bundle-
|
|
10
|
+
import { K, S } from './bundle-4a9M9y8N.js';
|
|
11
|
+
import { T as filterChannelListParams, V as getChannelsWithUpsertedChannel } from './bundle-DI3fL4Xw.js';
|
|
12
|
+
import { u as useReconnectOnIdle } from './bundle-D3OeBr-9.js';
|
|
13
13
|
|
|
14
14
|
var RESET_CHANNEL_LIST = 'RESET_CHANNEL_LIST';
|
|
15
15
|
var CREATE_CHANNEL = 'CREATE_CHANNEL';
|
|
@@ -943,4 +943,4 @@ function useChannelListContext() {
|
|
|
943
943
|
}
|
|
944
944
|
|
|
945
945
|
export { ChannelListProvider as C, LEAVE_CHANNEL_SUCCESS as L, SET_CURRENT_CHANNEL as S, useChannelListContext as u };
|
|
946
|
-
//# sourceMappingURL=bundle-
|
|
946
|
+
//# sourceMappingURL=bundle-VttuSapS.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-VttuSapS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|