@sendbird/uikit-react 3.14.0-beta.2 → 3.14.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 +78 -79
- package/App.js.map +1 -1
- package/CHANGELOG.md +99 -8
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +65 -65
- package/Channel/components/FileViewer.js +28 -28
- package/Channel/components/FrozenNotification.js +5 -5
- package/Channel/components/Message.js +55 -55
- package/Channel/components/MessageInput.js +41 -41
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +58 -58
- 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 +21 -24
- package/Channel/context.js.map +1 -1
- 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 +65 -65
- 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 +24 -25
- package/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/ChannelSettings/components/LeaveChannel.js +11 -11
- package/ChannelSettings/components/ModerationPanel.js +22 -23
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +13 -13
- package/ChannelSettings/components/UserPanel.js +20 -20
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +22 -23
- package/ChannelSettings.js.map +1 -1
- 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 +57 -27
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +5 -5
- package/GroupChannel/components/GroupChannelHeader.js +23 -22
- package/GroupChannel/components/GroupChannelHeader.js.map +1 -1
- package/GroupChannel/components/GroupChannelUI.js +60 -59
- package/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/GroupChannel/components/Message.js +55 -54
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +39 -38
- package/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/GroupChannel/components/MessageList.js +53 -52
- package/GroupChannel/components/MessageList.js.map +1 -1
- package/GroupChannel/components/RemoveMessageModal.js +23 -22
- package/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- 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 +29 -26
- package/GroupChannel/context.js.map +1 -1
- package/GroupChannel.js +60 -59
- package/GroupChannel.js.map +1 -1
- package/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +33 -33
- package/MessageSearch/components/MessageSearchUI.js +14 -14
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +14 -14
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/OpenChannel/components/OpenChannelInput.js +25 -25
- package/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/OpenChannel/components/OpenChannelUI.js +39 -39
- package/OpenChannel/context.js +17 -17
- package/OpenChannel.js +39 -39
- package/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +14 -14
- package/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +18 -19
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/OpenChannelSettings/components/OperatorUI.js +19 -20
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +19 -20
- package/OpenChannelSettings.js.map +1 -1
- package/SendbirdProvider.js +26 -48
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +78 -49
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +74 -36
- 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 +112 -55
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +43 -42
- package/Thread/components/ThreadMessageInput.js.map +1 -1
- package/Thread/components/ThreadUI.js +56 -56
- package/Thread/context.js +11 -10
- package/Thread/context.js.map +1 -1
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +10 -10
- package/VoiceRecorder/context.js +10 -10
- package/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/chunks/{bundle-BJs_5v6q.js → bundle--v2l79xO.js} +2 -2
- package/chunks/{bundle-BJs_5v6q.js.map → bundle--v2l79xO.js.map} +1 -1
- package/chunks/{bundle-CF6PMu9B.js → bundle-65boKdRp.js} +1 -1
- package/chunks/bundle-65boKdRp.js.map +1 -0
- package/chunks/{bundle-BNydv1KA.js → bundle-B5vsennE.js} +6 -6
- package/chunks/bundle-B5vsennE.js.map +1 -0
- package/chunks/{bundle-CcTHgZqq.js → bundle-BFdttAaW.js} +1 -1
- package/chunks/{bundle-CcTHgZqq.js.map → bundle-BFdttAaW.js.map} +1 -1
- package/chunks/{bundle-D-cpJ5MP.js → bundle-BJxRm-OS.js} +1 -1
- package/chunks/bundle-BJxRm-OS.js.map +1 -0
- package/chunks/{bundle-BKG2cvZ9.js → bundle-BKYbtWkn.js} +3 -3
- package/chunks/bundle-BKYbtWkn.js.map +1 -0
- package/chunks/{bundle-GQqssfTX.js → bundle-BN9xM02J.js} +1 -1
- package/chunks/bundle-BN9xM02J.js.map +1 -0
- package/chunks/{bundle-CPszRkFg.js → bundle-BQoN_-_d.js} +1 -1
- package/chunks/bundle-BQoN_-_d.js.map +1 -0
- package/chunks/{bundle-DoLed6JB.js → bundle-BU3SRwZT.js} +1 -1
- package/chunks/bundle-BU3SRwZT.js.map +1 -0
- package/chunks/{bundle-CfKGkWtT.js → bundle-BUC4DRq0.js} +1 -1
- package/chunks/bundle-BUC4DRq0.js.map +1 -0
- package/chunks/{bundle-dw1OtCIz.js → bundle-Ba74MVBa.js} +2 -2
- package/chunks/{bundle-dw1OtCIz.js.map → bundle-Ba74MVBa.js.map} +1 -1
- package/chunks/{bundle-BNeRxCQA.js → bundle-BaMugzjD.js} +1 -1
- package/chunks/bundle-BaMugzjD.js.map +1 -0
- package/chunks/{bundle-C_n2Emjx.js → bundle-BbRFaX0l.js} +1 -1
- package/chunks/bundle-BbRFaX0l.js.map +1 -0
- package/chunks/{bundle-DvI4QhV3.js → bundle-BfvTBFop.js} +3 -3
- package/chunks/{bundle-DvI4QhV3.js.map → bundle-BfvTBFop.js.map} +1 -1
- package/chunks/{bundle-CcVFQEGF.js → bundle-BhXdj56o.js} +3 -3
- package/chunks/{bundle-CcVFQEGF.js.map → bundle-BhXdj56o.js.map} +1 -1
- package/chunks/{bundle-B2pNgmzq.js → bundle-BjWhPiF7.js} +3 -3
- package/chunks/bundle-BjWhPiF7.js.map +1 -0
- package/chunks/{bundle-cjTAVQxr.js → bundle-BsCYcxaN.js} +7 -7
- package/chunks/{bundle-cjTAVQxr.js.map → bundle-BsCYcxaN.js.map} +1 -1
- package/chunks/{bundle-CJIPD7gN.js → bundle-Bsg3ZeXI.js} +3 -3
- package/chunks/bundle-Bsg3ZeXI.js.map +1 -0
- package/chunks/{bundle-C8TvjQ68.js → bundle-BtLxIgDH.js} +10 -10
- package/chunks/{bundle-C8TvjQ68.js.map → bundle-BtLxIgDH.js.map} +1 -1
- package/chunks/{bundle-DCjOFMcr.js → bundle-Bu4CHE14.js} +4 -4
- package/chunks/bundle-Bu4CHE14.js.map +1 -0
- package/chunks/{bundle-aH4n4ipp.js → bundle-BubacXNL.js} +1 -1
- package/chunks/{bundle-aH4n4ipp.js.map → bundle-BubacXNL.js.map} +1 -1
- package/chunks/{bundle-rSEP1XoB.js → bundle-C-mS5Dam.js} +40 -9
- package/{cjs/chunks/bundle-B8jj7upa.js.map → chunks/bundle-C-mS5Dam.js.map} +1 -1
- package/chunks/{bundle-CbBN2HTx.js → bundle-C0fGI40C.js} +10 -10
- package/chunks/bundle-C0fGI40C.js.map +1 -0
- package/chunks/{bundle-CS7t26su.js → bundle-C4xjDmEt.js} +1 -1
- package/chunks/bundle-C4xjDmEt.js.map +1 -0
- package/chunks/{bundle-BJ9OAqWz.js → bundle-C5Wf2y_6.js} +1 -1
- package/chunks/bundle-C5Wf2y_6.js.map +1 -0
- package/chunks/{bundle-WwYLGAen.js → bundle-C8jQWzDU.js} +2 -2
- package/chunks/bundle-C8jQWzDU.js.map +1 -0
- package/chunks/{bundle-BFDyBk4r.js → bundle-CFYZBlok.js} +1 -1
- package/chunks/bundle-CFYZBlok.js.map +1 -0
- package/chunks/{bundle-Dicb9Y5f.js → bundle-CHtHakLU.js} +6 -6
- package/chunks/bundle-CHtHakLU.js.map +1 -0
- package/chunks/{bundle-azFrmmyK.js → bundle-CI-NOqgi.js} +10 -10
- package/chunks/{bundle-azFrmmyK.js.map → bundle-CI-NOqgi.js.map} +1 -1
- package/chunks/{bundle-BSPBjwR6.js → bundle-CIwNgqhu.js} +6 -6
- package/chunks/bundle-CIwNgqhu.js.map +1 -0
- package/chunks/{bundle-rfEyWmAm.js → bundle-CMax-oWd.js} +1 -1
- package/chunks/bundle-CMax-oWd.js.map +1 -0
- package/chunks/{bundle-XGYpSNOg.js → bundle-CThF5Krw.js} +5 -5
- package/chunks/{bundle-XGYpSNOg.js.map → bundle-CThF5Krw.js.map} +1 -1
- package/chunks/{bundle-BdZAuvN7.js → bundle-CVtMSwfw.js} +7 -7
- package/chunks/{bundle-BdZAuvN7.js.map → bundle-CVtMSwfw.js.map} +1 -1
- package/chunks/{bundle-DkRogqRS.js → bundle-CWVPqsi_.js} +3 -3
- package/chunks/bundle-CWVPqsi_.js.map +1 -0
- package/chunks/{bundle-C0LxowmB.js → bundle-CWYkDVsf.js} +3 -3
- package/chunks/{bundle-C0LxowmB.js.map → bundle-CWYkDVsf.js.map} +1 -1
- package/chunks/{bundle-C1RngQCJ.js → bundle-CYIneUd3.js} +9 -9
- package/chunks/bundle-CYIneUd3.js.map +1 -0
- package/chunks/{bundle-CTyr18ZN.js → bundle-CaUvCYOg.js} +3 -3
- package/chunks/{bundle-CTyr18ZN.js.map → bundle-CaUvCYOg.js.map} +1 -1
- package/chunks/{bundle-Bf5VthYV.js → bundle-CaYPuZ9G.js} +1 -1
- package/chunks/bundle-CaYPuZ9G.js.map +1 -0
- package/chunks/{bundle-D_KO6Orc.js → bundle-CfcfVkxG.js} +1 -1
- package/chunks/{bundle-D_KO6Orc.js.map → bundle-CfcfVkxG.js.map} +1 -1
- package/chunks/{bundle-BoezGGkX.js → bundle-Cl5_xPaV.js} +11 -11
- package/chunks/{bundle-BoezGGkX.js.map → bundle-Cl5_xPaV.js.map} +1 -1
- package/chunks/{bundle-PsMmoXV_.js → bundle-CmZPkDe1.js} +4 -4
- package/chunks/{bundle-PsMmoXV_.js.map → bundle-CmZPkDe1.js.map} +1 -1
- package/chunks/{bundle-DgJrJ2xn.js → bundle-CnzbHeuJ.js} +4 -4
- package/chunks/bundle-CnzbHeuJ.js.map +1 -0
- package/chunks/{bundle-GKCJ2hC_.js → bundle-Ct48juZF.js} +3 -3
- package/chunks/{bundle-GKCJ2hC_.js.map → bundle-Ct48juZF.js.map} +1 -1
- package/chunks/{bundle-BuIxT5aZ.js → bundle-CuD6w3tY.js} +1 -1
- package/chunks/bundle-CuD6w3tY.js.map +1 -0
- package/chunks/{bundle-Cvk0UZLW.js → bundle-CuW57Fa0.js} +4 -4
- package/chunks/{bundle-Cvk0UZLW.js.map → bundle-CuW57Fa0.js.map} +1 -1
- package/chunks/{bundle-DUTTSKO5.js → bundle-CvZD4CjF.js} +3 -3
- package/chunks/bundle-CvZD4CjF.js.map +1 -0
- package/chunks/{bundle-DnFiUPoR.js → bundle-CwINP854.js} +1 -1
- package/chunks/bundle-CwINP854.js.map +1 -0
- package/chunks/{bundle-BJgNc4do.js → bundle-Cy3rlDS2.js} +2 -2
- package/chunks/{bundle-BJgNc4do.js.map → bundle-Cy3rlDS2.js.map} +1 -1
- package/chunks/{bundle-CRLJsnLv.js → bundle-CznK5-Sd.js} +10 -10
- package/chunks/{bundle-CRLJsnLv.js.map → bundle-CznK5-Sd.js.map} +1 -1
- package/chunks/{bundle-By4sE23W.js → bundle-D4k3lbic.js} +8 -8
- package/chunks/{bundle-By4sE23W.js.map → bundle-D4k3lbic.js.map} +1 -1
- package/chunks/{bundle-D_X2Bqh-.js → bundle-D6_jF6vA.js} +2 -2
- package/chunks/bundle-D6_jF6vA.js.map +1 -0
- package/chunks/{bundle-C-_RpFyM.js → bundle-D81rUAiK.js} +3 -3
- package/chunks/bundle-D81rUAiK.js.map +1 -0
- package/chunks/{bundle-BUy5u56K.js → bundle-DF_LuHdb.js} +1 -1
- package/chunks/bundle-DF_LuHdb.js.map +1 -0
- package/chunks/{bundle-COGPgRK-.js → bundle-DKfCP7IG.js} +1 -1
- package/chunks/bundle-DKfCP7IG.js.map +1 -0
- package/chunks/{bundle-D56MXYqF.js → bundle-DMs2iFV3.js} +4 -4
- package/chunks/bundle-DMs2iFV3.js.map +1 -0
- package/chunks/{bundle-BPclYGwz.js → bundle-DO6PYt2s.js} +1 -1
- package/chunks/bundle-DO6PYt2s.js.map +1 -0
- package/chunks/{bundle-BvQAepkJ.js → bundle-DPSsFTo9.js} +1 -1
- package/chunks/bundle-DPSsFTo9.js.map +1 -0
- package/chunks/{bundle-DRIvYDIu.js → bundle-DRcme3Wk.js} +13 -12
- package/chunks/{bundle-DRIvYDIu.js.map → bundle-DRcme3Wk.js.map} +1 -1
- package/chunks/{bundle-Bys5RwQj.js → bundle-DcURn6BN.js} +2 -2
- package/chunks/bundle-DcURn6BN.js.map +1 -0
- package/chunks/{bundle-gSQF3Ob-.js → bundle-Don9PlYG.js} +1 -1
- package/chunks/bundle-Don9PlYG.js.map +1 -0
- package/chunks/{bundle-BH5rbsxO.js → bundle-DoqoSCJx.js} +1370 -120
- package/chunks/bundle-DoqoSCJx.js.map +1 -0
- package/chunks/{bundle-ynxAt7xC.js → bundle-DrjAD_2v.js} +1 -1
- package/chunks/bundle-DrjAD_2v.js.map +1 -0
- package/chunks/{bundle-RpPfSzD9.js → bundle-DuUoXuv1.js} +1 -1
- package/chunks/{bundle-RpPfSzD9.js.map → bundle-DuUoXuv1.js.map} +1 -1
- package/chunks/{bundle-DzuAq6CR.js → bundle-DzZlONIt.js} +2 -2
- package/chunks/bundle-DzZlONIt.js.map +1 -0
- package/chunks/{bundle-5okwu0-4.js → bundle-FVThTEKh.js} +5 -20
- package/chunks/{bundle-5okwu0-4.js.map → bundle-FVThTEKh.js.map} +1 -1
- package/chunks/{bundle-zf2ni0YJ.js → bundle-Go8RJZ6S.js} +16 -16
- package/chunks/bundle-Go8RJZ6S.js.map +1 -0
- package/chunks/{bundle-DRL21d0s.js → bundle-HQX6RTqS.js} +1 -1
- package/chunks/bundle-HQX6RTqS.js.map +1 -0
- package/chunks/{bundle-DXhynnjn.js → bundle-KeJ_rVJL.js} +1 -1
- package/chunks/{bundle-DXhynnjn.js.map → bundle-KeJ_rVJL.js.map} +1 -1
- package/chunks/{bundle-B0azZJiA.js → bundle-LL2dZ_t-.js} +14 -14
- package/chunks/{bundle-B0azZJiA.js.map → bundle-LL2dZ_t-.js.map} +1 -1
- package/chunks/{bundle-87W4GPnC.js → bundle-Y5rRHVbA.js} +1 -1
- package/chunks/bundle-Y5rRHVbA.js.map +1 -0
- package/chunks/{bundle-BhjXV0mk.js → bundle-YaC569om.js} +1 -1
- package/chunks/bundle-YaC569om.js.map +1 -0
- package/chunks/{bundle-DTDkmegk.js → bundle-aDOQN2rV.js} +1 -1
- package/chunks/bundle-aDOQN2rV.js.map +1 -0
- package/chunks/{bundle-N_XkA5JB.js → bundle-abfFo17w.js} +57 -63
- package/chunks/bundle-abfFo17w.js.map +1 -0
- package/chunks/{bundle-l_8hg8H3.js → bundle-c_OhpzFv.js} +2 -2
- package/chunks/bundle-c_OhpzFv.js.map +1 -0
- package/chunks/{bundle-BmPxXQ_C.js → bundle-gFk75Dds.js} +5 -5
- package/chunks/bundle-gFk75Dds.js.map +1 -0
- package/chunks/{bundle-DcOT2xg0.js → bundle-hWMpOZwq.js} +1 -1
- package/chunks/bundle-hWMpOZwq.js.map +1 -0
- package/chunks/{bundle-CwofYH9U.js → bundle-rA2Y0qFJ.js} +1 -1
- package/chunks/bundle-rA2Y0qFJ.js.map +1 -0
- package/chunks/{bundle-B1s46xJT.js → bundle-rGg9UI8F.js} +2 -2
- package/chunks/bundle-rGg9UI8F.js.map +1 -0
- package/chunks/bundle-v1dt12FL.js +16 -0
- package/chunks/bundle-v1dt12FL.js.map +1 -0
- package/chunks/{bundle-C4sUzPGS.js → bundle-vsdOwl6R.js} +3 -3
- package/chunks/bundle-vsdOwl6R.js.map +1 -0
- package/cjs/App.js +78 -79
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +65 -65
- package/cjs/Channel/components/FileViewer.js +28 -28
- package/cjs/Channel/components/FrozenNotification.js +5 -5
- package/cjs/Channel/components/Message.js +55 -55
- package/cjs/Channel/components/MessageInput.js +41 -41
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +58 -58
- 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 +21 -24
- package/cjs/Channel/context.js.map +1 -1
- 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 +65 -65
- 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 -23
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/cjs/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/cjs/ChannelSettings/components/LeaveChannel.js +11 -11
- package/cjs/ChannelSettings/components/ModerationPanel.js +22 -23
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- 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 -23
- package/cjs/ChannelSettings.js.map +1 -1
- 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 +57 -27
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
- package/cjs/GroupChannel/components/GroupChannelHeader.js +23 -22
- package/cjs/GroupChannel/components/GroupChannelHeader.js.map +1 -1
- package/cjs/GroupChannel/components/GroupChannelUI.js +60 -59
- package/cjs/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/cjs/GroupChannel/components/Message.js +55 -54
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +38 -37
- package/cjs/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/cjs/GroupChannel/components/MessageList.js +53 -52
- package/cjs/GroupChannel/components/MessageList.js.map +1 -1
- package/cjs/GroupChannel/components/RemoveMessageModal.js +23 -22
- package/cjs/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- 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 +29 -26
- package/cjs/GroupChannel/context.js.map +1 -1
- package/cjs/GroupChannel.js +60 -59
- package/cjs/GroupChannel.js.map +1 -1
- 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 -19
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OperatorUI.js +19 -20
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +19 -20
- package/cjs/OpenChannelSettings.js.map +1 -1
- package/cjs/SendbirdProvider.js +26 -48
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +78 -49
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +74 -36
- 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 +112 -55
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +43 -42
- package/cjs/Thread/components/ThreadMessageInput.js.map +1 -1
- package/cjs/Thread/components/ThreadUI.js +56 -56
- package/cjs/Thread/context.js +11 -10
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +10 -10
- package/cjs/VoiceRecorder/context.js +10 -10
- package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/cjs/chunks/{bundle-DxdzDF19.js → bundle--n4D2PVF.js} +2 -2
- package/cjs/chunks/bundle--n4D2PVF.js.map +1 -0
- package/cjs/chunks/{bundle-DUP4cxoZ.js → bundle-0NyPGfcV.js} +1 -1
- package/cjs/chunks/bundle-0NyPGfcV.js.map +1 -0
- package/cjs/chunks/{bundle-BsGXZt6G.js → bundle-1Lraxvfp.js} +3 -3
- package/cjs/chunks/bundle-1Lraxvfp.js.map +1 -0
- package/cjs/chunks/{bundle-BUOuk2jo.js → bundle-3ku2DsRp.js} +2 -2
- package/cjs/chunks/bundle-3ku2DsRp.js.map +1 -0
- package/cjs/chunks/{bundle-Q5_I3n-8.js → bundle-7SR3bIHI.js} +1 -1
- package/cjs/chunks/bundle-7SR3bIHI.js.map +1 -0
- package/cjs/chunks/{bundle-CsvKRjaK.js → bundle-B04GCotY.js} +1 -1
- package/cjs/chunks/bundle-B04GCotY.js.map +1 -0
- package/cjs/chunks/{bundle-DTjdtS4A.js → bundle-BAWPNqDt.js} +13 -12
- package/cjs/chunks/bundle-BAWPNqDt.js.map +1 -0
- package/cjs/chunks/{bundle-C2v2lxLx.js → bundle-BB5SwDry.js} +3 -3
- package/cjs/chunks/bundle-BB5SwDry.js.map +1 -0
- package/cjs/chunks/{bundle-1hCsXfVb.js → bundle-BDam-wvP.js} +1 -1
- package/cjs/chunks/{bundle-1hCsXfVb.js.map → bundle-BDam-wvP.js.map} +1 -1
- package/cjs/chunks/{bundle-7GCXhi1c.js → bundle-BHoDcZuM.js} +3 -3
- package/cjs/chunks/bundle-BHoDcZuM.js.map +1 -0
- package/cjs/chunks/{bundle-DJxxPTK5.js → bundle-BQ8kBY7P.js} +3 -3
- package/cjs/chunks/{bundle-DJxxPTK5.js.map → bundle-BQ8kBY7P.js.map} +1 -1
- package/cjs/chunks/{bundle-jdEKrUGh.js → bundle-BZwhrU6K.js} +1 -1
- package/cjs/chunks/bundle-BZwhrU6K.js.map +1 -0
- package/cjs/chunks/{bundle-6eXm5bOG.js → bundle-BaJn2YsZ.js} +1 -1
- package/cjs/chunks/bundle-BaJn2YsZ.js.map +1 -0
- package/cjs/chunks/{bundle-DREyIwSt.js → bundle-BdkEfjlQ.js} +10 -10
- package/cjs/chunks/{bundle-DREyIwSt.js.map → bundle-BdkEfjlQ.js.map} +1 -1
- package/cjs/chunks/{bundle-Dy6Gn-sd.js → bundle-Bqn5UkGf.js} +7 -7
- package/cjs/chunks/bundle-Bqn5UkGf.js.map +1 -0
- package/cjs/chunks/{bundle-C88DsCNB.js → bundle-BvwX2pXU.js} +3 -3
- package/cjs/chunks/bundle-BvwX2pXU.js.map +1 -0
- package/cjs/chunks/{bundle-BMsGwLym.js → bundle-BwuEkyq5.js} +1 -1
- package/cjs/chunks/bundle-BwuEkyq5.js.map +1 -0
- package/cjs/chunks/{bundle-BlvFC-Rm.js → bundle-Bx_5BAxl.js} +1 -1
- package/cjs/chunks/bundle-Bx_5BAxl.js.map +1 -0
- package/cjs/chunks/{bundle-BxaGZqGJ.js → bundle-ByUOxOjA.js} +3 -3
- package/cjs/chunks/bundle-ByUOxOjA.js.map +1 -0
- package/cjs/chunks/{bundle-FD0n8tOs.js → bundle-C1NORWsC.js} +4 -4
- package/cjs/chunks/bundle-C1NORWsC.js.map +1 -0
- package/cjs/chunks/{bundle-Y_FLyDnc.js → bundle-CDD7rA5D.js} +40 -9
- package/cjs/chunks/bundle-CDD7rA5D.js.map +1 -0
- package/cjs/chunks/{bundle-INETVVGE.js → bundle-CIoqC6d1.js} +1 -1
- package/cjs/chunks/bundle-CIoqC6d1.js.map +1 -0
- package/cjs/chunks/{bundle-qgvbJv89.js → bundle-CM2Yesst.js} +2 -2
- package/cjs/chunks/bundle-CM2Yesst.js.map +1 -0
- package/cjs/chunks/{bundle-tHnRbr7F.js → bundle-CYRD0mhW.js} +1 -1
- package/cjs/chunks/bundle-CYRD0mhW.js.map +1 -0
- package/cjs/chunks/{bundle-CqF06THu.js → bundle-CcICQ161.js} +1 -1
- package/cjs/chunks/{bundle-CqF06THu.js.map → bundle-CcICQ161.js.map} +1 -1
- package/cjs/chunks/{bundle-BF04PgMH.js → bundle-CcejNHwV.js} +1 -1
- package/cjs/chunks/bundle-CcejNHwV.js.map +1 -0
- package/cjs/chunks/{bundle-03LrACV2.js → bundle-CjPaNItW.js} +6 -6
- package/cjs/chunks/bundle-CjPaNItW.js.map +1 -0
- package/cjs/chunks/{bundle-BgLtZgZ_.js → bundle-Co8JsD2l.js} +1 -1
- package/cjs/chunks/bundle-Co8JsD2l.js.map +1 -0
- package/cjs/chunks/{bundle-CS644BJp.js → bundle-CpgiyizX.js} +1369 -119
- package/cjs/chunks/bundle-CpgiyizX.js.map +1 -0
- package/cjs/chunks/{bundle-DRFWOXrL.js → bundle-Cq1mLH5J.js} +1 -1
- package/cjs/chunks/bundle-Cq1mLH5J.js.map +1 -0
- package/cjs/chunks/{bundle-BwO19Jro.js → bundle-Crb55m_S.js} +3 -3
- package/cjs/chunks/bundle-Crb55m_S.js.map +1 -0
- package/cjs/chunks/{bundle-DX2BaZv_.js → bundle-Ctjr6ytm.js} +2 -2
- package/cjs/chunks/bundle-Ctjr6ytm.js.map +1 -0
- package/cjs/chunks/{bundle-Cyr1aQpR.js → bundle-Cv_3sQEK.js} +1 -1
- package/cjs/chunks/bundle-Cv_3sQEK.js.map +1 -0
- package/cjs/chunks/{bundle-BVgN7Stu.js → bundle-D1LOTtRp.js} +2 -2
- package/cjs/chunks/{bundle-BVgN7Stu.js.map → bundle-D1LOTtRp.js.map} +1 -1
- package/cjs/chunks/{bundle-tOZCSmZj.js → bundle-D2rrmfUO.js} +2 -2
- package/cjs/chunks/bundle-D2rrmfUO.js.map +1 -0
- package/cjs/chunks/{bundle-B8jj7upa.js → bundle-D69KMIe6.js} +4 -4
- package/cjs/chunks/bundle-D69KMIe6.js.map +1 -0
- package/cjs/chunks/{bundle-7FLBAmYO.js → bundle-DC4hSZ50.js} +2 -2
- package/cjs/chunks/{bundle-7FLBAmYO.js.map → bundle-DC4hSZ50.js.map} +1 -1
- package/cjs/chunks/{bundle-CmFB08Wf.js → bundle-DDm1Q65G.js} +3 -3
- package/cjs/chunks/bundle-DDm1Q65G.js.map +1 -0
- package/cjs/chunks/{bundle-B-dy_WYW.js → bundle-DJ64rHSo.js} +8 -8
- package/cjs/chunks/{bundle-B-dy_WYW.js.map → bundle-DJ64rHSo.js.map} +1 -1
- package/cjs/chunks/{bundle-dNtU9_eg.js → bundle-DOVeRCEG.js} +6 -6
- package/cjs/chunks/bundle-DOVeRCEG.js.map +1 -0
- package/cjs/chunks/{bundle-BH87xcnc.js → bundle-DSsqgxx7.js} +1 -1
- package/cjs/chunks/bundle-DSsqgxx7.js.map +1 -0
- package/cjs/chunks/{bundle-e6crA6HI.js → bundle-DTNXVmlf.js} +1 -1
- package/cjs/chunks/bundle-DTNXVmlf.js.map +1 -0
- package/cjs/chunks/{bundle-9K7l85xj.js → bundle-DUpA78AC.js} +4 -4
- package/cjs/chunks/bundle-DUpA78AC.js.map +1 -0
- package/cjs/chunks/{bundle-DjB9bkvD.js → bundle-DWVQJ2gC.js} +1 -1
- package/cjs/chunks/bundle-DWVQJ2gC.js.map +1 -0
- package/cjs/chunks/{bundle-BVuqbZx2.js → bundle-DWwL0a4W.js} +11 -11
- package/cjs/chunks/{bundle-BVuqbZx2.js.map → bundle-DWwL0a4W.js.map} +1 -1
- package/cjs/chunks/{bundle-B1Nml3ap.js → bundle-DYH-Fpti.js} +4 -19
- package/cjs/chunks/{bundle-B1Nml3ap.js.map → bundle-DYH-Fpti.js.map} +1 -1
- package/cjs/chunks/{bundle-BVLguSfh.js → bundle-Dcn5Xw_v.js} +4 -4
- package/cjs/chunks/{bundle-BVLguSfh.js.map → bundle-Dcn5Xw_v.js.map} +1 -1
- package/cjs/chunks/{bundle-CD9H6RqJ.js → bundle-Dg5cJzTw.js} +57 -63
- package/cjs/chunks/bundle-Dg5cJzTw.js.map +1 -0
- package/cjs/chunks/{bundle-BpOxHgfP.js → bundle-Dhc8aysm.js} +3 -3
- package/cjs/chunks/bundle-Dhc8aysm.js.map +1 -0
- package/cjs/chunks/{bundle-SIHqK2VF.js → bundle-DoE4Q2WU.js} +1 -1
- package/cjs/chunks/bundle-DoE4Q2WU.js.map +1 -0
- package/cjs/chunks/{bundle-ORLbcTP_.js → bundle-DsxetdDB.js} +1 -1
- package/cjs/chunks/bundle-DsxetdDB.js.map +1 -0
- package/cjs/chunks/{bundle-C8cnT2au.js → bundle-DvowIJM9.js} +9 -9
- package/cjs/chunks/bundle-DvowIJM9.js.map +1 -0
- package/cjs/chunks/{bundle-D1duSVks.js → bundle-L3CfQ_hg.js} +14 -14
- package/cjs/chunks/{bundle-D1duSVks.js.map → bundle-L3CfQ_hg.js.map} +1 -1
- package/cjs/chunks/{bundle-NU2voiKZ.js → bundle-LsedFW92.js} +2 -2
- package/cjs/chunks/bundle-LsedFW92.js.map +1 -0
- package/cjs/chunks/{bundle-BdHrSYl1.js → bundle-N_1Gt5W3.js} +4 -4
- package/cjs/chunks/bundle-N_1Gt5W3.js.map +1 -0
- package/cjs/chunks/{bundle-C9YHSQ4e.js → bundle-QN_dssGC.js} +1 -1
- package/cjs/chunks/bundle-QN_dssGC.js.map +1 -0
- package/cjs/chunks/{bundle-djPmP6bl.js → bundle-TEaGoE63.js} +5 -5
- package/cjs/chunks/bundle-TEaGoE63.js.map +1 -0
- package/cjs/chunks/{bundle-CDBTt08y.js → bundle-XORoItM6.js} +1 -1
- package/cjs/chunks/bundle-XORoItM6.js.map +1 -0
- package/cjs/chunks/{bundle-DgY0qwTL.js → bundle-ZARlfEpr.js} +5 -5
- package/cjs/chunks/bundle-ZARlfEpr.js.map +1 -0
- package/cjs/chunks/{bundle-CW9QUnWM.js → bundle-_KPYoqvO.js} +1 -1
- package/cjs/chunks/bundle-_KPYoqvO.js.map +1 -0
- package/cjs/chunks/{bundle-xvNVoWia.js → bundle-cFWnX4Tf.js} +6 -6
- package/cjs/chunks/bundle-cFWnX4Tf.js.map +1 -0
- package/cjs/chunks/{bundle-C9jXxNI1.js → bundle-gYlXAuPh.js} +7 -7
- package/cjs/chunks/bundle-gYlXAuPh.js.map +1 -0
- package/cjs/chunks/{bundle-JNAedgrE.js → bundle-hQ7iLiTN.js} +1 -1
- package/cjs/chunks/bundle-hQ7iLiTN.js.map +1 -0
- package/cjs/chunks/{bundle-BR23SbdZ.js → bundle-hVPEu0_c.js} +3 -3
- package/cjs/chunks/{bundle-BR23SbdZ.js.map → bundle-hVPEu0_c.js.map} +1 -1
- package/cjs/chunks/{bundle-f6dhmXLj.js → bundle-ioAYAc1x.js} +2 -2
- package/cjs/chunks/bundle-ioAYAc1x.js.map +1 -0
- package/cjs/chunks/bundle-k-Y_BM9m.js +18 -0
- package/cjs/chunks/bundle-k-Y_BM9m.js.map +1 -0
- package/cjs/chunks/{bundle-cf3-zuo6.js → bundle-lRPypcEP.js} +1 -1
- package/cjs/chunks/bundle-lRPypcEP.js.map +1 -0
- package/cjs/chunks/{bundle-DNP731Dg.js → bundle-lg2VZUfB.js} +16 -16
- package/cjs/chunks/bundle-lg2VZUfB.js.map +1 -0
- package/cjs/chunks/{bundle-DAVdWPDx.js → bundle-lwejARF-.js} +10 -10
- package/cjs/chunks/bundle-lwejARF-.js.map +1 -0
- package/cjs/chunks/{bundle-DfYperTC.js → bundle-mgZT4o2L.js} +1 -1
- package/cjs/chunks/bundle-mgZT4o2L.js.map +1 -0
- package/cjs/chunks/{bundle-8oxVWV_9.js → bundle-n7yqWnYc.js} +1 -1
- package/cjs/chunks/bundle-n7yqWnYc.js.map +1 -0
- package/cjs/chunks/{bundle-Cmmi9pdk.js → bundle-nbIOXEwY.js} +1 -1
- package/cjs/chunks/{bundle-Cmmi9pdk.js.map → bundle-nbIOXEwY.js.map} +1 -1
- package/cjs/chunks/{bundle-BR1tsZpK.js → bundle-pDTpawXd.js} +1 -1
- package/cjs/chunks/bundle-pDTpawXd.js.map +1 -0
- package/cjs/chunks/{bundle--ToWZ9cj.js → bundle-pJv3Q0cb.js} +1 -1
- package/cjs/chunks/bundle-pJv3Q0cb.js.map +1 -0
- package/cjs/chunks/{bundle-Dpu1gg5r.js → bundle-pW3_ob-0.js} +1 -1
- package/cjs/chunks/bundle-pW3_ob-0.js.map +1 -0
- package/cjs/chunks/{bundle-DcPTVUQJ.js → bundle-qc5egsO_.js} +3 -3
- package/cjs/chunks/bundle-qc5egsO_.js.map +1 -0
- package/cjs/chunks/{bundle-MFvyy6ar.js → bundle-sRcY6eTA.js} +10 -10
- package/cjs/chunks/{bundle-MFvyy6ar.js.map → bundle-sRcY6eTA.js.map} +1 -1
- package/cjs/chunks/{bundle-CIswYN43.js → bundle-vsCAD9Ej.js} +3 -3
- package/cjs/chunks/bundle-vsCAD9Ej.js.map +1 -0
- package/cjs/chunks/{bundle-B2cSnWcr.js → bundle-xOjjMFaY.js} +1 -1
- package/cjs/chunks/bundle-xOjjMFaY.js.map +1 -0
- package/cjs/chunks/{bundle-Bm5ysFU-.js → bundle-xn7uMkjF.js} +10 -10
- package/cjs/chunks/bundle-xn7uMkjF.js.map +1 -0
- package/cjs/hooks/useModal.js +9 -9
- package/cjs/index.js +82 -83
- package/cjs/index.js.map +1 -1
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +28 -36
- package/cjs/ui/Accordion.js.map +1 -1
- package/cjs/ui/AccordionGroup.js +47 -11
- package/cjs/ui/AccordionGroup.js.map +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 +29 -17
- package/cjs/ui/EmojiReactions.js.map +1 -1
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +50 -12
- package/cjs/ui/FileMessageItemBody.js.map +1 -1
- package/cjs/ui/FileViewer.js +15 -15
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +3 -3
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +3 -3
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +13 -13
- package/cjs/ui/MentionUserLabel.js +1 -1
- package/cjs/ui/MessageContent.js +138 -114
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +35 -0
- package/cjs/ui/MessageFeedbackFailedModal.js.map +1 -0
- package/cjs/{Channel/components → ui}/MessageFeedbackModal.js +13 -13
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +15 -15
- package/cjs/ui/MessageItemMenu.js +63 -26
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +9 -9
- package/cjs/ui/MessageSearchFileItem.js +14 -14
- package/cjs/ui/MessageSearchItem.js +11 -11
- package/cjs/ui/MessageStatus.js +12 -12
- package/cjs/ui/MessageTemplate.js +2 -1
- package/cjs/ui/MessageTemplate.js.map +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +9 -9
- package/cjs/ui/Modal.js +8 -8
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +19 -17
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +18 -18
- package/cjs/ui/OpenchannelOGMessage.js +20 -20
- package/cjs/ui/OpenchannelThumbnailMessage.js +17 -17
- package/cjs/ui/OpenchannelUserMessage.js +18 -18
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/QuoteMessage.js +9 -9
- package/cjs/ui/QuoteMessageInput.js +9 -9
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +143 -72
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +16 -16
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +17 -16
- package/cjs/ui/UserListItem.js.map +1 -1
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +10 -10
- package/cjs/ui/Word.js +13 -13
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -3
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +142 -148
- package/dist/index.css.map +1 -1
- package/hooks/useModal.js +10 -10
- package/index.js +82 -83
- package/index.js.map +1 -1
- package/package.json +19 -19
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/lib/dux/appInfo/initialState.d.ts +1 -0
- package/types/lib/types.d.ts +1 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/index.d.ts +1 -1
- package/types/modules/GroupChannel/components/FileViewer/FileViewerView.d.ts +5 -3
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +6 -0
- package/types/modules/GroupChannel/components/MessageTemplateWrapper/index.d.ts +1 -1
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +6 -1
- package/types/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +3 -1
- package/types/modules/Thread/context/ThreadProvider.d.ts +2 -0
- package/types/types.d.ts +1 -2
- package/types/ui/Accordion/Accordion.d.ts +10 -0
- package/types/ui/Accordion/AccordionGroup.d.ts +15 -5
- package/types/ui/Accordion/index.d.ts +6 -12
- package/types/ui/Carousel/index.d.ts +2 -3
- package/types/ui/EmojiReactions/index.d.ts +1 -2
- package/types/ui/FileMessageItemBody/index.d.ts +3 -1
- package/types/ui/FileViewer/index.d.ts +2 -1
- package/types/ui/FileViewer/types.d.ts +4 -2
- package/types/ui/MessageContent/MessageBody/index.d.ts +5 -1
- package/types/ui/MessageContent/index.d.ts +3 -1
- package/types/{modules/Channel/components → ui}/MessageFeedbackModal/index.d.ts +1 -1
- package/types/ui/MessageItemMenu/index.d.ts +10 -2
- package/types/ui/MessageTemplate/index.d.ts +4 -3
- package/types/ui/MessageTemplate/messageTemplateErrorBoundary.d.ts +3 -0
- package/types/ui/MobileMenu/types.d.ts +2 -1
- package/types/ui/MultipleFilesMessageItemBody/index.d.ts +3 -1
- package/types/ui/TemplateMessageItemBody/index.d.ts +3 -2
- package/types/ui/TemplateMessageItemBody/types.d.ts +11 -12
- package/types/ui/UserListItem/index.d.ts +2 -1
- package/types/utils/getIsReactionEnabled.d.ts +5 -4
- package/types/utils/index.d.ts +0 -2
- package/ui/Accordion.js +28 -39
- package/ui/Accordion.js.map +1 -1
- package/ui/AccordionGroup.js +43 -12
- package/ui/AccordionGroup.js.map +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 +29 -17
- package/ui/EmojiReactions.js.map +1 -1
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +50 -12
- package/ui/FileMessageItemBody.js.map +1 -1
- package/ui/FileViewer.js +15 -15
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +3 -3
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +3 -3
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +13 -13
- package/ui/MentionUserLabel.js +1 -1
- package/ui/MessageContent.js +137 -113
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +33 -0
- package/ui/MessageFeedbackFailedModal.js.map +1 -0
- package/{Channel/components → ui}/MessageFeedbackModal.js +13 -13
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +15 -15
- package/ui/MessageItemMenu.js +63 -26
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +9 -9
- package/ui/MessageSearchFileItem.js +14 -14
- package/ui/MessageSearchItem.js +11 -11
- package/ui/MessageStatus.js +12 -12
- package/ui/MessageTemplate.js +2 -1
- package/ui/MessageTemplate.js.map +1 -1
- package/ui/MobileFeedbackMenu.js +9 -9
- package/ui/Modal.js +8 -8
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +19 -17
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +18 -18
- package/ui/OpenchannelOGMessage.js +20 -20
- package/ui/OpenchannelThumbnailMessage.js +17 -17
- package/ui/OpenchannelUserMessage.js +18 -18
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/QuoteMessage.js +9 -9
- package/ui/QuoteMessageInput.js +9 -9
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +143 -72
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +16 -16
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +7 -7
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +17 -16
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +10 -10
- package/ui/Word.js +13 -13
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/withSendbird.js +1 -1
- package/chunks/bundle-87W4GPnC.js.map +0 -1
- package/chunks/bundle-B1s46xJT.js.map +0 -1
- package/chunks/bundle-B2pNgmzq.js.map +0 -1
- package/chunks/bundle-B5kwbUC5.js +0 -11
- package/chunks/bundle-B5kwbUC5.js.map +0 -1
- package/chunks/bundle-BFDyBk4r.js.map +0 -1
- package/chunks/bundle-BH5rbsxO.js.map +0 -1
- package/chunks/bundle-BJ9OAqWz.js.map +0 -1
- package/chunks/bundle-BKG2cvZ9.js.map +0 -1
- package/chunks/bundle-BNeRxCQA.js.map +0 -1
- package/chunks/bundle-BNydv1KA.js.map +0 -1
- package/chunks/bundle-BPclYGwz.js.map +0 -1
- package/chunks/bundle-BSPBjwR6.js.map +0 -1
- package/chunks/bundle-BUy5u56K.js.map +0 -1
- package/chunks/bundle-Bf5VthYV.js.map +0 -1
- package/chunks/bundle-BhjXV0mk.js.map +0 -1
- package/chunks/bundle-BmPxXQ_C.js.map +0 -1
- package/chunks/bundle-BuIxT5aZ.js.map +0 -1
- package/chunks/bundle-BvQAepkJ.js.map +0 -1
- package/chunks/bundle-Bys5RwQj.js.map +0 -1
- package/chunks/bundle-C-_RpFyM.js.map +0 -1
- package/chunks/bundle-C1RngQCJ.js.map +0 -1
- package/chunks/bundle-C4sUzPGS.js.map +0 -1
- package/chunks/bundle-CF6PMu9B.js.map +0 -1
- package/chunks/bundle-CJIPD7gN.js.map +0 -1
- package/chunks/bundle-COGPgRK-.js.map +0 -1
- package/chunks/bundle-CPszRkFg.js.map +0 -1
- package/chunks/bundle-CS7t26su.js.map +0 -1
- package/chunks/bundle-C_n2Emjx.js.map +0 -1
- package/chunks/bundle-CbBN2HTx.js.map +0 -1
- package/chunks/bundle-CfKGkWtT.js.map +0 -1
- package/chunks/bundle-CwofYH9U.js.map +0 -1
- package/chunks/bundle-D-cpJ5MP.js.map +0 -1
- package/chunks/bundle-D56MXYqF.js.map +0 -1
- package/chunks/bundle-DCjOFMcr.js.map +0 -1
- package/chunks/bundle-DRL21d0s.js.map +0 -1
- package/chunks/bundle-DTDkmegk.js.map +0 -1
- package/chunks/bundle-DUTTSKO5.js.map +0 -1
- package/chunks/bundle-D_X2Bqh-.js.map +0 -1
- package/chunks/bundle-DcOT2xg0.js.map +0 -1
- package/chunks/bundle-DgJrJ2xn.js.map +0 -1
- package/chunks/bundle-Dicb9Y5f.js.map +0 -1
- package/chunks/bundle-DkRogqRS.js.map +0 -1
- package/chunks/bundle-DnFiUPoR.js.map +0 -1
- package/chunks/bundle-DoLed6JB.js.map +0 -1
- package/chunks/bundle-DrfdRrEf.js +0 -12
- package/chunks/bundle-DrfdRrEf.js.map +0 -1
- package/chunks/bundle-DzuAq6CR.js.map +0 -1
- package/chunks/bundle-GQqssfTX.js.map +0 -1
- package/chunks/bundle-N_XkA5JB.js.map +0 -1
- package/chunks/bundle-WwYLGAen.js.map +0 -1
- package/chunks/bundle-gSQF3Ob-.js.map +0 -1
- package/chunks/bundle-l_8hg8H3.js.map +0 -1
- package/chunks/bundle-rSEP1XoB.js.map +0 -1
- package/chunks/bundle-rfEyWmAm.js.map +0 -1
- package/chunks/bundle-ynxAt7xC.js.map +0 -1
- package/chunks/bundle-zf2ni0YJ.js.map +0 -1
- package/cjs/chunks/bundle--ToWZ9cj.js.map +0 -1
- package/cjs/chunks/bundle-03LrACV2.js.map +0 -1
- package/cjs/chunks/bundle-6eXm5bOG.js.map +0 -1
- package/cjs/chunks/bundle-7GCXhi1c.js.map +0 -1
- package/cjs/chunks/bundle-8oxVWV_9.js.map +0 -1
- package/cjs/chunks/bundle-9K7l85xj.js.map +0 -1
- package/cjs/chunks/bundle-B2cSnWcr.js.map +0 -1
- package/cjs/chunks/bundle-BF04PgMH.js.map +0 -1
- package/cjs/chunks/bundle-BH87xcnc.js.map +0 -1
- package/cjs/chunks/bundle-BLh1DOSs.js +0 -15
- package/cjs/chunks/bundle-BLh1DOSs.js.map +0 -1
- package/cjs/chunks/bundle-BMsGwLym.js.map +0 -1
- package/cjs/chunks/bundle-BR1tsZpK.js.map +0 -1
- package/cjs/chunks/bundle-BUOuk2jo.js.map +0 -1
- package/cjs/chunks/bundle-BdHrSYl1.js.map +0 -1
- package/cjs/chunks/bundle-BgLtZgZ_.js.map +0 -1
- package/cjs/chunks/bundle-BlvFC-Rm.js.map +0 -1
- package/cjs/chunks/bundle-Bm5ysFU-.js.map +0 -1
- package/cjs/chunks/bundle-BpOxHgfP.js.map +0 -1
- package/cjs/chunks/bundle-BsGXZt6G.js.map +0 -1
- package/cjs/chunks/bundle-BwO19Jro.js.map +0 -1
- package/cjs/chunks/bundle-BxaGZqGJ.js.map +0 -1
- package/cjs/chunks/bundle-C2v2lxLx.js.map +0 -1
- package/cjs/chunks/bundle-C88DsCNB.js.map +0 -1
- package/cjs/chunks/bundle-C8cnT2au.js.map +0 -1
- package/cjs/chunks/bundle-C9YHSQ4e.js.map +0 -1
- package/cjs/chunks/bundle-C9jXxNI1.js.map +0 -1
- package/cjs/chunks/bundle-CCVRe_w3.js +0 -13
- package/cjs/chunks/bundle-CCVRe_w3.js.map +0 -1
- package/cjs/chunks/bundle-CD9H6RqJ.js.map +0 -1
- package/cjs/chunks/bundle-CDBTt08y.js.map +0 -1
- package/cjs/chunks/bundle-CIswYN43.js.map +0 -1
- package/cjs/chunks/bundle-CS644BJp.js.map +0 -1
- package/cjs/chunks/bundle-CW9QUnWM.js.map +0 -1
- package/cjs/chunks/bundle-CmFB08Wf.js.map +0 -1
- package/cjs/chunks/bundle-CsvKRjaK.js.map +0 -1
- package/cjs/chunks/bundle-Cyr1aQpR.js.map +0 -1
- package/cjs/chunks/bundle-DAVdWPDx.js.map +0 -1
- package/cjs/chunks/bundle-DNP731Dg.js.map +0 -1
- package/cjs/chunks/bundle-DRFWOXrL.js.map +0 -1
- package/cjs/chunks/bundle-DTjdtS4A.js.map +0 -1
- package/cjs/chunks/bundle-DUP4cxoZ.js.map +0 -1
- package/cjs/chunks/bundle-DX2BaZv_.js.map +0 -1
- package/cjs/chunks/bundle-DcPTVUQJ.js.map +0 -1
- package/cjs/chunks/bundle-DfYperTC.js.map +0 -1
- package/cjs/chunks/bundle-DgY0qwTL.js.map +0 -1
- package/cjs/chunks/bundle-DjB9bkvD.js.map +0 -1
- package/cjs/chunks/bundle-Dpu1gg5r.js.map +0 -1
- package/cjs/chunks/bundle-DxdzDF19.js.map +0 -1
- package/cjs/chunks/bundle-Dy6Gn-sd.js.map +0 -1
- package/cjs/chunks/bundle-FD0n8tOs.js.map +0 -1
- package/cjs/chunks/bundle-INETVVGE.js.map +0 -1
- package/cjs/chunks/bundle-JNAedgrE.js.map +0 -1
- package/cjs/chunks/bundle-NU2voiKZ.js.map +0 -1
- package/cjs/chunks/bundle-ORLbcTP_.js.map +0 -1
- package/cjs/chunks/bundle-Q5_I3n-8.js.map +0 -1
- package/cjs/chunks/bundle-SIHqK2VF.js.map +0 -1
- package/cjs/chunks/bundle-Y_FLyDnc.js.map +0 -1
- package/cjs/chunks/bundle-cf3-zuo6.js.map +0 -1
- package/cjs/chunks/bundle-dNtU9_eg.js.map +0 -1
- package/cjs/chunks/bundle-djPmP6bl.js.map +0 -1
- package/cjs/chunks/bundle-e6crA6HI.js.map +0 -1
- package/cjs/chunks/bundle-f6dhmXLj.js.map +0 -1
- package/cjs/chunks/bundle-jdEKrUGh.js.map +0 -1
- package/cjs/chunks/bundle-qgvbJv89.js.map +0 -1
- package/cjs/chunks/bundle-tHnRbr7F.js.map +0 -1
- package/cjs/chunks/bundle-tOZCSmZj.js.map +0 -1
- package/cjs/chunks/bundle-xvNVoWia.js.map +0 -1
- package/cjs/ui/Carousel.js +0 -254
- package/cjs/ui/Carousel.js.map +0 -1
- package/ui/Carousel.js +0 -249
- package/ui/Carousel.js.map +0 -1
- /package/cjs/{Channel/components → ui}/MessageFeedbackModal.js.map +0 -0
- /package/types/{modules/Channel/components → ui}/MessageFeedbackFailedModal/index.d.ts +0 -0
- /package/{Channel/components → ui}/MessageFeedbackModal.js.map +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CIwNgqhu.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CMax-oWd.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-C8jQWzDU.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-aDOQN2rV.js';
|
|
5
|
+
import './bundle-BU3SRwZT.js';
|
|
6
|
+
import { d as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-C5Wf2y_6.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-CThF5Krw.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CThF5Krw.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CfcfVkxG.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-Ba74MVBa.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-D81rUAiK.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-FVThTEKh.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-BhXdj56o.js';
|
|
10
|
+
import { u as useLocalization } from './bundle-Bsg3ZeXI.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-CVtMSwfw.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CVtMSwfw.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-FVThTEKh.js';
|
|
2
|
+
import { K } from './bundle-BubacXNL.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-CWVPqsi_.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CWVPqsi_.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React__default, { createContext, useReducer, useContext } from 'react';
|
|
2
|
-
import { _ as __assign } from './bundle-
|
|
3
|
-
import { i as VOICE_PLAYER_ROOT_ID, f as VOICE_PLAYER_AUDIO_ID, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE } from './bundle-
|
|
2
|
+
import { _ as __assign } from './bundle-CfcfVkxG.js';
|
|
3
|
+
import { i as VOICE_PLAYER_ROOT_ID, f as VOICE_PLAYER_AUDIO_ID, a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE } from './bundle-C5Wf2y_6.js';
|
|
4
4
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
5
5
|
|
|
6
6
|
var INITIALIZE_AUDIO_UNIT = 'INITIALIZE_AUDIO_UNIT';
|
|
@@ -243,4 +243,4 @@ var VoicePlayerProvider = function (_a) {
|
|
|
243
243
|
var useVoicePlayerContext = function () { return useContext(Context); };
|
|
244
244
|
|
|
245
245
|
export { AudioUnitDefaultValue as A, VOICE_PLAYER_STATUS as V, ALL as a, VoicePlayerProvider as b, useVoicePlayerContext as u };
|
|
246
|
-
//# sourceMappingURL=bundle-
|
|
246
|
+
//# sourceMappingURL=bundle-CWYkDVsf.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CWYkDVsf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
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-vsdOwl6R.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-D81rUAiK.js';
|
|
6
|
+
import { h as isSupportedFileView, j as isVideo, k as isImage } from './bundle-FVThTEKh.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-CIwNgqhu.js';
|
|
10
10
|
|
|
11
11
|
var FileViewerView = function (_a) {
|
|
12
|
-
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage;
|
|
12
|
+
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage, onDownloadClick = _a.onDownloadClick;
|
|
13
13
|
var sender = message.sender, type = message.type, url = message.url, _b = message.name, name = _b === void 0 ? '' : _b, threadInfo = message.threadInfo;
|
|
14
14
|
var profileUrl = sender.profileUrl, nickname = sender.nickname, userId = sender.userId;
|
|
15
15
|
var config = useSendbirdStateContext().config;
|
|
16
|
-
return createPortal(React__default.createElement(FileViewerComponent, { profileUrl: profileUrl, nickname: nickname, type: type, url: url, name: name, onCancel: onCancel, onDelete: function () { return deleteMessage(message).then(function () { return onCancel(); }); }, isByMe: config.userId === userId, disableDelete: (threadInfo === null || threadInfo === void 0 ? void 0 : threadInfo.replyCount) > 0 }), document.getElementById(MODAL_ROOT));
|
|
16
|
+
return createPortal(React__default.createElement(FileViewerComponent, { profileUrl: profileUrl, nickname: nickname, type: type, url: url, name: name, onCancel: onCancel, onDelete: function () { return deleteMessage(message).then(function () { return onCancel(); }); }, isByMe: config.userId === userId, disableDelete: (threadInfo === null || threadInfo === void 0 ? void 0 : threadInfo.replyCount) > 0, onDownloadClick: onDownloadClick }), document.getElementById(MODAL_ROOT));
|
|
17
17
|
};
|
|
18
18
|
var FileViewerComponent = function (_a) {
|
|
19
19
|
var
|
|
@@ -22,7 +22,7 @@ var FileViewerComponent = function (_a) {
|
|
|
22
22
|
// file
|
|
23
23
|
name = _a.name, type = _a.type, url = _a.url,
|
|
24
24
|
// others
|
|
25
|
-
isByMe = _a.isByMe, onCancel = _a.onCancel, onDelete = _a.onDelete, disableDelete = _a.disableDelete;
|
|
25
|
+
isByMe = _a.isByMe, onCancel = _a.onCancel, onDelete = _a.onDelete, disableDelete = _a.disableDelete, onDownloadClick = _a.onDownloadClick;
|
|
26
26
|
return (React__default.createElement("div", { className: "sendbird-fileviewer" },
|
|
27
27
|
React__default.createElement("div", { className: "sendbird-fileviewer__header" },
|
|
28
28
|
React__default.createElement("div", { className: "sendbird-fileviewer__header__left" },
|
|
@@ -32,7 +32,7 @@ var FileViewerComponent = function (_a) {
|
|
|
32
32
|
React__default.createElement(Label, { className: "sendbird-fileviewer__header__left__sender-name", type: LabelTypography.BODY_1, color: LabelColors.ONBACKGROUND_2 }, nickname)),
|
|
33
33
|
React__default.createElement("div", { className: "sendbird-fileviewer__header__right" },
|
|
34
34
|
isSupportedFileView(type) && (React__default.createElement("div", { className: "sendbird-fileviewer__header__right__actions" },
|
|
35
|
-
React__default.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank" },
|
|
35
|
+
React__default.createElement("a", { className: "sendbird-fileviewer__header__right__actions__download", rel: "noopener noreferrer", href: url, target: "_blank", onClick: onDownloadClick },
|
|
36
36
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.ON_BACKGROUND_1, height: "24px", width: "24px" })),
|
|
37
37
|
onDelete && isByMe && (React__default.createElement("div", { className: "sendbird-fileviewer__header__right__actions__delete" },
|
|
38
38
|
React__default.createElement(Icon, { className: disableDelete ? 'disabled' : '', type: IconTypes.DELETE, fillColor: disableDelete ? IconColors.GRAY : IconColors.ON_BACKGROUND_1, height: "24px", width: "24px", onClick: function () {
|
|
@@ -51,4 +51,4 @@ var FileViewerComponent = function (_a) {
|
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
export { FileViewerView as F };
|
|
54
|
-
//# sourceMappingURL=bundle-
|
|
54
|
+
//# sourceMappingURL=bundle-CYIneUd3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CYIneUd3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as __awaiter, b as __generator } from './bundle-
|
|
2
|
-
import { p as pxToNumber } from './bundle-
|
|
1
|
+
import { a as __awaiter, b as __generator } from './bundle-CfcfVkxG.js';
|
|
2
|
+
import { p as pxToNumber } from './bundle-DF_LuHdb.js';
|
|
3
3
|
|
|
4
4
|
var compressImage = function (_a) {
|
|
5
5
|
var imageFile = _a.imageFile, compressionRate = _a.compressionRate, resizingWidth = _a.resizingWidth, resizingHeight = _a.resizingHeight;
|
|
@@ -112,4 +112,4 @@ var compressImages = function (_a) {
|
|
|
112
112
|
};
|
|
113
113
|
|
|
114
114
|
export { compressImages as c };
|
|
115
|
-
//# sourceMappingURL=bundle-
|
|
115
|
+
//# sourceMappingURL=bundle-CaUvCYOg.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CaUvCYOg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -39,4 +39,4 @@ var PUBSUB_TOPICS;
|
|
|
39
39
|
var pubSubTopics = PUBSUB_TOPICS;
|
|
40
40
|
|
|
41
41
|
export { PublishingModuleType as P, shouldPubSubPublishToThread as a, PUBSUB_TOPICS as b, pubSubTopics as p, shouldPubSubPublishToChannel as s };
|
|
42
|
-
//# sourceMappingURL=bundle-
|
|
42
|
+
//# sourceMappingURL=bundle-CaYPuZ9G.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CaYPuZ9G.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-CfcfVkxG.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CfcfVkxG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,18 +1,18 @@
|
|
|
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-CwINP854.js';
|
|
3
|
+
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-CfcfVkxG.js';
|
|
4
|
+
import { c as compareIds } from './bundle-BQoN_-_d.js';
|
|
5
|
+
import { p as pubSubTopics } from './bundle-CaYPuZ9G.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-CFYZBlok.js';
|
|
9
|
+
import { c as compressImages } from './bundle-CaUvCYOg.js';
|
|
10
10
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
11
11
|
import { useGlobalModalContext } from '../hooks/useModal.js';
|
|
12
|
-
import { u as useLocalization } from './bundle-
|
|
13
|
-
import { O as ONE_MiB } from './bundle-
|
|
14
|
-
import { c as ModalFooter } from './bundle-
|
|
15
|
-
import './bundle-
|
|
12
|
+
import { u as useLocalization } from './bundle-Bsg3ZeXI.js';
|
|
13
|
+
import { O as ONE_MiB } from './bundle-C5Wf2y_6.js';
|
|
14
|
+
import { c as ModalFooter } from './bundle-CIwNgqhu.js';
|
|
15
|
+
import './bundle-D81rUAiK.js';
|
|
16
16
|
import { ButtonTypes } from '../ui/Button.js';
|
|
17
17
|
|
|
18
18
|
var shouldFetchMore = function (messageLength, maxMessages) {
|
|
@@ -1362,4 +1362,4 @@ var OpenChannelProvider = function (props) {
|
|
|
1362
1362
|
var useOpenChannelContext = function () { return React__default.useContext(OpenChannelContext); };
|
|
1363
1363
|
|
|
1364
1364
|
export { OpenChannelProvider as O, kFormatter as k, useOpenChannelContext as u };
|
|
1365
|
-
//# sourceMappingURL=bundle-
|
|
1365
|
+
//# sourceMappingURL=bundle-Cl5_xPaV.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cl5_xPaV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
|
-
import { p as pubSubTopics, s as shouldPubSubPublishToChannel, a as shouldPubSubPublishToThread } from './bundle-
|
|
3
|
-
import { s as scrollIntoLast$1 } from './bundle-
|
|
2
|
+
import { p as pubSubTopics, s as shouldPubSubPublishToChannel, a as shouldPubSubPublishToThread } from './bundle-CaYPuZ9G.js';
|
|
3
|
+
import { s as scrollIntoLast$1 } from './bundle-C8jQWzDU.js';
|
|
4
4
|
import '../utils/message/getOutgoingMessageState.js';
|
|
5
|
-
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND } from './bundle-
|
|
5
|
+
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND } from './bundle-C5Wf2y_6.js';
|
|
6
6
|
|
|
7
7
|
var getNicknamesMapFromMembers = function (members) {
|
|
8
8
|
if (members === void 0) { members = []; }
|
|
@@ -169,4 +169,4 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
169
169
|
};
|
|
170
170
|
|
|
171
171
|
export { getNicknamesMapFromMembers as a, compareIds as c, getParentMessageFrom as g, isAboutSame as i, scrollIntoLast as s, useSendMultipleFilesMessage as u };
|
|
172
|
-
//# sourceMappingURL=bundle-
|
|
172
|
+
//# sourceMappingURL=bundle-CmZPkDe1.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CmZPkDe1.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-C5Wf2y_6.js';
|
|
3
|
+
import { i as isAboutSame } from './bundle-C8jQWzDU.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-BaMugzjD.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-CnzbHeuJ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CnzbHeuJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConnectionHandler } from '@sendbird/chat';
|
|
2
2
|
import { useState, useEffect, useLayoutEffect, useMemo } from 'react';
|
|
3
|
-
import { u as uuidv4 } from './bundle-
|
|
4
|
-
import { a as __awaiter, b as __generator } from './bundle-
|
|
3
|
+
import { u as uuidv4 } from './bundle-CFYZBlok.js';
|
|
4
|
+
import { a as __awaiter, b as __generator } from './bundle-CfcfVkxG.js';
|
|
5
5
|
|
|
6
6
|
function useOnlineStatus(sdk, logger) {
|
|
7
7
|
var _a, _b;
|
|
@@ -194,4 +194,4 @@ function useMarkAsDeliveredScheduler(_a, _b) {
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
export { useMarkAsDeliveredScheduler as a, useUnmount as b, schedulerFactory as s, useOnlineStatus as u };
|
|
197
|
-
//# sourceMappingURL=bundle-
|
|
197
|
+
//# sourceMappingURL=bundle-Ct48juZF.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Ct48juZF.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-CuD6w3tY.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CuD6w3tY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,9 +3,9 @@ import { PlaybackTime } from '../ui/PlaybackTime.js';
|
|
|
3
3
|
import { ProgressBar } from '../ui/ProgressBar.js';
|
|
4
4
|
import TextButton from '../ui/TextButton.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { b as LabelColors, L as Label, a as LabelTypography } from './bundle-
|
|
7
|
-
import { u as useLocalization } from './bundle-
|
|
8
|
-
import { h as VOICE_RECORDER_CLICK_BUFFER_TIME, g as VOICE_RECORDER_DEFAULT_MIN } from './bundle-
|
|
6
|
+
import { b as LabelColors, L as Label, a as LabelTypography } from './bundle-D81rUAiK.js';
|
|
7
|
+
import { u as useLocalization } from './bundle-Bsg3ZeXI.js';
|
|
8
|
+
import { h as VOICE_RECORDER_CLICK_BUFFER_TIME, g as VOICE_RECORDER_DEFAULT_MIN } from './bundle-C5Wf2y_6.js';
|
|
9
9
|
|
|
10
10
|
/* eslint-disable no-redeclare */
|
|
11
11
|
var VoiceMessageInputStatus = {
|
|
@@ -93,4 +93,4 @@ var VoiceMessageInput = function (_a) {
|
|
|
93
93
|
};
|
|
94
94
|
|
|
95
95
|
export { VoiceMessageInputStatus as V, VoiceMessageInput as a };
|
|
96
|
-
//# sourceMappingURL=bundle-
|
|
96
|
+
//# sourceMappingURL=bundle-CuW57Fa0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CuW57Fa0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-CfcfVkxG.js';
|
|
2
2
|
import { useState, useRef, useCallback } from 'react';
|
|
3
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
3
|
+
import { u as useMediaQueryContext } from './bundle-CuD6w3tY.js';
|
|
4
4
|
|
|
5
5
|
var DEFAULT_DURATION = 300;
|
|
6
6
|
function preventDefault(e) {
|
|
@@ -74,4 +74,4 @@ function useLongPress(_a, _b) {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
export { useLongPress as u };
|
|
77
|
-
//# sourceMappingURL=bundle-
|
|
77
|
+
//# sourceMappingURL=bundle-CvZD4CjF.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CvZD4CjF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CwINP854.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as requiredArgs, t as toDate } from './bundle-
|
|
1
|
+
import { r as requiredArgs, t as toDate } from './bundle-Ba74MVBa.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @name startOfDay
|
|
@@ -61,4 +61,4 @@ function isSameDay(dirtyDateLeft, dirtyDateRight) {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
export { isSameDay as i };
|
|
64
|
-
//# sourceMappingURL=bundle-
|
|
64
|
+
//# sourceMappingURL=bundle-Cy3rlDS2.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cy3rlDS2.js","sources":["../../node_modules/date-fns/esm/startOfDay/index.js","../../node_modules/date-fns/esm/isSameDay/index.js"],"sourcesContent":["import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name startOfDay\n * @category Day Helpers\n * @summary Return the start of a day for the given date.\n *\n * @description\n * Return the start of a day for the given date.\n * The result will be in the local timezone.\n *\n * @param {Date|Number} date - the original date\n * @returns {Date} the start of a day\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // The start of a day for 2 September 2014 11:55:00:\n * const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 00:00:00\n */\nexport default function startOfDay(dirtyDate) {\n requiredArgs(1, arguments);\n var date = toDate(dirtyDate);\n date.setHours(0, 0, 0, 0);\n return date;\n}","import startOfDay from \"../startOfDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameDay\n * @category Day Helpers\n * @summary Are the given dates in the same day (and year and month)?\n *\n * @description\n * Are the given dates in the same day (and year and month)?\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 day (and year and month)\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 4 September 06:00:00 and 4 September 18:00:00 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0))\n * //=> true\n *\n * @example\n * // Are 4 September and 4 October in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2014, 9, 4))\n * //=> false\n *\n * @example\n * // Are 4 September, 2014 and 4 September, 2015 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2015, 8, 4))\n * //=> false\n */\nexport default function isSameDay(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeftStartOfDay = startOfDay(dirtyDateLeft);\n var dateRightStartOfDay = startOfDay(dirtyDateRight);\n return dateLeftStartOfDay.getTime() === dateRightStartOfDay.getTime();\n}"],"names":[],"mappings":";;AAEA;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,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAC5B,EAAE,OAAO,IAAI,CAAC;AACd;;ACvBA;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,SAAS,CAAC,aAAa,EAAE,cAAc,EAAE;AACjE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,kBAAkB,GAAG,UAAU,CAAC,aAAa,CAAC,CAAC;AACrD,EAAE,IAAI,mBAAmB,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;AACvD,EAAE,OAAO,kBAAkB,CAAC,OAAO,EAAE,KAAK,mBAAmB,CAAC,OAAO,EAAE,CAAC;AACxE;;;;","x_google_ignoreList":[0,1]}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React__default, { useState } from 'react';
|
|
2
2
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
3
|
-
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage, N as isThreadMessage, x as copyToClipboard, y as getEmojiListAll } from './bundle-
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
+
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage, N as isThreadMessage, x as copyToClipboard, y as getEmojiListAll } from './bundle-FVThTEKh.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-Bsg3ZeXI.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-D81rUAiK.js';
|
|
7
7
|
import BottomSheet from '../ui/BottomSheet.js';
|
|
8
8
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
9
9
|
import ReactionButton from '../ui/ReactionButton.js';
|
|
@@ -11,7 +11,7 @@ import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
|
11
11
|
|
|
12
12
|
var MobileContextMenu = function (props) {
|
|
13
13
|
var _a, _b, _c;
|
|
14
|
-
var hideMenu = props.hideMenu, channel = props.channel, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d;
|
|
14
|
+
var hideMenu = props.hideMenu, channel = props.channel, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d, _e = props.onDownloadClick, onDownloadClick = _e === void 0 ? null : _e;
|
|
15
15
|
var isByMe = ((_a = message === null || message === void 0 ? void 0 : message.sender) === null || _a === void 0 ? void 0 : _a.userId) === userId;
|
|
16
16
|
var stringSet = useLocalization().stringSet;
|
|
17
17
|
var showMenuItemCopy = isUserMessage(message);
|
|
@@ -90,7 +90,7 @@ var MobileContextMenu = function (props) {
|
|
|
90
90
|
showMenuItemDownload && (React__default.createElement(MenuItem, { className: "sendbird-message__mobile-context-menu-item menu-item-save", onClick: function () {
|
|
91
91
|
hideMenu();
|
|
92
92
|
}, dataSbId: "ui_mobile_message_item_menu_download_file" },
|
|
93
|
-
React__default.createElement("a", { className: "sendbird-message__contextmenu--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank" },
|
|
93
|
+
React__default.createElement("a", { className: "sendbird-message__contextmenu--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank", onClick: onDownloadClick },
|
|
94
94
|
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_1, color: LabelColors.ONBACKGROUND_1 }, stringSet.MESSAGE_MENU__SAVE),
|
|
95
95
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.PRIMARY, width: "24px", height: "24px" }))))));
|
|
96
96
|
} }));
|
|
@@ -99,7 +99,7 @@ var MobileContextMenu = function (props) {
|
|
|
99
99
|
var EMOJI_SIZE = 38;
|
|
100
100
|
var MobileBottomSheet = function (props) {
|
|
101
101
|
var _a, _b, _c;
|
|
102
|
-
var hideMenu = props.hideMenu, channel = props.channel, emojiContainer = props.emojiContainer, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, toggleReaction = props.toggleReaction, isReactionEnabled = props.isReactionEnabled, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, setQuoteMessage = props.setQuoteMessage, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d;
|
|
102
|
+
var hideMenu = props.hideMenu, channel = props.channel, emojiContainer = props.emojiContainer, message = props.message, replyType = props.replyType, userId = props.userId, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, toggleReaction = props.toggleReaction, isReactionEnabled = props.isReactionEnabled, showEdit = props.showEdit, showRemove = props.showRemove, deleteMenuState = props.deleteMenuState, setQuoteMessage = props.setQuoteMessage, onReplyInThread = props.onReplyInThread, _d = props.isOpenedFromThread, isOpenedFromThread = _d === void 0 ? false : _d, onDownloadClick = props.onDownloadClick;
|
|
103
103
|
var isByMe = ((_a = message === null || message === void 0 ? void 0 : message.sender) === null || _a === void 0 ? void 0 : _a.userId) === userId;
|
|
104
104
|
var stringSet = useLocalization().stringSet;
|
|
105
105
|
var globalStore = useSendbirdStateContext();
|
|
@@ -213,16 +213,16 @@ var MobileBottomSheet = function (props) {
|
|
|
213
213
|
showMenuItemDownload && (React__default.createElement("div", { className: 'sendbird-message__bottomsheet--action', onClick: function () {
|
|
214
214
|
hideMenu();
|
|
215
215
|
} },
|
|
216
|
-
React__default.createElement("a", { className: "sendbird-message__bottomsheet--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank" },
|
|
216
|
+
React__default.createElement("a", { className: "sendbird-message__bottomsheet--hyperlink", rel: "noopener noreferrer", href: fileMessage === null || fileMessage === void 0 ? void 0 : fileMessage.url, target: "_blank", onClick: onDownloadClick },
|
|
217
217
|
React__default.createElement(Icon, { type: IconTypes.DOWNLOAD, fillColor: IconColors.PRIMARY, width: "24px", height: "24px" }),
|
|
218
218
|
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_1, color: LabelColors.ONBACKGROUND_1 }, stringSet === null || stringSet === void 0 ? void 0 : stringSet.MESSAGE_MENU__SAVE)))))))));
|
|
219
219
|
};
|
|
220
220
|
|
|
221
221
|
var MobileMenu = function (props) {
|
|
222
|
-
var message = props.message, hideMenu = props.hideMenu, userId = props.userId, channel = props.channel, _a = props.isReactionEnabled, isReactionEnabled = _a === void 0 ? false : _a, isByMe = props.isByMe, replyType = props.replyType, disabled = props.disabled, deleteMenuState = props.deleteMenuState, showRemove = props.showRemove, showEdit = props.showEdit, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, emojiContainer = props.emojiContainer, toggleReaction = props.toggleReaction, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, isOpenedFromThread = props.isOpenedFromThread;
|
|
222
|
+
var message = props.message, hideMenu = props.hideMenu, userId = props.userId, channel = props.channel, _a = props.isReactionEnabled, isReactionEnabled = _a === void 0 ? false : _a, isByMe = props.isByMe, replyType = props.replyType, disabled = props.disabled, deleteMenuState = props.deleteMenuState, showRemove = props.showRemove, showEdit = props.showEdit, resendMessage = props.resendMessage, deleteMessage = props.deleteMessage, setQuoteMessage = props.setQuoteMessage, emojiContainer = props.emojiContainer, toggleReaction = props.toggleReaction, parentRef = props.parentRef, onReplyInThread = props.onReplyInThread, isOpenedFromThread = props.isOpenedFromThread, onDownloadClick = props.onDownloadClick;
|
|
223
223
|
return (React__default.createElement(React__default.Fragment, null, isReactionEnabled
|
|
224
|
-
? (React__default.createElement(MobileBottomSheet, { channel: channel, message: message, hideMenu: hideMenu, isByMe: isByMe, userId: userId, replyType: replyType, disabled: disabled, showRemove: showRemove, showEdit: showEdit, deleteMenuState: deleteMenuState, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, emojiContainer: emojiContainer, toggleReaction: toggleReaction, isReactionEnabled: isReactionEnabled, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread })) : (React__default.createElement(MobileContextMenu, { channel: channel, userId: userId, message: message, hideMenu: hideMenu, isByMe: isByMe, showEdit: showEdit, replyType: replyType, disabled: disabled, deleteMenuState: deleteMenuState, showRemove: showRemove, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, parentRef: parentRef, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread }))));
|
|
224
|
+
? (React__default.createElement(MobileBottomSheet, { channel: channel, message: message, hideMenu: hideMenu, isByMe: isByMe, userId: userId, replyType: replyType, disabled: disabled, showRemove: showRemove, showEdit: showEdit, deleteMenuState: deleteMenuState, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, emojiContainer: emojiContainer, toggleReaction: toggleReaction, isReactionEnabled: isReactionEnabled, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread, onDownloadClick: onDownloadClick })) : (React__default.createElement(MobileContextMenu, { channel: channel, userId: userId, message: message, hideMenu: hideMenu, isByMe: isByMe, showEdit: showEdit, replyType: replyType, disabled: disabled, deleteMenuState: deleteMenuState, showRemove: showRemove, resendMessage: resendMessage, deleteMessage: deleteMessage, setQuoteMessage: setQuoteMessage, parentRef: parentRef, onReplyInThread: onReplyInThread, isOpenedFromThread: isOpenedFromThread, onDownloadClick: onDownloadClick }))));
|
|
225
225
|
};
|
|
226
226
|
|
|
227
227
|
export { MobileMenu as M };
|
|
228
|
-
//# sourceMappingURL=bundle-
|
|
228
|
+
//# sourceMappingURL=bundle-CznK5-Sd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CznK5-Sd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React__default, { useRef, useContext, useEffect, useMemo, useState } from 'react';
|
|
2
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
2
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-D81rUAiK.js';
|
|
3
3
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
4
|
-
import { A as Avatar } from './bundle-
|
|
5
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
6
|
-
import { u as uuidv4 } from './bundle-
|
|
4
|
+
import { A as Avatar } from './bundle-vsdOwl6R.js';
|
|
5
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-Bsg3ZeXI.js';
|
|
6
|
+
import { u as uuidv4 } from './bundle-CFYZBlok.js';
|
|
7
7
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
8
|
-
import { U as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-
|
|
9
|
-
import { M as MessageInputKeys } from './bundle-
|
|
10
|
-
import { a as __awaiter, b as __generator } from './bundle-
|
|
8
|
+
import { U as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-BU3SRwZT.js';
|
|
9
|
+
import { M as MessageInputKeys } from './bundle-Y5rRHVbA.js';
|
|
10
|
+
import { a as __awaiter, b as __generator } from './bundle-CfcfVkxG.js';
|
|
11
11
|
|
|
12
12
|
function SuggestedUserMentionItem(props) {
|
|
13
13
|
var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
|
|
@@ -168,4 +168,4 @@ var SuggestedMentionListView = function (props) {
|
|
|
168
168
|
};
|
|
169
169
|
|
|
170
170
|
export { SuggestedMentionListView as S };
|
|
171
|
-
//# sourceMappingURL=bundle-
|
|
171
|
+
//# sourceMappingURL=bundle-D4k3lbic.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D4k3lbic.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CfcfVkxG.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-D6_jF6vA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D6_jF6vA.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-CfcfVkxG.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-KeJ_rVJL.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-D81rUAiK.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D81rUAiK.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DF_LuHdb.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -31,4 +31,4 @@ var isDisabledBecauseMuted = function (groupChannel) {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
export { isDisabledBecauseMuted as a, isContextMenuClosed as b, getMessageTopOffset as c, getComponentKeyFromMessage as g, isDisabledBecauseFrozen as i };
|
|
34
|
-
//# sourceMappingURL=bundle-
|
|
34
|
+
//# sourceMappingURL=bundle-DKfCP7IG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DKfCP7IG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|