@sendbird/uikit-react 3.14.8 → 3.14.9
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 -73
- package/App.js.map +1 -1
- package/CHANGELOG.md +9 -0
- package/Channel/components/ChannelHeader.js +31 -29
- package/Channel/components/ChannelHeader.js.map +1 -1
- package/Channel/components/ChannelUI.js +64 -62
- package/Channel/components/ChannelUI.js.map +1 -1
- package/Channel/components/FileViewer.js +31 -29
- package/Channel/components/FileViewer.js.map +1 -1
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +54 -52
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +43 -41
- package/Channel/components/MessageInput.js.map +1 -1
- package/Channel/components/MessageInputWrapper.js +43 -41
- package/Channel/components/MessageInputWrapper.js.map +1 -1
- package/Channel/components/MessageList.js +57 -55
- package/Channel/components/MessageList.js.map +1 -1
- package/Channel/components/RemoveMessageModal.js +30 -28
- package/Channel/components/RemoveMessageModal.js.map +1 -1
- package/Channel/components/SuggestedMentionList.js +28 -26
- package/Channel/components/SuggestedMentionList.js.map +1 -1
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +8 -7
- package/Channel/components/UnreadCount.js.map +1 -1
- package/Channel/context.js +20 -18
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useHandleUploadFiles.js +17 -15
- package/Channel/hooks/useHandleUploadFiles.js.map +1 -1
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +6 -4
- package/Channel/utils/compareMessagesForGrouping.js.map +1 -1
- package/Channel/utils/getMessagePartsInfo.js +7 -5
- package/Channel/utils/getMessagePartsInfo.js.map +1 -1
- package/Channel.js +64 -62
- package/Channel.js.map +1 -1
- package/ChannelList/components/AddChannel.js +23 -21
- package/ChannelList/components/AddChannel.js.map +1 -1
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +37 -35
- package/ChannelList/components/ChannelListUI.js.map +1 -1
- package/ChannelList/components/ChannelPreview.js +30 -28
- package/ChannelList/components/ChannelPreview.js.map +1 -1
- package/ChannelList/components/ChannelPreviewAction.js +15 -13
- package/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/ChannelList/context.js +11 -9
- package/ChannelList/context.js.map +1 -1
- package/ChannelList.js +37 -35
- package/ChannelList.js.map +1 -1
- package/ChannelSettings/components/ChannelProfile.js +20 -18
- package/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsUI.js +25 -23
- package/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/ChannelSettings/components/EditDetailsModal.js +20 -18
- package/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/ChannelSettings/components/LeaveChannel.js +17 -15
- package/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/ChannelSettings/components/ModerationPanel.js +23 -21
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +15 -13
- package/ChannelSettings/components/UserListItem.js.map +1 -1
- package/ChannelSettings/components/UserPanel.js +23 -21
- package/ChannelSettings/components/UserPanel.js.map +1 -1
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +25 -23
- package/ChannelSettings.js.map +1 -1
- package/CreateChannel/components/CreateChannelUI.js +20 -18
- package/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/CreateChannel/components/InviteUsers.js +20 -18
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +17 -15
- package/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +20 -18
- package/CreateChannel.js.map +1 -1
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -16
- package/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +18 -16
- package/CreateOpenChannel.js.map +1 -1
- package/EditUserProfile/components/EditUserProfileUI.js +19 -17
- package/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +19 -17
- package/EditUserProfile.js.map +1 -1
- package/GroupChannel/components/FileViewer.js +25 -23
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +6 -6
- package/GroupChannel/components/GroupChannelHeader.js +21 -21
- package/GroupChannel/components/GroupChannelUI.js +57 -55
- package/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/GroupChannel/components/Message.js +49 -47
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +38 -36
- package/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/GroupChannel/components/MessageList.js +50 -48
- package/GroupChannel/components/MessageList.js.map +1 -1
- package/GroupChannel/components/RemoveMessageModal.js +24 -22
- package/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +8 -7
- package/GroupChannel/components/UnreadCount.js.map +1 -1
- package/GroupChannel/context.js +9 -9
- package/GroupChannel.js +57 -55
- package/GroupChannel.js.map +1 -1
- package/GroupChannelList/components/AddGroupChannel.js +22 -20
- package/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/GroupChannelList/components/GroupChannelListItem.js +28 -26
- package/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListUI.js +36 -34
- package/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/GroupChannelList/components/GroupChannelPreviewAction.js +15 -13
- package/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +36 -34
- package/GroupChannelList.js.map +1 -1
- package/MessageSearch/components/MessageSearchUI.js +15 -13
- package/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +17 -15
- package/MessageSearch.js.map +1 -1
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +22 -20
- package/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/OpenChannel/components/OpenChannelInput.js +28 -26
- package/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessage.js +37 -35
- package/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessageList.js +41 -39
- package/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/OpenChannel/components/OpenChannelUI.js +41 -39
- package/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/OpenChannel/context.js +21 -19
- package/OpenChannel/context.js.map +1 -1
- package/OpenChannel.js +41 -39
- package/OpenChannel.js.map +1 -1
- package/OpenChannelList/components/OpenChannelListUI.js +20 -18
- package/OpenChannelList/components/OpenChannelListUI.js.map +1 -1
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +20 -18
- package/OpenChannelList.js.map +1 -1
- package/OpenChannelSettings/components/EditDetailsModal.js +21 -19
- package/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelProfile.js +21 -19
- package/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -20
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/OpenChannelSettings/components/OperatorUI.js +22 -20
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +20 -18
- package/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +22 -20
- package/OpenChannelSettings.js.map +1 -1
- package/SendbirdProvider.js +20 -18
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +44 -42
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +30 -28
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +48 -46
- package/Thread/components/ThreadList.js.map +1 -1
- package/Thread/components/ThreadListItem.js +48 -46
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +43 -41
- package/Thread/components/ThreadMessageInput.js.map +1 -1
- package/Thread/components/ThreadUI.js +55 -53
- package/Thread/components/ThreadUI.js.map +1 -1
- package/Thread/context.js +9 -9
- package/Thread.js +55 -53
- package/Thread.js.map +1 -1
- package/VoicePlayer/context.js +4 -3
- package/VoicePlayer/context.js.map +1 -1
- package/VoicePlayer/useVoicePlayer.js +18 -21
- package/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/VoiceRecorder/context.js +15 -13
- package/VoiceRecorder/context.js.map +1 -1
- package/VoiceRecorder/useVoiceRecorder.js +15 -13
- package/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/chunks/{bundle-BisngXq5.js → bundle-0CUx7mAi.js} +2 -2
- package/chunks/{bundle-BisngXq5.js.map → bundle-0CUx7mAi.js.map} +1 -1
- package/chunks/{bundle-B94FhrB0.js → bundle-0_H9lvpf.js} +1 -1
- package/chunks/bundle-0_H9lvpf.js.map +1 -0
- package/chunks/{bundle-RAnyuNhc.js → bundle-38h6y3Hb.js} +1 -1
- package/chunks/bundle-38h6y3Hb.js.map +1 -0
- package/chunks/{bundle-CpOZ-vVg.js → bundle-9PpKWOoL.js} +1 -1
- package/chunks/bundle-9PpKWOoL.js.map +1 -0
- package/chunks/{bundle-qV7-WZhl.js → bundle-B5sad6LQ.js} +2 -2
- package/chunks/bundle-B5sad6LQ.js.map +1 -0
- package/chunks/{bundle-n6neEdcR.js → bundle-BBpoyOJS.js} +1 -1
- package/chunks/bundle-BBpoyOJS.js.map +1 -0
- package/chunks/{bundle-CvFy-it8.js → bundle-BCDYwF2y.js} +2 -2
- package/chunks/bundle-BCDYwF2y.js.map +1 -0
- package/chunks/{bundle-b-FYiCDP.js → bundle-BFCOE4_P.js} +12 -12
- package/chunks/bundle-BFCOE4_P.js.map +1 -0
- package/chunks/{bundle-CfzNjGmr.js → bundle-BHKxRZez.js} +1 -1
- package/chunks/bundle-BHKxRZez.js.map +1 -0
- package/chunks/{bundle-B6t-OOt8.js → bundle-BIlm8Es9.js} +5 -5
- package/chunks/{bundle-B6t-OOt8.js.map → bundle-BIlm8Es9.js.map} +1 -1
- package/chunks/{bundle-CTSVqXR9.js → bundle-BOBvShj7.js} +1 -1
- package/chunks/bundle-BOBvShj7.js.map +1 -0
- package/chunks/{bundle-CtkBrjUj.js → bundle-BW1heH8r.js} +6 -6
- package/chunks/bundle-BW1heH8r.js.map +1 -0
- package/chunks/{bundle-DaSr9tmm.js → bundle-BYCZrlDX.js} +8 -8
- package/chunks/bundle-BYCZrlDX.js.map +1 -0
- package/chunks/{bundle-HTnw7-82.js → bundle-BZaNthXQ.js} +2 -2
- package/chunks/bundle-BZaNthXQ.js.map +1 -0
- package/chunks/{bundle-CXtVIcwh.js → bundle-B_7ai8FD.js} +1 -1
- package/chunks/{bundle-CXtVIcwh.js.map → bundle-B_7ai8FD.js.map} +1 -1
- package/chunks/{bundle-AnT7R0wX.js → bundle-Bb9hzsLY.js} +1 -1
- package/chunks/bundle-Bb9hzsLY.js.map +1 -0
- package/chunks/{bundle-DcWxk5a4.js → bundle-Bmg_SNU1.js} +1 -1
- package/chunks/bundle-Bmg_SNU1.js.map +1 -0
- package/chunks/{bundle-CYpEvsrY.js → bundle-BqZPj8WV.js} +2 -2
- package/chunks/{bundle-CYpEvsrY.js.map → bundle-BqZPj8WV.js.map} +1 -1
- package/chunks/{bundle-BZK5E1_7.js → bundle-Bu71sAcm.js} +4 -4
- package/chunks/bundle-Bu71sAcm.js.map +1 -0
- package/chunks/{bundle-DDIr59rJ.js → bundle-BukeovFR.js} +1 -1
- package/chunks/bundle-BukeovFR.js.map +1 -0
- package/chunks/{bundle-BhFWIfjd.js → bundle-C0Ye9Nr7.js} +1 -1
- package/chunks/bundle-C0Ye9Nr7.js.map +1 -0
- package/chunks/{bundle-C_6q1g_y.js → bundle-C3Su8pbw.js} +3 -3
- package/chunks/{bundle-C_6q1g_y.js.map → bundle-C3Su8pbw.js.map} +1 -1
- package/chunks/{bundle-BUe--_Mc.js → bundle-C6Uejzft.js} +1 -1
- package/chunks/bundle-C6Uejzft.js.map +1 -0
- package/chunks/{bundle-ob8tFv61.js → bundle-C6yJQcQ5.js} +4 -4
- package/chunks/bundle-C6yJQcQ5.js.map +1 -0
- package/chunks/{bundle-9u0MWDuF.js → bundle-C83jcIQ3.js} +1 -1
- package/chunks/bundle-C83jcIQ3.js.map +1 -0
- package/chunks/{bundle-DqJw5Zs6.js → bundle-CGpUZMGo.js} +1 -1
- package/chunks/bundle-CGpUZMGo.js.map +1 -0
- package/chunks/{bundle-Cdo_FpIC.js → bundle-CHbs8B1_.js} +1 -1
- package/chunks/bundle-CHbs8B1_.js.map +1 -0
- package/chunks/{bundle-C3fQOaL6.js → bundle-CMr-IO14.js} +1 -1
- package/chunks/bundle-CMr-IO14.js.map +1 -0
- package/chunks/{bundle-DqnsVA96.js → bundle-CQIK0GTo.js} +7 -7
- package/chunks/{bundle-DqnsVA96.js.map → bundle-CQIK0GTo.js.map} +1 -1
- package/chunks/{bundle-Bt9wsU0z.js → bundle-CRRsbsT6.js} +1 -1
- package/chunks/bundle-CRRsbsT6.js.map +1 -0
- package/chunks/{bundle-ZA_TsLfg.js → bundle-CRs0ZyYd.js} +1 -1
- package/chunks/bundle-CRs0ZyYd.js.map +1 -0
- package/chunks/{bundle-DFdCvUbu.js → bundle-CSFmhfxF.js} +5 -5
- package/chunks/{bundle-DFdCvUbu.js.map → bundle-CSFmhfxF.js.map} +1 -1
- package/chunks/{bundle-D0zv6X_2.js → bundle-CT69B1kW.js} +2 -2
- package/chunks/{bundle-D0zv6X_2.js.map → bundle-CT69B1kW.js.map} +1 -1
- package/chunks/{bundle-Bg4q4411.js → bundle-CWX597tJ.js} +6 -6
- package/chunks/bundle-CWX597tJ.js.map +1 -0
- package/chunks/{bundle-ByyxrO7x.js → bundle-CXIUF-j1.js} +1 -1
- package/chunks/bundle-CXIUF-j1.js.map +1 -0
- package/chunks/{bundle-_bdwbH50.js → bundle-ChgFZ-AQ.js} +2 -2
- package/chunks/{bundle-_bdwbH50.js.map → bundle-ChgFZ-AQ.js.map} +1 -1
- package/chunks/{bundle-D4Flp5xY.js → bundle-ChoBoUg2.js} +3 -3
- package/chunks/bundle-ChoBoUg2.js.map +1 -0
- package/chunks/{bundle-C5Az2zLC.js → bundle-Cll6FpAY.js} +5 -5
- package/chunks/{bundle-C5Az2zLC.js.map → bundle-Cll6FpAY.js.map} +1 -1
- package/chunks/{bundle-BTVhOcac.js → bundle-Cm5lAbEo.js} +14 -9
- package/chunks/{bundle-BTVhOcac.js.map → bundle-Cm5lAbEo.js.map} +1 -1
- package/chunks/{bundle-021cIMZ5.js → bundle-CvQV9eyL.js} +4 -2
- package/chunks/bundle-CvQV9eyL.js.map +1 -0
- package/chunks/{bundle-BzlpyibM.js → bundle-Cyu8Xfnh.js} +1 -1
- package/chunks/bundle-Cyu8Xfnh.js.map +1 -0
- package/chunks/{bundle-zMGvQ27I.js → bundle-Cz8H5Op_.js} +13 -13
- package/chunks/{bundle-zMGvQ27I.js.map → bundle-Cz8H5Op_.js.map} +1 -1
- package/chunks/bundle-D1RWUo4o.js +10 -0
- package/chunks/bundle-D1RWUo4o.js.map +1 -0
- package/chunks/{bundle-C0MBb9OS.js → bundle-D2GBxmuh.js} +8 -8
- package/chunks/{bundle-C0MBb9OS.js.map → bundle-D2GBxmuh.js.map} +1 -1
- package/chunks/{bundle-B1bvprAz.js → bundle-D6eHgF5n.js} +3 -3
- package/chunks/{bundle-B1bvprAz.js.map → bundle-D6eHgF5n.js.map} +1 -1
- package/chunks/{bundle-BnRw6uxd.js → bundle-D8uYbr-P.js} +1 -1
- package/chunks/bundle-D8uYbr-P.js.map +1 -0
- package/chunks/{bundle-mwGwE0m9.js → bundle-D9jGjVt-.js} +4 -4
- package/chunks/{bundle-mwGwE0m9.js.map → bundle-D9jGjVt-.js.map} +1 -1
- package/chunks/{bundle-DlFdSxvC.js → bundle-DAhJtn85.js} +1 -1
- package/chunks/bundle-DAhJtn85.js.map +1 -0
- package/chunks/{bundle-BfC8BXO3.js → bundle-DAlnp9lF.js} +4 -4
- package/chunks/bundle-DAlnp9lF.js.map +1 -0
- package/chunks/bundle-DFeu3PLu.js +69 -0
- package/chunks/bundle-DFeu3PLu.js.map +1 -0
- package/chunks/{bundle-Dx5z32-k.js → bundle-DJs88q7W.js} +1 -1
- package/chunks/{bundle-Dx5z32-k.js.map → bundle-DJs88q7W.js.map} +1 -1
- package/chunks/{bundle-z43HPJVe.js → bundle-DLuyvuQm.js} +9 -9
- package/chunks/{bundle-z43HPJVe.js.map → bundle-DLuyvuQm.js.map} +1 -1
- package/chunks/{bundle-Bk-LSlXK.js → bundle-DMqUFkSM.js} +10 -10
- package/chunks/bundle-DMqUFkSM.js.map +1 -0
- package/chunks/{bundle-Bo3mnVmp.js → bundle-DNSTH1vf.js} +6 -6
- package/chunks/bundle-DNSTH1vf.js.map +1 -0
- package/chunks/{bundle-CLQwCMbo.js → bundle-DQovOEGD.js} +4 -4
- package/chunks/bundle-DQovOEGD.js.map +1 -0
- package/chunks/{bundle-DgsBptfe.js → bundle-DayugpLd.js} +2 -2
- package/chunks/bundle-DayugpLd.js.map +1 -0
- package/chunks/{bundle-D70fpWll.js → bundle-DeixUZhs.js} +36 -7
- package/chunks/bundle-DeixUZhs.js.map +1 -0
- package/chunks/{bundle-CczCegSK.js → bundle-DpUmO1Mq.js} +1 -1
- package/chunks/bundle-DpUmO1Mq.js.map +1 -0
- package/chunks/{bundle-WU0noqy6.js → bundle-DpacE0FD.js} +11 -11
- package/chunks/{bundle-WU0noqy6.js.map → bundle-DpacE0FD.js.map} +1 -1
- package/chunks/{bundle-DTUNr1BU.js → bundle-DuJ-B-ZT.js} +1 -1
- package/chunks/bundle-DuJ-B-ZT.js.map +1 -0
- package/chunks/{bundle-Lg46FDnz.js → bundle-DvK0GCH4.js} +79 -10
- package/chunks/bundle-DvK0GCH4.js.map +1 -0
- package/chunks/{bundle-pZ4uNXwu.js → bundle-DwMfxOmy.js} +1 -1
- package/chunks/bundle-DwMfxOmy.js.map +1 -0
- package/chunks/{bundle-BBiGfbDR.js → bundle-HheIudro.js} +11 -11
- package/chunks/{bundle-BBiGfbDR.js.map → bundle-HheIudro.js.map} +1 -1
- package/chunks/{bundle-CYb-R0dP.js → bundle-IjPHxh5M.js} +3 -3
- package/chunks/{bundle-CYb-R0dP.js.map → bundle-IjPHxh5M.js.map} +1 -1
- package/chunks/{bundle-D8vfKzAs.js → bundle-NQPHGdv2.js} +3 -3
- package/chunks/bundle-NQPHGdv2.js.map +1 -0
- package/chunks/{bundle-DCMOXTSM.js → bundle-NrxTT-RP.js} +3 -3
- package/chunks/{bundle-DCMOXTSM.js.map → bundle-NrxTT-RP.js.map} +1 -1
- package/chunks/bundle-PcZf3aTk.js +54 -0
- package/chunks/bundle-PcZf3aTk.js.map +1 -0
- package/chunks/{bundle-DQaaU4Jj.js → bundle-Q-tobrIb.js} +3 -3
- package/chunks/bundle-Q-tobrIb.js.map +1 -0
- package/chunks/{bundle-D-emSqoh.js → bundle-QA2AznoN.js} +4 -4
- package/chunks/bundle-QA2AznoN.js.map +1 -0
- package/chunks/{bundle-CKAOqUX1.js → bundle-SkrZLWkc.js} +1 -1
- package/chunks/bundle-SkrZLWkc.js.map +1 -0
- package/chunks/{bundle-jsjTDN7O.js → bundle-_3WGrX6M.js} +1 -1
- package/chunks/bundle-_3WGrX6M.js.map +1 -0
- package/chunks/{bundle-CJm78NeA.js → bundle-_Bh5w9NL.js} +3 -3
- package/chunks/bundle-_Bh5w9NL.js.map +1 -0
- package/chunks/{bundle-D6I1bAf9.js → bundle-atvPYPBf.js} +11 -11
- package/chunks/{bundle-D6I1bAf9.js.map → bundle-atvPYPBf.js.map} +1 -1
- package/chunks/{bundle-iykJTXEM.js → bundle-bVEG7YOP.js} +2 -2
- package/chunks/bundle-bVEG7YOP.js.map +1 -0
- package/chunks/{bundle-BBNNCVgD.js → bundle-bydFJnVe.js} +1 -1
- package/chunks/{bundle-BBNNCVgD.js.map → bundle-bydFJnVe.js.map} +1 -1
- package/chunks/{bundle-CeffBU0n.js → bundle-dRVFykvq.js} +4 -3
- package/chunks/{bundle-CeffBU0n.js.map → bundle-dRVFykvq.js.map} +1 -1
- package/chunks/{bundle-ByhXcncY.js → bundle-fNoXpdvs.js} +4 -70
- package/chunks/bundle-fNoXpdvs.js.map +1 -0
- package/chunks/{bundle-Chh1lOPn.js → bundle-gMXiQdRH.js} +1 -1
- package/chunks/{bundle-Chh1lOPn.js.map → bundle-gMXiQdRH.js.map} +1 -1
- package/chunks/{bundle-C8qp8u68.js → bundle-hrN1SZ_Z.js} +1 -1
- package/chunks/bundle-hrN1SZ_Z.js.map +1 -0
- package/chunks/{bundle-BQIouDdf.js → bundle-j-10ix2k.js} +1 -1
- package/chunks/bundle-j-10ix2k.js.map +1 -0
- package/chunks/{bundle-r28gqNc0.js → bundle-lrWED2TX.js} +2 -2
- package/chunks/bundle-lrWED2TX.js.map +1 -0
- package/cjs/App.js +75 -73
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +31 -29
- package/cjs/Channel/components/ChannelHeader.js.map +1 -1
- package/cjs/Channel/components/ChannelUI.js +64 -62
- package/cjs/Channel/components/ChannelUI.js.map +1 -1
- package/cjs/Channel/components/FileViewer.js +31 -29
- package/cjs/Channel/components/FileViewer.js.map +1 -1
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +54 -52
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +43 -41
- package/cjs/Channel/components/MessageInput.js.map +1 -1
- package/cjs/Channel/components/MessageInputWrapper.js +43 -41
- package/cjs/Channel/components/MessageInputWrapper.js.map +1 -1
- package/cjs/Channel/components/MessageList.js +57 -55
- package/cjs/Channel/components/MessageList.js.map +1 -1
- package/cjs/Channel/components/RemoveMessageModal.js +30 -28
- package/cjs/Channel/components/RemoveMessageModal.js.map +1 -1
- package/cjs/Channel/components/SuggestedMentionList.js +28 -26
- package/cjs/Channel/components/SuggestedMentionList.js.map +1 -1
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +8 -7
- package/cjs/Channel/components/UnreadCount.js.map +1 -1
- package/cjs/Channel/context.js +20 -18
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useHandleUploadFiles.js +17 -15
- package/cjs/Channel/hooks/useHandleUploadFiles.js.map +1 -1
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -4
- package/cjs/Channel/utils/compareMessagesForGrouping.js.map +1 -1
- package/cjs/Channel/utils/getMessagePartsInfo.js +7 -5
- package/cjs/Channel/utils/getMessagePartsInfo.js.map +1 -1
- package/cjs/Channel.js +64 -62
- package/cjs/Channel.js.map +1 -1
- package/cjs/ChannelList/components/AddChannel.js +23 -21
- package/cjs/ChannelList/components/AddChannel.js.map +1 -1
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +37 -35
- package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreview.js +30 -28
- package/cjs/ChannelList/components/ChannelPreview.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreviewAction.js +15 -13
- package/cjs/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/cjs/ChannelList/context.js +11 -9
- package/cjs/ChannelList/context.js.map +1 -1
- package/cjs/ChannelList.js +37 -35
- package/cjs/ChannelList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelProfile.js +20 -18
- package/cjs/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +25 -23
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/cjs/ChannelSettings/components/EditDetailsModal.js +20 -18
- package/cjs/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/ChannelSettings/components/LeaveChannel.js +17 -15
- package/cjs/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/cjs/ChannelSettings/components/ModerationPanel.js +23 -21
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/cjs/ChannelSettings/components/UserListItem.js +15 -13
- package/cjs/ChannelSettings/components/UserListItem.js.map +1 -1
- package/cjs/ChannelSettings/components/UserPanel.js +23 -21
- package/cjs/ChannelSettings/components/UserPanel.js.map +1 -1
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +25 -23
- package/cjs/ChannelSettings.js.map +1 -1
- package/cjs/CreateChannel/components/CreateChannelUI.js +20 -18
- package/cjs/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/cjs/CreateChannel/components/InviteUsers.js +20 -18
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +17 -15
- package/cjs/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +20 -18
- package/cjs/CreateChannel.js.map +1 -1
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -16
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +18 -16
- package/cjs/CreateOpenChannel.js.map +1 -1
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +19 -17
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +19 -17
- package/cjs/EditUserProfile.js.map +1 -1
- package/cjs/GroupChannel/components/FileViewer.js +25 -23
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
- package/cjs/GroupChannel/components/GroupChannelHeader.js +21 -21
- package/cjs/GroupChannel/components/GroupChannelUI.js +57 -55
- package/cjs/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/cjs/GroupChannel/components/Message.js +49 -47
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -35
- package/cjs/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/cjs/GroupChannel/components/MessageList.js +50 -48
- package/cjs/GroupChannel/components/MessageList.js.map +1 -1
- package/cjs/GroupChannel/components/RemoveMessageModal.js +24 -22
- package/cjs/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +8 -7
- package/cjs/GroupChannel/components/UnreadCount.js.map +1 -1
- package/cjs/GroupChannel/context.js +9 -9
- package/cjs/GroupChannel.js +57 -55
- package/cjs/GroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/AddGroupChannel.js +22 -20
- package/cjs/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +28 -26
- package/cjs/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +36 -34
- package/cjs/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +15 -13
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +36 -34
- package/cjs/GroupChannelList.js.map +1 -1
- package/cjs/MessageSearch/components/MessageSearchUI.js +15 -13
- package/cjs/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +17 -15
- package/cjs/MessageSearch.js.map +1 -1
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +22 -20
- package/cjs/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelInput.js +28 -26
- package/cjs/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -35
- package/cjs/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +41 -39
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +41 -39
- package/cjs/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/cjs/OpenChannel/context.js +21 -19
- package/cjs/OpenChannel/context.js.map +1 -1
- package/cjs/OpenChannel.js +41 -39
- package/cjs/OpenChannel.js.map +1 -1
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +20 -18
- package/cjs/OpenChannelList/components/OpenChannelListUI.js.map +1 -1
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +20 -18
- package/cjs/OpenChannelList.js.map +1 -1
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +21 -19
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +21 -19
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -20
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OperatorUI.js +22 -20
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +20 -18
- package/cjs/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +22 -20
- package/cjs/OpenChannelSettings.js.map +1 -1
- package/cjs/SendbirdProvider.js +20 -18
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +44 -42
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +30 -28
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +48 -46
- package/cjs/Thread/components/ThreadList.js.map +1 -1
- package/cjs/Thread/components/ThreadListItem.js +48 -46
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +43 -41
- package/cjs/Thread/components/ThreadMessageInput.js.map +1 -1
- package/cjs/Thread/components/ThreadUI.js +55 -53
- package/cjs/Thread/components/ThreadUI.js.map +1 -1
- package/cjs/Thread/context.js +9 -9
- package/cjs/Thread.js +55 -53
- package/cjs/Thread.js.map +1 -1
- package/cjs/VoicePlayer/context.js +4 -3
- package/cjs/VoicePlayer/context.js.map +1 -1
- package/cjs/VoicePlayer/useVoicePlayer.js +19 -22
- package/cjs/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/cjs/VoiceRecorder/context.js +15 -13
- package/cjs/VoiceRecorder/context.js.map +1 -1
- package/cjs/VoiceRecorder/useVoiceRecorder.js +15 -13
- package/cjs/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/cjs/chunks/{bundle-C6anLerK.js → bundle-2kdn70Rj.js} +3 -3
- package/cjs/chunks/{bundle-C6anLerK.js.map → bundle-2kdn70Rj.js.map} +1 -1
- package/cjs/chunks/{bundle-CQuNuJRD.js → bundle-3TlzRrfD.js} +1 -1
- package/cjs/chunks/bundle-3TlzRrfD.js.map +1 -0
- package/cjs/chunks/bundle-4PNRR5W3.js +56 -0
- package/cjs/chunks/bundle-4PNRR5W3.js.map +1 -0
- package/cjs/chunks/{bundle-CU9cRoLR.js → bundle-B0Glft9d.js} +3 -3
- package/cjs/chunks/bundle-B0Glft9d.js.map +1 -0
- package/cjs/chunks/{bundle-C7wnP44u.js → bundle-B4-ARdO4.js} +4 -4
- package/cjs/chunks/bundle-B4-ARdO4.js.map +1 -0
- package/cjs/chunks/{bundle-BkBiKwX_.js → bundle-B44RKs1i.js} +1 -1
- package/cjs/chunks/bundle-B44RKs1i.js.map +1 -0
- package/cjs/chunks/bundle-B9dZDOI5.js +73 -0
- package/cjs/chunks/bundle-B9dZDOI5.js.map +1 -0
- package/cjs/chunks/{bundle-BL7sqL5a.js → bundle-BDQgAppO.js} +1 -1
- package/cjs/chunks/bundle-BDQgAppO.js.map +1 -0
- package/cjs/chunks/{bundle-CIlSjPAF.js → bundle-BDXCaYsH.js} +11 -11
- package/cjs/chunks/bundle-BDXCaYsH.js.map +1 -0
- package/cjs/chunks/{bundle-BlTQoHvt.js → bundle-BIVSA0UA.js} +2 -2
- package/cjs/chunks/bundle-BIVSA0UA.js.map +1 -0
- package/cjs/chunks/{bundle-DIRaYwCp.js → bundle-BJDQUar6.js} +1 -1
- package/cjs/chunks/bundle-BJDQUar6.js.map +1 -0
- package/cjs/chunks/{bundle-BjRzYP0q.js → bundle-BJc0JcL-.js} +1 -1
- package/cjs/chunks/bundle-BJc0JcL-.js.map +1 -0
- package/cjs/chunks/{bundle-ChG7rGaC.js → bundle-BO6YDwoz.js} +6 -6
- package/cjs/chunks/bundle-BO6YDwoz.js.map +1 -0
- package/cjs/chunks/{bundle-BJey4qI5.js → bundle-BOSlF-PZ.js} +3 -3
- package/cjs/chunks/bundle-BOSlF-PZ.js.map +1 -0
- package/cjs/chunks/{bundle-AYo_NmGM.js → bundle-BSVTay0K.js} +1 -1
- package/cjs/chunks/bundle-BSVTay0K.js.map +1 -0
- package/cjs/chunks/{bundle-DXMtP0MH.js → bundle-BVUM1pVl.js} +2 -2
- package/cjs/chunks/{bundle-DXMtP0MH.js.map → bundle-BVUM1pVl.js.map} +1 -1
- package/cjs/chunks/{bundle-Da5vrzgE.js → bundle-BViYuB4_.js} +1 -1
- package/cjs/chunks/bundle-BViYuB4_.js.map +1 -0
- package/cjs/chunks/{bundle-_ZdDkf5f.js → bundle-B_42YrCV.js} +29 -97
- package/cjs/chunks/bundle-B_42YrCV.js.map +1 -0
- package/cjs/chunks/{bundle-CQphK8PK.js → bundle-B_XQ1oTC.js} +11 -11
- package/cjs/chunks/{bundle-CQphK8PK.js.map → bundle-B_XQ1oTC.js.map} +1 -1
- package/cjs/chunks/{bundle-DwCQF_LC.js → bundle-Bb9LqSHU.js} +2 -2
- package/cjs/chunks/bundle-Bb9LqSHU.js.map +1 -0
- package/cjs/chunks/{bundle-BdymdNGG.js → bundle-BcP5dHcV.js} +1 -1
- package/cjs/chunks/bundle-BcP5dHcV.js.map +1 -0
- package/cjs/chunks/{bundle-26FjC_SS.js → bundle-BewazTEh.js} +80 -11
- package/cjs/chunks/bundle-BewazTEh.js.map +1 -0
- package/cjs/chunks/{bundle-C1UPwWAI.js → bundle-Bf2oyXSB.js} +1 -1
- package/cjs/chunks/bundle-Bf2oyXSB.js.map +1 -0
- package/cjs/chunks/{bundle-DR8XyUB0.js → bundle-BfiBzzkB.js} +3 -3
- package/cjs/chunks/bundle-BfiBzzkB.js.map +1 -0
- package/cjs/chunks/{bundle-D9gviCCw.js → bundle-BjSsneBK.js} +1 -1
- package/cjs/chunks/bundle-BjSsneBK.js.map +1 -0
- package/cjs/chunks/{bundle-Bu99Nfuy.js → bundle-Bk7mbCoA.js} +6 -6
- package/cjs/chunks/bundle-Bk7mbCoA.js.map +1 -0
- package/cjs/chunks/{bundle-De2BYQOH.js → bundle-BqHow3gS.js} +1 -1
- package/cjs/chunks/bundle-BqHow3gS.js.map +1 -0
- package/cjs/chunks/{bundle-CF2dgwB7.js → bundle-BxVcIlWI.js} +8 -8
- package/cjs/chunks/bundle-BxVcIlWI.js.map +1 -0
- package/cjs/chunks/{bundle-DfOJsN8g.js → bundle-C-ncKvGW.js} +1 -1
- package/cjs/chunks/bundle-C-ncKvGW.js.map +1 -0
- package/cjs/chunks/{bundle-P4-cpCHz.js → bundle-C0fpOgFd.js} +2 -2
- package/cjs/chunks/bundle-C0fpOgFd.js.map +1 -0
- package/cjs/chunks/{bundle-B5UA1biQ.js → bundle-C36iTYAj.js} +6 -5
- package/cjs/chunks/{bundle-B5UA1biQ.js.map → bundle-C36iTYAj.js.map} +1 -1
- package/cjs/chunks/{bundle-CEwpRDg4.js → bundle-C3kKDP3g.js} +1 -1
- package/cjs/chunks/bundle-C3kKDP3g.js.map +1 -0
- package/cjs/chunks/{bundle-fSVLYb3B.js → bundle-C6i19O7d.js} +1 -1
- package/cjs/chunks/bundle-C6i19O7d.js.map +1 -0
- package/cjs/chunks/{bundle-DKlmbtT4.js → bundle-C7hLRvbU.js} +5 -5
- package/cjs/chunks/bundle-C7hLRvbU.js.map +1 -0
- package/cjs/chunks/{bundle-D32sNS2H.js → bundle-CBw-w3Lx.js} +1 -1
- package/cjs/chunks/{bundle-D32sNS2H.js.map → bundle-CBw-w3Lx.js.map} +1 -1
- package/cjs/chunks/{bundle-BPHTbAOJ.js → bundle-CFLbLwQA.js} +8 -8
- package/cjs/chunks/{bundle-BPHTbAOJ.js.map → bundle-CFLbLwQA.js.map} +1 -1
- package/cjs/chunks/{bundle-DHe-zJRz.js → bundle-CFydLFa7.js} +6 -6
- package/cjs/chunks/bundle-CFydLFa7.js.map +1 -0
- package/cjs/chunks/{bundle-CZDSNBoC.js → bundle-CGKRIO3E.js} +14 -9
- package/cjs/chunks/{bundle-CZDSNBoC.js.map → bundle-CGKRIO3E.js.map} +1 -1
- package/cjs/chunks/{bundle-iV5SZ5T1.js → bundle-CPCYaxLI.js} +1 -1
- package/cjs/chunks/bundle-CPCYaxLI.js.map +1 -0
- package/cjs/chunks/{bundle-qGk2QXFu.js → bundle-CQUbTSJz.js} +36 -6
- package/cjs/chunks/{bundle-XAzxBt_1.js.map → bundle-CQUbTSJz.js.map} +1 -1
- package/cjs/chunks/{bundle-D44aGFlR.js → bundle-CT3hIjDy.js} +3 -3
- package/cjs/chunks/bundle-CT3hIjDy.js.map +1 -0
- package/cjs/chunks/{bundle-D2VAmwMZ.js → bundle-CYK5sjUD.js} +2 -2
- package/cjs/chunks/bundle-CYK5sjUD.js.map +1 -0
- package/cjs/chunks/{bundle-DzwQ-6pw.js → bundle-C_2JLhCE.js} +5 -1
- package/cjs/chunks/bundle-C_2JLhCE.js.map +1 -0
- package/cjs/chunks/{bundle-DRg1_3vC.js → bundle-ChCdSKNb.js} +5 -5
- package/cjs/chunks/{bundle-DRg1_3vC.js.map → bundle-ChCdSKNb.js.map} +1 -1
- package/cjs/chunks/{bundle-XAzxBt_1.js → bundle-CiX39uyp.js} +12 -12
- package/cjs/chunks/bundle-CiX39uyp.js.map +1 -0
- package/cjs/chunks/{bundle-C8hW7kPm.js → bundle-ClDJ3S5P.js} +4 -4
- package/cjs/chunks/bundle-ClDJ3S5P.js.map +1 -0
- package/cjs/chunks/{bundle-BEgKzgU2.js → bundle-CqRMMX3E.js} +1 -1
- package/cjs/chunks/bundle-CqRMMX3E.js.map +1 -0
- package/cjs/chunks/{bundle-C8CpLa_f.js → bundle-Cqk7T4-n.js} +13 -13
- package/cjs/chunks/{bundle-C8CpLa_f.js.map → bundle-Cqk7T4-n.js.map} +1 -1
- package/cjs/chunks/{bundle-Dw4KxRSR.js → bundle-CtVzU2mF.js} +1 -1
- package/cjs/chunks/bundle-CtVzU2mF.js.map +1 -0
- package/cjs/chunks/{bundle-DnmDk8vE.js → bundle-D0PO_ruY.js} +1 -1
- package/cjs/chunks/bundle-D0PO_ruY.js.map +1 -0
- package/cjs/chunks/{bundle-BV-0tKau.js → bundle-D0q5dAFj.js} +2 -2
- package/cjs/chunks/bundle-D0q5dAFj.js.map +1 -0
- package/cjs/chunks/{bundle-CgUoJY7b.js → bundle-D3cOq1dq.js} +1 -1
- package/cjs/chunks/bundle-D3cOq1dq.js.map +1 -0
- package/cjs/chunks/{bundle-Bgoz5Jfd.js → bundle-D4Pew2rQ.js} +10 -10
- package/cjs/chunks/bundle-D4Pew2rQ.js.map +1 -0
- package/cjs/chunks/{bundle-YI5iHD-4.js → bundle-D4wKr-Pc.js} +1 -1
- package/cjs/chunks/bundle-D4wKr-Pc.js.map +1 -0
- package/cjs/chunks/{bundle-p170d_Dm.js → bundle-D5h00Oig.js} +4 -4
- package/cjs/chunks/bundle-D5h00Oig.js.map +1 -0
- package/cjs/chunks/{bundle-COhOm7QP.js → bundle-DAIvuBM5.js} +1 -1
- package/cjs/chunks/{bundle-COhOm7QP.js.map → bundle-DAIvuBM5.js.map} +1 -1
- package/cjs/chunks/{bundle-5gsiNZ6i.js → bundle-DF9N1Yw5.js} +3 -3
- package/cjs/chunks/bundle-DF9N1Yw5.js.map +1 -0
- package/cjs/chunks/{bundle-Bn92GDNw.js → bundle-DFprgn2Q.js} +2 -2
- package/cjs/chunks/bundle-DFprgn2Q.js.map +1 -0
- package/cjs/chunks/{bundle-BNT6N39C.js → bundle-DIv9aJRh.js} +2 -2
- package/cjs/chunks/bundle-DIv9aJRh.js.map +1 -0
- package/cjs/chunks/{bundle-DF9-iZq2.js → bundle-DL_1wm_B.js} +1 -1
- package/cjs/chunks/bundle-DL_1wm_B.js.map +1 -0
- package/cjs/chunks/{bundle-_xFWpqul.js → bundle-DQcxvpWg.js} +1 -1
- package/cjs/chunks/bundle-DQcxvpWg.js.map +1 -0
- package/cjs/chunks/{bundle-D_rhia9A.js → bundle-DQmSLtm5.js} +9 -9
- package/cjs/chunks/{bundle-D_rhia9A.js.map → bundle-DQmSLtm5.js.map} +1 -1
- package/cjs/chunks/{bundle-CvW2Xlqf.js → bundle-DepUnCxt.js} +1 -1
- package/cjs/chunks/bundle-DepUnCxt.js.map +1 -0
- package/cjs/chunks/{bundle-CRWnpkM-.js → bundle-DmHD41pR.js} +11 -11
- package/cjs/chunks/{bundle-CRWnpkM-.js.map → bundle-DmHD41pR.js.map} +1 -1
- package/cjs/chunks/{bundle-CbXBDehb.js → bundle-DqxP8px7.js} +1 -1
- package/cjs/chunks/bundle-DqxP8px7.js.map +1 -0
- package/cjs/chunks/{bundle-4ObWBj8f.js → bundle-Drlvp_B2.js} +1 -1
- package/cjs/chunks/bundle-Drlvp_B2.js.map +1 -0
- package/cjs/chunks/{bundle-DrbRl6zb.js → bundle-DxII-H6S.js} +1 -1
- package/cjs/chunks/bundle-DxII-H6S.js.map +1 -0
- package/cjs/chunks/{bundle-mzVwp23B.js → bundle-F2zWPLQS.js} +7 -7
- package/{chunks/bundle-D70fpWll.js.map → cjs/chunks/bundle-F2zWPLQS.js.map} +1 -1
- package/cjs/chunks/{bundle-BEqQw6xi.js → bundle-IcHoDMIo.js} +4 -4
- package/cjs/chunks/{bundle-BEqQw6xi.js.map → bundle-IcHoDMIo.js.map} +1 -1
- package/cjs/chunks/{bundle-BvBQd-ZB.js → bundle-QeghHNoV.js} +4 -4
- package/cjs/chunks/bundle-QeghHNoV.js.map +1 -0
- package/cjs/chunks/{bundle-U5EBtenz.js → bundle-TvvKEQW4.js} +4 -4
- package/cjs/chunks/bundle-TvvKEQW4.js.map +1 -0
- package/cjs/chunks/{bundle-DIOFN5WV.js → bundle-V8KCClRo.js} +1 -1
- package/cjs/chunks/bundle-V8KCClRo.js.map +1 -0
- package/cjs/chunks/{bundle-0hmKjiNj.js → bundle-_LlcM4bL.js} +1 -1
- package/cjs/chunks/bundle-_LlcM4bL.js.map +1 -0
- package/cjs/chunks/{bundle-DGsWxwDq.js → bundle-dHncVwtW.js} +1 -1
- package/cjs/chunks/bundle-dHncVwtW.js.map +1 -0
- package/cjs/chunks/{bundle-CDyyKKIG.js → bundle-dwrgnCZ8.js} +3 -3
- package/cjs/chunks/bundle-dwrgnCZ8.js.map +1 -0
- package/cjs/chunks/{bundle-DhrYYS0O.js → bundle-hLGNL7z0.js} +5 -5
- package/cjs/chunks/bundle-hLGNL7z0.js.map +1 -0
- package/cjs/chunks/{bundle-64vh2Aam.js → bundle-hf7uRYVX.js} +3 -3
- package/cjs/chunks/bundle-hf7uRYVX.js.map +1 -0
- package/cjs/chunks/{bundle-CaJHAUev.js → bundle-iEmMwq3m.js} +2 -2
- package/cjs/chunks/bundle-iEmMwq3m.js.map +1 -0
- package/cjs/chunks/{bundle-BRSoMxfE.js → bundle-j9mK_OvN.js} +2 -2
- package/cjs/chunks/{bundle-BRSoMxfE.js.map → bundle-j9mK_OvN.js.map} +1 -1
- package/cjs/chunks/bundle-kf6nqGaS.js +13 -0
- package/cjs/chunks/bundle-kf6nqGaS.js.map +1 -0
- package/cjs/chunks/{bundle-C_twcMB-.js → bundle-xm5DS5Lz.js} +1 -1
- package/cjs/chunks/bundle-xm5DS5Lz.js.map +1 -0
- package/cjs/hooks/useModal.js +15 -13
- package/cjs/hooks/useModal.js.map +1 -1
- package/cjs/index.js +79 -77
- package/cjs/index.js.map +1 -1
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +2 -2
- package/cjs/ui/AccordionGroup.js +1 -1
- package/cjs/ui/AdminMessage.js +3 -3
- package/cjs/ui/Avatar.js +4 -4
- package/cjs/ui/Badge.js +5 -5
- package/cjs/ui/BottomSheet.js +15 -13
- package/cjs/ui/BottomSheet.js.map +1 -1
- package/cjs/ui/Button.js +3 -3
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +8 -6
- package/cjs/ui/ContextMenu.js.map +1 -1
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +21 -19
- package/cjs/ui/EmojiReactions.js.map +1 -1
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +8 -6
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js.map +1 -1
- package/cjs/ui/FileMessageItemBody.js +9 -7
- package/cjs/ui/FileMessageItemBody.js.map +1 -1
- package/cjs/ui/FileViewer.js +44 -41
- package/cjs/ui/FileViewer.js.map +1 -1
- package/cjs/ui/Header.js +6 -6
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +2 -2
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +4 -4
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
- package/cjs/ui/MentionLabel.js +15 -13
- package/cjs/ui/MentionLabel.js.map +1 -1
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +37 -35
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +16 -14
- package/cjs/ui/MessageFeedbackFailedModal.js.map +1 -1
- package/cjs/ui/MessageFeedbackModal.js +16 -14
- package/cjs/ui/MessageFeedbackModal.js.map +1 -1
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +18 -16
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +12 -10
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +11 -9
- package/cjs/ui/MessageItemReactionMenu.js.map +1 -1
- package/cjs/ui/MessageSearchFileItem.js +15 -13
- package/cjs/ui/MessageSearchFileItem.js.map +1 -1
- package/cjs/ui/MessageSearchItem.js +12 -11
- package/cjs/ui/MessageSearchItem.js.map +1 -1
- package/cjs/ui/MessageStatus.js +13 -11
- package/cjs/ui/MessageStatus.js.map +1 -1
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +15 -13
- package/cjs/ui/MobileFeedbackMenu.js.map +1 -1
- package/cjs/ui/Modal.js +15 -13
- package/cjs/ui/Modal.js.map +1 -1
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +19 -17
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +20 -18
- package/cjs/ui/OpenchannelFileMessage.js.map +1 -1
- package/cjs/ui/OpenchannelOGMessage.js +22 -20
- package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
- package/cjs/ui/OpenchannelThumbnailMessage.js +19 -17
- package/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/cjs/ui/OpenchannelUserMessage.js +20 -18
- package/cjs/ui/OpenchannelUserMessage.js.map +1 -1
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/ProgressBar.js +1 -1
- package/cjs/ui/QuoteMessage.js +10 -8
- package/cjs/ui/QuoteMessage.js.map +1 -1
- package/cjs/ui/QuoteMessageInput.js +10 -8
- package/cjs/ui/QuoteMessageInput.js.map +1 -1
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +10 -8
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +18 -16
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +8 -6
- package/cjs/ui/ThumbnailMessageItemBody.js.map +1 -1
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +8 -6
- package/cjs/ui/UnknownMessageItemBody.js.map +1 -1
- package/cjs/ui/UserListItem.js +15 -13
- package/cjs/ui/UserListItem.js.map +1 -1
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +16 -13
- package/cjs/ui/VoiceMessageItemBody.js.map +1 -1
- package/cjs/ui/Word.js +15 -13
- package/cjs/ui/Word.js.map +1 -1
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +4 -2
- package/cjs/utils/message/isVoiceMessage.js.map +1 -1
- package/cjs/withSendbird.js +1 -1
- package/hooks/useModal.js +15 -13
- package/hooks/useModal.js.map +1 -1
- package/index.js +79 -77
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/hooks/VoicePlayer/index.d.ts +1 -0
- package/types/hooks/VoicePlayer/useVoicePlayer.d.ts +2 -1
- package/types/hooks/VoicePlayer/utils.d.ts +14 -0
- package/types/ui/FileViewer/index.d.ts +1 -1
- package/types/utils/consts.d.ts +2 -0
- package/types/utils/index.d.ts +4 -0
- package/ui/Accordion.js +2 -2
- package/ui/AccordionGroup.js +1 -1
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +15 -13
- package/ui/BottomSheet.js.map +1 -1
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +8 -6
- package/ui/ContextMenu.js.map +1 -1
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +21 -19
- package/ui/EmojiReactions.js.map +1 -1
- package/ui/FallbackTemplateMessageItemBody.tsx.js +8 -6
- package/ui/FallbackTemplateMessageItemBody.tsx.js.map +1 -1
- package/ui/FileMessageItemBody.js +9 -7
- package/ui/FileMessageItemBody.js.map +1 -1
- package/ui/FileViewer.js +44 -41
- package/ui/FileViewer.js.map +1 -1
- package/ui/Header.js +6 -6
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +2 -2
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +4 -4
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
- package/ui/MentionLabel.js +15 -13
- package/ui/MentionLabel.js.map +1 -1
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +37 -35
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +16 -14
- package/ui/MessageFeedbackFailedModal.js.map +1 -1
- package/ui/MessageFeedbackModal.js +16 -14
- package/ui/MessageFeedbackModal.js.map +1 -1
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +16 -14
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +12 -10
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +11 -9
- package/ui/MessageItemReactionMenu.js.map +1 -1
- package/ui/MessageSearchFileItem.js +15 -13
- package/ui/MessageSearchFileItem.js.map +1 -1
- package/ui/MessageSearchItem.js +12 -11
- package/ui/MessageSearchItem.js.map +1 -1
- package/ui/MessageStatus.js +13 -11
- package/ui/MessageStatus.js.map +1 -1
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +15 -13
- package/ui/MobileFeedbackMenu.js.map +1 -1
- package/ui/Modal.js +15 -13
- package/ui/Modal.js.map +1 -1
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +19 -17
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +20 -18
- package/ui/OpenchannelFileMessage.js.map +1 -1
- package/ui/OpenchannelOGMessage.js +22 -20
- package/ui/OpenchannelOGMessage.js.map +1 -1
- package/ui/OpenchannelThumbnailMessage.js +19 -17
- package/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/ui/OpenchannelUserMessage.js +20 -18
- package/ui/OpenchannelUserMessage.js.map +1 -1
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +1 -1
- package/ui/QuoteMessage.js +10 -8
- package/ui/QuoteMessage.js.map +1 -1
- package/ui/QuoteMessageInput.js +10 -8
- package/ui/QuoteMessageInput.js.map +1 -1
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +10 -8
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +18 -16
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +8 -6
- package/ui/ThumbnailMessageItemBody.js.map +1 -1
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +8 -6
- package/ui/UnknownMessageItemBody.js.map +1 -1
- package/ui/UserListItem.js +15 -13
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +16 -13
- package/ui/VoiceMessageItemBody.js.map +1 -1
- package/ui/Word.js +15 -13
- package/ui/Word.js.map +1 -1
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +4 -2
- package/utils/message/isVoiceMessage.js.map +1 -1
- package/withSendbird.js +1 -1
- package/chunks/bundle-021cIMZ5.js.map +0 -1
- package/chunks/bundle-9u0MWDuF.js.map +0 -1
- package/chunks/bundle-AnT7R0wX.js.map +0 -1
- package/chunks/bundle-B94FhrB0.js.map +0 -1
- package/chunks/bundle-BQIouDdf.js.map +0 -1
- package/chunks/bundle-BTophPbK.js +0 -53
- package/chunks/bundle-BTophPbK.js.map +0 -1
- package/chunks/bundle-BUe--_Mc.js.map +0 -1
- package/chunks/bundle-BZK5E1_7.js.map +0 -1
- package/chunks/bundle-BfC8BXO3.js.map +0 -1
- package/chunks/bundle-Bg4q4411.js.map +0 -1
- package/chunks/bundle-BhFWIfjd.js.map +0 -1
- package/chunks/bundle-Bk-LSlXK.js.map +0 -1
- package/chunks/bundle-BnRw6uxd.js.map +0 -1
- package/chunks/bundle-Bo3mnVmp.js.map +0 -1
- package/chunks/bundle-Bt9wsU0z.js.map +0 -1
- package/chunks/bundle-ByhXcncY.js.map +0 -1
- package/chunks/bundle-ByyxrO7x.js.map +0 -1
- package/chunks/bundle-BzlpyibM.js.map +0 -1
- package/chunks/bundle-C3fQOaL6.js.map +0 -1
- package/chunks/bundle-C8qp8u68.js.map +0 -1
- package/chunks/bundle-CJm78NeA.js.map +0 -1
- package/chunks/bundle-CKAOqUX1.js.map +0 -1
- package/chunks/bundle-CLQwCMbo.js.map +0 -1
- package/chunks/bundle-CTSVqXR9.js.map +0 -1
- package/chunks/bundle-CczCegSK.js.map +0 -1
- package/chunks/bundle-Cdo_FpIC.js.map +0 -1
- package/chunks/bundle-CfzNjGmr.js.map +0 -1
- package/chunks/bundle-CpOZ-vVg.js.map +0 -1
- package/chunks/bundle-CtkBrjUj.js.map +0 -1
- package/chunks/bundle-CvFy-it8.js.map +0 -1
- package/chunks/bundle-D-emSqoh.js.map +0 -1
- package/chunks/bundle-D4Flp5xY.js.map +0 -1
- package/chunks/bundle-D8vfKzAs.js.map +0 -1
- package/chunks/bundle-DDIr59rJ.js.map +0 -1
- package/chunks/bundle-DQaaU4Jj.js.map +0 -1
- package/chunks/bundle-DTUNr1BU.js.map +0 -1
- package/chunks/bundle-DaSr9tmm.js.map +0 -1
- package/chunks/bundle-DcWxk5a4.js.map +0 -1
- package/chunks/bundle-DgsBptfe.js.map +0 -1
- package/chunks/bundle-DlFdSxvC.js.map +0 -1
- package/chunks/bundle-DqJw5Zs6.js.map +0 -1
- package/chunks/bundle-HTnw7-82.js.map +0 -1
- package/chunks/bundle-Lg46FDnz.js.map +0 -1
- package/chunks/bundle-RAnyuNhc.js.map +0 -1
- package/chunks/bundle-ZA_TsLfg.js.map +0 -1
- package/chunks/bundle-b-FYiCDP.js.map +0 -1
- package/chunks/bundle-iykJTXEM.js.map +0 -1
- package/chunks/bundle-jsjTDN7O.js.map +0 -1
- package/chunks/bundle-n6neEdcR.js.map +0 -1
- package/chunks/bundle-ob8tFv61.js.map +0 -1
- package/chunks/bundle-pZ4uNXwu.js.map +0 -1
- package/chunks/bundle-qV7-WZhl.js.map +0 -1
- package/chunks/bundle-r28gqNc0.js.map +0 -1
- package/cjs/chunks/bundle-0hmKjiNj.js.map +0 -1
- package/cjs/chunks/bundle-26FjC_SS.js.map +0 -1
- package/cjs/chunks/bundle-4ObWBj8f.js.map +0 -1
- package/cjs/chunks/bundle-5gsiNZ6i.js.map +0 -1
- package/cjs/chunks/bundle-64vh2Aam.js.map +0 -1
- package/cjs/chunks/bundle-AYo_NmGM.js.map +0 -1
- package/cjs/chunks/bundle-BEgKzgU2.js.map +0 -1
- package/cjs/chunks/bundle-BJey4qI5.js.map +0 -1
- package/cjs/chunks/bundle-BL7sqL5a.js.map +0 -1
- package/cjs/chunks/bundle-BNT6N39C.js.map +0 -1
- package/cjs/chunks/bundle-BV-0tKau.js.map +0 -1
- package/cjs/chunks/bundle-BdymdNGG.js.map +0 -1
- package/cjs/chunks/bundle-Bgoz5Jfd.js.map +0 -1
- package/cjs/chunks/bundle-BjRzYP0q.js.map +0 -1
- package/cjs/chunks/bundle-BkBiKwX_.js.map +0 -1
- package/cjs/chunks/bundle-BlTQoHvt.js.map +0 -1
- package/cjs/chunks/bundle-Bn92GDNw.js.map +0 -1
- package/cjs/chunks/bundle-Bu99Nfuy.js.map +0 -1
- package/cjs/chunks/bundle-BvBQd-ZB.js.map +0 -1
- package/cjs/chunks/bundle-C1UPwWAI.js.map +0 -1
- package/cjs/chunks/bundle-C7wnP44u.js.map +0 -1
- package/cjs/chunks/bundle-C8hW7kPm.js.map +0 -1
- package/cjs/chunks/bundle-CDyyKKIG.js.map +0 -1
- package/cjs/chunks/bundle-CEwpRDg4.js.map +0 -1
- package/cjs/chunks/bundle-CF2dgwB7.js.map +0 -1
- package/cjs/chunks/bundle-CIlSjPAF.js.map +0 -1
- package/cjs/chunks/bundle-CQuNuJRD.js.map +0 -1
- package/cjs/chunks/bundle-CU9cRoLR.js.map +0 -1
- package/cjs/chunks/bundle-C_twcMB-.js.map +0 -1
- package/cjs/chunks/bundle-CaJHAUev.js.map +0 -1
- package/cjs/chunks/bundle-CbXBDehb.js.map +0 -1
- package/cjs/chunks/bundle-CgUoJY7b.js.map +0 -1
- package/cjs/chunks/bundle-ChG7rGaC.js.map +0 -1
- package/cjs/chunks/bundle-CvW2Xlqf.js.map +0 -1
- package/cjs/chunks/bundle-D2VAmwMZ.js.map +0 -1
- package/cjs/chunks/bundle-D44aGFlR.js.map +0 -1
- package/cjs/chunks/bundle-D9gviCCw.js.map +0 -1
- package/cjs/chunks/bundle-DF9-iZq2.js.map +0 -1
- package/cjs/chunks/bundle-DGsWxwDq.js.map +0 -1
- package/cjs/chunks/bundle-DGtnCqJk.js +0 -55
- package/cjs/chunks/bundle-DGtnCqJk.js.map +0 -1
- package/cjs/chunks/bundle-DHe-zJRz.js.map +0 -1
- package/cjs/chunks/bundle-DIOFN5WV.js.map +0 -1
- package/cjs/chunks/bundle-DIRaYwCp.js.map +0 -1
- package/cjs/chunks/bundle-DKlmbtT4.js.map +0 -1
- package/cjs/chunks/bundle-DR8XyUB0.js.map +0 -1
- package/cjs/chunks/bundle-Da5vrzgE.js.map +0 -1
- package/cjs/chunks/bundle-De2BYQOH.js.map +0 -1
- package/cjs/chunks/bundle-DfOJsN8g.js.map +0 -1
- package/cjs/chunks/bundle-DhrYYS0O.js.map +0 -1
- package/cjs/chunks/bundle-DnmDk8vE.js.map +0 -1
- package/cjs/chunks/bundle-DrbRl6zb.js.map +0 -1
- package/cjs/chunks/bundle-Dw4KxRSR.js.map +0 -1
- package/cjs/chunks/bundle-DwCQF_LC.js.map +0 -1
- package/cjs/chunks/bundle-DzwQ-6pw.js.map +0 -1
- package/cjs/chunks/bundle-P4-cpCHz.js.map +0 -1
- package/cjs/chunks/bundle-U5EBtenz.js.map +0 -1
- package/cjs/chunks/bundle-YI5iHD-4.js.map +0 -1
- package/cjs/chunks/bundle-_ZdDkf5f.js.map +0 -1
- package/cjs/chunks/bundle-_xFWpqul.js.map +0 -1
- package/cjs/chunks/bundle-fSVLYb3B.js.map +0 -1
- package/cjs/chunks/bundle-iV5SZ5T1.js.map +0 -1
- package/cjs/chunks/bundle-mzVwp23B.js.map +0 -1
- package/cjs/chunks/bundle-p170d_Dm.js.map +0 -1
- package/cjs/chunks/bundle-qGk2QXFu.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CRRsbsT6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CRs0ZyYd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,10 +3,10 @@ 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, i as VOICE_RECORDER_DEFAULT_MIN } from './bundle-
|
|
9
|
-
import { c as classnames } from './bundle-
|
|
6
|
+
import { b as LabelColors, L as Label, a as LabelTypography } from './bundle-_Bh5w9NL.js';
|
|
7
|
+
import { u as useLocalization } from './bundle-QA2AznoN.js';
|
|
8
|
+
import { h as VOICE_RECORDER_CLICK_BUFFER_TIME, i as VOICE_RECORDER_DEFAULT_MIN } from './bundle-CvQV9eyL.js';
|
|
9
|
+
import { c as classnames } from './bundle-hrN1SZ_Z.js';
|
|
10
10
|
|
|
11
11
|
/* eslint-disable no-redeclare */
|
|
12
12
|
var VoiceMessageInputStatus = {
|
|
@@ -94,4 +94,4 @@ var VoiceMessageInput = function (_a) {
|
|
|
94
94
|
};
|
|
95
95
|
|
|
96
96
|
export { VoiceMessageInputStatus as V, VoiceMessageInput as a };
|
|
97
|
-
//# sourceMappingURL=bundle-
|
|
97
|
+
//# sourceMappingURL=bundle-CSFmhfxF.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CSFmhfxF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
3
3
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
4
|
+
import { u as useLocalization } from './bundle-QA2AznoN.js';
|
|
5
5
|
|
|
6
6
|
var OpenChannelMessageStatusTypes = {
|
|
7
7
|
NONE: 'none',
|
|
@@ -95,4 +95,4 @@ var OpenChannelMobileMenu = function (props) {
|
|
|
95
95
|
};
|
|
96
96
|
|
|
97
97
|
export { OpenChannelMobileMenu as O, isFineEdit as a, isFineResend as b, isFineDelete as c, checkIsPending as d, checkIsFailed as e, checkIsSent as f, getSenderFromMessage as g, isFineCopy as i, showMenuTrigger as s };
|
|
98
|
-
//# sourceMappingURL=bundle-
|
|
98
|
+
//# sourceMappingURL=bundle-CT69B1kW.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CT69B1kW.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DAhJtn85.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import { IconTypes, IconColors } from '../ui/Icon.js';
|
|
4
4
|
import ChannelAvatar from '../ui/ChannelAvatar.js';
|
|
5
|
-
import { g as getChannelTitle } from './bundle-
|
|
6
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
5
|
+
import { g as getChannelTitle } from './bundle-BZaNthXQ.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-BHKxRZez.js';
|
|
7
7
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
8
|
-
import { u as useLocalization } from './bundle-
|
|
8
|
+
import { u as useLocalization } from './bundle-QA2AznoN.js';
|
|
9
9
|
import Header from '../ui/Header.js';
|
|
10
|
-
import { c as classnames } from './bundle-
|
|
10
|
+
import { c as classnames } from './bundle-hrN1SZ_Z.js';
|
|
11
11
|
|
|
12
12
|
var GroupChannelHeaderView = function (_a) {
|
|
13
13
|
var className = _a.className, currentChannel = _a.currentChannel, showSearchIcon = _a.showSearchIcon, onBackClick = _a.onBackClick, onSearchClick = _a.onSearchClick, onChatHeaderActionClick = _a.onChatHeaderActionClick,
|
|
@@ -28,4 +28,4 @@ var GroupChannelHeaderView = function (_a) {
|
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
export { GroupChannelHeaderView as G };
|
|
31
|
-
//# sourceMappingURL=bundle-
|
|
31
|
+
//# sourceMappingURL=bundle-CWX597tJ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CWX597tJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CXIUF-j1.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-DFeu3PLu.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-ChgFZ-AQ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-ChgFZ-AQ.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,6 +1,6 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DAhJtn85.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
3
|
+
import { S as SuggestedMentionListView } from './bundle-DLuyvuQm.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-ChoBoUg2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-ChoBoUg2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React__default, { useState } from 'react';
|
|
2
2
|
import ContextMenu, { MenuItems, MenuItem } from '../ui/ContextMenu.js';
|
|
3
|
-
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage,
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
+
import { l as isUserMessage, q as isSentMessage, u as isFailedMessage, v as isPendingMessage, b as isFileMessage, i as isVoiceMessage, O as isThreadMessage, x as copyToClipboard, y as getEmojiListAll } from './bundle-DvK0GCH4.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-QA2AznoN.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
6
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-_Bh5w9NL.js';
|
|
7
7
|
import BottomSheet from '../ui/BottomSheet.js';
|
|
8
8
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
9
9
|
import ReactionButton from '../ui/ReactionButton.js';
|
|
10
10
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
11
|
-
import { c as classnames } from './bundle-
|
|
11
|
+
import { c as classnames } from './bundle-hrN1SZ_Z.js';
|
|
12
12
|
|
|
13
13
|
var MobileContextMenu = function (props) {
|
|
14
14
|
var _a, _b, _c;
|
|
@@ -226,4 +226,4 @@ var MobileMenu = function (props) {
|
|
|
226
226
|
};
|
|
227
227
|
|
|
228
228
|
export { MobileMenu as M };
|
|
229
|
-
//# sourceMappingURL=bundle-
|
|
229
|
+
//# sourceMappingURL=bundle-Cll6FpAY.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cll6FpAY.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
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-DAhJtn85.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-Bmg_SNU1.js';
|
|
5
|
+
import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
|
|
6
|
+
import { n as noop } from './bundle-hrN1SZ_Z.js';
|
|
7
|
+
import { D as DELIVERY_RECEIPT$1 } from './bundle-CvQV9eyL.js';
|
|
8
|
+
import { U as UserProfileProvider } from './bundle-j-10ix2k.js';
|
|
9
9
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
10
|
-
import { K,
|
|
11
|
-
import { u as useReconnectOnIdle } from './bundle-
|
|
10
|
+
import { K, $ as filterChannelListParams, a0 as getChannelsWithUpsertedChannel, a1 as S, a2 as isChannelJustCreated } from './bundle-DvK0GCH4.js';
|
|
11
|
+
import { u as useReconnectOnIdle } from './bundle-BOBvShj7.js';
|
|
12
12
|
|
|
13
13
|
var RESET_CHANNEL_LIST = 'RESET_CHANNEL_LIST';
|
|
14
14
|
var CREATE_CHANNEL = 'CREATE_CHANNEL';
|
|
@@ -430,6 +430,11 @@ function channelListReducer(state, action) {
|
|
|
430
430
|
// Good to [add to/keep in] the ChannelList
|
|
431
431
|
return __assign(__assign({}, state), { allChannels: getChannelsWithUpsertedChannel(allChannels, channel, (_a = state.channelListQuery) === null || _a === void 0 ? void 0 : _a.order) });
|
|
432
432
|
}
|
|
433
|
+
// If the channel is just created and the current user is the only member,
|
|
434
|
+
// don't add to the ChannelList but keep the currentChannel
|
|
435
|
+
if (isChannelJustCreated(channel)) {
|
|
436
|
+
return state;
|
|
437
|
+
}
|
|
433
438
|
// Filter the channel from the ChannelList
|
|
434
439
|
// Replace the currentChannel if it's filtered channel
|
|
435
440
|
var nextChannel = getNextChannel({
|
|
@@ -924,4 +929,4 @@ function useChannelListContext() {
|
|
|
924
929
|
}
|
|
925
930
|
|
|
926
931
|
export { ChannelListProvider as C, LEAVE_CHANNEL_SUCCESS as L, SET_CURRENT_CHANNEL as S, useChannelListContext as u };
|
|
927
|
-
//# sourceMappingURL=bundle-
|
|
932
|
+
//# sourceMappingURL=bundle-Cm5lAbEo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cm5lAbEo.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -17,7 +17,9 @@ var VOICE_PLAYER_ROOT_ID = 'sendbird-voice-player-provider-root';
|
|
|
17
17
|
var VOICE_PLAYER_AUDIO_ID = 'sendbird-global-audio-player-id';
|
|
18
18
|
// voice message file
|
|
19
19
|
var VOICE_MESSAGE_FILE_NAME = 'Voice_message.mp3';
|
|
20
|
+
var VOICE_MESSAGE_FILE_NAME__XM4A = 'Voice_message.m4a';
|
|
20
21
|
var VOICE_MESSAGE_MIME_TYPE = 'audio/mp3;sbu_type=voice';
|
|
22
|
+
var VOICE_MESSAGE_MIME_TYPE__XM4A = 'audio/x-m4a;sbu_type=voice';
|
|
21
23
|
// meta array
|
|
22
24
|
var META_ARRAY_VOICE_DURATION_KEY = 'KEY_VOICE_MESSAGE_DURATION';
|
|
23
25
|
var META_ARRAY_MESSAGE_TYPE_KEY = 'KEY_INTERNAL_MESSAGE_TYPE';
|
|
@@ -34,5 +36,5 @@ var CACHED_MESSAGE_TEMPLATES_TOKEN_KEY = 'sendbird_message_templates_token_key';
|
|
|
34
36
|
// Local storage item key for templates in JSON string form
|
|
35
37
|
var CACHED_MESSAGE_TEMPLATES_KEY = 'sendbird_message_templates_key';
|
|
36
38
|
|
|
37
|
-
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, CACHED_MESSAGE_TEMPLATES_TOKEN_KEY as C, DELIVERY_RECEIPT as D, META_ARRAY_VOICE_DURATION_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S,
|
|
38
|
-
//# sourceMappingURL=bundle-
|
|
39
|
+
export { BROWSER_SUPPORT_MIME_TYPE_LIST as B, CACHED_MESSAGE_TEMPLATES_TOKEN_KEY as C, DELIVERY_RECEIPT as D, META_ARRAY_VOICE_DURATION_KEY as M, ONE_MiB as O, SCROLL_BUFFER as S, VOICE_PLAYER_AUDIO_ID as V, VOICE_MESSAGE_MIME_TYPE as a, VOICE_RECORDER_AUDIO_SAMPLE_RATE as b, SCROLL_BOTTOM_DELAY_FOR_FETCH as c, SCROLL_BOTTOM_DELAY_FOR_SEND as d, VOICE_MESSAGE_FILE_NAME as e, META_ARRAY_MESSAGE_TYPE_KEY as f, META_ARRAY_MESSAGE_TYPE_VALUE__VOICE as g, VOICE_RECORDER_CLICK_BUFFER_TIME as h, VOICE_RECORDER_DEFAULT_MIN as i, VOICE_RECORDER_AUDIO_BIT_RATE as j, VOICE_MESSAGE_FILE_NAME__XM4A as k, VOICE_MESSAGE_MIME_TYPE__XM4A as l, VOICE_PLAYER_ROOT_ID as m, SLIDER_BUTTON_ICON_SIDE_LENGTH as n, CACHED_MESSAGE_TEMPLATES_KEY as o, DEFAULT_MULTIPLE_FILES_MESSAGE_LIMIT as p, DEFAULT_UPLOAD_SIZE_LIMIT as q, VOICE_RECORDER_DEFAULT_MAX as r };
|
|
40
|
+
//# sourceMappingURL=bundle-CvQV9eyL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CvQV9eyL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cyu8Xfnh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,24 +1,24 @@
|
|
|
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-DAhJtn85.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-CGpUZMGo.js';
|
|
4
4
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
5
|
-
import { u as useLocalization } from './bundle-
|
|
5
|
+
import { u as useLocalization } from './bundle-QA2AznoN.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, b as useGlobalModalContext, c as ModalFooter } from './bundle-
|
|
11
|
+
import { V as VoiceMessageInputStatus, a as VoiceMessageInput } from './bundle-CSFmhfxF.js';
|
|
12
|
+
import { M as Modal, b as useGlobalModalContext, c as ModalFooter } from './bundle-BFCOE4_P.js';
|
|
13
13
|
import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
|
|
14
|
-
import { V as VOICE_PLAYER_STATUS } from './bundle-
|
|
15
|
-
import { u as uuidv4 } from './bundle-
|
|
14
|
+
import { V as VOICE_PLAYER_STATUS } from './bundle-DeixUZhs.js';
|
|
15
|
+
import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
|
|
16
16
|
import MessageInput from '../ui/MessageInput.js';
|
|
17
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
18
|
-
import { M as MessageInputKeys } from './bundle-
|
|
19
|
-
import { k as isImage } from './bundle-
|
|
20
|
-
import './bundle-
|
|
21
|
-
import { c as compressImages } from './bundle-
|
|
17
|
+
import { u as useMediaQueryContext } from './bundle-BHKxRZez.js';
|
|
18
|
+
import { M as MessageInputKeys } from './bundle-CRs0ZyYd.js';
|
|
19
|
+
import { k as isImage } from './bundle-DvK0GCH4.js';
|
|
20
|
+
import './bundle-_Bh5w9NL.js';
|
|
21
|
+
import { c as compressImages } from './bundle-IjPHxh5M.js';
|
|
22
22
|
|
|
23
23
|
var VoiceMessageInputWrapper = function (_a) {
|
|
24
24
|
var channel = _a.channel, onCancelClick = _a.onCancelClick, onSubmitClick = _a.onSubmitClick;
|
|
@@ -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-Cz8H5Op_.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cz8H5Op_.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var isIOS = function (userAgent) { return /iPhone|iPad|iPod/i.test(userAgent); };
|
|
2
|
+
var isWebkit = function (userAgent) { return /WebKit/i.test(userAgent); };
|
|
3
|
+
var isChrome = function (userAgent) { return /Chrome/i.test(userAgent); };
|
|
4
|
+
var isSafari = function (userAgent) { return !isChrome(userAgent) && /Safari/i.test(userAgent); };
|
|
5
|
+
var isMobileIOS = function (userAgent) {
|
|
6
|
+
return isIOS(userAgent) && (isWebkit(userAgent) || isSafari(userAgent));
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export { isSafari as a, isMobileIOS as i };
|
|
10
|
+
//# sourceMappingURL=bundle-D1RWUo4o.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D1RWUo4o.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -4,17 +4,17 @@ import IconButton from '../ui/IconButton.js';
|
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
5
|
import ContextMenu, { MenuItems, OperatorMenuItem, MuteMenuItem, MenuItem } from '../ui/ContextMenu.js';
|
|
6
6
|
import UserListItem$1 from '../ChannelSettings/components/UserListItem.js';
|
|
7
|
-
import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-
|
|
7
|
+
import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-DAhJtn85.js';
|
|
8
8
|
import { Role } from '@sendbird/chat';
|
|
9
|
-
import { M as Modal } from './bundle-
|
|
9
|
+
import { M as Modal } from './bundle-BFCOE4_P.js';
|
|
10
10
|
import UserListItem from '../ui/UserListItem.js';
|
|
11
|
-
import { n as noop } from './bundle-
|
|
11
|
+
import { n as noop } from './bundle-hrN1SZ_Z.js';
|
|
12
12
|
import { useChannelSettingsContext } from '../ChannelSettings/context.js';
|
|
13
13
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
14
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
15
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
16
|
-
import './bundle-
|
|
17
|
-
import { u as uuidv4 } from './bundle-
|
|
14
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-QA2AznoN.js';
|
|
15
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-DQovOEGD.js';
|
|
16
|
+
import './bundle-_Bh5w9NL.js';
|
|
17
|
+
import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
|
|
18
18
|
|
|
19
19
|
function MembersModal(_a) {
|
|
20
20
|
var _this = this;
|
|
@@ -281,4 +281,4 @@ var MemberList = function () {
|
|
|
281
281
|
};
|
|
282
282
|
|
|
283
283
|
export { MemberList as M };
|
|
284
|
-
//# sourceMappingURL=bundle-
|
|
284
|
+
//# sourceMappingURL=bundle-D2GBxmuh.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D2GBxmuh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React__default, { useState, useMemo, useRef, useEffect } from 'react';
|
|
2
|
-
import { a as __awaiter, b as __generator, _ as __assign } from './bundle-
|
|
2
|
+
import { a as __awaiter, b as __generator, _ as __assign } from './bundle-DAhJtn85.js';
|
|
3
3
|
import { SendingStatus } from '@sendbird/chat/message';
|
|
4
4
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
6
|
import ImageRenderer, { getBorderRadiusForMultipleImageRenderer } from '../ui/ImageRenderer.js';
|
|
7
|
-
import { w as getClassName, A as isGif, K } from './bundle-
|
|
7
|
+
import { w as getClassName, A as isGif, K } from './bundle-DvK0GCH4.js';
|
|
8
8
|
import FileViewer from '../ui/FileViewer.js';
|
|
9
9
|
|
|
10
10
|
function ImageGrid(_a) {
|
|
@@ -178,4 +178,4 @@ var useFileInfoListWithUploaded = function (message) {
|
|
|
178
178
|
};
|
|
179
179
|
|
|
180
180
|
export { MultipleFilesMessageItemBody as M, ThreadMessageKind as T, useFileInfoListWithUploaded as a, useThreadMessageKindKeySelector as u };
|
|
181
|
-
//# sourceMappingURL=bundle-
|
|
181
|
+
//# sourceMappingURL=bundle-D6eHgF5n.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D6eHgF5n.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-D8uYbr-P.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D8uYbr-P.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
|
-
import { p as pubSubTopics, s as shouldPubSubPublishToChannel, a as shouldPubSubPublishToThread } from './bundle-
|
|
3
|
-
import { s as scrollIntoLast$1 } from './bundle-
|
|
2
|
+
import { p as pubSubTopics, s as shouldPubSubPublishToChannel, a as shouldPubSubPublishToThread } from './bundle-Bmg_SNU1.js';
|
|
3
|
+
import { s as scrollIntoLast$1 } from './bundle-0CUx7mAi.js';
|
|
4
4
|
import '../utils/message/getOutgoingMessageState.js';
|
|
5
|
-
import {
|
|
5
|
+
import { d as SCROLL_BOTTOM_DELAY_FOR_SEND } from './bundle-CvQV9eyL.js';
|
|
6
6
|
|
|
7
7
|
var getNicknamesMapFromMembers = function (members) {
|
|
8
8
|
if (members === void 0) { members = []; }
|
|
@@ -167,4 +167,4 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
167
167
|
};
|
|
168
168
|
|
|
169
169
|
export { getNicknamesMapFromMembers as a, compareIds as c, getParentMessageFrom as g, isAboutSame as i, scrollIntoLast as s, useSendMultipleFilesMessage as u };
|
|
170
|
-
//# sourceMappingURL=bundle-
|
|
170
|
+
//# sourceMappingURL=bundle-D9jGjVt-.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D9jGjVt-.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -106,4 +106,4 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
106
106
|
};
|
|
107
107
|
|
|
108
108
|
export { __assign as _, __awaiter as a, __generator as b, __spreadArray as c, __extends as d, __rest as e };
|
|
109
|
-
//# sourceMappingURL=bundle-
|
|
109
|
+
//# sourceMappingURL=bundle-DAhJtn85.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DAhJtn85.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-DvK0GCH4.js';
|
|
3
|
+
import { T as TOKEN_TYPES, U as USER_MENTION_PREFIX, g as getWhiteSpacePreservedText } from './bundle-lrWED2TX.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-_Bh5w9NL.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-DAlnp9lF.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DAlnp9lF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
function _typeof(o) {
|
|
2
|
+
"@babel/helpers - typeof";
|
|
3
|
+
|
|
4
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
5
|
+
return typeof o;
|
|
6
|
+
} : function (o) {
|
|
7
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
8
|
+
}, _typeof(o);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function requiredArgs(required, args) {
|
|
12
|
+
if (args.length < required) {
|
|
13
|
+
throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @name toDate
|
|
19
|
+
* @category Common Helpers
|
|
20
|
+
* @summary Convert the given argument to an instance of Date.
|
|
21
|
+
*
|
|
22
|
+
* @description
|
|
23
|
+
* Convert the given argument to an instance of Date.
|
|
24
|
+
*
|
|
25
|
+
* If the argument is an instance of Date, the function returns its clone.
|
|
26
|
+
*
|
|
27
|
+
* If the argument is a number, it is treated as a timestamp.
|
|
28
|
+
*
|
|
29
|
+
* If the argument is none of the above, the function returns Invalid Date.
|
|
30
|
+
*
|
|
31
|
+
* **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.
|
|
32
|
+
*
|
|
33
|
+
* @param {Date|Number} argument - the value to convert
|
|
34
|
+
* @returns {Date} the parsed date in the local time zone
|
|
35
|
+
* @throws {TypeError} 1 argument required
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* // Clone the date:
|
|
39
|
+
* const result = toDate(new Date(2014, 1, 11, 11, 30, 30))
|
|
40
|
+
* //=> Tue Feb 11 2014 11:30:30
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* // Convert the timestamp to date:
|
|
44
|
+
* const result = toDate(1392098430000)
|
|
45
|
+
* //=> Tue Feb 11 2014 11:30:30
|
|
46
|
+
*/
|
|
47
|
+
function toDate(argument) {
|
|
48
|
+
requiredArgs(1, arguments);
|
|
49
|
+
var argStr = Object.prototype.toString.call(argument);
|
|
50
|
+
|
|
51
|
+
// Clone the date
|
|
52
|
+
if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {
|
|
53
|
+
// Prevent the date to lose the milliseconds when passed to new Date() in IE10
|
|
54
|
+
return new Date(argument.getTime());
|
|
55
|
+
} else if (typeof argument === 'number' || argStr === '[object Number]') {
|
|
56
|
+
return new Date(argument);
|
|
57
|
+
} else {
|
|
58
|
+
if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {
|
|
59
|
+
// eslint-disable-next-line no-console
|
|
60
|
+
console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments");
|
|
61
|
+
// eslint-disable-next-line no-console
|
|
62
|
+
console.warn(new Error().stack);
|
|
63
|
+
}
|
|
64
|
+
return new Date(NaN);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export { _typeof as _, requiredArgs as r, toDate as t };
|
|
69
|
+
//# sourceMappingURL=bundle-DFeu3PLu.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DFeu3PLu.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAe,SAAS,OAAO,CAAC,CAAC,EAAE;AACnC,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
|