@sendbird/uikit-react 3.12.0 → 3.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App.js +75 -75
- package/CHANGELOG.md +42 -1
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +63 -63
- package/Channel/components/FileViewer.js +28 -28
- package/Channel/components/FrozenNotification.js +5 -5
- package/Channel/components/Message.js +54 -54
- package/Channel/components/MessageFeedbackModal.js +9 -9
- package/Channel/components/MessageInput.js +41 -41
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +74 -83
- package/Channel/components/MessageList.js.map +1 -1
- package/Channel/components/RemoveMessageModal.js +27 -27
- package/Channel/components/SuggestedMentionList.js +27 -27
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +19 -19
- package/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/Channel/hooks/useInitialMessagesFetch.js +8 -97
- package/Channel/hooks/useInitialMessagesFetch.js.map +1 -1
- package/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/Channel/utils/getMessagePartsInfo.js +6 -6
- package/Channel.js +63 -63
- package/ChannelList/components/AddChannel.js +20 -20
- package/ChannelList/components/ChannelListHeader.js +8 -8
- package/ChannelList/components/ChannelListUI.js +34 -34
- package/ChannelList/components/ChannelPreview.js +27 -27
- package/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/ChannelList/context.js +10 -10
- package/ChannelList.js +34 -34
- package/ChannelSettings/components/ChannelProfile.js +14 -14
- package/ChannelSettings/components/ChannelSettingsUI.js +49 -54
- 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 +21 -21
- package/ChannelSettings/components/UserListItem.js +13 -13
- package/ChannelSettings/components/UserPanel.js +20 -20
- package/ChannelSettings/context.js +69 -44
- package/ChannelSettings/context.js.map +1 -1
- package/ChannelSettings.js +23 -23
- 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 +23 -23
- package/GroupChannel/components/FrozenNotification.js +5 -5
- package/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +51 -51
- package/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/GroupChannel/components/MessageList.js +68 -67
- package/GroupChannel/components/MessageList.js.map +1 -1
- package/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/GroupChannel/components/SuggestedMentionList.js +12 -11
- package/GroupChannel/components/SuggestedMentionList.js.map +1 -1
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +7 -7
- package/GroupChannel/context.js +11 -11
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +33 -33
- package/MessageSearch/components/MessageSearchUI.js +14 -14
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +14 -14
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/OpenChannel/components/OpenChannelInput.js +25 -25
- package/OpenChannel/components/OpenChannelMessage.js +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 +19 -19
- package/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +19 -19
- package/SendbirdProvider.js +18 -18
- package/Thread/components/ParentMessageInfo.js +42 -42
- package/Thread/components/ParentMessageInfoItem.js +28 -28
- package/Thread/components/ThreadHeader.js +7 -7
- package/Thread/components/ThreadList.js +46 -46
- package/Thread/components/ThreadListItem.js +46 -46
- package/Thread/components/ThreadMessageInput.js +49 -48
- package/Thread/components/ThreadMessageInput.js.map +1 -1
- package/Thread/components/ThreadUI.js +56 -56
- package/Thread/context.js +9 -9
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +10 -10
- package/VoiceRecorder/context.js +10 -10
- package/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/chunks/{bundle-HIwSRGfa.js → bundle--pOSeu9W.js} +3 -3
- package/chunks/bundle--pOSeu9W.js.map +1 -0
- package/chunks/{bundle-29ZwEQCB.js → bundle--q7ObKwF.js} +1 -1
- package/chunks/bundle--q7ObKwF.js.map +1 -0
- package/chunks/{bundle-ThaFnyA3.js → bundle-014pCrux.js} +1 -1
- package/chunks/bundle-014pCrux.js.map +1 -0
- package/chunks/{bundle-InXDhFjw.js → bundle-1pgLpH_4.js} +7 -7
- package/chunks/{bundle-InXDhFjw.js.map → bundle-1pgLpH_4.js.map} +1 -1
- package/chunks/{bundle-GMuoHJM5.js → bundle-24By8B6B.js} +3 -3
- package/chunks/{bundle-GMuoHJM5.js.map → bundle-24By8B6B.js.map} +1 -1
- package/chunks/{bundle-jIsbkecD.js → bundle-2BKREX4m.js} +1 -1
- package/chunks/bundle-2BKREX4m.js.map +1 -0
- package/chunks/{bundle-MVZc-WX7.js → bundle-3cwcm2Rk.js} +10 -10
- package/chunks/bundle-3cwcm2Rk.js.map +1 -0
- package/chunks/{bundle-YcH_HSha.js → bundle-52hs7-M-.js} +3 -3
- package/chunks/bundle-52hs7-M-.js.map +1 -0
- package/chunks/{bundle-jnJfrZ-B.js → bundle-5fPKUbCn.js} +1 -1
- package/chunks/{bundle-jnJfrZ-B.js.map → bundle-5fPKUbCn.js.map} +1 -1
- package/chunks/{bundle-y9OFIxWO.js → bundle-6cTGHg9E.js} +3 -3
- package/chunks/{bundle-y9OFIxWO.js.map → bundle-6cTGHg9E.js.map} +1 -1
- package/chunks/{bundle-hwjo__1w.js → bundle-6hgn3L9Y.js} +6 -6
- package/chunks/bundle-6hgn3L9Y.js.map +1 -0
- package/chunks/{bundle-RFQg3r1K.js → bundle-6ivjnK_C.js} +3 -3
- package/chunks/{bundle-RFQg3r1K.js.map → bundle-6ivjnK_C.js.map} +1 -1
- package/chunks/{bundle-WJbfhl8B.js → bundle-6mWCjL2G.js} +6 -6
- package/chunks/bundle-6mWCjL2G.js.map +1 -0
- package/chunks/{bundle-YK6gNh-t.js → bundle-9JkrMUIl.js} +1 -1
- package/chunks/bundle-9JkrMUIl.js.map +1 -0
- package/chunks/{bundle-FMptIFTe.js → bundle-A8dpIXKJ.js} +3 -3
- package/chunks/bundle-A8dpIXKJ.js.map +1 -0
- package/chunks/{bundle-ZOw_iEjI.js → bundle-BF1Rr3vo.js} +9 -17
- package/chunks/{bundle-Mj9lwGep.js.map → bundle-BF1Rr3vo.js.map} +1 -1
- package/chunks/{bundle-aU9DrOs1.js → bundle-BGFDI87G.js} +4 -4
- package/chunks/bundle-BGFDI87G.js.map +1 -0
- package/chunks/{bundle-TWhlUSzV.js → bundle-BLt9vn5B.js} +6 -6
- package/chunks/bundle-BLt9vn5B.js.map +1 -0
- package/chunks/{bundle-VeP4ZGTy.js → bundle-BTLUIJqA.js} +4 -4
- package/chunks/{bundle-VeP4ZGTy.js.map → bundle-BTLUIJqA.js.map} +1 -1
- package/chunks/{bundle-B2cNVPIG.js → bundle-B_WSWypW.js} +40 -6
- package/chunks/bundle-B_WSWypW.js.map +1 -0
- package/chunks/{bundle-B3ETdLpu.js → bundle-DS8eBDjC.js} +1 -1
- package/chunks/bundle-DS8eBDjC.js.map +1 -0
- package/chunks/{bundle-Yc91ktUe.js → bundle-F_qWVzaf.js} +1 -1
- package/chunks/bundle-F_qWVzaf.js.map +1 -0
- package/chunks/{bundle-_jLAjElr.js → bundle-GCno1s5H.js} +10 -10
- package/chunks/{bundle-_jLAjElr.js.map → bundle-GCno1s5H.js.map} +1 -1
- package/chunks/{bundle-7gmFtphc.js → bundle-IFrmy9_C.js} +2 -2
- package/chunks/bundle-IFrmy9_C.js.map +1 -0
- package/chunks/{bundle-e_hMfMVC.js → bundle-IOegLdFC.js} +3 -3
- package/chunks/bundle-IOegLdFC.js.map +1 -0
- package/chunks/{bundle--bzcDcV7.js → bundle-J6qXeThU.js} +1 -1
- package/chunks/bundle-J6qXeThU.js.map +1 -0
- package/chunks/{bundle-S3i59_HU.js → bundle-Jun66RyD.js} +1 -1
- package/chunks/bundle-Jun66RyD.js.map +1 -0
- package/chunks/{bundle-PXF29EwZ.js → bundle-LG3hn4TL.js} +4 -4
- package/chunks/bundle-LG3hn4TL.js.map +1 -0
- package/chunks/{bundle-kPmyq9ap.js → bundle-OAC6aJ8X.js} +17 -17
- package/chunks/{bundle-kPmyq9ap.js.map → bundle-OAC6aJ8X.js.map} +1 -1
- package/chunks/{bundle-OGLIDsv0.js → bundle-PrsPGxuw.js} +1 -1
- package/chunks/bundle-PrsPGxuw.js.map +1 -0
- package/chunks/{bundle-fIf1YwSi.js → bundle-Q3UquQ_i.js} +1 -1
- package/chunks/bundle-Q3UquQ_i.js.map +1 -0
- package/chunks/{bundle-42MD-_6f.js → bundle-S-mn30SU.js} +2 -2
- package/chunks/bundle-S-mn30SU.js.map +1 -0
- package/chunks/{bundle-dPtRdKjv.js → bundle-SMgyl32k.js} +1 -1
- package/chunks/bundle-SMgyl32k.js.map +1 -0
- package/chunks/{bundle-5cA2H0cQ.js → bundle-SXGL8fBv.js} +1 -1
- package/chunks/bundle-SXGL8fBv.js.map +1 -0
- package/chunks/{bundle-aAXpX7Sl.js → bundle-TYsOyvS5.js} +3 -3
- package/chunks/{bundle-aAXpX7Sl.js.map → bundle-TYsOyvS5.js.map} +1 -1
- package/chunks/{bundle-CBZRgcMe.js → bundle-TovLF3ih.js} +1 -1
- package/chunks/bundle-TovLF3ih.js.map +1 -0
- package/chunks/{bundle-NRvvlX8r.js → bundle-TzTFcIfJ.js} +1 -1
- package/chunks/bundle-TzTFcIfJ.js.map +1 -0
- package/chunks/{bundle-OdLkkyEZ.js → bundle-U7_j21Ss.js} +2 -2
- package/chunks/{bundle-OdLkkyEZ.js.map → bundle-U7_j21Ss.js.map} +1 -1
- package/chunks/{bundle-WkSXViPf.js → bundle-UDnO8-Dp.js} +2 -2
- package/chunks/bundle-UDnO8-Dp.js.map +1 -0
- package/chunks/{bundle-yMF6_bQS.js → bundle-UxyhnVkY.js} +1 -1
- package/chunks/bundle-UxyhnVkY.js.map +1 -0
- package/chunks/{bundle-nuPs9AqY.js → bundle-VfTA9EY8.js} +10 -10
- package/chunks/{bundle-nuPs9AqY.js.map → bundle-VfTA9EY8.js.map} +1 -1
- package/chunks/{bundle-1Wok5yjx.js → bundle-WImaBVSO.js} +4 -4
- package/chunks/bundle-WImaBVSO.js.map +1 -0
- package/chunks/{bundle-fdlrWGps.js → bundle-W_nWubt-.js} +2 -2
- package/chunks/bundle-W_nWubt-.js.map +1 -0
- package/chunks/{bundle-ZrmeY8rp.js → bundle-XEjzWAwL.js} +2 -2
- package/chunks/bundle-XEjzWAwL.js.map +1 -0
- package/chunks/{bundle-Eiortw-P.js → bundle-Y-ZHrlZJ.js} +8 -8
- package/chunks/{bundle-Eiortw-P.js.map → bundle-Y-ZHrlZJ.js.map} +1 -1
- package/chunks/{bundle-iRd3nywJ.js → bundle-YpfSm9dM.js} +1 -1
- package/chunks/bundle-YpfSm9dM.js.map +1 -0
- package/chunks/{bundle-ammXYCNc.js → bundle-ZlvXkXrU.js} +1 -1
- package/chunks/bundle-ZlvXkXrU.js.map +1 -0
- package/chunks/{bundle-hTd1NizA.js → bundle-_o_iMme_.js} +1 -1
- package/chunks/bundle-_o_iMme_.js.map +1 -0
- package/chunks/{bundle-QDjzCG-h.js → bundle-_xgfKjN0.js} +3 -3
- package/chunks/bundle-_xgfKjN0.js.map +1 -0
- package/chunks/{bundle-5qVfPYXm.js → bundle-a2TolYYj.js} +1 -1
- package/chunks/bundle-a2TolYYj.js.map +1 -0
- package/chunks/{bundle-7-k9ar1S.js → bundle-bazn-ENb.js} +1 -1
- package/chunks/bundle-bazn-ENb.js.map +1 -0
- package/chunks/{bundle-sPCqUzdP.js → bundle-cIHCEDKb.js} +1 -1
- package/chunks/bundle-cIHCEDKb.js.map +1 -0
- package/chunks/{bundle-8msIvFyl.js → bundle-cJYfaBvk.js} +10 -10
- package/chunks/{bundle-8msIvFyl.js.map → bundle-cJYfaBvk.js.map} +1 -1
- package/chunks/{bundle-z995fH4M.js → bundle-e1b64xud.js} +1 -1
- package/chunks/bundle-e1b64xud.js.map +1 -0
- package/chunks/{bundle-JVFq7QiY.js → bundle-f1tjVRSh.js} +3 -3
- package/chunks/bundle-f1tjVRSh.js.map +1 -0
- package/chunks/{bundle-VTgol5b8.js → bundle-f9AOpkiS.js} +1 -1
- package/chunks/bundle-f9AOpkiS.js.map +1 -0
- package/chunks/{bundle-R_8mFuwU.js → bundle-fMkcL8C8.js} +1 -1
- package/chunks/bundle-fMkcL8C8.js.map +1 -0
- package/chunks/{bundle-H1vLRvsQ.js → bundle-gSFYF-34.js} +5 -5
- package/chunks/bundle-gSFYF-34.js.map +1 -0
- package/chunks/{bundle-laqNvtHc.js → bundle-ibeQnj0V.js} +2 -2
- package/chunks/bundle-ibeQnj0V.js.map +1 -0
- package/chunks/{bundle-lS2bdzD_.js → bundle-is3QkoNv.js} +2 -2
- package/chunks/{bundle-lS2bdzD_.js.map → bundle-is3QkoNv.js.map} +1 -1
- package/chunks/{bundle-IGjDRlEq.js → bundle-jHpuKuA-.js} +5 -5
- package/chunks/bundle-jHpuKuA-.js.map +1 -0
- package/chunks/{bundle-XC9KBi8e.js → bundle-k0q5mJF1.js} +3 -3
- package/chunks/{bundle-XC9KBi8e.js.map → bundle-k0q5mJF1.js.map} +1 -1
- package/chunks/{bundle-zr28rXX0.js → bundle-oLg6CIrN.js} +1 -1
- package/chunks/bundle-oLg6CIrN.js.map +1 -0
- package/chunks/{bundle-Mj9lwGep.js → bundle-pJmhSBAn.js} +4 -4
- package/{cjs/chunks/bundle-nZsWuDxZ.js.map → chunks/bundle-pJmhSBAn.js.map} +1 -1
- package/chunks/{bundle-W5PUqymk.js → bundle-pwwvkK5L.js} +3 -3
- package/chunks/{bundle-W5PUqymk.js.map → bundle-pwwvkK5L.js.map} +1 -1
- package/chunks/{bundle-0wv5nxcS.js → bundle-qafY5nY6.js} +2 -2
- package/chunks/{bundle-0wv5nxcS.js.map → bundle-qafY5nY6.js.map} +1 -1
- package/chunks/{bundle-gb0MSpDp.js → bundle-qfOg3sUU.js} +11 -11
- package/chunks/{bundle-gb0MSpDp.js.map → bundle-qfOg3sUU.js.map} +1 -1
- package/chunks/{bundle-WJ0Rx9Vt.js → bundle-r1f2uym4.js} +2 -2
- package/chunks/bundle-r1f2uym4.js.map +1 -0
- package/chunks/{bundle-zftI06HH.js → bundle-rW70z6Ho.js} +3 -3
- package/chunks/bundle-rW70z6Ho.js.map +1 -0
- package/chunks/bundle-rXKTCCVw.js +102 -0
- package/chunks/{bundle-s7Jm-nQL.js.map → bundle-rXKTCCVw.js.map} +1 -1
- package/chunks/{bundle-PrPMpr0d.js → bundle-rwixBUpF.js} +4 -4
- package/chunks/bundle-rwixBUpF.js.map +1 -0
- package/chunks/{bundle-mbVaGxy-.js → bundle-tPOBtJjA.js} +1 -1
- package/chunks/bundle-tPOBtJjA.js.map +1 -0
- package/chunks/{bundle-mah5uoR7.js → bundle-taqbMkQe.js} +1 -1
- package/chunks/{bundle-mah5uoR7.js.map → bundle-taqbMkQe.js.map} +1 -1
- package/chunks/{bundle-5waczf_5.js → bundle-wKSIzWUl.js} +3 -3
- package/chunks/{bundle-5waczf_5.js.map → bundle-wKSIzWUl.js.map} +1 -1
- package/chunks/{bundle-Cl9FF01U.js → bundle-wO0wz3br.js} +1 -1
- package/chunks/{bundle-Cl9FF01U.js.map → bundle-wO0wz3br.js.map} +1 -1
- package/chunks/{bundle-mXxUWu6C.js → bundle-wdUAfmoS.js} +1 -1
- package/chunks/bundle-wdUAfmoS.js.map +1 -0
- package/chunks/{bundle-2ZdAkcAR.js → bundle-xLjEyoT0.js} +5 -5
- package/chunks/{bundle-2ZdAkcAR.js.map → bundle-xLjEyoT0.js.map} +1 -1
- package/chunks/{bundle-FS7VoABk.js → bundle-yPhMS1LV.js} +1 -1
- package/chunks/{bundle-FS7VoABk.js.map → bundle-yPhMS1LV.js.map} +1 -1
- package/chunks/{bundle-bXxgZ3h3.js → bundle-yQgn6JfU.js} +52 -55
- package/chunks/bundle-yQgn6JfU.js.map +1 -0
- package/chunks/{bundle-c-m52z_J.js → bundle-ykuyabqF.js} +4 -4
- package/chunks/{bundle-c-m52z_J.js.map → bundle-ykuyabqF.js.map} +1 -1
- package/chunks/{bundle-s7Jm-nQL.js → bundle-yoFO4gJM.js} +1 -1
- package/{cjs/chunks/bundle-CQGJhJYV.js.map → chunks/bundle-yoFO4gJM.js.map} +1 -1
- package/cjs/App.js +75 -75
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +63 -63
- package/cjs/Channel/components/FileViewer.js +28 -28
- package/cjs/Channel/components/FrozenNotification.js +5 -5
- package/cjs/Channel/components/Message.js +54 -54
- package/cjs/Channel/components/MessageFeedbackModal.js +9 -9
- package/cjs/Channel/components/MessageInput.js +41 -41
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +74 -83
- package/cjs/Channel/components/MessageList.js.map +1 -1
- 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 +26 -26
- package/cjs/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +10 -95
- package/cjs/Channel/hooks/useInitialMessagesFetch.js.map +1 -1
- package/cjs/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/cjs/Channel/utils/getMessagePartsInfo.js +6 -6
- package/cjs/Channel.js +63 -63
- package/cjs/ChannelList/components/AddChannel.js +20 -20
- package/cjs/ChannelList/components/ChannelListHeader.js +8 -8
- package/cjs/ChannelList/components/ChannelListUI.js +34 -34
- package/cjs/ChannelList/components/ChannelPreview.js +27 -27
- package/cjs/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/cjs/ChannelList/context.js +10 -10
- package/cjs/ChannelList.js +34 -34
- package/cjs/ChannelSettings/components/ChannelProfile.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +49 -54
- 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 +21 -21
- package/cjs/ChannelSettings/components/UserListItem.js +13 -13
- package/cjs/ChannelSettings/components/UserPanel.js +20 -20
- package/cjs/ChannelSettings/context.js +69 -44
- package/cjs/ChannelSettings/context.js.map +1 -1
- package/cjs/ChannelSettings.js +23 -23
- 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 +23 -23
- package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
- package/cjs/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +51 -51
- package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
- package/cjs/GroupChannel/components/MessageList.js +68 -67
- package/cjs/GroupChannel/components/MessageList.js.map +1 -1
- package/cjs/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -11
- package/cjs/GroupChannel/components/SuggestedMentionList.js.map +1 -1
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +7 -7
- package/cjs/GroupChannel/context.js +11 -11
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +33 -33
- package/cjs/MessageSearch/components/MessageSearchUI.js +14 -14
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +14 -14
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/cjs/OpenChannel/components/OpenChannelInput.js +25 -25
- package/cjs/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelUI.js +39 -39
- package/cjs/OpenChannel/context.js +17 -17
- package/cjs/OpenChannel.js +39 -39
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +14 -14
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +19 -19
- package/cjs/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +19 -19
- package/cjs/SendbirdProvider.js +18 -18
- package/cjs/Thread/components/ParentMessageInfo.js +42 -42
- package/cjs/Thread/components/ParentMessageInfoItem.js +28 -28
- package/cjs/Thread/components/ThreadHeader.js +7 -7
- package/cjs/Thread/components/ThreadList.js +46 -46
- package/cjs/Thread/components/ThreadListItem.js +46 -46
- package/cjs/Thread/components/ThreadMessageInput.js +49 -48
- package/cjs/Thread/components/ThreadMessageInput.js.map +1 -1
- package/cjs/Thread/components/ThreadUI.js +56 -56
- package/cjs/Thread/context.js +9 -9
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +10 -10
- package/cjs/VoiceRecorder/context.js +10 -10
- package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/cjs/chunks/{bundle-ivu3uDBu.js → bundle-0vl1G6aF.js} +3 -3
- package/cjs/chunks/bundle-0vl1G6aF.js.map +1 -0
- package/cjs/chunks/{bundle-Y6oHbdhN.js → bundle-12iJO39c.js} +3 -3
- package/cjs/chunks/bundle-12iJO39c.js.map +1 -0
- package/cjs/chunks/{bundle-hCnt57_4.js → bundle-2jwRnSd8.js} +8 -8
- package/cjs/chunks/{bundle-hCnt57_4.js.map → bundle-2jwRnSd8.js.map} +1 -1
- package/cjs/chunks/{bundle-pNPHZO_X.js → bundle-3SJwqpkk.js} +5 -5
- package/cjs/chunks/bundle-3SJwqpkk.js.map +1 -0
- package/cjs/chunks/{bundle-lqO2HtRG.js → bundle-3eINsVVm.js} +6 -6
- package/cjs/chunks/bundle-3eINsVVm.js.map +1 -0
- package/cjs/chunks/{bundle-OLmZ2fUV.js → bundle-4jX5eqYW.js} +2 -2
- package/cjs/chunks/bundle-4jX5eqYW.js.map +1 -0
- package/cjs/chunks/{bundle-D_9GebqZ.js → bundle-5_SjuoV5.js} +1 -1
- package/cjs/chunks/bundle-5_SjuoV5.js.map +1 -0
- package/cjs/chunks/{bundle-vDdmiX8M.js → bundle-634wsixh.js} +10 -10
- package/cjs/chunks/{bundle-vDdmiX8M.js.map → bundle-634wsixh.js.map} +1 -1
- package/cjs/chunks/{bundle-EmZI0-j-.js → bundle-6k9JvMoA.js} +1 -1
- package/cjs/chunks/bundle-6k9JvMoA.js.map +1 -0
- package/cjs/chunks/{bundle-HQUEIVST.js → bundle-6uWmKzjA.js} +1 -1
- package/cjs/chunks/{bundle-HQUEIVST.js.map → bundle-6uWmKzjA.js.map} +1 -1
- package/cjs/chunks/{bundle-LZMOuc2b.js → bundle-7pGAEUaG.js} +1 -1
- package/cjs/chunks/{bundle-LZMOuc2b.js.map → bundle-7pGAEUaG.js.map} +1 -1
- package/cjs/chunks/{bundle-RHwdkbbz.js → bundle-8fHhsSkO.js} +1 -1
- package/cjs/chunks/bundle-8fHhsSkO.js.map +1 -0
- package/cjs/chunks/{bundle-7S9cQ7Sp.js → bundle-9Ms65KWQ.js} +2 -2
- package/cjs/chunks/bundle-9Ms65KWQ.js.map +1 -0
- package/cjs/chunks/{bundle-xn7dyz1d.js → bundle-9uUg_zKI.js} +3 -3
- package/cjs/chunks/bundle-9uUg_zKI.js.map +1 -0
- package/cjs/chunks/{bundle-fWvwYg6I.js → bundle-BAZMzxRI.js} +1 -1
- package/cjs/chunks/bundle-BAZMzxRI.js.map +1 -0
- package/cjs/chunks/{bundle-lZm_4ToV.js → bundle-BujsZjS_.js} +3 -3
- package/cjs/chunks/bundle-BujsZjS_.js.map +1 -0
- package/cjs/chunks/{bundle-HmF0Kwa_.js → bundle-DAwfoiZz.js} +4 -4
- package/cjs/chunks/bundle-DAwfoiZz.js.map +1 -0
- package/cjs/chunks/{bundle-XpwayjqP.js → bundle-DGXRqeiH.js} +1 -1
- package/cjs/chunks/bundle-DGXRqeiH.js.map +1 -0
- package/cjs/chunks/{bundle-g3vASPp8.js → bundle-EvM8f38k.js} +2 -2
- package/cjs/chunks/bundle-EvM8f38k.js.map +1 -0
- package/cjs/chunks/{bundle-G4olPx81.js → bundle-Gj3FCN-l.js} +1 -1
- package/cjs/chunks/bundle-Gj3FCN-l.js.map +1 -0
- package/cjs/chunks/{bundle-him8B6lQ.js → bundle-IKnblThp.js} +6 -6
- package/cjs/chunks/bundle-IKnblThp.js.map +1 -0
- package/cjs/chunks/{bundle-yzN-MQRB.js → bundle-J790CoNK.js} +1 -1
- package/cjs/chunks/bundle-J790CoNK.js.map +1 -0
- package/cjs/chunks/{bundle-POnqXMLV.js → bundle-JbsZLrne.js} +2 -2
- package/cjs/chunks/{bundle-POnqXMLV.js.map → bundle-JbsZLrne.js.map} +1 -1
- package/cjs/chunks/{bundle-do_4Y2S_.js → bundle-JfUvL0pn.js} +1 -1
- package/cjs/chunks/{bundle-do_4Y2S_.js.map → bundle-JfUvL0pn.js.map} +1 -1
- package/cjs/chunks/{bundle-GYpm7RtY.js → bundle-Jy-utJ8j.js} +1 -1
- package/cjs/chunks/bundle-Jy-utJ8j.js.map +1 -0
- package/cjs/chunks/{bundle-Z9uYBAUt.js → bundle-KHlebcMh.js} +3 -3
- package/cjs/chunks/bundle-KHlebcMh.js.map +1 -0
- package/cjs/chunks/{bundle-2QTmv8Qr.js → bundle-Ktg9Of7w.js} +1 -1
- package/cjs/chunks/bundle-Ktg9Of7w.js.map +1 -0
- package/cjs/chunks/{bundle-y0sGF4RD.js → bundle-MIY8NRxo.js} +6 -6
- package/cjs/chunks/bundle-MIY8NRxo.js.map +1 -0
- package/cjs/chunks/{bundle-hdKCnGri.js → bundle-OmPnU_OI.js} +3 -3
- package/cjs/chunks/{bundle-hdKCnGri.js.map → bundle-OmPnU_OI.js.map} +1 -1
- package/cjs/chunks/{bundle-_N5y1qEg.js → bundle-Oq2WwdJI.js} +1 -1
- package/cjs/chunks/bundle-Oq2WwdJI.js.map +1 -0
- package/cjs/chunks/{bundle-l9rAnwws.js → bundle-QauQilHV.js} +1 -1
- package/cjs/chunks/bundle-QauQilHV.js.map +1 -0
- package/cjs/chunks/{bundle-FnDHXB2d.js → bundle-Rd2d2a3j.js} +10 -20
- package/{chunks/bundle-ZOw_iEjI.js.map → cjs/chunks/bundle-Rd2d2a3j.js.map} +1 -1
- package/cjs/chunks/{bundle-B3jNx9nI.js → bundle-SM64BUgE.js} +2 -2
- package/cjs/chunks/bundle-SM64BUgE.js.map +1 -0
- package/cjs/chunks/{bundle-yyOx7Krk.js → bundle-SR43QM50.js} +4 -4
- package/cjs/chunks/bundle-SR43QM50.js.map +1 -0
- package/cjs/chunks/{bundle-nZsWuDxZ.js → bundle-SyUPzsOv.js} +4 -4
- package/cjs/chunks/{bundle-FnDHXB2d.js.map → bundle-SyUPzsOv.js.map} +1 -1
- package/cjs/chunks/{bundle-YTPSevv5.js → bundle-TPt6Ukqk.js} +4 -4
- package/cjs/chunks/{bundle-YTPSevv5.js.map → bundle-TPt6Ukqk.js.map} +1 -1
- package/cjs/chunks/{bundle-19RYdLTI.js → bundle-UDa2UXB2.js} +3 -3
- package/cjs/chunks/{bundle-19RYdLTI.js.map → bundle-UDa2UXB2.js.map} +1 -1
- package/cjs/chunks/{bundle-6Ucv_cXK.js → bundle-VOIBVZ8K.js} +1 -1
- package/cjs/chunks/bundle-VOIBVZ8K.js.map +1 -0
- package/cjs/chunks/{bundle-qlTSWGy9.js → bundle-VySxn-bM.js} +40 -5
- package/cjs/chunks/bundle-VySxn-bM.js.map +1 -0
- package/cjs/chunks/{bundle-v-P7N839.js → bundle-WjU125ds.js} +3 -3
- package/cjs/chunks/bundle-WjU125ds.js.map +1 -0
- package/cjs/chunks/{bundle-w1sEa7O0.js → bundle-XqQ_cljg.js} +1 -1
- package/cjs/chunks/bundle-XqQ_cljg.js.map +1 -0
- package/cjs/chunks/{bundle-CQGJhJYV.js → bundle-YGVhXIfU.js} +2 -2
- package/cjs/chunks/bundle-YGVhXIfU.js.map +1 -0
- package/cjs/chunks/{bundle-THKiylQP.js → bundle-YZRXvkp-.js} +5 -5
- package/cjs/chunks/bundle-YZRXvkp-.js.map +1 -0
- package/cjs/chunks/{bundle-8gAAE7I3.js → bundle-cIL4aJSh.js} +1 -1
- package/cjs/chunks/bundle-cIL4aJSh.js.map +1 -0
- package/cjs/chunks/{bundle-j5InjWst.js → bundle-cbIBIuxw.js} +1 -1
- package/cjs/chunks/bundle-cbIBIuxw.js.map +1 -0
- package/cjs/chunks/{bundle-gKpM7okd.js → bundle-cp4Mr7IE.js} +1 -1
- package/cjs/chunks/bundle-cp4Mr7IE.js.map +1 -0
- package/cjs/chunks/{bundle-uQ09rpIX.js → bundle-cv4uM9fB.js} +10 -10
- package/{chunks/bundle-bXxgZ3h3.js.map → cjs/chunks/bundle-cv4uM9fB.js.map} +1 -1
- package/cjs/chunks/{bundle-d1u7R12O.js → bundle-eb9lfgWx.js} +1 -1
- package/cjs/chunks/bundle-eb9lfgWx.js.map +1 -0
- package/cjs/chunks/{bundle-65WXfVqV.js → bundle-fNnK4ZX1.js} +2 -2
- package/cjs/chunks/{bundle-65WXfVqV.js.map → bundle-fNnK4ZX1.js.map} +1 -1
- package/cjs/chunks/{bundle-L3zb8Cu_.js → bundle-fzWbmzou.js} +3 -3
- package/cjs/chunks/bundle-fzWbmzou.js.map +1 -0
- package/cjs/chunks/{bundle-v6rdnF1q.js → bundle-gUU1zXtu.js} +1 -1
- package/cjs/chunks/bundle-gUU1zXtu.js.map +1 -0
- package/cjs/chunks/bundle-h1-4ko51.js +106 -0
- package/cjs/chunks/bundle-h1-4ko51.js.map +1 -0
- package/cjs/chunks/{bundle-OayM7MBH.js → bundle-hNdySo7A.js} +57 -60
- package/cjs/chunks/bundle-hNdySo7A.js.map +1 -0
- package/cjs/chunks/{bundle-jI4fSOuZ.js → bundle-hR3vnZG1.js} +1 -1
- package/cjs/chunks/bundle-hR3vnZG1.js.map +1 -0
- package/cjs/chunks/{bundle-hyQekvQu.js → bundle-hYAxN2fG.js} +1 -1
- package/cjs/chunks/bundle-hYAxN2fG.js.map +1 -0
- package/cjs/chunks/{bundle-O3DZBV2p.js → bundle-jh0UjnOb.js} +1 -1
- package/cjs/chunks/bundle-jh0UjnOb.js.map +1 -0
- package/cjs/chunks/{bundle-0Ju2qhN6.js → bundle-jkZbYCwb.js} +11 -11
- package/cjs/chunks/{bundle-0Ju2qhN6.js.map → bundle-jkZbYCwb.js.map} +1 -1
- package/cjs/chunks/{bundle-fE1EYcSx.js → bundle-juIULvxr.js} +1 -1
- package/cjs/chunks/bundle-juIULvxr.js.map +1 -0
- package/cjs/chunks/{bundle-tCIy9Pcv.js → bundle-m6R8TnWy.js} +17 -17
- package/cjs/chunks/{bundle-tCIy9Pcv.js.map → bundle-m6R8TnWy.js.map} +1 -1
- package/cjs/chunks/{bundle-jjYDBqPB.js → bundle-mMBwJT3x.js} +4 -4
- package/cjs/chunks/{bundle-jjYDBqPB.js.map → bundle-mMBwJT3x.js.map} +1 -1
- package/cjs/chunks/{bundle-WQOvDsOP.js → bundle-mpZAARbu.js} +1 -1
- package/cjs/chunks/bundle-mpZAARbu.js.map +1 -0
- package/cjs/chunks/{bundle-bSoYSPA5.js → bundle-o2GWKL_d.js} +1 -1
- package/cjs/chunks/bundle-o2GWKL_d.js.map +1 -0
- package/cjs/chunks/{bundle-6D2HDCsi.js → bundle-oGyWTIOJ.js} +4 -4
- package/cjs/chunks/bundle-oGyWTIOJ.js.map +1 -0
- package/cjs/chunks/{bundle-JutD2hKN.js → bundle-opmIFrXg.js} +3 -3
- package/cjs/chunks/{bundle-JutD2hKN.js.map → bundle-opmIFrXg.js.map} +1 -1
- package/cjs/chunks/{bundle-M_3VvtOr.js → bundle-pNtkOzhO.js} +10 -10
- package/cjs/chunks/bundle-pNtkOzhO.js.map +1 -0
- package/cjs/chunks/{bundle-XSrDHwxE.js → bundle-q15q65dt.js} +1 -1
- package/cjs/chunks/bundle-q15q65dt.js.map +1 -0
- package/cjs/chunks/{bundle-oK2GZVsW.js → bundle-rGYP82Yc.js} +3 -3
- package/cjs/chunks/bundle-rGYP82Yc.js.map +1 -0
- package/cjs/chunks/{bundle-j2b4bxU3.js → bundle-rIjHxu2P.js} +2 -2
- package/cjs/chunks/bundle-rIjHxu2P.js.map +1 -0
- package/cjs/chunks/{bundle-aLKN26Lx.js → bundle-rY_4WHYR.js} +3 -3
- package/cjs/chunks/bundle-rY_4WHYR.js.map +1 -0
- package/cjs/chunks/{bundle-Ulv5XabQ.js → bundle-rm245WXS.js} +2 -2
- package/cjs/chunks/bundle-rm245WXS.js.map +1 -0
- package/cjs/chunks/{bundle-ZIC4K68f.js → bundle-sPQAW6hW.js} +1 -1
- package/cjs/chunks/bundle-sPQAW6hW.js.map +1 -0
- package/cjs/chunks/{bundle-apUHizVu.js → bundle-sSkyvCgN.js} +3 -3
- package/cjs/chunks/bundle-sSkyvCgN.js.map +1 -0
- package/cjs/chunks/{bundle-UAlBT2_3.js → bundle-uIj1z0m8.js} +7 -7
- package/cjs/chunks/bundle-uIj1z0m8.js.map +1 -0
- package/cjs/chunks/{bundle-rGIlrKQw.js → bundle-vtbEyMlh.js} +1 -1
- package/cjs/chunks/bundle-vtbEyMlh.js.map +1 -0
- package/cjs/chunks/{bundle-bc3_Ej1J.js → bundle-vzrDnUV2.js} +5 -5
- package/cjs/chunks/bundle-vzrDnUV2.js.map +1 -0
- package/cjs/chunks/{bundle-dibCo5Mv.js → bundle-xHh0P-Hz.js} +5 -5
- package/cjs/chunks/bundle-xHh0P-Hz.js.map +1 -0
- package/cjs/chunks/{bundle-eg639gtv.js → bundle-xTAz4Z91.js} +1 -1
- package/cjs/chunks/bundle-xTAz4Z91.js.map +1 -0
- package/cjs/chunks/{bundle-8sRp5L6V.js → bundle-yJYTZhFC.js} +1 -1
- package/cjs/chunks/bundle-yJYTZhFC.js.map +1 -0
- package/cjs/chunks/{bundle-JllM1Vt3.js → bundle-yzcXd9DQ.js} +10 -10
- package/cjs/chunks/bundle-yzcXd9DQ.js.map +1 -0
- package/cjs/chunks/{bundle-lVg2xbe0.js → bundle-zMBWGCQM.js} +2 -2
- package/cjs/chunks/bundle-zMBWGCQM.js.map +1 -0
- package/cjs/chunks/{bundle-6JAbouBn.js → bundle-zvM7ls7A.js} +1 -1
- package/cjs/chunks/bundle-zvM7ls7A.js.map +1 -0
- package/cjs/hooks/useModal.js +9 -9
- package/cjs/index.js +79 -79
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +3 -3
- package/cjs/ui/AccordionGroup.js +2 -2
- 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 +16 -16
- package/cjs/ui/FileMessageItemBody.js +8 -8
- 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 +10 -15
- package/cjs/ui/ImageRenderer.js.map +1 -1
- 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/MentionLabel.js +13 -13
- package/cjs/ui/MentionUserLabel.js +1 -1
- package/cjs/ui/MessageContent.js +34 -34
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -5
- package/cjs/ui/MessageInput/hooks/usePaste.js.map +1 -1
- package/cjs/ui/MessageInput.js +32 -68
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +10 -10
- package/cjs/ui/MessageItemReactionMenu.js +9 -9
- package/cjs/ui/MessageSearchFileItem.js +14 -14
- package/cjs/ui/MessageSearchItem.js +11 -11
- package/cjs/ui/MessageStatus.js +12 -12
- package/cjs/ui/MobileFeedbackMenu.js +9 -9
- package/cjs/ui/Modal.js +8 -8
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +16 -16
- 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/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +16 -16
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +13 -13
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +10 -10
- package/cjs/ui/Word.js +13 -13
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -3
- package/cjs/withSendbird.js +1 -1
- package/hooks/useModal.js +10 -10
- package/index.js +79 -79
- package/package.json +3 -3
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/hooks/useAsyncRequest.d.ts +17 -0
- package/types/modules/Channel/components/ChannelUI/index.d.ts +4 -0
- package/types/modules/Channel/components/MessageInputWrapper/index.d.ts +4 -3
- package/types/modules/Channel/components/MessageList/index.d.ts +8 -2
- package/types/modules/Channel/context/ChannelProvider.d.ts +7 -15
- package/types/modules/Channel/context/const.d.ts +1 -7
- package/types/modules/Channel/context/dux/actionTypes.d.ts +6 -7
- package/types/modules/ChannelSettings/components/ChannelSettingsUI/index.d.ts +2 -1
- package/types/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +5 -5
- package/types/modules/GroupChannel/components/GroupChannelUI/GroupChannelUIView.d.ts +42 -0
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +18 -1
- package/types/modules/GroupChannel/components/MessageInputWrapper/index.d.ts +5 -3
- package/types/modules/GroupChannel/components/MessageList/index.d.ts +26 -9
- package/types/ui/MessageInput/index.d.ts +1 -0
- package/types/ui/MessageInput/utils.d.ts +4 -0
- package/ui/Accordion.js +3 -3
- package/ui/AccordionGroup.js +2 -2
- 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 +16 -16
- package/ui/FileMessageItemBody.js +8 -8
- package/ui/FileViewer.js +15 -15
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +10 -15
- package/ui/ImageRenderer.js.map +1 -1
- 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/MentionLabel.js +13 -13
- package/ui/MentionUserLabel.js +1 -1
- package/ui/MessageContent.js +34 -34
- package/ui/MessageInput/hooks/usePaste.js +7 -5
- package/ui/MessageInput/hooks/usePaste.js.map +1 -1
- package/ui/MessageInput.js +32 -68
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +10 -10
- package/ui/MessageItemReactionMenu.js +9 -9
- package/ui/MessageSearchFileItem.js +14 -14
- package/ui/MessageSearchItem.js +11 -11
- package/ui/MessageStatus.js +12 -12
- package/ui/MobileFeedbackMenu.js +9 -9
- package/ui/Modal.js +8 -8
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +16 -16
- 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/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +16 -16
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +7 -7
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +13 -13
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +10 -10
- package/ui/Word.js +13 -13
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/withSendbird.js +1 -1
- package/chunks/bundle--bzcDcV7.js.map +0 -1
- package/chunks/bundle-1Wok5yjx.js.map +0 -1
- package/chunks/bundle-29ZwEQCB.js.map +0 -1
- package/chunks/bundle-42MD-_6f.js.map +0 -1
- package/chunks/bundle-5cA2H0cQ.js.map +0 -1
- package/chunks/bundle-5qVfPYXm.js.map +0 -1
- package/chunks/bundle-7-k9ar1S.js.map +0 -1
- package/chunks/bundle-7gmFtphc.js.map +0 -1
- package/chunks/bundle-B2cNVPIG.js.map +0 -1
- package/chunks/bundle-B3ETdLpu.js.map +0 -1
- package/chunks/bundle-CBZRgcMe.js.map +0 -1
- package/chunks/bundle-FMptIFTe.js.map +0 -1
- package/chunks/bundle-H1vLRvsQ.js.map +0 -1
- package/chunks/bundle-HIwSRGfa.js.map +0 -1
- package/chunks/bundle-IGjDRlEq.js.map +0 -1
- package/chunks/bundle-JVFq7QiY.js.map +0 -1
- package/chunks/bundle-MVZc-WX7.js.map +0 -1
- package/chunks/bundle-NRvvlX8r.js.map +0 -1
- package/chunks/bundle-OGLIDsv0.js.map +0 -1
- package/chunks/bundle-PXF29EwZ.js.map +0 -1
- package/chunks/bundle-PrPMpr0d.js.map +0 -1
- package/chunks/bundle-QDjzCG-h.js.map +0 -1
- package/chunks/bundle-R_8mFuwU.js.map +0 -1
- package/chunks/bundle-S3i59_HU.js.map +0 -1
- package/chunks/bundle-TWhlUSzV.js.map +0 -1
- package/chunks/bundle-ThaFnyA3.js.map +0 -1
- package/chunks/bundle-VTgol5b8.js.map +0 -1
- package/chunks/bundle-WJ0Rx9Vt.js.map +0 -1
- package/chunks/bundle-WJbfhl8B.js.map +0 -1
- package/chunks/bundle-WkSXViPf.js.map +0 -1
- package/chunks/bundle-YK6gNh-t.js.map +0 -1
- package/chunks/bundle-Yc91ktUe.js.map +0 -1
- package/chunks/bundle-YcH_HSha.js.map +0 -1
- package/chunks/bundle-ZrmeY8rp.js.map +0 -1
- package/chunks/bundle-aU9DrOs1.js.map +0 -1
- package/chunks/bundle-ammXYCNc.js.map +0 -1
- package/chunks/bundle-dPtRdKjv.js.map +0 -1
- package/chunks/bundle-e_hMfMVC.js.map +0 -1
- package/chunks/bundle-fIf1YwSi.js.map +0 -1
- package/chunks/bundle-fdlrWGps.js.map +0 -1
- package/chunks/bundle-hTd1NizA.js.map +0 -1
- package/chunks/bundle-hwjo__1w.js.map +0 -1
- package/chunks/bundle-iRd3nywJ.js.map +0 -1
- package/chunks/bundle-jIsbkecD.js.map +0 -1
- package/chunks/bundle-laqNvtHc.js.map +0 -1
- package/chunks/bundle-mXxUWu6C.js.map +0 -1
- package/chunks/bundle-mbVaGxy-.js.map +0 -1
- package/chunks/bundle-sPCqUzdP.js.map +0 -1
- package/chunks/bundle-yMF6_bQS.js.map +0 -1
- package/chunks/bundle-z995fH4M.js.map +0 -1
- package/chunks/bundle-zftI06HH.js.map +0 -1
- package/chunks/bundle-zr28rXX0.js.map +0 -1
- package/cjs/chunks/bundle-2QTmv8Qr.js.map +0 -1
- package/cjs/chunks/bundle-6D2HDCsi.js.map +0 -1
- package/cjs/chunks/bundle-6JAbouBn.js.map +0 -1
- package/cjs/chunks/bundle-6Ucv_cXK.js.map +0 -1
- package/cjs/chunks/bundle-7S9cQ7Sp.js.map +0 -1
- package/cjs/chunks/bundle-8gAAE7I3.js.map +0 -1
- package/cjs/chunks/bundle-8sRp5L6V.js.map +0 -1
- package/cjs/chunks/bundle-B3jNx9nI.js.map +0 -1
- package/cjs/chunks/bundle-D_9GebqZ.js.map +0 -1
- package/cjs/chunks/bundle-EmZI0-j-.js.map +0 -1
- package/cjs/chunks/bundle-G4olPx81.js.map +0 -1
- package/cjs/chunks/bundle-GYpm7RtY.js.map +0 -1
- package/cjs/chunks/bundle-HmF0Kwa_.js.map +0 -1
- package/cjs/chunks/bundle-JllM1Vt3.js.map +0 -1
- package/cjs/chunks/bundle-L3zb8Cu_.js.map +0 -1
- package/cjs/chunks/bundle-M_3VvtOr.js.map +0 -1
- package/cjs/chunks/bundle-O3DZBV2p.js.map +0 -1
- package/cjs/chunks/bundle-OLmZ2fUV.js.map +0 -1
- package/cjs/chunks/bundle-OayM7MBH.js.map +0 -1
- package/cjs/chunks/bundle-RHwdkbbz.js.map +0 -1
- package/cjs/chunks/bundle-THKiylQP.js.map +0 -1
- package/cjs/chunks/bundle-UAlBT2_3.js.map +0 -1
- package/cjs/chunks/bundle-Ulv5XabQ.js.map +0 -1
- package/cjs/chunks/bundle-WQOvDsOP.js.map +0 -1
- package/cjs/chunks/bundle-XSrDHwxE.js.map +0 -1
- package/cjs/chunks/bundle-XpwayjqP.js.map +0 -1
- package/cjs/chunks/bundle-Y6oHbdhN.js.map +0 -1
- package/cjs/chunks/bundle-Z9uYBAUt.js.map +0 -1
- package/cjs/chunks/bundle-ZIC4K68f.js.map +0 -1
- package/cjs/chunks/bundle-_N5y1qEg.js.map +0 -1
- package/cjs/chunks/bundle-aLKN26Lx.js.map +0 -1
- package/cjs/chunks/bundle-apUHizVu.js.map +0 -1
- package/cjs/chunks/bundle-bSoYSPA5.js.map +0 -1
- package/cjs/chunks/bundle-bc3_Ej1J.js.map +0 -1
- package/cjs/chunks/bundle-d1u7R12O.js.map +0 -1
- package/cjs/chunks/bundle-dibCo5Mv.js.map +0 -1
- package/cjs/chunks/bundle-eg639gtv.js.map +0 -1
- package/cjs/chunks/bundle-fE1EYcSx.js.map +0 -1
- package/cjs/chunks/bundle-fWvwYg6I.js.map +0 -1
- package/cjs/chunks/bundle-g3vASPp8.js.map +0 -1
- package/cjs/chunks/bundle-gKpM7okd.js.map +0 -1
- package/cjs/chunks/bundle-him8B6lQ.js.map +0 -1
- package/cjs/chunks/bundle-hyQekvQu.js.map +0 -1
- package/cjs/chunks/bundle-ivu3uDBu.js.map +0 -1
- package/cjs/chunks/bundle-j2b4bxU3.js.map +0 -1
- package/cjs/chunks/bundle-j5InjWst.js.map +0 -1
- package/cjs/chunks/bundle-jI4fSOuZ.js.map +0 -1
- package/cjs/chunks/bundle-l9rAnwws.js.map +0 -1
- package/cjs/chunks/bundle-lVg2xbe0.js.map +0 -1
- package/cjs/chunks/bundle-lZm_4ToV.js.map +0 -1
- package/cjs/chunks/bundle-lqO2HtRG.js.map +0 -1
- package/cjs/chunks/bundle-oK2GZVsW.js.map +0 -1
- package/cjs/chunks/bundle-pNPHZO_X.js.map +0 -1
- package/cjs/chunks/bundle-qlTSWGy9.js.map +0 -1
- package/cjs/chunks/bundle-rGIlrKQw.js.map +0 -1
- package/cjs/chunks/bundle-uQ09rpIX.js.map +0 -1
- package/cjs/chunks/bundle-v-P7N839.js.map +0 -1
- package/cjs/chunks/bundle-v6rdnF1q.js.map +0 -1
- package/cjs/chunks/bundle-w1sEa7O0.js.map +0 -1
- package/cjs/chunks/bundle-xn7dyz1d.js.map +0 -1
- package/cjs/chunks/bundle-y0sGF4RD.js.map +0 -1
- package/cjs/chunks/bundle-yyOx7Krk.js.map +0 -1
- package/cjs/chunks/bundle-yzN-MQRB.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-6ivjnK_C.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React__default, { useContext } from 'react';
|
|
2
|
-
import { M as Modal } from './bundle-
|
|
3
|
-
import './bundle-
|
|
4
|
-
import './bundle-
|
|
2
|
+
import { M as Modal } from './bundle-6hgn3L9Y.js';
|
|
3
|
+
import './bundle-yoFO4gJM.js';
|
|
4
|
+
import './bundle-52hs7-M-.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
6
|
+
import { L as LocalizationContext } from './bundle-_xgfKjN0.js';
|
|
7
7
|
import { useThreadContext } from '../Thread/context.js';
|
|
8
|
-
import { g as getModalDeleteMessageTitle } from './bundle
|
|
8
|
+
import { g as getModalDeleteMessageTitle } from './bundle--pOSeu9W.js';
|
|
9
9
|
|
|
10
10
|
var RemoveMessage = function (props) {
|
|
11
11
|
var _a;
|
|
@@ -21,4 +21,4 @@ var RemoveMessage = function (props) {
|
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export { RemoveMessage as R };
|
|
24
|
-
//# sourceMappingURL=bundle-
|
|
24
|
+
//# sourceMappingURL=bundle-6mWCjL2G.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-6mWCjL2G.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-9JkrMUIl.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as isFileMessage, c as isMultipleFilesMessage } from './bundle-
|
|
2
|
-
import { K } from './bundle-
|
|
1
|
+
import { b as isFileMessage, c as isMultipleFilesMessage } from './bundle-TYsOyvS5.js';
|
|
2
|
+
import { K } from './bundle-5fPKUbCn.js';
|
|
3
3
|
|
|
4
4
|
function getMessageFirstFileType(message) {
|
|
5
5
|
return K(message)
|
|
@@ -66,4 +66,4 @@ function getMessageFirstFileThumbnailUrl(message) {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export { getMessageFirstFileType as a, getMessageFirstFileName as b, getMessageFirstFileThumbnailUrl as c, getMessageFirstFileUrl as g };
|
|
69
|
-
//# sourceMappingURL=bundle-
|
|
69
|
+
//# sourceMappingURL=bundle-A8dpIXKJ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-A8dpIXKJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,21 +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-52hs7-M-.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-f1tjVRSh.js';
|
|
5
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-_xgfKjN0.js';
|
|
6
|
+
import { u as uuidv4 } from './bundle-wdUAfmoS.js';
|
|
7
7
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
8
|
-
import { M as
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
var MAX_USER_MENTION_COUNT = 10;
|
|
12
|
-
var MAX_USER_SUGGESTION_COUNT = 15;
|
|
13
|
-
var USER_MENTION_TEMP_CHAR = '@';
|
|
14
|
-
var ThreadReplySelectType;
|
|
15
|
-
(function (ThreadReplySelectType) {
|
|
16
|
-
ThreadReplySelectType["PARENT"] = "PARENT";
|
|
17
|
-
ThreadReplySelectType["THREAD"] = "THREAD";
|
|
18
|
-
})(ThreadReplySelectType || (ThreadReplySelectType = {}));
|
|
8
|
+
import { U as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-WImaBVSO.js';
|
|
9
|
+
import { M as MessageInputKeys } from './bundle-YpfSm9dM.js';
|
|
10
|
+
import { a as __awaiter, b as __generator } from './bundle-yoFO4gJM.js';
|
|
19
11
|
|
|
20
12
|
function SuggestedUserMentionItem(props) {
|
|
21
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;
|
|
@@ -175,5 +167,5 @@ var SuggestedMentionListView = function (props) {
|
|
|
175
167
|
React__default.createElement(Label, { className: "sendbird-mention-suggest-list__notice-item__text", type: LabelTypography.SUBTITLE_2, color: LabelColors.ONBACKGROUND_2 }, stringSet.MENTION_COUNT__OVER_LIMIT.replace('%d', String(maxMentionCount)))))));
|
|
176
168
|
};
|
|
177
169
|
|
|
178
|
-
export {
|
|
179
|
-
//# sourceMappingURL=bundle-
|
|
170
|
+
export { SuggestedMentionListView as S };
|
|
171
|
+
//# sourceMappingURL=bundle-BF1Rr3vo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BF1Rr3vo.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useRef, useLayoutEffect } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { i as isAboutSame } from './bundle-
|
|
2
|
+
import { S as SCROLL_BUFFER } from './bundle-S-mn30SU.js';
|
|
3
|
+
import { i as isAboutSame } from './bundle-pwwvkK5L.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-_o_iMme_.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-BGFDI87G.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BGFDI87G.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default, { useContext } from 'react';
|
|
2
|
-
import { M as Modal } from './bundle-
|
|
3
|
-
import './bundle-
|
|
4
|
-
import './bundle-
|
|
2
|
+
import { M as Modal } from './bundle-6hgn3L9Y.js';
|
|
3
|
+
import './bundle-yoFO4gJM.js';
|
|
4
|
+
import './bundle-52hs7-M-.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
7
|
-
import { g as getModalDeleteMessageTitle } from './bundle
|
|
6
|
+
import { L as LocalizationContext } from './bundle-_xgfKjN0.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle--pOSeu9W.js';
|
|
8
8
|
|
|
9
9
|
var RemoveMessageModalView = function (props) {
|
|
10
10
|
var _a;
|
|
@@ -25,4 +25,4 @@ var RemoveMessageModalView = function (props) {
|
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export { RemoveMessageModalView as R };
|
|
28
|
-
//# sourceMappingURL=bundle-
|
|
28
|
+
//# sourceMappingURL=bundle-BLt9vn5B.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-BLt9vn5B.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-52hs7-M-.js';
|
|
7
|
+
import { u as useLocalization } from './bundle-_xgfKjN0.js';
|
|
8
|
+
import { h as VOICE_RECORDER_CLICK_BUFFER_TIME, g as VOICE_RECORDER_DEFAULT_MIN } from './bundle-S-mn30SU.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-BTLUIJqA.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-BTLUIJqA.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
2
|
import DOMPurify from 'dompurify';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
3
|
+
import { a as NodeNames, N as NodeTypes } from './bundle-YpfSm9dM.js';
|
|
4
|
+
import { U as USER_MENTION_TEMP_CHAR } from './bundle-WImaBVSO.js';
|
|
5
|
+
import { c as __spreadArray } from './bundle-yoFO4gJM.js';
|
|
6
|
+
import { M as MENTION_USER_LABEL_CLASSNAME } from './bundle-9JkrMUIl.js';
|
|
7
|
+
import { T as TEXT_MESSAGE_BODY_CLASSNAME } from './bundle-014pCrux.js';
|
|
8
|
+
import { O as OG_MESSAGE_BODY_CLASSNAME } from './bundle-tPOBtJjA.js';
|
|
7
9
|
|
|
8
10
|
function renderToString(_a) {
|
|
9
11
|
var userId = _a.userId, nickname = _a.nickname;
|
|
@@ -37,6 +39,38 @@ var nodeListToArray = function (childNodes) {
|
|
|
37
39
|
function isChannelTypeSupportsMultipleFilesMessage(channel) {
|
|
38
40
|
var _a;
|
|
39
41
|
return channel && ((_a = channel.isGroupChannel) === null || _a === void 0 ? void 0 : _a.call(channel)) && !channel.isBroadcast && !channel.isSuper;
|
|
42
|
+
}
|
|
43
|
+
// Type guard: This function ensures that the node contains `innerText` and `dataset` properties
|
|
44
|
+
function isHTMLElement(node) {
|
|
45
|
+
return node.nodeType === NodeTypes.ElementNode;
|
|
46
|
+
}
|
|
47
|
+
// eslint-disable-next-line no-undef
|
|
48
|
+
function extractTextAndMentions(childNodes) {
|
|
49
|
+
var messageText = '';
|
|
50
|
+
var mentionTemplate = '';
|
|
51
|
+
childNodes.forEach(function (node) {
|
|
52
|
+
if (isHTMLElement(node) && node.nodeName === NodeNames.Span) {
|
|
53
|
+
var innerText = node.innerText, _a = node.dataset, dataset = _a === void 0 ? {} : _a;
|
|
54
|
+
var _b = dataset.userid, userid = _b === void 0 ? '' : _b;
|
|
55
|
+
messageText += innerText;
|
|
56
|
+
mentionTemplate += "".concat(USER_MENTION_TEMP_CHAR, "{").concat(userid, "}");
|
|
57
|
+
}
|
|
58
|
+
else if (isHTMLElement(node) && node.nodeName === NodeNames.Br) {
|
|
59
|
+
messageText += '\n';
|
|
60
|
+
mentionTemplate += '\n';
|
|
61
|
+
}
|
|
62
|
+
else if (isHTMLElement(node) && node.nodeName === NodeNames.Div) {
|
|
63
|
+
var _c = node.textContent, textContent = _c === void 0 ? '' : _c;
|
|
64
|
+
messageText += "\n".concat(textContent);
|
|
65
|
+
mentionTemplate += "\n".concat(textContent);
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
var _d = node.textContent, textContent = _d === void 0 ? '' : _d;
|
|
69
|
+
messageText += textContent;
|
|
70
|
+
mentionTemplate += textContent;
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
return { messageText: messageText, mentionTemplate: mentionTemplate };
|
|
40
74
|
}
|
|
41
75
|
|
|
42
76
|
function inserTemplateToDOM(templateList) {
|
|
@@ -207,5 +241,5 @@ function usePaste(_a) {
|
|
|
207
241
|
}, [ref, setIsInput, setHeight, channel, setMentionedUsers]);
|
|
208
242
|
}
|
|
209
243
|
|
|
210
|
-
export { isChannelTypeSupportsMultipleFilesMessage as i, nodeListToArray as n, renderToString as r, sanitizeString as s, usePaste as u };
|
|
211
|
-
//# sourceMappingURL=bundle-
|
|
244
|
+
export { extractTextAndMentions as e, isChannelTypeSupportsMultipleFilesMessage as i, nodeListToArray as n, renderToString as r, sanitizeString as s, usePaste as u };
|
|
245
|
+
//# sourceMappingURL=bundle-B_WSWypW.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-B_WSWypW.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DS8eBDjC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -34,4 +34,4 @@ var CreateChannelProvider = function (props) {
|
|
|
34
34
|
var useCreateChannelContext = function () { return (React__default.useContext(CreateChannelContext)); };
|
|
35
35
|
|
|
36
36
|
export { CreateChannelProvider as C, CHANNEL_TYPE as a, useCreateChannelContext as u };
|
|
37
|
-
//# sourceMappingURL=bundle-
|
|
37
|
+
//# sourceMappingURL=bundle-F_qWVzaf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-F_qWVzaf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default, { useContext, useState, useEffect, useRef, useCallback } from 'react';
|
|
3
3
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
4
4
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
6
|
import IconButton from '../ui/IconButton.js';
|
|
7
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
8
|
-
import { L as LocalizationContext } from './bundle-
|
|
9
|
-
import { a as UserProfileContext } from './bundle-
|
|
10
|
-
import './bundle-
|
|
11
|
-
import { A as Avatar } from './bundle-
|
|
7
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-52hs7-M-.js';
|
|
8
|
+
import { L as LocalizationContext } from './bundle-_xgfKjN0.js';
|
|
9
|
+
import { a as UserProfileContext } from './bundle-bazn-ENb.js';
|
|
10
|
+
import './bundle-ibeQnj0V.js';
|
|
11
|
+
import { A as Avatar } from './bundle-f1tjVRSh.js';
|
|
12
12
|
import 'react-dom';
|
|
13
|
-
import './bundle-
|
|
13
|
+
import './bundle-fMkcL8C8.js';
|
|
14
14
|
import MutedAvatarOverlay from '../ui/MutedAvatarOverlay.js';
|
|
15
15
|
import UserProfile from '../ui/UserProfile.js';
|
|
16
16
|
import { useOpenChannelSettingsContext } from '../OpenChannelSettings/context.js';
|
|
17
17
|
import '../withSendbird.js';
|
|
18
|
-
import { M as Modal } from './bundle-
|
|
18
|
+
import { M as Modal } from './bundle-6hgn3L9Y.js';
|
|
19
19
|
import UserListItem$1 from '../ui/UserListItem.js';
|
|
20
|
-
import { n as noop } from './bundle-
|
|
20
|
+
import { n as noop } from './bundle-TovLF3ih.js';
|
|
21
21
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
22
22
|
|
|
23
23
|
function ParticipantsModal(_a) {
|
|
@@ -232,4 +232,4 @@ function ParticipantList(_a) {
|
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
export { ParticipantList as P, UserListItem as U };
|
|
235
|
-
//# sourceMappingURL=bundle-
|
|
235
|
+
//# sourceMappingURL=bundle-GCno1s5H.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-GCno1s5H.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,7 +3,7 @@ import { GroupChannelListHeader } from '../GroupChannelList/components/GroupChan
|
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
4
|
import EditUserProfile from '../EditUserProfile.js';
|
|
5
5
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
6
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
6
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-BGFDI87G.js';
|
|
7
7
|
|
|
8
8
|
var GroupChannelListUIView = function (_a) {
|
|
9
9
|
var renderHeader = _a.renderHeader, renderPlaceHolderError = _a.renderPlaceHolderError, renderPlaceHolderLoading = _a.renderPlaceHolderLoading, renderPlaceHolderEmptyList = _a.renderPlaceHolderEmptyList, onChangeTheme = _a.onChangeTheme, onUserProfileUpdated = _a.onUserProfileUpdated, allowProfileEdit = _a.allowProfileEdit, channels = _a.channels, onLoadMore = _a.onLoadMore, initialized = _a.initialized, renderChannel = _a.renderChannel, renderAddChannel = _a.renderAddChannel;
|
|
@@ -64,4 +64,4 @@ var ChannelListComponent = function (props) {
|
|
|
64
64
|
};
|
|
65
65
|
|
|
66
66
|
export { GroupChannelListUIView as G };
|
|
67
|
-
//# sourceMappingURL=bundle-
|
|
67
|
+
//# sourceMappingURL=bundle-IFrmy9_C.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-IFrmy9_C.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
3
|
+
import { S as SuggestedMentionListView } from './bundle-BF1Rr3vo.js';
|
|
4
4
|
import { useThreadContext } from '../Thread/context.js';
|
|
5
5
|
|
|
6
6
|
var SuggestedMentionList = function (props) {
|
|
@@ -9,4 +9,4 @@ var SuggestedMentionList = function (props) {
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { SuggestedMentionList as S };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-IOegLdFC.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-IOegLdFC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-J6qXeThU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Jun66RyD.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import { K } from './bundle-
|
|
3
|
-
import { T as TOKEN_TYPES, U as USER_MENTION_PREFIX, g as getWhiteSpacePreservedText } from './bundle-
|
|
2
|
+
import { K } from './bundle-5fPKUbCn.js';
|
|
3
|
+
import { T as TOKEN_TYPES, U as USER_MENTION_PREFIX, g as getWhiteSpacePreservedText } from './bundle-W_nWubt-.js';
|
|
4
4
|
import { useMessageContext } from '../Message/context.js';
|
|
5
5
|
import MentionLabel from '../ui/MentionLabel.js';
|
|
6
6
|
import LinkLabel from '../ui/LinkLabel.js';
|
|
7
|
-
import { a as LabelTypography } from './bundle-
|
|
7
|
+
import { a as LabelTypography } from './bundle-52hs7-M-.js';
|
|
8
8
|
|
|
9
9
|
// this function is used to generate a unique key for token in message
|
|
10
10
|
// it changes with updated time and index
|
|
@@ -33,4 +33,4 @@ function TextFragment(_a) {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
export { TextFragment as T };
|
|
36
|
-
//# sourceMappingURL=bundle-
|
|
36
|
+
//# sourceMappingURL=bundle-LG3hn4TL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-LG3hn4TL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { a as __awaiter, b as __generator, c as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __awaiter, b as __generator, c as __spreadArray } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default, { useRef, useState, useEffect, useCallback } from 'react';
|
|
3
|
-
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-
|
|
3
|
+
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-a2TolYYj.js';
|
|
4
4
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
5
|
-
import { u as useLocalization } from './bundle-
|
|
5
|
+
import { u as useLocalization } from './bundle-_xgfKjN0.js';
|
|
6
6
|
import { SuggestedMentionList } from '../GroupChannel/components/SuggestedMentionList.js';
|
|
7
7
|
import { useDirtyGetMentions } from '../Message/hooks/useDirtyGetMentions.js';
|
|
8
8
|
import QuoteMessageInput from '../ui/QuoteMessageInput.js';
|
|
9
9
|
import { useVoicePlayer } from '../VoicePlayer/useVoicePlayer.js';
|
|
10
10
|
import { useVoiceRecorder, VoiceRecorderStatus } from '../VoiceRecorder/useVoiceRecorder.js';
|
|
11
|
-
import { V as VoiceMessageInputStatus, a as VoiceMessageInput } from './bundle-
|
|
12
|
-
import { M as Modal, c as ModalFooter } from './bundle-
|
|
11
|
+
import { V as VoiceMessageInputStatus, a as VoiceMessageInput } from './bundle-BTLUIJqA.js';
|
|
12
|
+
import { M as Modal, c as ModalFooter } from './bundle-6hgn3L9Y.js';
|
|
13
13
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
14
|
-
import { g as VOICE_RECORDER_DEFAULT_MIN } from './bundle-
|
|
15
|
-
import { V as VOICE_PLAYER_STATUS } from './bundle-
|
|
16
|
-
import { u as uuidv4 } from './bundle-
|
|
14
|
+
import { g as VOICE_RECORDER_DEFAULT_MIN } from './bundle-S-mn30SU.js';
|
|
15
|
+
import { V as VOICE_PLAYER_STATUS } from './bundle-wKSIzWUl.js';
|
|
16
|
+
import { u as uuidv4 } from './bundle-wdUAfmoS.js';
|
|
17
17
|
import MessageInput from '../ui/MessageInput.js';
|
|
18
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
19
|
-
import { M as MessageInputKeys } from './bundle-
|
|
20
|
-
import { k as isImage } from './bundle-
|
|
18
|
+
import { u as useMediaQueryContext } from './bundle-fMkcL8C8.js';
|
|
19
|
+
import { M as MessageInputKeys } from './bundle-YpfSm9dM.js';
|
|
20
|
+
import { k as isImage } from './bundle-TYsOyvS5.js';
|
|
21
21
|
import { useGlobalModalContext } from '../hooks/useModal.js';
|
|
22
|
-
import './bundle-
|
|
23
|
-
import { c as compressImages } from './bundle-
|
|
22
|
+
import './bundle-52hs7-M-.js';
|
|
23
|
+
import { c as compressImages } from './bundle-24By8B6B.js';
|
|
24
24
|
|
|
25
25
|
var VoiceMessageInputWrapper = function (_a) {
|
|
26
26
|
var _b;
|
|
@@ -163,7 +163,7 @@ var useHandleUploadFiles = function (_a, _b) {
|
|
|
163
163
|
logger.info("Channel|useHandleUploadFiles: Cannot upload files more than ".concat(uikitMultipleFilesMessageLimit));
|
|
164
164
|
openModal({
|
|
165
165
|
modalProps: {
|
|
166
|
-
titleText:
|
|
166
|
+
titleText: stringSet.FILE_UPLOAD_NOTIFICATION__COUNT_LIMIT.replace('%d', "".concat(uikitUploadSizeLimit)),
|
|
167
167
|
hideFooter: true,
|
|
168
168
|
},
|
|
169
169
|
childElement: function (_a) {
|
|
@@ -180,7 +180,7 @@ var useHandleUploadFiles = function (_a, _b) {
|
|
|
180
180
|
ONE_MiB = 1024 * 1024;
|
|
181
181
|
openModal({
|
|
182
182
|
modalProps: {
|
|
183
|
-
titleText:
|
|
183
|
+
titleText: stringSet.FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT.replace('%d', "".concat(Math.floor(uikitUploadSizeLimit / ONE_MiB))),
|
|
184
184
|
hideFooter: true,
|
|
185
185
|
},
|
|
186
186
|
childElement: function (_a) {
|
|
@@ -336,7 +336,7 @@ var MessageInputWrapperView = React__default.forwardRef(function (props, ref) {
|
|
|
336
336
|
setShowVoiceMessageInput(false);
|
|
337
337
|
}, onCancelClick: function () {
|
|
338
338
|
setShowVoiceMessageInput(false);
|
|
339
|
-
} })) : (React__default.createElement(MessageInput, { className: "sendbird-message-input-wrapper__message-input", channel: currentChannel, channelUrl: currentChannel === null || currentChannel === void 0 ? void 0 : currentChannel.url, acceptableMimeTypes: acceptableMimeTypes, mentionSelectedUser: selectedUser, isMentionEnabled: isMentionEnabled, isVoiceMessageEnabled: isVoiceMessageEnabled, isSelectingMultipleFilesEnabled: isMultipleFilesMessageEnabled, onVoiceMessageIconClick: function () {
|
|
339
|
+
} })) : (React__default.createElement(MessageInput, { className: "sendbird-message-input-wrapper__message-input", channel: currentChannel, channelUrl: currentChannel === null || currentChannel === void 0 ? void 0 : currentChannel.url, isMobile: isMobile, acceptableMimeTypes: acceptableMimeTypes, mentionSelectedUser: selectedUser, isMentionEnabled: isMentionEnabled, isVoiceMessageEnabled: isVoiceMessageEnabled, isSelectingMultipleFilesEnabled: isMultipleFilesMessageEnabled, onVoiceMessageIconClick: function () {
|
|
340
340
|
setShowVoiceMessageInput(true);
|
|
341
341
|
}, setMentionedUsers: setMentionedUsers, placeholder: (quoteMessage && stringSet.MESSAGE_INPUT__QUOTE_REPLY__PLACE_HOLDER)
|
|
342
342
|
|| ((disabled || isDisabledBecauseFrozen(currentChannel)) && stringSet.MESSAGE_INPUT__PLACE_HOLDER__DISABLED)
|
|
@@ -382,4 +382,4 @@ var MessageInputWrapperView = React__default.forwardRef(function (props, ref) {
|
|
|
382
382
|
});
|
|
383
383
|
|
|
384
384
|
export { MessageInputWrapperView as M, VoiceMessageInputWrapper as V };
|
|
385
|
-
//# sourceMappingURL=bundle-
|
|
385
|
+
//# sourceMappingURL=bundle-OAC6aJ8X.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-OAC6aJ8X.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-PrsPGxuw.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Q3UquQ_i.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -29,5 +29,5 @@ var SLIDER_BUTTON_ICON_SIDE_LENGTH = '32px';
|
|
|
29
29
|
// multiple files message file info count limit
|
|
30
30
|
var DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT = 10;
|
|
31
31
|
|
|
32
|
-
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, DELIVERY_RECEIPT as D, META_ARRAY_VOICE_DURATION_KEY as M, ONE_MiB as O,
|
|
33
|
-
//# sourceMappingURL=bundle-
|
|
32
|
+
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, DELIVERY_RECEIPT as D, META_ARRAY_VOICE_DURATION_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S, VOICE_RECORDER_AUDIO_BIT_RATE as V, VOICE_MESSAGE_FILE_NAME as a, VOICE_MESSAGE_MIME_TYPE as b, VOICE_RECORDER_AUDIO_SAMPLE_RATE as c, SCROLL_BOTTOM_DELAY_FOR_FETCH as d, SCROLL_BOTTOM_DELAY_FOR_SEND as e, VOICE_PLAYER_AUDIO_ID as f, VOICE_RECORDER_DEFAULT_MIN as g, VOICE_RECORDER_CLICK_BUFFER_TIME as h, VOICE_PLAYER_ROOT_ID as i, META_ARRAY_MESSAGE_TYPE_KEY as j, META_ARRAY_MESSAGE_TYPE_VALUE__VOICE as k, SLIDER_BUTTON_ICON_SIDE_LENGTH as l, DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT as m, VOICE_RECORDER_DEFAULT_MAX as n };
|
|
33
|
+
//# sourceMappingURL=bundle-S-mn30SU.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-S-mn30SU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-SMgyl32k.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-SXGL8fBv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as __assign, c as __spreadArray } from './bundle-
|
|
1
|
+
import { _ as __assign, c as __spreadArray } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import { GroupChannelListOrder } from '@sendbird/chat/groupChannel';
|
|
3
3
|
import { OutgoingMessageStates, getOutgoingMessageState } from '../utils/message/getOutgoingMessageState.js';
|
|
4
|
-
import { K } from './bundle-
|
|
4
|
+
import { K } from './bundle-5fPKUbCn.js';
|
|
5
5
|
|
|
6
6
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
|
|
7
7
|
var SUPPORTED_MIMES = {
|
|
@@ -668,4 +668,4 @@ var isSendableMessage = function (message) {
|
|
|
668
668
|
};
|
|
669
669
|
|
|
670
670
|
export { isGif as A, convertWordToStringObj as B, isAudio as C, isVoiceMessageMimeType as D, isSentStatus as E, arrayEqual as F, getMimeTypesUIKitAccepts as G, isImageMessage as H, isImageFileInfo as I, isAudioMessage as J, isOGMessage as K, isTextMessage as L, isThreadMessage as M, getEmojiUrl as N, isReactedBy as O, getEmojiTooltipString as P, getEmojiMapAll as Q, filterChannelListParams as R, StringObjType as S, getChannelsWithUpsertedChannel as T, UIKitMessageTypes as U, filterMessageListParams as V, isTextuallyNull as W, isReadMessage as a, isFileMessage as b, isMultipleFilesMessage as c, isEditedMessage as d, isSendableMessage as e, getSenderName as f, getSuggestedReplies as g, isSupportedFileView as h, isVoiceMessage as i, isVideo as j, isImage as k, isUserMessage as l, getUIKitMessageType as m, getUIKitMessageTypes as n, getUIKitFileType as o, isThumbnailMessage as p, isSentMessage as q, isVideoMessage as r, isGifMessage as s, truncateString as t, isFailedMessage as u, isPendingMessage as v, getClassName as w, copyToClipboard as x, getEmojiListAll as y, getUIKitFileTypes as z };
|
|
671
|
-
//# sourceMappingURL=bundle-
|
|
671
|
+
//# sourceMappingURL=bundle-TYsOyvS5.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-TYsOyvS5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|