@sendbird/uikit-react 3.14.9 → 3.14.10-rc.0
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 +75 -75
- package/CHANGELOG.md +5 -0
- package/Channel/components/ChannelHeader.js +31 -31
- package/Channel/components/ChannelUI.js +64 -64
- package/Channel/components/FileViewer.js +31 -31
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +54 -54
- package/Channel/components/MessageInput.js +43 -43
- package/Channel/components/MessageInputWrapper.js +43 -43
- package/Channel/components/MessageList.js +57 -57
- package/Channel/components/RemoveMessageModal.js +30 -30
- package/Channel/components/SuggestedMentionList.js +28 -28
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +8 -8
- package/Channel/context.js +20 -20
- package/Channel/hooks/useHandleUploadFiles.js +17 -17
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/Channel/utils/getMessagePartsInfo.js +7 -7
- package/Channel.js +64 -64
- package/ChannelList/components/AddChannel.js +23 -23
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +37 -37
- package/ChannelList/components/ChannelPreview.js +30 -30
- package/ChannelList/components/ChannelPreviewAction.js +15 -15
- package/ChannelList/context.js +11 -11
- package/ChannelList.js +37 -37
- package/ChannelSettings/components/ChannelProfile.js +20 -20
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsUI.js +25 -25
- package/ChannelSettings/components/EditDetailsModal.js +20 -20
- package/ChannelSettings/components/LeaveChannel.js +17 -17
- package/ChannelSettings/components/ModerationPanel.js +23 -23
- package/ChannelSettings/components/UserListItem.js +15 -15
- package/ChannelSettings/components/UserPanel.js +23 -23
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +25 -25
- package/CreateChannel/components/CreateChannelUI.js +20 -20
- package/CreateChannel/components/InviteUsers.js +20 -20
- package/CreateChannel/components/SelectChannelType.js +17 -17
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +20 -20
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +18 -18
- package/EditUserProfile/components/EditUserProfileUI.js +19 -19
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +19 -19
- package/GroupChannel/components/FileViewer.js +25 -25
- package/GroupChannel/components/FrozenNotification.js +6 -6
- package/GroupChannel/components/GroupChannelHeader.js +21 -21
- package/GroupChannel/components/GroupChannelUI.js +57 -57
- package/GroupChannel/components/Message.js +49 -49
- package/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/GroupChannel/components/MessageList.js +50 -50
- package/GroupChannel/components/RemoveMessageModal.js +24 -24
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +8 -8
- package/GroupChannel/context.js +9 -9
- package/GroupChannel.js +57 -57
- package/GroupChannelList/components/AddGroupChannel.js +22 -22
- package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/GroupChannelList/components/GroupChannelListItem.js +28 -28
- package/GroupChannelList/components/GroupChannelListUI.js +36 -36
- package/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +36 -36
- package/MessageSearch/components/MessageSearchUI.js +15 -15
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +17 -17
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +22 -22
- package/OpenChannel/components/OpenChannelInput.js +28 -28
- package/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/OpenChannel/components/OpenChannelMessageList.js +41 -41
- package/OpenChannel/components/OpenChannelUI.js +41 -41
- package/OpenChannel/context.js +21 -21
- package/OpenChannel.js +41 -41
- package/OpenChannelList/components/OpenChannelListUI.js +20 -20
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +20 -20
- package/OpenChannelSettings/components/EditDetailsModal.js +21 -21
- package/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/OpenChannelSettings/components/OperatorUI.js +22 -22
- package/OpenChannelSettings/components/ParticipantUI.js +20 -20
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +22 -22
- package/SendbirdProvider.js +20 -22
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +44 -44
- package/Thread/components/ParentMessageInfoItem.js +30 -30
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +48 -48
- package/Thread/components/ThreadListItem.js +48 -48
- package/Thread/components/ThreadMessageInput.js +43 -43
- package/Thread/components/ThreadUI.js +55 -55
- package/Thread/context.js +9 -9
- package/Thread.js +55 -55
- package/VoicePlayer/context.js +4 -4
- package/VoicePlayer/useVoicePlayer.js +15 -15
- package/VoiceRecorder/context.js +15 -15
- package/VoiceRecorder/useVoiceRecorder.js +15 -15
- package/chunks/{bundle-DpUmO1Mq.js → bundle-3rbgyUFf.js} +1 -1
- package/chunks/bundle-3rbgyUFf.js.map +1 -0
- package/chunks/{bundle-Bmg_SNU1.js → bundle-6c1kf582.js} +1 -1
- package/chunks/bundle-6c1kf582.js.map +1 -0
- package/chunks/{bundle-ChgFZ-AQ.js → bundle-7aYnlE9g.js} +2 -2
- package/chunks/{bundle-ChgFZ-AQ.js.map → bundle-7aYnlE9g.js.map} +1 -1
- package/chunks/{bundle-BOBvShj7.js → bundle-B2jN9S8f.js} +1 -1
- package/chunks/bundle-B2jN9S8f.js.map +1 -0
- package/chunks/{bundle-PcZf3aTk.js → bundle-B8TpflN6.js} +6 -6
- package/chunks/bundle-B8TpflN6.js.map +1 -0
- package/chunks/{bundle-DuJ-B-ZT.js → bundle-B8xX1Uqv.js} +1 -1
- package/chunks/bundle-B8xX1Uqv.js.map +1 -0
- package/chunks/{bundle-CvQV9eyL.js → bundle-B9jaULeT.js} +1 -1
- package/chunks/bundle-B9jaULeT.js.map +1 -0
- package/chunks/{bundle-DwMfxOmy.js → bundle-BDRmRmBl.js} +1 -1
- package/chunks/bundle-BDRmRmBl.js.map +1 -0
- package/chunks/{bundle-D9jGjVt-.js → bundle-BEj59fUG.js} +4 -4
- package/chunks/{bundle-D9jGjVt-.js.map → bundle-BEj59fUG.js.map} +1 -1
- package/chunks/{bundle-CT69B1kW.js → bundle-BJ4QFKK7.js} +2 -2
- package/chunks/{bundle-CT69B1kW.js.map → bundle-BJ4QFKK7.js.map} +1 -1
- package/chunks/{bundle-Bb9hzsLY.js → bundle-BJuiDRhf.js} +1 -1
- package/chunks/bundle-BJuiDRhf.js.map +1 -0
- package/chunks/{bundle-C3Su8pbw.js → bundle-BJw3IA-I.js} +3 -3
- package/chunks/{bundle-C3Su8pbw.js.map → bundle-BJw3IA-I.js.map} +1 -1
- package/chunks/{bundle-Cz8H5Op_.js → bundle-BJytW_4B.js} +13 -13
- package/chunks/{bundle-Cz8H5Op_.js.map → bundle-BJytW_4B.js.map} +1 -1
- package/chunks/{bundle-D8uYbr-P.js → bundle-BMIlxeLF.js} +1 -1
- package/chunks/bundle-BMIlxeLF.js.map +1 -0
- package/chunks/{bundle-B5sad6LQ.js → bundle-BN9hrgMv.js} +2 -2
- package/chunks/bundle-BN9hrgMv.js.map +1 -0
- package/chunks/{bundle-atvPYPBf.js → bundle-BNSIBEFq.js} +11 -11
- package/chunks/{bundle-atvPYPBf.js.map → bundle-BNSIBEFq.js.map} +1 -1
- package/chunks/{bundle-DFeu3PLu.js → bundle-BOBvB-6E.js} +1 -1
- package/chunks/{bundle-DFeu3PLu.js.map → bundle-BOBvB-6E.js.map} +1 -1
- package/chunks/{bundle-hrN1SZ_Z.js → bundle-BPHZWcCv.js} +1 -1
- package/chunks/bundle-BPHZWcCv.js.map +1 -0
- package/chunks/{bundle-9PpKWOoL.js → bundle-BU88BWC9.js} +1 -1
- package/chunks/bundle-BU88BWC9.js.map +1 -0
- package/chunks/{bundle-HheIudro.js → bundle-BdSPinDs.js} +11 -11
- package/chunks/{bundle-HheIudro.js.map → bundle-BdSPinDs.js.map} +1 -1
- package/chunks/{bundle-bVEG7YOP.js → bundle-Bg_q4-JM.js} +2 -2
- package/chunks/bundle-Bg_q4-JM.js.map +1 -0
- package/chunks/{bundle-CHbs8B1_.js → bundle-BkXs4vmC.js} +1 -1
- package/chunks/bundle-BkXs4vmC.js.map +1 -0
- package/chunks/{bundle-BCDYwF2y.js → bundle-BnTQqt6n.js} +2 -2
- package/chunks/{bundle-BCDYwF2y.js.map → bundle-BnTQqt6n.js.map} +1 -1
- package/chunks/{bundle-BBpoyOJS.js → bundle-BpOEDk4N.js} +1 -1
- package/chunks/bundle-BpOEDk4N.js.map +1 -0
- package/chunks/{bundle-dRVFykvq.js → bundle-Bt0C-BFZ.js} +4 -4
- package/chunks/{bundle-dRVFykvq.js.map → bundle-Bt0C-BFZ.js.map} +1 -1
- package/chunks/{bundle-D2GBxmuh.js → bundle-BxHNvmlk.js} +8 -8
- package/chunks/{bundle-D2GBxmuh.js.map → bundle-BxHNvmlk.js.map} +1 -1
- package/chunks/{bundle-BHKxRZez.js → bundle-ByOz6UaI.js} +1 -1
- package/chunks/bundle-ByOz6UaI.js.map +1 -0
- package/chunks/{bundle-DNSTH1vf.js → bundle-C0OqoVhE.js} +6 -6
- package/chunks/bundle-C0OqoVhE.js.map +1 -0
- package/chunks/{bundle-C6Uejzft.js → bundle-C5TWIrbF.js} +1 -1
- package/chunks/bundle-C5TWIrbF.js.map +1 -0
- package/chunks/{bundle-BFCOE4_P.js → bundle-C7vkuHMJ.js} +12 -12
- package/chunks/{bundle-BFCOE4_P.js.map → bundle-C7vkuHMJ.js.map} +1 -1
- package/chunks/{bundle-CRRsbsT6.js → bundle-CCLbyHL5.js} +1 -1
- package/chunks/bundle-CCLbyHL5.js.map +1 -0
- package/chunks/{bundle-DMqUFkSM.js → bundle-CEQrkcG2.js} +10 -10
- package/chunks/bundle-CEQrkcG2.js.map +1 -0
- package/chunks/{bundle-j-10ix2k.js → bundle-CFVWrfBk.js} +1 -1
- package/chunks/bundle-CFVWrfBk.js.map +1 -0
- package/chunks/{bundle-C6yJQcQ5.js → bundle-CKHDZj3X.js} +4 -4
- package/chunks/bundle-CKHDZj3X.js.map +1 -0
- package/chunks/{bundle-B_7ai8FD.js → bundle-COi-bE-H.js} +1 -1
- package/chunks/{bundle-B_7ai8FD.js.map → bundle-COi-bE-H.js.map} +1 -1
- package/chunks/{bundle-BIlm8Es9.js → bundle-CVozsUjP.js} +5 -5
- package/chunks/{bundle-BIlm8Es9.js.map → bundle-CVozsUjP.js.map} +1 -1
- package/chunks/{bundle-lrWED2TX.js → bundle-CjpdKqHs.js} +2 -2
- package/chunks/bundle-CjpdKqHs.js.map +1 -0
- package/chunks/{bundle-DJs88q7W.js → bundle-CmkJzmJF.js} +1 -1
- package/chunks/{bundle-DJs88q7W.js.map → bundle-CmkJzmJF.js.map} +1 -1
- package/chunks/{bundle-DayugpLd.js → bundle-CoKBNINX.js} +2 -2
- package/chunks/bundle-CoKBNINX.js.map +1 -0
- package/chunks/{bundle-_3WGrX6M.js → bundle-CopNic9v.js} +1 -1
- package/chunks/bundle-CopNic9v.js.map +1 -0
- package/chunks/{bundle-NrxTT-RP.js → bundle-CorHVuoo.js} +3 -3
- package/chunks/{bundle-NrxTT-RP.js.map → bundle-CorHVuoo.js.map} +1 -1
- package/chunks/{bundle-IjPHxh5M.js → bundle-CpcYL8Ew.js} +3 -3
- package/chunks/bundle-CpcYL8Ew.js.map +1 -0
- package/chunks/{bundle-CXIUF-j1.js → bundle-Cyq2ZaJb.js} +1 -1
- package/chunks/bundle-Cyq2ZaJb.js.map +1 -0
- package/chunks/{bundle-CSFmhfxF.js → bundle-Cz3-2Iht.js} +5 -5
- package/{cjs/chunks/bundle-BVUM1pVl.js.map → chunks/bundle-Cz3-2Iht.js.map} +1 -1
- package/chunks/{bundle-0_H9lvpf.js → bundle-CzPQUoBY.js} +1 -1
- package/chunks/bundle-CzPQUoBY.js.map +1 -0
- package/chunks/{bundle-Cm5lAbEo.js → bundle-D62t4-mN.js} +9 -9
- package/chunks/{bundle-Cm5lAbEo.js.map → bundle-D62t4-mN.js.map} +1 -1
- package/chunks/{bundle-gMXiQdRH.js → bundle-D66A0jl2.js} +1 -1
- package/chunks/{bundle-gMXiQdRH.js.map → bundle-D66A0jl2.js.map} +1 -1
- package/chunks/{bundle-C0Ye9Nr7.js → bundle-D8ed5Px8.js} +1 -1
- package/chunks/bundle-D8ed5Px8.js.map +1 -0
- package/chunks/{bundle-SkrZLWkc.js → bundle-D97UcpIe.js} +1 -1
- package/chunks/bundle-D97UcpIe.js.map +1 -0
- package/chunks/{bundle-DpacE0FD.js → bundle-D9c1bxJQ.js} +11 -11
- package/chunks/{bundle-DpacE0FD.js.map → bundle-D9c1bxJQ.js.map} +1 -1
- package/chunks/{bundle-bydFJnVe.js → bundle-DDmvUZXC.js} +1 -1
- package/chunks/{bundle-bydFJnVe.js.map → bundle-DDmvUZXC.js.map} +1 -1
- package/chunks/{bundle-DeixUZhs.js → bundle-DEc9jVCz.js} +4 -4
- package/chunks/{bundle-DeixUZhs.js.map → bundle-DEc9jVCz.js.map} +1 -1
- package/chunks/{bundle-_Bh5w9NL.js → bundle-DEtCTxPD.js} +5 -5
- package/chunks/bundle-DEtCTxPD.js.map +1 -0
- package/chunks/{bundle-DAlnp9lF.js → bundle-DHttsGgb.js} +4 -4
- package/chunks/bundle-DHttsGgb.js.map +1 -0
- package/chunks/{bundle-D1RWUo4o.js → bundle-DI7rfz5k.js} +1 -1
- package/chunks/bundle-DI7rfz5k.js.map +1 -0
- package/chunks/{bundle-BW1heH8r.js → bundle-DJ5w4Eoe.js} +6 -6
- package/chunks/bundle-DJ5w4Eoe.js.map +1 -0
- package/chunks/{bundle-CWX597tJ.js → bundle-DOrP_yMR.js} +6 -6
- package/chunks/bundle-DOrP_yMR.js.map +1 -0
- package/chunks/{bundle-QA2AznoN.js → bundle-DT4DSBZo.js} +4 -4
- package/chunks/bundle-DT4DSBZo.js.map +1 -0
- package/chunks/{bundle-BukeovFR.js → bundle-DXfHdLu7.js} +1 -1
- package/chunks/bundle-DXfHdLu7.js.map +1 -0
- package/chunks/{bundle-CRs0ZyYd.js → bundle-DZdtzdKh.js} +1 -1
- package/chunks/bundle-DZdtzdKh.js.map +1 -0
- package/chunks/{bundle-0CUx7mAi.js → bundle-DZj625VH.js} +2 -2
- package/chunks/{bundle-0CUx7mAi.js.map → bundle-DZj625VH.js.map} +1 -1
- package/chunks/{bundle-DAhJtn85.js → bundle-DdIo_zFs.js} +1 -1
- package/chunks/bundle-DdIo_zFs.js.map +1 -0
- package/chunks/{bundle-NQPHGdv2.js → bundle-DhI4QWLh.js} +3 -3
- package/chunks/bundle-DhI4QWLh.js.map +1 -0
- package/chunks/{bundle-ChoBoUg2.js → bundle-DhiRvnEl.js} +3 -3
- package/chunks/bundle-DhiRvnEl.js.map +1 -0
- package/chunks/{bundle-Cll6FpAY.js → bundle-Dnuvu_jv.js} +5 -5
- package/{cjs/chunks/bundle-B_XQ1oTC.js.map → chunks/bundle-Dnuvu_jv.js.map} +1 -1
- package/chunks/{bundle-D6eHgF5n.js → bundle-DpdytzS4.js} +3 -3
- package/chunks/{bundle-D6eHgF5n.js.map → bundle-DpdytzS4.js.map} +1 -1
- package/chunks/{bundle-BZaNthXQ.js → bundle-DqRO_GUT.js} +2 -2
- package/chunks/bundle-DqRO_GUT.js.map +1 -0
- package/chunks/{bundle-Bu71sAcm.js → bundle-DtJdiuLe.js} +4 -4
- package/chunks/bundle-DtJdiuLe.js.map +1 -0
- package/chunks/{bundle-CGpUZMGo.js → bundle-LTG1RsSu.js} +1 -1
- package/chunks/bundle-LTG1RsSu.js.map +1 -0
- package/chunks/{bundle-DvK0GCH4.js → bundle-VXXJZkam.js} +4 -4
- package/chunks/{bundle-DvK0GCH4.js.map → bundle-VXXJZkam.js.map} +1 -1
- package/chunks/{bundle-Cyu8Xfnh.js → bundle-VnrHQwUf.js} +1 -1
- package/chunks/bundle-VnrHQwUf.js.map +1 -0
- package/chunks/{bundle-CMr-IO14.js → bundle-YkcGOzNM.js} +1 -1
- package/chunks/bundle-YkcGOzNM.js.map +1 -0
- package/chunks/{bundle-DLuyvuQm.js → bundle-daosOR23.js} +9 -9
- package/chunks/{bundle-DLuyvuQm.js.map → bundle-daosOR23.js.map} +1 -1
- package/chunks/{bundle-BqZPj8WV.js → bundle-p7o7XIwK.js} +2 -2
- package/chunks/{bundle-BqZPj8WV.js.map → bundle-p7o7XIwK.js.map} +1 -1
- package/chunks/{bundle-Q-tobrIb.js → bundle-pgzH1a0T.js} +3 -3
- package/chunks/bundle-pgzH1a0T.js.map +1 -0
- package/chunks/{bundle-C83jcIQ3.js → bundle-qeI43E3_.js} +1 -1
- package/chunks/bundle-qeI43E3_.js.map +1 -0
- package/chunks/{bundle-BYCZrlDX.js → bundle-uQmOP01H.js} +8 -8
- package/chunks/{bundle-BYCZrlDX.js.map → bundle-uQmOP01H.js.map} +1 -1
- package/chunks/{bundle-DQovOEGD.js → bundle-vrHvkBOt.js} +4 -4
- package/chunks/bundle-vrHvkBOt.js.map +1 -0
- package/chunks/{bundle-CQIK0GTo.js → bundle-wRih48eh.js} +7 -7
- package/chunks/{bundle-CQIK0GTo.js.map → bundle-wRih48eh.js.map} +1 -1
- package/chunks/{bundle-38h6y3Hb.js → bundle-wnzL460e.js} +1 -1
- package/chunks/bundle-wnzL460e.js.map +1 -0
- package/chunks/{bundle-fNoXpdvs.js → bundle-ySoO0NFU.js} +3 -3
- package/chunks/{bundle-fNoXpdvs.js.map → bundle-ySoO0NFU.js.map} +1 -1
- package/cjs/App.js +75 -75
- package/cjs/Channel/components/ChannelHeader.js +31 -31
- package/cjs/Channel/components/ChannelUI.js +64 -64
- package/cjs/Channel/components/FileViewer.js +31 -31
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +54 -54
- package/cjs/Channel/components/MessageInput.js +43 -43
- package/cjs/Channel/components/MessageInputWrapper.js +43 -43
- package/cjs/Channel/components/MessageList.js +57 -57
- package/cjs/Channel/components/RemoveMessageModal.js +30 -30
- package/cjs/Channel/components/SuggestedMentionList.js +28 -28
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +8 -8
- package/cjs/Channel/context.js +20 -20
- package/cjs/Channel/hooks/useHandleUploadFiles.js +17 -17
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/cjs/Channel/utils/getMessagePartsInfo.js +7 -7
- package/cjs/Channel.js +64 -64
- package/cjs/ChannelList/components/AddChannel.js +23 -23
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +37 -37
- package/cjs/ChannelList/components/ChannelPreview.js +30 -30
- package/cjs/ChannelList/components/ChannelPreviewAction.js +15 -15
- package/cjs/ChannelList/context.js +11 -11
- package/cjs/ChannelList.js +37 -37
- package/cjs/ChannelSettings/components/ChannelProfile.js +20 -20
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +25 -25
- package/cjs/ChannelSettings/components/EditDetailsModal.js +20 -20
- package/cjs/ChannelSettings/components/LeaveChannel.js +17 -17
- package/cjs/ChannelSettings/components/ModerationPanel.js +23 -23
- package/cjs/ChannelSettings/components/UserListItem.js +15 -15
- package/cjs/ChannelSettings/components/UserPanel.js +23 -23
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +25 -25
- package/cjs/CreateChannel/components/CreateChannelUI.js +20 -20
- package/cjs/CreateChannel/components/InviteUsers.js +20 -20
- package/cjs/CreateChannel/components/SelectChannelType.js +17 -17
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +20 -20
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +18 -18
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +19 -19
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +19 -19
- package/cjs/GroupChannel/components/FileViewer.js +25 -25
- package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
- package/cjs/GroupChannel/components/GroupChannelHeader.js +21 -21
- package/cjs/GroupChannel/components/GroupChannelUI.js +57 -57
- package/cjs/GroupChannel/components/Message.js +49 -49
- package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
- package/cjs/GroupChannel/components/MessageList.js +50 -50
- package/cjs/GroupChannel/components/RemoveMessageModal.js +24 -24
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +8 -8
- package/cjs/GroupChannel/context.js +9 -9
- package/cjs/GroupChannel.js +57 -57
- package/cjs/GroupChannelList/components/AddGroupChannel.js +22 -22
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +28 -28
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +36 -36
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +36 -36
- package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +17 -17
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +22 -22
- package/cjs/OpenChannel/components/OpenChannelInput.js +28 -28
- package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +41 -41
- package/cjs/OpenChannel/components/OpenChannelUI.js +41 -41
- package/cjs/OpenChannel/context.js +21 -21
- package/cjs/OpenChannel.js +41 -41
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +20 -20
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +20 -20
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +21 -21
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/cjs/OpenChannelSettings/components/OperatorUI.js +22 -22
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +20 -20
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +22 -22
- package/cjs/SendbirdProvider.js +20 -22
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +44 -44
- package/cjs/Thread/components/ParentMessageInfoItem.js +30 -30
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +48 -48
- package/cjs/Thread/components/ThreadListItem.js +48 -48
- package/cjs/Thread/components/ThreadMessageInput.js +43 -43
- package/cjs/Thread/components/ThreadUI.js +55 -55
- package/cjs/Thread/context.js +9 -9
- package/cjs/Thread.js +55 -55
- package/cjs/VoicePlayer/context.js +4 -4
- package/cjs/VoicePlayer/useVoicePlayer.js +15 -15
- package/cjs/VoiceRecorder/context.js +15 -15
- package/cjs/VoiceRecorder/useVoiceRecorder.js +15 -15
- package/cjs/chunks/{bundle-CGKRIO3E.js → bundle-3hsE4l1Y.js} +9 -9
- package/cjs/chunks/{bundle-CGKRIO3E.js.map → bundle-3hsE4l1Y.js.map} +1 -1
- package/cjs/chunks/{bundle-CQUbTSJz.js → bundle-61s5Z4d7.js} +4 -4
- package/cjs/chunks/{bundle-CQUbTSJz.js.map → bundle-61s5Z4d7.js.map} +1 -1
- package/cjs/chunks/{bundle-xm5DS5Lz.js → bundle-8AeXVjXK.js} +1 -1
- package/cjs/chunks/bundle-8AeXVjXK.js.map +1 -0
- package/cjs/chunks/{bundle-DIv9aJRh.js → bundle-9xV-yjpP.js} +2 -2
- package/cjs/chunks/bundle-9xV-yjpP.js.map +1 -0
- package/cjs/chunks/{bundle-DmHD41pR.js → bundle-B1-PvXu0.js} +11 -11
- package/cjs/chunks/{bundle-DmHD41pR.js.map → bundle-B1-PvXu0.js.map} +1 -1
- package/cjs/chunks/{bundle-DFprgn2Q.js → bundle-B1C0IbXD.js} +2 -2
- package/cjs/chunks/bundle-B1C0IbXD.js.map +1 -0
- package/cjs/chunks/{bundle-ClDJ3S5P.js → bundle-B4ERFxve.js} +4 -4
- package/cjs/chunks/bundle-B4ERFxve.js.map +1 -0
- package/cjs/chunks/{bundle-BOSlF-PZ.js → bundle-B9Ws-dQ9.js} +3 -3
- package/cjs/chunks/bundle-B9Ws-dQ9.js.map +1 -0
- package/cjs/chunks/{bundle-Bf2oyXSB.js → bundle-BDK2QCjs.js} +1 -1
- package/cjs/chunks/bundle-BDK2QCjs.js.map +1 -0
- package/cjs/chunks/{bundle-B0Glft9d.js → bundle-BLMQTUu9.js} +3 -3
- package/cjs/chunks/bundle-BLMQTUu9.js.map +1 -0
- package/cjs/chunks/{bundle-C6i19O7d.js → bundle-BO6yBZb4.js} +1 -1
- package/cjs/chunks/bundle-BO6yBZb4.js.map +1 -0
- package/cjs/chunks/{bundle-F2zWPLQS.js → bundle-BW3lKCl2.js} +7 -7
- package/cjs/chunks/bundle-BW3lKCl2.js.map +1 -0
- package/cjs/chunks/{bundle-D3cOq1dq.js → bundle-BWgaoz_w.js} +1 -1
- package/cjs/chunks/bundle-BWgaoz_w.js.map +1 -0
- package/cjs/chunks/{bundle-BDXCaYsH.js → bundle-BZ_eywy9.js} +11 -11
- package/cjs/chunks/bundle-BZ_eywy9.js.map +1 -0
- package/cjs/chunks/{bundle-BViYuB4_.js → bundle-B_TBDUIo.js} +1 -1
- package/cjs/chunks/bundle-B_TBDUIo.js.map +1 -0
- package/cjs/chunks/{bundle-DL_1wm_B.js → bundle-Bd0RdeK2.js} +1 -1
- package/cjs/chunks/bundle-Bd0RdeK2.js.map +1 -0
- package/cjs/chunks/{bundle-D0PO_ruY.js → bundle-BdYPdaVo.js} +1 -1
- package/cjs/chunks/bundle-BdYPdaVo.js.map +1 -0
- package/cjs/chunks/{bundle-TvvKEQW4.js → bundle-Be48lLMX.js} +4 -4
- package/cjs/chunks/bundle-Be48lLMX.js.map +1 -0
- package/cjs/chunks/{bundle-BcP5dHcV.js → bundle-BfJXjRdq.js} +1 -1
- package/cjs/chunks/bundle-BfJXjRdq.js.map +1 -0
- package/cjs/chunks/{bundle-BO6YDwoz.js → bundle-BiLIbWF-.js} +6 -6
- package/cjs/chunks/bundle-BiLIbWF-.js.map +1 -0
- package/cjs/chunks/{bundle-V8KCClRo.js → bundle-BoW1OyHH.js} +1 -1
- package/cjs/chunks/bundle-BoW1OyHH.js.map +1 -0
- package/cjs/chunks/{bundle-C36iTYAj.js → bundle-BoiQCySB.js} +4 -4
- package/cjs/chunks/{bundle-C36iTYAj.js.map → bundle-BoiQCySB.js.map} +1 -1
- package/cjs/chunks/{bundle-C_2JLhCE.js → bundle-BrwM1NMi.js} +1 -1
- package/cjs/chunks/bundle-BrwM1NMi.js.map +1 -0
- package/cjs/chunks/{bundle-DQmSLtm5.js → bundle-Bt0wKNUe.js} +9 -9
- package/cjs/chunks/{bundle-DQmSLtm5.js.map → bundle-Bt0wKNUe.js.map} +1 -1
- package/cjs/chunks/{bundle-_LlcM4bL.js → bundle-Bwspr896.js} +1 -1
- package/cjs/chunks/bundle-Bwspr896.js.map +1 -0
- package/cjs/chunks/{bundle-DqxP8px7.js → bundle-By5uXdBg.js} +1 -1
- package/cjs/chunks/bundle-By5uXdBg.js.map +1 -0
- package/cjs/chunks/{bundle-BDQgAppO.js → bundle-BygoI0yo.js} +1 -1
- package/cjs/chunks/bundle-BygoI0yo.js.map +1 -0
- package/cjs/chunks/{bundle-DepUnCxt.js → bundle-C9XFSTYf.js} +1 -1
- package/cjs/chunks/bundle-C9XFSTYf.js.map +1 -0
- package/cjs/chunks/{bundle-BSVTay0K.js → bundle-CBRLDy3Y.js} +1 -1
- package/cjs/chunks/bundle-CBRLDy3Y.js.map +1 -0
- package/cjs/chunks/{bundle-ChCdSKNb.js → bundle-CD36CC-P.js} +5 -5
- package/cjs/chunks/{bundle-ChCdSKNb.js.map → bundle-CD36CC-P.js.map} +1 -1
- package/cjs/chunks/{bundle-kf6nqGaS.js → bundle-CLRPURXv.js} +1 -1
- package/cjs/chunks/bundle-CLRPURXv.js.map +1 -0
- package/cjs/chunks/{bundle-BqHow3gS.js → bundle-CMAUG_fU.js} +1 -1
- package/cjs/chunks/bundle-CMAUG_fU.js.map +1 -0
- package/cjs/chunks/{bundle-BVUM1pVl.js → bundle-CNLhvQ5S.js} +2 -2
- package/{chunks/bundle-CSFmhfxF.js.map → cjs/chunks/bundle-CNLhvQ5S.js.map} +1 -1
- package/cjs/chunks/{bundle-D4wKr-Pc.js → bundle-CPVkXy9s.js} +1 -1
- package/cjs/chunks/bundle-CPVkXy9s.js.map +1 -0
- package/cjs/chunks/{bundle-IcHoDMIo.js → bundle-CQYaB08i.js} +4 -4
- package/cjs/chunks/{bundle-IcHoDMIo.js.map → bundle-CQYaB08i.js.map} +1 -1
- package/cjs/chunks/{bundle-Bb9LqSHU.js → bundle-CTWNooAA.js} +2 -2
- package/cjs/chunks/bundle-CTWNooAA.js.map +1 -0
- package/cjs/chunks/{bundle-CYK5sjUD.js → bundle-CXlUscvX.js} +2 -2
- package/cjs/chunks/bundle-CXlUscvX.js.map +1 -0
- package/cjs/chunks/{bundle-CBw-w3Lx.js → bundle-Cbv_awE2.js} +1 -1
- package/cjs/chunks/{bundle-CBw-w3Lx.js.map → bundle-Cbv_awE2.js.map} +1 -1
- package/cjs/chunks/{bundle-DxII-H6S.js → bundle-ChVQ484N.js} +1 -1
- package/cjs/chunks/bundle-ChVQ484N.js.map +1 -0
- package/cjs/chunks/{bundle-DQcxvpWg.js → bundle-ClGYZFGc.js} +1 -1
- package/cjs/chunks/bundle-ClGYZFGc.js.map +1 -0
- package/cjs/chunks/{bundle-D0q5dAFj.js → bundle-CpVQAeGa.js} +2 -2
- package/cjs/chunks/bundle-CpVQAeGa.js.map +1 -0
- package/cjs/chunks/{bundle-3TlzRrfD.js → bundle-CvRdW9yw.js} +1 -1
- package/cjs/chunks/bundle-CvRdW9yw.js.map +1 -0
- package/cjs/chunks/{bundle-BxVcIlWI.js → bundle-CwrQm55R.js} +8 -8
- package/cjs/chunks/bundle-CwrQm55R.js.map +1 -0
- package/cjs/chunks/{bundle-C3kKDP3g.js → bundle-CyTIW0JZ.js} +1 -1
- package/cjs/chunks/bundle-CyTIW0JZ.js.map +1 -0
- package/cjs/chunks/{bundle-C7hLRvbU.js → bundle-D-0kNmde.js} +5 -5
- package/cjs/chunks/bundle-D-0kNmde.js.map +1 -0
- package/cjs/chunks/{bundle-B4-ARdO4.js → bundle-D-9WWmQ7.js} +4 -4
- package/cjs/chunks/bundle-D-9WWmQ7.js.map +1 -0
- package/cjs/chunks/{bundle-Bk7mbCoA.js → bundle-D45aVa7h.js} +6 -6
- package/cjs/chunks/bundle-D45aVa7h.js.map +1 -0
- package/cjs/chunks/{bundle-j9mK_OvN.js → bundle-D4LXRhUD.js} +2 -2
- package/cjs/chunks/{bundle-j9mK_OvN.js.map → bundle-D4LXRhUD.js.map} +1 -1
- package/cjs/chunks/{bundle-D4Pew2rQ.js → bundle-DDEP4rF3.js} +10 -10
- package/cjs/chunks/bundle-DDEP4rF3.js.map +1 -0
- package/cjs/chunks/{bundle-DAIvuBM5.js → bundle-DOqEHJ-4.js} +1 -1
- package/cjs/chunks/{bundle-DAIvuBM5.js.map → bundle-DOqEHJ-4.js.map} +1 -1
- package/cjs/chunks/{bundle-C0fpOgFd.js → bundle-DRlkodVP.js} +2 -2
- package/cjs/chunks/bundle-DRlkodVP.js.map +1 -0
- package/cjs/chunks/{bundle-D5h00Oig.js → bundle-DYfOAYVw.js} +4 -4
- package/cjs/chunks/bundle-DYfOAYVw.js.map +1 -0
- package/cjs/chunks/{bundle-CT3hIjDy.js → bundle-DaMfuE8O.js} +3 -3
- package/cjs/chunks/bundle-DaMfuE8O.js.map +1 -0
- package/cjs/chunks/{bundle-B9dZDOI5.js → bundle-DbH3qyAG.js} +1 -1
- package/cjs/chunks/{bundle-B9dZDOI5.js.map → bundle-DbH3qyAG.js.map} +1 -1
- package/cjs/chunks/{bundle-QeghHNoV.js → bundle-DeWZBEt-.js} +4 -4
- package/cjs/chunks/bundle-DeWZBEt-.js.map +1 -0
- package/cjs/chunks/{bundle-dHncVwtW.js → bundle-DjpWffuA.js} +1 -1
- package/cjs/chunks/bundle-DjpWffuA.js.map +1 -0
- package/cjs/chunks/{bundle-CPCYaxLI.js → bundle-DlOVETdD.js} +1 -1
- package/cjs/chunks/bundle-DlOVETdD.js.map +1 -0
- package/cjs/chunks/{bundle-hLGNL7z0.js → bundle-DnGEUKrZ.js} +5 -5
- package/cjs/chunks/bundle-DnGEUKrZ.js.map +1 -0
- package/cjs/chunks/{bundle-B_XQ1oTC.js → bundle-DpLeoU5M.js} +11 -11
- package/{chunks/bundle-Cll6FpAY.js.map → cjs/chunks/bundle-DpLeoU5M.js.map} +1 -1
- package/cjs/chunks/{bundle-Drlvp_B2.js → bundle-DrzXaO_W.js} +1 -1
- package/cjs/chunks/bundle-DrzXaO_W.js.map +1 -0
- package/cjs/chunks/{bundle-CtVzU2mF.js → bundle-DsFiTdM1.js} +1 -1
- package/cjs/chunks/bundle-DsFiTdM1.js.map +1 -0
- package/cjs/chunks/{bundle-B_42YrCV.js → bundle-Du-tPfed.js} +3 -3
- package/cjs/chunks/{bundle-B_42YrCV.js.map → bundle-Du-tPfed.js.map} +1 -1
- package/cjs/chunks/{bundle-CiX39uyp.js → bundle-DxUgagG2.js} +12 -12
- package/cjs/chunks/{bundle-CiX39uyp.js.map → bundle-DxUgagG2.js.map} +1 -1
- package/cjs/chunks/{bundle-CqRMMX3E.js → bundle-NVCMyfbx.js} +1 -1
- package/cjs/chunks/bundle-NVCMyfbx.js.map +1 -0
- package/cjs/chunks/{bundle-BJDQUar6.js → bundle-O3NwtEP9.js} +1 -1
- package/cjs/chunks/bundle-O3NwtEP9.js.map +1 -0
- package/cjs/chunks/{bundle-2kdn70Rj.js → bundle-QiL8aTMC.js} +3 -3
- package/cjs/chunks/{bundle-2kdn70Rj.js.map → bundle-QiL8aTMC.js.map} +1 -1
- package/cjs/chunks/{bundle-DF9N1Yw5.js → bundle-UPXtcgsM.js} +5 -5
- package/cjs/chunks/bundle-UPXtcgsM.js.map +1 -0
- package/cjs/chunks/{bundle-Cqk7T4-n.js → bundle-YjsUgjJP.js} +13 -13
- package/cjs/chunks/{bundle-Cqk7T4-n.js.map → bundle-YjsUgjJP.js.map} +1 -1
- package/cjs/chunks/{bundle-CFydLFa7.js → bundle-Z0hf3KQq.js} +6 -6
- package/cjs/chunks/bundle-Z0hf3KQq.js.map +1 -0
- package/cjs/chunks/{bundle-BjSsneBK.js → bundle-eDh1f0yH.js} +1 -1
- package/cjs/chunks/bundle-eDh1f0yH.js.map +1 -0
- package/cjs/chunks/{bundle-CFLbLwQA.js → bundle-frFSZ6pE.js} +8 -8
- package/cjs/chunks/{bundle-CFLbLwQA.js.map → bundle-frFSZ6pE.js.map} +1 -1
- package/cjs/chunks/{bundle-BewazTEh.js → bundle-j2NTrunF.js} +4 -4
- package/cjs/chunks/{bundle-BewazTEh.js.map → bundle-j2NTrunF.js.map} +1 -1
- package/cjs/chunks/{bundle-C-ncKvGW.js → bundle-khkLB6lz.js} +1 -1
- package/cjs/chunks/bundle-khkLB6lz.js.map +1 -0
- package/cjs/chunks/{bundle-B44RKs1i.js → bundle-oQe6hXee.js} +1 -1
- package/cjs/chunks/bundle-oQe6hXee.js.map +1 -0
- package/cjs/chunks/{bundle-BJc0JcL-.js → bundle-qyYR3zev.js} +1 -1
- package/cjs/chunks/bundle-qyYR3zev.js.map +1 -0
- package/cjs/chunks/{bundle-dwrgnCZ8.js → bundle-reY2nEU9.js} +3 -3
- package/cjs/chunks/bundle-reY2nEU9.js.map +1 -0
- package/cjs/chunks/{bundle-hf7uRYVX.js → bundle-uizj_uI6.js} +3 -3
- package/cjs/chunks/bundle-uizj_uI6.js.map +1 -0
- package/cjs/chunks/{bundle-4PNRR5W3.js → bundle-vdG6AI-_.js} +6 -6
- package/cjs/chunks/bundle-vdG6AI-_.js.map +1 -0
- package/cjs/chunks/{bundle-BfiBzzkB.js → bundle-wQzIFZ_d.js} +3 -3
- package/cjs/chunks/{bundle-BfiBzzkB.js.map → bundle-wQzIFZ_d.js.map} +1 -1
- package/cjs/chunks/{bundle-iEmMwq3m.js → bundle-y6VzViQL.js} +2 -2
- package/cjs/chunks/bundle-y6VzViQL.js.map +1 -0
- package/cjs/chunks/{bundle-BIVSA0UA.js → bundle-zmFINave.js} +2 -2
- package/cjs/chunks/bundle-zmFINave.js.map +1 -0
- package/cjs/hooks/useModal.js +15 -15
- package/cjs/index.js +79 -79
- 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 +15 -15
- 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 +8 -8
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +21 -21
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +9 -9
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +19 -19
- package/cjs/ui/Header.js +6 -6
- package/cjs/ui/Icon.js +4 -4
- 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 +3 -3
- package/cjs/ui/MentionLabel.js +15 -15
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +37 -37
- package/cjs/ui/MessageFeedbackFailedModal.js +16 -16
- package/cjs/ui/MessageFeedbackModal.js +16 -16
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +16 -16
- package/cjs/ui/MessageItemMenu.js +12 -12
- package/cjs/ui/MessageItemReactionMenu.js +11 -11
- package/cjs/ui/MessageSearchFileItem.js +15 -15
- package/cjs/ui/MessageSearchItem.js +12 -12
- package/cjs/ui/MessageStatus.js +13 -13
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +15 -15
- package/cjs/ui/Modal.js +15 -15
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +19 -19
- 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 +20 -20
- package/cjs/ui/OpenchannelOGMessage.js +22 -22
- package/cjs/ui/OpenchannelThumbnailMessage.js +19 -19
- package/cjs/ui/OpenchannelUserMessage.js +20 -20
- 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 +10 -10
- package/cjs/ui/QuoteMessageInput.js +10 -10
- 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 +10 -10
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +18 -18
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +8 -8
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +8 -8
- package/cjs/ui/UserListItem.js +15 -15
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +15 -15
- package/cjs/ui/Word.js +15 -15
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +4 -4
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +8 -10
- package/hooks/useModal.js +15 -15
- package/index.js +79 -79
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/ui/Icon/colors.d.ts +2 -2
- package/types/ui/Icon/index.d.ts +1 -1
- package/types/ui/Label/index.d.ts +1 -1
- package/types/ui/Label/types.d.ts +1 -1
- package/types/ui/Label/utils.d.ts +1 -1
- package/types/ui/LinkLabel/index.d.ts +1 -1
- package/types/ui/Modal/index.d.ts +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 +15 -15
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +8 -8
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +21 -21
- package/ui/FallbackTemplateMessageItemBody.tsx.js +9 -9
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +19 -19
- package/ui/Header.js +6 -6
- package/ui/Icon.js +4 -4
- 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 +3 -3
- package/ui/MentionLabel.js +15 -15
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +37 -37
- package/ui/MessageFeedbackFailedModal.js +16 -16
- package/ui/MessageFeedbackModal.js +16 -16
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +16 -16
- package/ui/MessageItemMenu.js +12 -12
- package/ui/MessageItemReactionMenu.js +11 -11
- package/ui/MessageSearchFileItem.js +15 -15
- package/ui/MessageSearchItem.js +12 -12
- package/ui/MessageStatus.js +13 -13
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +15 -15
- package/ui/Modal.js +15 -15
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +19 -19
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +20 -20
- package/ui/OpenchannelOGMessage.js +22 -22
- package/ui/OpenchannelThumbnailMessage.js +19 -19
- package/ui/OpenchannelUserMessage.js +20 -20
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +1 -1
- package/ui/QuoteMessage.js +10 -10
- package/ui/QuoteMessageInput.js +10 -10
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +10 -10
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +18 -18
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +8 -8
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +8 -8
- package/ui/UserListItem.js +15 -15
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +15 -15
- package/ui/Word.js +15 -15
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +4 -4
- package/withSendbird.js +1 -1
- package/chunks/bundle-0_H9lvpf.js.map +0 -1
- package/chunks/bundle-38h6y3Hb.js.map +0 -1
- package/chunks/bundle-9PpKWOoL.js.map +0 -1
- package/chunks/bundle-B5sad6LQ.js.map +0 -1
- package/chunks/bundle-BBpoyOJS.js.map +0 -1
- package/chunks/bundle-BHKxRZez.js.map +0 -1
- package/chunks/bundle-BOBvShj7.js.map +0 -1
- package/chunks/bundle-BW1heH8r.js.map +0 -1
- package/chunks/bundle-BZaNthXQ.js.map +0 -1
- package/chunks/bundle-Bb9hzsLY.js.map +0 -1
- package/chunks/bundle-Bmg_SNU1.js.map +0 -1
- package/chunks/bundle-Bu71sAcm.js.map +0 -1
- package/chunks/bundle-BukeovFR.js.map +0 -1
- package/chunks/bundle-C0Ye9Nr7.js.map +0 -1
- package/chunks/bundle-C6Uejzft.js.map +0 -1
- package/chunks/bundle-C6yJQcQ5.js.map +0 -1
- package/chunks/bundle-C83jcIQ3.js.map +0 -1
- package/chunks/bundle-CGpUZMGo.js.map +0 -1
- package/chunks/bundle-CHbs8B1_.js.map +0 -1
- package/chunks/bundle-CMr-IO14.js.map +0 -1
- package/chunks/bundle-CRRsbsT6.js.map +0 -1
- package/chunks/bundle-CRs0ZyYd.js.map +0 -1
- package/chunks/bundle-CWX597tJ.js.map +0 -1
- package/chunks/bundle-CXIUF-j1.js.map +0 -1
- package/chunks/bundle-ChoBoUg2.js.map +0 -1
- package/chunks/bundle-CvQV9eyL.js.map +0 -1
- package/chunks/bundle-Cyu8Xfnh.js.map +0 -1
- package/chunks/bundle-D1RWUo4o.js.map +0 -1
- package/chunks/bundle-D8uYbr-P.js.map +0 -1
- package/chunks/bundle-DAhJtn85.js.map +0 -1
- package/chunks/bundle-DAlnp9lF.js.map +0 -1
- package/chunks/bundle-DMqUFkSM.js.map +0 -1
- package/chunks/bundle-DNSTH1vf.js.map +0 -1
- package/chunks/bundle-DQovOEGD.js.map +0 -1
- package/chunks/bundle-DayugpLd.js.map +0 -1
- package/chunks/bundle-DpUmO1Mq.js.map +0 -1
- package/chunks/bundle-DuJ-B-ZT.js.map +0 -1
- package/chunks/bundle-DwMfxOmy.js.map +0 -1
- package/chunks/bundle-IjPHxh5M.js.map +0 -1
- package/chunks/bundle-NQPHGdv2.js.map +0 -1
- package/chunks/bundle-PcZf3aTk.js.map +0 -1
- package/chunks/bundle-Q-tobrIb.js.map +0 -1
- package/chunks/bundle-QA2AznoN.js.map +0 -1
- package/chunks/bundle-SkrZLWkc.js.map +0 -1
- package/chunks/bundle-_3WGrX6M.js.map +0 -1
- package/chunks/bundle-_Bh5w9NL.js.map +0 -1
- package/chunks/bundle-bVEG7YOP.js.map +0 -1
- package/chunks/bundle-hrN1SZ_Z.js.map +0 -1
- package/chunks/bundle-j-10ix2k.js.map +0 -1
- package/chunks/bundle-lrWED2TX.js.map +0 -1
- package/cjs/chunks/bundle-3TlzRrfD.js.map +0 -1
- package/cjs/chunks/bundle-4PNRR5W3.js.map +0 -1
- package/cjs/chunks/bundle-B0Glft9d.js.map +0 -1
- package/cjs/chunks/bundle-B4-ARdO4.js.map +0 -1
- package/cjs/chunks/bundle-B44RKs1i.js.map +0 -1
- package/cjs/chunks/bundle-BDQgAppO.js.map +0 -1
- package/cjs/chunks/bundle-BDXCaYsH.js.map +0 -1
- package/cjs/chunks/bundle-BIVSA0UA.js.map +0 -1
- package/cjs/chunks/bundle-BJDQUar6.js.map +0 -1
- package/cjs/chunks/bundle-BJc0JcL-.js.map +0 -1
- package/cjs/chunks/bundle-BO6YDwoz.js.map +0 -1
- package/cjs/chunks/bundle-BOSlF-PZ.js.map +0 -1
- package/cjs/chunks/bundle-BSVTay0K.js.map +0 -1
- package/cjs/chunks/bundle-BViYuB4_.js.map +0 -1
- package/cjs/chunks/bundle-Bb9LqSHU.js.map +0 -1
- package/cjs/chunks/bundle-BcP5dHcV.js.map +0 -1
- package/cjs/chunks/bundle-Bf2oyXSB.js.map +0 -1
- package/cjs/chunks/bundle-BjSsneBK.js.map +0 -1
- package/cjs/chunks/bundle-Bk7mbCoA.js.map +0 -1
- package/cjs/chunks/bundle-BqHow3gS.js.map +0 -1
- package/cjs/chunks/bundle-BxVcIlWI.js.map +0 -1
- package/cjs/chunks/bundle-C-ncKvGW.js.map +0 -1
- package/cjs/chunks/bundle-C0fpOgFd.js.map +0 -1
- package/cjs/chunks/bundle-C3kKDP3g.js.map +0 -1
- package/cjs/chunks/bundle-C6i19O7d.js.map +0 -1
- package/cjs/chunks/bundle-C7hLRvbU.js.map +0 -1
- package/cjs/chunks/bundle-CFydLFa7.js.map +0 -1
- package/cjs/chunks/bundle-CPCYaxLI.js.map +0 -1
- package/cjs/chunks/bundle-CT3hIjDy.js.map +0 -1
- package/cjs/chunks/bundle-CYK5sjUD.js.map +0 -1
- package/cjs/chunks/bundle-C_2JLhCE.js.map +0 -1
- package/cjs/chunks/bundle-ClDJ3S5P.js.map +0 -1
- package/cjs/chunks/bundle-CqRMMX3E.js.map +0 -1
- package/cjs/chunks/bundle-CtVzU2mF.js.map +0 -1
- package/cjs/chunks/bundle-D0PO_ruY.js.map +0 -1
- package/cjs/chunks/bundle-D0q5dAFj.js.map +0 -1
- package/cjs/chunks/bundle-D3cOq1dq.js.map +0 -1
- package/cjs/chunks/bundle-D4Pew2rQ.js.map +0 -1
- package/cjs/chunks/bundle-D4wKr-Pc.js.map +0 -1
- package/cjs/chunks/bundle-D5h00Oig.js.map +0 -1
- package/cjs/chunks/bundle-DF9N1Yw5.js.map +0 -1
- package/cjs/chunks/bundle-DFprgn2Q.js.map +0 -1
- package/cjs/chunks/bundle-DIv9aJRh.js.map +0 -1
- package/cjs/chunks/bundle-DL_1wm_B.js.map +0 -1
- package/cjs/chunks/bundle-DQcxvpWg.js.map +0 -1
- package/cjs/chunks/bundle-DepUnCxt.js.map +0 -1
- package/cjs/chunks/bundle-DqxP8px7.js.map +0 -1
- package/cjs/chunks/bundle-Drlvp_B2.js.map +0 -1
- package/cjs/chunks/bundle-DxII-H6S.js.map +0 -1
- package/cjs/chunks/bundle-F2zWPLQS.js.map +0 -1
- package/cjs/chunks/bundle-QeghHNoV.js.map +0 -1
- package/cjs/chunks/bundle-TvvKEQW4.js.map +0 -1
- package/cjs/chunks/bundle-V8KCClRo.js.map +0 -1
- package/cjs/chunks/bundle-_LlcM4bL.js.map +0 -1
- package/cjs/chunks/bundle-dHncVwtW.js.map +0 -1
- package/cjs/chunks/bundle-dwrgnCZ8.js.map +0 -1
- package/cjs/chunks/bundle-hLGNL7z0.js.map +0 -1
- package/cjs/chunks/bundle-hf7uRYVX.js.map +0 -1
- package/cjs/chunks/bundle-iEmMwq3m.js.map +0 -1
- package/cjs/chunks/bundle-kf6nqGaS.js.map +0 -1
- package/cjs/chunks/bundle-xm5DS5Lz.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-
|
|
1
|
+
import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-VXXJZkam.js';
|
|
2
2
|
|
|
3
3
|
function getMessageFirstFileType(message) {
|
|
4
4
|
return K(message)
|
|
@@ -65,4 +65,4 @@ function getMessageFirstFileThumbnailUrl(message) {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
export { getMessageFirstFileType as a, getMessageFirstFileName as b, getMessageFirstFileThumbnailUrl as c, getMessageFirstFileUrl as g };
|
|
68
|
-
//# sourceMappingURL=bundle-
|
|
68
|
+
//# sourceMappingURL=bundle-BN9hrgMv.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BN9hrgMv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import React__default, { useEffect, useCallback, useState, useReducer, useRef, useMemo } from 'react';
|
|
2
|
-
import { U as UserProfileProvider } from './bundle-
|
|
3
|
-
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-
|
|
4
|
-
import { c as compareIds } from './bundle-
|
|
5
|
-
import { p as pubSubTopics } from './bundle-
|
|
2
|
+
import { U as UserProfileProvider } from './bundle-CFVWrfBk.js';
|
|
3
|
+
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-DdIo_zFs.js';
|
|
4
|
+
import { c as compareIds } from './bundle-CzPQUoBY.js';
|
|
5
|
+
import { p as pubSubTopics } from './bundle-6c1kf582.js';
|
|
6
6
|
import { ChannelType } from '@sendbird/chat';
|
|
7
7
|
import { OpenChannelHandler } from '@sendbird/chat/openChannel';
|
|
8
|
-
import { u as uuidv4 } from './bundle-
|
|
9
|
-
import { c as compressImages } from './bundle-
|
|
8
|
+
import { u as uuidv4 } from './bundle-BJuiDRhf.js';
|
|
9
|
+
import { c as compressImages } from './bundle-CpcYL8Ew.js';
|
|
10
10
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
11
|
-
import { b as useGlobalModalContext, c as ModalFooter } from './bundle-
|
|
12
|
-
import { u as useLocalization } from './bundle-
|
|
13
|
-
import { O as ONE_MiB } from './bundle-
|
|
14
|
-
import './bundle-
|
|
11
|
+
import { b as useGlobalModalContext, c as ModalFooter } from './bundle-C7vkuHMJ.js';
|
|
12
|
+
import { u as useLocalization } from './bundle-DT4DSBZo.js';
|
|
13
|
+
import { O as ONE_MiB } from './bundle-B9jaULeT.js';
|
|
14
|
+
import './bundle-DEtCTxPD.js';
|
|
15
15
|
import { ButtonTypes } from '../ui/Button.js';
|
|
16
16
|
|
|
17
17
|
var shouldFetchMore = function (messageLength, maxMessages) {
|
|
@@ -1355,4 +1355,4 @@ var useOpenChannelContext = function () {
|
|
|
1355
1355
|
};
|
|
1356
1356
|
|
|
1357
1357
|
export { OpenChannelProvider as O, kFormatter as k, useOpenChannelContext as u };
|
|
1358
|
-
//# sourceMappingURL=bundle-
|
|
1358
|
+
//# sourceMappingURL=bundle-BNSIBEFq.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BNSIBEFq.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BOBvB-6E.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAe,SAAS,OAAO,CAAC,CAAC,EAAE;AACnC,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BPHZWcCv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BU88BWC9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-DdIo_zFs.js';
|
|
2
2
|
import React__default, { useContext, useState, useEffect, useRef, useCallback } from 'react';
|
|
3
3
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
4
4
|
import ContextMenu, { MenuItems, OperatorMenuItem, MuteMenuItem, MenuItem } from '../ui/ContextMenu.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-DEtCTxPD.js';
|
|
8
8
|
import { Participant } from '@sendbird/chat';
|
|
9
|
-
import { L as LocalizationContext } from './bundle-
|
|
10
|
-
import { a as UserProfileContext } from './bundle-
|
|
9
|
+
import { L as LocalizationContext } from './bundle-DT4DSBZo.js';
|
|
10
|
+
import { a as UserProfileContext } from './bundle-CFVWrfBk.js';
|
|
11
11
|
import '../ui/AccordionGroup.js';
|
|
12
|
-
import { A as Avatar } from './bundle-
|
|
12
|
+
import { A as Avatar } from './bundle-CKHDZj3X.js';
|
|
13
13
|
import 'react-dom';
|
|
14
|
-
import './bundle-
|
|
14
|
+
import './bundle-ByOz6UaI.js';
|
|
15
15
|
import '@sendbird/uikit-tools';
|
|
16
16
|
import '../withSendbird.js';
|
|
17
17
|
import 'css-vars-ponyfill';
|
|
18
|
-
import './bundle-
|
|
18
|
+
import './bundle-VXXJZkam.js';
|
|
19
19
|
import '@sendbird/chat/openChannel';
|
|
20
20
|
import '@sendbird/chat/groupChannel';
|
|
21
|
-
import './bundle-
|
|
22
|
-
import { M as Modal } from './bundle-
|
|
21
|
+
import './bundle-DEc9jVCz.js';
|
|
22
|
+
import { M as Modal } from './bundle-C7vkuHMJ.js';
|
|
23
23
|
import MutedAvatarOverlay from '../ui/MutedAvatarOverlay.js';
|
|
24
24
|
import UserProfile from '../ui/UserProfile.js';
|
|
25
25
|
import { useOpenChannelSettingsContext } from '../OpenChannelSettings/context.js';
|
|
26
26
|
import UserListItem$1 from '../ui/UserListItem.js';
|
|
27
|
-
import { n as noop } from './bundle-
|
|
27
|
+
import { n as noop } from './bundle-BPHZWcCv.js';
|
|
28
28
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
29
29
|
|
|
30
30
|
function ParticipantsModal(_a) {
|
|
@@ -213,4 +213,4 @@ function ParticipantList(_a) {
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
export { ParticipantList as P, UserListItem as U };
|
|
216
|
-
//# sourceMappingURL=bundle-
|
|
216
|
+
//# sourceMappingURL=bundle-BdSPinDs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BdSPinDs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,7 +3,7 @@ import { GroupChannelListHeader } from '../GroupChannelList/components/GroupChan
|
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
4
|
import EditUserProfile from '../EditUserProfile.js';
|
|
5
5
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
6
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
6
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-vrHvkBOt.js';
|
|
7
7
|
|
|
8
8
|
var GroupChannelListUIView = function (_a) {
|
|
9
9
|
var renderHeader = _a.renderHeader, renderPlaceHolderError = _a.renderPlaceHolderError, renderPlaceHolderLoading = _a.renderPlaceHolderLoading, renderPlaceHolderEmptyList = _a.renderPlaceHolderEmptyList, onChangeTheme = _a.onChangeTheme, onUserProfileUpdated = _a.onUserProfileUpdated, allowProfileEdit = _a.allowProfileEdit, channels = _a.channels, onLoadMore = _a.onLoadMore, initialized = _a.initialized, renderChannel = _a.renderChannel, renderAddChannel = _a.renderAddChannel;
|
|
@@ -64,4 +64,4 @@ var ChannelListComponent = function (props) {
|
|
|
64
64
|
};
|
|
65
65
|
|
|
66
66
|
export { GroupChannelListUIView as G };
|
|
67
|
-
//# sourceMappingURL=bundle-
|
|
67
|
+
//# sourceMappingURL=bundle-Bg_q4-JM.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Bg_q4-JM.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BkXs4vmC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as VOICE_RECORDER_AUDIO_SAMPLE_RATE } from './bundle-
|
|
1
|
+
import { b as VOICE_RECORDER_AUDIO_SAMPLE_RATE } from './bundle-B9jaULeT.js';
|
|
2
2
|
import { WavHeader as ut, Mp3Encoder as ht } from '../lame.all.js';
|
|
3
3
|
|
|
4
4
|
// Thanks to https://codesandbox.io/s/media-recorder-api-downsampling-16k-mp3-encode-using-lame-js-forked-n1pblw
|
|
@@ -126,4 +126,4 @@ function bufferToWav(abuffer, len) {
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
export { downsampleToWav, encodeMp3 };
|
|
129
|
-
//# sourceMappingURL=bundle-
|
|
129
|
+
//# sourceMappingURL=bundle-BnTQqt6n.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BnTQqt6n.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BpOEDk4N.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { i as isSameDay } from './bundle-
|
|
2
|
-
import { r as requiredArgs, t as toDate } from './bundle-
|
|
3
|
-
import { t as toInteger } from './bundle-
|
|
1
|
+
import { i as isSameDay } from './bundle-7aYnlE9g.js';
|
|
2
|
+
import { r as requiredArgs, t as toDate } from './bundle-BOBvB-6E.js';
|
|
3
|
+
import { t as toInteger } from './bundle-ySoO0NFU.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @name isToday
|
|
@@ -163,4 +163,4 @@ function isYesterday(dirtyDate) {
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
export { isYesterday as a, isThisYear as b, isToday as i };
|
|
166
|
-
//# sourceMappingURL=bundle-
|
|
166
|
+
//# sourceMappingURL=bundle-Bt0C-BFZ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Bt0C-BFZ.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
|
|
@@ -4,17 +4,17 @@ import IconButton from '../ui/IconButton.js';
|
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
5
|
import ContextMenu, { MenuItems, OperatorMenuItem, MuteMenuItem, MenuItem } from '../ui/ContextMenu.js';
|
|
6
6
|
import UserListItem$1 from '../ChannelSettings/components/UserListItem.js';
|
|
7
|
-
import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-
|
|
7
|
+
import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-DdIo_zFs.js';
|
|
8
8
|
import { Role } from '@sendbird/chat';
|
|
9
|
-
import { M as Modal } from './bundle-
|
|
9
|
+
import { M as Modal } from './bundle-C7vkuHMJ.js';
|
|
10
10
|
import UserListItem from '../ui/UserListItem.js';
|
|
11
|
-
import { n as noop } from './bundle-
|
|
11
|
+
import { n as noop } from './bundle-BPHZWcCv.js';
|
|
12
12
|
import { useChannelSettingsContext } from '../ChannelSettings/context.js';
|
|
13
13
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
14
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
15
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
16
|
-
import './bundle-
|
|
17
|
-
import { u as uuidv4 } from './bundle-
|
|
14
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-DT4DSBZo.js';
|
|
15
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-vrHvkBOt.js';
|
|
16
|
+
import './bundle-DEtCTxPD.js';
|
|
17
|
+
import { u as uuidv4 } from './bundle-BJuiDRhf.js';
|
|
18
18
|
|
|
19
19
|
function MembersModal(_a) {
|
|
20
20
|
var _this = this;
|
|
@@ -281,4 +281,4 @@ var MemberList = function () {
|
|
|
281
281
|
};
|
|
282
282
|
|
|
283
283
|
export { MemberList as M };
|
|
284
|
-
//# sourceMappingURL=bundle-
|
|
284
|
+
//# sourceMappingURL=bundle-BxHNvmlk.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BxHNvmlk.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-ByOz6UaI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-ByOz6UaI.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,11 +1,11 @@
|
|
|
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-C7vkuHMJ.js';
|
|
3
|
+
import './bundle-DdIo_zFs.js';
|
|
4
|
+
import './bundle-DEtCTxPD.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
6
|
+
import { L as LocalizationContext } from './bundle-DT4DSBZo.js';
|
|
7
7
|
import { useThreadContext } from '../Thread/context.js';
|
|
8
|
-
import { g as getModalDeleteMessageTitle } from './bundle-
|
|
8
|
+
import { g as getModalDeleteMessageTitle } from './bundle-CoKBNINX.js';
|
|
9
9
|
|
|
10
10
|
var RemoveMessage = function (props) {
|
|
11
11
|
var _a, _b;
|
|
@@ -21,4 +21,4 @@ var RemoveMessage = function (props) {
|
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export { RemoveMessage as R };
|
|
24
|
-
//# sourceMappingURL=bundle-
|
|
24
|
+
//# sourceMappingURL=bundle-C0OqoVhE.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C0OqoVhE.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C5TWIrbF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { c as __spreadArray, _ as __assign } from './bundle-
|
|
1
|
+
import { c as __spreadArray, _ as __assign } from './bundle-DdIo_zFs.js';
|
|
2
2
|
import React__default, { useContext, useState, useEffect, createContext, useCallback, useMemo } from 'react';
|
|
3
|
-
import { K } from './bundle-
|
|
4
|
-
import { c as classnames, n as noop } from './bundle-
|
|
3
|
+
import { K } from './bundle-VXXJZkam.js';
|
|
4
|
+
import { c as classnames, n as noop } from './bundle-BPHZWcCv.js';
|
|
5
5
|
import { createPortal } from 'react-dom';
|
|
6
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
7
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
6
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-DT4DSBZo.js';
|
|
7
|
+
import { u as useMediaQueryContext } from './bundle-ByOz6UaI.js';
|
|
8
8
|
import IconButton from '../ui/IconButton.js';
|
|
9
9
|
import Button, { ButtonTypes } from '../ui/Button.js';
|
|
10
10
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
11
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
11
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DEtCTxPD.js';
|
|
12
12
|
import '@sendbird/uikit-tools';
|
|
13
13
|
import '../withSendbird.js';
|
|
14
14
|
import 'css-vars-ponyfill';
|
|
15
15
|
import '@sendbird/chat';
|
|
16
|
-
import { u as uuidv4 } from './bundle-
|
|
16
|
+
import { u as uuidv4 } from './bundle-BJuiDRhf.js';
|
|
17
17
|
import '@sendbird/chat/openChannel';
|
|
18
18
|
import '@sendbird/chat/groupChannel';
|
|
19
|
-
import './bundle-
|
|
20
|
-
import { B as BROWSER_SUPPORT_MIME_TYPE_LIST, j as VOICE_RECORDER_AUDIO_BIT_RATE, e as VOICE_MESSAGE_FILE_NAME, a as VOICE_MESSAGE_MIME_TYPE } from './bundle-
|
|
19
|
+
import './bundle-DEc9jVCz.js';
|
|
20
|
+
import { B as BROWSER_SUPPORT_MIME_TYPE_LIST, j as VOICE_RECORDER_AUDIO_BIT_RATE, e as VOICE_MESSAGE_FILE_NAME, a as VOICE_MESSAGE_MIME_TYPE } from './bundle-B9jaULeT.js';
|
|
21
21
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
22
|
-
import './bundle-
|
|
22
|
+
import './bundle-p7o7XIwK.js';
|
|
23
23
|
|
|
24
24
|
// simple component to be used as modal root
|
|
25
25
|
var MODAL_ROOT = 'sendbird-modal-root';
|
|
@@ -93,7 +93,7 @@ var VoiceRecorderProvider = function (props) {
|
|
|
93
93
|
}
|
|
94
94
|
useEffect(function () {
|
|
95
95
|
if (isVoiceMessageEnabled && !webAudioUtils) {
|
|
96
|
-
import('./bundle-
|
|
96
|
+
import('./bundle-BnTQqt6n.js').then(function (module) { return setWebAudioUtils(module); });
|
|
97
97
|
}
|
|
98
98
|
}, [isVoiceMessageEnabled, webAudioUtils]);
|
|
99
99
|
var start = useCallback(function (eventHandler) {
|
|
@@ -271,4 +271,4 @@ var EmojiManager = /** @class */ (function () {
|
|
|
271
271
|
}());
|
|
272
272
|
|
|
273
273
|
export { EmojiManager as E, GlobalModalProvider as G, Modal as M, VoiceRecorderProvider as V, MODAL_ROOT as a, useGlobalModalContext as b, ModalFooter as c, ModalRoot as d, ModalHeader as e, ModalBody as f, index as i, useVoiceRecorderContext as u };
|
|
274
|
-
//# sourceMappingURL=bundle-
|
|
274
|
+
//# sourceMappingURL=bundle-C7vkuHMJ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-C7vkuHMJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CCLbyHL5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DdIo_zFs.js';
|
|
2
2
|
import React__default, { useState } from 'react';
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
-
import { u as useLongPress } from './bundle-
|
|
5
|
-
import { u as useLocalization } from './bundle-
|
|
6
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
7
|
-
import { n as noop } from './bundle-
|
|
8
|
-
import { i as isVoiceMessage } from './bundle-
|
|
9
|
-
import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-
|
|
4
|
+
import { u as useLongPress } from './bundle-DhI4QWLh.js';
|
|
5
|
+
import { u as useLocalization } from './bundle-DT4DSBZo.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-ByOz6UaI.js';
|
|
7
|
+
import { n as noop } from './bundle-BPHZWcCv.js';
|
|
8
|
+
import { i as isVoiceMessage } from './bundle-VXXJZkam.js';
|
|
9
|
+
import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-uQmOP01H.js';
|
|
10
10
|
import { TypingIndicatorText } from '../GroupChannel/components/TypingIndicator.js';
|
|
11
11
|
import Badge from '../ui/Badge.js';
|
|
12
12
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
13
13
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
14
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
14
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DEtCTxPD.js';
|
|
15
15
|
import MentionUserLabel from '../ui/MentionUserLabel.js';
|
|
16
|
-
import { M as Modal } from './bundle-
|
|
16
|
+
import { M as Modal } from './bundle-C7vkuHMJ.js';
|
|
17
17
|
import TextButton from '../ui/TextButton.js';
|
|
18
18
|
|
|
19
19
|
var GroupChannelListItemView = function (_a) {
|
|
@@ -84,4 +84,4 @@ var GroupChannelListItemView = function (_a) {
|
|
|
84
84
|
};
|
|
85
85
|
|
|
86
86
|
export { GroupChannelListItemView as G };
|
|
87
|
-
//# sourceMappingURL=bundle-
|
|
87
|
+
//# sourceMappingURL=bundle-CEQrkcG2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CEQrkcG2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CFVWrfBk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-DdIo_zFs.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-BU88BWC9.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-BPHZWcCv.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-CKHDZj3X.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CKHDZj3X.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-COi-bE-H.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { useCallback, useEffect } from 'react';
|
|
2
2
|
import { ReplyType } from '@sendbird/chat/message';
|
|
3
|
-
import { s as scrollIntoLast, c as scrollToRenderedMessage } from './bundle-
|
|
4
|
-
import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-
|
|
5
|
-
import './bundle-
|
|
6
|
-
import { c as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-
|
|
3
|
+
import { s as scrollIntoLast, c as scrollToRenderedMessage } from './bundle-DZj625VH.js';
|
|
4
|
+
import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-BMIlxeLF.js';
|
|
5
|
+
import './bundle-YkcGOzNM.js';
|
|
6
|
+
import { c as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-B9jaULeT.js';
|
|
7
7
|
|
|
8
8
|
// For legacy
|
|
9
9
|
// These are not used for collections(GroupChannel)
|
|
@@ -100,4 +100,4 @@ function useInitialMessagesFetch(_a, _b) {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
export { NEXT_RESULT_SIZE as N, PREV_RESULT_SIZE as P, useInitialMessagesFetch as u };
|
|
103
|
-
//# sourceMappingURL=bundle-
|
|
103
|
+
//# sourceMappingURL=bundle-CVozsUjP.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CVozsUjP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-DdIo_zFs.js';
|
|
2
2
|
|
|
3
3
|
var USER_MENTION_PREFIX = '@';
|
|
4
4
|
|
|
@@ -143,4 +143,4 @@ function getWhiteSpacePreservedText(text) {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
export { TOKEN_TYPES as T, USER_MENTION_PREFIX as U, getWhiteSpacePreservedText as g, tokenizeMessage as t };
|
|
146
|
-
//# sourceMappingURL=bundle-
|
|
146
|
+
//# sourceMappingURL=bundle-CjpdKqHs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CjpdKqHs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|