@sendbird/uikit-react 3.16.8 → 3.16.9
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 +6 -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 +23 -23
- 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-B7-mUZu7.js → bundle-B5YnH_bZ.js} +1 -1
- package/chunks/bundle-B5YnH_bZ.js.map +1 -0
- package/chunks/{bundle-B_A8Uj8b.js → bundle-B7LJP6uD.js} +3 -3
- package/chunks/{bundle-B_A8Uj8b.js.map → bundle-B7LJP6uD.js.map} +1 -1
- package/chunks/{bundle-SvjGCfne.js → bundle-B83hoJ_j.js} +3 -3
- package/chunks/{bundle-SvjGCfne.js.map → bundle-B83hoJ_j.js.map} +1 -1
- package/chunks/{bundle-4D4_7cbS.js → bundle-BBzNJkTC.js} +1 -1
- package/chunks/bundle-BBzNJkTC.js.map +1 -0
- package/chunks/{bundle-BgDkvAUr.js → bundle-BID6Oznq.js} +3 -3
- package/chunks/{bundle-BgDkvAUr.js.map → bundle-BID6Oznq.js.map} +1 -1
- package/chunks/{bundle-DXIpH3W2.js → bundle-BIpsQoZM.js} +1 -1
- package/chunks/bundle-BIpsQoZM.js.map +1 -0
- package/chunks/{bundle-B-UR5uUY.js → bundle-BKZt9o1F.js} +1 -1
- package/chunks/{bundle-B-UR5uUY.js.map → bundle-BKZt9o1F.js.map} +1 -1
- package/chunks/{bundle-BRZ-fk0E.js → bundle-BSKWHbiZ.js} +10 -10
- package/chunks/{bundle-BRZ-fk0E.js.map → bundle-BSKWHbiZ.js.map} +1 -1
- package/chunks/{bundle-BOQAPdnF.js → bundle-BTRsBhSP.js} +1 -1
- package/chunks/bundle-BTRsBhSP.js.map +1 -0
- package/chunks/{bundle-ZIcy4GZM.js → bundle-BVGPrS-0.js} +4 -4
- package/chunks/{bundle-ZIcy4GZM.js.map → bundle-BVGPrS-0.js.map} +1 -1
- package/chunks/{bundle-CDV8AYgt.js → bundle-BX570l_k.js} +3 -3
- package/chunks/bundle-BX570l_k.js.map +1 -0
- package/chunks/{bundle-BsjPoFDW.js → bundle-BYR5uV_H.js} +1 -1
- package/chunks/{bundle-BsjPoFDW.js.map → bundle-BYR5uV_H.js.map} +1 -1
- package/chunks/{bundle-CLx3vwwI.js → bundle-BZ2wHbrz.js} +1 -1
- package/chunks/bundle-BZ2wHbrz.js.map +1 -0
- package/chunks/{bundle-sRAn8KYg.js → bundle-BZABTuI8.js} +8 -8
- package/chunks/bundle-BZABTuI8.js.map +1 -0
- package/chunks/{bundle-BiU5GOJa.js → bundle-BjQE3gm1.js} +5 -5
- package/chunks/{bundle-BiU5GOJa.js.map → bundle-BjQE3gm1.js.map} +1 -1
- package/chunks/{bundle-DIDUURtl.js → bundle-Bmdb9pIK.js} +3 -3
- package/chunks/{bundle-DIDUURtl.js.map → bundle-Bmdb9pIK.js.map} +1 -1
- package/chunks/{bundle-DTS-uU1_.js → bundle-BmyxRq9a.js} +14 -14
- package/chunks/{bundle-DTS-uU1_.js.map → bundle-BmyxRq9a.js.map} +1 -1
- package/chunks/{bundle-QZcjovdG.js → bundle-BntU6xha.js} +1 -1
- package/chunks/bundle-BntU6xha.js.map +1 -0
- package/chunks/{bundle-DzzUrNmL.js → bundle-BoCpB627.js} +1 -1
- package/chunks/bundle-BoCpB627.js.map +1 -0
- package/chunks/{bundle-CwfU7XnU.js → bundle-Bpv5h56D.js} +1 -1
- package/chunks/bundle-Bpv5h56D.js.map +1 -0
- package/chunks/{bundle-S-aXl3jq.js → bundle-Bt2DqAYD.js} +12 -12
- package/chunks/{bundle-S-aXl3jq.js.map → bundle-Bt2DqAYD.js.map} +1 -1
- package/chunks/{bundle-DG85l4tk.js → bundle-BugRLq09.js} +14 -14
- package/chunks/{bundle-DG85l4tk.js.map → bundle-BugRLq09.js.map} +1 -1
- package/chunks/{bundle-2EbTbHya.js → bundle-BvGPxdgc.js} +1 -1
- package/chunks/{bundle-2EbTbHya.js.map → bundle-BvGPxdgc.js.map} +1 -1
- package/chunks/{bundle-DlgrDAZX.js → bundle-ByFGGKX5.js} +2 -2
- package/chunks/{bundle-DlgrDAZX.js.map → bundle-ByFGGKX5.js.map} +1 -1
- package/chunks/{bundle-C_Bj-oeJ.js → bundle-ByIYMALs.js} +3 -3
- package/chunks/{bundle-C_Bj-oeJ.js.map → bundle-ByIYMALs.js.map} +1 -1
- package/chunks/{bundle-Bs0S8wQP.js → bundle-C3Ez17kh.js} +4 -4
- package/chunks/bundle-C3Ez17kh.js.map +1 -0
- package/chunks/{bundle-B0UH4qgo.js → bundle-C5Ih9B7Z.js} +1 -1
- package/chunks/bundle-C5Ih9B7Z.js.map +1 -0
- package/chunks/{bundle-C63EZHDP.js → bundle-C5qGxiDg.js} +5 -5
- package/chunks/{bundle-C63EZHDP.js.map → bundle-C5qGxiDg.js.map} +1 -1
- package/chunks/{bundle-DDSun-_c.js → bundle-C7EvDKbp.js} +4 -4
- package/chunks/{bundle-DDSun-_c.js.map → bundle-C7EvDKbp.js.map} +1 -1
- package/chunks/{bundle-uV_TEAvL.js → bundle-CDxHBrmg.js} +6 -6
- package/chunks/{bundle-uV_TEAvL.js.map → bundle-CDxHBrmg.js.map} +1 -1
- package/chunks/{bundle-19RRma1T.js → bundle-CNfgarJU.js} +10 -10
- package/chunks/{bundle-19RRma1T.js.map → bundle-CNfgarJU.js.map} +1 -1
- package/chunks/{bundle-Dokasjr1.js → bundle-CQY1Vhgt.js} +1 -1
- package/chunks/bundle-CQY1Vhgt.js.map +1 -0
- package/chunks/{bundle-CAJl5N4R.js → bundle-CQmP70o-.js} +4 -4
- package/chunks/bundle-CQmP70o-.js.map +1 -0
- package/chunks/{bundle-BEAKdhJw.js → bundle-CTtRmLaQ.js} +1 -1
- package/chunks/bundle-CTtRmLaQ.js.map +1 -0
- package/chunks/{bundle-DytwP8RF.js → bundle-CUG8aQUl.js} +7 -7
- package/chunks/{bundle-DytwP8RF.js.map → bundle-CUG8aQUl.js.map} +1 -1
- package/chunks/{bundle-CddXYET0.js → bundle-CcE78WZ0.js} +5 -5
- package/chunks/{bundle-CddXYET0.js.map → bundle-CcE78WZ0.js.map} +1 -1
- package/chunks/{bundle-CSJ53xaT.js → bundle-CdILp5Ht.js} +465 -392
- package/chunks/bundle-CdILp5Ht.js.map +1 -0
- package/chunks/{bundle-3w_Dk0EP.js → bundle-CjtOeKDH.js} +2 -2
- package/chunks/bundle-CjtOeKDH.js.map +1 -0
- package/chunks/{bundle-UWwF1Hyj.js → bundle-CkN5BpDO.js} +12 -12
- package/chunks/bundle-CkN5BpDO.js.map +1 -0
- package/chunks/{bundle-DD67EHrK.js → bundle-ClP2v0RX.js} +3 -3
- package/chunks/bundle-ClP2v0RX.js.map +1 -0
- package/chunks/{bundle-D90Dai1z.js → bundle-CmEWKIf3.js} +3 -3
- package/chunks/bundle-CmEWKIf3.js.map +1 -0
- package/chunks/{bundle-CekAYJN_.js → bundle-CoqWx1L6.js} +3 -3
- package/chunks/bundle-CoqWx1L6.js.map +1 -0
- package/chunks/{bundle-CieSinpC.js → bundle-Cs7mmSeL.js} +5 -5
- package/chunks/bundle-Cs7mmSeL.js.map +1 -0
- package/chunks/{bundle-DzoOdl4j.js → bundle-CvXosgMy.js} +6 -6
- package/chunks/bundle-CvXosgMy.js.map +1 -0
- package/chunks/{bundle-6PF_dVw5.js → bundle-CwFhwvI0.js} +7 -7
- package/chunks/{bundle-6PF_dVw5.js.map → bundle-CwFhwvI0.js.map} +1 -1
- package/chunks/{bundle-BVUryxPg.js → bundle-Cx0ij_p6.js} +2 -2
- package/chunks/{bundle-BVUryxPg.js.map → bundle-Cx0ij_p6.js.map} +1 -1
- package/chunks/{bundle-ClNB_q5u.js → bundle-Cx8h9ZUu.js} +1 -1
- package/chunks/bundle-Cx8h9ZUu.js.map +1 -0
- package/chunks/{bundle-DYGSQKvt.js → bundle-CxvcwY-S.js} +2 -2
- package/chunks/bundle-CxvcwY-S.js.map +1 -0
- package/chunks/{bundle-OVaef-VB.js → bundle-D4Qx18jn.js} +9 -9
- package/chunks/bundle-D4Qx18jn.js.map +1 -0
- package/chunks/{bundle-NfL9hHdo.js → bundle-D6fvLhSj.js} +1 -1
- package/chunks/bundle-D6fvLhSj.js.map +1 -0
- package/chunks/{bundle-C5UyLngq.js → bundle-D7cX9Fjm.js} +4 -4
- package/chunks/bundle-D7cX9Fjm.js.map +1 -0
- package/chunks/{bundle-Dr92I1-B.js → bundle-D9ylcucS.js} +1 -1
- package/chunks/bundle-D9ylcucS.js.map +1 -0
- package/chunks/{bundle-DPMmCwJa.js → bundle-DCmMZLn8.js} +4 -4
- package/chunks/bundle-DCmMZLn8.js.map +1 -0
- package/chunks/{bundle-DyJdx5kB.js → bundle-DFYOnVXR.js} +1 -1
- package/chunks/bundle-DFYOnVXR.js.map +1 -0
- package/chunks/{bundle-C7tB0Kjq.js → bundle-DFoa4qG2.js} +12 -12
- package/chunks/{bundle-C7tB0Kjq.js.map → bundle-DFoa4qG2.js.map} +1 -1
- package/chunks/{bundle-Cs90CrUq.js → bundle-DKW7_WWj.js} +8 -8
- package/chunks/bundle-DKW7_WWj.js.map +1 -0
- package/chunks/{bundle-BodstWU6.js → bundle-DLBFowSs.js} +4 -4
- package/chunks/{bundle-BodstWU6.js.map → bundle-DLBFowSs.js.map} +1 -1
- package/chunks/{bundle-C_glFM4Z.js → bundle-DLOgtfcc.js} +9 -9
- package/chunks/{bundle-C_glFM4Z.js.map → bundle-DLOgtfcc.js.map} +1 -1
- package/chunks/{bundle-C0VuTt3c.js → bundle-DMq4hDJ1.js} +6 -6
- package/chunks/bundle-DMq4hDJ1.js.map +1 -0
- package/chunks/{bundle-FqbH02lt.js → bundle-DOwPISeS.js} +1 -1
- package/chunks/bundle-DOwPISeS.js.map +1 -0
- package/chunks/{bundle-DTtdpBmF.js → bundle-DQI9pg8J.js} +8 -8
- package/chunks/bundle-DQI9pg8J.js.map +1 -0
- package/chunks/{bundle-DrPUrygn.js → bundle-DYBstvIJ.js} +2 -2
- package/chunks/{bundle-DrPUrygn.js.map → bundle-DYBstvIJ.js.map} +1 -1
- package/chunks/{bundle-Bo4ebSiS.js → bundle-DZz3KH2o.js} +12 -12
- package/chunks/{bundle-Bo4ebSiS.js.map → bundle-DZz3KH2o.js.map} +1 -1
- package/chunks/{bundle-BSNODDBN.js → bundle-D_w8WEfL.js} +2 -2
- package/chunks/bundle-D_w8WEfL.js.map +1 -0
- package/chunks/{bundle-2DKN7_KU.js → bundle-DcJrfmnR.js} +1 -1
- package/chunks/bundle-DcJrfmnR.js.map +1 -0
- package/chunks/{bundle-DgT_60cR.js → bundle-DgySHYkz.js} +1 -1
- package/chunks/bundle-DgySHYkz.js.map +1 -0
- package/chunks/{bundle-CMa_LzhI.js → bundle-DjDbKets.js} +4 -4
- package/chunks/bundle-DjDbKets.js.map +1 -0
- package/chunks/{bundle-K9rk8Bfi.js → bundle-DkDPgJrt.js} +8 -8
- package/chunks/bundle-DkDPgJrt.js.map +1 -0
- package/chunks/{bundle-BbdfL5hx.js → bundle-DkXJrVqz.js} +1 -1
- package/chunks/{bundle-BbdfL5hx.js.map → bundle-DkXJrVqz.js.map} +1 -1
- package/chunks/{bundle-Bx-11rmr.js → bundle-DnyHxqQ0.js} +1 -1
- package/chunks/bundle-DnyHxqQ0.js.map +1 -0
- package/chunks/{bundle-ahZJSNwR.js → bundle-Dpbh5U_k.js} +15 -15
- package/chunks/{bundle-ahZJSNwR.js.map → bundle-Dpbh5U_k.js.map} +1 -1
- package/chunks/{bundle-Q-b7_fsl.js → bundle-DrsCAuld.js} +7 -7
- package/chunks/bundle-DrsCAuld.js.map +1 -0
- package/chunks/{bundle-CKfMCXxd.js → bundle-DuxNodq3.js} +12 -12
- package/chunks/{bundle-CKfMCXxd.js.map → bundle-DuxNodq3.js.map} +1 -1
- package/chunks/{bundle-i3mSZHsu.js → bundle-Dxu9l-xP.js} +4 -4
- package/chunks/{bundle-i3mSZHsu.js.map → bundle-Dxu9l-xP.js.map} +1 -1
- package/chunks/{bundle-DuSlvN3-.js → bundle-Eoom7SNM.js} +1 -1
- package/chunks/{bundle-DuSlvN3-.js.map → bundle-Eoom7SNM.js.map} +1 -1
- package/chunks/{bundle-Be1fe9ZF.js → bundle-KRH4HO2b.js} +1 -1
- package/chunks/bundle-KRH4HO2b.js.map +1 -0
- package/chunks/{bundle-B_wXyf2_.js → bundle-MU-n4WB7.js} +4 -4
- package/chunks/bundle-MU-n4WB7.js.map +1 -0
- package/chunks/{bundle-29anv6Qs.js → bundle-T8eF3MdZ.js} +1 -1
- package/chunks/bundle-T8eF3MdZ.js.map +1 -0
- package/chunks/{bundle-BrjY7wQc.js → bundle-Wf7fEqRo.js} +2 -2
- package/chunks/{bundle-BrjY7wQc.js.map → bundle-Wf7fEqRo.js.map} +1 -1
- package/chunks/{bundle-B14ovUBm.js → bundle-XT9o5ifH.js} +33 -33
- package/chunks/{bundle-B14ovUBm.js.map → bundle-XT9o5ifH.js.map} +1 -1
- package/chunks/{bundle-BkjPzgla.js → bundle-ZNC8CUp_.js} +1 -1
- package/chunks/bundle-ZNC8CUp_.js.map +1 -0
- package/chunks/{bundle-CUOEzxFF.js → bundle-_QhzybuL.js} +1 -1
- package/chunks/bundle-_QhzybuL.js.map +1 -0
- package/chunks/{bundle-DrefLz0G.js → bundle-bKvynVo7.js} +1 -1
- package/chunks/{bundle-DrefLz0G.js.map → bundle-bKvynVo7.js.map} +1 -1
- package/chunks/{bundle-9MYFaUTM.js → bundle-bk-seQq_.js} +11 -11
- package/chunks/{bundle-9MYFaUTM.js.map → bundle-bk-seQq_.js.map} +1 -1
- package/chunks/{bundle-lzpjHgR_.js → bundle-jH_7tVuA.js} +5 -5
- package/chunks/{bundle-lzpjHgR_.js.map → bundle-jH_7tVuA.js.map} +1 -1
- package/chunks/{bundle-CyyqWqaj.js → bundle-nHCcLxQh.js} +7 -7
- package/chunks/bundle-nHCcLxQh.js.map +1 -0
- package/chunks/{bundle-D-UKgtlz.js → bundle-paE3yw-E.js} +1 -1
- package/chunks/bundle-paE3yw-E.js.map +1 -0
- package/chunks/{bundle-pOfT343E.js → bundle-tjmSjVLm.js} +4 -4
- package/chunks/bundle-tjmSjVLm.js.map +1 -0
- package/chunks/{bundle-DA4za5Rj.js → bundle-w0Ht9vHs.js} +4 -4
- package/chunks/bundle-w0Ht9vHs.js.map +1 -0
- package/chunks/{bundle-BcieCrHN.js → bundle-x_BFBJ3V.js} +3 -3
- package/chunks/bundle-x_BFBJ3V.js.map +1 -0
- package/chunks/{bundle-Bz9CQOX4.js → bundle-xdBGfpYx.js} +7 -7
- package/chunks/{bundle-Bz9CQOX4.js.map → bundle-xdBGfpYx.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 +23 -23
- 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-DDPA24Ym.js → bundle-4KV6_8wa.js} +1 -1
- package/cjs/chunks/bundle-4KV6_8wa.js.map +1 -0
- package/cjs/chunks/{bundle-BijTJ0c2.js → bundle-5zygIx0U.js} +7 -7
- package/cjs/chunks/bundle-5zygIx0U.js.map +1 -0
- package/cjs/chunks/{bundle-Be5cYG-8.js → bundle-71dqgbWK.js} +1 -1
- package/cjs/chunks/bundle-71dqgbWK.js.map +1 -0
- package/cjs/chunks/{bundle-BtJsON3R.js → bundle-8acuAHPD.js} +1 -1
- package/cjs/chunks/bundle-8acuAHPD.js.map +1 -0
- package/cjs/chunks/{bundle-D8mb9MKq.js → bundle-93bWzNKo.js} +7 -7
- package/cjs/chunks/{bundle-D8mb9MKq.js.map → bundle-93bWzNKo.js.map} +1 -1
- package/cjs/chunks/{bundle-CATF4h3Q.js → bundle-9YGI1VxU.js} +4 -4
- package/cjs/chunks/bundle-9YGI1VxU.js.map +1 -0
- package/cjs/chunks/{bundle-BmhAGvYn.js → bundle-9Zp-yHMR.js} +6 -6
- package/cjs/chunks/bundle-9Zp-yHMR.js.map +1 -0
- package/cjs/chunks/{bundle-By9bOgFx.js → bundle-B1DjOWvS.js} +11 -11
- package/cjs/chunks/{bundle-By9bOgFx.js.map → bundle-B1DjOWvS.js.map} +1 -1
- package/cjs/chunks/{bundle-BWWIsE09.js → bundle-B1baPRRe.js} +4 -4
- package/cjs/chunks/bundle-B1baPRRe.js.map +1 -0
- package/cjs/chunks/{bundle-DXcy9R4M.js → bundle-B8JKZQ6b.js} +1 -1
- package/cjs/chunks/{bundle-DXcy9R4M.js.map → bundle-B8JKZQ6b.js.map} +1 -1
- package/cjs/chunks/{bundle-KpCtn3E5.js → bundle-BB7JE5l0.js} +1 -1
- package/cjs/chunks/bundle-BB7JE5l0.js.map +1 -0
- package/cjs/chunks/{bundle-C3Wsgq6X.js → bundle-BDeo4Lwx.js} +2 -2
- package/cjs/chunks/{bundle-C3Wsgq6X.js.map → bundle-BDeo4Lwx.js.map} +1 -1
- package/cjs/chunks/{bundle-CjxRN7kP.js → bundle-BE0tBkIE.js} +1 -1
- package/cjs/chunks/{bundle-CjxRN7kP.js.map → bundle-BE0tBkIE.js.map} +1 -1
- package/cjs/chunks/{bundle-CzQWSkYD.js → bundle-BE91vSly.js} +1 -1
- package/cjs/chunks/bundle-BE91vSly.js.map +1 -0
- package/cjs/chunks/{bundle-C7NIZXsi.js → bundle-BISpveo1.js} +5 -5
- package/cjs/chunks/{bundle-C7NIZXsi.js.map → bundle-BISpveo1.js.map} +1 -1
- package/cjs/chunks/{bundle-B7aEyxDJ.js → bundle-BJWbfoHg.js} +2 -2
- package/cjs/chunks/bundle-BJWbfoHg.js.map +1 -0
- package/cjs/chunks/{bundle-ya6_vMhO.js → bundle-BSB0IxBQ.js} +1 -1
- package/cjs/chunks/bundle-BSB0IxBQ.js.map +1 -0
- package/cjs/chunks/{bundle-Dr-ZZhAr.js → bundle-BT-tqAqU.js} +3 -3
- package/cjs/chunks/{bundle-Dr-ZZhAr.js.map → bundle-BT-tqAqU.js.map} +1 -1
- package/cjs/chunks/{bundle-DA3KLmoV.js → bundle-BVKENLWb.js} +12 -12
- package/cjs/chunks/{bundle-DA3KLmoV.js.map → bundle-BVKENLWb.js.map} +1 -1
- package/cjs/chunks/{bundle-D83t7kQt.js → bundle-BWY5IXv2.js} +1 -1
- package/cjs/chunks/bundle-BWY5IXv2.js.map +1 -0
- package/cjs/chunks/{bundle-CtcrPWbo.js → bundle-BWd9-rRw.js} +1 -1
- package/cjs/chunks/bundle-BWd9-rRw.js.map +1 -0
- package/cjs/chunks/{bundle-B5DImaot.js → bundle-BXOwJFmM.js} +8 -8
- package/cjs/chunks/bundle-BXOwJFmM.js.map +1 -0
- package/cjs/chunks/{bundle-p5AMM6bU.js → bundle-BYpTrdEd.js} +5 -5
- package/cjs/chunks/{bundle-p5AMM6bU.js.map → bundle-BYpTrdEd.js.map} +1 -1
- package/cjs/chunks/{bundle-Ct_lW8hI.js → bundle-BZWQ1NTC.js} +14 -14
- package/cjs/chunks/bundle-BZWQ1NTC.js.map +1 -0
- package/cjs/chunks/{bundle-CgxoBZ0q.js → bundle-Bcubj7Gw.js} +8 -8
- package/cjs/chunks/bundle-Bcubj7Gw.js.map +1 -0
- package/cjs/chunks/{bundle-tKhabQAd.js → bundle-Bl0gl4VD.js} +4 -4
- package/cjs/chunks/bundle-Bl0gl4VD.js.map +1 -0
- package/cjs/chunks/{bundle-D8786bwt.js → bundle-BlVuZEFn.js} +4 -4
- package/cjs/chunks/bundle-BlVuZEFn.js.map +1 -0
- package/cjs/chunks/{bundle-JUvZGt3Q.js → bundle-Btaa15jO.js} +1 -1
- package/cjs/chunks/bundle-Btaa15jO.js.map +1 -0
- package/cjs/chunks/{bundle-Iem46lqC.js → bundle-BzwktTo_.js} +4 -4
- package/cjs/chunks/bundle-BzwktTo_.js.map +1 -0
- package/cjs/chunks/{bundle-DSRFKM2R.js → bundle-BzxkBOcv.js} +1 -1
- package/cjs/chunks/bundle-BzxkBOcv.js.map +1 -0
- package/cjs/chunks/{bundle-B0xh7srZ.js → bundle-C-c3245O.js} +1 -1
- package/cjs/chunks/bundle-C-c3245O.js.map +1 -0
- package/cjs/chunks/{bundle-Cqyxf0LC.js → bundle-C1QA55RE.js} +3 -3
- package/cjs/chunks/bundle-C1QA55RE.js.map +1 -0
- package/cjs/chunks/{bundle-C4xLg4S4.js → bundle-C8fqEvFP.js} +1 -1
- package/cjs/chunks/bundle-C8fqEvFP.js.map +1 -0
- package/cjs/chunks/{bundle-Bkuc5bwC.js → bundle-CAcwnk2Q.js} +7 -7
- package/cjs/chunks/bundle-CAcwnk2Q.js.map +1 -0
- package/cjs/chunks/{bundle-Byf3JHBz.js → bundle-CBwYCeZb.js} +1 -1
- package/cjs/chunks/{bundle-Byf3JHBz.js.map → bundle-CBwYCeZb.js.map} +1 -1
- package/cjs/chunks/{bundle-C5ckuHVD.js → bundle-CHXOpzUL.js} +10 -10
- package/cjs/chunks/bundle-CHXOpzUL.js.map +1 -0
- package/cjs/chunks/{bundle-VtTkC7o3.js → bundle-CPZpGOT4.js} +4 -4
- package/cjs/chunks/{bundle-VtTkC7o3.js.map → bundle-CPZpGOT4.js.map} +1 -1
- package/cjs/chunks/{bundle-DphM1mNA.js → bundle-CSBpiQKa.js} +1 -1
- package/cjs/chunks/bundle-CSBpiQKa.js.map +1 -0
- package/cjs/chunks/{bundle-l-Hf-1I0.js → bundle-CToE0GyB.js} +12 -12
- package/cjs/chunks/{bundle-l-Hf-1I0.js.map → bundle-CToE0GyB.js.map} +1 -1
- package/cjs/chunks/{bundle-CWTqtnQO.js → bundle-CUl9TucN.js} +1 -1
- package/cjs/chunks/bundle-CUl9TucN.js.map +1 -0
- package/cjs/chunks/{bundle-CDhba0Ik.js → bundle-CXy_f9TW.js} +1 -1
- package/cjs/chunks/bundle-CXy_f9TW.js.map +1 -0
- package/cjs/chunks/{bundle-Dv7MCQ5s.js → bundle-CYQ8PYWj.js} +3 -3
- package/cjs/chunks/bundle-CYQ8PYWj.js.map +1 -0
- package/cjs/chunks/{bundle-BqhdTNA2.js → bundle-CZjDXe9_.js} +4 -4
- package/cjs/chunks/bundle-CZjDXe9_.js.map +1 -0
- package/cjs/chunks/{bundle-wHImRt4w.js → bundle-CdFtSIKT.js} +12 -12
- package/cjs/chunks/bundle-CdFtSIKT.js.map +1 -0
- package/cjs/chunks/{bundle-BuqLUmbr.js → bundle-Ce65LzvC.js} +10 -10
- package/cjs/chunks/{bundle-BuqLUmbr.js.map → bundle-Ce65LzvC.js.map} +1 -1
- package/cjs/chunks/{bundle-D_w5bnPd.js → bundle-CnSWKGc4.js} +4 -4
- package/cjs/chunks/bundle-CnSWKGc4.js.map +1 -0
- package/cjs/chunks/{bundle-CoLGyVM7.js → bundle-ConY3ho5.js} +1 -1
- package/cjs/chunks/bundle-ConY3ho5.js.map +1 -0
- package/cjs/chunks/{bundle-EaE84c1u.js → bundle-D0jB-ZsW.js} +1 -1
- package/cjs/chunks/bundle-D0jB-ZsW.js.map +1 -0
- package/cjs/chunks/{bundle-C3rM3Ztv.js → bundle-D1gn3U0O.js} +7 -7
- package/cjs/chunks/bundle-D1gn3U0O.js.map +1 -0
- package/cjs/chunks/{bundle-Wz8wcC8J.js → bundle-D4UzJ-7q.js} +2 -2
- package/cjs/chunks/bundle-D4UzJ-7q.js.map +1 -0
- package/cjs/chunks/{bundle-CHbACwVy.js → bundle-DECaw4lg.js} +1 -1
- package/cjs/chunks/bundle-DECaw4lg.js.map +1 -0
- package/cjs/chunks/{bundle-CsYWZ0_f.js → bundle-DEL52Z11.js} +33 -33
- package/cjs/chunks/{bundle-CsYWZ0_f.js.map → bundle-DEL52Z11.js.map} +1 -1
- package/cjs/chunks/{bundle-CXS1Xff3.js → bundle-DHK1ET58.js} +6 -6
- package/cjs/chunks/bundle-DHK1ET58.js.map +1 -0
- package/cjs/chunks/{bundle-BLSItw7_.js → bundle-DMeIUsXL.js} +1 -1
- package/cjs/chunks/bundle-DMeIUsXL.js.map +1 -0
- package/cjs/chunks/{bundle-B4NcyELU.js → bundle-DOEBAaWF.js} +14 -14
- package/cjs/chunks/{bundle-B4NcyELU.js.map → bundle-DOEBAaWF.js.map} +1 -1
- package/cjs/chunks/{bundle-CroWYp-8.js → bundle-DOuI16f9.js} +8 -8
- package/cjs/chunks/{bundle-CroWYp-8.js.map → bundle-DOuI16f9.js.map} +1 -1
- package/cjs/chunks/{bundle-CmAcdA9c.js → bundle-DP2LknUT.js} +1 -1
- package/cjs/chunks/bundle-DP2LknUT.js.map +1 -0
- package/cjs/chunks/{bundle-DCtoNM-7.js → bundle-DV03EViB.js} +2 -2
- package/cjs/chunks/bundle-DV03EViB.js.map +1 -0
- package/cjs/chunks/{bundle-jK41VUwI.js → bundle-DWfLEP_0.js} +2 -2
- package/cjs/chunks/{bundle-jK41VUwI.js.map → bundle-DWfLEP_0.js.map} +1 -1
- package/cjs/chunks/{bundle-COpa1hF1.js → bundle-DdnCy8Je.js} +6 -6
- package/cjs/chunks/{bundle-COpa1hF1.js.map → bundle-DdnCy8Je.js.map} +1 -1
- package/cjs/chunks/{bundle-BLORPb9I.js → bundle-DhNJkytP.js} +1 -1
- package/cjs/chunks/bundle-DhNJkytP.js.map +1 -0
- package/cjs/chunks/{bundle-DJsZItzb.js → bundle-DhWVYFSK.js} +4 -4
- package/cjs/chunks/bundle-DhWVYFSK.js.map +1 -0
- package/cjs/chunks/{bundle-C_bbb-dp.js → bundle-DmRLBKRr.js} +3 -3
- package/cjs/chunks/bundle-DmRLBKRr.js.map +1 -0
- package/cjs/chunks/{bundle-CWWDc-jq.js → bundle-DmhwxDam.js} +3 -3
- package/cjs/chunks/bundle-DmhwxDam.js.map +1 -0
- package/cjs/chunks/{bundle-bbeoas0y.js → bundle-DnDLZR4B.js} +3 -3
- package/cjs/chunks/{bundle-bbeoas0y.js.map → bundle-DnDLZR4B.js.map} +1 -1
- package/cjs/chunks/{bundle-D4ttYKan.js → bundle-DrnK8T0C.js} +12 -12
- package/cjs/chunks/{bundle-D4ttYKan.js.map → bundle-DrnK8T0C.js.map} +1 -1
- package/cjs/chunks/{bundle-BmW2Yn3Q.js → bundle-DsFHmqiX.js} +15 -15
- package/cjs/chunks/{bundle-BmW2Yn3Q.js.map → bundle-DsFHmqiX.js.map} +1 -1
- package/cjs/chunks/{bundle-48-ANevp.js → bundle-Dy1QxkVu.js} +465 -392
- package/cjs/chunks/bundle-Dy1QxkVu.js.map +1 -0
- package/cjs/chunks/{bundle-BJXK4UV6.js → bundle-DzHIrb6T.js} +3 -3
- package/cjs/chunks/{bundle-BJXK4UV6.js.map → bundle-DzHIrb6T.js.map} +1 -1
- package/cjs/chunks/{bundle-Sibh5a_G.js → bundle-JJrresQy.js} +4 -4
- package/cjs/chunks/bundle-JJrresQy.js.map +1 -0
- package/cjs/chunks/{bundle-DgQ9fMEI.js → bundle-MlGqIlFr.js} +1 -1
- package/cjs/chunks/bundle-MlGqIlFr.js.map +1 -0
- package/cjs/chunks/{bundle-IKpW2l2j.js → bundle-O_B1b_E5.js} +7 -7
- package/cjs/chunks/bundle-O_B1b_E5.js.map +1 -0
- package/cjs/chunks/{bundle-Dd5sHG-K.js → bundle-PLOfmvPv.js} +2 -2
- package/cjs/chunks/bundle-PLOfmvPv.js.map +1 -0
- package/cjs/chunks/{bundle-u7llDhg-.js → bundle-Q5vg6IPH.js} +1 -1
- package/cjs/chunks/bundle-Q5vg6IPH.js.map +1 -0
- package/cjs/chunks/{bundle-DjML1ul2.js → bundle-QDr-C4Po.js} +1 -1
- package/cjs/chunks/bundle-QDr-C4Po.js.map +1 -0
- package/cjs/chunks/{bundle-BGJJ5sP3.js → bundle-QWl8QUDg.js} +12 -12
- package/cjs/chunks/{bundle-BGJJ5sP3.js.map → bundle-QWl8QUDg.js.map} +1 -1
- package/cjs/chunks/{bundle-CynaFF2G.js → bundle-S-xcssWx.js} +1 -1
- package/cjs/chunks/bundle-S-xcssWx.js.map +1 -0
- package/cjs/chunks/{bundle-DXwnWGR6.js → bundle-VmBxGdtN.js} +9 -9
- package/cjs/chunks/{bundle-DXwnWGR6.js.map → bundle-VmBxGdtN.js.map} +1 -1
- package/cjs/chunks/{bundle-B84lWsGH.js → bundle-XTL3uso6.js} +1 -1
- package/cjs/chunks/bundle-XTL3uso6.js.map +1 -0
- package/cjs/chunks/{bundle-WotxJ_Ab.js → bundle-_5GthuIG.js} +8 -8
- package/cjs/chunks/bundle-_5GthuIG.js.map +1 -0
- package/cjs/chunks/{bundle-BFyUna1U.js → bundle-edLI5BAx.js} +4 -4
- package/cjs/chunks/{bundle-BFyUna1U.js.map → bundle-edLI5BAx.js.map} +1 -1
- package/cjs/chunks/{bundle-COEM7gAr.js → bundle-fuib3cfF.js} +9 -9
- package/cjs/chunks/{bundle-COEM7gAr.js.map → bundle-fuib3cfF.js.map} +1 -1
- package/cjs/chunks/{bundle-Czozc_b7.js → bundle-jS-nlWKb.js} +5 -5
- package/cjs/chunks/{bundle-Czozc_b7.js.map → bundle-jS-nlWKb.js.map} +1 -1
- package/cjs/chunks/{bundle-Ddc4NjWH.js → bundle-l3NOX5JV.js} +1 -1
- package/cjs/chunks/bundle-l3NOX5JV.js.map +1 -0
- package/cjs/chunks/{bundle-CXN-DL6s.js → bundle-lMI-nvUj.js} +3 -3
- package/cjs/chunks/bundle-lMI-nvUj.js.map +1 -0
- package/cjs/chunks/{bundle-CT350f9x.js → bundle-mD8GLt1R.js} +5 -5
- package/cjs/chunks/bundle-mD8GLt1R.js.map +1 -0
- package/cjs/chunks/{bundle-ZS9cLNMS.js → bundle-qYRd0njx.js} +3 -3
- package/cjs/chunks/bundle-qYRd0njx.js.map +1 -0
- package/cjs/chunks/{bundle-0zoyDqJ2.js → bundle-qlSPX_jd.js} +5 -5
- package/cjs/chunks/{bundle-0zoyDqJ2.js.map → bundle-qlSPX_jd.js.map} +1 -1
- package/cjs/chunks/{bundle-BfLPNtFS.js → bundle-uvtr8RQn.js} +3 -3
- package/cjs/chunks/bundle-uvtr8RQn.js.map +1 -0
- package/cjs/chunks/{bundle-BIZUP_xN.js → bundle-x_V9zseQ.js} +2 -2
- package/cjs/chunks/bundle-x_V9zseQ.js.map +1 -0
- package/cjs/chunks/{bundle-B_kiHl24.js → bundle-yI1WWKuh.js} +4 -4
- package/cjs/chunks/bundle-yI1WWKuh.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/dist/index.css +5 -19
- 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 +4 -4
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- 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-29anv6Qs.js.map +0 -1
- package/chunks/bundle-2DKN7_KU.js.map +0 -1
- package/chunks/bundle-3w_Dk0EP.js.map +0 -1
- package/chunks/bundle-4D4_7cbS.js.map +0 -1
- package/chunks/bundle-B0UH4qgo.js.map +0 -1
- package/chunks/bundle-B7-mUZu7.js.map +0 -1
- package/chunks/bundle-BEAKdhJw.js.map +0 -1
- package/chunks/bundle-BOQAPdnF.js.map +0 -1
- package/chunks/bundle-BSNODDBN.js.map +0 -1
- package/chunks/bundle-B_wXyf2_.js.map +0 -1
- package/chunks/bundle-BcieCrHN.js.map +0 -1
- package/chunks/bundle-Be1fe9ZF.js.map +0 -1
- package/chunks/bundle-BkjPzgla.js.map +0 -1
- package/chunks/bundle-Bs0S8wQP.js.map +0 -1
- package/chunks/bundle-Bx-11rmr.js.map +0 -1
- package/chunks/bundle-C0VuTt3c.js.map +0 -1
- package/chunks/bundle-C5UyLngq.js.map +0 -1
- package/chunks/bundle-CAJl5N4R.js.map +0 -1
- package/chunks/bundle-CDV8AYgt.js.map +0 -1
- package/chunks/bundle-CLx3vwwI.js.map +0 -1
- package/chunks/bundle-CMa_LzhI.js.map +0 -1
- package/chunks/bundle-CSJ53xaT.js.map +0 -1
- package/chunks/bundle-CUOEzxFF.js.map +0 -1
- package/chunks/bundle-CekAYJN_.js.map +0 -1
- package/chunks/bundle-CieSinpC.js.map +0 -1
- package/chunks/bundle-ClNB_q5u.js.map +0 -1
- package/chunks/bundle-Cs90CrUq.js.map +0 -1
- package/chunks/bundle-CwfU7XnU.js.map +0 -1
- package/chunks/bundle-CyyqWqaj.js.map +0 -1
- package/chunks/bundle-D-UKgtlz.js.map +0 -1
- package/chunks/bundle-D90Dai1z.js.map +0 -1
- package/chunks/bundle-DA4za5Rj.js.map +0 -1
- package/chunks/bundle-DD67EHrK.js.map +0 -1
- package/chunks/bundle-DPMmCwJa.js.map +0 -1
- package/chunks/bundle-DTtdpBmF.js.map +0 -1
- package/chunks/bundle-DXIpH3W2.js.map +0 -1
- package/chunks/bundle-DYGSQKvt.js.map +0 -1
- package/chunks/bundle-DgT_60cR.js.map +0 -1
- package/chunks/bundle-Dokasjr1.js.map +0 -1
- package/chunks/bundle-Dr92I1-B.js.map +0 -1
- package/chunks/bundle-DyJdx5kB.js.map +0 -1
- package/chunks/bundle-DzoOdl4j.js.map +0 -1
- package/chunks/bundle-DzzUrNmL.js.map +0 -1
- package/chunks/bundle-FqbH02lt.js.map +0 -1
- package/chunks/bundle-K9rk8Bfi.js.map +0 -1
- package/chunks/bundle-NfL9hHdo.js.map +0 -1
- package/chunks/bundle-OVaef-VB.js.map +0 -1
- package/chunks/bundle-Q-b7_fsl.js.map +0 -1
- package/chunks/bundle-QZcjovdG.js.map +0 -1
- package/chunks/bundle-UWwF1Hyj.js.map +0 -1
- package/chunks/bundle-pOfT343E.js.map +0 -1
- package/chunks/bundle-sRAn8KYg.js.map +0 -1
- package/cjs/chunks/bundle-48-ANevp.js.map +0 -1
- package/cjs/chunks/bundle-B0xh7srZ.js.map +0 -1
- package/cjs/chunks/bundle-B5DImaot.js.map +0 -1
- package/cjs/chunks/bundle-B7aEyxDJ.js.map +0 -1
- package/cjs/chunks/bundle-B84lWsGH.js.map +0 -1
- package/cjs/chunks/bundle-BIZUP_xN.js.map +0 -1
- package/cjs/chunks/bundle-BLORPb9I.js.map +0 -1
- package/cjs/chunks/bundle-BLSItw7_.js.map +0 -1
- package/cjs/chunks/bundle-BWWIsE09.js.map +0 -1
- package/cjs/chunks/bundle-B_kiHl24.js.map +0 -1
- package/cjs/chunks/bundle-Be5cYG-8.js.map +0 -1
- package/cjs/chunks/bundle-BfLPNtFS.js.map +0 -1
- package/cjs/chunks/bundle-BijTJ0c2.js.map +0 -1
- package/cjs/chunks/bundle-Bkuc5bwC.js.map +0 -1
- package/cjs/chunks/bundle-BmhAGvYn.js.map +0 -1
- package/cjs/chunks/bundle-BqhdTNA2.js.map +0 -1
- package/cjs/chunks/bundle-BtJsON3R.js.map +0 -1
- package/cjs/chunks/bundle-C3rM3Ztv.js.map +0 -1
- package/cjs/chunks/bundle-C4xLg4S4.js.map +0 -1
- package/cjs/chunks/bundle-C5ckuHVD.js.map +0 -1
- package/cjs/chunks/bundle-CATF4h3Q.js.map +0 -1
- package/cjs/chunks/bundle-CDhba0Ik.js.map +0 -1
- package/cjs/chunks/bundle-CHbACwVy.js.map +0 -1
- package/cjs/chunks/bundle-CT350f9x.js.map +0 -1
- package/cjs/chunks/bundle-CWTqtnQO.js.map +0 -1
- package/cjs/chunks/bundle-CWWDc-jq.js.map +0 -1
- package/cjs/chunks/bundle-CXN-DL6s.js.map +0 -1
- package/cjs/chunks/bundle-CXS1Xff3.js.map +0 -1
- package/cjs/chunks/bundle-C_bbb-dp.js.map +0 -1
- package/cjs/chunks/bundle-CgxoBZ0q.js.map +0 -1
- package/cjs/chunks/bundle-CmAcdA9c.js.map +0 -1
- package/cjs/chunks/bundle-CoLGyVM7.js.map +0 -1
- package/cjs/chunks/bundle-Cqyxf0LC.js.map +0 -1
- package/cjs/chunks/bundle-Ct_lW8hI.js.map +0 -1
- package/cjs/chunks/bundle-CtcrPWbo.js.map +0 -1
- package/cjs/chunks/bundle-CynaFF2G.js.map +0 -1
- package/cjs/chunks/bundle-CzQWSkYD.js.map +0 -1
- package/cjs/chunks/bundle-D83t7kQt.js.map +0 -1
- package/cjs/chunks/bundle-D8786bwt.js.map +0 -1
- package/cjs/chunks/bundle-DCtoNM-7.js.map +0 -1
- package/cjs/chunks/bundle-DDPA24Ym.js.map +0 -1
- package/cjs/chunks/bundle-DJsZItzb.js.map +0 -1
- package/cjs/chunks/bundle-DSRFKM2R.js.map +0 -1
- package/cjs/chunks/bundle-D_w5bnPd.js.map +0 -1
- package/cjs/chunks/bundle-Dd5sHG-K.js.map +0 -1
- package/cjs/chunks/bundle-Ddc4NjWH.js.map +0 -1
- package/cjs/chunks/bundle-DgQ9fMEI.js.map +0 -1
- package/cjs/chunks/bundle-DjML1ul2.js.map +0 -1
- package/cjs/chunks/bundle-DphM1mNA.js.map +0 -1
- package/cjs/chunks/bundle-Dv7MCQ5s.js.map +0 -1
- package/cjs/chunks/bundle-EaE84c1u.js.map +0 -1
- package/cjs/chunks/bundle-IKpW2l2j.js.map +0 -1
- package/cjs/chunks/bundle-Iem46lqC.js.map +0 -1
- package/cjs/chunks/bundle-JUvZGt3Q.js.map +0 -1
- package/cjs/chunks/bundle-KpCtn3E5.js.map +0 -1
- package/cjs/chunks/bundle-Sibh5a_G.js.map +0 -1
- package/cjs/chunks/bundle-WotxJ_Ab.js.map +0 -1
- package/cjs/chunks/bundle-Wz8wcC8J.js.map +0 -1
- package/cjs/chunks/bundle-ZS9cLNMS.js.map +0 -1
- package/cjs/chunks/bundle-tKhabQAd.js.map +0 -1
- package/cjs/chunks/bundle-u7llDhg-.js.map +0 -1
- package/cjs/chunks/bundle-wHImRt4w.js.map +0 -1
- package/cjs/chunks/bundle-ya6_vMhO.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React__default, { useContext } from 'react';
|
|
2
|
-
import { u as useSendbird } from './bundle-
|
|
2
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* user profile goes deep inside the component tree
|
|
@@ -27,4 +27,4 @@ var UserProfileProvider = function (_a) {
|
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
export { UserProfileProvider as U, useUserProfileContext as u };
|
|
30
|
-
//# sourceMappingURL=bundle-
|
|
30
|
+
//# sourceMappingURL=bundle-CjtOeKDH.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CjtOeKDH.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-BvGPxdgc.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-BX570l_k.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-MU-n4WB7.js';
|
|
5
|
+
import { u as useMediaQueryContext } from './bundle-DgySHYkz.js';
|
|
6
|
+
import { n as noop } from './bundle-BoCpB627.js';
|
|
7
|
+
import { i as isVoiceMessage } from './bundle-CDxHBrmg.js';
|
|
8
|
+
import { a as getLastMessageText, b as getTotalMembers, M as MessageStatus, c as getLastMessageCreatedAt, d as getChannelUnreadMessageCount } from './bundle-DkDPgJrt.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-CoqWx1L6.js';
|
|
14
14
|
import MentionUserLabel from '../ui/MentionUserLabel.js';
|
|
15
|
-
import { M as Modal } from './bundle-
|
|
15
|
+
import { M as Modal } from './bundle-BZABTuI8.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-Cx0ij_p6.js';
|
|
18
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.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-CkN5BpDO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CkN5BpDO.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { d as isMultipleFilesMessage } from './bundle-
|
|
2
|
-
import { K } from './bundle-
|
|
1
|
+
import { d as isMultipleFilesMessage } from './bundle-CDxHBrmg.js';
|
|
2
|
+
import { K } from './bundle-Eoom7SNM.js';
|
|
3
3
|
|
|
4
4
|
function getModalDeleteMessageTitle(stringSet, message) {
|
|
5
5
|
return K(message)
|
|
@@ -13,4 +13,4 @@ function getModalDeleteMessageTitle(stringSet, message) {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export { getModalDeleteMessageTitle as g };
|
|
16
|
-
//# sourceMappingURL=bundle-
|
|
16
|
+
//# sourceMappingURL=bundle-ClP2v0RX.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-ClP2v0RX.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as LabelStringSet } from './bundle-
|
|
2
|
-
import { a as isDefaultChannelName } from './bundle-
|
|
1
|
+
import { c as LabelStringSet } from './bundle-CoqWx1L6.js';
|
|
2
|
+
import { a as isDefaultChannelName } from './bundle-CDxHBrmg.js';
|
|
3
3
|
|
|
4
4
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
5
5
|
var _a;
|
|
@@ -23,4 +23,4 @@ var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
export { getChannelTitle as g };
|
|
26
|
-
//# sourceMappingURL=bundle-
|
|
26
|
+
//# sourceMappingURL=bundle-CmEWKIf3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CmEWKIf3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-BvGPxdgc.js';
|
|
2
2
|
import React__default, { forwardRef } from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-BKZt9o1F.js';
|
|
4
4
|
|
|
5
5
|
var Typography = {
|
|
6
6
|
H_1: 'H_1',
|
|
@@ -83,4 +83,4 @@ var LabelColors = Colors;
|
|
|
83
83
|
var LabelStringSet = getStringSet('en');
|
|
84
84
|
|
|
85
85
|
export { Label as L, LabelTypography as a, LabelColors as b, LabelStringSet as c, changeColorToClassName as d };
|
|
86
|
-
//# sourceMappingURL=bundle-
|
|
86
|
+
//# sourceMappingURL=bundle-CoqWx1L6.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CoqWx1L6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React__default, { createContext, useReducer, useContext } from 'react';
|
|
2
|
-
import { _ as __assign } from './bundle-
|
|
3
|
-
import { l as VOICE_MESSAGE_FILE_NAME__XM4A, m as VOICE_MESSAGE_MIME_TYPE__XM4A, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, n as VOICE_PLAYER_ROOT_ID, c as VOICE_PLAYER_AUDIO_ID } from './bundle-
|
|
4
|
-
import { a as isSafari } from './bundle-
|
|
5
|
-
import { u as useSendbird } from './bundle-
|
|
2
|
+
import { _ as __assign } from './bundle-BvGPxdgc.js';
|
|
3
|
+
import { l as VOICE_MESSAGE_FILE_NAME__XM4A, m as VOICE_MESSAGE_MIME_TYPE__XM4A, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, n as VOICE_PLAYER_ROOT_ID, c as VOICE_PLAYER_AUDIO_ID } from './bundle-T8eF3MdZ.js';
|
|
4
|
+
import { a as isSafari } from './bundle-KRH4HO2b.js';
|
|
5
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
6
6
|
|
|
7
7
|
var INITIALIZE_AUDIO_UNIT = 'INITIALIZE_AUDIO_UNIT';
|
|
8
8
|
var RESET_AUDIO_UNIT = 'RESET_AUDIO_UNIT';
|
|
@@ -278,4 +278,4 @@ var VoicePlayerProvider = function (_a) {
|
|
|
278
278
|
var useVoicePlayerContext = function () { return useContext(Context); };
|
|
279
279
|
|
|
280
280
|
export { AudioUnitDefaultValue as A, VOICE_PLAYER_STATUS as V, VoicePlayerProvider as a, ALL as b, generateGroupKey as g, useVoicePlayerContext as u };
|
|
281
|
-
//# sourceMappingURL=bundle-
|
|
281
|
+
//# sourceMappingURL=bundle-Cs7mmSeL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cs7mmSeL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { createPortal } from 'react-dom';
|
|
3
|
-
import { A as Avatar } from './bundle-
|
|
3
|
+
import { A as Avatar } from './bundle-DCmMZLn8.js';
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
|
-
import { L as Label, a as LabelTypography, b as LabelColors, c as LabelStringSet } from './bundle-
|
|
6
|
-
import { h as isSupportedFileView, j as isVideo, k as isImage } from './bundle-
|
|
5
|
+
import { L as Label, a as LabelTypography, b as LabelColors, c as LabelStringSet } from './bundle-CoqWx1L6.js';
|
|
6
|
+
import { h as isSupportedFileView, j as isVideo, k as isImage } from './bundle-CDxHBrmg.js';
|
|
7
7
|
import '../hooks/useModal.js';
|
|
8
|
-
import { a as MODAL_ROOT, M as Modal } from './bundle-
|
|
9
|
-
import { u as useSendbird } from './bundle-
|
|
8
|
+
import { a as MODAL_ROOT, M as Modal } from './bundle-BZABTuI8.js';
|
|
9
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
10
10
|
|
|
11
11
|
var FileViewerView = function (_a) {
|
|
12
12
|
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage, onDownloadClick = _a.onDownloadClick;
|
|
@@ -54,4 +54,4 @@ var FileViewerComponent = function (_a) {
|
|
|
54
54
|
};
|
|
55
55
|
|
|
56
56
|
export { FileViewerView as F };
|
|
57
|
-
//# sourceMappingURL=bundle-
|
|
57
|
+
//# sourceMappingURL=bundle-CvXosgMy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CvXosgMy.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-BvGPxdgc.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-BoCpB627.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-CoqWx1L6.js';
|
|
9
9
|
import '../ui/IconButton.js';
|
|
10
|
-
import './bundle-
|
|
11
|
-
import './bundle-
|
|
12
|
-
import './bundle-
|
|
10
|
+
import './bundle-CDxHBrmg.js';
|
|
11
|
+
import './bundle-MU-n4WB7.js';
|
|
12
|
+
import './bundle-B7LJP6uD.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-CwFhwvI0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CwFhwvI0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-BvGPxdgc.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-Cx0ij_p6.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cx0ij_p6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cx8h9ZUu.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useEffect, useRef } from 'react';
|
|
2
|
-
import { i as isEqual } from './bundle-
|
|
2
|
+
import { i as isEqual } from './bundle-B7LJP6uD.js';
|
|
3
3
|
|
|
4
4
|
function useDeepCompareMemoize(value) {
|
|
5
5
|
var ref = useRef(value);
|
|
@@ -35,4 +35,4 @@ function useDeepCompareEffect(callback, dependencies) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export { useDeepCompareEffect as u };
|
|
38
|
-
//# sourceMappingURL=bundle-
|
|
38
|
+
//# sourceMappingURL=bundle-CxvcwY-S.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CxvcwY-S.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-BvGPxdgc.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-D7cX9Fjm.js';
|
|
6
|
+
import { a as MenuItem, b as MenuItems } from './bundle-CwFhwvI0.js';
|
|
7
7
|
import 'react-dom';
|
|
8
|
-
import './bundle-
|
|
8
|
+
import './bundle-CoqWx1L6.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-CDxHBrmg.js';
|
|
11
|
+
import { u as useLocalization } from './bundle-MU-n4WB7.js';
|
|
12
|
+
import './bundle-B7LJP6uD.js';
|
|
13
13
|
import '@sendbird/chat/groupChannel';
|
|
14
|
-
import { c as classnames } from './bundle-
|
|
14
|
+
import { c as classnames } from './bundle-BoCpB627.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-D4Qx18jn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D4Qx18jn.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D6fvLhSj.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-BvGPxdgc.js';
|
|
2
|
+
import { S as SendbirdContext, s as shimExports } from './bundle-B7LJP6uD.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.9';
|
|
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-D7cX9Fjm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D7cX9Fjm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D9ylcucS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-BvGPxdgc.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
4
|
-
import { p as pxToNumber } from './bundle-
|
|
4
|
+
import { p as pxToNumber } from './bundle-B5YnH_bZ.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { c as classnames } from './bundle-
|
|
6
|
+
import { c as classnames } from './bundle-BoCpB627.js';
|
|
7
7
|
|
|
8
8
|
var AvatarDefault = function (props) {
|
|
9
9
|
var width = props.width, height = props.height, text = props.text;
|
|
@@ -68,4 +68,4 @@ function Avatar(_a, ref) {
|
|
|
68
68
|
var Avatar$1 = React__default.forwardRef(Avatar);
|
|
69
69
|
|
|
70
70
|
export { Avatar$1 as A, AvatarDefault as a, AvatarInner as b };
|
|
71
|
-
//# sourceMappingURL=bundle-
|
|
71
|
+
//# sourceMappingURL=bundle-DCmMZLn8.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DCmMZLn8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DFYOnVXR.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-BvGPxdgc.js';
|
|
2
2
|
import React__default, { useContext, useState, useEffect, useRef, useCallback } from 'react';
|
|
3
3
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
4
|
-
import { C as ContextMenu, b as MenuItems, O as OperatorMenuItem, h as MuteMenuItem, c as MenuItem } from './bundle-
|
|
4
|
+
import { C as ContextMenu, b as MenuItems, O as OperatorMenuItem, h as MuteMenuItem, c as MenuItem } from './bundle-CwFhwvI0.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
6
|
import IconButton from '../ui/IconButton.js';
|
|
7
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
7
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-CoqWx1L6.js';
|
|
8
8
|
import { Participant } from '@sendbird/chat';
|
|
9
|
-
import { L as LocalizationContext } from './bundle-
|
|
10
|
-
import { u as useUserProfileContext } from './bundle-
|
|
9
|
+
import { L as LocalizationContext } from './bundle-MU-n4WB7.js';
|
|
10
|
+
import { u as useUserProfileContext } from './bundle-CjtOeKDH.js';
|
|
11
11
|
import '../ui/AccordionGroup.js';
|
|
12
|
-
import { A as Avatar } from './bundle-
|
|
12
|
+
import { A as Avatar } from './bundle-DCmMZLn8.js';
|
|
13
13
|
import 'react-dom';
|
|
14
|
-
import './bundle-
|
|
15
|
-
import './bundle-
|
|
14
|
+
import './bundle-DgySHYkz.js';
|
|
15
|
+
import './bundle-B7LJP6uD.js';
|
|
16
16
|
import '@sendbird/chat/groupChannel';
|
|
17
17
|
import '@sendbird/chat/openChannel';
|
|
18
18
|
import MutedAvatarOverlay from '../ui/MutedAvatarOverlay.js';
|
|
19
19
|
import UserProfile from '../ui/UserProfile.js';
|
|
20
20
|
import { useOpenChannelSettingsContext } from '../OpenChannelSettings/context.js';
|
|
21
|
-
import { M as Modal } from './bundle-
|
|
21
|
+
import { M as Modal } from './bundle-BZABTuI8.js';
|
|
22
22
|
import { UserListItem as UserListItem$1 } from '../ui/UserListItem.js';
|
|
23
|
-
import { n as noop } from './bundle-
|
|
24
|
-
import { u as useSendbird } from './bundle-
|
|
23
|
+
import { n as noop } from './bundle-BoCpB627.js';
|
|
24
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
25
25
|
|
|
26
26
|
function ParticipantsModal(_a) {
|
|
27
27
|
var _b, _c, _d;
|
|
@@ -209,4 +209,4 @@ function ParticipantList(_a) {
|
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
export { ParticipantList as P, UserListItem as U };
|
|
212
|
-
//# sourceMappingURL=bundle-
|
|
212
|
+
//# sourceMappingURL=bundle-DFoa4qG2.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DFoa4qG2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { a as __spreadArray, b as __awaiter, c as __generator, _ as __assign } from './bundle-
|
|
2
|
-
import { u as useStore, c as createStore, s as shimExports } from './bundle-
|
|
1
|
+
import { a as __spreadArray, b as __awaiter, c as __generator, _ as __assign } from './bundle-BvGPxdgc.js';
|
|
2
|
+
import { u as useStore, c as createStore, s as shimExports } from './bundle-B7LJP6uD.js';
|
|
3
3
|
import React__default, { useEffect, createContext, useState, useCallback, useRef, useContext, useMemo } from 'react';
|
|
4
4
|
import { GroupChannelHandler } from '@sendbird/chat/groupChannel';
|
|
5
|
-
import { u as uuidv4 } from './bundle-
|
|
6
|
-
import { c as compareIds } from './bundle-
|
|
7
|
-
import { c as classnames, d as deleteNullish } from './bundle-
|
|
8
|
-
import { U as UserProfileProvider } from './bundle-
|
|
9
|
-
import { u as useSendbird } from './bundle-
|
|
5
|
+
import { u as uuidv4 } from './bundle-CTtRmLaQ.js';
|
|
6
|
+
import { c as compareIds } from './bundle-DcJrfmnR.js';
|
|
7
|
+
import { c as classnames, d as deleteNullish } from './bundle-BoCpB627.js';
|
|
8
|
+
import { U as UserProfileProvider } from './bundle-CjtOeKDH.js';
|
|
9
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
10
10
|
|
|
11
11
|
function useSetChannel(_a) {
|
|
12
12
|
var _this = this;
|
|
@@ -216,4 +216,4 @@ var useChannelSettings = function () {
|
|
|
216
216
|
};
|
|
217
217
|
|
|
218
218
|
export { ChannelSettingsContext as C, ChannelSettingsProvider as a, useChannelSettingsContext as b, useChannelSettings as u };
|
|
219
|
-
//# sourceMappingURL=bundle-
|
|
219
|
+
//# sourceMappingURL=bundle-DKW7_WWj.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DKW7_WWj.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useCallback, useEffect } from 'react';
|
|
2
2
|
import { ReplyType } from '@sendbird/chat/message';
|
|
3
|
-
import { s as scrollIntoLast, d as scrollToRenderedMessage } from './bundle-
|
|
4
|
-
import './bundle-
|
|
5
|
-
import { f as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-
|
|
3
|
+
import { s as scrollIntoLast, d as scrollToRenderedMessage } from './bundle-BID6Oznq.js';
|
|
4
|
+
import './bundle-C5Ih9B7Z.js';
|
|
5
|
+
import { f as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-T8eF3MdZ.js';
|
|
6
6
|
|
|
7
7
|
// For legacy
|
|
8
8
|
// These are not used for collections(GroupChannel)
|
|
@@ -154,4 +154,4 @@ function useInitialMessagesFetch(_a, _b) {
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
export { FETCH_INITIAL_MESSAGES_START as F, MARK_AS_READ as M, NEXT_RESULT_SIZE as N, ON_MESSAGE_RECEIVED as O, PREV_RESULT_SIZE as P, RESET_MESSAGES as R, SEND_MESSAGE_START as S, FETCH_INITIAL_MESSAGES_SUCCESS as a, FETCH_PREV_MESSAGES_SUCCESS as b, FETCH_NEXT_MESSAGES_SUCCESS as c, FETCH_INITIAL_MESSAGES_FAILURE as d, FETCH_PREV_MESSAGES_FAILURE as e, FETCH_NEXT_MESSAGES_FAILURE as f, SEND_MESSAGE_SUCCESS as g, SEND_MESSAGE_FAILURE as h, SET_CURRENT_CHANNEL as i, SET_CHANNEL_INVALID as j, ON_MESSAGE_UPDATED as k, ON_MESSAGE_THREAD_INFO_UPDATED as l, RESEND_MESSAGE_START as m, ON_MESSAGE_DELETED as n, ON_MESSAGE_DELETED_BY_REQ_ID as o, SET_EMOJI_CONTAINER as p, ON_REACTION_UPDATED as q, MESSAGE_LIST_PARAMS_CHANGED as r, ON_FILE_INFO_UPLOADED as s, ON_TYPING_STATUS_UPDATED as t, useInitialMessagesFetch as u, channelActions as v };
|
|
157
|
-
//# sourceMappingURL=bundle-
|
|
157
|
+
//# sourceMappingURL=bundle-DLBFowSs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DLBFowSs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
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-BvGPxdgc.js';
|
|
2
2
|
import React__default, { useState, useContext, useEffect, useCallback } from 'react';
|
|
3
|
-
import { u as useChannelSettings } from './bundle-
|
|
4
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
5
|
-
import { U as UserListItemMenu } from './bundle-
|
|
3
|
+
import { u as useChannelSettings } from './bundle-DKW7_WWj.js';
|
|
4
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-MU-n4WB7.js';
|
|
5
|
+
import { U as UserListItemMenu } from './bundle-D4Qx18jn.js';
|
|
6
6
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
7
7
|
import { UserListItem } from '../ui/UserListItem.js';
|
|
8
|
-
import { M as Modal } from './bundle-
|
|
9
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
10
|
-
import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-
|
|
8
|
+
import { M as Modal } from './bundle-BZABTuI8.js';
|
|
9
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-CQmP70o-.js';
|
|
10
|
+
import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-CoqWx1L6.js';
|
|
11
11
|
import { OperatorFilter } from '@sendbird/chat/groupChannel';
|
|
12
|
-
import { n as noop } from './bundle-
|
|
12
|
+
import { n as noop } from './bundle-BoCpB627.js';
|
|
13
13
|
|
|
14
14
|
function OperatorsModal(_a) {
|
|
15
15
|
var _this = this;
|
|
@@ -357,4 +357,4 @@ var MutedMemberList = function (_a) {
|
|
|
357
357
|
};
|
|
358
358
|
|
|
359
359
|
export { BannedUserList as B, MutedMemberList as M, OperatorList as O };
|
|
360
|
-
//# sourceMappingURL=bundle-
|
|
360
|
+
//# sourceMappingURL=bundle-DLOgtfcc.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DLOgtfcc.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-BZABTuI8.js';
|
|
3
|
+
import './bundle-BvGPxdgc.js';
|
|
4
|
+
import './bundle-CoqWx1L6.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-MU-n4WB7.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle-ClP2v0RX.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-DMq4hDJ1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DMq4hDJ1.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DOwPISeS.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { _ as __assign, d as __rest } from './bundle-
|
|
1
|
+
import { _ as __assign, d as __rest } from './bundle-BvGPxdgc.js';
|
|
2
2
|
import React__default, { useContext, useCallback, useMemo, useRef, useEffect } from 'react';
|
|
3
3
|
import { GroupChannelFilter } from '@sendbird/chat/groupChannel';
|
|
4
4
|
import { useGroupChannelList as useGroupChannelList$1, useGroupChannelHandler } from '@sendbird/uikit-tools';
|
|
5
|
-
import { U as UserProfileProvider } from './bundle-
|
|
6
|
-
import { u as useOnlineStatus, a as useMarkAsDeliveredScheduler } from './bundle-
|
|
7
|
-
import { s as shimExports, u as useStore, c as createStore } from './bundle-
|
|
8
|
-
import { d as deleteNullish, n as noop } from './bundle-
|
|
9
|
-
import { u as useSendbird } from './bundle-
|
|
10
|
-
import { u as useDeepCompareEffect } from './bundle-
|
|
5
|
+
import { U as UserProfileProvider } from './bundle-CjtOeKDH.js';
|
|
6
|
+
import { u as useOnlineStatus, a as useMarkAsDeliveredScheduler } from './bundle-ByIYMALs.js';
|
|
7
|
+
import { s as shimExports, u as useStore, c as createStore } from './bundle-B7LJP6uD.js';
|
|
8
|
+
import { d as deleteNullish, n as noop } from './bundle-BoCpB627.js';
|
|
9
|
+
import { u as useSendbird } from './bundle-D7cX9Fjm.js';
|
|
10
|
+
import { u as useDeepCompareEffect } from './bundle-CxvcwY-S.js';
|
|
11
11
|
|
|
12
12
|
var useGroupChannelList = function () {
|
|
13
13
|
var store = useContext(GroupChannelListContext);
|
|
@@ -206,4 +206,4 @@ function getCollectionCreator(sdk, channelListQueryParams) {
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
export { GroupChannelListContext as G, useGroupChannelListStore as a, GroupChannelListManager as b, GroupChannelListProvider as c, useGroupChannelListContext as d, useGroupChannelList as u };
|
|
209
|
-
//# sourceMappingURL=bundle-
|
|
209
|
+
//# sourceMappingURL=bundle-DQI9pg8J.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DQI9pg8J.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as requiredArgs, t as toDate } from './bundle-
|
|
1
|
+
import { r as requiredArgs, t as toDate } from './bundle-BYR5uV_H.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @name startOfDay
|
|
@@ -61,4 +61,4 @@ function isSameDay(dirtyDateLeft, dirtyDateRight) {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
export { isSameDay as i };
|
|
64
|
-
//# sourceMappingURL=bundle-
|
|
64
|
+
//# sourceMappingURL=bundle-DYBstvIJ.js.map
|