@sendbird/uikit-react 3.15.14 → 3.15.15
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 +89 -88
- package/App.js.map +1 -1
- package/CHANGELOG.md +10 -0
- package/Channel/components/ChannelHeader.js +32 -32
- package/Channel/components/ChannelUI.js +67 -67
- package/Channel/components/FileViewer.js +30 -30
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +56 -56
- package/Channel/components/MessageInput.js +43 -43
- package/Channel/components/MessageInputWrapper.js +43 -43
- package/Channel/components/MessageList.js +60 -60
- package/Channel/components/RemoveMessageModal.js +29 -29
- package/Channel/components/SuggestedMentionList.js +29 -29
- package/Channel/components/TypingIndicator.js +9 -9
- package/Channel/components/UnreadCount.js +8 -8
- package/Channel/context.js +23 -23
- package/Channel/hooks/useHandleUploadFiles.js +18 -18
- package/Channel/hooks/useInitialMessagesFetch.js +8 -8
- package/Channel/utils/compareMessagesForGrouping.js +8 -8
- package/Channel/utils/getMessagePartsInfo.js +9 -9
- package/Channel.js +67 -67
- package/ChannelList/components/AddChannel.js +89 -88
- package/ChannelList/components/AddChannel.js.map +1 -1
- package/ChannelList/components/ChannelListHeader.js +13 -13
- package/ChannelList/components/ChannelListUI.js +89 -88
- package/ChannelList/components/ChannelListUI.js.map +1 -1
- package/ChannelList/components/ChannelPreview.js +32 -32
- package/ChannelList/components/ChannelPreviewAction.js +17 -17
- package/ChannelList/context.js +14 -14
- package/ChannelList.js +89 -88
- package/ChannelList.js.map +1 -1
- package/ChannelSettings/components/ChannelProfile.js +23 -23
- package/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
- package/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
- package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/ChannelSettings/components/ChannelSettingsUI.js +31 -31
- package/ChannelSettings/components/EditDetailsModal.js +19 -19
- package/ChannelSettings/components/LeaveChannel.js +20 -20
- package/ChannelSettings/components/ModerationPanel.js +29 -29
- package/ChannelSettings/components/UserListItem.js +19 -19
- package/ChannelSettings/components/UserPanel.js +28 -28
- package/ChannelSettings/context.js +9 -9
- package/ChannelSettings/hooks/useMenuList.js +29 -29
- package/ChannelSettings.js +31 -31
- package/CreateChannel/components/CreateChannelUI.js +89 -88
- package/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/CreateChannel/components/InviteUsers.js +89 -88
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +89 -88
- package/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/CreateChannel/context.js +89 -88
- package/CreateChannel/context.js.map +1 -1
- package/CreateChannel.js +89 -88
- package/CreateChannel.js.map +1 -1
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
- package/CreateOpenChannel/context.js +4 -4
- package/CreateOpenChannel.js +15 -15
- package/EditUserProfile/components/EditUserProfileUI.js +15 -15
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +15 -15
- package/GroupChannel/components/FileViewer.js +28 -28
- package/GroupChannel/components/FrozenNotification.js +6 -6
- package/GroupChannel/components/GroupChannelHeader.js +29 -29
- package/GroupChannel/components/GroupChannelUI.js +63 -63
- package/GroupChannel/components/Message.js +54 -54
- package/GroupChannel/components/MessageInputWrapper.js +41 -41
- package/GroupChannel/components/MessageList.js +56 -56
- package/GroupChannel/components/RemoveMessageModal.js +27 -27
- package/GroupChannel/components/SuggestedMentionList.js +15 -15
- package/GroupChannel/components/TypingIndicator.js +9 -9
- package/GroupChannel/components/UnreadCount.js +8 -8
- package/GroupChannel/context.js +15 -15
- package/GroupChannel.js +63 -63
- package/GroupChannelList/components/AddGroupChannel.js +89 -88
- package/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListHeader.js +13 -13
- package/GroupChannelList/components/GroupChannelListItem.js +32 -32
- package/GroupChannelList/components/GroupChannelListUI.js +89 -88
- package/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
- package/GroupChannelList/context.js +10 -10
- package/GroupChannelList.js +89 -88
- package/GroupChannelList.js.map +1 -1
- package/MessageSearch/components/MessageSearchUI.js +20 -20
- package/MessageSearch/context.js +5 -5
- package/MessageSearch.js +22 -22
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/OpenChannel/components/OpenChannelInput.js +29 -29
- package/OpenChannel/components/OpenChannelMessage.js +39 -39
- package/OpenChannel/components/OpenChannelMessageList.js +43 -43
- package/OpenChannel/components/OpenChannelUI.js +43 -43
- package/OpenChannel/context.js +19 -19
- package/OpenChannel.js +43 -43
- package/OpenChannelList/components/OpenChannelListUI.js +17 -17
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +6 -6
- package/OpenChannelList.js +17 -17
- package/OpenChannelSettings/components/EditDetailsModal.js +18 -18
- package/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
- package/OpenChannelSettings/components/OperatorUI.js +24 -24
- package/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/OpenChannelSettings/context.js +6 -6
- package/OpenChannelSettings.js +24 -24
- package/SendbirdProvider.js +24 -24
- package/Thread/components/ParentMessageInfo.js +49 -49
- package/Thread/components/ParentMessageInfoItem.js +35 -34
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +56 -56
- package/Thread/components/ThreadListItem.js +56 -56
- package/Thread/components/ThreadMessageInput.js +46 -46
- package/Thread/components/ThreadUI.js +62 -62
- package/Thread/context.js +15 -15
- package/Thread.js +62 -62
- package/VoicePlayer/context.js +6 -6
- package/VoicePlayer/useVoicePlayer.js +14 -14
- package/VoiceRecorder/context.js +13 -13
- package/VoiceRecorder/useVoiceRecorder.js +13 -13
- package/chunks/{bundle-zOZq2Vpt.js → bundle-23R2lZts.js} +5 -5
- package/chunks/bundle-23R2lZts.js.map +1 -0
- package/chunks/{bundle-BQnpPj5l.js → bundle-2Y-dh8WA.js} +12 -12
- package/chunks/bundle-2Y-dh8WA.js.map +1 -0
- package/chunks/{bundle-Ob7Cw3V-.js → bundle-34AUt0BR.js} +2 -2
- package/chunks/bundle-34AUt0BR.js.map +1 -0
- package/chunks/{bundle-CQAiZVNS.js → bundle-3Qj3c7g1.js} +7 -7
- package/chunks/bundle-3Qj3c7g1.js.map +1 -0
- package/chunks/{bundle-D6CBeFkE.js → bundle-53yz_Puu.js} +7 -7
- package/chunks/bundle-53yz_Puu.js.map +1 -0
- package/chunks/{bundle-Dkmv9H3b.js → bundle-7CdMFG-1.js} +2 -2
- package/chunks/bundle-7CdMFG-1.js.map +1 -0
- package/chunks/{bundle-DhzrKzt2.js → bundle-B1OyBmdC.js} +8 -8
- package/chunks/{bundle-DhzrKzt2.js.map → bundle-B1OyBmdC.js.map} +1 -1
- package/chunks/{bundle--1cImOGd.js → bundle-BAj-PSqM.js} +1 -1
- package/chunks/bundle-BAj-PSqM.js.map +1 -0
- package/chunks/{bundle-DT1VcdMs.js → bundle-BDw9MgcJ.js} +2 -2
- package/chunks/{bundle-DT1VcdMs.js.map → bundle-BDw9MgcJ.js.map} +1 -1
- package/chunks/{bundle-BqREbgmR.js → bundle-BH_voOE8.js} +9 -9
- package/chunks/{bundle-BqREbgmR.js.map → bundle-BH_voOE8.js.map} +1 -1
- package/chunks/{bundle-WJtiC3BL.js → bundle-BI7O42KS.js} +4 -4
- package/chunks/bundle-BI7O42KS.js.map +1 -0
- package/chunks/{bundle-BTxw_tIt.js → bundle-BJAkupQH.js} +1 -1
- package/chunks/bundle-BJAkupQH.js.map +1 -0
- package/chunks/{bundle-CTkGIdt8.js → bundle-BJaAgf7u.js} +1 -1
- package/chunks/bundle-BJaAgf7u.js.map +1 -0
- package/chunks/{bundle-BYqblmEM.js → bundle-BMIXDSgA.js} +2 -2
- package/chunks/bundle-BMIXDSgA.js.map +1 -0
- package/chunks/{bundle-C3VM5eS8.js → bundle-BMU8CStW.js} +1 -1
- package/chunks/bundle-BMU8CStW.js.map +1 -0
- package/chunks/{bundle-CJmXP56m.js → bundle-BOYaDbqk.js} +3 -3
- package/chunks/bundle-BOYaDbqk.js.map +1 -0
- package/chunks/{bundle-BciLDE6M.js → bundle-BQBvS39w.js} +1 -1
- package/chunks/bundle-BQBvS39w.js.map +1 -0
- package/chunks/{bundle-CSDZhWAY.js → bundle-BRcFUlxu.js} +3 -3
- package/chunks/{bundle-CSDZhWAY.js.map → bundle-BRcFUlxu.js.map} +1 -1
- package/chunks/{bundle-4w9Y7uxA.js → bundle-BS39H5y8.js} +1 -1
- package/chunks/bundle-BS39H5y8.js.map +1 -0
- package/chunks/{bundle-LnGQMQVt.js → bundle-Bad3gFT1.js} +8 -8
- package/chunks/bundle-Bad3gFT1.js.map +1 -0
- package/chunks/{bundle-CwHldvb8.js → bundle-BeFPtjzn.js} +1 -1
- package/chunks/{bundle-CwHldvb8.js.map → bundle-BeFPtjzn.js.map} +1 -1
- package/chunks/{bundle-DwLTEVMK.js → bundle-Bnuhw3xk.js} +7 -7
- package/chunks/{bundle-DwLTEVMK.js.map → bundle-Bnuhw3xk.js.map} +1 -1
- package/chunks/{bundle-Dd7rgmeQ.js → bundle-BoHxQjRf.js} +8 -8
- package/chunks/bundle-BoHxQjRf.js.map +1 -0
- package/chunks/{bundle-CYGowmbA.js → bundle-Bx5UDiCx.js} +4 -4
- package/chunks/bundle-Bx5UDiCx.js.map +1 -0
- package/chunks/{bundle-BkZBhjs8.js → bundle-C0fPKXA5.js} +8 -8
- package/chunks/{bundle-BkZBhjs8.js.map → bundle-C0fPKXA5.js.map} +1 -1
- package/chunks/{bundle-D_SH0JG9.js → bundle-C4B7umfV.js} +4 -4
- package/chunks/{bundle-D_SH0JG9.js.map → bundle-C4B7umfV.js.map} +1 -1
- package/chunks/{bundle-BfEYq-V8.js → bundle-C6OS2KwD.js} +1 -1
- package/chunks/bundle-C6OS2KwD.js.map +1 -0
- package/chunks/{bundle-CinANGYQ.js → bundle-CGUkLS0e.js} +4 -4
- package/chunks/{bundle-CinANGYQ.js.map → bundle-CGUkLS0e.js.map} +1 -1
- package/chunks/{bundle-CYXfk28D.js → bundle-CIvbgZfr.js} +2 -2
- package/chunks/{bundle-CYXfk28D.js.map → bundle-CIvbgZfr.js.map} +1 -1
- package/chunks/{bundle-DS6Kt7YS.js → bundle-CMz_TX70.js} +1 -1
- package/chunks/bundle-CMz_TX70.js.map +1 -0
- package/chunks/{bundle-DYBTopZK.js → bundle-COmS_fte.js} +1 -1
- package/chunks/{bundle-DYBTopZK.js.map → bundle-COmS_fte.js.map} +1 -1
- package/chunks/{bundle-Y2KBbxRr.js → bundle-CPT6JkaQ.js} +1 -1
- package/chunks/{bundle-Y2KBbxRr.js.map → bundle-CPT6JkaQ.js.map} +1 -1
- package/chunks/{bundle-I25ah_Bv.js → bundle-CR2c41RY.js} +6 -6
- package/chunks/{bundle-I25ah_Bv.js.map → bundle-CR2c41RY.js.map} +1 -1
- package/chunks/{bundle-DgpfIrde.js → bundle-CSfT7kMK.js} +1 -1
- package/chunks/bundle-CSfT7kMK.js.map +1 -0
- package/chunks/{bundle-CuP5OWwY.js → bundle-CUOsQylX.js} +12 -12
- package/chunks/{bundle-CuP5OWwY.js.map → bundle-CUOsQylX.js.map} +1 -1
- package/chunks/{bundle-CBOpPuMW.js → bundle-CVwmcG4L.js} +4 -4
- package/chunks/{bundle-CBOpPuMW.js.map → bundle-CVwmcG4L.js.map} +1 -1
- package/chunks/{bundle-BFJ4ctRk.js → bundle-CWfh7mbT.js} +5 -5
- package/chunks/{bundle-BFJ4ctRk.js.map → bundle-CWfh7mbT.js.map} +1 -1
- package/chunks/{bundle-BGj68IUE.js → bundle-CZcA85Iz.js} +6 -6
- package/chunks/bundle-CZcA85Iz.js.map +1 -0
- package/chunks/{bundle-CGOt5cwH.js → bundle-C_Yu4lzj.js} +11 -11
- package/chunks/{bundle-CGOt5cwH.js.map → bundle-C_Yu4lzj.js.map} +1 -1
- package/chunks/{bundle-DgFzcADJ.js → bundle-Cb0mwRBB.js} +4 -4
- package/chunks/bundle-Cb0mwRBB.js.map +1 -0
- package/chunks/{bundle-yKqHFFfz.js → bundle-Cf0Yt_FB.js} +1 -1
- package/chunks/bundle-Cf0Yt_FB.js.map +1 -0
- package/chunks/{bundle-C6Hk5xTT.js → bundle-ChmyvPCX.js} +1 -1
- package/chunks/bundle-ChmyvPCX.js.map +1 -0
- package/chunks/{bundle-Cn2czFA-.js → bundle-Clc9Q0F3.js} +1 -1
- package/chunks/bundle-Clc9Q0F3.js.map +1 -0
- package/chunks/{bundle-DXneAdAp.js → bundle-CmV4hGKo.js} +1 -1
- package/chunks/bundle-CmV4hGKo.js.map +1 -0
- package/chunks/{bundle-CFXaZ31h.js → bundle-Cme2y2_4.js} +1 -1
- package/chunks/bundle-Cme2y2_4.js.map +1 -0
- package/chunks/{bundle-CgLhYjm5.js → bundle-CoNW0R4l.js} +6 -6
- package/chunks/{bundle-CgLhYjm5.js.map → bundle-CoNW0R4l.js.map} +1 -1
- package/chunks/{bundle-C_ngoQD_.js → bundle-CsvU0ytJ.js} +1 -1
- package/chunks/bundle-CsvU0ytJ.js.map +1 -0
- package/chunks/{bundle-CF8V-ET_.js → bundle-Ct1N0Nbc.js} +10 -10
- package/chunks/{bundle-CF8V-ET_.js.map → bundle-Ct1N0Nbc.js.map} +1 -1
- package/chunks/{bundle-D4BlmM5H.js → bundle-Ctfi4e6I.js} +15 -15
- package/chunks/{bundle-D4BlmM5H.js.map → bundle-Ctfi4e6I.js.map} +1 -1
- package/chunks/{bundle-BoZwl2OL.js → bundle-Cuxd_-eC.js} +12 -12
- package/chunks/{bundle-BoZwl2OL.js.map → bundle-Cuxd_-eC.js.map} +1 -1
- package/chunks/{bundle-l_QLKq1Y.js → bundle-Cv0coWWZ.js} +4 -4
- package/chunks/bundle-Cv0coWWZ.js.map +1 -0
- package/chunks/{bundle-C8TP-mjp.js → bundle-CyJpjuTl.js} +2 -2
- package/chunks/{bundle-C8TP-mjp.js.map → bundle-CyJpjuTl.js.map} +1 -1
- package/chunks/{bundle-C60pq62Y.js → bundle-CyMsxClg.js} +6 -6
- package/chunks/bundle-CyMsxClg.js.map +1 -0
- package/chunks/{bundle-Dupd7RPQ.js → bundle-D2EuDyEu.js} +35 -42
- package/{cjs/chunks/bundle-CLXojdVj.js.map → chunks/bundle-D2EuDyEu.js.map} +1 -1
- package/chunks/{bundle-Do9UFGCD.js → bundle-D2O7dIZa.js} +4 -4
- package/chunks/bundle-D2O7dIZa.js.map +1 -0
- package/chunks/{bundle-D_tSqvX6.js → bundle-D7MmwpyJ.js} +3 -3
- package/chunks/{bundle-D_tSqvX6.js.map → bundle-D7MmwpyJ.js.map} +1 -1
- package/chunks/{bundle-BCGcsRu2.js → bundle-DHFiI7lV.js} +5 -5
- package/chunks/{bundle-BCGcsRu2.js.map → bundle-DHFiI7lV.js.map} +1 -1
- package/chunks/{bundle-fYlljM7o.js → bundle-DKWOOkJr.js} +8 -8
- package/chunks/bundle-DKWOOkJr.js.map +1 -0
- package/chunks/{bundle-Dhf37wzM.js → bundle-DN85cQrs.js} +4 -4
- package/chunks/{bundle-Dhf37wzM.js.map → bundle-DN85cQrs.js.map} +1 -1
- package/chunks/{bundle-HspRRkmy.js → bundle-DQVSPiqe.js} +3 -3
- package/chunks/bundle-DQVSPiqe.js.map +1 -0
- package/chunks/{bundle-CDcu1I4f.js → bundle-DReYPOOW.js} +1 -1
- package/chunks/bundle-DReYPOOW.js.map +1 -0
- package/chunks/{bundle-DED6q4Ti.js → bundle-DTONsAg3.js} +1 -1
- package/chunks/bundle-DTONsAg3.js.map +1 -0
- package/chunks/{bundle-Bc6hXWJF.js → bundle-DTPxg6Qe.js} +8 -8
- package/chunks/{bundle-Bc6hXWJF.js.map → bundle-DTPxg6Qe.js.map} +1 -1
- package/chunks/{bundle-C4OmfIXk.js → bundle-DW6-i24T.js} +3 -3
- package/chunks/{bundle-C4OmfIXk.js.map → bundle-DW6-i24T.js.map} +1 -1
- package/chunks/{bundle-CVS5Kfg_.js → bundle-DWXsL_Uu.js} +12 -12
- package/chunks/{bundle-CVS5Kfg_.js.map → bundle-DWXsL_Uu.js.map} +1 -1
- package/chunks/{bundle-DvsR4u7y.js → bundle-DZ9-4Csa.js} +7 -7
- package/chunks/bundle-DZ9-4Csa.js.map +1 -0
- package/chunks/{bundle-CEE3GJSk.js → bundle-DZX5QUNj.js} +14 -14
- package/chunks/{bundle-CEE3GJSk.js.map → bundle-DZX5QUNj.js.map} +1 -1
- package/chunks/{bundle-De-3zaYV.js → bundle-DZsEFGf2.js} +1 -1
- package/chunks/{bundle-De-3zaYV.js.map → bundle-DZsEFGf2.js.map} +1 -1
- package/chunks/{bundle-nmIRAkKg.js → bundle-D_3aRq_U.js} +10 -10
- package/chunks/bundle-D_3aRq_U.js.map +1 -0
- package/chunks/{bundle-DDZn5buS.js → bundle-DbQSQOQR.js} +3 -3
- package/chunks/bundle-DbQSQOQR.js.map +1 -0
- package/chunks/{bundle-B8Grfnrx.js → bundle-DbRIJpcJ.js} +1 -1
- package/chunks/{bundle-B8Grfnrx.js.map → bundle-DbRIJpcJ.js.map} +1 -1
- package/chunks/{bundle-DZJe3dCn.js → bundle-DcTRg8ky.js} +1 -1
- package/chunks/bundle-DcTRg8ky.js.map +1 -0
- package/chunks/{bundle-WsWZ-SJW.js → bundle-DczBiNeD.js} +3 -3
- package/chunks/bundle-DczBiNeD.js.map +1 -0
- package/chunks/{bundle-CrQTAewk.js → bundle-DhwzKETC.js} +12 -12
- package/chunks/bundle-DhwzKETC.js.map +1 -0
- package/chunks/{bundle-uthnB1Zu.js → bundle-DltEQzdz.js} +14 -14
- package/chunks/{bundle-uthnB1Zu.js.map → bundle-DltEQzdz.js.map} +1 -1
- package/chunks/{bundle-YbXrJewH.js → bundle-Dz0TqCLH.js} +4 -4
- package/chunks/{bundle-YbXrJewH.js.map → bundle-Dz0TqCLH.js.map} +1 -1
- package/chunks/{bundle-QCH8CZT8.js → bundle-Dz7CEFlD.js} +7 -7
- package/chunks/{bundle-QCH8CZT8.js.map → bundle-Dz7CEFlD.js.map} +1 -1
- package/chunks/{bundle-D8xAej93.js → bundle-E3SeQw-U.js} +2 -2
- package/chunks/bundle-E3SeQw-U.js.map +1 -0
- package/chunks/{bundle-DqR5RvpV.js → bundle-HQLVpueK.js} +4 -4
- package/chunks/bundle-HQLVpueK.js.map +1 -0
- package/chunks/{bundle-L60pJMdf.js → bundle-QBfOgpFa.js} +4 -4
- package/chunks/bundle-QBfOgpFa.js.map +1 -0
- package/chunks/{bundle-Dp_oW1ks.js → bundle-SWqCpAHS.js} +1 -1
- package/chunks/bundle-SWqCpAHS.js.map +1 -0
- package/chunks/{bundle-tFnb24Id.js → bundle-SY7lsPoU.js} +3 -3
- package/chunks/bundle-SY7lsPoU.js.map +1 -0
- package/chunks/{bundle-DTYj03OD.js → bundle-W0Q45E6_.js} +3 -3
- package/chunks/bundle-W0Q45E6_.js.map +1 -0
- package/chunks/{bundle-C5Pz6wMm.js → bundle-WAB__IWd.js} +2 -2
- package/chunks/bundle-WAB__IWd.js.map +1 -0
- package/chunks/{bundle-BYOddwmS.js → bundle-XjvHd1hm.js} +1 -1
- package/chunks/{bundle-BYOddwmS.js.map → bundle-XjvHd1hm.js.map} +1 -1
- package/chunks/{bundle-Djq12iSf.js → bundle-Y2voOwuN.js} +1 -1
- package/chunks/bundle-Y2voOwuN.js.map +1 -0
- package/chunks/{bundle-BqjbaVLO.js → bundle-eSPdbrSo.js} +1 -1
- package/chunks/bundle-eSPdbrSo.js.map +1 -0
- package/chunks/{bundle-jhdKInOw.js → bundle-eifz4LzX.js} +1 -1
- package/chunks/bundle-eifz4LzX.js.map +1 -0
- package/chunks/{bundle-Dy1IZ181.js → bundle-rLN6zwDR.js} +3 -3
- package/chunks/{bundle-Dy1IZ181.js.map → bundle-rLN6zwDR.js.map} +1 -1
- package/chunks/{bundle-B5_aP8LE.js → bundle-tM4TiqWF.js} +1 -1
- package/chunks/{bundle-B5_aP8LE.js.map → bundle-tM4TiqWF.js.map} +1 -1
- package/chunks/{bundle-Dx4-1s0A.js → bundle-vkYV8qI6.js} +1 -1
- package/chunks/bundle-vkYV8qI6.js.map +1 -0
- package/cjs/App.js +89 -88
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +32 -32
- package/cjs/Channel/components/ChannelUI.js +67 -67
- package/cjs/Channel/components/FileViewer.js +30 -30
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +56 -56
- package/cjs/Channel/components/MessageInput.js +43 -43
- package/cjs/Channel/components/MessageInputWrapper.js +43 -43
- package/cjs/Channel/components/MessageList.js +60 -60
- package/cjs/Channel/components/RemoveMessageModal.js +29 -29
- package/cjs/Channel/components/SuggestedMentionList.js +29 -29
- package/cjs/Channel/components/TypingIndicator.js +9 -9
- package/cjs/Channel/components/UnreadCount.js +8 -8
- package/cjs/Channel/context.js +23 -23
- package/cjs/Channel/hooks/useHandleUploadFiles.js +18 -18
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +8 -8
- package/cjs/Channel/utils/compareMessagesForGrouping.js +8 -8
- package/cjs/Channel/utils/getMessagePartsInfo.js +9 -9
- package/cjs/Channel.js +67 -67
- package/cjs/ChannelList/components/AddChannel.js +89 -88
- package/cjs/ChannelList/components/AddChannel.js.map +1 -1
- package/cjs/ChannelList/components/ChannelListHeader.js +13 -13
- package/cjs/ChannelList/components/ChannelListUI.js +89 -88
- package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreview.js +32 -32
- package/cjs/ChannelList/components/ChannelPreviewAction.js +17 -17
- package/cjs/ChannelList/context.js +14 -14
- package/cjs/ChannelList.js +89 -88
- package/cjs/ChannelList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelProfile.js +23 -23
- package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
- package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +31 -31
- package/cjs/ChannelSettings/components/EditDetailsModal.js +19 -19
- package/cjs/ChannelSettings/components/LeaveChannel.js +20 -20
- package/cjs/ChannelSettings/components/ModerationPanel.js +29 -29
- package/cjs/ChannelSettings/components/UserListItem.js +19 -19
- package/cjs/ChannelSettings/components/UserPanel.js +28 -28
- package/cjs/ChannelSettings/context.js +9 -9
- package/cjs/ChannelSettings/hooks/useMenuList.js +29 -29
- package/cjs/ChannelSettings.js +31 -31
- package/cjs/CreateChannel/components/CreateChannelUI.js +89 -88
- package/cjs/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/cjs/CreateChannel/components/InviteUsers.js +89 -88
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +89 -88
- package/cjs/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/cjs/CreateChannel/context.js +89 -88
- package/cjs/CreateChannel/context.js.map +1 -1
- package/cjs/CreateChannel.js +89 -88
- package/cjs/CreateChannel.js.map +1 -1
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
- package/cjs/CreateOpenChannel/context.js +4 -4
- package/cjs/CreateOpenChannel.js +15 -15
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +15 -15
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +15 -15
- package/cjs/GroupChannel/components/FileViewer.js +28 -28
- package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
- package/cjs/GroupChannel/components/GroupChannelHeader.js +29 -29
- package/cjs/GroupChannel/components/GroupChannelUI.js +63 -63
- package/cjs/GroupChannel/components/Message.js +54 -54
- package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
- package/cjs/GroupChannel/components/MessageList.js +56 -56
- package/cjs/GroupChannel/components/RemoveMessageModal.js +27 -27
- package/cjs/GroupChannel/components/SuggestedMentionList.js +15 -15
- package/cjs/GroupChannel/components/TypingIndicator.js +9 -9
- package/cjs/GroupChannel/components/UnreadCount.js +8 -8
- package/cjs/GroupChannel/context.js +15 -15
- package/cjs/GroupChannel.js +63 -63
- package/cjs/GroupChannelList/components/AddGroupChannel.js +89 -88
- package/cjs/GroupChannelList/components/AddGroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +13 -13
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +32 -32
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +89 -88
- package/cjs/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
- package/cjs/GroupChannelList/context.js +10 -10
- package/cjs/GroupChannelList.js +89 -88
- package/cjs/GroupChannelList.js.map +1 -1
- package/cjs/MessageSearch/components/MessageSearchUI.js +20 -20
- package/cjs/MessageSearch/context.js +5 -5
- package/cjs/MessageSearch.js +22 -22
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/cjs/OpenChannel/components/OpenChannelInput.js +29 -29
- package/cjs/OpenChannel/components/OpenChannelMessage.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -43
- package/cjs/OpenChannel/components/OpenChannelUI.js +43 -43
- package/cjs/OpenChannel/context.js +19 -19
- package/cjs/OpenChannel.js +43 -43
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +17 -17
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +6 -6
- package/cjs/OpenChannelList.js +17 -17
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +18 -18
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
- package/cjs/OpenChannelSettings/components/OperatorUI.js +24 -24
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/cjs/OpenChannelSettings/context.js +6 -6
- package/cjs/OpenChannelSettings.js +24 -24
- package/cjs/SendbirdProvider.js +24 -24
- package/cjs/Thread/components/ParentMessageInfo.js +49 -49
- package/cjs/Thread/components/ParentMessageInfoItem.js +35 -34
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +56 -56
- package/cjs/Thread/components/ThreadListItem.js +56 -56
- package/cjs/Thread/components/ThreadMessageInput.js +46 -46
- package/cjs/Thread/components/ThreadUI.js +62 -62
- package/cjs/Thread/context.js +15 -15
- package/cjs/Thread.js +62 -62
- package/cjs/VoicePlayer/context.js +6 -6
- package/cjs/VoicePlayer/useVoicePlayer.js +14 -14
- package/cjs/VoiceRecorder/context.js +13 -13
- package/cjs/VoiceRecorder/useVoiceRecorder.js +13 -13
- package/cjs/chunks/{bundle-B2KoWBOt.js → bundle-78fUZmNP.js} +1 -1
- package/cjs/chunks/bundle-78fUZmNP.js.map +1 -0
- package/cjs/chunks/{bundle-BIrmQghI.js → bundle-92vJTR5x.js} +1 -1
- package/cjs/chunks/bundle-92vJTR5x.js.map +1 -0
- package/cjs/chunks/{bundle-BV7y6VDn.js → bundle-9W_Mt6kl.js} +1 -1
- package/cjs/chunks/{bundle-BV7y6VDn.js.map → bundle-9W_Mt6kl.js.map} +1 -1
- package/cjs/chunks/{bundle-CPeZ4wPf.js → bundle-B34Twdvx.js} +1 -1
- package/cjs/chunks/bundle-B34Twdvx.js.map +1 -0
- package/cjs/chunks/{bundle-D2TXT2xX.js → bundle-B5pLRPl_.js} +7 -7
- package/cjs/chunks/bundle-B5pLRPl_.js.map +1 -0
- package/cjs/chunks/{bundle-CgCnWqE5.js → bundle-BBt-ekuQ.js} +1 -1
- package/cjs/chunks/bundle-BBt-ekuQ.js.map +1 -0
- package/cjs/chunks/{bundle-DptJHWLW.js → bundle-BBt_JEuk.js} +10 -10
- package/cjs/chunks/{bundle-DptJHWLW.js.map → bundle-BBt_JEuk.js.map} +1 -1
- package/cjs/chunks/{bundle-CLXojdVj.js → bundle-BCGpTbfJ.js} +35 -43
- package/{chunks/bundle-Dupd7RPQ.js.map → cjs/chunks/bundle-BCGpTbfJ.js.map} +1 -1
- package/cjs/chunks/{bundle-BX4VESNC.js → bundle-BCaDVUiQ.js} +12 -12
- package/cjs/chunks/{bundle-BX4VESNC.js.map → bundle-BCaDVUiQ.js.map} +1 -1
- package/cjs/chunks/{bundle-BEbBkdwl.js → bundle-BDLpYyQR.js} +12 -12
- package/cjs/chunks/bundle-BDLpYyQR.js.map +1 -0
- package/cjs/chunks/{bundle-DsZL8mH-.js → bundle-BMHuIReK.js} +1 -1
- package/cjs/chunks/bundle-BMHuIReK.js.map +1 -0
- package/cjs/chunks/{bundle-LI9JjqG2.js → bundle-BMIzPycb.js} +6 -6
- package/cjs/chunks/bundle-BMIzPycb.js.map +1 -0
- package/cjs/chunks/{bundle-Bx1_cAVo.js → bundle-BMzPlIor.js} +7 -7
- package/cjs/chunks/bundle-BMzPlIor.js.map +1 -0
- package/cjs/chunks/{bundle-Cwboa2Wr.js → bundle-BP3OkIs4.js} +1 -1
- package/cjs/chunks/bundle-BP3OkIs4.js.map +1 -0
- package/cjs/chunks/{bundle-B0UICprZ.js → bundle-BQ1X0QX3.js} +3 -3
- package/cjs/chunks/{bundle-B0UICprZ.js.map → bundle-BQ1X0QX3.js.map} +1 -1
- package/cjs/chunks/{bundle-YeW89zsR.js → bundle-BQdBtz28.js} +8 -8
- package/cjs/chunks/bundle-BQdBtz28.js.map +1 -0
- package/cjs/chunks/{bundle-DlOFss3p.js → bundle-BTDeRBxY.js} +1 -1
- package/cjs/chunks/bundle-BTDeRBxY.js.map +1 -0
- package/cjs/chunks/{bundle-EhtiN7UV.js → bundle-BY-9xDoX.js} +1 -1
- package/cjs/chunks/bundle-BY-9xDoX.js.map +1 -0
- package/cjs/chunks/{bundle-Y1fPW7ES.js → bundle-BaLKVavC.js} +12 -12
- package/cjs/chunks/{bundle-Y1fPW7ES.js.map → bundle-BaLKVavC.js.map} +1 -1
- package/cjs/chunks/{bundle-CG2rv5Ij.js → bundle-BbgK24yl.js} +1 -1
- package/cjs/chunks/bundle-BbgK24yl.js.map +1 -0
- package/cjs/chunks/{bundle-BFKxvlzn.js → bundle-Bd-yMLRx.js} +8 -8
- package/cjs/chunks/bundle-Bd-yMLRx.js.map +1 -0
- package/cjs/chunks/{bundle-aMt_60_o.js → bundle-Bfz-mRQs.js} +1 -1
- package/cjs/chunks/{bundle-aMt_60_o.js.map → bundle-Bfz-mRQs.js.map} +1 -1
- package/cjs/chunks/{bundle-Dn7m9LzR.js → bundle-Bk4617s6.js} +4 -4
- package/cjs/chunks/{bundle-Dn7m9LzR.js.map → bundle-Bk4617s6.js.map} +1 -1
- package/cjs/chunks/{bundle-BLQ7t6yE.js → bundle-BmOAspZh.js} +7 -7
- package/cjs/chunks/bundle-BmOAspZh.js.map +1 -0
- package/cjs/chunks/{bundle-BcgWN8U2.js → bundle-Bmdw38AR.js} +4 -4
- package/cjs/chunks/bundle-Bmdw38AR.js.map +1 -0
- package/cjs/chunks/{bundle-ys65nyET.js → bundle-Bnetku2h.js} +3 -3
- package/cjs/chunks/bundle-Bnetku2h.js.map +1 -0
- package/cjs/chunks/{bundle-AAO7jUU2.js → bundle-BotH0J8Z.js} +3 -3
- package/cjs/chunks/{bundle-AAO7jUU2.js.map → bundle-BotH0J8Z.js.map} +1 -1
- package/cjs/chunks/{bundle-Da973hrK.js → bundle-Bp5WCxod.js} +1 -1
- package/cjs/chunks/bundle-Bp5WCxod.js.map +1 -0
- package/cjs/chunks/{bundle-DJOukqkN.js → bundle-Brb0Jg6g.js} +15 -15
- package/cjs/chunks/{bundle-DJOukqkN.js.map → bundle-Brb0Jg6g.js.map} +1 -1
- package/cjs/chunks/{bundle-CzJX13Yl.js → bundle-BudbV6mL.js} +2 -2
- package/cjs/chunks/bundle-BudbV6mL.js.map +1 -0
- package/cjs/chunks/{bundle-DK39NcVd.js → bundle-BvZclC0s.js} +5 -5
- package/cjs/chunks/{bundle-DK39NcVd.js.map → bundle-BvZclC0s.js.map} +1 -1
- package/cjs/chunks/{bundle-ChpcAmBg.js → bundle-By0FaU3-.js} +2 -2
- package/cjs/chunks/bundle-By0FaU3-.js.map +1 -0
- package/cjs/chunks/{bundle-BfhkRB7U.js → bundle-BzQGAwRj.js} +11 -11
- package/cjs/chunks/{bundle-BfhkRB7U.js.map → bundle-BzQGAwRj.js.map} +1 -1
- package/cjs/chunks/{bundle-G4J-OWth.js → bundle-C0V7lt2Q.js} +14 -14
- package/cjs/chunks/{bundle-G4J-OWth.js.map → bundle-C0V7lt2Q.js.map} +1 -1
- package/cjs/chunks/{bundle-BWtBhW43.js → bundle-C1HTvZKH.js} +8 -8
- package/cjs/chunks/{bundle-BWtBhW43.js.map → bundle-C1HTvZKH.js.map} +1 -1
- package/cjs/chunks/{bundle-DQNu-S6D.js → bundle-C51hAZlA.js} +1 -1
- package/cjs/chunks/bundle-C51hAZlA.js.map +1 -0
- package/cjs/chunks/{bundle-CdtZVJ6y.js → bundle-C5EOYzGr.js} +9 -9
- package/cjs/chunks/{bundle-CdtZVJ6y.js.map → bundle-C5EOYzGr.js.map} +1 -1
- package/cjs/chunks/{bundle-CpzjjrHg.js → bundle-C84eMAQs.js} +8 -8
- package/cjs/chunks/bundle-C84eMAQs.js.map +1 -0
- package/cjs/chunks/{bundle-B2xIXbEG.js → bundle-C9lftvgq.js} +3 -3
- package/cjs/chunks/bundle-C9lftvgq.js.map +1 -0
- package/cjs/chunks/{bundle-za5uPkdP.js → bundle-C9s_U68F.js} +1 -1
- package/cjs/chunks/bundle-C9s_U68F.js.map +1 -0
- package/cjs/chunks/{bundle-B7URG8PR.js → bundle-CAvNzDO4.js} +12 -12
- package/cjs/chunks/{bundle-B7URG8PR.js.map → bundle-CAvNzDO4.js.map} +1 -1
- package/cjs/chunks/{bundle-4kO4nPo9.js → bundle-CAy19TsB.js} +7 -7
- package/cjs/chunks/{bundle-4kO4nPo9.js.map → bundle-CAy19TsB.js.map} +1 -1
- package/cjs/chunks/{bundle-FJtjwZwh.js → bundle-CBhEnyPT.js} +3 -3
- package/cjs/chunks/{bundle-FJtjwZwh.js.map → bundle-CBhEnyPT.js.map} +1 -1
- package/cjs/chunks/{bundle-C1G0SKDq.js → bundle-CEd9iMBr.js} +1 -1
- package/cjs/chunks/{bundle-C1G0SKDq.js.map → bundle-CEd9iMBr.js.map} +1 -1
- package/cjs/chunks/{bundle-BOb4newg.js → bundle-CFYBMS_Z.js} +7 -7
- package/cjs/chunks/bundle-CFYBMS_Z.js.map +1 -0
- package/cjs/chunks/{bundle-CqFqMb6S.js → bundle-CXbVQacJ.js} +3 -3
- package/cjs/chunks/bundle-CXbVQacJ.js.map +1 -0
- package/cjs/chunks/{bundle-CzdU1g3S.js → bundle-C_dnUit4.js} +4 -4
- package/cjs/chunks/bundle-C_dnUit4.js.map +1 -0
- package/cjs/chunks/{bundle-CBLzrxjV.js → bundle-CcsGvnld.js} +4 -4
- package/cjs/chunks/{bundle-CBLzrxjV.js.map → bundle-CcsGvnld.js.map} +1 -1
- package/cjs/chunks/{bundle-Dn0hi6OJ.js → bundle-CeoB8ULb.js} +1 -1
- package/cjs/chunks/{bundle-Dn0hi6OJ.js.map → bundle-CeoB8ULb.js.map} +1 -1
- package/cjs/chunks/{bundle-BeI9AozB.js → bundle-CiG63ydh.js} +12 -12
- package/cjs/chunks/{bundle-BeI9AozB.js.map → bundle-CiG63ydh.js.map} +1 -1
- package/cjs/chunks/{bundle-swpo7Z_P.js → bundle-CrUfoJA9.js} +4 -4
- package/cjs/chunks/bundle-CrUfoJA9.js.map +1 -0
- package/cjs/chunks/{bundle-CLL-nCFU.js → bundle-CsQaohle.js} +4 -4
- package/cjs/chunks/bundle-CsQaohle.js.map +1 -0
- package/cjs/chunks/{bundle-Cq2Y8hPN.js → bundle-Cuz0dQYk.js} +5 -5
- package/cjs/chunks/bundle-Cuz0dQYk.js.map +1 -0
- package/cjs/chunks/{bundle-D4Il5UXX.js → bundle-CwQ5S4p1.js} +1 -1
- package/cjs/chunks/bundle-CwQ5S4p1.js.map +1 -0
- package/cjs/chunks/{bundle-CMpha6Ac.js → bundle-D-JL70b7.js} +2 -2
- package/cjs/chunks/bundle-D-JL70b7.js.map +1 -0
- package/cjs/chunks/{bundle-B1NPGl_q.js → bundle-D2YKWpmS.js} +2 -2
- package/cjs/chunks/bundle-D2YKWpmS.js.map +1 -0
- package/cjs/chunks/{bundle-CcVLRLk8.js → bundle-D4haaatF.js} +8 -8
- package/cjs/chunks/bundle-D4haaatF.js.map +1 -0
- package/cjs/chunks/{bundle-vEi_Cfco.js → bundle-D77Ze9ys.js} +4 -4
- package/cjs/chunks/bundle-D77Ze9ys.js.map +1 -0
- package/cjs/chunks/{bundle-yU9Mr2pS.js → bundle-DBIZFnYM.js} +1 -1
- package/cjs/chunks/bundle-DBIZFnYM.js.map +1 -0
- package/cjs/chunks/{bundle-B9BY1g5d.js → bundle-DGvt_fHB.js} +2 -2
- package/cjs/chunks/{bundle-B9BY1g5d.js.map → bundle-DGvt_fHB.js.map} +1 -1
- package/cjs/chunks/{bundle-CCXodf32.js → bundle-DWxM3ko6.js} +14 -14
- package/cjs/chunks/{bundle-CCXodf32.js.map → bundle-DWxM3ko6.js.map} +1 -1
- package/cjs/chunks/{bundle-BXvzT2m9.js → bundle-D_F384tn.js} +1 -1
- package/cjs/chunks/bundle-D_F384tn.js.map +1 -0
- package/cjs/chunks/{bundle-BPWJgESF.js → bundle-DaVXHMAD.js} +1 -1
- package/cjs/chunks/bundle-DaVXHMAD.js.map +1 -0
- package/cjs/chunks/{bundle-BqAUDzGx.js → bundle-DaaCirWu.js} +3 -3
- package/cjs/chunks/bundle-DaaCirWu.js.map +1 -0
- package/cjs/chunks/{bundle-UKqK7ytZ.js → bundle-DiEYm-H0.js} +1 -1
- package/cjs/chunks/bundle-DiEYm-H0.js.map +1 -0
- package/cjs/chunks/{bundle-C8MACRPO.js → bundle-DjLMC7j4.js} +1 -1
- package/cjs/chunks/bundle-DjLMC7j4.js.map +1 -0
- package/cjs/chunks/{bundle-nPNv9ATU.js → bundle-DjwTIHG4.js} +4 -4
- package/cjs/chunks/bundle-DjwTIHG4.js.map +1 -0
- package/cjs/chunks/{bundle-de2DEYPS.js → bundle-DkhamDsK.js} +4 -4
- package/cjs/chunks/bundle-DkhamDsK.js.map +1 -0
- package/cjs/chunks/{bundle-Bqahh-7Q.js → bundle-DoVO573J.js} +7 -7
- package/cjs/chunks/{bundle-Bqahh-7Q.js.map → bundle-DoVO573J.js.map} +1 -1
- package/cjs/chunks/{bundle-CxoFSSXv.js → bundle-DqhRrRu9.js} +1 -1
- package/cjs/chunks/bundle-DqhRrRu9.js.map +1 -0
- package/cjs/chunks/{bundle-dfqZUdij.js → bundle-DyLlbKpL.js} +1 -1
- package/cjs/chunks/bundle-DyLlbKpL.js.map +1 -0
- package/cjs/chunks/{bundle-D7YiKR6i.js → bundle-HjGh1y6m.js} +6 -6
- package/cjs/chunks/{bundle-D7YiKR6i.js.map → bundle-HjGh1y6m.js.map} +1 -1
- package/cjs/chunks/{bundle-DNjcGEfJ.js → bundle-Jhfevess.js} +1 -1
- package/cjs/chunks/bundle-Jhfevess.js.map +1 -0
- package/cjs/chunks/{bundle-DAVPwIxJ.js → bundle-KEAWVq42.js} +1 -1
- package/cjs/chunks/bundle-KEAWVq42.js.map +1 -0
- package/cjs/chunks/{bundle-BUGwK1WK.js → bundle-KfgcZyeV.js} +1 -1
- package/cjs/chunks/bundle-KfgcZyeV.js.map +1 -0
- package/cjs/chunks/{bundle-CyQD5TkW.js → bundle-OplQKA4B.js} +1 -1
- package/cjs/chunks/bundle-OplQKA4B.js.map +1 -0
- package/cjs/chunks/{bundle-CXHWkhsI.js → bundle-Ovj9Tgyp.js} +2 -2
- package/cjs/chunks/bundle-Ovj9Tgyp.js.map +1 -0
- package/cjs/chunks/{bundle-CvQwksvR.js → bundle-XBKLQFeY.js} +1 -1
- package/cjs/chunks/bundle-XBKLQFeY.js.map +1 -0
- package/cjs/chunks/{bundle-DeyX1dvY.js → bundle-YKlDDUzv.js} +2 -2
- package/cjs/chunks/bundle-YKlDDUzv.js.map +1 -0
- package/cjs/chunks/{bundle-B-Smxy4L.js → bundle-b5XNkTaq.js} +1 -1
- package/cjs/chunks/bundle-b5XNkTaq.js.map +1 -0
- package/cjs/chunks/{bundle-BPGU6BH2.js → bundle-d8T-zyt9.js} +3 -3
- package/cjs/chunks/bundle-d8T-zyt9.js.map +1 -0
- package/cjs/chunks/{bundle-j0RMwIZ5.js → bundle-gKuBK3QY.js} +4 -4
- package/cjs/chunks/bundle-gKuBK3QY.js.map +1 -0
- package/cjs/chunks/{bundle-D5wxUmg4.js → bundle-hxn5q3vf.js} +10 -10
- package/cjs/chunks/bundle-hxn5q3vf.js.map +1 -0
- package/cjs/chunks/{bundle-CaNXlSAv.js → bundle-jOaQHuy6.js} +6 -6
- package/cjs/chunks/bundle-jOaQHuy6.js.map +1 -0
- package/cjs/chunks/{bundle-kPv1Olqr.js → bundle-jWlqkecm.js} +1 -1
- package/cjs/chunks/bundle-jWlqkecm.js.map +1 -0
- package/cjs/chunks/{bundle-DDNdw3A9.js → bundle-lp9D8ZMu.js} +4 -4
- package/cjs/chunks/bundle-lp9D8ZMu.js.map +1 -0
- package/cjs/chunks/{bundle-Bd-cNaJc.js → bundle-o_i_sKpU.js} +3 -3
- package/cjs/chunks/bundle-o_i_sKpU.js.map +1 -0
- package/cjs/chunks/{bundle-L8U6SolV.js → bundle-ov0sCoVZ.js} +6 -6
- package/cjs/chunks/bundle-ov0sCoVZ.js.map +1 -0
- package/cjs/chunks/{bundle-C4t_1F0C.js → bundle-tSTMSLcO.js} +3 -3
- package/cjs/chunks/bundle-tSTMSLcO.js.map +1 -0
- package/cjs/chunks/{bundle-DwVBqZFY.js → bundle-zJHqRQGk.js} +4 -4
- package/cjs/chunks/bundle-zJHqRQGk.js.map +1 -0
- package/cjs/chunks/{bundle-THfLGJxy.js → bundle-zx7nucQu.js} +5 -5
- package/cjs/chunks/{bundle-THfLGJxy.js.map → bundle-zx7nucQu.js.map} +1 -1
- package/cjs/hooks/useConnectionState.js +5 -5
- package/cjs/hooks/useLocalization.js +4 -4
- package/cjs/hooks/useModal.js +13 -13
- package/cjs/index.js +91 -90
- 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 +13 -13
- 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 +14 -14
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +23 -23
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
- package/cjs/ui/FileMessageItemBody.js +13 -13
- package/cjs/ui/FileViewer.js +19 -19
- 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 +19 -19
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +42 -42
- package/cjs/ui/MessageFeedbackFailedModal.js +13 -13
- package/cjs/ui/MessageFeedbackModal.js +13 -13
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +20 -20
- package/cjs/ui/MessageItemMenu.js +15 -15
- package/cjs/ui/MessageItemReactionMenu.js +16 -16
- package/cjs/ui/MessageMenu.js +16 -16
- package/cjs/ui/MessageSearchFileItem.js +17 -17
- package/cjs/ui/MessageSearchItem.js +12 -12
- package/cjs/ui/MessageStatus.js +15 -15
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +13 -13
- package/cjs/ui/MobileMenu.js +18 -18
- package/cjs/ui/Modal.js +12 -12
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +23 -23
- 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 +24 -24
- package/cjs/ui/OpenchannelOGMessage.js +26 -26
- package/cjs/ui/OpenchannelThumbnailMessage.js +23 -23
- package/cjs/ui/OpenchannelUserMessage.js +24 -24
- 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 +12 -12
- package/cjs/ui/QuoteMessageInput.js +12 -12
- 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 +14 -14
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +22 -22
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +10 -10
- package/cjs/ui/Toggle.js +4 -4
- 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 +10 -10
- package/cjs/ui/UserListItem.js +19 -19
- package/cjs/ui/UserListItemMenu.js +16 -16
- package/cjs/ui/UserProfile.js +13 -13
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +14 -14
- package/cjs/ui/Word.js +19 -19
- package/cjs/useSendbirdStateContext.js +24 -0
- package/cjs/useSendbirdStateContext.js.map +1 -0
- package/cjs/utils/message/isVoiceMessage.js +6 -6
- package/cjs/withSendbird.js +47 -0
- package/cjs/withSendbird.js.map +1 -0
- package/hooks/useConnectionState.js +5 -5
- package/hooks/useLocalization.js +4 -4
- package/hooks/useModal.js +14 -14
- package/index.js +90 -89
- package/index.js.map +1 -1
- package/package.json +20 -2
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/lib/Sendbird/index.d.ts +1 -1
- package/types/lib/Sendbird/withSendbird.d.ts +8 -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 +13 -13
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +14 -14
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +23 -23
- package/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
- package/ui/FileMessageItemBody.js +13 -13
- package/ui/FileViewer.js +19 -19
- 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 +19 -19
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +42 -42
- package/ui/MessageFeedbackFailedModal.js +13 -13
- package/ui/MessageFeedbackModal.js +13 -13
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +20 -20
- package/ui/MessageItemMenu.js +15 -15
- package/ui/MessageItemReactionMenu.js +16 -16
- package/ui/MessageMenu.js +16 -16
- package/ui/MessageSearchFileItem.js +17 -17
- package/ui/MessageSearchItem.js +12 -12
- package/ui/MessageStatus.js +15 -15
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +13 -13
- package/ui/MobileMenu.js +18 -18
- package/ui/Modal.js +12 -12
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +23 -23
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +24 -24
- package/ui/OpenchannelOGMessage.js +26 -26
- package/ui/OpenchannelThumbnailMessage.js +23 -23
- package/ui/OpenchannelUserMessage.js +24 -24
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +1 -1
- package/ui/QuoteMessage.js +12 -12
- package/ui/QuoteMessageInput.js +12 -12
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +14 -14
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +22 -22
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +10 -10
- package/ui/Toggle.js +4 -4
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +10 -10
- package/ui/UserListItem.js +19 -19
- package/ui/UserListItemMenu.js +17 -17
- package/ui/UserProfile.js +13 -13
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +14 -14
- package/ui/Word.js +19 -19
- package/useSendbirdStateContext.js +19 -0
- package/useSendbirdStateContext.js.map +1 -0
- package/utils/message/isVoiceMessage.js +6 -6
- package/withSendbird.js +45 -0
- package/withSendbird.js.map +1 -0
- package/chunks/bundle--1cImOGd.js.map +0 -1
- package/chunks/bundle-4w9Y7uxA.js.map +0 -1
- package/chunks/bundle-BGj68IUE.js.map +0 -1
- package/chunks/bundle-BQnpPj5l.js.map +0 -1
- package/chunks/bundle-BTxw_tIt.js.map +0 -1
- package/chunks/bundle-BYqblmEM.js.map +0 -1
- package/chunks/bundle-BciLDE6M.js.map +0 -1
- package/chunks/bundle-BfEYq-V8.js.map +0 -1
- package/chunks/bundle-BqjbaVLO.js.map +0 -1
- package/chunks/bundle-C3VM5eS8.js.map +0 -1
- package/chunks/bundle-C5Pz6wMm.js.map +0 -1
- package/chunks/bundle-C60pq62Y.js.map +0 -1
- package/chunks/bundle-C6Hk5xTT.js.map +0 -1
- package/chunks/bundle-CDcu1I4f.js.map +0 -1
- package/chunks/bundle-CFXaZ31h.js.map +0 -1
- package/chunks/bundle-CJmXP56m.js.map +0 -1
- package/chunks/bundle-CQAiZVNS.js.map +0 -1
- package/chunks/bundle-CTkGIdt8.js.map +0 -1
- package/chunks/bundle-CYGowmbA.js.map +0 -1
- package/chunks/bundle-C_ngoQD_.js.map +0 -1
- package/chunks/bundle-Cn2czFA-.js.map +0 -1
- package/chunks/bundle-CrQTAewk.js.map +0 -1
- package/chunks/bundle-D6CBeFkE.js.map +0 -1
- package/chunks/bundle-D8xAej93.js.map +0 -1
- package/chunks/bundle-DDZn5buS.js.map +0 -1
- package/chunks/bundle-DED6q4Ti.js.map +0 -1
- package/chunks/bundle-DS6Kt7YS.js.map +0 -1
- package/chunks/bundle-DTYj03OD.js.map +0 -1
- package/chunks/bundle-DXneAdAp.js.map +0 -1
- package/chunks/bundle-DZJe3dCn.js.map +0 -1
- package/chunks/bundle-Dd7rgmeQ.js.map +0 -1
- package/chunks/bundle-DgFzcADJ.js.map +0 -1
- package/chunks/bundle-DgpfIrde.js.map +0 -1
- package/chunks/bundle-Djq12iSf.js.map +0 -1
- package/chunks/bundle-Dkmv9H3b.js.map +0 -1
- package/chunks/bundle-Do9UFGCD.js.map +0 -1
- package/chunks/bundle-Dp_oW1ks.js.map +0 -1
- package/chunks/bundle-DqR5RvpV.js.map +0 -1
- package/chunks/bundle-DvsR4u7y.js.map +0 -1
- package/chunks/bundle-Dx4-1s0A.js.map +0 -1
- package/chunks/bundle-HspRRkmy.js.map +0 -1
- package/chunks/bundle-L60pJMdf.js.map +0 -1
- package/chunks/bundle-LnGQMQVt.js.map +0 -1
- package/chunks/bundle-Ob7Cw3V-.js.map +0 -1
- package/chunks/bundle-WJtiC3BL.js.map +0 -1
- package/chunks/bundle-WsWZ-SJW.js.map +0 -1
- package/chunks/bundle-fYlljM7o.js.map +0 -1
- package/chunks/bundle-jhdKInOw.js.map +0 -1
- package/chunks/bundle-l_QLKq1Y.js.map +0 -1
- package/chunks/bundle-nmIRAkKg.js.map +0 -1
- package/chunks/bundle-tFnb24Id.js.map +0 -1
- package/chunks/bundle-yKqHFFfz.js.map +0 -1
- package/chunks/bundle-zOZq2Vpt.js.map +0 -1
- package/cjs/chunks/bundle-B-Smxy4L.js.map +0 -1
- package/cjs/chunks/bundle-B1NPGl_q.js.map +0 -1
- package/cjs/chunks/bundle-B2KoWBOt.js.map +0 -1
- package/cjs/chunks/bundle-B2xIXbEG.js.map +0 -1
- package/cjs/chunks/bundle-BEbBkdwl.js.map +0 -1
- package/cjs/chunks/bundle-BFKxvlzn.js.map +0 -1
- package/cjs/chunks/bundle-BIrmQghI.js.map +0 -1
- package/cjs/chunks/bundle-BLQ7t6yE.js.map +0 -1
- package/cjs/chunks/bundle-BOb4newg.js.map +0 -1
- package/cjs/chunks/bundle-BPGU6BH2.js.map +0 -1
- package/cjs/chunks/bundle-BPWJgESF.js.map +0 -1
- package/cjs/chunks/bundle-BUGwK1WK.js.map +0 -1
- package/cjs/chunks/bundle-BXvzT2m9.js.map +0 -1
- package/cjs/chunks/bundle-BcgWN8U2.js.map +0 -1
- package/cjs/chunks/bundle-Bd-cNaJc.js.map +0 -1
- package/cjs/chunks/bundle-BqAUDzGx.js.map +0 -1
- package/cjs/chunks/bundle-Bx1_cAVo.js.map +0 -1
- package/cjs/chunks/bundle-C4t_1F0C.js.map +0 -1
- package/cjs/chunks/bundle-C8MACRPO.js.map +0 -1
- package/cjs/chunks/bundle-CG2rv5Ij.js.map +0 -1
- package/cjs/chunks/bundle-CLL-nCFU.js.map +0 -1
- package/cjs/chunks/bundle-CMpha6Ac.js.map +0 -1
- package/cjs/chunks/bundle-CPeZ4wPf.js.map +0 -1
- package/cjs/chunks/bundle-CXHWkhsI.js.map +0 -1
- package/cjs/chunks/bundle-CaNXlSAv.js.map +0 -1
- package/cjs/chunks/bundle-CcVLRLk8.js.map +0 -1
- package/cjs/chunks/bundle-CgCnWqE5.js.map +0 -1
- package/cjs/chunks/bundle-ChpcAmBg.js.map +0 -1
- package/cjs/chunks/bundle-CpzjjrHg.js.map +0 -1
- package/cjs/chunks/bundle-Cq2Y8hPN.js.map +0 -1
- package/cjs/chunks/bundle-CqFqMb6S.js.map +0 -1
- package/cjs/chunks/bundle-CvQwksvR.js.map +0 -1
- package/cjs/chunks/bundle-Cwboa2Wr.js.map +0 -1
- package/cjs/chunks/bundle-CxoFSSXv.js.map +0 -1
- package/cjs/chunks/bundle-CyQD5TkW.js.map +0 -1
- package/cjs/chunks/bundle-CzJX13Yl.js.map +0 -1
- package/cjs/chunks/bundle-CzdU1g3S.js.map +0 -1
- package/cjs/chunks/bundle-D2TXT2xX.js.map +0 -1
- package/cjs/chunks/bundle-D4Il5UXX.js.map +0 -1
- package/cjs/chunks/bundle-D5wxUmg4.js.map +0 -1
- package/cjs/chunks/bundle-DAVPwIxJ.js.map +0 -1
- package/cjs/chunks/bundle-DDNdw3A9.js.map +0 -1
- package/cjs/chunks/bundle-DNjcGEfJ.js.map +0 -1
- package/cjs/chunks/bundle-DQNu-S6D.js.map +0 -1
- package/cjs/chunks/bundle-Da973hrK.js.map +0 -1
- package/cjs/chunks/bundle-DeyX1dvY.js.map +0 -1
- package/cjs/chunks/bundle-DlOFss3p.js.map +0 -1
- package/cjs/chunks/bundle-DsZL8mH-.js.map +0 -1
- package/cjs/chunks/bundle-DwVBqZFY.js.map +0 -1
- package/cjs/chunks/bundle-EhtiN7UV.js.map +0 -1
- package/cjs/chunks/bundle-L8U6SolV.js.map +0 -1
- package/cjs/chunks/bundle-LI9JjqG2.js.map +0 -1
- package/cjs/chunks/bundle-UKqK7ytZ.js.map +0 -1
- package/cjs/chunks/bundle-YeW89zsR.js.map +0 -1
- package/cjs/chunks/bundle-de2DEYPS.js.map +0 -1
- package/cjs/chunks/bundle-dfqZUdij.js.map +0 -1
- package/cjs/chunks/bundle-j0RMwIZ5.js.map +0 -1
- package/cjs/chunks/bundle-kPv1Olqr.js.map +0 -1
- package/cjs/chunks/bundle-nPNv9ATU.js.map +0 -1
- package/cjs/chunks/bundle-swpo7Z_P.js.map +0 -1
- package/cjs/chunks/bundle-vEi_Cfco.js.map +0 -1
- package/cjs/chunks/bundle-yU9Mr2pS.js.map +0 -1
- package/cjs/chunks/bundle-ys65nyET.js.map +0 -1
- package/cjs/chunks/bundle-za5uPkdP.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CoNW0R4l.js","sources":["../../node_modules/date-fns/esm/startOfSecond/index.js","../../node_modules/date-fns/esm/isSameSecond/index.js"],"sourcesContent":["import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name startOfSecond\n * @category Second Helpers\n * @summary Return the start of a second for the given date.\n *\n * @description\n * Return the start of a second 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 second\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // The start of a second for 1 December 2014 22:15:45.400:\n * const result = startOfSecond(new Date(2014, 11, 1, 22, 15, 45, 400))\n * //=> Mon Dec 01 2014 22:15:45.000\n */\nexport default function startOfSecond(dirtyDate) {\n requiredArgs(1, arguments);\n var date = toDate(dirtyDate);\n date.setMilliseconds(0);\n return date;\n}","import startOfSecond from \"../startOfSecond/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameSecond\n * @category Second Helpers\n * @summary Are the given dates in the same second (and hour and day)?\n *\n * @description\n * Are the given dates in the same second (and hour and day)?\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 second (and hour and day)\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 4 September 2014 06:30:15.000 and 4 September 2014 06:30.15.500 in the same second?\n * const result = isSameSecond(\n * new Date(2014, 8, 4, 6, 30, 15),\n * new Date(2014, 8, 4, 6, 30, 15, 500)\n * )\n * //=> true\n *\n * @example\n * // Are 4 September 2014 06:00:15.000 and 4 September 2014 06:01.15.000 in the same second?\n * const result = isSameSecond(\n * new Date(2014, 8, 4, 6, 0, 15),\n * new Date(2014, 8, 4, 6, 1, 15)\n * )\n * //=> false\n *\n * @example\n * // Are 4 September 2014 06:00:15.000 and 5 September 2014 06:00.15.000 in the same second?\n * const result = isSameSecond(\n * new Date(2014, 8, 4, 6, 0, 15),\n * new Date(2014, 8, 5, 6, 0, 15)\n * )\n * //=> false\n */\nexport default function isSameSecond(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeftStartOfSecond = startOfSecond(dirtyDateLeft);\n var dateRightStartOfSecond = startOfSecond(dirtyDateRight);\n return dateLeftStartOfSecond.getTime() === dateRightStartOfSecond.getTime();\n}"],"names":[],"mappings":";;;;;;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,aAAa,CAAC,SAAS,EAAE;AACjD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;AAC1B,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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,YAAY,CAAC,aAAa,EAAE,cAAc,EAAE;AACpE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,qBAAqB,GAAG,aAAa,CAAC,aAAa,CAAC,CAAC;AAC3D,EAAE,IAAI,sBAAsB,GAAG,aAAa,CAAC,cAAc,CAAC,CAAC;AAC7D,EAAE,OAAO,qBAAqB,CAAC,OAAO,EAAE,KAAK,sBAAsB,CAAC,OAAO,EAAE,CAAC;AAC9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","x_google_ignoreList":[0,1]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CsvU0ytJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React__default, { useRef, useContext, useEffect, useMemo, useState } from 'react';
|
|
2
|
-
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-
|
|
2
|
+
import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DQVSPiqe.js';
|
|
3
3
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
4
|
-
import { A as Avatar } from './bundle-
|
|
5
|
-
import { L as LocalizationContext, u as useLocalization } from './bundle-
|
|
6
|
-
import { u as uuidv4 } from './bundle-
|
|
7
|
-
import { c as classnames } from './bundle-
|
|
8
|
-
import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-
|
|
9
|
-
import { M as MessageInputKeys } from './bundle-
|
|
10
|
-
import { b as __awaiter, c as __generator } from './bundle-
|
|
11
|
-
import { u as useSendbird } from './bundle-
|
|
4
|
+
import { A as Avatar } from './bundle-Cb0mwRBB.js';
|
|
5
|
+
import { L as LocalizationContext, u as useLocalization } from './bundle-Cv0coWWZ.js';
|
|
6
|
+
import { u as uuidv4 } from './bundle-BJaAgf7u.js';
|
|
7
|
+
import { c as classnames } from './bundle-DReYPOOW.js';
|
|
8
|
+
import { a as USER_MENTION_TEMP_CHAR, M as MAX_USER_MENTION_COUNT, b as MAX_USER_SUGGESTION_COUNT } from './bundle-BQBvS39w.js';
|
|
9
|
+
import { M as MessageInputKeys } from './bundle-CmV4hGKo.js';
|
|
10
|
+
import { b as __awaiter, c as __generator } from './bundle-DbRIJpcJ.js';
|
|
11
|
+
import { u as useSendbird } from './bundle-CR2c41RY.js';
|
|
12
12
|
|
|
13
13
|
function SuggestedUserMentionItem(props) {
|
|
14
14
|
var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
|
|
@@ -170,4 +170,4 @@ var SuggestedMentionListView = function (props) {
|
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
export { SuggestedMentionListView as S };
|
|
173
|
-
//# sourceMappingURL=bundle-
|
|
173
|
+
//# sourceMappingURL=bundle-Ct1N0Nbc.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Ct1N0Nbc.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { _ as __assign, b as __awaiter, c as __generator } from './bundle-
|
|
1
|
+
import { _ as __assign, b as __awaiter, c as __generator } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import React__default, { useCallback, useContext, useMemo, useRef, useState, useLayoutEffect, createContext, useEffect } from 'react';
|
|
3
3
|
import { MessageMetaArray, ReplyType } from '@sendbird/chat/message';
|
|
4
4
|
import { MessageFilter } from '@sendbird/chat/groupChannel';
|
|
5
5
|
import { useIIFE, useGroupChannelMessages, useAsyncEffect, useAsyncLayoutEffect } from '@sendbird/uikit-tools';
|
|
6
|
-
import { U as UserProfileProvider } from './bundle-
|
|
7
|
-
import { p as pubSubFactory } from './bundle-
|
|
8
|
-
import { s as shimExports, c as createStore, u as useStore } from './bundle-
|
|
9
|
-
import { e as getMessageTopOffset, b as isContextMenuClosed } from './bundle-
|
|
10
|
-
import { u as useSendbird } from './bundle-
|
|
11
|
-
import { g as getIsReactionEnabled } from './bundle-
|
|
12
|
-
import { g as getCaseResolvedReplyType, a as getCaseResolvedThreadReplySelectType } from './bundle-
|
|
13
|
-
import { P as PUBSUB_TOPICS, b as PublishingModuleType, p as pubSubTopics } from './bundle
|
|
14
|
-
import { T as ThreadReplySelectType } from './bundle-
|
|
15
|
-
import { u as useDeepCompareEffect } from './bundle-
|
|
16
|
-
import { K } from './bundle-
|
|
17
|
-
import { a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, i as META_ARRAY_VOICE_DURATION_KEY, j as META_ARRAY_MESSAGE_TYPE_KEY, k as META_ARRAY_MESSAGE_TYPE_VALUE__VOICE } from './bundle-
|
|
18
|
-
import { a as delay } from './bundle-
|
|
6
|
+
import { U as UserProfileProvider } from './bundle-BMIXDSgA.js';
|
|
7
|
+
import { p as pubSubFactory } from './bundle-vkYV8qI6.js';
|
|
8
|
+
import { s as shimExports, c as createStore, u as useStore } from './bundle-DW6-i24T.js';
|
|
9
|
+
import { e as getMessageTopOffset, b as isContextMenuClosed } from './bundle-E3SeQw-U.js';
|
|
10
|
+
import { u as useSendbird } from './bundle-CR2c41RY.js';
|
|
11
|
+
import { g as getIsReactionEnabled } from './bundle-ChmyvPCX.js';
|
|
12
|
+
import { g as getCaseResolvedReplyType, a as getCaseResolvedThreadReplySelectType } from './bundle-tM4TiqWF.js';
|
|
13
|
+
import { P as PUBSUB_TOPICS, b as PublishingModuleType, p as pubSubTopics } from './bundle-BAj-PSqM.js';
|
|
14
|
+
import { T as ThreadReplySelectType } from './bundle-BQBvS39w.js';
|
|
15
|
+
import { u as useDeepCompareEffect } from './bundle-WAB__IWd.js';
|
|
16
|
+
import { K } from './bundle-DZsEFGf2.js';
|
|
17
|
+
import { a as VOICE_MESSAGE_FILE_NAME, b as VOICE_MESSAGE_MIME_TYPE, i as META_ARRAY_VOICE_DURATION_KEY, j as META_ARRAY_MESSAGE_TYPE_KEY, k as META_ARRAY_MESSAGE_TYPE_VALUE__VOICE } from './bundle-34AUt0BR.js';
|
|
18
|
+
import { a as delay } from './bundle-DReYPOOW.js';
|
|
19
19
|
|
|
20
20
|
var pass = function (value) { return value; };
|
|
21
21
|
/**
|
|
@@ -658,4 +658,4 @@ function getCollectionCreator(groupChannel, messageListQueryParams) {
|
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
export { GroupChannelContext as G, InternalGroupChannelProvider as I, GroupChannelProvider as a, useGroupChannelContext as b, GroupChannelManager as c, useGroupChannel as u };
|
|
661
|
-
//# sourceMappingURL=bundle-
|
|
661
|
+
//# sourceMappingURL=bundle-Ctfi4e6I.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Ctfi4e6I.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import React__default, { useEffect, useCallback, useState, useReducer, useRef, useMemo } from 'react';
|
|
2
|
-
import { u as useLocalization } from './bundle-
|
|
3
|
-
import { U as UserProfileProvider } from './bundle-
|
|
4
|
-
import { _ as __assign, a as __spreadArray, b as __awaiter, c as __generator } from './bundle-
|
|
5
|
-
import { c as compareIds } from './bundle-
|
|
6
|
-
import { p as pubSubTopics } from './bundle
|
|
2
|
+
import { u as useLocalization } from './bundle-Cv0coWWZ.js';
|
|
3
|
+
import { U as UserProfileProvider } from './bundle-BMIXDSgA.js';
|
|
4
|
+
import { _ as __assign, a as __spreadArray, b as __awaiter, c as __generator } from './bundle-DbRIJpcJ.js';
|
|
5
|
+
import { c as compareIds } from './bundle-Y2voOwuN.js';
|
|
6
|
+
import { p as pubSubTopics } from './bundle-BAj-PSqM.js';
|
|
7
7
|
import { ChannelType } from '@sendbird/chat';
|
|
8
8
|
import { OpenChannelHandler } from '@sendbird/chat/openChannel';
|
|
9
|
-
import { u as uuidv4 } from './bundle-
|
|
10
|
-
import { c as compressImages } from './bundle-
|
|
9
|
+
import { u as uuidv4 } from './bundle-BJaAgf7u.js';
|
|
10
|
+
import { c as compressImages } from './bundle-BRcFUlxu.js';
|
|
11
11
|
import { useGlobalModalContext } from '../hooks/useModal.js';
|
|
12
|
-
import { O as ONE_MiB } from './bundle-
|
|
13
|
-
import { c as ModalFooter } from './bundle-
|
|
14
|
-
import './bundle-
|
|
12
|
+
import { O as ONE_MiB } from './bundle-34AUt0BR.js';
|
|
13
|
+
import { c as ModalFooter } from './bundle-Bad3gFT1.js';
|
|
14
|
+
import './bundle-DQVSPiqe.js';
|
|
15
15
|
import { ButtonTypes } from '../ui/Button.js';
|
|
16
|
-
import { u as useSendbird } from './bundle-
|
|
16
|
+
import { u as useSendbird } from './bundle-CR2c41RY.js';
|
|
17
17
|
|
|
18
18
|
var shouldFetchMore = function (messageLength, maxMessages) {
|
|
19
19
|
if (typeof maxMessages !== 'number') {
|
|
@@ -1356,4 +1356,4 @@ var useOpenChannelContext = function () {
|
|
|
1356
1356
|
};
|
|
1357
1357
|
|
|
1358
1358
|
export { OpenChannelProvider as O, kFormatter as k, useOpenChannelContext as u };
|
|
1359
|
-
//# sourceMappingURL=bundle-
|
|
1359
|
+
//# sourceMappingURL=bundle-Cuxd_-eC.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-Cuxd_-eC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as __assign } from './bundle-
|
|
1
|
+
import { _ as __assign } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
4
|
-
import { l as locale } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-CPT6JkaQ.js';
|
|
4
|
+
import { l as locale } from './bundle-XjvHd1hm.js';
|
|
5
5
|
|
|
6
6
|
var LocalizationContextDefault = {
|
|
7
7
|
stringSet: getStringSet('en'),
|
|
@@ -21,4 +21,4 @@ var useLocalization = function () {
|
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export { LocalizationContext as L, LocalizationProvider as a, useLocalization as u };
|
|
24
|
-
//# sourceMappingURL=bundle-
|
|
24
|
+
//# sourceMappingURL=bundle-Cv0coWWZ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cv0coWWZ.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-COmS_fte.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-CyJpjuTl.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-CyJpjuTl.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,10 +1,10 @@
|
|
|
1
1
|
import React__default, { useContext } from 'react';
|
|
2
|
-
import { M as Modal } from './bundle-
|
|
3
|
-
import './bundle-
|
|
4
|
-
import './bundle-
|
|
2
|
+
import { M as Modal } from './bundle-Bad3gFT1.js';
|
|
3
|
+
import './bundle-DbRIJpcJ.js';
|
|
4
|
+
import './bundle-DQVSPiqe.js';
|
|
5
5
|
import { ButtonTypes } from '../ui/Button.js';
|
|
6
|
-
import { L as LocalizationContext } from './bundle-
|
|
7
|
-
import { g as getModalDeleteMessageTitle } from './bundle-
|
|
6
|
+
import { L as LocalizationContext } from './bundle-Cv0coWWZ.js';
|
|
7
|
+
import { g as getModalDeleteMessageTitle } from './bundle-DbQSQOQR.js';
|
|
8
8
|
|
|
9
9
|
var RemoveMessageModalView = function (props) {
|
|
10
10
|
var _a;
|
|
@@ -25,4 +25,4 @@ var RemoveMessageModalView = function (props) {
|
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export { RemoveMessageModalView as R };
|
|
28
|
-
//# sourceMappingURL=bundle-
|
|
28
|
+
//# sourceMappingURL=bundle-CyMsxClg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CyMsxClg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
import { _ as __assign, a as __spreadArray, b as __awaiter, c as __generator } from './bundle-
|
|
1
|
+
import { _ as __assign, a as __spreadArray, b as __awaiter, c as __generator } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import React__default, { useState, useRef, useEffect, useContext, useMemo } from 'react';
|
|
3
3
|
import { GroupChannelHandler } from '@sendbird/chat/groupChannel';
|
|
4
4
|
import { GroupChannel } from '../GroupChannel.js';
|
|
5
|
-
import { u as useGroupChannelList, c as GroupChannelListProvider } from './bundle-
|
|
5
|
+
import { u as useGroupChannelList, c as GroupChannelListProvider } from './bundle-DTPxg6Qe.js';
|
|
6
6
|
import { GroupChannelListHeader } from '../GroupChannelList/components/GroupChannelListHeader.js';
|
|
7
7
|
import EditUserProfile from '../EditUserProfile.js';
|
|
8
8
|
import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
|
|
9
|
-
import { u as useOnScrollPositionChangeDetector } from './bundle-
|
|
10
|
-
import { u as useSendbird } from './bundle-
|
|
9
|
+
import { u as useOnScrollPositionChangeDetector } from './bundle-HQLVpueK.js';
|
|
10
|
+
import { u as useSendbird } from './bundle-CR2c41RY.js';
|
|
11
11
|
import { GroupChannelPreviewAction } from '../GroupChannelList/components/GroupChannelPreviewAction.js';
|
|
12
12
|
import { GroupChannelListItem } from '../GroupChannelList/components/GroupChannelListItem.js';
|
|
13
13
|
import IconButton from '../ui/IconButton.js';
|
|
14
14
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
15
|
-
import { L as LocalizationContext } from './bundle-
|
|
16
|
-
import { u as useMediaQueryContext } from './bundle-
|
|
17
|
-
import { M as Modal } from './bundle-
|
|
18
|
-
import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-
|
|
15
|
+
import { L as LocalizationContext } from './bundle-Cv0coWWZ.js';
|
|
16
|
+
import { u as useMediaQueryContext } from './bundle-Cf0Yt_FB.js';
|
|
17
|
+
import { M as Modal } from './bundle-Bad3gFT1.js';
|
|
18
|
+
import { L as Label, b as LabelColors, a as LabelTypography } from './bundle-DQVSPiqe.js';
|
|
19
19
|
import { ButtonTypes } from '../ui/Button.js';
|
|
20
20
|
import { UserListItem } from '../ui/UserListItem.js';
|
|
21
|
-
import { n as noop } from './bundle-
|
|
22
|
-
import { c as createStore, u as useStore, s as shimExports } from './bundle-
|
|
21
|
+
import { n as noop } from './bundle-DReYPOOW.js';
|
|
22
|
+
import { c as createStore, u as useStore, s as shimExports } from './bundle-DW6-i24T.js';
|
|
23
23
|
import { getCreateGroupChannel, getSdk } from '../sendbirdSelectors.js';
|
|
24
24
|
import '@sendbird/uikit-tools';
|
|
25
|
-
import { u as useVoicePlayerContext, b as ALL } from './bundle-
|
|
25
|
+
import { u as useVoicePlayerContext, b as ALL } from './bundle-23R2lZts.js';
|
|
26
26
|
import '../VoiceRecorder/context.js';
|
|
27
27
|
import '../hooks/useModal.js';
|
|
28
|
-
import './bundle-
|
|
28
|
+
import './bundle-7CdMFG-1.js';
|
|
29
29
|
import 'css-vars-ponyfill';
|
|
30
30
|
import '@sendbird/chat';
|
|
31
|
-
import { A as APP_LAYOUT_ROOT } from './bundle-
|
|
31
|
+
import { A as APP_LAYOUT_ROOT } from './bundle-Dz7CEFlD.js';
|
|
32
32
|
import '@sendbird/chat/openChannel';
|
|
33
33
|
import 'react-dom';
|
|
34
|
-
import './bundle-
|
|
35
|
-
import './bundle-
|
|
36
|
-
import './bundle-
|
|
37
|
-
import './bundle-
|
|
34
|
+
import './bundle-CoNW0R4l.js';
|
|
35
|
+
import './bundle-Ctfi4e6I.js';
|
|
36
|
+
import './bundle-DcTRg8ky.js';
|
|
37
|
+
import './bundle-Cb0mwRBB.js';
|
|
38
38
|
import '../ui/Header.js';
|
|
39
|
-
import './bundle-
|
|
40
|
-
import './bundle-
|
|
39
|
+
import './bundle-BQBvS39w.js';
|
|
40
|
+
import './bundle-DTONsAg3.js';
|
|
41
41
|
import '../ui/MessageInput.js';
|
|
42
|
-
import './bundle-
|
|
42
|
+
import './bundle-BoHxQjRf.js';
|
|
43
43
|
import '../ui/ReactionButton.js';
|
|
44
44
|
import '../ui/ReactionBadge.js';
|
|
45
|
-
import './bundle-
|
|
45
|
+
import './bundle-BMIXDSgA.js';
|
|
46
46
|
import '../Message/context.js';
|
|
47
|
-
import './bundle-
|
|
47
|
+
import './bundle-DZsEFGf2.js';
|
|
48
48
|
import '@sendbird/chat/message';
|
|
49
49
|
import '../ui/ThreadReplies.js';
|
|
50
|
-
import './bundle-
|
|
50
|
+
import './bundle-BeFPtjzn.js';
|
|
51
51
|
import '../ui/TemplateMessageItemBody.js';
|
|
52
52
|
import '../ui/FeedbackIconButton.js';
|
|
53
53
|
import '../ui/Input.js';
|
|
54
54
|
import '../ui/MessageContent.js';
|
|
55
|
-
import './bundle
|
|
55
|
+
import './bundle-BAj-PSqM.js';
|
|
56
56
|
import '../GroupChannel/components/MessageList.js';
|
|
57
|
-
import './bundle-
|
|
57
|
+
import './bundle-DltEQzdz.js';
|
|
58
58
|
import '../EditUserProfile/context.js';
|
|
59
59
|
import '../Channel/context.js';
|
|
60
|
-
import { u as useChannelListContext, S as SET_CURRENT_CHANNEL, L as LEAVE_CHANNEL_SUCCESS, C as ChannelListProvider } from './bundle-
|
|
61
|
-
import './bundle-
|
|
60
|
+
import { u as useChannelListContext, S as SET_CURRENT_CHANNEL, L as LEAVE_CHANNEL_SUCCESS, C as ChannelListProvider } from './bundle-C_Yu4lzj.js';
|
|
61
|
+
import './bundle-C0fPKXA5.js';
|
|
62
62
|
import '../ChannelSettings/hooks/useMenuList.js';
|
|
63
|
-
import './bundle-
|
|
64
|
-
import './bundle-
|
|
65
|
-
import './bundle-
|
|
63
|
+
import './bundle-DKWOOkJr.js';
|
|
64
|
+
import './bundle-CGUkLS0e.js';
|
|
65
|
+
import './bundle-DWXsL_Uu.js';
|
|
66
66
|
import '../Thread/context/types.js';
|
|
67
67
|
import '../utils/message/getOutgoingMessageState.js';
|
|
68
68
|
import 'date-fns';
|
|
@@ -72,12 +72,13 @@ import ChannelPreview from '../ChannelList/components/ChannelPreview.js';
|
|
|
72
72
|
import ChannelSettings from '../ChannelSettings.js';
|
|
73
73
|
import MessageSearchPannel from '../MessageSearch.js';
|
|
74
74
|
import Thread from '../Thread.js';
|
|
75
|
-
import { u as uuidv4 } from './bundle-
|
|
76
|
-
import './bundle-
|
|
75
|
+
import { u as uuidv4 } from './bundle-BJaAgf7u.js';
|
|
76
|
+
import './bundle-Cuxd_-eC.js';
|
|
77
77
|
import '../OpenChannel/components/OpenChannelInput.js';
|
|
78
78
|
import '../OpenChannel/components/OpenChannelMessageList.js';
|
|
79
79
|
import '../OpenChannelSettings/context.js';
|
|
80
80
|
import '../ui/AccordionGroup.js';
|
|
81
|
+
import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
|
|
81
82
|
|
|
82
83
|
var GroupChannelListUIView = function (_a) {
|
|
83
84
|
var renderHeader = _a.renderHeader, renderPlaceHolderError = _a.renderPlaceHolderError, renderPlaceHolderLoading = _a.renderPlaceHolderLoading, renderPlaceHolderEmptyList = _a.renderPlaceHolderEmptyList, onChangeTheme = _a.onChangeTheme, onUserProfileUpdated = _a.onUserProfileUpdated, allowProfileEdit = _a.allowProfileEdit, channels = _a.channels, onLoadMore = _a.onLoadMore, initialized = _a.initialized, renderChannel = _a.renderChannel, renderAddChannel = _a.renderAddChannel, scrollRef = _a.scrollRef;
|
|
@@ -728,13 +729,5 @@ var MobileLayout = function (props) {
|
|
|
728
729
|
} })))));
|
|
729
730
|
};
|
|
730
731
|
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
// Keep this function for backward compatibility.
|
|
734
|
-
function useSendbirdStateContext() {
|
|
735
|
-
var _a = useSendbird(), state = _a.state, actions = _a.actions;
|
|
736
|
-
return __assign(__assign({}, state), actions);
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
export { AddGroupChannel as A, ChannelList as C, GroupChannelList as G, InviteUsers as I, MobileLayout as M, SelectChannelType as S, useCreateChannel as a, CreateChannelProvider as b, CreateChannelContext as c, useCreateChannelContext as d, CreateChannel$1 as e, CreateChannel as f, GroupChannelListUI as g, AddChannel as h, ChannelListUI as i, useSendbirdStateContext as u };
|
|
740
|
-
//# sourceMappingURL=bundle-Dupd7RPQ.js.map
|
|
732
|
+
export { AddGroupChannel as A, ChannelList as C, GroupChannelList as G, InviteUsers as I, MobileLayout as M, SelectChannelType as S, CreateChannelProvider as a, CreateChannelContext as b, useCreateChannelContext as c, CreateChannel$1 as d, CreateChannel as e, GroupChannelListUI as f, AddChannel as g, ChannelListUI as h, useCreateChannel as u };
|
|
733
|
+
//# sourceMappingURL=bundle-D2EuDyEu.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D2EuDyEu.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, a as tokenizeMarkdown, U as USER_MENTION_PREFIX, b as getWhiteSpacePreservedText } from './bundle-
|
|
2
|
+
import { K } from './bundle-DZsEFGf2.js';
|
|
3
|
+
import { T as TOKEN_TYPES, a as tokenizeMarkdown, U as USER_MENTION_PREFIX, b as getWhiteSpacePreservedText } from './bundle-BDw9MgcJ.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, b as LabelColors } from './bundle-
|
|
7
|
+
import { a as LabelTypography, b as LabelColors } from './bundle-DQVSPiqe.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
|
|
@@ -66,4 +66,4 @@ function TextFragment(_a) {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export { TextFragment as T };
|
|
69
|
-
//# sourceMappingURL=bundle-
|
|
69
|
+
//# sourceMappingURL=bundle-D2O7dIZa.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D2O7dIZa.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import { SendingStatus } from '@sendbird/chat/message';
|
|
3
|
-
import './bundle-
|
|
3
|
+
import './bundle-Cv0coWWZ.js';
|
|
4
4
|
|
|
5
5
|
var scrollToRenderedMessage = function (scrollRef, initialTimeStamp, setIsScrolled) {
|
|
6
6
|
var _a;
|
|
@@ -122,4 +122,4 @@ var isAboutSame = function (a, b, px) {
|
|
|
122
122
|
};
|
|
123
123
|
|
|
124
124
|
export { isAboutSame as a, isDisabledBecauseFrozen as b, isDisabledBecauseMuted as c, scrollToRenderedMessage as d, getNicknamesMapFromMembers as e, getAllEmojisMapFromEmojiContainer as g, isOperator as i, mergeAndSortMessages as m, passUnsuccessfullMessages as p, scrollIntoLast as s };
|
|
125
|
-
//# sourceMappingURL=bundle-
|
|
125
|
+
//# sourceMappingURL=bundle-D7MmwpyJ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-D7MmwpyJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
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-BAj-PSqM.js';
|
|
3
|
+
import { s as scrollIntoLast$1 } from './bundle-D7MmwpyJ.js';
|
|
4
4
|
import '../utils/message/getOutgoingMessageState.js';
|
|
5
|
-
import './bundle-
|
|
6
|
-
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND } from './bundle-
|
|
5
|
+
import './bundle-Cv0coWWZ.js';
|
|
6
|
+
import { e as SCROLL_BOTTOM_DELAY_FOR_SEND } from './bundle-34AUt0BR.js';
|
|
7
7
|
|
|
8
8
|
var getNicknamesMapFromMembers = function (members) {
|
|
9
9
|
if (members === void 0) { members = []; }
|
|
@@ -168,4 +168,4 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
168
168
|
};
|
|
169
169
|
|
|
170
170
|
export { getNicknamesMapFromMembers as a, compareIds as c, getParentMessageFrom as g, isAboutSame as i, scrollIntoLast as s, useSendMultipleFilesMessage as u };
|
|
171
|
-
//# sourceMappingURL=bundle-
|
|
171
|
+
//# sourceMappingURL=bundle-DHFiI7lV.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DHFiI7lV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { b as __awaiter, c as __generator, d as __rest, _ as __assign } from './bundle-
|
|
1
|
+
import { b as __awaiter, c as __generator, d as __rest, _ as __assign } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import React__default, { useState, useRef, useCallback, createContext, useContext } from 'react';
|
|
3
3
|
import { Role } from '@sendbird/chat';
|
|
4
4
|
import { OpenChannel } from '@sendbird/chat/openChannel';
|
|
5
|
-
import { u as useSendbird } from './bundle-
|
|
6
|
-
import { a as MenuItem, b as MenuItems } from './bundle-
|
|
5
|
+
import { u as useSendbird } from './bundle-CR2c41RY.js';
|
|
6
|
+
import { a as MenuItem, b as MenuItems } from './bundle-Dz7CEFlD.js';
|
|
7
7
|
import 'react-dom';
|
|
8
8
|
import IconButton from '../ui/IconButton.js';
|
|
9
|
-
import './bundle-
|
|
10
|
-
import { u as useLocalization } from './bundle-
|
|
11
|
-
import './bundle-
|
|
9
|
+
import './bundle-CoNW0R4l.js';
|
|
10
|
+
import { u as useLocalization } from './bundle-Cv0coWWZ.js';
|
|
11
|
+
import './bundle-DW6-i24T.js';
|
|
12
12
|
import '@sendbird/chat/groupChannel';
|
|
13
|
-
import { c as classnames } from './bundle-
|
|
13
|
+
import { c as classnames } from './bundle-DReYPOOW.js';
|
|
14
14
|
import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
|
|
15
15
|
|
|
16
16
|
// Utility function to handle processing state and promise execution
|
|
@@ -276,4 +276,4 @@ var UserListItemMenu = function (props) {
|
|
|
276
276
|
};
|
|
277
277
|
|
|
278
278
|
export { UserListItemMenu as U, UserListItemMenuProvider as a, useUserListItemMenuContext as u };
|
|
279
|
-
//# sourceMappingURL=bundle-
|
|
279
|
+
//# sourceMappingURL=bundle-DKWOOkJr.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DKWOOkJr.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { i as isSameDay } from './bundle-
|
|
2
|
-
import { r as requiredArgs, t as toDate } from './bundle-
|
|
3
|
-
import { t as toInteger } from './bundle-
|
|
1
|
+
import { i as isSameDay } from './bundle-CyJpjuTl.js';
|
|
2
|
+
import { r as requiredArgs, t as toDate } from './bundle-COmS_fte.js';
|
|
3
|
+
import { t as toInteger } from './bundle-rLN6zwDR.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @name isToday
|
|
@@ -163,4 +163,4 @@ function isYesterday(dirtyDate) {
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
export { isYesterday as a, isThisYear as b, isToday as i };
|
|
166
|
-
//# sourceMappingURL=bundle-
|
|
166
|
+
//# sourceMappingURL=bundle-DN85cQrs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DN85cQrs.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as __spreadArray } from './bundle-
|
|
1
|
+
import { a as __spreadArray } from './bundle-DbRIJpcJ.js';
|
|
2
2
|
import React__default, { forwardRef } from 'react';
|
|
3
|
-
import { g as getStringSet } from './bundle-
|
|
3
|
+
import { g as getStringSet } from './bundle-CPT6JkaQ.js';
|
|
4
4
|
|
|
5
5
|
var Typography = {
|
|
6
6
|
H_1: 'H_1',
|
|
@@ -83,4 +83,4 @@ var LabelColors = Colors;
|
|
|
83
83
|
var LabelStringSet = getStringSet('en');
|
|
84
84
|
|
|
85
85
|
export { Label as L, LabelTypography as a, LabelColors as b, LabelStringSet as c, changeColorToClassName as d };
|
|
86
|
-
//# sourceMappingURL=bundle-
|
|
86
|
+
//# sourceMappingURL=bundle-DQVSPiqe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DQVSPiqe.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DReYPOOW.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DTONsAg3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
|