@sendbird/uikit-react 3.16.7 → 3.16.8-rc
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 +88 -88
- package/CHANGELOG.md +5 -0
- package/Channel/components/ChannelHeader.js +32 -32
- package/Channel/components/ChannelUI.js +67 -67
- package/Channel/components/FileViewer.js +30 -30
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +56 -56
- package/Channel/components/MessageInput.js +43 -43
- package/Channel/components/MessageInputWrapper.js +43 -43
- package/Channel/components/MessageList.js +60 -60
- package/Channel/components/RemoveMessageModal.js +29 -29
- package/Channel/components/SuggestedMentionList.js +29 -29
- package/Channel/components/TypingIndicator.js +9 -9
- package/Channel/components/UnreadCount.js +8 -8
- package/Channel/context.js +27 -26
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useHandleUploadFiles.js +18 -18
- package/Channel/hooks/useInitialMessagesFetch.js +8 -8
- package/Channel/utils/compareMessagesForGrouping.js +8 -8
- package/Channel/utils/getMessagePartsInfo.js +9 -9
- package/Channel.js +67 -67
- package/ChannelList/components/AddChannel.js +88 -88
- package/ChannelList/components/ChannelListHeader.js +13 -13
- package/ChannelList/components/ChannelListUI.js +88 -88
- package/ChannelList/components/ChannelPreview.js +32 -32
- package/ChannelList/components/ChannelPreviewAction.js +17 -17
- package/ChannelList/context.js +14 -14
- package/ChannelList.js +88 -88
- package/ChannelSettings/components/ChannelProfile.js +23 -23
- package/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
- package/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
- package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/ChannelSettings/components/ChannelSettingsUI.js +31 -31
- package/ChannelSettings/components/EditDetailsModal.js +19 -19
- package/ChannelSettings/components/LeaveChannel.js +20 -20
- package/ChannelSettings/components/ModerationPanel.js +29 -29
- package/ChannelSettings/components/UserListItem.js +19 -19
- package/ChannelSettings/components/UserPanel.js +28 -28
- package/ChannelSettings/context.js +9 -9
- package/ChannelSettings/hooks/useMenuList.js +29 -29
- package/ChannelSettings.js +31 -31
- package/CreateChannel/components/CreateChannelUI.js +88 -88
- package/CreateChannel/components/InviteUsers.js +88 -88
- package/CreateChannel/components/SelectChannelType.js +88 -88
- package/CreateChannel/context.js +88 -88
- package/CreateChannel.js +88 -88
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
- package/CreateOpenChannel/context.js +4 -4
- package/CreateOpenChannel.js +15 -15
- package/EditUserProfile/components/EditUserProfileUI.js +15 -15
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +15 -15
- package/GroupChannel/components/FileViewer.js +28 -28
- package/GroupChannel/components/FrozenNotification.js +6 -6
- package/GroupChannel/components/GroupChannelHeader.js +29 -29
- package/GroupChannel/components/GroupChannelUI.js +63 -63
- package/GroupChannel/components/Message.js +54 -54
- package/GroupChannel/components/MessageInputWrapper.js +41 -41
- package/GroupChannel/components/MessageList.js +56 -56
- package/GroupChannel/components/RemoveMessageModal.js +27 -27
- package/GroupChannel/components/SuggestedMentionList.js +15 -15
- package/GroupChannel/components/TypingIndicator.js +9 -9
- package/GroupChannel/components/UnreadCount.js +8 -8
- package/GroupChannel/context.js +15 -15
- package/GroupChannel.js +63 -63
- package/GroupChannelList/components/AddGroupChannel.js +88 -88
- package/GroupChannelList/components/GroupChannelListHeader.js +13 -13
- package/GroupChannelList/components/GroupChannelListItem.js +32 -32
- package/GroupChannelList/components/GroupChannelListUI.js +88 -88
- package/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
- package/GroupChannelList/context.js +10 -10
- package/GroupChannelList.js +88 -88
- package/MessageSearch/components/MessageSearchUI.js +20 -20
- package/MessageSearch/context.js +6 -6
- package/MessageSearch.js +22 -22
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/OpenChannel/components/OpenChannelInput.js +29 -29
- package/OpenChannel/components/OpenChannelMessage.js +39 -39
- package/OpenChannel/components/OpenChannelMessageList.js +43 -43
- package/OpenChannel/components/OpenChannelUI.js +43 -43
- package/OpenChannel/context.js +19 -19
- package/OpenChannel.js +43 -43
- package/OpenChannelList/components/OpenChannelListUI.js +17 -17
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +6 -6
- package/OpenChannelList.js +17 -17
- package/OpenChannelSettings/components/EditDetailsModal.js +18 -18
- package/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
- package/OpenChannelSettings/components/OperatorUI.js +24 -24
- package/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/OpenChannelSettings/context.js +6 -6
- package/OpenChannelSettings.js +24 -24
- package/SendbirdProvider.js +23 -23
- package/Thread/components/ParentMessageInfo.js +49 -49
- package/Thread/components/ParentMessageInfoItem.js +34 -34
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +56 -56
- package/Thread/components/ThreadListItem.js +56 -56
- package/Thread/components/ThreadMessageInput.js +46 -46
- package/Thread/components/ThreadUI.js +62 -62
- package/Thread/context.js +15 -15
- package/Thread.js +62 -62
- package/VoicePlayer/context.js +6 -6
- package/VoicePlayer/useVoicePlayer.js +14 -14
- package/VoiceRecorder/context.js +13 -13
- package/VoiceRecorder/useVoiceRecorder.js +12 -12
- package/chunks/{bundle-MA7RsJmb.js → bundle-1cAwf7t7.js} +3 -3
- package/chunks/bundle-1cAwf7t7.js.map +1 -0
- package/chunks/{bundle-BtliqdNT.js → bundle-2_53NpyI.js} +8 -8
- package/chunks/bundle-2_53NpyI.js.map +1 -0
- package/chunks/{bundle-DhyxF0Xw.js → bundle-2lW3GY3q.js} +1 -1
- package/chunks/bundle-2lW3GY3q.js.map +1 -0
- package/chunks/{bundle-BUm1uq9-.js → bundle-B-Edojfg.js} +4 -4
- package/chunks/bundle-B-Edojfg.js.map +1 -0
- package/chunks/{bundle-0TrdjZtT.js → bundle-B3yTQ0Z7.js} +1 -1
- package/chunks/bundle-B3yTQ0Z7.js.map +1 -0
- package/chunks/{bundle-BBMnSHO3.js → bundle-B4c6khxU.js} +12 -12
- package/{cjs/chunks/bundle-DdzMtmJV.js.map → chunks/bundle-B4c6khxU.js.map} +1 -1
- package/chunks/{bundle-D5iVYlXZ.js → bundle-B6xCA7Wj.js} +1 -1
- package/chunks/bundle-B6xCA7Wj.js.map +1 -0
- package/chunks/{bundle-CNCNuj5j.js → bundle-BCIvSJ8R.js} +1 -1
- package/chunks/bundle-BCIvSJ8R.js.map +1 -0
- package/chunks/{bundle-CMjQ-cCa.js → bundle-BEKDhYPe.js} +1 -1
- package/chunks/bundle-BEKDhYPe.js.map +1 -0
- package/chunks/{bundle-l9S_J0D5.js → bundle-BLOfYmdq.js} +1 -1
- package/chunks/bundle-BLOfYmdq.js.map +1 -0
- package/chunks/{bundle-N3ga3E1_.js → bundle-BL_sq4Vf.js} +15 -15
- package/chunks/{bundle-N3ga3E1_.js.map → bundle-BL_sq4Vf.js.map} +1 -1
- package/chunks/{bundle-BviZJuCc.js → bundle-BLhVb0Dh.js} +4 -4
- package/chunks/{bundle-BviZJuCc.js.map → bundle-BLhVb0Dh.js.map} +1 -1
- package/chunks/{bundle-Bu6lqKxV.js → bundle-BPZ9b0mJ.js} +4 -4
- package/chunks/{bundle-Bu6lqKxV.js.map → bundle-BPZ9b0mJ.js.map} +1 -1
- package/chunks/{bundle-DuqYTIjq.js → bundle-BWlYazlN.js} +3 -3
- package/chunks/{bundle-DuqYTIjq.js.map → bundle-BWlYazlN.js.map} +1 -1
- package/chunks/{bundle-DG9TZERe.js → bundle-BXvAzDZJ.js} +4 -4
- package/chunks/{bundle-DG9TZERe.js.map → bundle-BXvAzDZJ.js.map} +1 -1
- package/chunks/{bundle-C3XNFTDb.js → bundle-BbZZWlAb.js} +9 -9
- package/chunks/{bundle-C3XNFTDb.js.map → bundle-BbZZWlAb.js.map} +1 -1
- package/chunks/{bundle-AMj0Sfpz.js → bundle-BgLviuWO.js} +4 -4
- package/chunks/bundle-BgLviuWO.js.map +1 -0
- package/chunks/{bundle-BJ9zuO3x.js → bundle-Bj5rQ8wE.js} +8 -8
- package/chunks/{bundle-BJ9zuO3x.js.map → bundle-Bj5rQ8wE.js.map} +1 -1
- package/chunks/{bundle-Ba2Ru4M6.js → bundle-Blihkeao.js} +2 -2
- package/chunks/{bundle-Ba2Ru4M6.js.map → bundle-Blihkeao.js.map} +1 -1
- package/chunks/{bundle-CobcwUpd.js → bundle-BlyZj07T.js} +11 -11
- package/chunks/{bundle-CobcwUpd.js.map → bundle-BlyZj07T.js.map} +1 -1
- package/chunks/{bundle-CT-NzRzq.js → bundle-Bv_69NKT.js} +1 -1
- package/chunks/bundle-Bv_69NKT.js.map +1 -0
- package/chunks/{bundle-Do_auElh.js → bundle-ByN7Zh_c.js} +2 -2
- package/chunks/bundle-ByN7Zh_c.js.map +1 -0
- package/chunks/{bundle-DF3W2Rb9.js → bundle-BzoMHXfM.js} +6 -6
- package/chunks/bundle-BzoMHXfM.js.map +1 -0
- package/chunks/{bundle-DBSWrD1e.js → bundle-C1DkdOgw.js} +6 -6
- package/chunks/{bundle-DBSWrD1e.js.map → bundle-C1DkdOgw.js.map} +1 -1
- package/chunks/{bundle-DDJKNqBp.js → bundle-C51qZxUs.js} +2 -2
- package/chunks/bundle-C51qZxUs.js.map +1 -0
- package/chunks/{bundle-qENZsOZ-.js → bundle-C6nV8ksy.js} +12 -12
- package/chunks/bundle-C6nV8ksy.js.map +1 -0
- package/chunks/{bundle-BJLoBQCe.js → bundle-C9Tefw3R.js} +1 -1
- package/chunks/bundle-C9Tefw3R.js.map +1 -0
- package/chunks/{bundle-HzWL_k--.js → bundle-C9axh9mr.js} +5 -5
- package/chunks/{bundle-HzWL_k--.js.map → bundle-C9axh9mr.js.map} +1 -1
- package/chunks/{bundle-vbkNCu0L.js → bundle-CEMgM75c.js} +1 -1
- package/chunks/bundle-CEMgM75c.js.map +1 -0
- package/chunks/{bundle-BegY6Mgz.js → bundle-CPjO0eLB.js} +14 -14
- package/chunks/{bundle-BegY6Mgz.js.map → bundle-CPjO0eLB.js.map} +1 -1
- package/chunks/{bundle-DuQ2vnIR.js → bundle-CQHDEFhF.js} +2 -2
- package/chunks/{bundle-DuQ2vnIR.js.map → bundle-CQHDEFhF.js.map} +1 -1
- package/chunks/{bundle-ClIzLKH-.js → bundle-CTvbr2US.js} +1 -1
- package/chunks/bundle-CTvbr2US.js.map +1 -0
- package/chunks/{bundle-DJrybJGG.js → bundle-CVH_ocxA.js} +5 -5
- package/chunks/{bundle-DJrybJGG.js.map → bundle-CVH_ocxA.js.map} +1 -1
- package/chunks/{bundle-lg90t6G3.js → bundle-CZkpHCWk.js} +7 -7
- package/chunks/bundle-CZkpHCWk.js.map +1 -0
- package/chunks/{bundle-KhnlGrVI.js → bundle-CdP-hmKe.js} +1 -1
- package/chunks/bundle-CdP-hmKe.js.map +1 -0
- package/chunks/{bundle-DJ_OSSMT.js → bundle-Ce8Fifcc.js} +4 -4
- package/chunks/bundle-Ce8Fifcc.js.map +1 -0
- package/chunks/{bundle-D3T2AvSc.js → bundle-CehMKgqE.js} +9 -9
- package/chunks/bundle-CehMKgqE.js.map +1 -0
- package/chunks/{bundle-D8LhPr4e.js → bundle-Cf3WaJKk.js} +1 -1
- package/chunks/bundle-Cf3WaJKk.js.map +1 -0
- package/chunks/{bundle-Cfzmq-qy.js → bundle-Cg-nuOEa.js} +12 -12
- package/chunks/{bundle-Cfzmq-qy.js.map → bundle-Cg-nuOEa.js.map} +1 -1
- package/chunks/{bundle-BlbRAJmA.js → bundle-CoOFFZVP.js} +3 -3
- package/chunks/bundle-CoOFFZVP.js.map +1 -0
- package/chunks/{bundle-CO1y7D0u.js → bundle-CrSfiqg5.js} +1 -1
- package/chunks/bundle-CrSfiqg5.js.map +1 -0
- package/chunks/{bundle-QNHGsSZN.js → bundle-Csb5vSK0.js} +7 -7
- package/chunks/{bundle-QNHGsSZN.js.map → bundle-Csb5vSK0.js.map} +1 -1
- package/chunks/{bundle-DseT8u_-.js → bundle-Ct6UvMpf.js} +1 -1
- package/chunks/{bundle-DseT8u_-.js.map → bundle-Ct6UvMpf.js.map} +1 -1
- package/chunks/{bundle-ClgG8uMn.js → bundle-CuUKUrG-.js} +10 -10
- package/chunks/{bundle-ClgG8uMn.js.map → bundle-CuUKUrG-.js.map} +1 -1
- package/chunks/{bundle-CvOaLjiz.js → bundle-CxKTsLWf.js} +10 -10
- package/chunks/{bundle-CvOaLjiz.js.map → bundle-CxKTsLWf.js.map} +1 -1
- package/chunks/{bundle-B8m-rKye.js → bundle-CyHhxPAj.js} +4 -4
- package/chunks/bundle-CyHhxPAj.js.map +1 -0
- package/chunks/{bundle-ByzlaN5j.js → bundle-Cz8AMD06.js} +12 -12
- package/chunks/bundle-Cz8AMD06.js.map +1 -0
- package/chunks/{bundle-1qCVlMXW.js → bundle-D0L6PgW1.js} +1 -1
- package/chunks/bundle-D0L6PgW1.js.map +1 -0
- package/chunks/{bundle-BUc3HZ08.js → bundle-D16WJT22.js} +8 -8
- package/chunks/{bundle-BUc3HZ08.js.map → bundle-D16WJT22.js.map} +1 -1
- package/chunks/{bundle-B_GgIa4W.js → bundle-D1a-rTbm.js} +4 -4
- package/chunks/{bundle-B_GgIa4W.js.map → bundle-D1a-rTbm.js.map} +1 -1
- package/chunks/{bundle-AgGVGhWf.js → bundle-D1rCw3BP.js} +2 -2
- package/chunks/{bundle-AgGVGhWf.js.map → bundle-D1rCw3BP.js.map} +1 -1
- package/chunks/{bundle-d8oeBMu1.js → bundle-D75AdVCK.js} +1 -1
- package/chunks/bundle-D75AdVCK.js.map +1 -0
- package/chunks/{bundle-4VxKLKl_.js → bundle-D7nKxrzD.js} +7 -7
- package/chunks/{bundle-4VxKLKl_.js.map → bundle-D7nKxrzD.js.map} +1 -1
- package/chunks/{bundle-CDYhXWNX.js → bundle-DFXEooDc.js} +3 -3
- package/chunks/{bundle-CDYhXWNX.js.map → bundle-DFXEooDc.js.map} +1 -1
- package/chunks/{bundle-DORSLJqP.js → bundle-DFf2e71F.js} +1 -1
- package/chunks/bundle-DFf2e71F.js.map +1 -0
- package/chunks/{bundle-C3nEgbrP.js → bundle-DKq5_uvf.js} +6 -6
- package/chunks/bundle-DKq5_uvf.js.map +1 -0
- package/chunks/{bundle-44-MrpOA.js → bundle-DMKL2LZ_.js} +4 -4
- package/chunks/bundle-DMKL2LZ_.js.map +1 -0
- package/chunks/{bundle-DpNFZaR5.js → bundle-DPO4XQaJ.js} +3 -3
- package/chunks/{bundle-DpNFZaR5.js.map → bundle-DPO4XQaJ.js.map} +1 -1
- package/chunks/{bundle-B9mN-BTk.js → bundle-DQ6tm8L9.js} +3 -3
- package/chunks/bundle-DQ6tm8L9.js.map +1 -0
- package/chunks/{bundle-gXXMGw5_.js → bundle-DQm37CiF.js} +7 -7
- package/chunks/bundle-DQm37CiF.js.map +1 -0
- package/chunks/{bundle-CBfyMFC9.js → bundle-DR4dgYZA.js} +1 -1
- package/chunks/bundle-DR4dgYZA.js.map +1 -0
- package/chunks/{bundle-DLAbAE6W.js → bundle-DWwvRW-C.js} +1 -1
- package/chunks/bundle-DWwvRW-C.js.map +1 -0
- package/chunks/{bundle-Camold53.js → bundle-DYu-RCak.js} +33 -33
- package/chunks/{bundle-Camold53.js.map → bundle-DYu-RCak.js.map} +1 -1
- package/chunks/{bundle-BWTxQFSl.js → bundle-DaWd2ypz.js} +3 -3
- package/chunks/bundle-DaWd2ypz.js.map +1 -0
- package/chunks/{bundle-DirGjNLX.js → bundle-DcYOntrl.js} +1 -1
- package/chunks/{bundle-DirGjNLX.js.map → bundle-DcYOntrl.js.map} +1 -1
- package/chunks/{bundle-DVYMPV3i.js → bundle-Depyu_hN.js} +1 -1
- package/chunks/bundle-Depyu_hN.js.map +1 -0
- package/chunks/{bundle-DTKm24fD.js → bundle-DkcC6use.js} +1 -1
- package/chunks/bundle-DkcC6use.js.map +1 -0
- package/chunks/{bundle-B-yUYwrT.js → bundle-Dm48L6Rh.js} +5 -5
- package/chunks/{bundle-BOVHCMAF.js.map → bundle-Dm48L6Rh.js.map} +1 -1
- package/chunks/{bundle-paSqms04.js → bundle-DpTZGh5x.js} +7 -7
- package/chunks/bundle-DpTZGh5x.js.map +1 -0
- package/chunks/{bundle-DgpIR2TV.js → bundle-DrxYXIc2.js} +12 -12
- package/chunks/{bundle-DgpIR2TV.js.map → bundle-DrxYXIc2.js.map} +1 -1
- package/chunks/{bundle---aixLy5.js → bundle-FrJ5pkhF.js} +1 -1
- package/chunks/{bundle---aixLy5.js.map → bundle-FrJ5pkhF.js.map} +1 -1
- package/chunks/{bundle-DT0pStRO.js → bundle-HZKDnM49.js} +3 -3
- package/chunks/{bundle-DT0pStRO.js.map → bundle-HZKDnM49.js.map} +1 -1
- package/chunks/{bundle-LBCBjs9d.js → bundle-KKAuR1l2.js} +1 -1
- package/chunks/bundle-KKAuR1l2.js.map +1 -0
- package/chunks/{bundle-ubX26fzL.js → bundle-KbiL1qs0.js} +1 -1
- package/chunks/{bundle-ubX26fzL.js.map → bundle-KbiL1qs0.js.map} +1 -1
- package/chunks/{bundle-DbAERHW9.js → bundle-M2sO3btN.js} +13 -9
- package/chunks/{bundle-DbAERHW9.js.map → bundle-M2sO3btN.js.map} +1 -1
- package/chunks/{bundle-CopK-w3W.js → bundle-N66qXIDK.js} +2 -2
- package/chunks/bundle-N66qXIDK.js.map +1 -0
- package/chunks/{bundle-MsVmXHII.js → bundle-NmyoaqR3.js} +1 -1
- package/chunks/{bundle-MsVmXHII.js.map → bundle-NmyoaqR3.js.map} +1 -1
- package/chunks/{bundle-D1D0Y4xo.js → bundle-Q1y1H40y.js} +1 -1
- package/chunks/bundle-Q1y1H40y.js.map +1 -0
- package/chunks/{bundle-C393fElF.js → bundle-QihXeAbF.js} +1 -1
- package/chunks/bundle-QihXeAbF.js.map +1 -0
- package/chunks/{bundle-C__iJnzl.js → bundle-R1SiHCx-.js} +1 -1
- package/chunks/{bundle-C__iJnzl.js.map → bundle-R1SiHCx-.js.map} +1 -1
- package/chunks/{bundle-eyKmYzrx.js → bundle-R3lU6xFE.js} +4 -4
- package/chunks/bundle-R3lU6xFE.js.map +1 -0
- package/chunks/{bundle-DH45eb7x.js → bundle-S0bmaguY.js} +14 -14
- package/chunks/{bundle-DH45eb7x.js.map → bundle-S0bmaguY.js.map} +1 -1
- package/chunks/{bundle-Cc0ueRDM.js → bundle-WaLKJmyQ.js} +4 -4
- package/chunks/bundle-WaLKJmyQ.js.map +1 -0
- package/chunks/{bundle-CafUCQoC.js → bundle-_uuVkm91.js} +17 -18
- package/chunks/{bundle-CafUCQoC.js.map → bundle-_uuVkm91.js.map} +1 -1
- package/chunks/{bundle-DiCbzkpv.js → bundle-d3seru75.js} +5 -5
- package/chunks/bundle-d3seru75.js.map +1 -0
- package/chunks/{bundle-DVVKBU16.js → bundle-fJ9HG60p.js} +1 -1
- package/chunks/bundle-fJ9HG60p.js.map +1 -0
- package/chunks/{bundle-fMVQGLVC.js → bundle-fQKlAiTA.js} +3 -3
- package/chunks/bundle-fQKlAiTA.js.map +1 -0
- package/chunks/{bundle-BCWy1eRp.js → bundle-hz51R24D.js} +2 -2
- package/chunks/bundle-hz51R24D.js.map +1 -0
- package/chunks/{bundle-C0azcDcE.js → bundle-jbLTPLBB.js} +5 -5
- package/chunks/{bundle-C0azcDcE.js.map → bundle-jbLTPLBB.js.map} +1 -1
- package/chunks/{bundle-BJzhuBtM.js → bundle-jtNhxGxy.js} +1 -1
- package/chunks/{bundle-BJzhuBtM.js.map → bundle-jtNhxGxy.js.map} +1 -1
- package/chunks/{bundle-BOVHCMAF.js → bundle-x0yoIhV_.js} +4 -4
- package/chunks/{bundle-B-yUYwrT.js.map → bundle-x0yoIhV_.js.map} +1 -1
- package/cjs/App.js +88 -88
- package/cjs/Channel/components/ChannelHeader.js +32 -32
- package/cjs/Channel/components/ChannelUI.js +67 -67
- package/cjs/Channel/components/FileViewer.js +30 -30
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +56 -56
- package/cjs/Channel/components/MessageInput.js +43 -43
- package/cjs/Channel/components/MessageInputWrapper.js +43 -43
- package/cjs/Channel/components/MessageList.js +60 -60
- package/cjs/Channel/components/RemoveMessageModal.js +29 -29
- package/cjs/Channel/components/SuggestedMentionList.js +29 -29
- package/cjs/Channel/components/TypingIndicator.js +9 -9
- package/cjs/Channel/components/UnreadCount.js +8 -8
- package/cjs/Channel/context.js +27 -26
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useHandleUploadFiles.js +18 -18
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +8 -8
- package/cjs/Channel/utils/compareMessagesForGrouping.js +8 -8
- package/cjs/Channel/utils/getMessagePartsInfo.js +9 -9
- package/cjs/Channel.js +67 -67
- package/cjs/ChannelList/components/AddChannel.js +88 -88
- package/cjs/ChannelList/components/ChannelListHeader.js +13 -13
- package/cjs/ChannelList/components/ChannelListUI.js +88 -88
- package/cjs/ChannelList/components/ChannelPreview.js +32 -32
- package/cjs/ChannelList/components/ChannelPreviewAction.js +17 -17
- package/cjs/ChannelList/context.js +14 -14
- package/cjs/ChannelList.js +88 -88
- package/cjs/ChannelSettings/components/ChannelProfile.js +23 -23
- package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
- package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +31 -31
- package/cjs/ChannelSettings/components/EditDetailsModal.js +19 -19
- package/cjs/ChannelSettings/components/LeaveChannel.js +20 -20
- package/cjs/ChannelSettings/components/ModerationPanel.js +29 -29
- package/cjs/ChannelSettings/components/UserListItem.js +19 -19
- package/cjs/ChannelSettings/components/UserPanel.js +28 -28
- package/cjs/ChannelSettings/context.js +9 -9
- package/cjs/ChannelSettings/hooks/useMenuList.js +29 -29
- package/cjs/ChannelSettings.js +31 -31
- package/cjs/CreateChannel/components/CreateChannelUI.js +88 -88
- package/cjs/CreateChannel/components/InviteUsers.js +88 -88
- package/cjs/CreateChannel/components/SelectChannelType.js +88 -88
- package/cjs/CreateChannel/context.js +88 -88
- package/cjs/CreateChannel.js +88 -88
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
- package/cjs/CreateOpenChannel/context.js +4 -4
- package/cjs/CreateOpenChannel.js +15 -15
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +15 -15
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +15 -15
- package/cjs/GroupChannel/components/FileViewer.js +28 -28
- package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
- package/cjs/GroupChannel/components/GroupChannelHeader.js +29 -29
- package/cjs/GroupChannel/components/GroupChannelUI.js +63 -63
- package/cjs/GroupChannel/components/Message.js +54 -54
- package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
- package/cjs/GroupChannel/components/MessageList.js +56 -56
- package/cjs/GroupChannel/components/RemoveMessageModal.js +27 -27
- package/cjs/GroupChannel/components/SuggestedMentionList.js +15 -15
- package/cjs/GroupChannel/components/TypingIndicator.js +9 -9
- package/cjs/GroupChannel/components/UnreadCount.js +8 -8
- package/cjs/GroupChannel/context.js +15 -15
- package/cjs/GroupChannel.js +63 -63
- package/cjs/GroupChannelList/components/AddGroupChannel.js +88 -88
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +13 -13
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +32 -32
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +88 -88
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
- package/cjs/GroupChannelList/context.js +10 -10
- package/cjs/GroupChannelList.js +88 -88
- package/cjs/MessageSearch/components/MessageSearchUI.js +20 -20
- package/cjs/MessageSearch/context.js +6 -6
- package/cjs/MessageSearch.js +22 -22
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/cjs/OpenChannel/components/OpenChannelInput.js +29 -29
- package/cjs/OpenChannel/components/OpenChannelMessage.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -43
- package/cjs/OpenChannel/components/OpenChannelUI.js +43 -43
- package/cjs/OpenChannel/context.js +19 -19
- package/cjs/OpenChannel.js +43 -43
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +17 -17
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +6 -6
- package/cjs/OpenChannelList.js +17 -17
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +18 -18
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
- package/cjs/OpenChannelSettings/components/OperatorUI.js +24 -24
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/cjs/OpenChannelSettings/context.js +6 -6
- package/cjs/OpenChannelSettings.js +24 -24
- package/cjs/SendbirdProvider.js +23 -23
- package/cjs/Thread/components/ParentMessageInfo.js +49 -49
- package/cjs/Thread/components/ParentMessageInfoItem.js +34 -34
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +56 -56
- package/cjs/Thread/components/ThreadListItem.js +56 -56
- package/cjs/Thread/components/ThreadMessageInput.js +46 -46
- package/cjs/Thread/components/ThreadUI.js +62 -62
- package/cjs/Thread/context.js +15 -15
- package/cjs/Thread.js +62 -62
- package/cjs/VoicePlayer/context.js +6 -6
- package/cjs/VoicePlayer/useVoicePlayer.js +14 -14
- package/cjs/VoiceRecorder/context.js +13 -13
- package/cjs/VoiceRecorder/useVoiceRecorder.js +12 -12
- package/cjs/chunks/{bundle-CWKemlba.js → bundle-3o5vtTqv.js} +1 -1
- package/cjs/chunks/bundle-3o5vtTqv.js.map +1 -0
- package/cjs/chunks/{bundle-DGnoI4PY.js → bundle-5Tqgdoci.js} +14 -14
- package/cjs/chunks/{bundle-DGnoI4PY.js.map → bundle-5Tqgdoci.js.map} +1 -1
- package/cjs/chunks/{bundle-C-CraE0i.js → bundle-5a_xWjqP.js} +2 -2
- package/cjs/chunks/bundle-5a_xWjqP.js.map +1 -0
- package/cjs/chunks/{bundle-yeSxeHF3.js → bundle-6KMFP3-z.js} +5 -5
- package/cjs/chunks/bundle-6KMFP3-z.js.map +1 -0
- package/cjs/chunks/{bundle-LoHka1ww.js → bundle-7VvCvPDB.js} +3 -3
- package/cjs/chunks/bundle-7VvCvPDB.js.map +1 -0
- package/cjs/chunks/{bundle-BJVsKj8Z.js → bundle-8W_CKJWO.js} +1 -1
- package/cjs/chunks/bundle-8W_CKJWO.js.map +1 -0
- package/cjs/chunks/{bundle-D7a7lRhc.js → bundle-A16wEEmD.js} +11 -11
- package/cjs/chunks/{bundle-D7a7lRhc.js.map → bundle-A16wEEmD.js.map} +1 -1
- package/cjs/chunks/{bundle-C19bOC0u.js → bundle-B02qBUJs.js} +4 -4
- package/cjs/chunks/bundle-B02qBUJs.js.map +1 -0
- package/cjs/chunks/{bundle-BNyKt7U9.js → bundle-B4iDGfyR.js} +3 -3
- package/cjs/chunks/{bundle-BNyKt7U9.js.map → bundle-B4iDGfyR.js.map} +1 -1
- package/cjs/chunks/{bundle-CVicVe21.js → bundle-B7m7Q3Rw.js} +4 -4
- package/cjs/chunks/bundle-B7m7Q3Rw.js.map +1 -0
- package/cjs/chunks/{bundle-XLzzItQL.js → bundle-BA0Ctved.js} +4 -4
- package/cjs/chunks/bundle-BA0Ctved.js.map +1 -0
- package/cjs/chunks/{bundle-B8yyLIhC.js → bundle-BB16De6a.js} +1 -1
- package/cjs/chunks/{bundle-B8yyLIhC.js.map → bundle-BB16De6a.js.map} +1 -1
- package/cjs/chunks/{bundle-DbxOf2R0.js → bundle-BG2kcSuQ.js} +4 -4
- package/cjs/chunks/{bundle-DbxOf2R0.js.map → bundle-BG2kcSuQ.js.map} +1 -1
- package/cjs/chunks/{bundle-DdzMtmJV.js → bundle-BHDlkpdh.js} +8 -8
- package/{chunks/bundle-BBMnSHO3.js.map → cjs/chunks/bundle-BHDlkpdh.js.map} +1 -1
- package/cjs/chunks/{bundle-1RtlcY_X.js → bundle-BLJgX2vk.js} +15 -15
- package/cjs/chunks/{bundle-1RtlcY_X.js.map → bundle-BLJgX2vk.js.map} +1 -1
- package/cjs/chunks/{bundle-CIVNgKSc.js → bundle-BNZYI8jR.js} +2 -2
- package/cjs/chunks/bundle-BNZYI8jR.js.map +1 -0
- package/cjs/chunks/{bundle-CESWZ6Ke.js → bundle-BOsbelkI.js} +12 -12
- package/cjs/chunks/{bundle-CESWZ6Ke.js.map → bundle-BOsbelkI.js.map} +1 -1
- package/cjs/chunks/{bundle-FVJAh-zj.js → bundle-BR2dQxwv.js} +1 -1
- package/cjs/chunks/bundle-BR2dQxwv.js.map +1 -0
- package/cjs/chunks/{bundle-e1RcyXEh.js → bundle-BSfvSo0S.js} +1 -1
- package/cjs/chunks/bundle-BSfvSo0S.js.map +1 -0
- package/cjs/chunks/{bundle-ClGbrizJ.js → bundle-BTZQs9wR.js} +7 -7
- package/cjs/chunks/{bundle-ClGbrizJ.js.map → bundle-BTZQs9wR.js.map} +1 -1
- package/cjs/chunks/{bundle-6iYwpsr9.js → bundle-BW9IdSyd.js} +13 -9
- package/cjs/chunks/bundle-BW9IdSyd.js.map +1 -0
- package/cjs/chunks/{bundle-kff9Zj9O.js → bundle-BWH5ff4a.js} +4 -4
- package/cjs/chunks/bundle-BWH5ff4a.js.map +1 -0
- package/cjs/chunks/{bundle-DxLfx2gA.js → bundle-BZ0SOT3t.js} +1 -1
- package/cjs/chunks/bundle-BZ0SOT3t.js.map +1 -0
- package/cjs/chunks/{bundle-CBRiA6WQ.js → bundle-B_vQXLYR.js} +12 -12
- package/cjs/chunks/{bundle-CBRiA6WQ.js.map → bundle-B_vQXLYR.js.map} +1 -1
- package/cjs/chunks/{bundle-DcN1PHcN.js → bundle-BiYBp5hI.js} +4 -4
- package/cjs/chunks/bundle-BiYBp5hI.js.map +1 -0
- package/cjs/chunks/{bundle-CqGDJCGV.js → bundle-Bnbu0ocB.js} +3 -3
- package/cjs/chunks/bundle-Bnbu0ocB.js.map +1 -0
- package/cjs/chunks/{bundle-qMFessk5.js → bundle-BtYYqUTB.js} +4 -4
- package/cjs/chunks/bundle-BtYYqUTB.js.map +1 -0
- package/cjs/chunks/{bundle-BfwsoZ_f.js → bundle-BvdJGT6G.js} +6 -6
- package/cjs/chunks/{bundle-BfwsoZ_f.js.map → bundle-BvdJGT6G.js.map} +1 -1
- package/cjs/chunks/{bundle-CS_3e7x6.js → bundle-ByPmMzX3.js} +4 -4
- package/cjs/chunks/bundle-ByPmMzX3.js.map +1 -0
- package/cjs/chunks/{bundle-HgxzcOKL.js → bundle-C-8RYU9V.js} +3 -3
- package/cjs/chunks/bundle-C-8RYU9V.js.map +1 -0
- package/cjs/chunks/{bundle-Bj_gu5A-.js → bundle-C46BVJZg.js} +6 -6
- package/cjs/chunks/bundle-C46BVJZg.js.map +1 -0
- package/cjs/chunks/{bundle-BCTa9jYZ.js → bundle-C8KV3Lge.js} +1 -1
- package/cjs/chunks/bundle-C8KV3Lge.js.map +1 -0
- package/cjs/chunks/{bundle-BDCiiker.js → bundle-C9jkW4Zp.js} +1 -1
- package/cjs/chunks/bundle-C9jkW4Zp.js.map +1 -0
- package/cjs/chunks/{bundle-DfxuJbi-.js → bundle-C9oE1EsR.js} +1 -1
- package/cjs/chunks/bundle-C9oE1EsR.js.map +1 -0
- package/cjs/chunks/{bundle-j9d_a2oN.js → bundle-CBnRHG2l.js} +2 -2
- package/cjs/chunks/bundle-CBnRHG2l.js.map +1 -0
- package/cjs/chunks/{bundle-CxkC0X_8.js → bundle-CDInXCu6.js} +5 -5
- package/cjs/chunks/{bundle-CxkC0X_8.js.map → bundle-CDInXCu6.js.map} +1 -1
- package/cjs/chunks/{bundle-8Yha19PO.js → bundle-CEN--aa2.js} +7 -7
- package/cjs/chunks/bundle-CEN--aa2.js.map +1 -0
- package/cjs/chunks/{bundle-CzH-slJQ.js → bundle-CFCrnSH1.js} +1 -1
- package/cjs/chunks/bundle-CFCrnSH1.js.map +1 -0
- package/cjs/chunks/{bundle-CSL84Mpm.js → bundle-CKf1qMT1.js} +1 -1
- package/cjs/chunks/bundle-CKf1qMT1.js.map +1 -0
- package/cjs/chunks/{bundle-D8ZU5Tpa.js → bundle-CLjXVmML.js} +1 -1
- package/cjs/chunks/bundle-CLjXVmML.js.map +1 -0
- package/cjs/chunks/{bundle-D6bCUYUV.js → bundle-CSUUExfQ.js} +12 -12
- package/cjs/chunks/{bundle-D6bCUYUV.js.map → bundle-CSUUExfQ.js.map} +1 -1
- package/cjs/chunks/{bundle-Do_hrsjP.js → bundle-CTGhzxOj.js} +12 -12
- package/cjs/chunks/{bundle-Do_hrsjP.js.map → bundle-CTGhzxOj.js.map} +1 -1
- package/cjs/chunks/{bundle-BF92QIXA.js → bundle-CXFSbOLo.js} +2 -2
- package/cjs/chunks/bundle-CXFSbOLo.js.map +1 -0
- package/cjs/chunks/{bundle-CTbRos2s.js → bundle-CcaV6o0J.js} +2 -2
- package/cjs/chunks/bundle-CcaV6o0J.js.map +1 -0
- package/cjs/chunks/{bundle-Bdw7goUn.js → bundle-CdB9Bawv.js} +12 -12
- package/cjs/chunks/bundle-CdB9Bawv.js.map +1 -0
- package/cjs/chunks/{bundle-D1EvhGMx.js → bundle-CdsOW2U-.js} +2 -2
- package/cjs/chunks/bundle-CdsOW2U-.js.map +1 -0
- package/cjs/chunks/{bundle-gO1LxUb8.js → bundle-ChDHLKAB.js} +1 -1
- package/cjs/chunks/bundle-ChDHLKAB.js.map +1 -0
- package/cjs/chunks/{bundle-0VXVESR_.js → bundle-Cj03-WRG.js} +1 -1
- package/cjs/chunks/bundle-Cj03-WRG.js.map +1 -0
- package/cjs/chunks/{bundle-XZ6oPmao.js → bundle-CjatsWJX.js} +7 -7
- package/cjs/chunks/bundle-CjatsWJX.js.map +1 -0
- package/cjs/chunks/{bundle-BVvNMYPW.js → bundle-CoNr9BSn.js} +7 -7
- package/cjs/chunks/bundle-CoNr9BSn.js.map +1 -0
- package/cjs/chunks/{bundle-iXYg1WCn.js → bundle-Ctu2db9q.js} +3 -3
- package/cjs/chunks/bundle-Ctu2db9q.js.map +1 -0
- package/cjs/chunks/{bundle-Bs2ljYon.js → bundle-D16hbpdu.js} +1 -1
- package/cjs/chunks/bundle-D16hbpdu.js.map +1 -0
- package/cjs/chunks/{bundle-DcUoqLZn.js → bundle-D64sQrpP.js} +1 -1
- package/cjs/chunks/bundle-D64sQrpP.js.map +1 -0
- package/cjs/chunks/{bundle-B_KeCbad.js → bundle-DGP3rI_3.js} +3 -3
- package/cjs/chunks/bundle-DGP3rI_3.js.map +1 -0
- package/cjs/chunks/{bundle-BkM3gvpZ.js → bundle-DLO5KRBC.js} +1 -1
- package/cjs/chunks/bundle-DLO5KRBC.js.map +1 -0
- package/cjs/chunks/{bundle-CAGL0mVD.js → bundle-DNWcnm2D.js} +9 -9
- package/cjs/chunks/{bundle-CAGL0mVD.js.map → bundle-DNWcnm2D.js.map} +1 -1
- package/cjs/chunks/{bundle-BXs1Q9r8.js → bundle-DQD03KWn.js} +2 -2
- package/cjs/chunks/{bundle-BXs1Q9r8.js.map → bundle-DQD03KWn.js.map} +1 -1
- package/cjs/chunks/{bundle-DBfn8v_s.js → bundle-DW-PvXKU.js} +8 -8
- package/cjs/chunks/bundle-DW-PvXKU.js.map +1 -0
- package/cjs/chunks/{bundle-S_ftejkl.js → bundle-DXFulFff.js} +3 -3
- package/cjs/chunks/bundle-DXFulFff.js.map +1 -0
- package/cjs/chunks/{bundle-CvSnSgGd.js → bundle-DaZjEIB_.js} +33 -33
- package/cjs/chunks/{bundle-CvSnSgGd.js.map → bundle-DaZjEIB_.js.map} +1 -1
- package/cjs/chunks/{bundle-BHlbovUv.js → bundle-Dbho-OEA.js} +14 -14
- package/cjs/chunks/{bundle-BHlbovUv.js.map → bundle-Dbho-OEA.js.map} +1 -1
- package/cjs/chunks/{bundle-DqS0b7mw.js → bundle-DboAPYte.js} +10 -10
- package/cjs/chunks/{bundle-DqS0b7mw.js.map → bundle-DboAPYte.js.map} +1 -1
- package/cjs/chunks/{bundle-x9nFRwLY.js → bundle-DcDSKY8i.js} +4 -4
- package/cjs/chunks/bundle-DcDSKY8i.js.map +1 -0
- package/cjs/chunks/{bundle-Cnw2-Jv9.js → bundle-Df1N0lZo.js} +3 -3
- package/cjs/chunks/bundle-Df1N0lZo.js.map +1 -0
- package/cjs/chunks/{bundle-Cw6VWgUq.js → bundle-DgA1bh9F.js} +6 -6
- package/cjs/chunks/bundle-DgA1bh9F.js.map +1 -0
- package/cjs/chunks/{bundle--O0WODWP.js → bundle-DgRpQCa4.js} +5 -5
- package/cjs/chunks/{bundle--O0WODWP.js.map → bundle-DgRpQCa4.js.map} +1 -1
- package/cjs/chunks/{bundle-C7qr3IUb.js → bundle-DhCIvrfQ.js} +1 -1
- package/cjs/chunks/bundle-DhCIvrfQ.js.map +1 -0
- package/cjs/chunks/{bundle-rjBp4QCu.js → bundle-DhV-NiKr.js} +1 -1
- package/cjs/chunks/bundle-DhV-NiKr.js.map +1 -0
- package/cjs/chunks/{bundle-lBm_66LS.js → bundle-DhncBHCr.js} +3 -3
- package/cjs/chunks/{bundle-lBm_66LS.js.map → bundle-DhncBHCr.js.map} +1 -1
- package/cjs/chunks/{bundle-Cg_wfVMn.js → bundle-DioL6r8u.js} +8 -8
- package/cjs/chunks/bundle-DioL6r8u.js.map +1 -0
- package/cjs/chunks/{bundle-p6OKUiqX.js → bundle-Dm_en91o.js} +5 -5
- package/cjs/chunks/{bundle-p6OKUiqX.js.map → bundle-Dm_en91o.js.map} +1 -1
- package/cjs/chunks/{bundle-D_qhuYi9.js → bundle-Do74U9O8.js} +1 -1
- package/cjs/chunks/bundle-Do74U9O8.js.map +1 -0
- package/cjs/chunks/{bundle-6nGIhFDY.js → bundle-DoLbsqr5.js} +4 -4
- package/cjs/chunks/bundle-DoLbsqr5.js.map +1 -0
- package/cjs/chunks/{bundle-DVLcUvUT.js → bundle-DpU3G09f.js} +4 -4
- package/cjs/chunks/bundle-DpU3G09f.js.map +1 -0
- package/cjs/chunks/{bundle-Br-P6K7i.js → bundle-DumbvuQz.js} +7 -7
- package/cjs/chunks/bundle-DumbvuQz.js.map +1 -0
- package/cjs/chunks/{bundle-DHPisadM.js → bundle-DvzY8izK.js} +9 -9
- package/cjs/chunks/{bundle-DHPisadM.js.map → bundle-DvzY8izK.js.map} +1 -1
- package/cjs/chunks/{bundle-CY1y7JJW.js → bundle-Dw_qXIs7.js} +1 -1
- package/cjs/chunks/{bundle-CY1y7JJW.js.map → bundle-Dw_qXIs7.js.map} +1 -1
- package/cjs/chunks/{bundle-CrDIwW5W.js → bundle-ElQJoeAG.js} +17 -18
- package/cjs/chunks/{bundle-CrDIwW5W.js.map → bundle-ElQJoeAG.js.map} +1 -1
- package/cjs/chunks/{bundle-vOqLpYwi.js → bundle-O3nhZKYH.js} +1 -1
- package/cjs/chunks/{bundle-vOqLpYwi.js.map → bundle-O3nhZKYH.js.map} +1 -1
- package/cjs/chunks/{bundle-D6u6GZVl.js → bundle-QuI7QcmN.js} +1 -1
- package/cjs/chunks/bundle-QuI7QcmN.js.map +1 -0
- package/cjs/chunks/{bundle-Cx8OTcwG.js → bundle-W1hRiIlG.js} +4 -4
- package/cjs/chunks/bundle-W1hRiIlG.js.map +1 -0
- package/cjs/chunks/{bundle-bHxwJtYj.js → bundle-YTpUKzy6.js} +1 -1
- package/cjs/chunks/bundle-YTpUKzy6.js.map +1 -0
- package/cjs/chunks/{bundle-CGLD5gdu.js → bundle-ZggDA1OR.js} +1 -1
- package/cjs/chunks/bundle-ZggDA1OR.js.map +1 -0
- package/cjs/chunks/{bundle-D5p7gTdQ.js → bundle-_QrxIrxj.js} +1 -1
- package/cjs/chunks/bundle-_QrxIrxj.js.map +1 -0
- package/cjs/chunks/{bundle-2GbPVyMk.js → bundle-aGsBIZs2.js} +1 -1
- package/cjs/chunks/bundle-aGsBIZs2.js.map +1 -0
- package/cjs/chunks/{bundle-BYZpi6aC.js → bundle-aXPlTc-_.js} +1 -1
- package/cjs/chunks/bundle-aXPlTc-_.js.map +1 -0
- package/cjs/chunks/{bundle-tO_sLFMv.js → bundle-kUGZe32R.js} +5 -5
- package/cjs/chunks/bundle-kUGZe32R.js.map +1 -0
- package/cjs/chunks/{bundle-CN-Q2nDp.js → bundle-nHQc3-g0.js} +1 -1
- package/cjs/chunks/{bundle-CN-Q2nDp.js.map → bundle-nHQc3-g0.js.map} +1 -1
- package/cjs/chunks/{bundle-CE9MCMGn.js → bundle-qFEYTcFe.js} +1 -1
- package/cjs/chunks/bundle-qFEYTcFe.js.map +1 -0
- package/cjs/chunks/{bundle-DsHHiIba.js → bundle-r9mtRHA5.js} +1 -1
- package/cjs/chunks/bundle-r9mtRHA5.js.map +1 -0
- package/cjs/chunks/{bundle-Cij380So.js → bundle-yb_qCINd.js} +10 -10
- package/cjs/chunks/bundle-yb_qCINd.js.map +1 -0
- package/cjs/hooks/useConnectionState.js +5 -5
- package/cjs/hooks/useLocalization.js +4 -4
- package/cjs/hooks/useModal.js +13 -13
- package/cjs/index.js +89 -89
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +2 -2
- package/cjs/ui/AccordionGroup.js +1 -1
- package/cjs/ui/AdminMessage.js +3 -3
- package/cjs/ui/Avatar.js +4 -4
- package/cjs/ui/Badge.js +5 -5
- package/cjs/ui/BottomSheet.js +13 -13
- 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 +14 -14
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +23 -23
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
- package/cjs/ui/FileMessageItemBody.js +13 -13
- package/cjs/ui/FileViewer.js +19 -19
- package/cjs/ui/Header.js +6 -6
- 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 +4 -4
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
- package/cjs/ui/MentionLabel.js +19 -19
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +42 -42
- package/cjs/ui/MessageFeedbackFailedModal.js +13 -13
- package/cjs/ui/MessageFeedbackModal.js +13 -13
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +20 -20
- package/cjs/ui/MessageItemMenu.js +15 -15
- package/cjs/ui/MessageItemReactionMenu.js +16 -16
- package/cjs/ui/MessageMenu.js +16 -16
- package/cjs/ui/MessageSearchFileItem.js +17 -17
- package/cjs/ui/MessageSearchItem.js +12 -12
- package/cjs/ui/MessageStatus.js +15 -15
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +13 -13
- package/cjs/ui/MobileMenu.js +18 -18
- package/cjs/ui/Modal.js +12 -12
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +23 -23
- 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 +24 -24
- package/cjs/ui/OpenchannelOGMessage.js +26 -26
- package/cjs/ui/OpenchannelThumbnailMessage.js +23 -23
- package/cjs/ui/OpenchannelUserMessage.js +24 -24
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/ProgressBar.js +1 -1
- package/cjs/ui/QuoteMessage.js +12 -12
- package/cjs/ui/QuoteMessageInput.js +12 -12
- 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 +14 -14
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +22 -22
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +10 -10
- package/cjs/ui/Toggle.js +4 -4
- 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 +10 -10
- package/cjs/ui/UserListItem.js +19 -19
- package/cjs/ui/UserListItemMenu.js +16 -16
- package/cjs/ui/UserProfile.js +13 -13
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +14 -14
- package/cjs/ui/Word.js +19 -19
- package/cjs/useSendbirdStateContext.js +4 -4
- package/cjs/utils/message/isVoiceMessage.js +6 -6
- package/cjs/withSendbird.js +23 -23
- package/hooks/useConnectionState.js +5 -5
- package/hooks/useLocalization.js +4 -4
- package/hooks/useModal.js +14 -14
- package/index.js +89 -89
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/modules/Channel/context/dux/initialState.d.ts +2 -0
- package/types/modules/Channel/context/utils.d.ts +5 -0
- package/types/modules/OpenChannel/context/utils.d.ts +5 -0
- package/types/modules/Thread/context/utils.d.ts +5 -0
- package/ui/Accordion.js +2 -2
- package/ui/AccordionGroup.js +1 -1
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +13 -13
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +14 -14
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +23 -23
- package/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
- package/ui/FileMessageItemBody.js +13 -13
- package/ui/FileViewer.js +19 -19
- package/ui/Header.js +6 -6
- 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 +4 -4
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
- package/ui/MentionLabel.js +19 -19
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +42 -42
- package/ui/MessageFeedbackFailedModal.js +13 -13
- package/ui/MessageFeedbackModal.js +13 -13
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +20 -20
- package/ui/MessageItemMenu.js +15 -15
- package/ui/MessageItemReactionMenu.js +16 -16
- package/ui/MessageMenu.js +16 -16
- package/ui/MessageSearchFileItem.js +17 -17
- package/ui/MessageSearchItem.js +12 -12
- package/ui/MessageStatus.js +15 -15
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +13 -13
- package/ui/MobileMenu.js +18 -18
- package/ui/Modal.js +12 -12
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +23 -23
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +24 -24
- package/ui/OpenchannelOGMessage.js +26 -26
- package/ui/OpenchannelThumbnailMessage.js +23 -23
- package/ui/OpenchannelUserMessage.js +24 -24
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +1 -1
- package/ui/QuoteMessage.js +12 -12
- package/ui/QuoteMessageInput.js +12 -12
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +14 -14
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +22 -22
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +10 -10
- package/ui/Toggle.js +4 -4
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +10 -10
- package/ui/UserListItem.js +19 -19
- package/ui/UserListItemMenu.js +17 -17
- package/ui/UserProfile.js +13 -13
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +14 -14
- package/ui/Word.js +19 -19
- package/useSendbirdStateContext.js +4 -4
- package/utils/message/isVoiceMessage.js +6 -6
- package/withSendbird.js +23 -23
- package/chunks/bundle-0TrdjZtT.js.map +0 -1
- package/chunks/bundle-1qCVlMXW.js.map +0 -1
- package/chunks/bundle-44-MrpOA.js.map +0 -1
- package/chunks/bundle-AMj0Sfpz.js.map +0 -1
- package/chunks/bundle-B8m-rKye.js.map +0 -1
- package/chunks/bundle-B9mN-BTk.js.map +0 -1
- package/chunks/bundle-BCWy1eRp.js.map +0 -1
- package/chunks/bundle-BJLoBQCe.js.map +0 -1
- package/chunks/bundle-BUm1uq9-.js.map +0 -1
- package/chunks/bundle-BWTxQFSl.js.map +0 -1
- package/chunks/bundle-BlbRAJmA.js.map +0 -1
- package/chunks/bundle-BtliqdNT.js.map +0 -1
- package/chunks/bundle-ByzlaN5j.js.map +0 -1
- package/chunks/bundle-C393fElF.js.map +0 -1
- package/chunks/bundle-C3nEgbrP.js.map +0 -1
- package/chunks/bundle-CBfyMFC9.js.map +0 -1
- package/chunks/bundle-CMjQ-cCa.js.map +0 -1
- package/chunks/bundle-CNCNuj5j.js.map +0 -1
- package/chunks/bundle-CO1y7D0u.js.map +0 -1
- package/chunks/bundle-CT-NzRzq.js.map +0 -1
- package/chunks/bundle-Cc0ueRDM.js.map +0 -1
- package/chunks/bundle-ClIzLKH-.js.map +0 -1
- package/chunks/bundle-CopK-w3W.js.map +0 -1
- package/chunks/bundle-D1D0Y4xo.js.map +0 -1
- package/chunks/bundle-D3T2AvSc.js.map +0 -1
- package/chunks/bundle-D5iVYlXZ.js.map +0 -1
- package/chunks/bundle-D8LhPr4e.js.map +0 -1
- package/chunks/bundle-DDJKNqBp.js.map +0 -1
- package/chunks/bundle-DF3W2Rb9.js.map +0 -1
- package/chunks/bundle-DJ_OSSMT.js.map +0 -1
- package/chunks/bundle-DLAbAE6W.js.map +0 -1
- package/chunks/bundle-DORSLJqP.js.map +0 -1
- package/chunks/bundle-DTKm24fD.js.map +0 -1
- package/chunks/bundle-DVVKBU16.js.map +0 -1
- package/chunks/bundle-DVYMPV3i.js.map +0 -1
- package/chunks/bundle-DhyxF0Xw.js.map +0 -1
- package/chunks/bundle-DiCbzkpv.js.map +0 -1
- package/chunks/bundle-Do_auElh.js.map +0 -1
- package/chunks/bundle-KhnlGrVI.js.map +0 -1
- package/chunks/bundle-LBCBjs9d.js.map +0 -1
- package/chunks/bundle-MA7RsJmb.js.map +0 -1
- package/chunks/bundle-d8oeBMu1.js.map +0 -1
- package/chunks/bundle-eyKmYzrx.js.map +0 -1
- package/chunks/bundle-fMVQGLVC.js.map +0 -1
- package/chunks/bundle-gXXMGw5_.js.map +0 -1
- package/chunks/bundle-l9S_J0D5.js.map +0 -1
- package/chunks/bundle-lg90t6G3.js.map +0 -1
- package/chunks/bundle-paSqms04.js.map +0 -1
- package/chunks/bundle-qENZsOZ-.js.map +0 -1
- package/chunks/bundle-vbkNCu0L.js.map +0 -1
- package/cjs/chunks/bundle-0VXVESR_.js.map +0 -1
- package/cjs/chunks/bundle-2GbPVyMk.js.map +0 -1
- package/cjs/chunks/bundle-6iYwpsr9.js.map +0 -1
- package/cjs/chunks/bundle-6nGIhFDY.js.map +0 -1
- package/cjs/chunks/bundle-8Yha19PO.js.map +0 -1
- package/cjs/chunks/bundle-BCTa9jYZ.js.map +0 -1
- package/cjs/chunks/bundle-BDCiiker.js.map +0 -1
- package/cjs/chunks/bundle-BF92QIXA.js.map +0 -1
- package/cjs/chunks/bundle-BJVsKj8Z.js.map +0 -1
- package/cjs/chunks/bundle-BVvNMYPW.js.map +0 -1
- package/cjs/chunks/bundle-BYZpi6aC.js.map +0 -1
- package/cjs/chunks/bundle-B_KeCbad.js.map +0 -1
- package/cjs/chunks/bundle-Bdw7goUn.js.map +0 -1
- package/cjs/chunks/bundle-Bj_gu5A-.js.map +0 -1
- package/cjs/chunks/bundle-BkM3gvpZ.js.map +0 -1
- package/cjs/chunks/bundle-Br-P6K7i.js.map +0 -1
- package/cjs/chunks/bundle-Bs2ljYon.js.map +0 -1
- package/cjs/chunks/bundle-C-CraE0i.js.map +0 -1
- package/cjs/chunks/bundle-C19bOC0u.js.map +0 -1
- package/cjs/chunks/bundle-C7qr3IUb.js.map +0 -1
- package/cjs/chunks/bundle-CE9MCMGn.js.map +0 -1
- package/cjs/chunks/bundle-CGLD5gdu.js.map +0 -1
- package/cjs/chunks/bundle-CIVNgKSc.js.map +0 -1
- package/cjs/chunks/bundle-CSL84Mpm.js.map +0 -1
- package/cjs/chunks/bundle-CS_3e7x6.js.map +0 -1
- package/cjs/chunks/bundle-CTbRos2s.js.map +0 -1
- package/cjs/chunks/bundle-CVicVe21.js.map +0 -1
- package/cjs/chunks/bundle-CWKemlba.js.map +0 -1
- package/cjs/chunks/bundle-Cg_wfVMn.js.map +0 -1
- package/cjs/chunks/bundle-Cij380So.js.map +0 -1
- package/cjs/chunks/bundle-Cnw2-Jv9.js.map +0 -1
- package/cjs/chunks/bundle-CqGDJCGV.js.map +0 -1
- package/cjs/chunks/bundle-Cw6VWgUq.js.map +0 -1
- package/cjs/chunks/bundle-Cx8OTcwG.js.map +0 -1
- package/cjs/chunks/bundle-CzH-slJQ.js.map +0 -1
- package/cjs/chunks/bundle-D1EvhGMx.js.map +0 -1
- package/cjs/chunks/bundle-D5p7gTdQ.js.map +0 -1
- package/cjs/chunks/bundle-D6u6GZVl.js.map +0 -1
- package/cjs/chunks/bundle-D8ZU5Tpa.js.map +0 -1
- package/cjs/chunks/bundle-DBfn8v_s.js.map +0 -1
- package/cjs/chunks/bundle-DVLcUvUT.js.map +0 -1
- package/cjs/chunks/bundle-D_qhuYi9.js.map +0 -1
- package/cjs/chunks/bundle-DcN1PHcN.js.map +0 -1
- package/cjs/chunks/bundle-DcUoqLZn.js.map +0 -1
- package/cjs/chunks/bundle-DfxuJbi-.js.map +0 -1
- package/cjs/chunks/bundle-DsHHiIba.js.map +0 -1
- package/cjs/chunks/bundle-DxLfx2gA.js.map +0 -1
- package/cjs/chunks/bundle-FVJAh-zj.js.map +0 -1
- package/cjs/chunks/bundle-HgxzcOKL.js.map +0 -1
- package/cjs/chunks/bundle-LoHka1ww.js.map +0 -1
- package/cjs/chunks/bundle-S_ftejkl.js.map +0 -1
- package/cjs/chunks/bundle-XLzzItQL.js.map +0 -1
- package/cjs/chunks/bundle-XZ6oPmao.js.map +0 -1
- package/cjs/chunks/bundle-bHxwJtYj.js.map +0 -1
- package/cjs/chunks/bundle-e1RcyXEh.js.map +0 -1
- package/cjs/chunks/bundle-gO1LxUb8.js.map +0 -1
- package/cjs/chunks/bundle-iXYg1WCn.js.map +0 -1
- package/cjs/chunks/bundle-j9d_a2oN.js.map +0 -1
- package/cjs/chunks/bundle-kff9Zj9O.js.map +0 -1
- package/cjs/chunks/bundle-qMFessk5.js.map +0 -1
- package/cjs/chunks/bundle-rjBp4QCu.js.map +0 -1
- package/cjs/chunks/bundle-tO_sLFMv.js.map +0 -1
- package/cjs/chunks/bundle-x9nFRwLY.js.map +0 -1
- package/cjs/chunks/bundle-yeSxeHF3.js.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import { IconTypes, IconColors } from '../ui/Icon.js';
|
|
4
4
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
5
|
-
import { g as getChannelTitle } from './bundle-
|
|
6
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
7
|
-
import { u as useLocalization } from './bundle-
|
|
5
|
+
import { g as getChannelTitle } from './bundle-1cAwf7t7.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-CdP-hmKe.js';
|
|
7
|
+
import { u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
8
8
|
import Header from '../ui/Header.js';
|
|
9
|
-
import { c as classnames } from './bundle-
|
|
10
|
-
import { u as useSendbird } from './bundle-
|
|
9
|
+
import { c as classnames } from './bundle-Depyu_hN.js';
|
|
10
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
11
11
|
|
|
12
12
|
var GroupChannelHeaderView = function (_a) {
|
|
13
13
|
var className = _a.className, currentChannel = _a.currentChannel, showSearchIcon = _a.showSearchIcon, onBackClick = _a.onBackClick, onSearchClick = _a.onSearchClick, onChatHeaderActionClick = _a.onChatHeaderActionClick,
|
|
@@ -29,4 +29,4 @@ var GroupChannelHeaderView = function (_a) {
|
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
export { GroupChannelHeaderView as G };
|
|
32
|
-
//# sourceMappingURL=bundle-
|
|
32
|
+
//# sourceMappingURL=bundle-CZkpHCWk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CZkpHCWk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -69,4 +69,4 @@ var MediaQueryProvider = function (props) {
|
|
|
69
69
|
var useMediaQueryContext = function () { return React__default.useContext(MediaQueryContext); };
|
|
70
70
|
|
|
71
71
|
export { MediaQueryProvider as M, useMediaQueryContext as u };
|
|
72
|
-
//# sourceMappingURL=bundle-
|
|
72
|
+
//# sourceMappingURL=bundle-CdP-hmKe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CdP-hmKe.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import { K } from './bundle-
|
|
3
|
-
import { T as TOKEN_TYPES, a as tokenizeMarkdown, U as USER_MENTION_PREFIX, b as getWhiteSpacePreservedText } from './bundle-
|
|
2
|
+
import { K } from './bundle-DcYOntrl.js';
|
|
3
|
+
import { T as TOKEN_TYPES, a as tokenizeMarkdown, U as USER_MENTION_PREFIX, b as getWhiteSpacePreservedText } from './bundle-D1rCw3BP.js';
|
|
4
4
|
import { useMessageContext } from '../Message/context.js';
|
|
5
5
|
import MentionLabel from '../ui/MentionLabel.js';
|
|
6
6
|
import LinkLabel from '../ui/LinkLabel.js';
|
|
7
|
-
import { a as LabelTypography, b as LabelColors } from './bundle-
|
|
7
|
+
import { a as LabelTypography, b as LabelColors } from './bundle-fQKlAiTA.js';
|
|
8
8
|
|
|
9
9
|
// this function is used to generate a unique key for token in message
|
|
10
10
|
// it changes with updated time and index
|
|
@@ -67,4 +67,4 @@ function TextFragment(_a) {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
export { TextFragment as T };
|
|
70
|
-
//# sourceMappingURL=bundle-
|
|
70
|
+
//# sourceMappingURL=bundle-Ce8Fifcc.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Ce8Fifcc.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { b as __awaiter, c as __generator, d as __rest, _ as __assign } from './bundle-
|
|
1
|
+
import { b as __awaiter, c as __generator, d as __rest, _ as __assign } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default, { useState, useRef, useCallback, createContext, useContext } from 'react';
|
|
3
3
|
import { Role } from '@sendbird/chat';
|
|
4
4
|
import { OpenChannel } from '@sendbird/chat/openChannel';
|
|
5
|
-
import { u as useSendbird } from './bundle-
|
|
6
|
-
import { a as MenuItem, b as MenuItems } from './bundle-
|
|
5
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
6
|
+
import { a as MenuItem, b as MenuItems } from './bundle-Csb5vSK0.js';
|
|
7
7
|
import 'react-dom';
|
|
8
|
-
import './bundle-
|
|
8
|
+
import './bundle-fQKlAiTA.js';
|
|
9
9
|
import IconButton from '../ui/IconButton.js';
|
|
10
|
-
import './bundle-
|
|
11
|
-
import { u as useLocalization } from './bundle-
|
|
12
|
-
import './bundle-
|
|
10
|
+
import './bundle-C1DkdOgw.js';
|
|
11
|
+
import { u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
12
|
+
import './bundle-_uuVkm91.js';
|
|
13
13
|
import '@sendbird/chat/groupChannel';
|
|
14
|
-
import { c as classnames } from './bundle-
|
|
14
|
+
import { c as classnames } from './bundle-Depyu_hN.js';
|
|
15
15
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
16
16
|
|
|
17
17
|
// Utility function to handle processing state and promise execution
|
|
@@ -277,4 +277,4 @@ var UserListItemMenu = function (props) {
|
|
|
277
277
|
};
|
|
278
278
|
|
|
279
279
|
export { UserListItemMenu as U, UserListItemMenuProvider as a, useUserListItemMenuContext as u };
|
|
280
|
-
//# sourceMappingURL=bundle-
|
|
280
|
+
//# sourceMappingURL=bundle-CehMKgqE.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CehMKgqE.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cf3WaJKk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { _ as __assign, b as __awaiter, c as __generator, a as __spreadArray } from './bundle-
|
|
1
|
+
import { _ as __assign, b as __awaiter, c as __generator, a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default, { useCallback, useContext, useMemo, useEffect, useRef } from 'react';
|
|
3
|
-
import { s as scrollIntoLast, c as compareIds, u as useSendMultipleFilesMessage, g as getParentMessageFrom, a as getNicknamesMapFromMembers } from './bundle-
|
|
4
|
-
import { U as UserProfileProvider } from './bundle-
|
|
5
|
-
import { s as shimExports, u as useStore, c as createStore } from './bundle-
|
|
3
|
+
import { s as scrollIntoLast, c as compareIds, u as useSendMultipleFilesMessage, g as getParentMessageFrom, a as getNicknamesMapFromMembers } from './bundle-C9axh9mr.js';
|
|
4
|
+
import { U as UserProfileProvider } from './bundle-hz51R24D.js';
|
|
5
|
+
import { s as shimExports, u as useStore, c as createStore } from './bundle-_uuVkm91.js';
|
|
6
6
|
import { ChannelType } from '@sendbird/chat';
|
|
7
|
-
import { p as pubSubTopics, b as PublishingModuleType, a as shouldPubSubPublishToThread, P as PUBSUB_TOPICS } from './bundle-
|
|
7
|
+
import { p as pubSubTopics, b as PublishingModuleType, a as shouldPubSubPublishToThread, P as PUBSUB_TOPICS } from './bundle-KKAuR1l2.js';
|
|
8
8
|
import { GroupChannelHandler } from '@sendbird/chat/groupChannel';
|
|
9
|
-
import { u as uuidv4 } from './bundle-
|
|
10
|
-
import { c as compareIds$1 } from './bundle-
|
|
9
|
+
import { u as uuidv4 } from './bundle-DkcC6use.js';
|
|
10
|
+
import { c as compareIds$1 } from './bundle-CEMgM75c.js';
|
|
11
11
|
import { ThreadListStateTypes, ParentMessageStateTypes, ChannelStateTypes } from '../Thread/context/types.js';
|
|
12
|
-
import { u as useSendbird } from './bundle-
|
|
13
|
-
import { u as useDeepCompareEffect } from './bundle-
|
|
12
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
13
|
+
import { u as useDeepCompareEffect } from './bundle-N66qXIDK.js';
|
|
14
14
|
import { SendingStatus, MessageMetaArray, MessageType } from '@sendbird/chat/message';
|
|
15
|
-
import './bundle-
|
|
16
|
-
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, i as META_ARRAY_VOICE_DURATION_KEY, j as META_ARRAY_MESSAGE_TYPE_KEY, k as META_ARRAY_MESSAGE_TYPE_VALUE__VOICE } from './bundle-
|
|
15
|
+
import './bundle-R3lU6xFE.js';
|
|
16
|
+
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, i as META_ARRAY_VOICE_DURATION_KEY, j as META_ARRAY_MESSAGE_TYPE_KEY, k as META_ARRAY_MESSAGE_TYPE_VALUE__VOICE } from './bundle-D0L6PgW1.js';
|
|
17
17
|
|
|
18
18
|
var PREV_THREADS_FETCH_SIZE = 30;
|
|
19
19
|
var NEXT_THREADS_FETCH_SIZE = 30;
|
|
@@ -1203,4 +1203,4 @@ var useThreadStore = function () {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
|
|
1205
1205
|
export { InternalThreadProvider as I, ThreadContext as T, ThreadManager as a, ThreadProvider as b, useThreadContext as c, useThread as u };
|
|
1206
|
-
//# sourceMappingURL=bundle-
|
|
1206
|
+
//# sourceMappingURL=bundle-Cg-nuOEa.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cg-nuOEa.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as isFileMessage, d as isMultipleFilesMessage } from './bundle-
|
|
2
|
-
import { K } from './bundle-
|
|
1
|
+
import { c as isFileMessage, d as isMultipleFilesMessage } from './bundle-C1DkdOgw.js';
|
|
2
|
+
import { K } from './bundle-DcYOntrl.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-CoOFFZVP.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CoOFFZVP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CrSfiqg5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { e as __extends, _ as __assign, a as __spreadArray } from './bundle-
|
|
1
|
+
import { e as __extends, _ as __assign, a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default, { useState, useRef, useCallback, useEffect, Children, createContext, useContext } from 'react';
|
|
3
3
|
import { createPortal } from 'react-dom';
|
|
4
|
-
import { c as classnames } from './bundle-
|
|
4
|
+
import { c as classnames } from './bundle-Depyu_hN.js';
|
|
5
5
|
import { Role } from '@sendbird/chat';
|
|
6
6
|
import { OpenChannel } from '@sendbird/chat/openChannel';
|
|
7
7
|
import SortByRow from '../ui/SortByRow.js';
|
|
8
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
8
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-fQKlAiTA.js';
|
|
9
9
|
import '../ui/IconButton.js';
|
|
10
|
-
import './bundle-
|
|
11
|
-
import './bundle-
|
|
12
|
-
import './bundle-
|
|
10
|
+
import './bundle-C1DkdOgw.js';
|
|
11
|
+
import './bundle-R3lU6xFE.js';
|
|
12
|
+
import './bundle-_uuVkm91.js';
|
|
13
13
|
import '@sendbird/chat/groupChannel';
|
|
14
14
|
|
|
15
15
|
var APP_LAYOUT_ROOT = 'sendbird-app__layout';
|
|
@@ -325,4 +325,4 @@ function ContextMenu(_a) {
|
|
|
325
325
|
}
|
|
326
326
|
|
|
327
327
|
export { APP_LAYOUT_ROOT as A, BottomSheetMenuItem as B, ContextMenu as C, EMOJI_MENU_ROOT_ID as E, MessageMenuProvider as M, OperatorMenuItem as O, MenuItem$1 as a, MenuItems as b, MenuItem as c, MENU_ROOT_ID as d, MENU_OBSERVING_CLASS_NAME as e, EmojiListItems as f, getObservingId as g, MuteMenuItem as h, EmojiReactionListRoot as i, MenuRoot as j, useMessageMenuContext as u };
|
|
328
|
-
//# sourceMappingURL=bundle-
|
|
328
|
+
//# sourceMappingURL=bundle-Csb5vSK0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Csb5vSK0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -106,4 +106,4 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
106
106
|
};
|
|
107
107
|
|
|
108
108
|
export { __assign as _, __spreadArray as a, __awaiter as b, __generator as c, __rest as d, __extends as e };
|
|
109
|
-
//# sourceMappingURL=bundle-
|
|
109
|
+
//# sourceMappingURL=bundle-Ct6UvMpf.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Ct6UvMpf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React__default, { useRef, useContext, useEffect, useMemo, useState } from 'react';
|
|
2
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
2
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-fQKlAiTA.js';
|
|
3
3
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
4
|
-
import { A as Avatar } from './bundle-
|
|
5
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
6
|
-
import { u as uuidv4 } from './bundle-
|
|
7
|
-
import { c as classnames } from './bundle-
|
|
8
|
-
import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-
|
|
9
|
-
import { M as MessageInputKeys } from './bundle-
|
|
10
|
-
import { b as __awaiter, c as __generator } from './bundle-
|
|
11
|
-
import { u as useSendbird } from './bundle-
|
|
4
|
+
import { A as Avatar } from './bundle-B-Edojfg.js';
|
|
5
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
6
|
+
import { u as uuidv4 } from './bundle-DkcC6use.js';
|
|
7
|
+
import { c as classnames } from './bundle-Depyu_hN.js';
|
|
8
|
+
import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-B3yTQ0Z7.js';
|
|
9
|
+
import { M as MessageInputKeys } from './bundle-2lW3GY3q.js';
|
|
10
|
+
import { b as __awaiter, c as __generator } from './bundle-Ct6UvMpf.js';
|
|
11
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
12
12
|
|
|
13
13
|
function SuggestedUserMentionItem(props) {
|
|
14
14
|
var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
|
|
@@ -170,4 +170,4 @@ var SuggestedMentionListView = function (props) {
|
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
export { SuggestedMentionListView as S };
|
|
173
|
-
//# sourceMappingURL=bundle-
|
|
173
|
+
//# sourceMappingURL=bundle-CuUKUrG-.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CuUKUrG-.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { _ as __assign, b as __awaiter, c as __generator, a as __spreadArray, d as __rest } from './bundle-
|
|
1
|
+
import { _ as __assign, b as __awaiter, c as __generator, a as __spreadArray, d as __rest } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default, { useState, useContext, useEffect, useMemo, useCallback } from 'react';
|
|
3
3
|
import { Role } from '@sendbird/chat';
|
|
4
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
4
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
5
5
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
6
|
-
import { U as UserListItemMenu } from './bundle-
|
|
6
|
+
import { U as UserListItemMenu } from './bundle-CehMKgqE.js';
|
|
7
7
|
import { UserListItem } from '../ui/UserListItem.js';
|
|
8
|
-
import { M as Modal } from './bundle-
|
|
9
|
-
import { n as noop } from './bundle-
|
|
10
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
11
|
-
import { u as useChannelSettings } from './bundle-
|
|
12
|
-
import './bundle-
|
|
13
|
-
import { u as useSendbird } from './bundle-
|
|
8
|
+
import { M as Modal } from './bundle-2_53NpyI.js';
|
|
9
|
+
import { n as noop } from './bundle-Depyu_hN.js';
|
|
10
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-WaLKJmyQ.js';
|
|
11
|
+
import { u as useChannelSettings } from './bundle-Bj5rQ8wE.js';
|
|
12
|
+
import './bundle-fQKlAiTA.js';
|
|
13
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
14
14
|
|
|
15
15
|
function MembersModal(_a) {
|
|
16
16
|
var _this = this;
|
|
@@ -260,4 +260,4 @@ var MemberList = function (_a) {
|
|
|
260
260
|
};
|
|
261
261
|
|
|
262
262
|
export { MemberList as M };
|
|
263
|
-
//# sourceMappingURL=bundle-
|
|
263
|
+
//# sourceMappingURL=bundle-CxKTsLWf.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CxKTsLWf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
4
|
-
import { u as useThread } from './bundle-
|
|
3
|
+
import { S as SuggestedMentionListView } from './bundle-CuUKUrG-.js';
|
|
4
|
+
import { u as useThread } from './bundle-Cg-nuOEa.js';
|
|
5
5
|
|
|
6
6
|
var SuggestedMentionList = function (props) {
|
|
7
7
|
var currentChannel = useThread().state.currentChannel;
|
|
@@ -9,4 +9,4 @@ var SuggestedMentionList = function (props) {
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { SuggestedMentionList as S };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-CyHhxPAj.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CyHhxPAj.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default, { useState } from 'react';
|
|
3
|
-
import { u as useLongPress } from './bundle-
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
5
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
6
|
-
import { n as noop } from './bundle-
|
|
7
|
-
import { i as isVoiceMessage } from './bundle-
|
|
8
|
-
import { a as getLastMessageText, b as getTotalMembers, M as MessageStatus, c as getLastMessageCreatedAt, d as getChannelUnreadMessageCount } from './bundle-
|
|
3
|
+
import { u as useLongPress } from './bundle-DaWd2ypz.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
5
|
+
import { u as useMediaQueryContext } from './bundle-CdP-hmKe.js';
|
|
6
|
+
import { n as noop } from './bundle-Depyu_hN.js';
|
|
7
|
+
import { i as isVoiceMessage } from './bundle-C1DkdOgw.js';
|
|
8
|
+
import { a as getLastMessageText, b as getTotalMembers, M as MessageStatus, c as getLastMessageCreatedAt, d as getChannelUnreadMessageCount } from './bundle-D16WJT22.js';
|
|
9
9
|
import { TypingIndicatorText } from '../GroupChannel/components/TypingIndicator.js';
|
|
10
10
|
import Badge from '../ui/Badge.js';
|
|
11
11
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
12
12
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
13
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
13
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-fQKlAiTA.js';
|
|
14
14
|
import MentionUserLabel from '../ui/MentionUserLabel.js';
|
|
15
|
-
import { M as Modal } from './bundle-
|
|
15
|
+
import { M as Modal } from './bundle-2_53NpyI.js';
|
|
16
16
|
import TextButton from '../ui/TextButton.js';
|
|
17
|
-
import { g as getChannelPreviewMessage } from './bundle-
|
|
18
|
-
import { u as useSendbird } from './bundle-
|
|
17
|
+
import { g as getChannelPreviewMessage } from './bundle-D1rCw3BP.js';
|
|
18
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
19
19
|
|
|
20
20
|
var GroupChannelListItemView = function (_a) {
|
|
21
21
|
var channel = _a.channel, tabIndex = _a.tabIndex, isTyping = _a.isTyping, isSelected = _a.isSelected, channelName = _a.channelName, _b = _a.isMessageStatusEnabled, isMessageStatusEnabled = _b === void 0 ? true : _b, _c = _a.onClick, onClick = _c === void 0 ? noop : _c, _d = _a.onLeaveChannel, onLeaveChannel = _d === void 0 ? function () { return Promise.resolve(); } : _d, renderChannelAction = _a.renderChannelAction;
|
|
@@ -89,4 +89,4 @@ var GroupChannelListItemView = function (_a) {
|
|
|
89
89
|
};
|
|
90
90
|
|
|
91
91
|
export { GroupChannelListItemView as G };
|
|
92
|
-
//# sourceMappingURL=bundle-
|
|
92
|
+
//# sourceMappingURL=bundle-Cz8AMD06.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cz8AMD06.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -38,4 +38,4 @@ var CACHED_MESSAGE_TEMPLATES_KEY = 'sendbird_message_templates_key';
|
|
|
38
38
|
var MESSAGE_TEMPLATE_KEY = 'message_template';
|
|
39
39
|
|
|
40
40
|
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, CACHED_MESSAGE_TEMPLATES_TOKEN_KEY as C, DELIVERY_RECEIPT as D, MESSAGE_TEMPLATE_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S, VOICE_RECORDER_AUDIO_BIT_RATE as V, VOICE_MESSAGE_FILE_NAME as a, VOICE_MESSAGE_MIME_TYPE as b, VOICE_PLAYER_AUDIO_ID as c, VOICE_RECORDER_AUDIO_SAMPLE_RATE as d, SCROLL_BOTTOM_DELAY_FOR_SEND as e, SCROLL_BOTTOM_DELAY_FOR_FETCH as f, VOICE_RECORDER_DEFAULT_MIN as g, VOICE_RECORDER_CLICK_BUFFER_TIME as h, META_ARRAY_VOICE_DURATION_KEY as i, META_ARRAY_MESSAGE_TYPE_KEY as j, META_ARRAY_MESSAGE_TYPE_VALUE__VOICE as k, VOICE_MESSAGE_FILE_NAME__XM4A as l, VOICE_MESSAGE_MIME_TYPE__XM4A as m, VOICE_PLAYER_ROOT_ID as n, SLIDER_BUTTON_ICON_SIDE_LENGTH as o, CACHED_MESSAGE_TEMPLATES_KEY as p, DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT as q, DEFAULT_UPLOAD_SIZE_LIMIT as r, VOICE_RECORDER_DEFAULT_MAX as s };
|
|
41
|
-
//# sourceMappingURL=bundle-
|
|
41
|
+
//# sourceMappingURL=bundle-D0L6PgW1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D0L6PgW1.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-HZKDnM49.js';
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
|
-
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
5
|
+
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-fQKlAiTA.js';
|
|
6
6
|
import Loader from '../ui/Loader.js';
|
|
7
|
-
import { a as isDefaultChannelName, D as isTemplateMessage, k as isImage, A as isGif, j as isVideo, E as isAudio, F as isVoiceMessageMimeType, G as isSentStatus } from './bundle-
|
|
7
|
+
import { a as isDefaultChannelName, D as isTemplateMessage, k as isImage, A as isGif, j as isVideo, E as isAudio, F as isVoiceMessageMimeType, G as isSentStatus } from './bundle-C1DkdOgw.js';
|
|
8
8
|
import { OutgoingMessageStates, getOutgoingMessageState } from '../utils/message/getOutgoingMessageState.js';
|
|
9
|
-
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-
|
|
10
|
-
import { u as useLocalization } from './bundle-
|
|
11
|
-
import { c as classnames } from './bundle-
|
|
9
|
+
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-BXvAzDZJ.js';
|
|
10
|
+
import { u as useLocalization } from './bundle-R3lU6xFE.js';
|
|
11
|
+
import { c as classnames } from './bundle-Depyu_hN.js';
|
|
12
12
|
|
|
13
13
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
14
14
|
var _a;
|
|
@@ -136,4 +136,4 @@ function MessageStatus(_a) {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
export { MessageStatus as M, getLastMessageText as a, getTotalMembers as b, getLastMessageCreatedAt as c, getChannelUnreadMessageCount as d, MessageStatusTypes as e, getChannelTitle as g };
|
|
139
|
-
//# sourceMappingURL=bundle-
|
|
139
|
+
//# sourceMappingURL=bundle-D16WJT22.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D16WJT22.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { _ as __assign, b as __awaiter, c as __generator } from './bundle-
|
|
2
|
-
import { S as SendbirdContext, s as shimExports } from './bundle-
|
|
1
|
+
import { _ as __assign, b as __awaiter, c as __generator } from './bundle-Ct6UvMpf.js';
|
|
2
|
+
import { S as SendbirdContext, s as shimExports } from './bundle-_uuVkm91.js';
|
|
3
3
|
import { useContext, useCallback, useMemo } from 'react';
|
|
4
4
|
import SendbirdChat, { SendbirdProduct, SendbirdPlatform, DeviceOsPlatform } from '@sendbird/chat';
|
|
5
5
|
import { GroupChannelModule } from '@sendbird/chat/groupChannel';
|
|
@@ -28,7 +28,7 @@ function initSDK(_a) {
|
|
|
28
28
|
params.customWebSocketHost = customWebSocketHost;
|
|
29
29
|
return SendbirdChat.init(params);
|
|
30
30
|
}
|
|
31
|
-
var APP_VERSION_STRING = '3.16.
|
|
31
|
+
var APP_VERSION_STRING = '3.16.8-rc';
|
|
32
32
|
/**
|
|
33
33
|
* Sets up the Sendbird SDK after initialization.
|
|
34
34
|
* Configures necessary settings, adds extensions, sets the platform, and configures the session handler if provided.
|
|
@@ -269,4 +269,4 @@ var useSendbird = function () {
|
|
|
269
269
|
};
|
|
270
270
|
|
|
271
271
|
export { useSendbird as u };
|
|
272
|
-
//# sourceMappingURL=bundle-
|
|
272
|
+
//# sourceMappingURL=bundle-D1a-rTbm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D1a-rTbm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
|
|
3
3
|
var USER_MENTION_PREFIX = '@';
|
|
4
4
|
|
|
@@ -237,4 +237,4 @@ function getWhiteSpacePreservedText(text) {
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
export { TOKEN_TYPES as T, USER_MENTION_PREFIX as U, tokenizeMarkdown as a, getWhiteSpacePreservedText as b, getChannelPreviewMessage as g, tokenizeMessage as t };
|
|
240
|
-
//# sourceMappingURL=bundle-
|
|
240
|
+
//# sourceMappingURL=bundle-D1rCw3BP.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D1rCw3BP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D75AdVCK.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 { a as USER_MENTION_TEMP_CHAR } from './bundle-
|
|
5
|
-
import { a 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-2lW3GY3q.js';
|
|
4
|
+
import { a as USER_MENTION_TEMP_CHAR } from './bundle-B3yTQ0Z7.js';
|
|
5
|
+
import { a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
6
|
+
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-QihXeAbF.js';
|
|
7
|
+
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-DFf2e71F.js';
|
|
8
|
+
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-Bv_69NKT.js';
|
|
9
9
|
|
|
10
10
|
function renderToString(_a) {
|
|
11
11
|
var userId = _a.userId, nickname = _a.nickname;
|
|
@@ -240,4 +240,4 @@ function getURIListText(e) {
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
export { extractTextAndMentions as e, isChannelTypeSupportsMultipleFilesMessage as i, nodeListToArray as n, renderToString as r, sanitizeString as s, usePaste as u };
|
|
243
|
-
//# sourceMappingURL=bundle-
|
|
243
|
+
//# sourceMappingURL=bundle-D7nKxrzD.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D7nKxrzD.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-Ct6UvMpf.js';
|
|
2
2
|
import { SendingStatus } from '@sendbird/chat/message';
|
|
3
|
-
import './bundle-
|
|
3
|
+
import './bundle-R3lU6xFE.js';
|
|
4
4
|
|
|
5
5
|
var scrollToRenderedMessage = function (scrollRef, initialTimeStamp, setIsScrolled) {
|
|
6
6
|
var _a;
|
|
@@ -122,4 +122,4 @@ var isAboutSame = function (a, b, px) {
|
|
|
122
122
|
};
|
|
123
123
|
|
|
124
124
|
export { isAboutSame as a, isDisabledBecauseFrozen as b, isDisabledBecauseMuted as c, scrollToRenderedMessage as d, getNicknamesMapFromMembers as e, getAllEmojisMapFromEmojiContainer as g, isOperator as i, mergeAndSortMessages as m, passUnsuccessfullMessages as p, scrollIntoLast as s };
|
|
125
|
-
//# sourceMappingURL=bundle-
|
|
125
|
+
//# sourceMappingURL=bundle-DFXEooDc.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DFXEooDc.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DFf2e71F.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-2_53NpyI.js';
|
|
3
|
+
import './bundle-Ct6UvMpf.js';
|
|
4
|
+
import './bundle-fQKlAiTA.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-R3lU6xFE.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle-DQ6tm8L9.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-DKq5_uvf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DKq5_uvf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { TypingIndicator } from '../GroupChannel/components/TypingIndicator.js';
|
|
3
|
-
import { T as TypingIndicatorType } from './bundle-
|
|
3
|
+
import { T as TypingIndicatorType } from './bundle-BLOfYmdq.js';
|
|
4
4
|
import ConnectionStatus from '../ui/ConnectionStatus.js';
|
|
5
5
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
6
|
-
import { d as deleteNullish } from './bundle-
|
|
7
|
-
import { u as useSendbird } from './bundle-
|
|
6
|
+
import { d as deleteNullish } from './bundle-Depyu_hN.js';
|
|
7
|
+
import { u as useSendbird } from './bundle-D1a-rTbm.js';
|
|
8
8
|
|
|
9
9
|
var GroupChannelUIView = function (props) {
|
|
10
10
|
var _a, _b, _c, _d;
|
|
@@ -43,4 +43,4 @@ var GroupChannelUIView = function (props) {
|
|
|
43
43
|
};
|
|
44
44
|
|
|
45
45
|
export { GroupChannelUIView as G };
|
|
46
|
-
//# sourceMappingURL=bundle-
|
|
46
|
+
//# sourceMappingURL=bundle-DMKL2LZ_.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DMKL2LZ_.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|