@sendbird/uikit-react 3.14.10 → 3.14.11-rc-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App.js +80 -79
- package/App.js.map +1 -1
- package/CHANGELOG.md +54 -0
- package/Channel/components/ChannelHeader.js +31 -31
- package/Channel/components/ChannelUI.js +64 -65
- package/Channel/components/ChannelUI.js.map +1 -1
- package/Channel/components/FileViewer.js +32 -31
- package/Channel/components/FileViewer.js.map +1 -1
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +54 -55
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +50 -57
- package/Channel/components/MessageInput.js.map +1 -1
- package/Channel/components/MessageInputWrapper.js +48 -47
- package/Channel/components/MessageInputWrapper.js.map +1 -1
- package/Channel/components/MessageList.js +57 -58
- package/Channel/components/MessageList.js.map +1 -1
- package/Channel/components/RemoveMessageModal.js +31 -30
- package/Channel/components/RemoveMessageModal.js.map +1 -1
- package/Channel/components/SuggestedMentionList.js +28 -28
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +8 -8
- package/Channel/context.js +20 -20
- package/Channel/hooks/useHandleUploadFiles.js +18 -17
- package/Channel/hooks/useHandleUploadFiles.js.map +1 -1
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/Channel/utils/getMessagePartsInfo.js +7 -7
- package/Channel.js +64 -65
- package/Channel.js.map +1 -1
- package/ChannelList/components/AddChannel.js +24 -25
- package/ChannelList/components/AddChannel.js.map +1 -1
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +37 -38
- package/ChannelList/components/ChannelListUI.js.map +1 -1
- package/ChannelList/components/ChannelPreview.js +31 -30
- package/ChannelList/components/ChannelPreview.js.map +1 -1
- package/ChannelList/components/ChannelPreviewAction.js +14 -15
- package/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/ChannelList/context.js +11 -11
- package/ChannelList.js +38 -39
- package/ChannelList.js.map +1 -1
- package/ChannelSettings/components/ChannelProfile.js +21 -20
- package/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsUI.js +26 -27
- package/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/ChannelSettings/components/EditDetailsModal.js +21 -20
- package/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/ChannelSettings/components/LeaveChannel.js +18 -17
- package/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/ChannelSettings/components/ModerationPanel.js +22 -23
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +14 -15
- package/ChannelSettings/components/UserListItem.js.map +1 -1
- package/ChannelSettings/components/UserPanel.js +22 -23
- package/ChannelSettings/components/UserPanel.js.map +1 -1
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +26 -27
- package/ChannelSettings.js.map +1 -1
- package/CreateChannel/components/CreateChannelUI.js +21 -22
- package/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/CreateChannel/components/InviteUsers.js +21 -22
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +18 -17
- package/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +21 -22
- package/CreateChannel.js.map +1 -1
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +19 -18
- package/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +19 -18
- package/CreateOpenChannel.js.map +1 -1
- package/EditUserProfile/components/EditUserProfileUI.js +20 -19
- package/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +20 -19
- package/EditUserProfile.js.map +1 -1
- package/GroupChannel/components/FileViewer.js +26 -25
- 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 -58
- package/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/GroupChannel/components/Message.js +49 -50
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +45 -61
- package/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/GroupChannel/components/MessageList.js +58 -53
- package/GroupChannel/components/MessageList.js.map +1 -1
- package/GroupChannel/components/RemoveMessageModal.js +25 -24
- 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 -8
- package/GroupChannel/context.js +9 -9
- package/GroupChannel.js +57 -58
- package/GroupChannel.js.map +1 -1
- package/GroupChannelList/components/AddGroupChannel.js +23 -24
- package/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/GroupChannelList/components/GroupChannelListItem.js +29 -28
- package/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListUI.js +37 -38
- package/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/GroupChannelList/components/GroupChannelPreviewAction.js +14 -15
- package/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +37 -38
- package/GroupChannelList.js.map +1 -1
- package/MessageSearch/components/MessageSearchUI.js +15 -15
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +17 -17
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +23 -22
- package/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/OpenChannel/components/OpenChannelInput.js +29 -28
- package/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessage.js +36 -37
- package/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessageList.js +42 -43
- package/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/OpenChannel/components/OpenChannelUI.js +42 -43
- package/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/OpenChannel/context.js +22 -21
- package/OpenChannel/context.js.map +1 -1
- package/OpenChannel.js +40 -41
- package/OpenChannel.js.map +1 -1
- package/OpenChannelList/components/OpenChannelListUI.js +21 -20
- package/OpenChannelList/components/OpenChannelListUI.js.map +1 -1
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +21 -20
- package/OpenChannelList.js.map +1 -1
- package/OpenChannelSettings/components/EditDetailsModal.js +22 -21
- package/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelProfile.js +22 -21
- package/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +23 -24
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/OpenChannelSettings/components/OperatorUI.js +22 -23
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +19 -20
- package/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +22 -23
- package/OpenChannelSettings.js.map +1 -1
- package/SendbirdProvider.js +109 -108
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +45 -45
- package/Thread/components/ParentMessageInfoItem.js +31 -30
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +50 -50
- package/Thread/components/ThreadListItem.js +51 -51
- package/Thread/components/ThreadMessageInput.js +45 -44
- package/Thread/components/ThreadMessageInput.js.map +1 -1
- package/Thread/components/ThreadUI.js +57 -57
- package/Thread/context.js +9 -9
- package/Thread.js +57 -57
- package/VoicePlayer/context.js +4 -4
- package/VoicePlayer/useVoicePlayer.js +16 -15
- package/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/VoiceRecorder/context.js +16 -15
- package/VoiceRecorder/context.js.map +1 -1
- package/VoiceRecorder/useVoiceRecorder.js +16 -15
- package/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/chunks/{bundle-D3QfP61V.js → bundle-5suIscWh.js} +1 -1
- package/chunks/bundle-5suIscWh.js.map +1 -0
- package/chunks/{bundle-Djjm3Uvp.js → bundle-8B42nAj_.js} +2 -2
- package/chunks/bundle-8B42nAj_.js.map +1 -0
- package/chunks/{bundle-B1j0RBSY.js → bundle-A2r1XSkU.js} +2 -2
- package/chunks/bundle-A2r1XSkU.js.map +1 -0
- package/chunks/{bundle-BjawE8kS.js → bundle-B9dVXusF.js} +2 -2
- package/chunks/{bundle-BjawE8kS.js.map → bundle-B9dVXusF.js.map} +1 -1
- package/chunks/{bundle-B9YjA2kE.js → bundle-BBF0XCpb.js} +2 -2
- package/chunks/{bundle-B9YjA2kE.js.map → bundle-BBF0XCpb.js.map} +1 -1
- package/chunks/{bundle-DntyeaUa.js → bundle-BH16nLFs.js} +3 -3
- package/chunks/{bundle-DntyeaUa.js.map → bundle-BH16nLFs.js.map} +1 -1
- package/chunks/bundle-BSk0V4c7.js +69 -0
- package/chunks/bundle-BSk0V4c7.js.map +1 -0
- package/chunks/{bundle-BDVMQbBW.js → bundle-BTrGLGPQ.js} +5 -5
- package/chunks/{bundle-BDVMQbBW.js.map → bundle-BTrGLGPQ.js.map} +1 -1
- package/chunks/{bundle-DPKDvBjV.js → bundle-BXf_Uoav.js} +1 -1
- package/chunks/bundle-BXf_Uoav.js.map +1 -0
- package/chunks/{bundle-CJ8jo8ld.js → bundle-BZ0pRqJA.js} +34 -12
- package/chunks/{bundle-CJ8jo8ld.js.map → bundle-BZ0pRqJA.js.map} +1 -1
- package/chunks/{bundle-Dbrz-SZu.js → bundle-BhXBD0er.js} +2 -2
- package/chunks/bundle-BhXBD0er.js.map +1 -0
- package/chunks/{bundle-B69jleUo.js → bundle-Bimk6g75.js} +6 -2
- package/chunks/bundle-Bimk6g75.js.map +1 -0
- package/chunks/{bundle-6WkrZ6GC.js → bundle-BlCc7_eN.js} +3 -3
- package/chunks/bundle-BlCc7_eN.js.map +1 -0
- package/chunks/{bundle-MYFPG74z.js → bundle-Bng2gjGI.js} +3 -3
- package/chunks/{bundle-MYFPG74z.js.map → bundle-Bng2gjGI.js.map} +1 -1
- package/chunks/{bundle-C9dq6ZD4.js → bundle-Bq0-bOfM.js} +5 -5
- package/chunks/{bundle-C9dq6ZD4.js.map → bundle-Bq0-bOfM.js.map} +1 -1
- package/chunks/{bundle-B5HpGUWF.js → bundle-BqDr8EF4.js} +3 -3
- package/chunks/bundle-BqDr8EF4.js.map +1 -0
- package/chunks/{bundle-VweMT7yw.js → bundle-BuZc1iHN.js} +6 -6
- package/chunks/bundle-BuZc1iHN.js.map +1 -0
- package/chunks/{bundle-BF1Qctol.js → bundle-Bv0mCrgn.js} +11 -11
- package/chunks/{bundle-BF1Qctol.js.map → bundle-Bv0mCrgn.js.map} +1 -1
- package/chunks/{bundle-8PdqOmx2.js → bundle-Bx3HwK0O.js} +1 -1
- package/chunks/bundle-Bx3HwK0O.js.map +1 -0
- package/chunks/{bundle-oZzTj33R.js → bundle-C20oLMaA.js} +1 -1
- package/chunks/bundle-C20oLMaA.js.map +1 -0
- package/chunks/{bundle-BTW8xwJY.js → bundle-CB91svgK.js} +1 -1
- package/chunks/bundle-CB91svgK.js.map +1 -0
- package/chunks/{bundle-D6XlG_Vn.js → bundle-CENilyRu.js} +2 -2
- package/chunks/bundle-CENilyRu.js.map +1 -0
- package/chunks/{bundle-ChLVGsVc.js → bundle-CExXoiRc.js} +1 -1
- package/chunks/bundle-CExXoiRc.js.map +1 -0
- package/chunks/{bundle-Bn6qVQdD.js → bundle-CK_XaTIr.js} +3 -3
- package/chunks/{bundle-Bn6qVQdD.js.map → bundle-CK_XaTIr.js.map} +1 -1
- package/chunks/{bundle-BPtW84KW.js → bundle-CNHyfb7V.js} +1 -1
- package/chunks/{bundle-BPtW84KW.js.map → bundle-CNHyfb7V.js.map} +1 -1
- package/chunks/{bundle-NlCI0Va_.js → bundle-CNPvqIMP.js} +1 -1
- package/chunks/bundle-CNPvqIMP.js.map +1 -0
- package/chunks/{bundle-CjJYXpzL.js → bundle-CNlWxKpF.js} +2 -2
- package/chunks/bundle-CNlWxKpF.js.map +1 -0
- package/chunks/{bundle-DeZiTTFB.js → bundle-CSldjYVo.js} +1 -1
- package/chunks/bundle-CSldjYVo.js.map +1 -0
- package/chunks/{bundle-Cj5JMK7Q.js → bundle-CT6oIowo.js} +1 -1
- package/chunks/bundle-CT6oIowo.js.map +1 -0
- package/chunks/{bundle-Cl4yYhxx.js → bundle-CTGooW1o.js} +11 -11
- package/chunks/{bundle-Cl4yYhxx.js.map → bundle-CTGooW1o.js.map} +1 -1
- package/chunks/{bundle-BVEvbzBV.js → bundle-CUa9CREe.js} +1 -1
- package/chunks/bundle-CUa9CREe.js.map +1 -0
- package/chunks/{bundle-h5uBMqdB.js → bundle-CUld9h31.js} +1 -1
- package/chunks/bundle-CUld9h31.js.map +1 -0
- package/chunks/{bundle-CymNo3WD.js → bundle-CdRIsiQ1.js} +1 -1
- package/chunks/bundle-CdRIsiQ1.js.map +1 -0
- package/chunks/{bundle-DNIpksmH.js → bundle-CeB984LL.js} +1 -1
- package/chunks/bundle-CeB984LL.js.map +1 -0
- package/chunks/{bundle-C7f1DHyg.js → bundle-CjreAsCZ.js} +1 -1
- package/chunks/bundle-CjreAsCZ.js.map +1 -0
- package/chunks/{bundle-DkjDKNtY.js → bundle-CmPOY9Ut.js} +4 -4
- package/chunks/bundle-CmPOY9Ut.js.map +1 -0
- package/chunks/{bundle-D7HK_nEb.js → bundle-Co8Cn-Xy.js} +1 -1
- package/chunks/bundle-Co8Cn-Xy.js.map +1 -0
- package/chunks/{bundle-BQvIS2hV.js → bundle-CpnV1F7K.js} +4 -4
- package/chunks/{bundle-BQvIS2hV.js.map → bundle-CpnV1F7K.js.map} +1 -1
- package/chunks/{bundle-DKD06bkH.js → bundle-CsH_9kWB.js} +9 -9
- package/chunks/{bundle-DKD06bkH.js.map → bundle-CsH_9kWB.js.map} +1 -1
- package/chunks/{bundle-BUiKw2Xz.js → bundle-Cu1sEVqy.js} +5 -5
- package/{cjs/chunks/bundle-CTbmyNxr.js.map → chunks/bundle-Cu1sEVqy.js.map} +1 -1
- package/chunks/{bundle-BqUF9DSr.js → bundle-Cu9lMiME.js} +7 -7
- package/chunks/{bundle-BqUF9DSr.js.map → bundle-Cu9lMiME.js.map} +1 -1
- package/chunks/{bundle-YMAJHrkr.js → bundle-D2r4zv_u.js} +5 -5
- package/chunks/bundle-D2r4zv_u.js.map +1 -0
- package/chunks/{bundle-iw1p3kR6.js → bundle-D3FJrZKH.js} +1 -1
- package/chunks/bundle-D3FJrZKH.js.map +1 -0
- package/chunks/{bundle-CJ0gnHtN.js → bundle-D7eYnlgm.js} +1 -1
- package/chunks/{bundle-CJ0gnHtN.js.map → bundle-D7eYnlgm.js.map} +1 -1
- package/chunks/{bundle-CNntTHc2.js → bundle-DBC1lykB.js} +1 -1
- package/chunks/bundle-DBC1lykB.js.map +1 -0
- package/chunks/{bundle-BRMIsbFP.js → bundle-DDA3KytI.js} +4 -4
- package/chunks/{bundle-BRMIsbFP.js.map → bundle-DDA3KytI.js.map} +1 -1
- package/chunks/{bundle-DED8zFWK.js → bundle-DFHJryqD.js} +6 -6
- package/chunks/bundle-DFHJryqD.js.map +1 -0
- package/chunks/{bundle-C6NL2rIx.js → bundle-DHgDkkn9.js} +1 -1
- package/chunks/bundle-DHgDkkn9.js.map +1 -0
- package/chunks/{bundle-qivrTGrV.js → bundle-DIOwxpcG.js} +2 -2
- package/chunks/bundle-DIOwxpcG.js.map +1 -0
- package/chunks/{bundle-CP4szzas.js → bundle-DKbR0B7W.js} +1 -1
- package/chunks/{bundle-CP4szzas.js.map → bundle-DKbR0B7W.js.map} +1 -1
- package/chunks/{bundle-CEPVxLI6.js → bundle-DM_G8NqJ.js} +9 -9
- package/chunks/{bundle-CEPVxLI6.js.map → bundle-DM_G8NqJ.js.map} +1 -1
- package/chunks/{bundle-DHfnVt9S.js → bundle-DNCQ4u5R.js} +3 -3
- package/chunks/bundle-DNCQ4u5R.js.map +1 -0
- package/chunks/{bundle-Bl7LZU7k.js → bundle-DTdZiBrv.js} +16 -15
- package/{cjs/chunks/bundle-CipNL1nH.js.map → chunks/bundle-DTdZiBrv.js.map} +1 -1
- package/chunks/bundle-DVk-GxJm.js +35 -0
- package/chunks/bundle-DVk-GxJm.js.map +1 -0
- package/chunks/{bundle-DLSqJtw7.js → bundle-DYYQHn6P.js} +4 -4
- package/chunks/bundle-DYYQHn6P.js.map +1 -0
- package/chunks/{bundle-Dk_le87C.js → bundle-D_CNS70y.js} +4 -4
- package/chunks/bundle-D_CNS70y.js.map +1 -0
- package/chunks/bundle-DelNZG3a.js +215 -0
- package/chunks/bundle-DelNZG3a.js.map +1 -0
- package/chunks/{bundle-BjRVnEt2.js → bundle-DgahgsvJ.js} +3 -3
- package/chunks/{bundle-BjRVnEt2.js.map → bundle-DgahgsvJ.js.map} +1 -1
- package/chunks/{bundle-DExTOIEC.js → bundle-DjH4PXg3.js} +2 -2
- package/chunks/bundle-DjH4PXg3.js.map +1 -0
- package/chunks/{bundle-DxoQxJce.js → bundle-DlZQhmnG.js} +6 -6
- package/chunks/bundle-DlZQhmnG.js.map +1 -0
- package/chunks/{bundle-DJ72fQy-.js → bundle-DmIUQle9.js} +1 -1
- package/chunks/bundle-DmIUQle9.js.map +1 -0
- package/chunks/{bundle-bP-B5oUs.js → bundle-DmtJDvJO.js} +1 -1
- package/chunks/bundle-DmtJDvJO.js.map +1 -0
- package/chunks/{bundle-DV9a2cbl.js → bundle-DuX-Qk0N.js} +4 -4
- package/chunks/bundle-DuX-Qk0N.js.map +1 -0
- package/chunks/{bundle-DyLTHcXb.js → bundle-DwvKuCVj.js} +1 -1
- package/chunks/bundle-DwvKuCVj.js.map +1 -0
- package/chunks/{bundle-D7iwt9t3.js → bundle-DzOZbhBa.js} +8 -8
- package/chunks/{bundle-D7iwt9t3.js.map → bundle-DzOZbhBa.js.map} +1 -1
- package/chunks/{bundle-RF00I10F.js → bundle-DzwfznTL.js} +11 -11
- package/chunks/{bundle-RF00I10F.js.map → bundle-DzwfznTL.js.map} +1 -1
- package/chunks/{bundle-D6dnQXfh.js → bundle-HjRXtQVk.js} +8 -8
- package/chunks/bundle-HjRXtQVk.js.map +1 -0
- package/chunks/{bundle-BLtZDfBw.js → bundle-JEz3lgaG.js} +1 -1
- package/chunks/bundle-JEz3lgaG.js.map +1 -0
- package/chunks/{bundle-Cj4fyKiq.js → bundle-LJTd2kwV.js} +1 -1
- package/chunks/bundle-LJTd2kwV.js.map +1 -0
- package/chunks/{bundle-Bmi-ESIg.js → bundle-PaTjZoup.js} +1 -1
- package/chunks/bundle-PaTjZoup.js.map +1 -0
- package/chunks/{bundle-BoPCJB2N.js → bundle-QVgZ7Hdj.js} +3 -3
- package/chunks/{bundle-BoPCJB2N.js.map → bundle-QVgZ7Hdj.js.map} +1 -1
- package/chunks/{bundle-D4tV1HWB.js → bundle-S6HEUDHq.js} +1 -1
- package/chunks/bundle-S6HEUDHq.js.map +1 -0
- package/chunks/{bundle-CEJvyLWs.js → bundle-WXF4CSL3.js} +1 -1
- package/chunks/bundle-WXF4CSL3.js.map +1 -0
- package/chunks/{bundle-FlpX_Kua.js → bundle-YLpFZFtY.js} +1 -1
- package/chunks/{bundle-FlpX_Kua.js.map → bundle-YLpFZFtY.js.map} +1 -1
- package/chunks/{bundle-CnfTwxdb.js → bundle-_eyrDcfG.js} +82 -5
- package/{cjs/chunks/bundle-B1hq-4rM.js.map → chunks/bundle-_eyrDcfG.js.map} +1 -1
- package/chunks/bundle-bkcMncK1.js +368 -0
- package/chunks/{bundle-Bl7LZU7k.js.map → bundle-bkcMncK1.js.map} +1 -1
- package/chunks/{bundle-D5fZI6wu.js → bundle-cyqCJOXP.js} +1 -1
- package/chunks/bundle-cyqCJOXP.js.map +1 -0
- package/chunks/{bundle-CNOIDdgc.js → bundle-e2HPSZbM.js} +4 -4
- package/chunks/{bundle-CNOIDdgc.js.map → bundle-e2HPSZbM.js.map} +1 -1
- package/chunks/{bundle-EgukjrKu.js → bundle-ifQmTDw0.js} +10 -10
- package/chunks/bundle-ifQmTDw0.js.map +1 -0
- package/chunks/{bundle-C24BBg-c.js → bundle-l7d8-RbZ.js} +3 -3
- package/chunks/bundle-l7d8-RbZ.js.map +1 -0
- package/chunks/{bundle-ZiboK-fO.js → bundle-se1hgaQ-.js} +106 -13
- package/chunks/bundle-se1hgaQ-.js.map +1 -0
- package/chunks/{bundle-Bq9EiMSo.js → bundle-w4CjbNCf.js} +2 -2
- package/chunks/bundle-w4CjbNCf.js.map +1 -0
- package/cjs/App.js +80 -79
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +31 -31
- package/cjs/Channel/components/ChannelUI.js +64 -65
- package/cjs/Channel/components/ChannelUI.js.map +1 -1
- package/cjs/Channel/components/FileViewer.js +32 -31
- package/cjs/Channel/components/FileViewer.js.map +1 -1
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +54 -55
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +50 -57
- package/cjs/Channel/components/MessageInput.js.map +1 -1
- package/cjs/Channel/components/MessageInputWrapper.js +48 -47
- package/cjs/Channel/components/MessageInputWrapper.js.map +1 -1
- package/cjs/Channel/components/MessageList.js +57 -58
- package/cjs/Channel/components/MessageList.js.map +1 -1
- package/cjs/Channel/components/RemoveMessageModal.js +31 -30
- package/cjs/Channel/components/RemoveMessageModal.js.map +1 -1
- package/cjs/Channel/components/SuggestedMentionList.js +28 -28
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +8 -8
- package/cjs/Channel/context.js +20 -20
- package/cjs/Channel/hooks/useHandleUploadFiles.js +18 -17
- package/cjs/Channel/hooks/useHandleUploadFiles.js.map +1 -1
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/cjs/Channel/utils/getMessagePartsInfo.js +7 -7
- package/cjs/Channel.js +64 -65
- package/cjs/Channel.js.map +1 -1
- package/cjs/ChannelList/components/AddChannel.js +24 -25
- package/cjs/ChannelList/components/AddChannel.js.map +1 -1
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +37 -38
- package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreview.js +31 -30
- package/cjs/ChannelList/components/ChannelPreview.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreviewAction.js +14 -15
- package/cjs/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/cjs/ChannelList/context.js +11 -11
- package/cjs/ChannelList.js +38 -39
- package/cjs/ChannelList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelProfile.js +21 -20
- package/cjs/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +26 -27
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/cjs/ChannelSettings/components/EditDetailsModal.js +21 -20
- package/cjs/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/ChannelSettings/components/LeaveChannel.js +18 -17
- package/cjs/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/cjs/ChannelSettings/components/ModerationPanel.js +22 -23
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/cjs/ChannelSettings/components/UserListItem.js +14 -15
- package/cjs/ChannelSettings/components/UserListItem.js.map +1 -1
- package/cjs/ChannelSettings/components/UserPanel.js +22 -23
- package/cjs/ChannelSettings/components/UserPanel.js.map +1 -1
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +26 -27
- package/cjs/ChannelSettings.js.map +1 -1
- package/cjs/CreateChannel/components/CreateChannelUI.js +21 -22
- package/cjs/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/cjs/CreateChannel/components/InviteUsers.js +21 -22
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +18 -17
- package/cjs/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +21 -22
- package/cjs/CreateChannel.js.map +1 -1
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +19 -18
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +19 -18
- package/cjs/CreateOpenChannel.js.map +1 -1
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +20 -19
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +20 -19
- package/cjs/EditUserProfile.js.map +1 -1
- package/cjs/GroupChannel/components/FileViewer.js +26 -25
- 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 -58
- package/cjs/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/cjs/GroupChannel/components/Message.js +49 -50
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +44 -60
- package/cjs/GroupChannel/components/MessageInputWrapper.js.map +1 -1
- package/cjs/GroupChannel/components/MessageList.js +58 -53
- package/cjs/GroupChannel/components/MessageList.js.map +1 -1
- package/cjs/GroupChannel/components/RemoveMessageModal.js +25 -24
- 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 -8
- package/cjs/GroupChannel/context.js +9 -9
- package/cjs/GroupChannel.js +57 -58
- package/cjs/GroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/AddGroupChannel.js +23 -24
- package/cjs/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +29 -28
- package/cjs/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +37 -38
- package/cjs/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +14 -15
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +37 -38
- package/cjs/GroupChannelList.js.map +1 -1
- package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +17 -17
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +23 -22
- package/cjs/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelInput.js +29 -28
- package/cjs/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessage.js +36 -37
- package/cjs/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +42 -43
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +42 -43
- package/cjs/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/cjs/OpenChannel/context.js +22 -21
- package/cjs/OpenChannel/context.js.map +1 -1
- package/cjs/OpenChannel.js +40 -41
- package/cjs/OpenChannel.js.map +1 -1
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +21 -20
- 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 +21 -20
- package/cjs/OpenChannelList.js.map +1 -1
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +22 -21
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +22 -21
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +23 -24
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OperatorUI.js +22 -23
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +19 -20
- package/cjs/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +22 -23
- package/cjs/OpenChannelSettings.js.map +1 -1
- package/cjs/SendbirdProvider.js +109 -108
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +45 -45
- package/cjs/Thread/components/ParentMessageInfoItem.js +31 -30
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +50 -50
- package/cjs/Thread/components/ThreadListItem.js +51 -51
- package/cjs/Thread/components/ThreadMessageInput.js +45 -44
- package/cjs/Thread/components/ThreadMessageInput.js.map +1 -1
- package/cjs/Thread/components/ThreadUI.js +57 -57
- package/cjs/Thread/context.js +9 -9
- package/cjs/Thread.js +57 -57
- package/cjs/VoicePlayer/context.js +4 -4
- package/cjs/VoicePlayer/useVoicePlayer.js +16 -15
- package/cjs/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/cjs/VoiceRecorder/context.js +16 -15
- package/cjs/VoiceRecorder/context.js.map +1 -1
- package/cjs/VoiceRecorder/useVoiceRecorder.js +16 -15
- package/cjs/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/cjs/chunks/{bundle-BLkDiR3M.js → bundle-2ujy0Asq.js} +2 -2
- package/cjs/chunks/bundle-2ujy0Asq.js.map +1 -0
- package/cjs/chunks/{bundle-DyvEE0Lk.js → bundle-6kGpS9J5.js} +1 -1
- package/cjs/chunks/bundle-6kGpS9J5.js.map +1 -0
- package/cjs/chunks/{bundle-D8vNcXzc.js → bundle-7ZAMcgtS.js} +1 -1
- package/cjs/chunks/bundle-7ZAMcgtS.js.map +1 -0
- package/cjs/chunks/bundle-7bBl8kFn.js +217 -0
- package/cjs/chunks/bundle-7bBl8kFn.js.map +1 -0
- package/cjs/chunks/{bundle-JQ5xow8l.js → bundle-8BvxeS8W.js} +1 -1
- package/cjs/chunks/bundle-8BvxeS8W.js.map +1 -0
- package/cjs/chunks/{bundle-DVyMctAJ.js → bundle-AvhIe9aa.js} +5 -5
- package/{chunks/bundle-BUiKw2Xz.js.map → cjs/chunks/bundle-AvhIe9aa.js.map} +1 -1
- package/cjs/chunks/{bundle-3Lee_erF.js → bundle-B-LZZD0l.js} +2 -2
- package/cjs/chunks/bundle-B-LZZD0l.js.map +1 -0
- package/cjs/chunks/{bundle-B53D04fr.js → bundle-B1HrIqoy.js} +4 -4
- package/cjs/chunks/{bundle-B53D04fr.js.map → bundle-B1HrIqoy.js.map} +1 -1
- package/cjs/chunks/{bundle-BCnJcW56.js → bundle-B3H3XrhQ.js} +1 -1
- package/cjs/chunks/bundle-B3H3XrhQ.js.map +1 -0
- package/cjs/chunks/{bundle-DxKssKSv.js → bundle-BHI75BT4.js} +1 -1
- package/cjs/chunks/bundle-BHI75BT4.js.map +1 -0
- package/cjs/chunks/{bundle-DbS6156o.js → bundle-BU0AQyM-.js} +9 -9
- package/cjs/chunks/{bundle-DbS6156o.js.map → bundle-BU0AQyM-.js.map} +1 -1
- package/cjs/chunks/{bundle-TkDnHuTM.js → bundle-BUaIciw0.js} +3 -3
- package/cjs/chunks/{bundle-TkDnHuTM.js.map → bundle-BUaIciw0.js.map} +1 -1
- package/cjs/chunks/{bundle-P59hALmY.js → bundle-BVK4ppI2.js} +4 -4
- package/cjs/chunks/bundle-BVK4ppI2.js.map +1 -0
- package/cjs/chunks/{bundle-Q7zAmA8R.js → bundle-BW9GG7kp.js} +1 -1
- package/cjs/chunks/bundle-BW9GG7kp.js.map +1 -0
- package/cjs/chunks/{bundle-OttDND5C.js → bundle-BWXKtpvo.js} +6 -6
- package/cjs/chunks/bundle-BWXKtpvo.js.map +1 -0
- package/cjs/chunks/{bundle-Cbm5xPAD.js → bundle-BapLXIgi.js} +82 -4
- package/{chunks/bundle-DyJeNv3Y.js.map → cjs/chunks/bundle-BapLXIgi.js.map} +1 -1
- package/cjs/chunks/{bundle-UV1SVyDV.js → bundle-BfUOGj5b.js} +1 -1
- package/cjs/chunks/bundle-BfUOGj5b.js.map +1 -0
- package/cjs/chunks/{bundle-Czhss6xB.js → bundle-BhClvZOU.js} +1 -1
- package/cjs/chunks/{bundle-Czhss6xB.js.map → bundle-BhClvZOU.js.map} +1 -1
- package/cjs/chunks/{bundle-BY8BAZNm.js → bundle-BoVc1U1a.js} +4 -4
- package/cjs/chunks/{bundle-BY8BAZNm.js.map → bundle-BoVc1U1a.js.map} +1 -1
- package/cjs/chunks/{bundle-BlS2bdI-.js → bundle-Boc_dyK4.js} +1 -1
- package/cjs/chunks/bundle-Boc_dyK4.js.map +1 -0
- package/cjs/chunks/{bundle-C_vVIDF8.js → bundle-Bot6eEM6.js} +3 -3
- package/cjs/chunks/{bundle-C_vVIDF8.js.map → bundle-Bot6eEM6.js.map} +1 -1
- package/cjs/chunks/{bundle-DyVsDCif.js → bundle-BplDq0mq.js} +1 -1
- package/cjs/chunks/bundle-BplDq0mq.js.map +1 -0
- package/cjs/chunks/{bundle-yeLmdqBe.js → bundle-BtSKhSvX.js} +1 -1
- package/cjs/chunks/bundle-BtSKhSvX.js.map +1 -0
- package/cjs/chunks/{bundle-D6QZU38i.js → bundle-Bx2NBJSG.js} +5 -5
- package/{chunks/bundle-D4w7NQSK.js.map → cjs/chunks/bundle-Bx2NBJSG.js.map} +1 -1
- package/cjs/chunks/{bundle-BgT1wVpf.js → bundle-Bzg43KEj.js} +2 -2
- package/cjs/chunks/bundle-Bzg43KEj.js.map +1 -0
- package/cjs/chunks/{bundle-CR9JOCdA.js → bundle-BzlnyS95.js} +10 -10
- package/cjs/chunks/bundle-BzlnyS95.js.map +1 -0
- package/cjs/chunks/{bundle-CV-TUbyq.js → bundle-C4uNbRfV.js} +2 -2
- package/cjs/chunks/bundle-C4uNbRfV.js.map +1 -0
- package/cjs/chunks/{bundle-DBpzudbn.js → bundle-CDWSB7nU.js} +8 -8
- package/cjs/chunks/bundle-CDWSB7nU.js.map +1 -0
- package/cjs/chunks/{bundle-bIXh7yeI.js → bundle-CDnHMUZu.js} +8 -8
- package/cjs/chunks/{bundle-bIXh7yeI.js.map → bundle-CDnHMUZu.js.map} +1 -1
- package/cjs/chunks/bundle-CIkfoqlq.js +40 -0
- package/cjs/chunks/bundle-CIkfoqlq.js.map +1 -0
- package/cjs/chunks/{bundle-CK0jTdKT.js → bundle-CJTaxunC.js} +3 -3
- package/cjs/chunks/bundle-CJTaxunC.js.map +1 -0
- package/cjs/chunks/{bundle-Cd3_oZtc.js → bundle-CL0YmYh3.js} +2 -2
- package/cjs/chunks/bundle-CL0YmYh3.js.map +1 -0
- package/cjs/chunks/{bundle-BXZBnaOj.js → bundle-CMUxhnsA.js} +34 -12
- package/cjs/chunks/{bundle-BXZBnaOj.js.map → bundle-CMUxhnsA.js.map} +1 -1
- package/cjs/chunks/{bundle-B7fEbbUv.js → bundle-CO36Q3X2.js} +1 -1
- package/cjs/chunks/bundle-CO36Q3X2.js.map +1 -0
- package/cjs/chunks/{bundle-D5ESahgs.js → bundle-COyzsE6d.js} +106 -12
- package/cjs/chunks/bundle-COyzsE6d.js.map +1 -0
- package/cjs/chunks/{bundle-BjBreEbR.js → bundle-CPwINN5n.js} +1 -1
- package/cjs/chunks/bundle-CPwINN5n.js.map +1 -0
- package/cjs/chunks/{bundle--thJgTNM.js → bundle-CSf78qge.js} +1 -1
- package/cjs/chunks/bundle-CSf78qge.js.map +1 -0
- package/cjs/chunks/{bundle-adWpPN7T.js → bundle-CVg_YIhP.js} +1 -1
- package/cjs/chunks/bundle-CVg_YIhP.js.map +1 -0
- package/cjs/chunks/{bundle-Cj28CPZo.js → bundle-CVwB8G1I.js} +1 -1
- package/cjs/chunks/bundle-CVwB8G1I.js.map +1 -0
- package/cjs/chunks/{bundle-DeU1C8Ho.js → bundle-CWoHu9t0.js} +1 -1
- package/cjs/chunks/{bundle-DeU1C8Ho.js.map → bundle-CWoHu9t0.js.map} +1 -1
- package/cjs/chunks/{bundle-DI0E5swF.js → bundle-CYIQLQ3l.js} +2 -2
- package/cjs/chunks/bundle-CYIQLQ3l.js.map +1 -0
- package/cjs/chunks/{bundle-UqeJXlnC.js → bundle-CZ9QB5qN.js} +1 -1
- package/cjs/chunks/bundle-CZ9QB5qN.js.map +1 -0
- package/cjs/chunks/{bundle-Cu9ertSY.js → bundle-CdtcOWKE.js} +1 -1
- package/cjs/chunks/bundle-CdtcOWKE.js.map +1 -0
- package/cjs/chunks/{bundle-DmVLueId.js → bundle-CebiKkyn.js} +11 -11
- package/cjs/chunks/bundle-CebiKkyn.js.map +1 -0
- package/cjs/chunks/{bundle-CipNL1nH.js → bundle-Cecz3QbJ.js} +16 -15
- package/cjs/chunks/bundle-Cecz3QbJ.js.map +1 -0
- package/cjs/chunks/{bundle-B7xQOpuC.js → bundle-Ch_pAI0r.js} +1 -1
- package/cjs/chunks/bundle-Ch_pAI0r.js.map +1 -0
- package/cjs/chunks/{bundle-Cgb-aH3c.js → bundle-Cj_Ehg89.js} +4 -4
- package/cjs/chunks/{bundle-Cgb-aH3c.js.map → bundle-Cj_Ehg89.js.map} +1 -1
- package/cjs/chunks/{bundle-omkWL_yx.js → bundle-Ck6xvF19.js} +1 -1
- package/cjs/chunks/bundle-Ck6xvF19.js.map +1 -0
- package/cjs/chunks/{bundle-DmlWP851.js → bundle-CpCBPJ2z.js} +9 -9
- package/cjs/chunks/{bundle-DmlWP851.js.map → bundle-CpCBPJ2z.js.map} +1 -1
- package/cjs/chunks/{bundle-B1hq-4rM.js → bundle-CuQfKsO_.js} +11 -11
- package/cjs/chunks/{bundle-BXe4xn_P.js.map → bundle-CuQfKsO_.js.map} +1 -1
- package/cjs/chunks/{bundle-OhKkPJ9u.js → bundle-Cxe_rmKT.js} +6 -6
- package/cjs/chunks/bundle-Cxe_rmKT.js.map +1 -0
- package/cjs/chunks/{bundle-CQyskBQI.js → bundle-CyN2-yzv.js} +2 -2
- package/cjs/chunks/{bundle-CQyskBQI.js.map → bundle-CyN2-yzv.js.map} +1 -1
- package/cjs/chunks/{bundle-gMLusDcA.js → bundle-D-RACIZM.js} +1 -1
- package/cjs/chunks/bundle-D-RACIZM.js.map +1 -0
- package/cjs/chunks/{bundle-C1_VEq6O.js → bundle-D47V4Obt.js} +4 -4
- package/cjs/chunks/bundle-D47V4Obt.js.map +1 -0
- package/cjs/chunks/{bundle-CnP-VOZt.js → bundle-D4JztsBF.js} +1 -1
- package/cjs/chunks/bundle-D4JztsBF.js.map +1 -0
- package/cjs/chunks/{bundle-jtkxAxiF.js → bundle-D4mbk6I8.js} +4 -4
- package/cjs/chunks/{bundle-jtkxAxiF.js.map → bundle-D4mbk6I8.js.map} +1 -1
- package/cjs/chunks/bundle-D8yzgwQq.js +370 -0
- package/cjs/chunks/bundle-D8yzgwQq.js.map +1 -0
- package/cjs/chunks/{bundle-CV7G8_Ga.js → bundle-DCTSWuu7.js} +1 -1
- package/cjs/chunks/bundle-DCTSWuu7.js.map +1 -0
- package/cjs/chunks/{bundle-Sd-aNKBP.js → bundle-DEPVIREe.js} +3 -3
- package/cjs/chunks/bundle-DEPVIREe.js.map +1 -0
- package/cjs/chunks/{bundle-CaqoKauf.js → bundle-DFMKBWZ-.js} +3 -3
- package/cjs/chunks/bundle-DFMKBWZ-.js.map +1 -0
- package/cjs/chunks/{bundle-Cm4mKjJC.js → bundle-DH_1RL2d.js} +1 -1
- package/cjs/chunks/bundle-DH_1RL2d.js.map +1 -0
- package/cjs/chunks/bundle-DJYmo2fi.js +71 -0
- package/cjs/chunks/bundle-DJYmo2fi.js.map +1 -0
- package/cjs/chunks/{bundle-Dgvl16T5.js → bundle-DM_pqxu2.js} +3 -3
- package/cjs/chunks/bundle-DM_pqxu2.js.map +1 -0
- package/cjs/chunks/{bundle-DER9c3s0.js → bundle-DO5hLS-7.js} +11 -11
- package/cjs/chunks/{bundle-DER9c3s0.js.map → bundle-DO5hLS-7.js.map} +1 -1
- package/cjs/chunks/{bundle-Bu1qFmv3.js → bundle-DQg6x_7w.js} +3 -3
- package/cjs/chunks/{bundle-Bu1qFmv3.js.map → bundle-DQg6x_7w.js.map} +1 -1
- package/cjs/chunks/{bundle-dIEeb6rZ.js → bundle-DSk_ov0w.js} +1 -1
- package/cjs/chunks/bundle-DSk_ov0w.js.map +1 -0
- package/cjs/chunks/{bundle-ArHePt5L.js → bundle-DUYGmcBc.js} +6 -6
- package/cjs/chunks/bundle-DUYGmcBc.js.map +1 -0
- package/cjs/chunks/{bundle-6iJcxaLf.js → bundle-DW0GVQbx.js} +1 -1
- package/cjs/chunks/bundle-DW0GVQbx.js.map +1 -0
- package/cjs/chunks/{bundle-CzWWCBR5.js → bundle-DgmZoB_W.js} +3 -3
- package/cjs/chunks/bundle-DgmZoB_W.js.map +1 -0
- package/cjs/chunks/{bundle-C110EIIw.js → bundle-Dl8ZJaN5.js} +2 -2
- package/cjs/chunks/bundle-Dl8ZJaN5.js.map +1 -0
- package/cjs/chunks/{bundle-BPTY00aT.js → bundle-Dq_BfgEB.js} +1 -1
- package/cjs/chunks/bundle-Dq_BfgEB.js.map +1 -0
- package/cjs/chunks/{bundle-BptTCjHy.js → bundle-Du4-Q-XI.js} +1 -1
- package/cjs/chunks/bundle-Du4-Q-XI.js.map +1 -0
- package/cjs/chunks/{bundle-DYSiI91E.js → bundle-DwjDowlR.js} +4 -4
- package/cjs/chunks/bundle-DwjDowlR.js.map +1 -0
- package/cjs/chunks/{bundle-OqSDlDRJ.js → bundle-EkV09OtG.js} +1 -1
- package/cjs/chunks/bundle-EkV09OtG.js.map +1 -0
- package/cjs/chunks/{bundle--XokcQjb.js → bundle-FWmDID1m.js} +7 -7
- package/cjs/chunks/bundle-FWmDID1m.js.map +1 -0
- package/cjs/chunks/{bundle-C3ksBG4T.js → bundle-Jcyr7oF2.js} +5 -5
- package/cjs/chunks/bundle-Jcyr7oF2.js.map +1 -0
- package/cjs/chunks/{bundle-yfvZEtYq.js → bundle-V3A8AaNp.js} +1 -1
- package/cjs/chunks/bundle-V3A8AaNp.js.map +1 -0
- package/cjs/chunks/{bundle-CxL5O87m.js → bundle-aMF7cjjX.js} +4 -4
- package/cjs/chunks/bundle-aMF7cjjX.js.map +1 -0
- package/cjs/chunks/{bundle-XT1tEfQ5.js → bundle-mUzftbki.js} +6 -1
- package/cjs/chunks/bundle-mUzftbki.js.map +1 -0
- package/cjs/chunks/{bundle-DO7nak8K.js → bundle-pbHgulpn.js} +3 -3
- package/cjs/chunks/bundle-pbHgulpn.js.map +1 -0
- package/cjs/chunks/{bundle-BIrUIrya.js → bundle-qn9zfxlD.js} +1 -1
- package/cjs/chunks/bundle-qn9zfxlD.js.map +1 -0
- package/cjs/chunks/{bundle-Bbf2DLSP.js → bundle-vMl-hjKf.js} +1 -1
- package/cjs/chunks/bundle-vMl-hjKf.js.map +1 -0
- package/cjs/hooks/useModal.js +16 -15
- package/cjs/hooks/useModal.js.map +1 -1
- package/cjs/index.js +85 -84
- 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 +16 -15
- 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 +113 -15
- package/cjs/ui/ContextMenu.js.map +1 -1
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +20 -21
- package/cjs/ui/EmojiReactions.js.map +1 -1
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +19 -18
- 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 +14 -15
- package/cjs/ui/MentionLabel.js.map +1 -1
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +102 -61
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +17 -16
- package/cjs/ui/MessageFeedbackFailedModal.js.map +1 -1
- package/cjs/ui/MessageFeedbackModal.js +17 -16
- package/cjs/ui/MessageFeedbackModal.js.map +1 -1
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +17 -16
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +11 -12
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +13 -21
- package/cjs/ui/MessageItemReactionMenu.js.map +1 -1
- package/cjs/ui/MessageMenu.js +35 -0
- package/cjs/ui/MessageMenu.js.map +1 -0
- package/cjs/ui/MessageSearchFileItem.js +15 -15
- package/cjs/ui/MessageSearchItem.js +12 -12
- package/cjs/ui/MessageStatus.js +13 -13
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +16 -15
- package/cjs/ui/MobileFeedbackMenu.js.map +1 -1
- package/cjs/ui/Modal.js +16 -15
- package/cjs/ui/Modal.js.map +1 -1
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +22 -21
- 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 +19 -20
- package/cjs/ui/OpenchannelFileMessage.js.map +1 -1
- package/cjs/ui/OpenchannelOGMessage.js +21 -22
- package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
- package/cjs/ui/OpenchannelThumbnailMessage.js +18 -19
- package/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/cjs/ui/OpenchannelUserMessage.js +19 -20
- 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 -10
- package/cjs/ui/QuoteMessageInput.js +10 -10
- 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 -10
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +20 -19
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +8 -8
- 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 -8
- package/cjs/ui/UserListItem.js +14 -15
- 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 -15
- package/cjs/ui/VoiceMessageItemBody.js.map +1 -1
- package/cjs/ui/Word.js +15 -16
- package/cjs/ui/Word.js.map +1 -1
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +4 -4
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +34 -2
- package/hooks/useModal.js +16 -15
- package/hooks/useModal.js.map +1 -1
- package/index.js +85 -84
- package/index.js.map +1 -1
- package/package.json +12 -3
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/hooks/useElementObserver.d.ts +2 -0
- package/types/lib/hooks/useTheme.d.ts +2 -1
- package/types/lib/types.d.ts +1 -0
- package/types/lib/utils/colorMapper.d.ts +31 -0
- package/types/modules/GroupChannel/context/utils.d.ts +1 -0
- package/types/modules/Message/utils/tokens/asSafeURL.d.ts +1 -0
- package/types/modules/Message/utils/tokens/tokenize.d.ts +11 -1
- package/types/modules/Message/utils/tokens/types.d.ts +9 -1
- package/types/ui/ContextMenu/EmojiListItems.d.ts +2 -1
- package/types/ui/ContextMenu/MenuItems.d.ts +1 -0
- package/types/ui/ContextMenu/index.d.ts +5 -1
- package/types/ui/MessageContent/index.d.ts +1 -1
- package/types/ui/MessageItemReactionMenu/index.d.ts +1 -2
- package/types/ui/MessageMenu/MessageMenu.d.ts +37 -0
- package/types/ui/MessageMenu/MessageMenuProvider.d.ts +34 -0
- package/types/ui/MessageMenu/index.d.ts +4 -0
- package/types/ui/MessageMenu/menuItems/BasicItems.d.ts +11 -0
- package/types/ui/MessageMenu/menuItems/BottomSheetMenuItems.d.ts +9 -0
- package/types/ui/MessageMenu/menuItems/MessageMenuItems.d.ts +18 -0
- package/types/ui/MessageMenu/menuItems/MobileMenuItems.d.ts +9 -0
- package/types/ui/MobileMenu/types.d.ts +7 -1
- package/types/ui/OGMessageItemBody/index.d.ts +2 -1
- package/types/ui/TextMessageItemBody/index.d.ts +2 -1
- package/types/utils/menuConditions.d.ts +24 -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 +16 -15
- 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 +109 -15
- package/ui/ContextMenu.js.map +1 -1
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +20 -21
- package/ui/EmojiReactions.js.map +1 -1
- package/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +19 -18
- 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 +14 -15
- package/ui/MentionLabel.js.map +1 -1
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +103 -62
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +17 -16
- package/ui/MessageFeedbackFailedModal.js.map +1 -1
- package/ui/MessageFeedbackModal.js +17 -16
- package/ui/MessageFeedbackModal.js.map +1 -1
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +17 -16
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +11 -12
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +14 -22
- package/ui/MessageItemReactionMenu.js.map +1 -1
- package/ui/MessageMenu.js +25 -0
- package/ui/MessageMenu.js.map +1 -0
- package/ui/MessageSearchFileItem.js +15 -15
- package/ui/MessageSearchItem.js +12 -12
- package/ui/MessageStatus.js +13 -13
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +16 -15
- package/ui/MobileFeedbackMenu.js.map +1 -1
- package/ui/Modal.js +16 -15
- package/ui/Modal.js.map +1 -1
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +22 -21
- 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 +19 -20
- package/ui/OpenchannelFileMessage.js.map +1 -1
- package/ui/OpenchannelOGMessage.js +21 -22
- package/ui/OpenchannelOGMessage.js.map +1 -1
- package/ui/OpenchannelThumbnailMessage.js +18 -19
- package/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/ui/OpenchannelUserMessage.js +19 -20
- 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 -10
- package/ui/QuoteMessageInput.js +10 -10
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +10 -10
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +20 -19
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +8 -8
- 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 -8
- package/ui/UserListItem.js +14 -15
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +16 -15
- package/ui/VoiceMessageItemBody.js.map +1 -1
- package/ui/Word.js +15 -16
- package/ui/Word.js.map +1 -1
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +4 -4
- package/withSendbird.js +1 -1
- package/chunks/bundle-6WkrZ6GC.js.map +0 -1
- package/chunks/bundle-8PdqOmx2.js.map +0 -1
- package/chunks/bundle-B1j0RBSY.js.map +0 -1
- package/chunks/bundle-B5HpGUWF.js.map +0 -1
- package/chunks/bundle-B69jleUo.js.map +0 -1
- package/chunks/bundle-BLtZDfBw.js.map +0 -1
- package/chunks/bundle-BTW8xwJY.js.map +0 -1
- package/chunks/bundle-BVEvbzBV.js.map +0 -1
- package/chunks/bundle-Bmi-ESIg.js.map +0 -1
- package/chunks/bundle-Bq9EiMSo.js.map +0 -1
- package/chunks/bundle-C24BBg-c.js.map +0 -1
- package/chunks/bundle-C6NL2rIx.js.map +0 -1
- package/chunks/bundle-C7f1DHyg.js.map +0 -1
- package/chunks/bundle-CEJvyLWs.js.map +0 -1
- package/chunks/bundle-CNntTHc2.js.map +0 -1
- package/chunks/bundle-ChLVGsVc.js.map +0 -1
- package/chunks/bundle-Cj4fyKiq.js.map +0 -1
- package/chunks/bundle-Cj5JMK7Q.js.map +0 -1
- package/chunks/bundle-CjJYXpzL.js.map +0 -1
- package/chunks/bundle-CnfTwxdb.js.map +0 -1
- package/chunks/bundle-CymNo3WD.js.map +0 -1
- package/chunks/bundle-D3QfP61V.js.map +0 -1
- package/chunks/bundle-D4tV1HWB.js.map +0 -1
- package/chunks/bundle-D4w7NQSK.js +0 -95
- package/chunks/bundle-D5fZI6wu.js.map +0 -1
- package/chunks/bundle-D6XlG_Vn.js.map +0 -1
- package/chunks/bundle-D6dnQXfh.js.map +0 -1
- package/chunks/bundle-D7HK_nEb.js.map +0 -1
- package/chunks/bundle-DED8zFWK.js.map +0 -1
- package/chunks/bundle-DExTOIEC.js.map +0 -1
- package/chunks/bundle-DHfnVt9S.js.map +0 -1
- package/chunks/bundle-DJ72fQy-.js.map +0 -1
- package/chunks/bundle-DLSqJtw7.js.map +0 -1
- package/chunks/bundle-DNIpksmH.js.map +0 -1
- package/chunks/bundle-DPKDvBjV.js.map +0 -1
- package/chunks/bundle-DV9a2cbl.js.map +0 -1
- package/chunks/bundle-DZhrQ9kO.js +0 -36
- package/chunks/bundle-DZhrQ9kO.js.map +0 -1
- package/chunks/bundle-Dbrz-SZu.js.map +0 -1
- package/chunks/bundle-DeZiTTFB.js.map +0 -1
- package/chunks/bundle-Djjm3Uvp.js.map +0 -1
- package/chunks/bundle-Dk_le87C.js.map +0 -1
- package/chunks/bundle-DkjDKNtY.js.map +0 -1
- package/chunks/bundle-DxoQxJce.js.map +0 -1
- package/chunks/bundle-DyJeNv3Y.js +0 -229
- package/chunks/bundle-DyLTHcXb.js.map +0 -1
- package/chunks/bundle-EgukjrKu.js.map +0 -1
- package/chunks/bundle-NlCI0Va_.js.map +0 -1
- package/chunks/bundle-VweMT7yw.js.map +0 -1
- package/chunks/bundle-YMAJHrkr.js.map +0 -1
- package/chunks/bundle-ZiboK-fO.js.map +0 -1
- package/chunks/bundle-bP-B5oUs.js.map +0 -1
- package/chunks/bundle-h5uBMqdB.js.map +0 -1
- package/chunks/bundle-iw1p3kR6.js.map +0 -1
- package/chunks/bundle-oZzTj33R.js.map +0 -1
- package/chunks/bundle-qivrTGrV.js.map +0 -1
- package/cjs/chunks/bundle--XokcQjb.js.map +0 -1
- package/cjs/chunks/bundle--thJgTNM.js.map +0 -1
- package/cjs/chunks/bundle-3Lee_erF.js.map +0 -1
- package/cjs/chunks/bundle-6iJcxaLf.js.map +0 -1
- package/cjs/chunks/bundle-ArHePt5L.js.map +0 -1
- package/cjs/chunks/bundle-B7fEbbUv.js.map +0 -1
- package/cjs/chunks/bundle-B7xQOpuC.js.map +0 -1
- package/cjs/chunks/bundle-BCnJcW56.js.map +0 -1
- package/cjs/chunks/bundle-BIrUIrya.js.map +0 -1
- package/cjs/chunks/bundle-BLkDiR3M.js.map +0 -1
- package/cjs/chunks/bundle-BPTY00aT.js.map +0 -1
- package/cjs/chunks/bundle-BXe4xn_P.js +0 -231
- package/cjs/chunks/bundle-Bbf2DLSP.js.map +0 -1
- package/cjs/chunks/bundle-BgT1wVpf.js.map +0 -1
- package/cjs/chunks/bundle-BjBreEbR.js.map +0 -1
- package/cjs/chunks/bundle-BlS2bdI-.js.map +0 -1
- package/cjs/chunks/bundle-BptTCjHy.js.map +0 -1
- package/cjs/chunks/bundle-C110EIIw.js.map +0 -1
- package/cjs/chunks/bundle-C1_VEq6O.js.map +0 -1
- package/cjs/chunks/bundle-C3ksBG4T.js.map +0 -1
- package/cjs/chunks/bundle-CK0jTdKT.js.map +0 -1
- package/cjs/chunks/bundle-CR9JOCdA.js.map +0 -1
- package/cjs/chunks/bundle-CTbmyNxr.js +0 -97
- package/cjs/chunks/bundle-CV-TUbyq.js.map +0 -1
- package/cjs/chunks/bundle-CV7G8_Ga.js.map +0 -1
- package/cjs/chunks/bundle-CaqoKauf.js.map +0 -1
- package/cjs/chunks/bundle-Cbm5xPAD.js.map +0 -1
- package/cjs/chunks/bundle-Cd3_oZtc.js.map +0 -1
- package/cjs/chunks/bundle-Cj28CPZo.js.map +0 -1
- package/cjs/chunks/bundle-Cm4mKjJC.js.map +0 -1
- package/cjs/chunks/bundle-CnP-VOZt.js.map +0 -1
- package/cjs/chunks/bundle-Cu9ertSY.js.map +0 -1
- package/cjs/chunks/bundle-CxL5O87m.js.map +0 -1
- package/cjs/chunks/bundle-CzWWCBR5.js.map +0 -1
- package/cjs/chunks/bundle-D5ESahgs.js.map +0 -1
- package/cjs/chunks/bundle-D6QZU38i.js.map +0 -1
- package/cjs/chunks/bundle-D8vNcXzc.js.map +0 -1
- package/cjs/chunks/bundle-DBpzudbn.js.map +0 -1
- package/cjs/chunks/bundle-DI0E5swF.js.map +0 -1
- package/cjs/chunks/bundle-DO7nak8K.js.map +0 -1
- package/cjs/chunks/bundle-DVyMctAJ.js.map +0 -1
- package/cjs/chunks/bundle-DYSiI91E.js.map +0 -1
- package/cjs/chunks/bundle-Dgvl16T5.js.map +0 -1
- package/cjs/chunks/bundle-DmVLueId.js.map +0 -1
- package/cjs/chunks/bundle-DxKssKSv.js.map +0 -1
- package/cjs/chunks/bundle-DyVsDCif.js.map +0 -1
- package/cjs/chunks/bundle-DyvEE0Lk.js.map +0 -1
- package/cjs/chunks/bundle-JQ5xow8l.js.map +0 -1
- package/cjs/chunks/bundle-OhKkPJ9u.js.map +0 -1
- package/cjs/chunks/bundle-OqSDlDRJ.js.map +0 -1
- package/cjs/chunks/bundle-OttDND5C.js.map +0 -1
- package/cjs/chunks/bundle-P59hALmY.js.map +0 -1
- package/cjs/chunks/bundle-Q7zAmA8R.js.map +0 -1
- package/cjs/chunks/bundle-Sd-aNKBP.js.map +0 -1
- package/cjs/chunks/bundle-UV1SVyDV.js.map +0 -1
- package/cjs/chunks/bundle-UqeJXlnC.js.map +0 -1
- package/cjs/chunks/bundle-XT1tEfQ5.js.map +0 -1
- package/cjs/chunks/bundle-adWpPN7T.js.map +0 -1
- package/cjs/chunks/bundle-dIEeb6rZ.js.map +0 -1
- package/cjs/chunks/bundle-gMLusDcA.js.map +0 -1
- package/cjs/chunks/bundle-omkWL_yx.js.map +0 -1
- package/cjs/chunks/bundle-r1Fdh11n.js +0 -38
- package/cjs/chunks/bundle-r1Fdh11n.js.map +0 -1
- package/cjs/chunks/bundle-yeLmdqBe.js.map +0 -1
- package/cjs/chunks/bundle-yfvZEtYq.js.map +0 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React__default, { createContext, useContext } from 'react';
|
|
2
|
+
import { c as classnames } from './bundle-CdRIsiQ1.js';
|
|
3
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-BlCc7_eN.js';
|
|
4
|
+
|
|
5
|
+
var MessageMenuContext = createContext(undefined);
|
|
6
|
+
var MessageMenuProvider = function (_a) {
|
|
7
|
+
var children = _a.children, value = _a.value;
|
|
8
|
+
return (React__default.createElement(MessageMenuContext.Provider, { value: value }, children));
|
|
9
|
+
};
|
|
10
|
+
var useMessageMenuContext = function () {
|
|
11
|
+
var context = useContext(MessageMenuContext);
|
|
12
|
+
if (!context) {
|
|
13
|
+
throw new Error('useMessageMenuContext must be used within a MessageMenuProvider');
|
|
14
|
+
}
|
|
15
|
+
return context;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
var MenuItem = function (_a) {
|
|
19
|
+
var className = _a.className, disabled = _a.disabled, _b = _a.tabIndex, tabIndex = _b === void 0 ? 0 : _b, testID = _a.testID, onClick = _a.onClick, children = _a.children;
|
|
20
|
+
var handleClickEvent = function (e) {
|
|
21
|
+
if (!disabled && onClick) {
|
|
22
|
+
onClick(e);
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
return (React__default.createElement("li", { className: classnames('sendbird-menu-item', className), role: "menuitem", "aria-disabled": disabled, "data-testid": testID, tabIndex: tabIndex, onClick: handleClickEvent, onKeyDown: function (e) { if (e.code === 'Enter')
|
|
26
|
+
handleClickEvent(e); } },
|
|
27
|
+
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_2, color: disabled ? LabelColors.ONBACKGROUND_4 : LabelColors.ONBACKGROUND_1 }, children)));
|
|
28
|
+
};
|
|
29
|
+
var BottomSheetMenuItem = function (_a) {
|
|
30
|
+
var className = _a.className, _b = _a.disabled, disabled = _b === void 0 ? false : _b, _c = _a.tabIndex, tabIndex = _c === void 0 ? 0 : _c, testID = _a.testID, onClick = _a.onClick, children = _a.children;
|
|
31
|
+
return (React__default.createElement("div", { className: classnames('sendbird-message__bottomsheet--action', className), role: "menuitem", tabIndex: tabIndex, "aria-disabled": disabled, onClick: onClick, "data-testid": testID }, children));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export { BottomSheetMenuItem as B, MessageMenuProvider as M, MenuItem as a, useMessageMenuContext as u };
|
|
35
|
+
//# sourceMappingURL=bundle-DVk-GxJm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DVk-GxJm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DIOwxpcG.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
4
|
-
import { d as defaultLocale } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-CNHyfb7V.js';
|
|
4
|
+
import { d as defaultLocale } from './bundle-D7eYnlgm.js';
|
|
5
5
|
|
|
6
6
|
var LocalizationContextDefault = {
|
|
7
7
|
stringSet: getStringSet('en'),
|
|
@@ -15,4 +15,4 @@ var LocalizationProvider = function (props) {
|
|
|
15
15
|
var useLocalization = function () { return React__default.useContext(LocalizationContext); };
|
|
16
16
|
|
|
17
17
|
export { LocalizationContext as L, LocalizationProvider as a, useLocalization as u };
|
|
18
|
-
//# sourceMappingURL=bundle-
|
|
18
|
+
//# sourceMappingURL=bundle-DYYQHn6P.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DYYQHn6P.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-DIOwxpcG.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import ImageRenderer from '../ui/ImageRenderer.js';
|
|
4
|
-
import { p as pxToNumber } from './bundle-
|
|
4
|
+
import { p as pxToNumber } from './bundle-LJTd2kwV.js';
|
|
5
5
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
6
|
-
import { c as classnames } from './bundle-
|
|
6
|
+
import { c as classnames } from './bundle-CdRIsiQ1.js';
|
|
7
7
|
|
|
8
8
|
var AvatarDefault = function (props) {
|
|
9
9
|
var width = props.width, height = props.height, text = props.text;
|
|
@@ -68,4 +68,4 @@ function Avatar(_a, ref) {
|
|
|
68
68
|
var Avatar$1 = React__default.forwardRef(Avatar);
|
|
69
69
|
|
|
70
70
|
export { Avatar$1 as A, AvatarDefault as a, AvatarInner as b };
|
|
71
|
-
//# sourceMappingURL=bundle-
|
|
71
|
+
//# sourceMappingURL=bundle-D_CNS70y.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D_CNS70y.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import React__default, { useRef, useState } from 'react';
|
|
2
|
+
import { n as noop, c as classnames } from './bundle-CdRIsiQ1.js';
|
|
3
|
+
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
4
|
+
import { MenuItems, getObservingId } from '../ui/ContextMenu.js';
|
|
5
|
+
import { _ as __assign } from './bundle-DIOwxpcG.js';
|
|
6
|
+
import IconButton from '../ui/IconButton.js';
|
|
7
|
+
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
8
|
+
import { l as isUserMessage, x as copyToClipboard, u as isFailedMessage, q as isSentMessage, v as isPendingMessage } from './bundle-Bq0-bOfM.js';
|
|
9
|
+
import { u as useLocalization } from './bundle-DYYQHn6P.js';
|
|
10
|
+
import { u as useMessageMenuContext, a as MenuItem, M as MessageMenuProvider } from './bundle-DVk-GxJm.js';
|
|
11
|
+
import { Role } from '@sendbird/chat';
|
|
12
|
+
|
|
13
|
+
var TriggerIcon = function (_a) {
|
|
14
|
+
var ref = _a.ref, _b = _a.onClick, onClick = _b === void 0 ? noop : _b, _c = _a.onBlur, onBlur = _c === void 0 ? noop : _c, _d = _a.renderIcon, renderIcon = _d === void 0 ? function (props) { return React__default.createElement(Icon, __assign({}, props)); } : _d;
|
|
15
|
+
return (React__default.createElement(IconButton, { ref: ref, width: "32px", height: "32px", onClick: onClick, onBlur: onBlur }, renderIcon({
|
|
16
|
+
type: IconTypes.MORE,
|
|
17
|
+
fillColor: IconColors.CONTENT_INVERSE,
|
|
18
|
+
width: '24px',
|
|
19
|
+
height: '24px',
|
|
20
|
+
})));
|
|
21
|
+
};
|
|
22
|
+
var CopyMenuItem = function (props) {
|
|
23
|
+
var _a;
|
|
24
|
+
var stringSet = useLocalization().stringSet;
|
|
25
|
+
var _b = useMessageMenuContext(), message = _b.message, hideMenu = _b.hideMenu;
|
|
26
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { onClick: function (e) {
|
|
27
|
+
var _a;
|
|
28
|
+
if (isUserMessage(message))
|
|
29
|
+
copyToClipboard(message.message);
|
|
30
|
+
hideMenu();
|
|
31
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
32
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__COPY));
|
|
33
|
+
};
|
|
34
|
+
var ReplyMenuItem = function (props) {
|
|
35
|
+
var _a;
|
|
36
|
+
var stringSet = useLocalization().stringSet;
|
|
37
|
+
var _b = useMessageMenuContext(), message = _b.message, hideMenu = _b.hideMenu, setQuoteMessage = _b.setQuoteMessage;
|
|
38
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { disabled: message.parentMessageId > 0, onClick: function (e) {
|
|
39
|
+
var _a;
|
|
40
|
+
setQuoteMessage(message);
|
|
41
|
+
hideMenu();
|
|
42
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
43
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__REPLY));
|
|
44
|
+
};
|
|
45
|
+
var ThreadMenuItem = function (props) {
|
|
46
|
+
var _a;
|
|
47
|
+
var stringSet = useLocalization().stringSet;
|
|
48
|
+
var _b = useMessageMenuContext(), message = _b.message, hideMenu = _b.hideMenu, onReplyInThread = _b.onReplyInThread;
|
|
49
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { onClick: function (e) {
|
|
50
|
+
var _a;
|
|
51
|
+
onReplyInThread({ message: message });
|
|
52
|
+
hideMenu();
|
|
53
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
54
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__THREAD));
|
|
55
|
+
};
|
|
56
|
+
var OpenInChannelMenuItem = function (props) {
|
|
57
|
+
var _a;
|
|
58
|
+
var stringSet = useLocalization().stringSet;
|
|
59
|
+
var _b = useMessageMenuContext(), hideMenu = _b.hideMenu, onMoveToParentMessage = _b.onMoveToParentMessage;
|
|
60
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { onClick: function (e) {
|
|
61
|
+
var _a;
|
|
62
|
+
onMoveToParentMessage();
|
|
63
|
+
hideMenu();
|
|
64
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
65
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__OPEN_IN_CHANNEL));
|
|
66
|
+
};
|
|
67
|
+
var EditMenuItem = function (props) {
|
|
68
|
+
var _a;
|
|
69
|
+
var stringSet = useLocalization().stringSet;
|
|
70
|
+
var _b = useMessageMenuContext(), hideMenu = _b.hideMenu, showEdit = _b.showEdit, isOnline = _b.isOnline;
|
|
71
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { onClick: function (e) {
|
|
72
|
+
var _a;
|
|
73
|
+
if (isOnline) {
|
|
74
|
+
showEdit(true);
|
|
75
|
+
hideMenu();
|
|
76
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
77
|
+
}
|
|
78
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__EDIT));
|
|
79
|
+
};
|
|
80
|
+
var ResendMenuItem = function (props) {
|
|
81
|
+
var _a;
|
|
82
|
+
var stringSet = useLocalization().stringSet;
|
|
83
|
+
var _b = useMessageMenuContext(), message = _b.message, hideMenu = _b.hideMenu, resendMessage = _b.resendMessage, isOnline = _b.isOnline;
|
|
84
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { onClick: function (e) {
|
|
85
|
+
var _a;
|
|
86
|
+
if (isOnline) {
|
|
87
|
+
resendMessage(message);
|
|
88
|
+
hideMenu();
|
|
89
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
90
|
+
}
|
|
91
|
+
} }), (_a = props.children) !== null && _a !== void 0 ? _a : stringSet.MESSAGE_MENU__RESEND));
|
|
92
|
+
};
|
|
93
|
+
var DeleteMenuItem = function (props) {
|
|
94
|
+
var _a, _b, _c;
|
|
95
|
+
var stringSet = useLocalization().stringSet;
|
|
96
|
+
var _d = useMessageMenuContext(), message = _d.message, hideMenu = _d.hideMenu, deleteMessage = _d.deleteMessage, showRemove = _d.showRemove, isOnline = _d.isOnline, disableDeleteMessage = _d.disableDeleteMessage;
|
|
97
|
+
return (React__default.createElement(MenuItem, __assign({}, props, { disabled: typeof disableDeleteMessage === 'boolean'
|
|
98
|
+
? disableDeleteMessage
|
|
99
|
+
: ((_b = (_a = message.threadInfo) === null || _a === void 0 ? void 0 : _a.replyCount) !== null && _b !== void 0 ? _b : 0) > 0, onClick: function (e) {
|
|
100
|
+
var _a;
|
|
101
|
+
if (isFailedMessage(message)) {
|
|
102
|
+
deleteMessage(message);
|
|
103
|
+
}
|
|
104
|
+
else if (isOnline) {
|
|
105
|
+
showRemove(true);
|
|
106
|
+
hideMenu();
|
|
107
|
+
(_a = props.onClick) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
108
|
+
}
|
|
109
|
+
} }), (_c = props.children) !== null && _c !== void 0 ? _c : stringSet.MESSAGE_MENU__DELETE));
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
var isReplyTypeMessageEnabled = function (_a) {
|
|
113
|
+
var _b;
|
|
114
|
+
var channel = _a.channel, message = _a.message;
|
|
115
|
+
if (isFailedMessage(message) || isPendingMessage(message)) {
|
|
116
|
+
return false;
|
|
117
|
+
}
|
|
118
|
+
if (!((_b = channel === null || channel === void 0 ? void 0 : channel.isGroupChannel) === null || _b === void 0 ? void 0 : _b.call(channel)) || (channel === null || channel === void 0 ? void 0 : channel.isEphemeral)) {
|
|
119
|
+
return false;
|
|
120
|
+
}
|
|
121
|
+
var isBroadcast = channel === null || channel === void 0 ? void 0 : channel.isBroadcast;
|
|
122
|
+
var isOperator = (channel === null || channel === void 0 ? void 0 : channel.myRole) === Role.OPERATOR;
|
|
123
|
+
if (isBroadcast)
|
|
124
|
+
return isOperator;
|
|
125
|
+
return true;
|
|
126
|
+
};
|
|
127
|
+
var showMenuItemCopy = function (_a) {
|
|
128
|
+
var message = _a.message;
|
|
129
|
+
return isUserMessage(message);
|
|
130
|
+
};
|
|
131
|
+
var showMenuItemEdit = function (_a) {
|
|
132
|
+
var message = _a.message, channel = _a.channel, isByMe = _a.isByMe;
|
|
133
|
+
return (!(channel === null || channel === void 0 ? void 0 : channel.isEphemeral) && isUserMessage(message) && isSentMessage(message) && isByMe);
|
|
134
|
+
};
|
|
135
|
+
var showMenuItemResend = function (_a) {
|
|
136
|
+
var message = _a.message, isByMe = _a.isByMe;
|
|
137
|
+
return (isFailedMessage(message) && (message === null || message === void 0 ? void 0 : message.isResendable) && isByMe);
|
|
138
|
+
};
|
|
139
|
+
var showMenuItemDelete = function (_a) {
|
|
140
|
+
var message = _a.message, channel = _a.channel, isByMe = _a.isByMe;
|
|
141
|
+
return !(channel === null || channel === void 0 ? void 0 : channel.isEphemeral) && !isPendingMessage(message) && isByMe;
|
|
142
|
+
};
|
|
143
|
+
var showMenuItemOpenInChannel = function (_a) {
|
|
144
|
+
var _b = _a.onMoveToParentMessage, onMoveToParentMessage = _b === void 0 ? undefined : _b;
|
|
145
|
+
return !!onMoveToParentMessage;
|
|
146
|
+
};
|
|
147
|
+
var showMenuItemReply = function (_a) {
|
|
148
|
+
var channel = _a.channel, message = _a.message, replyType = _a.replyType;
|
|
149
|
+
return isReplyTypeMessageEnabled({ channel: channel, message: message }) && replyType === 'QUOTE_REPLY';
|
|
150
|
+
};
|
|
151
|
+
var showMenuItemThread = function (_a) {
|
|
152
|
+
var channel = _a.channel, message = _a.message, replyType = _a.replyType, onReplyInThread = _a.onReplyInThread;
|
|
153
|
+
return isReplyTypeMessageEnabled({ channel: channel, message: message }) && replyType === 'THREAD' && !(message === null || message === void 0 ? void 0 : message.parentMessageId) && typeof onReplyInThread === 'function';
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
var MessageMenu = function (_a) {
|
|
157
|
+
var _b;
|
|
158
|
+
var className = _a.className, message = _a.message, channel = _a.channel, isByMe = _a.isByMe, replyType = _a.replyType, _c = _a.renderTrigger, renderTrigger = _c === void 0 ? TriggerIcon : _c, renderMenuItems = _a.renderMenuItems, _d = _a.disableDeleteMessage, disableDeleteMessage = _d === void 0 ? null : _d, _e = _a.showEdit, showEdit = _e === void 0 ? noop : _e, _f = _a.showRemove, showRemove = _f === void 0 ? noop : _f, deleteMessage = _a.deleteMessage, resendMessage = _a.resendMessage, setQuoteMessage = _a.setQuoteMessage, onReplyInThread = _a.onReplyInThread, onMoveToParentMessage = _a.onMoveToParentMessage;
|
|
159
|
+
var config = useSendbirdStateContext().config;
|
|
160
|
+
var isOnline = config.isOnline;
|
|
161
|
+
var triggerRef = useRef(null);
|
|
162
|
+
var containerRef = useRef(null);
|
|
163
|
+
var _g = useState(false), isMenuVisible = _g[0], setMenuVisibility = _g[1];
|
|
164
|
+
var hideMenu = function () { return setMenuVisibility(false); };
|
|
165
|
+
var showMenu = function () { return setMenuVisibility(true); };
|
|
166
|
+
var toggleMenu = function () { return setMenuVisibility(function (visible) { return !visible; }); };
|
|
167
|
+
var params = {
|
|
168
|
+
message: message,
|
|
169
|
+
channel: channel,
|
|
170
|
+
isByMe: isByMe,
|
|
171
|
+
replyType: replyType,
|
|
172
|
+
onReplyInThread: onReplyInThread,
|
|
173
|
+
onMoveToParentMessage: onMoveToParentMessage,
|
|
174
|
+
};
|
|
175
|
+
return (React__default.createElement("div", { className: classnames('sendbird-message-menu', className), ref: containerRef },
|
|
176
|
+
React__default.createElement(MessageMenuProvider, { value: {
|
|
177
|
+
message: message,
|
|
178
|
+
hideMenu: hideMenu,
|
|
179
|
+
showMenu: showMenu,
|
|
180
|
+
toggleMenu: toggleMenu,
|
|
181
|
+
setQuoteMessage: setQuoteMessage,
|
|
182
|
+
onReplyInThread: onReplyInThread,
|
|
183
|
+
onMoveToParentMessage: onMoveToParentMessage,
|
|
184
|
+
showEdit: showEdit,
|
|
185
|
+
showRemove: showRemove,
|
|
186
|
+
deleteMessage: deleteMessage,
|
|
187
|
+
resendMessage: resendMessage,
|
|
188
|
+
isOnline: isOnline,
|
|
189
|
+
disableDeleteMessage: disableDeleteMessage,
|
|
190
|
+
triggerRef: triggerRef,
|
|
191
|
+
containerRef: containerRef,
|
|
192
|
+
} },
|
|
193
|
+
(renderTrigger({ ref: triggerRef, onClick: toggleMenu })),
|
|
194
|
+
isMenuVisible && (React__default.createElement(MenuItems, { id: getObservingId(message.messageId), parentRef: triggerRef, parentContainRef: containerRef, closeDropdown: hideMenu, openLeft: isByMe }, (_b = renderMenuItems === null || renderMenuItems === void 0 ? void 0 : renderMenuItems({
|
|
195
|
+
items: {
|
|
196
|
+
CopyMenuItem: CopyMenuItem,
|
|
197
|
+
ReplyMenuItem: ReplyMenuItem,
|
|
198
|
+
ThreadMenuItem: ThreadMenuItem,
|
|
199
|
+
OpenInChannelMenuItem: OpenInChannelMenuItem,
|
|
200
|
+
EditMenuItem: EditMenuItem,
|
|
201
|
+
ResendMenuItem: ResendMenuItem,
|
|
202
|
+
DeleteMenuItem: DeleteMenuItem,
|
|
203
|
+
},
|
|
204
|
+
})) !== null && _b !== void 0 ? _b : (React__default.createElement(React__default.Fragment, null,
|
|
205
|
+
showMenuItemCopy(params) && React__default.createElement(CopyMenuItem, null),
|
|
206
|
+
showMenuItemReply(params) && React__default.createElement(ReplyMenuItem, null),
|
|
207
|
+
showMenuItemThread(params) && React__default.createElement(ThreadMenuItem, null),
|
|
208
|
+
showMenuItemOpenInChannel(params) && React__default.createElement(OpenInChannelMenuItem, null),
|
|
209
|
+
showMenuItemEdit(params) && React__default.createElement(EditMenuItem, null),
|
|
210
|
+
showMenuItemResend(params) && React__default.createElement(ResendMenuItem, null),
|
|
211
|
+
showMenuItemDelete(params) && React__default.createElement(DeleteMenuItem, null))))))));
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
export { MessageMenu as M };
|
|
215
|
+
//# sourceMappingURL=bundle-DelNZG3a.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DelNZG3a.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConnectionHandler } from '@sendbird/chat';
|
|
2
2
|
import { useState, useEffect, useLayoutEffect, useMemo } from 'react';
|
|
3
|
-
import { u as uuidv4 } from './bundle-
|
|
4
|
-
import { a as __awaiter, b as __generator } from './bundle-
|
|
3
|
+
import { u as uuidv4 } from './bundle-CjreAsCZ.js';
|
|
4
|
+
import { a as __awaiter, b as __generator } from './bundle-DIOwxpcG.js';
|
|
5
5
|
|
|
6
6
|
function useOnlineStatus(sdk, logger) {
|
|
7
7
|
var _a, _b;
|
|
@@ -194,4 +194,4 @@ function useMarkAsDeliveredScheduler(_a, _b) {
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
export { useMarkAsDeliveredScheduler as a, useUnmount as b, schedulerFactory as s, useOnlineStatus as u };
|
|
197
|
-
//# sourceMappingURL=bundle-
|
|
197
|
+
//# sourceMappingURL=bundle-DgahgsvJ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DgahgsvJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -36,5 +36,5 @@ var CACHED_MESSAGE_TEMPLATES_TOKEN_KEY = 'sendbird_message_templates_token_key';
|
|
|
36
36
|
// Local storage item key for templates in JSON string form
|
|
37
37
|
var CACHED_MESSAGE_TEMPLATES_KEY = 'sendbird_message_templates_key';
|
|
38
38
|
|
|
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,
|
|
40
|
-
//# 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_MESSAGE_FILE_NAME__XM4A as j, VOICE_MESSAGE_MIME_TYPE__XM4A as k, VOICE_PLAYER_ROOT_ID as l, SLIDER_BUTTON_ICON_SIDE_LENGTH as m, VOICE_RECORDER_AUDIO_BIT_RATE 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-DjH4PXg3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DjH4PXg3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DIOwxpcG.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-BhXBD0er.js';
|
|
6
|
+
import { u as useMediaQueryContext } from './bundle-5suIscWh.js';
|
|
7
7
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
8
|
-
import { u as useLocalization } from './bundle-
|
|
8
|
+
import { u as useLocalization } from './bundle-DYYQHn6P.js';
|
|
9
9
|
import Header from '../ui/Header.js';
|
|
10
|
-
import { c as classnames } from './bundle-
|
|
10
|
+
import { c as classnames } from './bundle-CdRIsiQ1.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-DlZQhmnG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DlZQhmnG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -39,4 +39,4 @@ var PUBSUB_TOPICS;
|
|
|
39
39
|
var pubSubTopics = PUBSUB_TOPICS;
|
|
40
40
|
|
|
41
41
|
export { PublishingModuleType as P, shouldPubSubPublishToThread as a, PUBSUB_TOPICS as b, pubSubTopics as p, shouldPubSubPublishToChannel as s };
|
|
42
|
-
//# sourceMappingURL=bundle-
|
|
42
|
+
//# sourceMappingURL=bundle-DmIUQle9.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DmIUQle9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DmtJDvJO.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as SCROLL_BUFFER } from './bundle-
|
|
2
|
-
import { u as useThrottleCallback } from './bundle-
|
|
3
|
-
import { i as isAboutSame } from './bundle-
|
|
1
|
+
import { S as SCROLL_BUFFER } from './bundle-DjH4PXg3.js';
|
|
2
|
+
import { u as useThrottleCallback } from './bundle-Co8Cn-Xy.js';
|
|
3
|
+
import { i as isAboutSame } from './bundle-CENilyRu.js';
|
|
4
4
|
import { usePreservedCallback } from '@sendbird/uikit-tools';
|
|
5
5
|
|
|
6
6
|
var DELAY = 100;
|
|
@@ -50,4 +50,4 @@ function useHandleOnScrollCallback(_a) {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
export { useHandleOnScrollCallback as u };
|
|
53
|
-
//# sourceMappingURL=bundle-
|
|
53
|
+
//# sourceMappingURL=bundle-DuX-Qk0N.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DuX-Qk0N.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DwvKuCVj.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,
|
|
7
|
+
import { c as __spreadArray, a as __awaiter, b as __generator, d as __rest } from './bundle-DIOwxpcG.js';
|
|
8
8
|
import { Role } from '@sendbird/chat';
|
|
9
|
-
import { M as Modal } from './bundle-
|
|
9
|
+
import { M as Modal } from './bundle-se1hgaQ-.js';
|
|
10
10
|
import UserListItem from '../ui/UserListItem.js';
|
|
11
|
-
import { n as noop } from './bundle-
|
|
11
|
+
import { n as noop } from './bundle-CdRIsiQ1.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-DYYQHn6P.js';
|
|
15
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-CmPOY9Ut.js';
|
|
16
|
+
import './bundle-BlCc7_eN.js';
|
|
17
|
+
import { u as uuidv4 } from './bundle-CjreAsCZ.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-DzOZbhBa.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DzOZbhBa.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { c as __spreadArray, _ as __assign } from './bundle-
|
|
1
|
+
import { c as __spreadArray, _ as __assign } from './bundle-DIOwxpcG.js';
|
|
2
2
|
import React__default, { useState, useEffect, useRef, useLayoutEffect, useMemo } from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
4
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-BH16nLFs.js';
|
|
4
|
+
import { u as useLocalization } from './bundle-DYYQHn6P.js';
|
|
5
5
|
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
6
|
-
import { M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-
|
|
7
|
-
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-
|
|
6
|
+
import { M as MAX_USER_MENTION_COUNT, a as MAX_USER_SUGGESTION_COUNT } from './bundle-CUld9h31.js';
|
|
7
|
+
import { i as isDisabledBecauseFrozen, a as isDisabledBecauseMuted } from './bundle-Bimk6g75.js';
|
|
8
8
|
import { useDirtyGetMentions } from '../Message/hooks/useDirtyGetMentions.js';
|
|
9
|
-
import { g as getSuggestedReplies } from './bundle-
|
|
9
|
+
import { g as getSuggestedReplies } from './bundle-Bq0-bOfM.js';
|
|
10
10
|
import DateSeparator from '../ui/DateSeparator.js';
|
|
11
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
11
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-BlCc7_eN.js';
|
|
12
12
|
import MessageInput from '../ui/MessageInput.js';
|
|
13
|
-
import { M as MessageInputKeys } from './bundle-
|
|
13
|
+
import { M as MessageInputKeys } from './bundle-BXf_Uoav.js';
|
|
14
14
|
import MessageContent from '../ui/MessageContent.js';
|
|
15
15
|
import SuggestedReplies from '../GroupChannel/components/SuggestedReplies.js';
|
|
16
|
-
import { S as SuggestedMentionListView } from './bundle-
|
|
17
|
-
import { d as deleteNullish, c as classnames } from './bundle-
|
|
16
|
+
import { S as SuggestedMentionListView } from './bundle-CsH_9kWB.js';
|
|
17
|
+
import { d as deleteNullish, c as classnames } from './bundle-CdRIsiQ1.js';
|
|
18
18
|
|
|
19
19
|
var useDidMountEffect = function (func, deps) {
|
|
20
20
|
var _a = useState(false), didMount = _a[0], setDidmount = _a[1];
|
|
@@ -224,4 +224,4 @@ var MessageView = function (props) {
|
|
|
224
224
|
};
|
|
225
225
|
|
|
226
226
|
export { MessageView as M };
|
|
227
|
-
//# sourceMappingURL=bundle-
|
|
227
|
+
//# sourceMappingURL=bundle-DzwfznTL.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DzwfznTL.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { c as __spreadArray } from './bundle-
|
|
1
|
+
import { c as __spreadArray } from './bundle-DIOwxpcG.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { f as format } from './bundle-
|
|
3
|
+
import { f as format } from './bundle-BH16nLFs.js';
|
|
4
4
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
5
|
-
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
5
|
+
import { c as LabelStringSet, L as Label, a as LabelTypography, b as LabelColors } from './bundle-BlCc7_eN.js';
|
|
6
6
|
import Loader from '../ui/Loader.js';
|
|
7
|
-
import { C as isTemplateMessage,
|
|
7
|
+
import { C as isTemplateMessage, j as isImage, A as isGif, h as isVideo, D as isAudio, E as isVoiceMessageMimeType, F as isSentStatus } from './bundle-Bq0-bOfM.js';
|
|
8
8
|
import { OutgoingMessageStates, getOutgoingMessageState } from '../utils/message/getOutgoingMessageState.js';
|
|
9
|
-
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-
|
|
10
|
-
import { u as useLocalization } from './bundle-
|
|
11
|
-
import { c as classnames } from './bundle-
|
|
9
|
+
import { i as isToday, a as isYesterday, b as isThisYear } from './bundle-e2HPSZbM.js';
|
|
10
|
+
import { u as useLocalization } from './bundle-DYYQHn6P.js';
|
|
11
|
+
import { c as classnames } from './bundle-CdRIsiQ1.js';
|
|
12
12
|
|
|
13
13
|
var getChannelTitle = function (channel, currentUserId, stringSet) {
|
|
14
14
|
var _a;
|
|
@@ -136,4 +136,4 @@ function MessageStatus(_a) {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
export { MessageStatus as M, getTotalMembers as a, getLastMessageCreatedAt as b, getLastMessage as c, getChannelUnreadMessageCount as d, MessageStatusTypes as e, getChannelTitle as g };
|
|
139
|
-
//# sourceMappingURL=bundle-
|
|
139
|
+
//# sourceMappingURL=bundle-HjRXtQVk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-HjRXtQVk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-JEz3lgaG.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-LJTd2kwV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-PaTjZoup.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as __awaiter, b as __generator } from './bundle-
|
|
2
|
-
import { p as pxToNumber } from './bundle-
|
|
1
|
+
import { a as __awaiter, b as __generator } from './bundle-DIOwxpcG.js';
|
|
2
|
+
import { p as pxToNumber } from './bundle-LJTd2kwV.js';
|
|
3
3
|
|
|
4
4
|
var compressImage = function (_a) {
|
|
5
5
|
var imageFile = _a.imageFile, compressionRate = _a.compressionRate, resizingWidth = _a.resizingWidth, resizingHeight = _a.resizingHeight, outputFormat = _a.outputFormat;
|
|
@@ -118,4 +118,4 @@ var compressImages = function (_a) { return __awaiter(void 0, [_a], void 0, func
|
|
|
118
118
|
}); };
|
|
119
119
|
|
|
120
120
|
export { compressImages as c };
|
|
121
|
-
//# sourceMappingURL=bundle-
|
|
121
|
+
//# sourceMappingURL=bundle-QVgZ7Hdj.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-QVgZ7Hdj.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-S6HEUDHq.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-WXF4CSL3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|