@sendbird/uikit-react 3.14.1 → 3.14.2
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 +74 -74
- package/CHANGELOG.md +21 -0
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +63 -63
- package/Channel/components/FileViewer.js +28 -28
- package/Channel/components/FrozenNotification.js +5 -5
- package/Channel/components/Message.js +53 -53
- package/Channel/components/MessageInput.js +41 -41
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +56 -56
- package/Channel/components/RemoveMessageModal.js +27 -27
- package/Channel/components/SuggestedMentionList.js +27 -27
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +19 -19
- package/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/Channel/utils/getMessagePartsInfo.js +6 -6
- package/Channel.js +63 -63
- package/ChannelList/components/AddChannel.js +20 -20
- package/ChannelList/components/ChannelListHeader.js +8 -8
- package/ChannelList/components/ChannelListUI.js +34 -34
- package/ChannelList/components/ChannelPreview.js +27 -27
- package/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/ChannelList/context.js +10 -10
- package/ChannelList.js +34 -34
- package/ChannelSettings/components/ChannelProfile.js +14 -14
- package/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/ChannelSettings/components/ChannelSettingsUI.js +22 -22
- package/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/ChannelSettings/components/LeaveChannel.js +11 -11
- package/ChannelSettings/components/ModerationPanel.js +20 -20
- package/ChannelSettings/components/UserListItem.js +13 -13
- package/ChannelSettings/components/UserPanel.js +20 -20
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +22 -22
- package/CreateChannel/components/CreateChannelUI.js +16 -16
- package/CreateChannel/components/InviteUsers.js +16 -16
- package/CreateChannel/components/SelectChannelType.js +10 -10
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +16 -16
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +11 -11
- package/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/EditUserProfile.js +12 -12
- package/GroupChannel/components/FileViewer.js +24 -24
- package/GroupChannel/components/FrozenNotification.js +5 -5
- package/GroupChannel/components/GroupChannelHeader.js +23 -23
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +51 -51
- package/GroupChannel/components/MessageInputWrapper.js +39 -39
- package/GroupChannel/components/MessageList.js +51 -51
- package/GroupChannel/components/RemoveMessageModal.js +23 -23
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +7 -7
- package/GroupChannel/context.js +20 -13
- package/GroupChannel/context.js.map +1 -1
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +33 -33
- package/MessageSearch/components/MessageSearchUI.js +14 -14
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +14 -14
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/OpenChannel/components/OpenChannelInput.js +25 -25
- package/OpenChannel/components/OpenChannelMessage.js +39 -39
- package/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/OpenChannel/components/OpenChannelUI.js +39 -39
- package/OpenChannel/context.js +17 -17
- package/OpenChannel.js +39 -39
- package/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +14 -14
- package/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +18 -18
- package/OpenChannelSettings/components/OperatorUI.js +18 -18
- package/OpenChannelSettings/components/ParticipantUI.js +16 -16
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +18 -18
- package/SendbirdProvider.js +18 -18
- package/Thread/components/ParentMessageInfo.js +42 -42
- package/Thread/components/ParentMessageInfoItem.js +31 -32
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +7 -7
- package/Thread/components/ThreadList.js +46 -46
- package/Thread/components/ThreadListItem.js +46 -46
- package/Thread/components/ThreadMessageInput.js +43 -43
- package/Thread/components/ThreadUI.js +56 -56
- package/Thread/context.js +9 -9
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +10 -10
- package/VoiceRecorder/context.js +10 -10
- package/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/chunks/{bundle-C5yKwJa5.js → bundle--4VpdkOk.js} +4 -4
- package/chunks/{bundle-C5yKwJa5.js.map → bundle--4VpdkOk.js.map} +1 -1
- package/chunks/{bundle-CVBV25Ez.js → bundle-4qXDtSKj.js} +4 -4
- package/chunks/bundle-4qXDtSKj.js.map +1 -0
- package/chunks/{bundle-C0hxFMpo.js → bundle-57WiBzef.js} +1 -1
- package/chunks/bundle-57WiBzef.js.map +1 -0
- package/chunks/{bundle-BJ8L9q1S.js → bundle-5Yi0S6u0.js} +1 -1
- package/chunks/bundle-5Yi0S6u0.js.map +1 -0
- package/chunks/{bundle-Buy5OFoZ.js → bundle-9-bZdwX6.js} +2 -2
- package/chunks/{bundle-Buy5OFoZ.js.map → bundle-9-bZdwX6.js.map} +1 -1
- package/chunks/{bundle-ByOL8d1Y.js → bundle-Aca68v_Z.js} +3 -3
- package/chunks/bundle-Aca68v_Z.js.map +1 -0
- package/chunks/{bundle-C4E6x1yH.js → bundle-B2uB4TXG.js} +1 -1
- package/chunks/bundle-B2uB4TXG.js.map +1 -0
- package/chunks/{bundle--KTlVDyw.js → bundle-B5Cdyj9S.js} +5 -5
- package/chunks/{bundle--KTlVDyw.js.map → bundle-B5Cdyj9S.js.map} +1 -1
- package/chunks/{bundle-BWCUNJoA.js → bundle-BF8Qdge0.js} +1 -1
- package/chunks/bundle-BF8Qdge0.js.map +1 -0
- package/chunks/{bundle-CzznhOkf.js → bundle-BG2djHBA.js} +3 -3
- package/chunks/bundle-BG2djHBA.js.map +1 -0
- package/chunks/{bundle-Cr5JfXnd.js → bundle-BH6pGtIL.js} +1 -1
- package/chunks/bundle-BH6pGtIL.js.map +1 -0
- package/chunks/{bundle-Cv74ntvD.js → bundle-BHpijKgj.js} +3 -3
- package/chunks/{bundle-Cv74ntvD.js.map → bundle-BHpijKgj.js.map} +1 -1
- package/chunks/{bundle-BlbJo9zV.js → bundle-BI7jBgEO.js} +1 -1
- package/chunks/bundle-BI7jBgEO.js.map +1 -0
- package/chunks/{bundle-CzECC0WY.js → bundle-BOnWRs_F.js} +1 -1
- package/chunks/{bundle-CzECC0WY.js.map → bundle-BOnWRs_F.js.map} +1 -1
- package/chunks/{bundle-DdrjZDoC.js → bundle-BXieK_Uz.js} +1 -1
- package/chunks/bundle-BXieK_Uz.js.map +1 -0
- package/chunks/{bundle-DAf6h8hw.js → bundle-BZ4wmw9U.js} +11 -11
- package/chunks/{bundle-DAf6h8hw.js.map → bundle-BZ4wmw9U.js.map} +1 -1
- package/chunks/{bundle-DChW5Z3e.js → bundle-BcHXJbem.js} +1 -1
- package/chunks/bundle-BcHXJbem.js.map +1 -0
- package/chunks/{bundle-CRJQQ2Pt.js → bundle-BdOcjdmg.js} +3 -3
- package/chunks/{bundle-CRJQQ2Pt.js.map → bundle-BdOcjdmg.js.map} +1 -1
- package/chunks/{bundle-DiKCx9T0.js → bundle-BlN1UcdM.js} +3 -3
- package/chunks/bundle-BlN1UcdM.js.map +1 -0
- package/chunks/{bundle-BCNLSTzO.js → bundle-BsoAxhbJ.js} +2 -2
- package/chunks/{bundle-BCNLSTzO.js.map → bundle-BsoAxhbJ.js.map} +1 -1
- package/chunks/{bundle-D3BcbbU5.js → bundle-Bzds2Ucm.js} +1 -1
- package/chunks/bundle-Bzds2Ucm.js.map +1 -0
- package/chunks/{bundle-DpQTyp78.js → bundle-C3uI29Cf.js} +7 -7
- package/chunks/bundle-C3uI29Cf.js.map +1 -0
- package/chunks/{bundle-CXPL_q7g.js → bundle-C6a7C-OU.js} +1 -1
- package/chunks/bundle-C6a7C-OU.js.map +1 -0
- package/chunks/{bundle-BmJp9ELx.js → bundle-C6iM_9qC.js} +4 -4
- package/chunks/bundle-C6iM_9qC.js.map +1 -0
- package/chunks/{bundle-Dp8Uc0CR.js → bundle-C6xB7o0l.js} +6 -6
- package/chunks/bundle-C6xB7o0l.js.map +1 -0
- package/chunks/{bundle-CfCfA_eS.js → bundle-CAdHlM56.js} +1 -1
- package/chunks/bundle-CAdHlM56.js.map +1 -0
- package/chunks/{bundle-C8JSMAy5.js → bundle-CBZIpr5d.js} +4 -4
- package/chunks/bundle-CBZIpr5d.js.map +1 -0
- package/chunks/{bundle-CMdrfQU4.js → bundle-CGJB7Stb.js} +3 -3
- package/chunks/{bundle-CMdrfQU4.js.map → bundle-CGJB7Stb.js.map} +1 -1
- package/chunks/{bundle-C9k4XREr.js → bundle-CIcpyYvw.js} +3 -3
- package/chunks/bundle-CIcpyYvw.js.map +1 -0
- package/chunks/{bundle-DraDQPaG.js → bundle-CJV_wP6s.js} +5 -5
- package/chunks/bundle-CJV_wP6s.js.map +1 -0
- package/chunks/{bundle--6zoMlSy.js → bundle-CL7uZG_N.js} +7 -7
- package/chunks/{bundle--6zoMlSy.js.map → bundle-CL7uZG_N.js.map} +1 -1
- package/chunks/{bundle-DRWNB6So.js → bundle-CMZSpHeh.js} +1 -1
- package/chunks/{bundle-DRWNB6So.js.map → bundle-CMZSpHeh.js.map} +1 -1
- package/chunks/{bundle-BqZ85d_h.js → bundle-CRA9P1Ar.js} +24 -9
- package/chunks/bundle-CRA9P1Ar.js.map +1 -0
- package/chunks/{bundle-tVxHr2lN.js → bundle-CawmTzdt.js} +2 -2
- package/chunks/bundle-CawmTzdt.js.map +1 -0
- package/chunks/{bundle-Ryg4dN5c.js → bundle-CcVV9Duy.js} +2 -2
- package/chunks/bundle-CcVV9Duy.js.map +1 -0
- package/chunks/{bundle-DYRfOZJn.js → bundle-Cg3QkAp8.js} +5 -5
- package/chunks/bundle-Cg3QkAp8.js.map +1 -0
- package/chunks/{bundle-Dan3OYIf.js → bundle-CpSaHNkG.js} +11 -11
- package/chunks/{bundle-Dan3OYIf.js.map → bundle-CpSaHNkG.js.map} +1 -1
- package/chunks/{bundle-D7hy2K0F.js → bundle-Cr5La9_v.js} +5 -5
- package/chunks/{bundle-D7hy2K0F.js.map → bundle-Cr5La9_v.js.map} +1 -1
- package/chunks/{bundle-CemSwFjs.js → bundle-CrN7EoKs.js} +3 -3
- package/chunks/bundle-CrN7EoKs.js.map +1 -0
- package/chunks/{bundle-CypLTOy5.js → bundle-Csv255vx.js} +1 -1
- package/chunks/bundle-Csv255vx.js.map +1 -0
- package/chunks/{bundle-BYJO_VIh.js → bundle-Cyeay9b0.js} +10 -10
- package/chunks/{bundle-BYJO_VIh.js.map → bundle-Cyeay9b0.js.map} +1 -1
- package/chunks/{bundle-CcCCSO3j.js → bundle-CzOZ6n5M.js} +3 -3
- package/chunks/bundle-CzOZ6n5M.js.map +1 -0
- package/chunks/{bundle-CSD1Y0Up.js → bundle-D45IsnKY.js} +1 -1
- package/chunks/bundle-D45IsnKY.js.map +1 -0
- package/chunks/{bundle-C5gv8BUg.js → bundle-D8Og7UbO.js} +10 -10
- package/chunks/bundle-D8Og7UbO.js.map +1 -0
- package/chunks/{bundle-CLEZvXSa.js → bundle-D9cuES1q.js} +6 -6
- package/chunks/bundle-D9cuES1q.js.map +1 -0
- package/chunks/{bundle-DKTKyX5B.js → bundle-DBqo_XXO.js} +1 -1
- package/chunks/bundle-DBqo_XXO.js.map +1 -0
- package/chunks/{bundle-BSOtUr3s.js → bundle-DI-PfZ0q.js} +1 -1
- package/chunks/{bundle-BSOtUr3s.js.map → bundle-DI-PfZ0q.js.map} +1 -1
- package/chunks/{bundle-D2nMevA-.js → bundle-DLRehrJy.js} +2 -2
- package/chunks/bundle-DLRehrJy.js.map +1 -0
- package/chunks/{bundle-Cxxoo-8r.js → bundle-DOoLmQn1.js} +4 -4
- package/chunks/{bundle-Cxxoo-8r.js.map → bundle-DOoLmQn1.js.map} +1 -1
- package/chunks/{bundle-BmJsj1DE.js → bundle-DQ2TqmPV.js} +1 -1
- package/chunks/bundle-DQ2TqmPV.js.map +1 -0
- package/chunks/{bundle-B-rlaXWu.js → bundle-DRN8Ufbc.js} +15 -4
- package/chunks/bundle-DRN8Ufbc.js.map +1 -0
- package/chunks/{bundle-CEBnyfFY.js → bundle-DWLEk8wY.js} +1 -1
- package/chunks/bundle-DWLEk8wY.js.map +1 -0
- package/chunks/{bundle-DURANzV-.js → bundle-DYAiU0qn.js} +6 -6
- package/chunks/bundle-DYAiU0qn.js.map +1 -0
- package/chunks/{bundle-DIQmyyii.js → bundle-DehMr9Ib.js} +1 -1
- package/chunks/bundle-DehMr9Ib.js.map +1 -0
- package/chunks/{bundle-BGjW7OlD.js → bundle-DggFD55q.js} +3 -3
- package/chunks/{bundle-BGjW7OlD.js.map → bundle-DggFD55q.js.map} +1 -1
- package/chunks/{bundle-DmHVnPIK.js → bundle-DhKZXsZz.js} +3 -3
- package/chunks/bundle-DhKZXsZz.js.map +1 -0
- package/chunks/{bundle-Bxhw3nyo.js → bundle-DjIH-Zhh.js} +1 -1
- package/chunks/bundle-DjIH-Zhh.js.map +1 -0
- package/chunks/{bundle-DOE8EVWg.js → bundle-DoMztHB5.js} +1 -1
- package/chunks/bundle-DoMztHB5.js.map +1 -0
- package/chunks/{bundle-DR0N9Re_.js → bundle-Dorruixf.js} +1 -1
- package/chunks/bundle-Dorruixf.js.map +1 -0
- package/chunks/{bundle-B1531-Xt.js → bundle-DrCrimot.js} +1 -1
- package/chunks/bundle-DrCrimot.js.map +1 -0
- package/chunks/{bundle-Dzzjbgaw.js → bundle-DsQ2We8f.js} +1 -1
- package/chunks/bundle-DsQ2We8f.js.map +1 -0
- package/chunks/{bundle-CwodDxvD.js → bundle-DseK7HAq.js} +1 -1
- package/chunks/bundle-DseK7HAq.js.map +1 -0
- package/chunks/{bundle-CsWx1pIH.js → bundle-DwGTajGA.js} +10 -10
- package/chunks/{bundle-CsWx1pIH.js.map → bundle-DwGTajGA.js.map} +1 -1
- package/chunks/{bundle-BqpRc1fc.js → bundle-DxEvZ3nM.js} +1 -1
- package/chunks/bundle-DxEvZ3nM.js.map +1 -0
- package/chunks/{bundle-B4gJwLnb.js → bundle-Dxzrjw7N.js} +8 -8
- package/chunks/{bundle-B4gJwLnb.js.map → bundle-Dxzrjw7N.js.map} +1 -1
- package/chunks/{bundle-D3hUaRgQ.js → bundle-E2vRu-P9.js} +14 -14
- package/chunks/{bundle-D3hUaRgQ.js.map → bundle-E2vRu-P9.js.map} +1 -1
- package/chunks/{bundle-oKdCuyHB.js → bundle-GCGSXAv2.js} +1 -1
- package/chunks/bundle-GCGSXAv2.js.map +1 -0
- package/chunks/{bundle-DqYLLkVp.js → bundle-HZep7sau.js} +3 -3
- package/chunks/{bundle-DqYLLkVp.js.map → bundle-HZep7sau.js.map} +1 -1
- package/chunks/{bundle-h_OgbXNz.js → bundle-QXkA0r0j.js} +1 -1
- package/chunks/bundle-QXkA0r0j.js.map +1 -0
- package/chunks/{bundle-vcCWiyPL.js → bundle-SZiUs2w_.js} +2 -2
- package/chunks/{bundle-vcCWiyPL.js.map → bundle-SZiUs2w_.js.map} +1 -1
- package/chunks/{bundle-CKUGA2Du.js → bundle-ShfUz6vN.js} +4 -4
- package/chunks/{bundle-CKUGA2Du.js.map → bundle-ShfUz6vN.js.map} +1 -1
- package/chunks/{bundle-BR7FU00z.js → bundle-VjnnO2d0.js} +2 -2
- package/chunks/{bundle-BR7FU00z.js.map → bundle-VjnnO2d0.js.map} +1 -1
- package/chunks/{bundle-CqjZHu2X.js → bundle-XCQLW6rR.js} +1 -1
- package/chunks/{bundle-CqjZHu2X.js.map → bundle-XCQLW6rR.js.map} +1 -1
- package/chunks/{bundle-D-62maU6.js → bundle-aP11SYmE.js} +2 -2
- package/chunks/bundle-aP11SYmE.js.map +1 -0
- package/chunks/{bundle-Ca-c848e.js → bundle-eddZycld.js} +1 -1
- package/chunks/{bundle-Ca-c848e.js.map → bundle-eddZycld.js.map} +1 -1
- package/chunks/{bundle-DluCUNJH.js → bundle-gwYwzrc3.js} +1 -1
- package/chunks/bundle-gwYwzrc3.js.map +1 -0
- package/chunks/{bundle-BGCeRCjz.js → bundle-jpdMhsoB.js} +3 -3
- package/chunks/{bundle-BGCeRCjz.js.map → bundle-jpdMhsoB.js.map} +1 -1
- package/chunks/{bundle-DLC9d0SK.js → bundle-pMKSbn_-.js} +2 -2
- package/chunks/{bundle-DLC9d0SK.js.map → bundle-pMKSbn_-.js.map} +1 -1
- package/chunks/{bundle-BL67-UYY.js → bundle-w_-mtnA_.js} +3 -3
- package/chunks/bundle-w_-mtnA_.js.map +1 -0
- package/chunks/{bundle-cbuWRyNb.js → bundle-z2HCq-tP.js} +9 -9
- package/chunks/bundle-z2HCq-tP.js.map +1 -0
- package/cjs/App.js +74 -74
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +63 -63
- package/cjs/Channel/components/FileViewer.js +28 -28
- package/cjs/Channel/components/FrozenNotification.js +5 -5
- package/cjs/Channel/components/Message.js +53 -53
- package/cjs/Channel/components/MessageInput.js +41 -41
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +56 -56
- package/cjs/Channel/components/RemoveMessageModal.js +27 -27
- package/cjs/Channel/components/SuggestedMentionList.js +27 -27
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +7 -7
- package/cjs/Channel/context.js +19 -19
- package/cjs/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/cjs/Channel/utils/getMessagePartsInfo.js +6 -6
- package/cjs/Channel.js +63 -63
- package/cjs/ChannelList/components/AddChannel.js +20 -20
- package/cjs/ChannelList/components/ChannelListHeader.js +8 -8
- package/cjs/ChannelList/components/ChannelListUI.js +34 -34
- package/cjs/ChannelList/components/ChannelPreview.js +27 -27
- package/cjs/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/cjs/ChannelList/context.js +10 -10
- package/cjs/ChannelList.js +34 -34
- package/cjs/ChannelSettings/components/ChannelProfile.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +22 -22
- package/cjs/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/cjs/ChannelSettings/components/LeaveChannel.js +11 -11
- package/cjs/ChannelSettings/components/ModerationPanel.js +20 -20
- package/cjs/ChannelSettings/components/UserListItem.js +13 -13
- package/cjs/ChannelSettings/components/UserPanel.js +20 -20
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +22 -22
- package/cjs/CreateChannel/components/CreateChannelUI.js +16 -16
- package/cjs/CreateChannel/components/InviteUsers.js +16 -16
- package/cjs/CreateChannel/components/SelectChannelType.js +10 -10
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +16 -16
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +11 -11
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/cjs/EditUserProfile.js +12 -12
- package/cjs/GroupChannel/components/FileViewer.js +24 -24
- package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
- package/cjs/GroupChannel/components/GroupChannelHeader.js +23 -23
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +51 -51
- package/cjs/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/cjs/GroupChannel/components/MessageList.js +51 -51
- package/cjs/GroupChannel/components/RemoveMessageModal.js +23 -23
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +7 -7
- package/cjs/GroupChannel/context.js +20 -13
- package/cjs/GroupChannel/context.js.map +1 -1
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +33 -33
- package/cjs/MessageSearch/components/MessageSearchUI.js +14 -14
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +14 -14
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/cjs/OpenChannel/components/OpenChannelInput.js +25 -25
- package/cjs/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelUI.js +39 -39
- package/cjs/OpenChannel/context.js +17 -17
- package/cjs/OpenChannel.js +39 -39
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +14 -14
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +18 -18
- package/cjs/OpenChannelSettings/components/OperatorUI.js +18 -18
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +16 -16
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +18 -18
- package/cjs/SendbirdProvider.js +18 -18
- package/cjs/Thread/components/ParentMessageInfo.js +42 -42
- package/cjs/Thread/components/ParentMessageInfoItem.js +31 -32
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +7 -7
- package/cjs/Thread/components/ThreadList.js +46 -46
- package/cjs/Thread/components/ThreadListItem.js +46 -46
- package/cjs/Thread/components/ThreadMessageInput.js +43 -43
- package/cjs/Thread/components/ThreadUI.js +56 -56
- package/cjs/Thread/context.js +9 -9
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +10 -10
- package/cjs/VoiceRecorder/context.js +10 -10
- package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/cjs/chunks/{bundle-DkUAiVSQ.js → bundle-12qCZu4a.js} +4 -4
- package/cjs/chunks/bundle-12qCZu4a.js.map +1 -0
- package/cjs/chunks/{bundle-6kvEuXvi.js → bundle-3dML2VBI.js} +4 -4
- package/cjs/chunks/bundle-3dML2VBI.js.map +1 -0
- package/cjs/chunks/{bundle-BFekEiOq.js → bundle-3jH_9vez.js} +10 -10
- package/cjs/chunks/bundle-3jH_9vez.js.map +1 -0
- package/cjs/chunks/{bundle-By-3k_MB.js → bundle-5ru_FO5x.js} +1 -1
- package/cjs/chunks/bundle-5ru_FO5x.js.map +1 -0
- package/cjs/chunks/{bundle-DRA4Fpff.js → bundle-76nHYQK-.js} +5 -5
- package/cjs/chunks/bundle-76nHYQK-.js.map +1 -0
- package/cjs/chunks/{bundle-Cj7wXzYB.js → bundle-9dW3x924.js} +11 -11
- package/cjs/chunks/{bundle-Cj7wXzYB.js.map → bundle-9dW3x924.js.map} +1 -1
- package/cjs/chunks/{bundle-C3SJz4Ji.js → bundle-9ogjIkrJ.js} +1 -1
- package/cjs/chunks/bundle-9ogjIkrJ.js.map +1 -0
- package/cjs/chunks/{bundle-Cxk9TBzk.js → bundle-B20ESzEn.js} +1 -1
- package/cjs/chunks/bundle-B20ESzEn.js.map +1 -0
- package/cjs/chunks/{bundle-BYIW_h3Y.js → bundle-B2jW5UwW.js} +4 -4
- package/cjs/chunks/bundle-B2jW5UwW.js.map +1 -0
- package/cjs/chunks/{bundle-h_3DR6aU.js → bundle-B3qxP7Hx.js} +1 -1
- package/cjs/chunks/bundle-B3qxP7Hx.js.map +1 -0
- package/cjs/chunks/{bundle-Cm8jkxa4.js → bundle-B9GhSdVG.js} +14 -14
- package/cjs/chunks/{bundle-Cm8jkxa4.js.map → bundle-B9GhSdVG.js.map} +1 -1
- package/cjs/chunks/{bundle-BYMwGMsS.js → bundle-BCTbUKeh.js} +1 -1
- package/cjs/chunks/bundle-BCTbUKeh.js.map +1 -0
- package/cjs/chunks/{bundle-tFZbRjso.js → bundle-BFEqDbwl.js} +1 -1
- package/cjs/chunks/bundle-BFEqDbwl.js.map +1 -0
- package/cjs/chunks/{bundle-CKVCRcX8.js → bundle-BFWd_LLn.js} +3 -3
- package/cjs/chunks/bundle-BFWd_LLn.js.map +1 -0
- package/cjs/chunks/{bundle-CCI24NOf.js → bundle-BFtlkbFV.js} +1 -1
- package/cjs/chunks/{bundle-CCI24NOf.js.map → bundle-BFtlkbFV.js.map} +1 -1
- package/cjs/chunks/{bundle-C5nXYn9D.js → bundle-BLV9zZk1.js} +3 -3
- package/cjs/chunks/bundle-BLV9zZk1.js.map +1 -0
- package/cjs/chunks/{bundle-QlySzqVl.js → bundle-BMEm0fE7.js} +1 -1
- package/cjs/chunks/bundle-BMEm0fE7.js.map +1 -0
- package/cjs/chunks/{bundle-_ouF-COo.js → bundle-BMU1Zuos.js} +3 -3
- package/{chunks/bundle-BqZ85d_h.js.map → cjs/chunks/bundle-BMU1Zuos.js.map} +1 -1
- package/cjs/chunks/{bundle-BuxwIob-.js → bundle-BOisWxx6.js} +4 -4
- package/cjs/chunks/{bundle-BuxwIob-.js.map → bundle-BOisWxx6.js.map} +1 -1
- package/cjs/chunks/{bundle-CsvF4G63.js → bundle-BOkAcvZ5.js} +10 -10
- package/cjs/chunks/{bundle-CsvF4G63.js.map → bundle-BOkAcvZ5.js.map} +1 -1
- package/cjs/chunks/{bundle-uzuKeMjI.js → bundle-BREykybG.js} +1 -1
- package/cjs/chunks/bundle-BREykybG.js.map +1 -0
- package/cjs/chunks/{bundle-DA-C0L_U.js → bundle-BaxkaZ7Q.js} +6 -6
- package/cjs/chunks/bundle-BaxkaZ7Q.js.map +1 -0
- package/cjs/chunks/{bundle-DMqilxSQ.js → bundle-BedaAirg.js} +1 -1
- package/cjs/chunks/bundle-BedaAirg.js.map +1 -0
- package/cjs/chunks/{bundle-gBFimzbK.js → bundle-Bi2wvpu_.js} +2 -2
- package/cjs/chunks/bundle-Bi2wvpu_.js.map +1 -0
- package/cjs/chunks/{bundle-BD49w5la.js → bundle-Bm-ZyNnL.js} +1 -1
- package/cjs/chunks/bundle-Bm-ZyNnL.js.map +1 -0
- package/cjs/chunks/{bundle-BrqtKvF1.js → bundle-BrG6R1ys.js} +5 -5
- package/cjs/chunks/{bundle-BrqtKvF1.js.map → bundle-BrG6R1ys.js.map} +1 -1
- package/cjs/chunks/{bundle-B-3hDIdO.js → bundle-Bvh9LUfE.js} +1 -1
- package/cjs/chunks/bundle-Bvh9LUfE.js.map +1 -0
- package/cjs/chunks/{bundle-CIwnFnv9.js → bundle-Bzoa2z57.js} +3 -3
- package/cjs/chunks/bundle-Bzoa2z57.js.map +1 -0
- package/cjs/chunks/{bundle-CKV7u9Pa.js → bundle-C0PM57R_.js} +1 -1
- package/cjs/chunks/bundle-C0PM57R_.js.map +1 -0
- package/cjs/chunks/{bundle-Vo5M_T27.js → bundle-CASwMFfX.js} +6 -6
- package/cjs/chunks/bundle-CASwMFfX.js.map +1 -0
- package/cjs/chunks/{bundle-BVr30Pv7.js → bundle-CFOCblXb.js} +3 -3
- package/cjs/chunks/bundle-CFOCblXb.js.map +1 -0
- package/cjs/chunks/{bundle-BjidTEAi.js → bundle-CGDy7a1C.js} +10 -10
- package/cjs/chunks/bundle-CGDy7a1C.js.map +1 -0
- package/cjs/chunks/{bundle-pFmJjfem.js → bundle-CGX-vhe9.js} +1 -1
- package/cjs/chunks/bundle-CGX-vhe9.js.map +1 -0
- package/cjs/chunks/{bundle-CZwvHnpm.js → bundle-CH-hKDFq.js} +1 -1
- package/cjs/chunks/bundle-CH-hKDFq.js.map +1 -0
- package/cjs/chunks/{bundle-DwFtclQP.js → bundle-CHERnV8x.js} +6 -6
- package/cjs/chunks/bundle-CHERnV8x.js.map +1 -0
- package/cjs/chunks/{bundle-BjuS3ItZ.js → bundle-CIO_k2aH.js} +1 -1
- package/cjs/chunks/bundle-CIO_k2aH.js.map +1 -0
- package/cjs/chunks/{bundle-kJy0a2Vi.js → bundle-CMTxpe5r.js} +3 -3
- package/cjs/chunks/{bundle-kJy0a2Vi.js.map → bundle-CMTxpe5r.js.map} +1 -1
- package/cjs/chunks/{bundle-b2Ui6hpE.js → bundle-CN06fWST.js} +4 -4
- package/cjs/chunks/{bundle-b2Ui6hpE.js.map → bundle-CN06fWST.js.map} +1 -1
- package/cjs/chunks/{bundle-vjAaeYFb.js → bundle-COgdMKX_.js} +1 -1
- package/cjs/chunks/bundle-COgdMKX_.js.map +1 -0
- package/cjs/chunks/{bundle-BQRvcMvv.js → bundle-CRIqKUCJ.js} +2 -2
- package/cjs/chunks/{bundle-BQRvcMvv.js.map → bundle-CRIqKUCJ.js.map} +1 -1
- package/cjs/chunks/{bundle-Cqim199-.js → bundle-CWvBrYUR.js} +3 -3
- package/cjs/chunks/bundle-CWvBrYUR.js.map +1 -0
- package/cjs/chunks/{bundle-CB5yFlZx.js → bundle-Ca2tfuK5.js} +1 -1
- package/cjs/chunks/bundle-Ca2tfuK5.js.map +1 -0
- package/cjs/chunks/{bundle-BN-LMdIM.js → bundle-Cd8aIDXf.js} +15 -3
- package/cjs/chunks/bundle-Cd8aIDXf.js.map +1 -0
- package/cjs/chunks/{bundle-DRrLQVHb.js → bundle-Ce6jCnmC.js} +3 -3
- package/cjs/chunks/{bundle-DRrLQVHb.js.map → bundle-Ce6jCnmC.js.map} +1 -1
- package/cjs/chunks/{bundle-BzKUDWhn.js → bundle-Cf4R8HbK.js} +2 -2
- package/cjs/chunks/{bundle-BzKUDWhn.js.map → bundle-Cf4R8HbK.js.map} +1 -1
- package/cjs/chunks/{bundle-U2gOXD87.js → bundle-Cgk-lpZZ.js} +1 -1
- package/cjs/chunks/bundle-Cgk-lpZZ.js.map +1 -0
- package/cjs/chunks/{bundle-C5UvuA7p.js → bundle-CkJYjTS5.js} +3 -3
- package/cjs/chunks/{bundle-C5UvuA7p.js.map → bundle-CkJYjTS5.js.map} +1 -1
- package/cjs/chunks/{bundle-CbrvdaBm.js → bundle-Ck_8lQa-.js} +1 -1
- package/cjs/chunks/{bundle-CbrvdaBm.js.map → bundle-Ck_8lQa-.js.map} +1 -1
- package/cjs/chunks/{bundle-DmEJQudU.js → bundle-D0Aqlqo6.js} +3 -3
- package/cjs/chunks/bundle-D0Aqlqo6.js.map +1 -0
- package/cjs/chunks/{bundle-oHlDXetd.js → bundle-D0Tt_yWl.js} +5 -5
- package/cjs/chunks/bundle-D0Tt_yWl.js.map +1 -0
- package/cjs/chunks/{bundle-BhUkL36h.js → bundle-D0hE0g6d.js} +24 -9
- package/cjs/chunks/bundle-D0hE0g6d.js.map +1 -0
- package/cjs/chunks/{bundle-D_m86gwb.js → bundle-D1GC3Mlw.js} +4 -4
- package/cjs/chunks/bundle-D1GC3Mlw.js.map +1 -0
- package/cjs/chunks/{bundle-BOcTTiW2.js → bundle-DCPc6-Im.js} +3 -3
- package/cjs/chunks/bundle-DCPc6-Im.js.map +1 -0
- package/cjs/chunks/{bundle-CuCEO0gF.js → bundle-DCi84l6D.js} +3 -3
- package/cjs/chunks/bundle-DCi84l6D.js.map +1 -0
- package/cjs/chunks/{bundle-C-TcZdkJ.js → bundle-DDwAQ_Z-.js} +7 -7
- package/cjs/chunks/bundle-DDwAQ_Z-.js.map +1 -0
- package/cjs/chunks/{bundle-ByAfkvZh.js → bundle-DHHo4V-U.js} +3 -3
- package/cjs/chunks/bundle-DHHo4V-U.js.map +1 -0
- package/cjs/chunks/{bundle-DQT7OMs9.js → bundle-DazLRy6m.js} +2 -2
- package/cjs/chunks/bundle-DazLRy6m.js.map +1 -0
- package/cjs/chunks/{bundle-wczCFG7x.js → bundle-De62SpYH.js} +2 -2
- package/cjs/chunks/{bundle-wczCFG7x.js.map → bundle-De62SpYH.js.map} +1 -1
- package/cjs/chunks/{bundle-GXGfsR0s.js → bundle-DhRwH56t.js} +9 -9
- package/cjs/chunks/bundle-DhRwH56t.js.map +1 -0
- package/cjs/chunks/{bundle-DvYvJ4DA.js → bundle-Dop6OgWE.js} +2 -2
- package/cjs/chunks/bundle-Dop6OgWE.js.map +1 -0
- package/cjs/chunks/{bundle-CZ7evH27.js → bundle-Dpfab45s.js} +1 -1
- package/cjs/chunks/bundle-Dpfab45s.js.map +1 -0
- package/cjs/chunks/{bundle-U9tfceaP.js → bundle-DqRKg94l.js} +3 -3
- package/cjs/chunks/bundle-DqRKg94l.js.map +1 -0
- package/cjs/chunks/{bundle-Cv9f4q9i.js → bundle-DqTUSoNi.js} +1 -1
- package/cjs/chunks/bundle-DqTUSoNi.js.map +1 -0
- package/cjs/chunks/{bundle-CSlhgdb3.js → bundle-DrCmmE89.js} +1 -1
- package/cjs/chunks/bundle-DrCmmE89.js.map +1 -0
- package/cjs/chunks/{bundle-CRggj9kM.js → bundle-DrPY0rWx.js} +8 -8
- package/cjs/chunks/{bundle-CRggj9kM.js.map → bundle-DrPY0rWx.js.map} +1 -1
- package/cjs/chunks/{bundle-_3SK8xoH.js → bundle-DrV1GooU.js} +1 -1
- package/cjs/chunks/bundle-DrV1GooU.js.map +1 -0
- package/cjs/chunks/{bundle-CFD0Fa-A.js → bundle-DrcN-u_7.js} +2 -2
- package/cjs/chunks/bundle-DrcN-u_7.js.map +1 -0
- package/cjs/chunks/{bundle-KIzH0CXn.js → bundle-Dv4YKtdL.js} +1 -1
- package/cjs/chunks/bundle-Dv4YKtdL.js.map +1 -0
- package/cjs/chunks/{bundle-Bp8Rx6es.js → bundle-Dx7EO9WA.js} +7 -7
- package/cjs/chunks/bundle-Dx7EO9WA.js.map +1 -0
- package/cjs/chunks/{bundle-DGw6pGp5.js → bundle-MDcnM2N1.js} +1 -1
- package/cjs/chunks/bundle-MDcnM2N1.js.map +1 -0
- package/cjs/chunks/{bundle-B6ZFoMH6.js → bundle-MOn9SqMU.js} +1 -1
- package/cjs/chunks/bundle-MOn9SqMU.js.map +1 -0
- package/cjs/chunks/{bundle-B_DDVUVa.js → bundle-OAOzXmfa.js} +1 -1
- package/cjs/chunks/bundle-OAOzXmfa.js.map +1 -0
- package/cjs/chunks/{bundle-BBn6e1TE.js → bundle-V-_XUHW5.js} +1 -1
- package/cjs/chunks/{bundle-BBn6e1TE.js.map → bundle-V-_XUHW5.js.map} +1 -1
- package/cjs/chunks/{bundle-kLARBimu.js → bundle-asVjYr1M.js} +11 -11
- package/cjs/chunks/{bundle-kLARBimu.js.map → bundle-asVjYr1M.js.map} +1 -1
- package/cjs/chunks/{bundle-K9SAn_UP.js → bundle-bRpfDpyd.js} +2 -2
- package/cjs/chunks/bundle-bRpfDpyd.js.map +1 -0
- package/cjs/chunks/{bundle-D55IafBS.js → bundle-ghdvllVc.js} +1 -1
- package/cjs/chunks/bundle-ghdvllVc.js.map +1 -0
- package/cjs/chunks/{bundle-lP7Zc4ok.js → bundle-iCZhCxHm.js} +5 -5
- package/cjs/chunks/bundle-iCZhCxHm.js.map +1 -0
- package/cjs/chunks/{bundle-DMKeCwT_.js → bundle-lBIlhpy4.js} +2 -2
- package/cjs/chunks/bundle-lBIlhpy4.js.map +1 -0
- package/cjs/chunks/{bundle-gGCaMzPZ.js → bundle-slS7A2f9.js} +1 -1
- package/cjs/chunks/bundle-slS7A2f9.js.map +1 -0
- package/cjs/chunks/{bundle-BX7oj4JP.js → bundle-xUIqwbO0.js} +1 -1
- package/cjs/chunks/bundle-xUIqwbO0.js.map +1 -0
- package/cjs/hooks/useModal.js +9 -9
- package/cjs/index.js +78 -78
- 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 +9 -9
- package/cjs/ui/Button.js +3 -3
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +6 -6
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +17 -17
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +15 -15
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +2 -2
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +5 -4
- package/cjs/ui/LinkLabel.js.map +1 -1
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +13 -13
- package/cjs/ui/MentionUserLabel.js +1 -1
- package/cjs/ui/MessageContent.js +36 -36
- package/cjs/ui/MessageFeedbackFailedModal.js +9 -9
- package/cjs/ui/MessageFeedbackModal.js +9 -9
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +15 -15
- package/cjs/ui/MessageItemMenu.js +10 -10
- package/cjs/ui/MessageItemReactionMenu.js +9 -9
- package/cjs/ui/MessageSearchFileItem.js +14 -14
- package/cjs/ui/MessageSearchItem.js +11 -11
- package/cjs/ui/MessageStatus.js +12 -12
- package/cjs/ui/MessageTemplate.js +2 -2
- package/cjs/ui/MobileFeedbackMenu.js +9 -9
- package/cjs/ui/Modal.js +8 -8
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +52 -48
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +21 -21
- package/cjs/ui/OpenchannelOGMessage.js +23 -39
- package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
- package/cjs/ui/OpenchannelThumbnailMessage.js +17 -17
- package/cjs/ui/OpenchannelUserMessage.js +18 -18
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/QuoteMessage.js +9 -9
- package/cjs/ui/QuoteMessageInput.js +9 -9
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +9 -9
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +16 -16
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +13 -13
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +10 -10
- package/cjs/ui/Word.js +13 -13
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -3
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +3 -2
- package/dist/index.css.map +1 -1
- package/hooks/useModal.js +10 -10
- package/index.js +78 -78
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/ui/MessageInput/hooks/usePaste/index.d.ts +1 -1
- package/types/ui/OpenchannelFileMessage/index.d.ts +1 -1
- package/types/ui/OpenchannelOGMessage/index.d.ts +1 -1
- package/types/utils/utils.d.ts +1 -0
- package/ui/Accordion.js +2 -2
- package/ui/AccordionGroup.js +1 -1
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +9 -9
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +6 -6
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +17 -17
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +15 -15
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +2 -2
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +5 -4
- package/ui/LinkLabel.js.map +1 -1
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +13 -13
- package/ui/MentionUserLabel.js +1 -1
- package/ui/MessageContent.js +36 -36
- package/ui/MessageFeedbackFailedModal.js +9 -9
- package/ui/MessageFeedbackModal.js +9 -9
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +15 -15
- package/ui/MessageItemMenu.js +10 -10
- package/ui/MessageItemReactionMenu.js +9 -9
- package/ui/MessageSearchFileItem.js +14 -14
- package/ui/MessageSearchItem.js +11 -11
- package/ui/MessageStatus.js +12 -12
- package/ui/MessageTemplate.js +2 -2
- package/ui/MobileFeedbackMenu.js +9 -9
- package/ui/Modal.js +8 -8
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +53 -49
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +21 -21
- package/ui/OpenchannelOGMessage.js +23 -39
- package/ui/OpenchannelOGMessage.js.map +1 -1
- package/ui/OpenchannelThumbnailMessage.js +17 -17
- package/ui/OpenchannelUserMessage.js +18 -18
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/QuoteMessage.js +9 -9
- package/ui/QuoteMessageInput.js +9 -9
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +9 -9
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +16 -16
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +7 -7
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +13 -13
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +10 -10
- package/ui/Word.js +13 -13
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/withSendbird.js +1 -1
- package/chunks/bundle-B-rlaXWu.js.map +0 -1
- package/chunks/bundle-B1531-Xt.js.map +0 -1
- package/chunks/bundle-BJ8L9q1S.js.map +0 -1
- package/chunks/bundle-BL67-UYY.js.map +0 -1
- package/chunks/bundle-BWCUNJoA.js.map +0 -1
- package/chunks/bundle-BlbJo9zV.js.map +0 -1
- package/chunks/bundle-BmJp9ELx.js.map +0 -1
- package/chunks/bundle-BmJsj1DE.js.map +0 -1
- package/chunks/bundle-BqpRc1fc.js.map +0 -1
- package/chunks/bundle-Bxhw3nyo.js.map +0 -1
- package/chunks/bundle-ByOL8d1Y.js.map +0 -1
- package/chunks/bundle-C0hxFMpo.js.map +0 -1
- package/chunks/bundle-C4E6x1yH.js.map +0 -1
- package/chunks/bundle-C5gv8BUg.js.map +0 -1
- package/chunks/bundle-C8JSMAy5.js.map +0 -1
- package/chunks/bundle-C9k4XREr.js.map +0 -1
- package/chunks/bundle-CEBnyfFY.js.map +0 -1
- package/chunks/bundle-CLEZvXSa.js.map +0 -1
- package/chunks/bundle-CSD1Y0Up.js.map +0 -1
- package/chunks/bundle-CVBV25Ez.js.map +0 -1
- package/chunks/bundle-CXPL_q7g.js.map +0 -1
- package/chunks/bundle-CcCCSO3j.js.map +0 -1
- package/chunks/bundle-CemSwFjs.js.map +0 -1
- package/chunks/bundle-CfCfA_eS.js.map +0 -1
- package/chunks/bundle-Cr5JfXnd.js.map +0 -1
- package/chunks/bundle-CwodDxvD.js.map +0 -1
- package/chunks/bundle-CypLTOy5.js.map +0 -1
- package/chunks/bundle-CzznhOkf.js.map +0 -1
- package/chunks/bundle-D-62maU6.js.map +0 -1
- package/chunks/bundle-D2nMevA-.js.map +0 -1
- package/chunks/bundle-D3BcbbU5.js.map +0 -1
- package/chunks/bundle-DChW5Z3e.js.map +0 -1
- package/chunks/bundle-DIQmyyii.js.map +0 -1
- package/chunks/bundle-DKTKyX5B.js.map +0 -1
- package/chunks/bundle-DOE8EVWg.js.map +0 -1
- package/chunks/bundle-DR0N9Re_.js.map +0 -1
- package/chunks/bundle-DURANzV-.js.map +0 -1
- package/chunks/bundle-DYRfOZJn.js.map +0 -1
- package/chunks/bundle-DdrjZDoC.js.map +0 -1
- package/chunks/bundle-DiKCx9T0.js.map +0 -1
- package/chunks/bundle-DluCUNJH.js.map +0 -1
- package/chunks/bundle-DmHVnPIK.js.map +0 -1
- package/chunks/bundle-Dp8Uc0CR.js.map +0 -1
- package/chunks/bundle-DpQTyp78.js.map +0 -1
- package/chunks/bundle-DraDQPaG.js.map +0 -1
- package/chunks/bundle-Dzzjbgaw.js.map +0 -1
- package/chunks/bundle-Ryg4dN5c.js.map +0 -1
- package/chunks/bundle-cbuWRyNb.js.map +0 -1
- package/chunks/bundle-h_OgbXNz.js.map +0 -1
- package/chunks/bundle-oKdCuyHB.js.map +0 -1
- package/chunks/bundle-tVxHr2lN.js.map +0 -1
- package/cjs/chunks/bundle-6kvEuXvi.js.map +0 -1
- package/cjs/chunks/bundle-B-3hDIdO.js.map +0 -1
- package/cjs/chunks/bundle-B6ZFoMH6.js.map +0 -1
- package/cjs/chunks/bundle-BD49w5la.js.map +0 -1
- package/cjs/chunks/bundle-BFekEiOq.js.map +0 -1
- package/cjs/chunks/bundle-BN-LMdIM.js.map +0 -1
- package/cjs/chunks/bundle-BOcTTiW2.js.map +0 -1
- package/cjs/chunks/bundle-BVr30Pv7.js.map +0 -1
- package/cjs/chunks/bundle-BX7oj4JP.js.map +0 -1
- package/cjs/chunks/bundle-BYIW_h3Y.js.map +0 -1
- package/cjs/chunks/bundle-BYMwGMsS.js.map +0 -1
- package/cjs/chunks/bundle-B_DDVUVa.js.map +0 -1
- package/cjs/chunks/bundle-BhUkL36h.js.map +0 -1
- package/cjs/chunks/bundle-BjidTEAi.js.map +0 -1
- package/cjs/chunks/bundle-BjuS3ItZ.js.map +0 -1
- package/cjs/chunks/bundle-Bp8Rx6es.js.map +0 -1
- package/cjs/chunks/bundle-By-3k_MB.js.map +0 -1
- package/cjs/chunks/bundle-ByAfkvZh.js.map +0 -1
- package/cjs/chunks/bundle-C-TcZdkJ.js.map +0 -1
- package/cjs/chunks/bundle-C3SJz4Ji.js.map +0 -1
- package/cjs/chunks/bundle-C5nXYn9D.js.map +0 -1
- package/cjs/chunks/bundle-CB5yFlZx.js.map +0 -1
- package/cjs/chunks/bundle-CFD0Fa-A.js.map +0 -1
- package/cjs/chunks/bundle-CIwnFnv9.js.map +0 -1
- package/cjs/chunks/bundle-CKV7u9Pa.js.map +0 -1
- package/cjs/chunks/bundle-CKVCRcX8.js.map +0 -1
- package/cjs/chunks/bundle-CSlhgdb3.js.map +0 -1
- package/cjs/chunks/bundle-CZ7evH27.js.map +0 -1
- package/cjs/chunks/bundle-CZwvHnpm.js.map +0 -1
- package/cjs/chunks/bundle-Cqim199-.js.map +0 -1
- package/cjs/chunks/bundle-CuCEO0gF.js.map +0 -1
- package/cjs/chunks/bundle-Cv9f4q9i.js.map +0 -1
- package/cjs/chunks/bundle-Cxk9TBzk.js.map +0 -1
- package/cjs/chunks/bundle-D55IafBS.js.map +0 -1
- package/cjs/chunks/bundle-DA-C0L_U.js.map +0 -1
- package/cjs/chunks/bundle-DGw6pGp5.js.map +0 -1
- package/cjs/chunks/bundle-DMKeCwT_.js.map +0 -1
- package/cjs/chunks/bundle-DMqilxSQ.js.map +0 -1
- package/cjs/chunks/bundle-DQT7OMs9.js.map +0 -1
- package/cjs/chunks/bundle-DRA4Fpff.js.map +0 -1
- package/cjs/chunks/bundle-D_m86gwb.js.map +0 -1
- package/cjs/chunks/bundle-DkUAiVSQ.js.map +0 -1
- package/cjs/chunks/bundle-DmEJQudU.js.map +0 -1
- package/cjs/chunks/bundle-DvYvJ4DA.js.map +0 -1
- package/cjs/chunks/bundle-DwFtclQP.js.map +0 -1
- package/cjs/chunks/bundle-GXGfsR0s.js.map +0 -1
- package/cjs/chunks/bundle-K9SAn_UP.js.map +0 -1
- package/cjs/chunks/bundle-KIzH0CXn.js.map +0 -1
- package/cjs/chunks/bundle-QlySzqVl.js.map +0 -1
- package/cjs/chunks/bundle-U2gOXD87.js.map +0 -1
- package/cjs/chunks/bundle-U9tfceaP.js.map +0 -1
- package/cjs/chunks/bundle-Vo5M_T27.js.map +0 -1
- package/cjs/chunks/bundle-_3SK8xoH.js.map +0 -1
- package/cjs/chunks/bundle-_ouF-COo.js.map +0 -1
- package/cjs/chunks/bundle-gBFimzbK.js.map +0 -1
- package/cjs/chunks/bundle-gGCaMzPZ.js.map +0 -1
- package/cjs/chunks/bundle-h_3DR6aU.js.map +0 -1
- package/cjs/chunks/bundle-lP7Zc4ok.js.map +0 -1
- package/cjs/chunks/bundle-oHlDXetd.js.map +0 -1
- package/cjs/chunks/bundle-pFmJjfem.js.map +0 -1
- package/cjs/chunks/bundle-tFZbRjso.js.map +0 -1
- package/cjs/chunks/bundle-uzuKeMjI.js.map +0 -1
- package/cjs/chunks/bundle-vjAaeYFb.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Bzds2Ucm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -4,16 +4,16 @@ 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 { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray, d as __rest } from './bundle-
|
|
7
|
+
import { _ as __assign, a as __awaiter, b as __generator, c as __spreadArray, d as __rest } from './bundle-CMZSpHeh.js';
|
|
8
8
|
import { Role } from '@sendbird/chat';
|
|
9
|
-
import { M as Modal } from './bundle-
|
|
9
|
+
import { M as Modal } from './bundle-DYAiU0qn.js';
|
|
10
10
|
import UserListItem from '../ui/UserListItem.js';
|
|
11
|
-
import { n as noop } from './bundle-
|
|
11
|
+
import { n as noop } from './bundle-DRN8Ufbc.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-
|
|
14
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-Aca68v_Z.js';
|
|
15
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-C6iM_9qC.js';
|
|
16
|
+
import './bundle-CIcpyYvw.js';
|
|
17
17
|
|
|
18
18
|
function MembersModal(_a) {
|
|
19
19
|
var _this = this;
|
|
@@ -273,4 +273,4 @@ var MemberList = function () {
|
|
|
273
273
|
};
|
|
274
274
|
|
|
275
275
|
export { MemberList as M };
|
|
276
|
-
//# sourceMappingURL=bundle-
|
|
276
|
+
//# sourceMappingURL=bundle-C3uI29Cf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C3uI29Cf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C6a7C-OU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useRef, useLayoutEffect } from 'react';
|
|
2
|
-
import { S as SCROLL_BUFFER } from './bundle-
|
|
3
|
-
import { i as isAboutSame } from './bundle-
|
|
2
|
+
import { S as SCROLL_BUFFER } from './bundle-Csv255vx.js';
|
|
3
|
+
import { i as isAboutSame } from './bundle-9-bZdwX6.js';
|
|
4
4
|
import { usePreservedCallback } from '@sendbird/uikit-tools';
|
|
5
|
-
import { u as useThrottleCallback, t as throttle } from './bundle-
|
|
5
|
+
import { u as useThrottleCallback, t as throttle } from './bundle-DehMr9Ib.js';
|
|
6
6
|
|
|
7
7
|
var BUFFER_DELAY = 100;
|
|
8
8
|
function useOnScrollPositionChangeDetector(params) {
|
|
@@ -54,4 +54,4 @@ function useOnScrollPositionChangeDetectorWithRef(scrollRef, params) {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
export { useOnScrollPositionChangeDetectorWithRef as a, useOnScrollPositionChangeDetector as u };
|
|
57
|
-
//# sourceMappingURL=bundle-
|
|
57
|
+
//# sourceMappingURL=bundle-C6iM_9qC.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C6iM_9qC.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-DYAiU0qn.js';
|
|
3
|
+
import './bundle-CMZSpHeh.js';
|
|
4
|
+
import './bundle-CIcpyYvw.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
6
|
+
import { L as LocalizationContext } from './bundle-Aca68v_Z.js';
|
|
7
7
|
import { useThreadContext } from '../Thread/context.js';
|
|
8
|
-
import { g as getModalDeleteMessageTitle } from './bundle-
|
|
8
|
+
import { g as getModalDeleteMessageTitle } from './bundle-CrN7EoKs.js';
|
|
9
9
|
|
|
10
10
|
var RemoveMessage = function (props) {
|
|
11
11
|
var _a;
|
|
@@ -21,4 +21,4 @@ var RemoveMessage = function (props) {
|
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export { RemoveMessage as R };
|
|
24
|
-
//# sourceMappingURL=bundle-
|
|
24
|
+
//# sourceMappingURL=bundle-C6xB7o0l.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-C6xB7o0l.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -73,4 +73,4 @@ var MediaQueryProvider = function (props) {
|
|
|
73
73
|
var useMediaQueryContext = function () { return React__default.useContext(MediaQueryContext); };
|
|
74
74
|
|
|
75
75
|
export { MediaQueryProvider as M, useMediaQueryContext as u };
|
|
76
|
-
//# sourceMappingURL=bundle-
|
|
76
|
+
//# sourceMappingURL=bundle-CAdHlM56.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CAdHlM56.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as SCROLL_BUFFER } from './bundle-
|
|
2
|
-
import { u as useThrottleCallback } from './bundle-
|
|
3
|
-
import { i as isAboutSame } from './bundle-
|
|
1
|
+
import { S as SCROLL_BUFFER } from './bundle-Csv255vx.js';
|
|
2
|
+
import { u as useThrottleCallback } from './bundle-DehMr9Ib.js';
|
|
3
|
+
import { i as isAboutSame } from './bundle-9-bZdwX6.js';
|
|
4
4
|
import { usePreservedCallback } from '@sendbird/uikit-tools';
|
|
5
5
|
|
|
6
6
|
var DELAY = 100;
|
|
@@ -50,4 +50,4 @@ function useHandleOnScrollCallback(_a) {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
export { useHandleOnScrollCallback as u };
|
|
53
|
-
//# sourceMappingURL=bundle-
|
|
53
|
+
//# sourceMappingURL=bundle-CBZIpr5d.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CBZIpr5d.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React__default, { useCallback, useEffect, useContext, useMemo, useReducer } from 'react';
|
|
2
|
-
import { p as pubSubTopics } from './bundle-
|
|
2
|
+
import { p as pubSubTopics } from './bundle-DQ2TqmPV.js';
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
-
import { _ as __assign, c as __spreadArray } from './bundle-
|
|
4
|
+
import { _ as __assign, c as __spreadArray } from './bundle-CMZSpHeh.js';
|
|
5
5
|
|
|
6
6
|
var OpenChannelListFetchingStatus;
|
|
7
7
|
(function (OpenChannelListFetchingStatus) {
|
|
@@ -352,4 +352,4 @@ var OpenChannelListProvider$1 = {
|
|
|
352
352
|
};
|
|
353
353
|
|
|
354
354
|
export { OpenChannelListProvider as O, OpenChannelListFetchingStatus as a, OpenChannelListActionTypes$1 as b, OpenChannelListProvider$1 as c, useOpenChannelListContext as u };
|
|
355
|
-
//# sourceMappingURL=bundle-
|
|
355
|
+
//# sourceMappingURL=bundle-CGJB7Stb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CGJB7Stb.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CMZSpHeh.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-XCQLW6rR.js';
|
|
4
4
|
|
|
5
5
|
var Typography = {
|
|
6
6
|
H_1: 'H_1',
|
|
@@ -82,4 +82,4 @@ var LabelStringSet = getStringSet('en');
|
|
|
82
82
|
var Label$1 = React__default.forwardRef(Label);
|
|
83
83
|
|
|
84
84
|
export { Label$1 as L, LabelTypography as a, LabelColors as b, LabelStringSet as c, changeColorToClassName as d, Label as e };
|
|
85
|
-
//# sourceMappingURL=bundle-
|
|
85
|
+
//# sourceMappingURL=bundle-CIcpyYvw.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CIcpyYvw.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import IconButton from '../ui/IconButton.js';
|
|
3
3
|
import Icon, { IconColors, IconTypes } from '../ui/Icon.js';
|
|
4
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
4
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-CIcpyYvw.js';
|
|
5
5
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
6
|
-
import { g as getChannelTitle } from './bundle-
|
|
7
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
6
|
+
import { g as getChannelTitle } from './bundle-CcVV9Duy.js';
|
|
7
|
+
import { u as useMediaQueryContext } from './bundle-CAdHlM56.js';
|
|
8
8
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
9
|
-
import { u as useLocalization } from './bundle-
|
|
9
|
+
import { u as useLocalization } from './bundle-Aca68v_Z.js';
|
|
10
10
|
|
|
11
11
|
var GroupChannelHeaderView = function (_a) {
|
|
12
12
|
var _b;
|
|
@@ -33,4 +33,4 @@ var GroupChannelHeaderView = function (_a) {
|
|
|
33
33
|
};
|
|
34
34
|
|
|
35
35
|
export { GroupChannelHeaderView as G };
|
|
36
|
-
//# sourceMappingURL=bundle-
|
|
36
|
+
//# sourceMappingURL=bundle-CJV_wP6s.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CJV_wP6s.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CMZSpHeh.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-BsoAxhbJ.js';
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
|
-
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
5
|
+
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-CIcpyYvw.js';
|
|
6
6
|
import Loader from '../ui/Loader.js';
|
|
7
|
-
import { C as isTemplateMessage, k as isImage, A as isGif, j as isVideo, D as isAudio, E as isVoiceMessageMimeType, F as isSentStatus } from './bundle-
|
|
7
|
+
import { C as isTemplateMessage, k as isImage, A as isGif, j as isVideo, D as isAudio, E as isVoiceMessageMimeType, F as isSentStatus } from './bundle-BdOcjdmg.js';
|
|
8
8
|
import { getOutgoingMessageState, OutgoingMessageStates } from '../utils/message/getOutgoingMessageState.js';
|
|
9
|
-
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-
|
|
10
|
-
import { u as useLocalization } from './bundle-
|
|
9
|
+
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-DggFD55q.js';
|
|
10
|
+
import { u as useLocalization } from './bundle-Aca68v_Z.js';
|
|
11
11
|
|
|
12
12
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
13
13
|
var _a;
|
|
@@ -131,4 +131,4 @@ function MessageStatus(_a) {
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
export { MessageStatus as M, getTotalMembers as a, getLastMessageCreatedAt as b, getLastMessage as c, getChannelUnreadMessageCount as d, MessageStatusTypes as e, getChannelTitle as g };
|
|
134
|
-
//# sourceMappingURL=bundle
|
|
134
|
+
//# sourceMappingURL=bundle-CL7uZG_N.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle
|
|
1
|
+
{"version":3,"file":"bundle-CL7uZG_N.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -106,4 +106,4 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
106
106
|
};
|
|
107
107
|
|
|
108
108
|
export { __assign as _, __awaiter as a, __generator as b, __spreadArray as c, __rest as d, __extends as e };
|
|
109
|
-
//# sourceMappingURL=bundle-
|
|
109
|
+
//# sourceMappingURL=bundle-CMZSpHeh.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CMZSpHeh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
2
|
import DOMPurify from 'dompurify';
|
|
3
|
-
import { a as NodeNames, N as NodeTypes } from './bundle-
|
|
4
|
-
import { U as USER_MENTION_TEMP_CHAR } from './bundle-
|
|
5
|
-
import { c as __spreadArray } from './bundle-
|
|
6
|
-
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-
|
|
7
|
-
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-
|
|
8
|
-
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-
|
|
3
|
+
import { a as NodeNames, N as NodeTypes } from './bundle-B2uB4TXG.js';
|
|
4
|
+
import { U as USER_MENTION_TEMP_CHAR } from './bundle-DBqo_XXO.js';
|
|
5
|
+
import { c as __spreadArray } from './bundle-CMZSpHeh.js';
|
|
6
|
+
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-BI7jBgEO.js';
|
|
7
|
+
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-C6a7C-OU.js';
|
|
8
|
+
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-Dorruixf.js';
|
|
9
9
|
|
|
10
10
|
function renderToString(_a) {
|
|
11
11
|
var userId = _a.userId, nickname = _a.nickname;
|
|
@@ -204,10 +204,10 @@ function usePaste(_a) {
|
|
|
204
204
|
var ref = _a.ref, setIsInput = _a.setIsInput, setHeight = _a.setHeight, channel = _a.channel, setMentionedUsers = _a.setMentionedUsers;
|
|
205
205
|
return useCallback(function (e) {
|
|
206
206
|
e.preventDefault();
|
|
207
|
-
var html = e
|
|
207
|
+
var html = e.clipboardData.getData('text/html');
|
|
208
208
|
// simple text, continue as normal
|
|
209
209
|
if (!html) {
|
|
210
|
-
var text = e
|
|
210
|
+
var text = e.clipboardData.getData('text') || getURIListText(e);
|
|
211
211
|
document.execCommand('insertHTML', false, sanitizeString(text));
|
|
212
212
|
setIsInput(true);
|
|
213
213
|
setHeight();
|
|
@@ -239,7 +239,22 @@ function usePaste(_a) {
|
|
|
239
239
|
setIsInput(true);
|
|
240
240
|
setHeight();
|
|
241
241
|
}, [ref, setIsInput, setHeight, channel, setMentionedUsers]);
|
|
242
|
+
}
|
|
243
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Recommended_drag_types#dragging_links
|
|
244
|
+
function getURIListText(e) {
|
|
245
|
+
var pasteData = e.clipboardData.getData('text/uri-list');
|
|
246
|
+
if (pasteData.length === 0)
|
|
247
|
+
return '';
|
|
248
|
+
return pasteData
|
|
249
|
+
.split('\n')
|
|
250
|
+
.reduce(function (accumulator, line) {
|
|
251
|
+
var txt = line.trim();
|
|
252
|
+
if (txt !== '' && !txt.startsWith('#')) {
|
|
253
|
+
accumulator += txt + '\n';
|
|
254
|
+
}
|
|
255
|
+
return accumulator;
|
|
256
|
+
}, '');
|
|
242
257
|
}
|
|
243
258
|
|
|
244
259
|
export { extractTextAndMentions as e, isChannelTypeSupportsMultipleFilesMessage as i, nodeListToArray as n, renderToString as r, sanitizeString as s, usePaste as u };
|
|
245
|
-
//# sourceMappingURL=bundle-
|
|
260
|
+
//# sourceMappingURL=bundle-CRA9P1Ar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CRA9P1Ar.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CMZSpHeh.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-CawmTzdt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CawmTzdt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as LabelStringSet } from './bundle-
|
|
1
|
+
import { c as LabelStringSet } from './bundle-CIcpyYvw.js';
|
|
2
2
|
|
|
3
3
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
4
4
|
var _a;
|
|
@@ -22,4 +22,4 @@ var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
export { getChannelTitle as g };
|
|
25
|
-
//# sourceMappingURL=bundle-
|
|
25
|
+
//# sourceMappingURL=bundle-CcVV9Duy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CcVV9Duy.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-BlN1UcdM.js';
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
|
-
import { L as Label, a as LabelTypography, b as LabelColors } 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 } from './bundle-CIcpyYvw.js';
|
|
6
|
+
import { h as isSupportedFileView, j as isVideo, k as isImage } from './bundle-BdOcjdmg.js';
|
|
7
7
|
import '../hooks/useModal.js';
|
|
8
8
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
9
|
-
import { a as MODAL_ROOT } from './bundle-
|
|
9
|
+
import { a as MODAL_ROOT } from './bundle-DYAiU0qn.js';
|
|
10
10
|
|
|
11
11
|
var FileViewerView = function (_a) {
|
|
12
12
|
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage, onDownloadClick = _a.onDownloadClick;
|
|
@@ -51,4 +51,4 @@ var FileViewerComponent = function (_a) {
|
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
export { FileViewerView as F };
|
|
54
|
-
//# sourceMappingURL=bundle-
|
|
54
|
+
//# sourceMappingURL=bundle-Cg3QkAp8.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cg3QkAp8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { c as __spreadArray, _ as __assign } from './bundle-
|
|
1
|
+
import { c as __spreadArray, _ as __assign } from './bundle-CMZSpHeh.js';
|
|
2
2
|
import React__default, { useState, useEffect, useRef, useLayoutEffect, useMemo } from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-BsoAxhbJ.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-Aca68v_Z.js';
|
|
5
5
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
6
|
-
import { M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-
|
|
7
|
-
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-
|
|
6
|
+
import { M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-DBqo_XXO.js';
|
|
7
|
+
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-DseK7HAq.js';
|
|
8
8
|
import { useDirtyGetMentions } from '../Message/hooks/useDirtyGetMentions.js';
|
|
9
|
-
import { w as getClassName, g as getSuggestedReplies } from './bundle-
|
|
9
|
+
import { w as getClassName, g as getSuggestedReplies } from './bundle-BdOcjdmg.js';
|
|
10
10
|
import DateSeparator from '../ui/DateSeparator.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-CIcpyYvw.js';
|
|
12
12
|
import MessageInput from '../ui/MessageInput.js';
|
|
13
|
-
import { M as MessageInputKeys } from './bundle-
|
|
13
|
+
import { M as MessageInputKeys } from './bundle-B2uB4TXG.js';
|
|
14
14
|
import MessageContent from '../ui/MessageContent.js';
|
|
15
15
|
import SuggestedReplies from '../GroupChannel/components/SuggestedReplies.js';
|
|
16
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
17
|
-
import { d as deleteNullish } from './bundle-
|
|
16
|
+
import { S as SuggestedMentionListView } from './bundle-Dxzrjw7N.js';
|
|
17
|
+
import { d as deleteNullish } from './bundle-DRN8Ufbc.js';
|
|
18
18
|
|
|
19
19
|
var useDidMountEffect = function (func, deps) {
|
|
20
20
|
var _a = useState(false), didMount = _a[0], setDidmount = _a[1];
|
|
@@ -216,4 +216,4 @@ var MessageView = function (props) {
|
|
|
216
216
|
};
|
|
217
217
|
|
|
218
218
|
export { MessageView as M };
|
|
219
|
-
//# sourceMappingURL=bundle-
|
|
219
|
+
//# sourceMappingURL=bundle-CpSaHNkG.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CpSaHNkG.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 { d as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-
|
|
3
|
+
import { s as scrollIntoLast, c as scrollToRenderedMessage } from './bundle-9-bZdwX6.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-DsQ2We8f.js';
|
|
5
|
+
import './bundle-DBqo_XXO.js';
|
|
6
|
+
import { d as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-Csv255vx.js';
|
|
7
7
|
|
|
8
8
|
// For legacy
|
|
9
9
|
// These are not used for collections(GroupChannel)
|
|
@@ -99,4 +99,4 @@ function useInitialMessagesFetch(_a, _b) {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export { NEXT_RESULT_SIZE as N, PREV_RESULT_SIZE as P, useInitialMessagesFetch as u };
|
|
102
|
-
//# sourceMappingURL=bundle-
|
|
102
|
+
//# sourceMappingURL=bundle-Cr5La9_v.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cr5La9_v.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as isMultipleFilesMessage } from './bundle-
|
|
2
|
-
import { K } from './bundle-
|
|
1
|
+
import { c as isMultipleFilesMessage } from './bundle-BdOcjdmg.js';
|
|
2
|
+
import { K } from './bundle-DI-PfZ0q.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-CrN7EoKs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CrN7EoKs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -34,4 +34,4 @@ var CACHED_MESSAGE_TEMPLATES_TOKEN_KEY = 'sendbird_message_templates_token_key';
|
|
|
34
34
|
var CACHED_MESSAGE_TEMPLATES_KEY = 'sendbird_message_templates_key';
|
|
35
35
|
|
|
36
36
|
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, CACHED_MESSAGE_TEMPLATES_TOKEN_KEY as C, DELIVERY_RECEIPT as D, META_ARRAY_VOICE_DURATION_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S, VOICE_RECORDER_AUDIO_BIT_RATE as V, VOICE_MESSAGE_FILE_NAME as a, VOICE_MESSAGE_MIME_TYPE as b, VOICE_RECORDER_AUDIO_SAMPLE_RATE as c, SCROLL_BOTTOM_DELAY_FOR_FETCH as d, SCROLL_BOTTOM_DELAY_FOR_SEND as e, VOICE_PLAYER_AUDIO_ID as f, VOICE_RECORDER_DEFAULT_MIN as g, VOICE_RECORDER_CLICK_BUFFER_TIME as h, VOICE_PLAYER_ROOT_ID as i, META_ARRAY_MESSAGE_TYPE_KEY as j, META_ARRAY_MESSAGE_TYPE_VALUE__VOICE as k, SLIDER_BUTTON_ICON_SIDE_LENGTH as l, CACHED_MESSAGE_TEMPLATES_KEY as m, DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT as n, VOICE_RECORDER_DEFAULT_MAX as o };
|
|
37
|
-
//# sourceMappingURL=bundle-
|
|
37
|
+
//# sourceMappingURL=bundle-Csv255vx.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Csv255vx.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CMZSpHeh.js';
|
|
2
2
|
import React__default, { useRef, useContext } from 'react';
|
|
3
3
|
import { createPortal } from 'react-dom';
|
|
4
|
-
import { L as LocalizationContext } from './bundle-
|
|
4
|
+
import { L as LocalizationContext } from './bundle-Aca68v_Z.js';
|
|
5
5
|
import '../hooks/useModal.js';
|
|
6
|
-
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-
|
|
7
|
-
import { n as noop } from './bundle-
|
|
8
|
-
import { A as Avatar } from './bundle-
|
|
9
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-BdOcjdmg.js';
|
|
7
|
+
import { n as noop } from './bundle-DRN8Ufbc.js';
|
|
8
|
+
import { A as Avatar } from './bundle-BlN1UcdM.js';
|
|
9
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-CIcpyYvw.js';
|
|
10
10
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
11
|
-
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-
|
|
12
|
-
import { u as useKeyDown } from './bundle-
|
|
13
|
-
import { a as MODAL_ROOT } from './bundle-
|
|
11
|
+
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-Csv255vx.js';
|
|
12
|
+
import { u as useKeyDown } from './bundle-BXieK_Uz.js';
|
|
13
|
+
import { a as MODAL_ROOT } from './bundle-DYAiU0qn.js';
|
|
14
14
|
|
|
15
15
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
|
|
16
16
|
var SUPPORTED_MIMES = {
|
|
@@ -144,4 +144,4 @@ function FileViewer(_a) {
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
export { FileViewer as F, isVideo as a, FileViewerComponent as b, isImage as i };
|
|
147
|
-
//# sourceMappingURL=bundle-
|
|
147
|
+
//# sourceMappingURL=bundle-Cyeay9b0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cyeay9b0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CMZSpHeh.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
3
|
+
import { S as SuggestedMentionListView } from './bundle-Dxzrjw7N.js';
|
|
4
4
|
import { useThreadContext } from '../Thread/context.js';
|
|
5
5
|
|
|
6
6
|
var SuggestedMentionList = function (props) {
|
|
@@ -9,4 +9,4 @@ var SuggestedMentionList = function (props) {
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { SuggestedMentionList as S };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-CzOZ6n5M.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CzOZ6n5M.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D45IsnKY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CMZSpHeh.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-w_-mtnA_.js';
|
|
5
|
+
import { u as useLocalization } from './bundle-Aca68v_Z.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-CAdHlM56.js';
|
|
7
|
+
import { n as noop } from './bundle-DRN8Ufbc.js';
|
|
8
|
+
import { i as isVoiceMessage } from './bundle-BdOcjdmg.js';
|
|
9
|
+
import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-CL7uZG_N.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-CIcpyYvw.js';
|
|
15
15
|
import MentionUserLabel from '../ui/MentionUserLabel.js';
|
|
16
|
-
import { M as Modal } from './bundle-
|
|
16
|
+
import { M as Modal } from './bundle-DYAiU0qn.js';
|
|
17
17
|
import TextButton from '../ui/TextButton.js';
|
|
18
18
|
|
|
19
19
|
var GroupChannelListItemView = function (_a) {
|
|
@@ -83,4 +83,4 @@ var GroupChannelListItemView = function (_a) {
|
|
|
83
83
|
};
|
|
84
84
|
|
|
85
85
|
export { GroupChannelListItemView as G };
|
|
86
|
-
//# sourceMappingURL=bundle-
|
|
86
|
+
//# sourceMappingURL=bundle-D8Og7UbO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D8Og7UbO.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-DYAiU0qn.js';
|
|
3
|
+
import './bundle-CMZSpHeh.js';
|
|
4
|
+
import './bundle-CIcpyYvw.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-Aca68v_Z.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle-CrN7EoKs.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-D9cuES1q.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D9cuES1q.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|