@sendbird/uikit-react 3.12.0-rc.1 → 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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-TovLF3ih.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-TzTFcIfJ.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-is3QkoNv.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-U7_j21Ss.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-U7_j21Ss.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,7 +1,7 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
3
3
|
import { TypingIndicator } from '../GroupChannel/components/TypingIndicator.js';
|
|
4
|
-
import { T as TypingIndicatorType } from './bundle-
|
|
4
|
+
import { T as TypingIndicatorType } from './bundle-f9AOpkiS.js';
|
|
5
5
|
import ConnectionStatus from '../ui/ConnectionStatus.js';
|
|
6
6
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
7
7
|
|
|
@@ -40,4 +40,4 @@ var GroupChannelUIView = function (props) {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
export { GroupChannelUIView as G };
|
|
43
|
-
//# sourceMappingURL=bundle-
|
|
43
|
+
//# sourceMappingURL=bundle-UDnO8-Dp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-UDnO8-Dp.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-UxyhnVkY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-
|
|
1
|
+
import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default, { useEffect, useCallback, useReducer, useState, useMemo, useContext } from 'react';
|
|
3
3
|
import { GroupChannelHandler, GroupChannelListOrder } from '@sendbird/chat/groupChannel';
|
|
4
|
-
import { p as pubSubTopics } from './bundle
|
|
5
|
-
import { u as uuidv4 } from './bundle-
|
|
6
|
-
import { n as noop } from './bundle-
|
|
7
|
-
import { D as DELIVERY_RECEIPT$1 } from './bundle-
|
|
8
|
-
import { U as UserProfileProvider } from './bundle-
|
|
4
|
+
import { p as pubSubTopics } from './bundle--q7ObKwF.js';
|
|
5
|
+
import { u as uuidv4 } from './bundle-wdUAfmoS.js';
|
|
6
|
+
import { n as noop } from './bundle-TovLF3ih.js';
|
|
7
|
+
import { D as DELIVERY_RECEIPT$1 } from './bundle-S-mn30SU.js';
|
|
8
|
+
import { U as UserProfileProvider } from './bundle-bazn-ENb.js';
|
|
9
9
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
10
|
-
import { K, S } from './bundle-
|
|
11
|
-
import { R as filterChannelListParams, T as getChannelsWithUpsertedChannel } from './bundle-
|
|
12
|
-
import { u as useReconnectOnIdle } from './bundle-
|
|
10
|
+
import { K, S } from './bundle-5fPKUbCn.js';
|
|
11
|
+
import { R as filterChannelListParams, T as getChannelsWithUpsertedChannel } from './bundle-TYsOyvS5.js';
|
|
12
|
+
import { u as useReconnectOnIdle } from './bundle-cIHCEDKb.js';
|
|
13
13
|
|
|
14
14
|
var RESET_CHANNEL_LIST = 'RESET_CHANNEL_LIST';
|
|
15
15
|
var CREATE_CHANNEL = 'CREATE_CHANNEL';
|
|
@@ -943,4 +943,4 @@ function useChannelListContext() {
|
|
|
943
943
|
}
|
|
944
944
|
|
|
945
945
|
export { ChannelListProvider as C, LEAVE_CHANNEL_SUCCESS as L, SET_CURRENT_CHANNEL as S, useChannelListContext as u };
|
|
946
|
-
//# sourceMappingURL=bundle-
|
|
946
|
+
//# sourceMappingURL=bundle-VfTA9EY8.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-VfTA9EY8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
1
|
+
var MAX_USER_MENTION_COUNT = 10;
|
|
2
|
+
var MAX_USER_SUGGESTION_COUNT = 15;
|
|
3
3
|
var USER_MENTION_TEMP_CHAR = '@';
|
|
4
4
|
var ThreadReplySelectType;
|
|
5
5
|
(function (ThreadReplySelectType) {
|
|
@@ -7,5 +7,5 @@ var ThreadReplySelectType;
|
|
|
7
7
|
ThreadReplySelectType["THREAD"] = "THREAD";
|
|
8
8
|
})(ThreadReplySelectType || (ThreadReplySelectType = {}));
|
|
9
9
|
|
|
10
|
-
export {
|
|
11
|
-
//# sourceMappingURL=bundle-
|
|
10
|
+
export { MAX_USER_MENTION_COUNT as M, ThreadReplySelectType as T, USER_MENTION_TEMP_CHAR as U, MAX_USER_SUGGESTION_COUNT as a };
|
|
11
|
+
//# sourceMappingURL=bundle-WImaBVSO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-WImaBVSO.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-yoFO4gJM.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-W_nWubt-.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-W_nWubt-.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { c as VOICE_RECORDER_AUDIO_SAMPLE_RATE } from './bundle-S-mn30SU.js';
|
|
2
2
|
import { WavHeader as ut, Mp3Encoder as ht } from '../lame.all.js';
|
|
3
3
|
|
|
4
4
|
// Thanks to https://codesandbox.io/s/media-recorder-api-downsampling-16k-mp3-encode-using-lame-js-forked-n1pblw
|
|
@@ -122,4 +122,4 @@ function bufferToWav(abuffer, len) {
|
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
export { downsampleToWav, encodeMp3 };
|
|
125
|
-
//# sourceMappingURL=bundle-
|
|
125
|
+
//# sourceMappingURL=bundle-XEjzWAwL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-XEjzWAwL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -4,16 +4,16 @@ import IconButton from '../ui/IconButton.js';
|
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
5
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
6
6
|
import UserListItem$1 from '../ChannelSettings/components/UserListItem.js';
|
|
7
|
-
import { c as __spreadArray, _ as __assign, a as __awaiter, b as __generator, d as __rest } from './bundle-
|
|
8
|
-
import { M as Modal } from './bundle-
|
|
7
|
+
import { c as __spreadArray, _ as __assign, a as __awaiter, b as __generator, d as __rest } from './bundle-yoFO4gJM.js';
|
|
8
|
+
import { M as Modal } from './bundle-6hgn3L9Y.js';
|
|
9
9
|
import UserListItem from '../ui/UserListItem.js';
|
|
10
|
-
import { n as noop } from './bundle-
|
|
10
|
+
import { n as noop } from './bundle-TovLF3ih.js';
|
|
11
11
|
import { useChannelSettingsContext } from '../ChannelSettings/context.js';
|
|
12
12
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
13
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
14
|
-
import './bundle-
|
|
15
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
16
|
-
import { u as uuidv4 } from './bundle-
|
|
13
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-_xgfKjN0.js';
|
|
14
|
+
import './bundle-52hs7-M-.js';
|
|
15
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-BGFDI87G.js';
|
|
16
|
+
import { u as uuidv4 } from './bundle-wdUAfmoS.js';
|
|
17
17
|
|
|
18
18
|
function MembersModal(_a) {
|
|
19
19
|
var _b;
|
|
@@ -311,4 +311,4 @@ var MemberList = function () {
|
|
|
311
311
|
};
|
|
312
312
|
|
|
313
313
|
export { MemberList as M };
|
|
314
|
-
//# sourceMappingURL=bundle-
|
|
314
|
+
//# sourceMappingURL=bundle-Y-ZHrlZJ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Y-ZHrlZJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-YpfSm9dM.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -54,4 +54,4 @@ var channelActions = /*#__PURE__*/Object.freeze({
|
|
|
54
54
|
});
|
|
55
55
|
|
|
56
56
|
export { FETCH_INITIAL_MESSAGES_START as F, MESSAGE_LIST_PARAMS_CHANGED as M, ON_MESSAGE_RECEIVED as O, RESET_MESSAGES as R, SEND_MESSAGE_START as S, FETCH_INITIAL_MESSAGES_SUCCESS as a, FETCH_INITIAL_MESSAGES_FAILURE as b, FETCH_PREV_MESSAGES_SUCCESS as c, FETCH_NEXT_MESSAGES_SUCCESS as d, FETCH_PREV_MESSAGES_FAILURE as e, FETCH_NEXT_MESSAGES_FAILURE as f, SEND_MESSAGE_SUCCESS as g, SEND_MESSAGE_FAILURE as h, SET_CURRENT_CHANNEL as i, SET_CHANNEL_INVALID as j, ON_MESSAGE_UPDATED as k, ON_MESSAGE_THREAD_INFO_UPDATED as l, RESEND_MESSAGE_START as m, MARK_AS_READ as n, ON_MESSAGE_DELETED as o, ON_MESSAGE_DELETED_BY_REQ_ID as p, SET_EMOJI_CONTAINER as q, ON_REACTION_UPDATED as r, ON_FILE_INFO_UPLOADED as s, ON_TYPING_STATUS_UPDATED as t, channelActions as u };
|
|
57
|
-
//# sourceMappingURL=bundle-
|
|
57
|
+
//# sourceMappingURL=bundle-ZlvXkXrU.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-ZlvXkXrU.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-_o_iMme_.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
-
import { d as defaultLocale } from './bundle-
|
|
2
|
+
import { g as getStringSet } from './bundle-yPhMS1LV.js';
|
|
3
|
+
import { d as defaultLocale } from './bundle-wO0wz3br.js';
|
|
4
4
|
|
|
5
5
|
var LocalizationContext = React__default.createContext({
|
|
6
6
|
stringSet: getStringSet('en'),
|
|
@@ -13,4 +13,4 @@ var LocalizationProvider = function (props) {
|
|
|
13
13
|
var useLocalization = function () { return React__default.useContext(LocalizationContext); };
|
|
14
14
|
|
|
15
15
|
export { LocalizationContext as L, LocalizationProvider as a, useLocalization as u };
|
|
16
|
-
//# sourceMappingURL=bundle-
|
|
16
|
+
//# sourceMappingURL=bundle-_xgfKjN0.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-_xgfKjN0.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-a2TolYYj.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-a2TolYYj.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-bazn-ENb.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-cIHCEDKb.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default, { useRef, useContext } from 'react';
|
|
3
3
|
import { createPortal } from 'react-dom';
|
|
4
|
-
import { L as LocalizationContext } from './bundle-
|
|
4
|
+
import { L as LocalizationContext } from './bundle-_xgfKjN0.js';
|
|
5
5
|
import '../hooks/useModal.js';
|
|
6
|
-
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-
|
|
7
|
-
import { n as noop } from './bundle-
|
|
8
|
-
import { A as Avatar } from './bundle-
|
|
9
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { c as isMultipleFilesMessage, b as isFileMessage, h as isSupportedFileView, j as isVideo$1, k as isImage$1 } from './bundle-TYsOyvS5.js';
|
|
7
|
+
import { n as noop } from './bundle-TovLF3ih.js';
|
|
8
|
+
import { A as Avatar } from './bundle-f1tjVRSh.js';
|
|
9
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-52hs7-M-.js';
|
|
10
10
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
11
|
-
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-
|
|
12
|
-
import { u as useKeyDown } from './bundle-
|
|
13
|
-
import { a as MODAL_ROOT } from './bundle-
|
|
11
|
+
import { l as SLIDER_BUTTON_ICON_SIDE_LENGTH } from './bundle-S-mn30SU.js';
|
|
12
|
+
import { u as useKeyDown } from './bundle-SXGL8fBv.js';
|
|
13
|
+
import { a as MODAL_ROOT } from './bundle-6hgn3L9Y.js';
|
|
14
14
|
|
|
15
15
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
|
|
16
16
|
var SUPPORTED_MIMES = {
|
|
@@ -144,4 +144,4 @@ function FileViewer(_a) {
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
export { FileViewer as F, isVideo as a, FileViewerComponent as b, isImage as i };
|
|
147
|
-
//# sourceMappingURL=bundle-
|
|
147
|
+
//# sourceMappingURL=bundle-cJYfaBvk.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-cJYfaBvk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-e1b64xud.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-yoFO4gJM.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
4
|
-
import { p as pxToNumber } from './bundle-
|
|
4
|
+
import { p as pxToNumber } from './bundle-Jun66RyD.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
6
|
|
|
7
7
|
var AvatarDefault = function (props) {
|
|
@@ -66,4 +66,4 @@ function Avatar(_a, ref) {
|
|
|
66
66
|
var Avatar$1 = React__default.forwardRef(Avatar);
|
|
67
67
|
|
|
68
68
|
export { Avatar$1 as A, AvatarDefault as a, AvatarInner as b };
|
|
69
|
-
//# sourceMappingURL=bundle-
|
|
69
|
+
//# sourceMappingURL=bundle-f1tjVRSh.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-f1tjVRSh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-f9AOpkiS.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-fMkcL8C8.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-fMkcL8C8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { createPortal } from 'react-dom';
|
|
3
|
-
import { A as Avatar } from './bundle-
|
|
3
|
+
import { A as Avatar } from './bundle-f1tjVRSh.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-52hs7-M-.js';
|
|
6
|
+
import { h as isSupportedFileView, j as isVideo, k as isImage } from './bundle-TYsOyvS5.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-6hgn3L9Y.js';
|
|
10
10
|
|
|
11
11
|
var FileViewerView = function (_a) {
|
|
12
12
|
var message = _a.message, onCancel = _a.onCancel, deleteMessage = _a.deleteMessage;
|
|
@@ -51,4 +51,4 @@ var FileViewerComponent = function (_a) {
|
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
export { FileViewerView as F };
|
|
54
|
-
//# sourceMappingURL=bundle-
|
|
54
|
+
//# sourceMappingURL=bundle-gSFYF-34.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-gSFYF-34.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import { n as noop } from './bundle-
|
|
2
|
+
import { n as noop } from './bundle-TovLF3ih.js';
|
|
3
3
|
|
|
4
4
|
var Context = React__default.createContext({
|
|
5
5
|
opened: '',
|
|
@@ -9,4 +9,4 @@ var Consumer = Context.Consumer;
|
|
|
9
9
|
var Provider = Context.Provider;
|
|
10
10
|
|
|
11
11
|
export { Consumer as C, Provider as P };
|
|
12
|
-
//# sourceMappingURL=bundle-
|
|
12
|
+
//# sourceMappingURL=bundle-ibeQnj0V.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-ibeQnj0V.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as defaultLocale } from './bundle-
|
|
1
|
+
import { d as defaultLocale } from './bundle-wO0wz3br.js';
|
|
2
2
|
|
|
3
3
|
function _typeof(o) {
|
|
4
4
|
"@babel/helpers - typeof";
|
|
@@ -1711,4 +1711,4 @@ function cleanEscapedString(input) {
|
|
|
1711
1711
|
}
|
|
1712
1712
|
|
|
1713
1713
|
export { toInteger as a, format as f, requiredArgs as r, toDate as t };
|
|
1714
|
-
//# sourceMappingURL=bundle-
|
|
1714
|
+
//# sourceMappingURL=bundle-is3QkoNv.js.map
|