@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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
4
4
|
var React = require('react');
|
|
5
|
-
var stringSet = require('./bundle-
|
|
5
|
+
var stringSet = require('./bundle-prE7SKQr.js');
|
|
6
6
|
|
|
7
7
|
var Typography = {
|
|
8
8
|
H_1: 'H_1',
|
|
@@ -87,4 +87,4 @@ exports.LabelColors = LabelColors;
|
|
|
87
87
|
exports.LabelStringSet = LabelStringSet;
|
|
88
88
|
exports.LabelTypography = LabelTypography;
|
|
89
89
|
exports.changeColorToClassName = changeColorToClassName;
|
|
90
|
-
//# sourceMappingURL=bundle-
|
|
90
|
+
//# sourceMappingURL=bundle-B-njjZtk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B-njjZtk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B3Lu20wG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var utils = require('./bundle-
|
|
4
|
+
var utils = require('./bundle-Bc6y_vRE.js');
|
|
5
5
|
|
|
6
6
|
var Context = React.createContext({
|
|
7
7
|
opened: '',
|
|
@@ -12,4 +12,4 @@ var Provider = Context.Provider;
|
|
|
12
12
|
|
|
13
13
|
exports.Consumer = Consumer;
|
|
14
14
|
exports.Provider = Provider;
|
|
15
|
-
//# sourceMappingURL=bundle-
|
|
15
|
+
//# sourceMappingURL=bundle-B6FFmfTl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B6FFmfTl.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var ui_Label = require('./bundle-
|
|
3
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
4
4
|
|
|
5
5
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
6
6
|
var _a;
|
|
@@ -24,4 +24,4 @@ var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
|
24
24
|
};
|
|
25
25
|
|
|
26
26
|
exports.getChannelTitle = getChannelTitle;
|
|
27
|
-
//# sourceMappingURL=bundle-
|
|
27
|
+
//# sourceMappingURL=bundle-B7TedQKS.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B7TedQKS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -57,4 +57,4 @@ exports.VOICE_RECORDER_AUDIO_SAMPLE_RATE = VOICE_RECORDER_AUDIO_SAMPLE_RATE;
|
|
|
57
57
|
exports.VOICE_RECORDER_CLICK_BUFFER_TIME = VOICE_RECORDER_CLICK_BUFFER_TIME;
|
|
58
58
|
exports.VOICE_RECORDER_DEFAULT_MAX = VOICE_RECORDER_DEFAULT_MAX;
|
|
59
59
|
exports.VOICE_RECORDER_DEFAULT_MIN = VOICE_RECORDER_DEFAULT_MIN;
|
|
60
|
-
//# sourceMappingURL=bundle-
|
|
60
|
+
//# sourceMappingURL=bundle-BBS4PSSm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BBS4PSSm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var pubSub_topics = require('./bundle-
|
|
4
|
+
var pubSub_topics = require('./bundle-DcVYwXP-.js');
|
|
5
5
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
6
|
-
var _tslib = require('./bundle-
|
|
6
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
7
7
|
|
|
8
8
|
exports.OpenChannelListFetchingStatus = void 0;
|
|
9
9
|
(function (OpenChannelListFetchingStatus) {
|
|
@@ -357,4 +357,4 @@ exports.OpenChannelListActionTypes = OpenChannelListActionTypes$1;
|
|
|
357
357
|
exports.OpenChannelListProvider = OpenChannelListProvider;
|
|
358
358
|
exports.OpenChannelListProvider$1 = OpenChannelListProvider$1;
|
|
359
359
|
exports.useOpenChannelListContext = useOpenChannelListContext;
|
|
360
|
-
//# sourceMappingURL=bundle-
|
|
360
|
+
//# sourceMappingURL=bundle-BBdLSx_x.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BBdLSx_x.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
var reactDom = require('react-dom');
|
|
5
|
-
var ui_Avatar = require('./bundle-
|
|
5
|
+
var ui_Avatar = require('./bundle-DkGYX29W.js');
|
|
6
6
|
var ui_Icon = require('../ui/Icon.js');
|
|
7
|
-
var ui_Label = require('./bundle-
|
|
8
|
-
var index = require('./bundle-
|
|
7
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
8
|
+
var index = require('./bundle-Tx6vw4BY.js');
|
|
9
9
|
require('../hooks/useModal.js');
|
|
10
10
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
11
|
-
var ui_Modal = require('./bundle-
|
|
11
|
+
var ui_Modal = require('./bundle-BJD09510.js');
|
|
12
12
|
|
|
13
13
|
var FileViewerView = function (_a) {
|
|
14
|
-
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage;
|
|
14
|
+
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage, onDownloadClick = _a.onDownloadClick;
|
|
15
15
|
var sender = message.sender, type = message.type, url = message.url, _b = message.name, name = _b === void 0 ? '' : _b, threadInfo = message.threadInfo;
|
|
16
16
|
var profileUrl = sender.profileUrl, nickname = sender.nickname, userId = sender.userId;
|
|
17
17
|
var config = useSendbirdStateContext.useSendbirdStateContext().config;
|
|
18
|
-
return reactDom.createPortal(React.createElement(FileViewerComponent, { profileUrl: profileUrl, nickname: nickname, type: type, url: url, name: name, onCancel: onCancel, onDelete: function () { return deleteMessage(message).then(function () { return onCancel(); }); }, isByMe: config.userId === userId, disableDelete: (threadInfo === null || threadInfo === void 0 ? void 0 : threadInfo.replyCount) > 0 }), document.getElementById(ui_Modal.MODAL_ROOT));
|
|
18
|
+
return reactDom.createPortal(React.createElement(FileViewerComponent, { profileUrl: profileUrl, nickname: nickname, type: type, url: url, name: name, onCancel: onCancel, onDelete: function () { return deleteMessage(message).then(function () { return onCancel(); }); }, isByMe: config.userId === userId, disableDelete: (threadInfo === null || threadInfo === void 0 ? void 0 : threadInfo.replyCount) > 0, onDownloadClick: onDownloadClick }), document.getElementById(ui_Modal.MODAL_ROOT));
|
|
19
19
|
};
|
|
20
20
|
var FileViewerComponent = function (_a) {
|
|
21
21
|
var
|
|
@@ -24,7 +24,7 @@ var FileViewerComponent = function (_a) {
|
|
|
24
24
|
// file
|
|
25
25
|
name = _a.name, type = _a.type, url = _a.url,
|
|
26
26
|
// others
|
|
27
|
-
isByMe = _a.isByMe, onCancel = _a.onCancel, onDelete = _a.onDelete, disableDelete = _a.disableDelete;
|
|
27
|
+
isByMe = _a.isByMe, onCancel = _a.onCancel, onDelete = _a.onDelete, disableDelete = _a.disableDelete, onDownloadClick = _a.onDownloadClick;
|
|
28
28
|
return (React.createElement("div", { className: "sendbird-fileviewer" },
|
|
29
29
|
React.createElement("div", { className: "sendbird-fileviewer__header" },
|
|
30
30
|
React.createElement("div", { className: "sendbird-fileviewer__header__left" },
|
|
@@ -34,7 +34,7 @@ var FileViewerComponent = function (_a) {
|
|
|
34
34
|
React.createElement(ui_Label.Label, { className: "sendbird-fileviewer__header__left__sender-name", type: ui_Label.LabelTypography.BODY_1, color: ui_Label.LabelColors.ONBACKGROUND_2 }, nickname)),
|
|
35
35
|
React.createElement("div", { className: "sendbird-fileviewer__header__right" },
|
|
36
36
|
index.isSupportedFileView(type) && (React.createElement("div", { className: "sendbird-fileviewer__header__right__actions" },
|
|
37
|
-
React.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank" },
|
|
37
|
+
React.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank", onClick: onDownloadClick },
|
|
38
38
|
React.createElement(ui_Icon.default, { type: ui_Icon.IconTypes.DOWNLOAD, fillColor: ui_Icon.IconColors.ON_BACKGROUND_1, height: "24px", width: "24px" })),
|
|
39
39
|
onDelete && isByMe && (React.createElement("div", { className: "sendbird-fileviewer__header__right__actions__delete" },
|
|
40
40
|
React.createElement(ui_Icon.default, { className: disableDelete ? 'disabled' : '', type: ui_Icon.IconTypes.DELETE, fillColor: disableDelete ? ui_Icon.IconColors.GRAY : ui_Icon.IconColors.ON_BACKGROUND_1, height: "24px", width: "24px", onClick: function () {
|
|
@@ -53,4 +53,4 @@ var FileViewerComponent = function (_a) {
|
|
|
53
53
|
};
|
|
54
54
|
|
|
55
55
|
exports.FileViewerView = FileViewerView;
|
|
56
|
-
//# sourceMappingURL=bundle-
|
|
56
|
+
//# sourceMappingURL=bundle-BElidCBa.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BElidCBa.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var reactDom = require('react-dom');
|
|
6
|
-
var utils = require('./bundle-
|
|
7
|
-
var LocalizationContext = require('./bundle-
|
|
8
|
-
var MediaQueryContext = require('./bundle-
|
|
6
|
+
var utils = require('./bundle-Bc6y_vRE.js');
|
|
7
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
8
|
+
var MediaQueryContext = require('./bundle-1FXPxsfD.js');
|
|
9
9
|
var ui_IconButton = require('../ui/IconButton.js');
|
|
10
10
|
var ui_Button = require('../ui/Button.js');
|
|
11
11
|
var ui_Icon = require('../ui/Icon.js');
|
|
12
|
-
var ui_Label = require('./bundle-
|
|
12
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
13
13
|
|
|
14
14
|
// simple component to be used as modal root
|
|
15
15
|
var MODAL_ROOT = 'sendbird-modal-root';
|
|
@@ -69,4 +69,4 @@ exports.ModalBody = ModalBody;
|
|
|
69
69
|
exports.ModalFooter = ModalFooter;
|
|
70
70
|
exports.ModalHeader = ModalHeader;
|
|
71
71
|
exports.ModalRoot = ModalRoot;
|
|
72
|
-
//# sourceMappingURL=bundle-
|
|
72
|
+
//# sourceMappingURL=bundle-BJD09510.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BJD09510.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var consts = require('./bundle-
|
|
4
|
-
var useThrottleCallback = require('./bundle-
|
|
5
|
-
var utils = require('./bundle-
|
|
3
|
+
var consts = require('./bundle-BBS4PSSm.js');
|
|
4
|
+
var useThrottleCallback = require('./bundle-vxdq428L.js');
|
|
5
|
+
var utils = require('./bundle-VIGS3UfE.js');
|
|
6
6
|
var uikitTools = require('@sendbird/uikit-tools');
|
|
7
7
|
|
|
8
8
|
var DELAY = 100;
|
|
@@ -52,4 +52,4 @@ function useHandleOnScrollCallback(_a) {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
exports.useHandleOnScrollCallback = useHandleOnScrollCallback;
|
|
55
|
-
//# sourceMappingURL=bundle-
|
|
55
|
+
//# sourceMappingURL=bundle-BJjQQMo0.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BJjQQMo0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
4
4
|
var React = require('react');
|
|
5
|
-
var MediaQueryContext = require('./bundle-
|
|
5
|
+
var MediaQueryContext = require('./bundle-1FXPxsfD.js');
|
|
6
6
|
|
|
7
7
|
var DEFAULT_DURATION = 300;
|
|
8
8
|
function preventDefault(e) {
|
|
@@ -76,4 +76,4 @@ function useLongPress(_a, _b) {
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
exports.useLongPress = useLongPress;
|
|
79
|
-
//# sourceMappingURL=bundle-
|
|
79
|
+
//# sourceMappingURL=bundle-BNCNRHux.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BNCNRHux.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BO1-msX2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index$1 = require('./bundle-
|
|
4
|
-
var index = require('./bundle-
|
|
3
|
+
var index$1 = require('./bundle-Tx6vw4BY.js');
|
|
4
|
+
var index = require('./bundle-HOuE7syZ.js');
|
|
5
5
|
|
|
6
6
|
function getMessageFirstFileType(message) {
|
|
7
7
|
return index.K(message)
|
|
@@ -71,4 +71,4 @@ exports.getMessageFirstFileName = getMessageFirstFileName;
|
|
|
71
71
|
exports.getMessageFirstFileThumbnailUrl = getMessageFirstFileThumbnailUrl;
|
|
72
72
|
exports.getMessageFirstFileType = getMessageFirstFileType;
|
|
73
73
|
exports.getMessageFirstFileUrl = getMessageFirstFileUrl;
|
|
74
|
-
//# sourceMappingURL=bundle-
|
|
74
|
+
//# sourceMappingURL=bundle-BSLZ5pEu.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BSLZ5pEu.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -5,4 +5,4 @@ exports.TypingIndicatorType = void 0;
|
|
|
5
5
|
TypingIndicatorType["Text"] = "text";
|
|
6
6
|
TypingIndicatorType["Bubble"] = "bubble";
|
|
7
7
|
})(exports.TypingIndicatorType || (exports.TypingIndicatorType = {}));
|
|
8
|
-
//# sourceMappingURL=bundle-
|
|
8
|
+
//# sourceMappingURL=bundle-BXEAjuTY.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BXEAjuTY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BXQqL0gU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var ui_Modal = require('./bundle-
|
|
5
|
-
require('./bundle-
|
|
6
|
-
require('./bundle-
|
|
4
|
+
var ui_Modal = require('./bundle-BJD09510.js');
|
|
5
|
+
require('./bundle-B3Lu20wG.js');
|
|
6
|
+
require('./bundle-B-njjZtk.js');
|
|
7
7
|
var ui_Button = require('../ui/Button.js');
|
|
8
|
-
var LocalizationContext = require('./bundle-
|
|
8
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
9
9
|
var Thread_context = require('../Thread/context.js');
|
|
10
|
-
var stringFormatterUtils = require('./bundle-
|
|
10
|
+
var stringFormatterUtils = require('./bundle-CbATYgnP.js');
|
|
11
11
|
|
|
12
12
|
var RemoveMessage = function (props) {
|
|
13
13
|
var _a;
|
|
@@ -23,4 +23,4 @@ var RemoveMessage = function (props) {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
exports.RemoveMessage = RemoveMessage;
|
|
26
|
-
//# sourceMappingURL=bundle-
|
|
26
|
+
//# sourceMappingURL=bundle-B_BPxhrG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B_BPxhrG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Bc6y_vRE.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BiEQOJHh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
4
4
|
var React = require('react');
|
|
5
|
-
var index$1 = require('./bundle-
|
|
6
|
-
var LocalizationContext = require('./bundle-
|
|
5
|
+
var index$1 = require('./bundle-DskQULoR.js');
|
|
6
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
7
7
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
8
|
-
var _const = require('./bundle-
|
|
9
|
-
var utils = require('./bundle-
|
|
8
|
+
var _const = require('./bundle-P5AI1HkP.js');
|
|
9
|
+
var utils = require('./bundle-CAyt7i0X.js');
|
|
10
10
|
var Message_hooks_useDirtyGetMentions = require('../Message/hooks/useDirtyGetMentions.js');
|
|
11
|
-
var index = require('./bundle-
|
|
11
|
+
var index = require('./bundle-Tx6vw4BY.js');
|
|
12
12
|
var ui_DateSeparator = require('../ui/DateSeparator.js');
|
|
13
|
-
var ui_Label = require('./bundle-
|
|
13
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
14
14
|
var ui_MessageInput = require('../ui/MessageInput.js');
|
|
15
|
-
var _const$1 = require('./bundle-
|
|
15
|
+
var _const$1 = require('./bundle-D_RomXCz.js');
|
|
16
16
|
var ui_MessageContent = require('../ui/MessageContent.js');
|
|
17
17
|
var GroupChannel_components_SuggestedReplies = require('../GroupChannel/components/SuggestedReplies.js');
|
|
18
|
-
var SuggestedMentionListView = require('./bundle-
|
|
18
|
+
var SuggestedMentionListView = require('./bundle-CEcY1I0M.js');
|
|
19
19
|
|
|
20
20
|
var useDidMountEffect = function (func, deps) {
|
|
21
21
|
var _a = React.useState(false), didMount = _a[0], setDidmount = _a[1];
|
|
@@ -36,7 +36,7 @@ var MessageView = function (props) {
|
|
|
36
36
|
// MessageProps
|
|
37
37
|
message = props.message, renderMessage = props.renderMessage, children = props.children, _c = props.renderMessageContent, renderMessageContent = _c === void 0 ? function (props) { return React.createElement(ui_MessageContent, _tslib.__assign({}, props)); } : _c, _d = props.renderSuggestedReplies, renderSuggestedReplies = _d === void 0 ? function (props) { return (React.createElement(GroupChannel_components_SuggestedReplies, _tslib.__assign({}, props))); } : _d, renderCustomSeparator = props.renderCustomSeparator, renderEditInput = props.renderEditInput, hasSeparator = props.hasSeparator, chainTop = props.chainTop, chainBottom = props.chainBottom, handleScroll = props.handleScroll,
|
|
38
38
|
// MessageViewProps
|
|
39
|
-
channel = props.channel, emojiContainer = props.emojiContainer, editInputDisabled = props.editInputDisabled, shouldRenderSuggestedReplies = props.shouldRenderSuggestedReplies, isReactionEnabled = props.isReactionEnabled, replyType = props.replyType, threadReplySelectType = props.threadReplySelectType, nicknamesMap = props.nicknamesMap, renderUserMentionItem = props.renderUserMentionItem, scrollToMessage = props.scrollToMessage, toggleReaction = props.toggleReaction, setQuoteMessage = props.setQuoteMessage, onQuoteMessageClick = props.onQuoteMessageClick, onReplyInThreadClick = props.onReplyInThreadClick, sendUserMessage = props.sendUserMessage, updateUserMessage = props.updateUserMessage, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, renderFileViewer = props.renderFileViewer, renderRemoveMessageModal = props.renderRemoveMessageModal, setAnimatedMessageId = props.setAnimatedMessageId, animatedMessageId = props.animatedMessageId, onMessageAnimated = props.onMessageAnimated, _e = props.usedInLegacy, usedInLegacy = _e === void 0 ? true : _e;
|
|
39
|
+
channel = props.channel, emojiContainer = props.emojiContainer, editInputDisabled = props.editInputDisabled, shouldRenderSuggestedReplies = props.shouldRenderSuggestedReplies, isReactionEnabled = props.isReactionEnabled, replyType = props.replyType, threadReplySelectType = props.threadReplySelectType, nicknamesMap = props.nicknamesMap, renderUserMentionItem = props.renderUserMentionItem, scrollToMessage = props.scrollToMessage, toggleReaction = props.toggleReaction, setQuoteMessage = props.setQuoteMessage, onQuoteMessageClick = props.onQuoteMessageClick, onReplyInThreadClick = props.onReplyInThreadClick, onBeforeDownloadFileMessage = props.onBeforeDownloadFileMessage, sendUserMessage = props.sendUserMessage, updateUserMessage = props.updateUserMessage, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, renderFileViewer = props.renderFileViewer, renderRemoveMessageModal = props.renderRemoveMessageModal, setAnimatedMessageId = props.setAnimatedMessageId, animatedMessageId = props.animatedMessageId, onMessageAnimated = props.onMessageAnimated, _e = props.usedInLegacy, usedInLegacy = _e === void 0 ? true : _e;
|
|
40
40
|
var _f = LocalizationContext.useLocalization(), dateLocale = _f.dateLocale, stringSet = _f.stringSet;
|
|
41
41
|
var globalStore = useSendbirdStateContext.useSendbirdStateContext();
|
|
42
42
|
var _g = globalStore.config, userId = _g.userId, isOnline = _g.isOnline, isMentionEnabled = _g.isMentionEnabled, userMention = _g.userMention, logger = _g.logger;
|
|
@@ -137,6 +137,7 @@ var MessageView = function (props) {
|
|
|
137
137
|
onReplyInThread: onReplyInThreadClick,
|
|
138
138
|
onQuoteMessageClick: onQuoteMessageClick,
|
|
139
139
|
onMessageHeightChange: handleScroll,
|
|
140
|
+
onBeforeDownloadFileMessage: onBeforeDownloadFileMessage,
|
|
140
141
|
}),
|
|
141
142
|
shouldRenderSuggestedReplies && renderSuggestedReplies({
|
|
142
143
|
replyOptions: index.getSuggestedReplies(message),
|
|
@@ -215,4 +216,4 @@ var MessageView = function (props) {
|
|
|
215
216
|
};
|
|
216
217
|
|
|
217
218
|
exports.MessageView = MessageView;
|
|
218
|
-
//# sourceMappingURL=bundle-
|
|
219
|
+
//# sourceMappingURL=bundle-BnTCpa1X.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BnTCpa1X.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
4
4
|
var React = require('react');
|
|
5
|
-
var index$1 = require('./bundle-
|
|
5
|
+
var index$1 = require('./bundle-DskQULoR.js');
|
|
6
6
|
var ui_Icon = require('../ui/Icon.js');
|
|
7
|
-
var ui_Label = require('./bundle-
|
|
7
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
8
8
|
var ui_Loader = require('../ui/Loader.js');
|
|
9
|
-
var index$2 = require('./bundle-
|
|
9
|
+
var index$2 = require('./bundle-Tx6vw4BY.js');
|
|
10
10
|
var utils_message_getOutgoingMessageState = require('../utils/message/getOutgoingMessageState.js');
|
|
11
|
-
var index = require('./bundle-
|
|
12
|
-
var LocalizationContext = require('./bundle-
|
|
11
|
+
var index = require('./bundle-DtroGUKx.js');
|
|
12
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
13
13
|
|
|
14
14
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
15
15
|
var _a;
|
|
@@ -139,4 +139,4 @@ exports.getChannelUnreadMessageCount = getChannelUnreadMessageCount;
|
|
|
139
139
|
exports.getLastMessage = getLastMessage;
|
|
140
140
|
exports.getLastMessageCreatedAt = getLastMessageCreatedAt;
|
|
141
141
|
exports.getTotalMembers = getTotalMembers;
|
|
142
|
-
//# sourceMappingURL=bundle-
|
|
142
|
+
//# sourceMappingURL=bundle-Bpm6PJIl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Bpm6PJIl.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BpwSTA3F.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BzBRoraS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
var ui_IconButton = require('../ui/IconButton.js');
|
|
5
5
|
var ui_Icon = require('../ui/Icon.js');
|
|
6
|
-
var ui_Label = require('./bundle-
|
|
6
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
7
7
|
var ui_ChannelAvatar = require('../ui/ChannelAvatar.js');
|
|
8
|
-
var utils = require('./bundle-
|
|
9
|
-
var MediaQueryContext = require('./bundle-
|
|
8
|
+
var utils = require('./bundle-B7TedQKS.js');
|
|
9
|
+
var MediaQueryContext = require('./bundle-1FXPxsfD.js');
|
|
10
10
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
11
|
-
var LocalizationContext = require('./bundle-
|
|
11
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
12
12
|
|
|
13
13
|
var GroupChannelHeaderView = function (_a) {
|
|
14
14
|
var _b;
|
|
@@ -35,4 +35,4 @@ var GroupChannelHeaderView = function (_a) {
|
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
exports.GroupChannelHeaderView = GroupChannelHeaderView;
|
|
38
|
-
//# sourceMappingURL=bundle-
|
|
38
|
+
//# sourceMappingURL=bundle-C1j0QNr3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C1j0QNr3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
var ui_ContextMenu = require('../ui/ContextMenu.js');
|
|
5
5
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
6
|
-
var LocalizationContext = require('./bundle-
|
|
6
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
7
7
|
|
|
8
8
|
var OpenChannelMessageStatusTypes = {
|
|
9
9
|
NONE: 'none',
|
|
@@ -106,4 +106,4 @@ exports.isFineDelete = isFineDelete;
|
|
|
106
106
|
exports.isFineEdit = isFineEdit;
|
|
107
107
|
exports.isFineResend = isFineResend;
|
|
108
108
|
exports.showMenuTrigger = showMenuTrigger;
|
|
109
|
-
//# sourceMappingURL=bundle-
|
|
109
|
+
//# sourceMappingURL=bundle-C36gEKFp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C36gEKFp.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -37,4 +37,4 @@ exports.getMessageTopOffset = getMessageTopOffset;
|
|
|
37
37
|
exports.isContextMenuClosed = isContextMenuClosed;
|
|
38
38
|
exports.isDisabledBecauseFrozen = isDisabledBecauseFrozen;
|
|
39
39
|
exports.isDisabledBecauseMuted = isDisabledBecauseMuted;
|
|
40
|
-
//# sourceMappingURL=bundle-
|
|
40
|
+
//# sourceMappingURL=bundle-CAyt7i0X.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CAyt7i0X.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var ui_Label = require('./bundle-
|
|
4
|
+
var ui_Label = require('./bundle-B-njjZtk.js');
|
|
5
5
|
var ui_Icon = require('../ui/Icon.js');
|
|
6
|
-
var ui_Avatar = require('./bundle-
|
|
7
|
-
var LocalizationContext = require('./bundle-
|
|
8
|
-
var uuid = require('./bundle-
|
|
6
|
+
var ui_Avatar = require('./bundle-DkGYX29W.js');
|
|
7
|
+
var LocalizationContext = require('./bundle-DvduWWQk.js');
|
|
8
|
+
var uuid = require('./bundle-S09sS9Ub.js');
|
|
9
9
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
10
|
-
var _const$1 = require('./bundle-
|
|
11
|
-
var _const = require('./bundle-
|
|
12
|
-
var _tslib = require('./bundle-
|
|
10
|
+
var _const$1 = require('./bundle-P5AI1HkP.js');
|
|
11
|
+
var _const = require('./bundle-D_RomXCz.js');
|
|
12
|
+
var _tslib = require('./bundle-B3Lu20wG.js');
|
|
13
13
|
|
|
14
14
|
function SuggestedUserMentionItem(props) {
|
|
15
15
|
var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
|
|
@@ -170,4 +170,4 @@ var SuggestedMentionListView = function (props) {
|
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
exports.SuggestedMentionListView = SuggestedMentionListView;
|
|
173
|
-
//# sourceMappingURL=bundle-
|
|
173
|
+
//# sourceMappingURL=bundle-CEcY1I0M.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CEcY1I0M.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|