@sendbird/uikit-react 3.9.0 → 3.9.1-rc-2
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/CHANGELOG.md +23 -0
- package/dist/App.js +422 -0
- package/dist/App.js.map +1 -0
- package/dist/CHANGELOG.md +1980 -0
- package/dist/Channel/components/ChannelHeader.js +67 -0
- package/dist/Channel/components/ChannelUI.js +162 -0
- package/dist/Channel/components/ChannelUI.js.map +1 -0
- package/dist/Channel/components/FileViewer.js +88 -0
- package/dist/Channel/components/FrozenNotification.js +16 -0
- package/dist/Channel/components/Message.js +341 -0
- package/dist/Channel/components/MessageInput.js +205 -0
- package/dist/Channel/components/MessageInput.js.map +1 -0
- package/dist/Channel/components/MessageList.js +111 -0
- package/dist/Channel/components/RemoveMessageModal.js +52 -0
- package/dist/Channel/components/SuggestedMentionList.js +198 -0
- package/dist/Channel/components/TypingIndicator.js +84 -0
- package/dist/Channel/components/UnreadCount.js +33 -0
- package/dist/Channel/context.js +24 -0
- package/dist/Channel/hooks/useHandleUploadFiles.js +133 -0
- package/dist/Channel/hooks/useHandleUploadFiles.js.map +1 -0
- package/dist/Channel/hooks/useInitialMessagesFetch.js +109 -0
- package/dist/Channel/utils/compareMessagesForGrouping.js +26 -0
- package/dist/Channel/utils/getMessagePartsInfo.js +34 -0
- package/dist/Channel.js +132 -0
- package/dist/Channel.js.map +1 -0
- package/dist/ChannelList/components/AddChannel.js +61 -0
- package/dist/ChannelList/components/ChannelListHeader.js +41 -0
- package/dist/ChannelList/components/ChannelListUI.js +147 -0
- package/dist/ChannelList/components/ChannelPreview.js +131 -0
- package/dist/ChannelList/components/ChannelPreviewAction.js +71 -0
- package/dist/ChannelList/context.js +15 -0
- package/dist/ChannelList.js +81 -0
- package/dist/ChannelSettings/components/ChannelProfile.js +65 -0
- package/dist/ChannelSettings/components/ChannelSettingsUI.js +119 -0
- package/dist/ChannelSettings/components/EditDetailsModal.js +97 -0
- package/dist/ChannelSettings/components/LeaveChannel.js +67 -0
- package/dist/ChannelSettings/components/ModerationPanel.js +455 -0
- package/dist/ChannelSettings/components/UserListItem.js +67 -0
- package/dist/ChannelSettings/components/UserPanel.js +64 -0
- package/dist/ChannelSettings/context.js +69 -0
- package/dist/ChannelSettings.js +61 -0
- package/dist/CreateChannel/components/CreateChannelUI.js +48 -0
- package/dist/CreateChannel/components/InviteUsers.js +167 -0
- package/dist/CreateChannel/components/SelectChannelType.js +80 -0
- package/dist/CreateChannel/context.js +9 -0
- package/dist/CreateChannel.js +44 -0
- package/dist/CreateOpenChannel/components/CreateOpenChannelUI.js +68 -0
- package/dist/CreateOpenChannel/context.js +49 -0
- package/dist/CreateOpenChannel.js +33 -0
- package/dist/EditUserProfile/components/EditUserProfileUI.js +118 -0
- package/dist/EditUserProfile/components/EditUserProfileUI.js.map +1 -0
- package/dist/EditUserProfile.js +34 -0
- package/dist/LICENSE +21 -0
- package/dist/MessageSearch/components/MessageSearchUI.js +89 -0
- package/dist/MessageSearch/context.js +258 -0
- package/dist/MessageSearch.js +77 -0
- package/dist/OpenChannel/components/FrozenChannelNotification.js +15 -0
- package/dist/OpenChannel/components/OpenChannelHeader.js +54 -0
- package/dist/OpenChannel/components/OpenChannelHeader.js.map +1 -0
- package/dist/OpenChannel/components/OpenChannelInput.js +63 -0
- package/dist/OpenChannel/components/OpenChannelInput.js.map +1 -0
- package/dist/OpenChannel/components/OpenChannelMessage.js +197 -0
- package/dist/OpenChannel/components/OpenChannelMessage.js.map +1 -0
- package/dist/OpenChannel/components/OpenChannelMessageList.js +122 -0
- package/dist/OpenChannel/components/OpenChannelMessageList.js.map +1 -0
- package/dist/OpenChannel/components/OpenChannelUI.js +102 -0
- package/dist/OpenChannel/components/OpenChannelUI.js.map +1 -0
- package/dist/OpenChannel/context.js +29 -0
- package/dist/OpenChannel/context.js.map +1 -0
- package/dist/OpenChannel.js +80 -0
- package/dist/OpenChannel.js.map +1 -0
- package/dist/OpenChannelList/components/OpenChannelListUI.js +114 -0
- package/dist/OpenChannelList/components/OpenChannelPreview.js +29 -0
- package/dist/OpenChannelList/context.js +7 -0
- package/dist/OpenChannelList.js +45 -0
- package/dist/OpenChannelSettings/components/EditDetailsModal.js +89 -0
- package/dist/OpenChannelSettings/components/OpenChannelProfile.js +56 -0
- package/dist/OpenChannelSettings/components/OpenChannelSettingsUI.js +90 -0
- package/dist/OpenChannelSettings/components/OperatorUI.js +502 -0
- package/dist/OpenChannelSettings/components/ParticipantUI.js +36 -0
- package/dist/OpenChannelSettings/context.js +123 -0
- package/dist/OpenChannelSettings.js +56 -0
- package/dist/README.md +172 -0
- package/dist/SendbirdProvider.js +1060 -0
- package/dist/Thread/components/ParentMessageInfo.js +252 -0
- package/dist/Thread/components/ParentMessageInfo.js.map +1 -0
- package/dist/Thread/components/ParentMessageInfoItem.js +148 -0
- package/dist/Thread/components/ThreadHeader.js +32 -0
- package/dist/Thread/components/ThreadList.js +170 -0
- package/dist/Thread/components/ThreadListItem.js +333 -0
- package/dist/Thread/components/ThreadListItem.js.map +1 -0
- package/dist/Thread/components/ThreadMessageInput.js +187 -0
- package/dist/Thread/components/ThreadMessageInput.js.map +1 -0
- package/dist/Thread/components/ThreadUI.js +266 -0
- package/dist/Thread/components/ThreadUI.js.map +1 -0
- package/dist/Thread/context.js +1334 -0
- package/dist/Thread/context.js.map +1 -0
- package/dist/Thread.js +128 -0
- package/dist/Thread.js.map +1 -0
- package/dist/VoicePlayer/context.js +7 -0
- package/dist/VoicePlayer/useVoicePlayer.js +71 -0
- package/dist/VoiceRecorder/context.js +132 -0
- package/dist/VoiceRecorder/useVoiceRecorder.js +108 -0
- package/dist/chunks/bundle--Ejuxki1.js +16 -0
- package/dist/chunks/bundle--Ejuxki1.js.map +1 -0
- package/dist/chunks/bundle-14ncl99m.js +12 -0
- package/dist/chunks/bundle-14ncl99m.js.map +1 -0
- package/dist/chunks/bundle-2Op65qKC.js +277 -0
- package/dist/chunks/bundle-2Op65qKC.js.map +1 -0
- package/dist/chunks/bundle-3n2XFetI.js +16 -0
- package/dist/chunks/bundle-3n2XFetI.js.map +1 -0
- package/dist/chunks/bundle-4F9sKnDa.js +176 -0
- package/dist/chunks/bundle-4F9sKnDa.js.map +1 -0
- package/dist/chunks/bundle-5ZJpptGh.js +174 -0
- package/dist/chunks/bundle-5ZJpptGh.js.map +1 -0
- package/dist/chunks/bundle-5q71Q0qR.js +211 -0
- package/dist/chunks/bundle-5q71Q0qR.js.map +1 -0
- package/dist/chunks/bundle-6BNmQ0LM.js +13 -0
- package/dist/chunks/bundle-6BNmQ0LM.js.map +1 -0
- package/dist/chunks/bundle-6Jgiyczc.js +8 -0
- package/dist/chunks/bundle-6Jgiyczc.js.map +1 -0
- package/dist/chunks/bundle-6KxAQ3DO.js +1853 -0
- package/dist/chunks/bundle-6KxAQ3DO.js.map +1 -0
- package/dist/chunks/bundle-6_XxQIkT.js +125 -0
- package/dist/chunks/bundle-6_XxQIkT.js.map +1 -0
- package/dist/chunks/bundle-7JfqNhKH.js +18 -0
- package/dist/chunks/bundle-7JfqNhKH.js.map +1 -0
- package/dist/chunks/bundle-7sEsVYzR.js +66 -0
- package/dist/chunks/bundle-7sEsVYzR.js.map +1 -0
- package/dist/chunks/bundle-BLTESd6l.js +230 -0
- package/dist/chunks/bundle-BLTESd6l.js.map +1 -0
- package/dist/chunks/bundle-BMfmU73b.js +355 -0
- package/dist/chunks/bundle-BMfmU73b.js.map +1 -0
- package/dist/chunks/bundle-BYmCRR2q.js +15 -0
- package/dist/chunks/bundle-BYmCRR2q.js.map +1 -0
- package/dist/chunks/bundle-CUfPglBq.js +216 -0
- package/dist/chunks/bundle-CUfPglBq.js.map +1 -0
- package/dist/chunks/bundle-GWEiVUz_.js +147 -0
- package/dist/chunks/bundle-GWEiVUz_.js.map +1 -0
- package/dist/chunks/bundle-GxF20zCF.js +29 -0
- package/dist/chunks/bundle-GxF20zCF.js.map +1 -0
- package/dist/chunks/bundle-Hs9aaQff.js +222 -0
- package/dist/chunks/bundle-Hs9aaQff.js.map +1 -0
- package/dist/chunks/bundle-Iv7qFX4X.js +834 -0
- package/dist/chunks/bundle-Iv7qFX4X.js.map +1 -0
- package/dist/chunks/bundle-K753WYIS.js +57 -0
- package/dist/chunks/bundle-K753WYIS.js.map +1 -0
- package/dist/chunks/bundle-M4oxyPE-.js +24 -0
- package/dist/chunks/bundle-M4oxyPE-.js.map +1 -0
- package/dist/chunks/bundle-MF8abnx2.js +218 -0
- package/dist/chunks/bundle-MF8abnx2.js.map +1 -0
- package/dist/chunks/bundle-MPYPncdD.js +4 -0
- package/dist/chunks/bundle-MPYPncdD.js.map +1 -0
- package/dist/chunks/bundle-NjIn5xfq.js +36 -0
- package/dist/chunks/bundle-NjIn5xfq.js.map +1 -0
- package/dist/chunks/bundle-OxW3t01r.js +31 -0
- package/dist/chunks/bundle-OxW3t01r.js.map +1 -0
- package/dist/chunks/bundle-Rl5fvonY.js +1404 -0
- package/dist/chunks/bundle-Rl5fvonY.js.map +1 -0
- package/dist/chunks/bundle-RrmxRjer.js +508 -0
- package/dist/chunks/bundle-RrmxRjer.js.map +1 -0
- package/dist/chunks/bundle-U45GcWA_.js +28 -0
- package/dist/chunks/bundle-U45GcWA_.js.map +1 -0
- package/dist/chunks/bundle-UApGrG-m.js +1541 -0
- package/dist/chunks/bundle-UApGrG-m.js.map +1 -0
- package/dist/chunks/bundle-UGKbXjDM.js +112 -0
- package/dist/chunks/bundle-UGKbXjDM.js.map +1 -0
- package/dist/chunks/bundle-Vp2hvuBO.js +31 -0
- package/dist/chunks/bundle-Vp2hvuBO.js.map +1 -0
- package/dist/chunks/bundle-W3iSjA2l.js +235 -0
- package/dist/chunks/bundle-W3iSjA2l.js.map +1 -0
- package/dist/chunks/bundle-_HbjO2rd.js +262 -0
- package/dist/chunks/bundle-_HbjO2rd.js.map +1 -0
- package/dist/chunks/bundle-a2JLFpDM.js +78 -0
- package/dist/chunks/bundle-a2JLFpDM.js.map +1 -0
- package/dist/chunks/bundle-a8y3Ewac.js +174 -0
- package/dist/chunks/bundle-a8y3Ewac.js.map +1 -0
- package/dist/chunks/bundle-dVgSt0b0.js +36 -0
- package/dist/chunks/bundle-dVgSt0b0.js.map +1 -0
- package/dist/chunks/bundle-dxJV8pSS.js +76 -0
- package/dist/chunks/bundle-dxJV8pSS.js.map +1 -0
- package/dist/chunks/bundle-eBjVWhHZ.js +96 -0
- package/dist/chunks/bundle-eBjVWhHZ.js.map +1 -0
- package/dist/chunks/bundle-e_9mGqwg.js +13 -0
- package/dist/chunks/bundle-e_9mGqwg.js.map +1 -0
- package/dist/chunks/bundle-gXxnKnlk.js +9 -0
- package/dist/chunks/bundle-gXxnKnlk.js.map +1 -0
- package/dist/chunks/bundle-gkOxTHma.js +657 -0
- package/dist/chunks/bundle-gkOxTHma.js.map +1 -0
- package/dist/chunks/bundle-jczKqLnP.js +24 -0
- package/dist/chunks/bundle-jczKqLnP.js.map +1 -0
- package/dist/chunks/bundle-lnteErrw.js +5 -0
- package/dist/chunks/bundle-lnteErrw.js.map +1 -0
- package/dist/chunks/bundle-m-DDpdq8.js +70 -0
- package/dist/chunks/bundle-m-DDpdq8.js.map +1 -0
- package/dist/chunks/bundle-oTQSHYWK.js +98 -0
- package/dist/chunks/bundle-oTQSHYWK.js.map +1 -0
- package/dist/chunks/bundle-q496PSxP.js +72 -0
- package/dist/chunks/bundle-q496PSxP.js.map +1 -0
- package/dist/chunks/bundle-qHAQziqO.js +97 -0
- package/dist/chunks/bundle-qHAQziqO.js.map +1 -0
- package/dist/chunks/bundle-qufSYree.js +14 -0
- package/dist/chunks/bundle-qufSYree.js.map +1 -0
- package/dist/chunks/bundle-rdL93Rxj.js +42 -0
- package/dist/chunks/bundle-rdL93Rxj.js.map +1 -0
- package/dist/chunks/bundle-rfKswtch.js +134 -0
- package/dist/chunks/bundle-rfKswtch.js.map +1 -0
- package/dist/chunks/bundle-saiSPI85.js +4 -0
- package/dist/chunks/bundle-saiSPI85.js.map +1 -0
- package/dist/chunks/bundle-uDaAbuPs.js +132 -0
- package/dist/chunks/bundle-uDaAbuPs.js.map +1 -0
- package/dist/chunks/bundle-wfnnwHTT.js +77 -0
- package/dist/chunks/bundle-wfnnwHTT.js.map +1 -0
- package/dist/chunks/bundle-x4ZuQz8S.js +4 -0
- package/dist/chunks/bundle-x4ZuQz8S.js.map +1 -0
- package/dist/chunks/bundle-xTeLtbXU.js +4 -0
- package/dist/chunks/bundle-xTeLtbXU.js.map +1 -0
- package/dist/chunks/bundle-yOmQxfc5.js +131 -0
- package/dist/chunks/bundle-yOmQxfc5.js.map +1 -0
- package/dist/chunks/bundle-y_cfYqAg.js +69 -0
- package/dist/chunks/bundle-y_cfYqAg.js.map +1 -0
- package/dist/chunks/bundle-ybeKF-fO.js +26 -0
- package/dist/chunks/bundle-ybeKF-fO.js.map +1 -0
- package/dist/chunks/bundle-ypBBz_XL.js +62 -0
- package/dist/chunks/bundle-ypBBz_XL.js.map +1 -0
- package/dist/chunks/bundle-zrpCI795.js +25 -0
- package/dist/chunks/bundle-zrpCI795.js.map +1 -0
- package/dist/cjs/App.js +424 -0
- package/dist/cjs/App.js.map +1 -0
- package/dist/cjs/Channel/components/ChannelHeader.js +69 -0
- package/dist/cjs/Channel/components/ChannelUI.js +164 -0
- package/dist/cjs/Channel/components/ChannelUI.js.map +1 -0
- package/dist/cjs/Channel/components/FileViewer.js +93 -0
- package/dist/cjs/Channel/components/FrozenNotification.js +18 -0
- package/dist/cjs/Channel/components/Message.js +343 -0
- package/dist/cjs/Channel/components/MessageInput.js +210 -0
- package/dist/cjs/Channel/components/MessageInput.js.map +1 -0
- package/dist/cjs/Channel/components/MessageList.js +117 -0
- package/dist/cjs/Channel/components/RemoveMessageModal.js +54 -0
- package/dist/cjs/Channel/components/SuggestedMentionList.js +200 -0
- package/dist/cjs/Channel/components/TypingIndicator.js +89 -0
- package/dist/cjs/Channel/components/UnreadCount.js +35 -0
- package/dist/cjs/Channel/context.js +31 -0
- package/dist/cjs/Channel/hooks/useHandleUploadFiles.js +135 -0
- package/dist/cjs/Channel/hooks/useHandleUploadFiles.js.map +1 -0
- package/dist/cjs/Channel/hooks/useInitialMessagesFetch.js +111 -0
- package/dist/cjs/Channel/utils/compareMessagesForGrouping.js +28 -0
- package/dist/cjs/Channel/utils/getMessagePartsInfo.js +36 -0
- package/dist/cjs/Channel.js +134 -0
- package/dist/cjs/Channel.js.map +1 -0
- package/dist/cjs/ChannelList/components/AddChannel.js +66 -0
- package/dist/cjs/ChannelList/components/ChannelListHeader.js +43 -0
- package/dist/cjs/ChannelList/components/ChannelListUI.js +149 -0
- package/dist/cjs/ChannelList/components/ChannelPreview.js +133 -0
- package/dist/cjs/ChannelList/components/ChannelPreviewAction.js +73 -0
- package/dist/cjs/ChannelList/context.js +22 -0
- package/dist/cjs/ChannelList.js +83 -0
- package/dist/cjs/ChannelSettings/components/ChannelProfile.js +67 -0
- package/dist/cjs/ChannelSettings/components/ChannelSettingsUI.js +121 -0
- package/dist/cjs/ChannelSettings/components/EditDetailsModal.js +99 -0
- package/dist/cjs/ChannelSettings/components/LeaveChannel.js +69 -0
- package/dist/cjs/ChannelSettings/components/ModerationPanel.js +457 -0
- package/dist/cjs/ChannelSettings/components/UserListItem.js +69 -0
- package/dist/cjs/ChannelSettings/components/UserListItem.js.map +1 -0
- package/dist/cjs/ChannelSettings/components/UserPanel.js +66 -0
- package/dist/cjs/ChannelSettings/context.js +72 -0
- package/dist/cjs/ChannelSettings.js +63 -0
- package/dist/cjs/CreateChannel/components/CreateChannelUI.js +50 -0
- package/dist/cjs/CreateChannel/components/InviteUsers.js +169 -0
- package/dist/cjs/CreateChannel/components/SelectChannelType.js +82 -0
- package/dist/cjs/CreateChannel/context.js +16 -0
- package/dist/cjs/CreateChannel.js +46 -0
- package/dist/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +70 -0
- package/dist/cjs/CreateOpenChannel/context.js +52 -0
- package/dist/cjs/CreateOpenChannel.js +35 -0
- package/dist/cjs/EditUserProfile/components/EditUserProfileUI.js +125 -0
- package/dist/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -0
- package/dist/cjs/EditUserProfile.js +36 -0
- package/dist/cjs/MessageSearch/components/MessageSearchUI.js +94 -0
- package/dist/cjs/MessageSearch/context.js +261 -0
- package/dist/cjs/MessageSearch.js +79 -0
- package/dist/cjs/OpenChannel/components/FrozenChannelNotification.js +17 -0
- package/dist/cjs/OpenChannel/components/OpenChannelHeader.js +56 -0
- package/dist/cjs/OpenChannel/components/OpenChannelHeader.js.map +1 -0
- package/dist/cjs/OpenChannel/components/OpenChannelInput.js +65 -0
- package/dist/cjs/OpenChannel/components/OpenChannelInput.js.map +1 -0
- package/dist/cjs/OpenChannel/components/OpenChannelMessage.js +199 -0
- package/dist/cjs/OpenChannel/components/OpenChannelMessage.js.map +1 -0
- package/dist/cjs/OpenChannel/components/OpenChannelMessageList.js +124 -0
- package/dist/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -0
- package/dist/cjs/OpenChannel/components/OpenChannelUI.js +104 -0
- package/dist/cjs/OpenChannel/components/OpenChannelUI.js.map +1 -0
- package/dist/cjs/OpenChannel/context.js +36 -0
- package/dist/cjs/OpenChannel/context.js.map +1 -0
- package/dist/cjs/OpenChannel.js +82 -0
- package/dist/cjs/OpenChannel.js.map +1 -0
- package/dist/cjs/OpenChannelList/components/OpenChannelListUI.js +116 -0
- package/dist/cjs/OpenChannelList/components/OpenChannelPreview.js +31 -0
- package/dist/cjs/OpenChannelList/context.js +17 -0
- package/dist/cjs/OpenChannelList.js +47 -0
- package/dist/cjs/OpenChannelSettings/components/EditDetailsModal.js +91 -0
- package/dist/cjs/OpenChannelSettings/components/OpenChannelProfile.js +58 -0
- package/dist/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +92 -0
- package/dist/cjs/OpenChannelSettings/components/OperatorUI.js +508 -0
- package/dist/cjs/OpenChannelSettings/components/ParticipantUI.js +42 -0
- package/dist/cjs/OpenChannelSettings/context.js +126 -0
- package/dist/cjs/OpenChannelSettings.js +58 -0
- package/dist/cjs/SendbirdProvider.js +1066 -0
- package/dist/cjs/Thread/components/ParentMessageInfo.js +254 -0
- package/dist/cjs/Thread/components/ParentMessageInfo.js.map +1 -0
- package/dist/cjs/Thread/components/ParentMessageInfoItem.js +150 -0
- package/dist/cjs/Thread/components/ThreadHeader.js +34 -0
- package/dist/cjs/Thread/components/ThreadList.js +172 -0
- package/dist/cjs/Thread/components/ThreadListItem.js +335 -0
- package/dist/cjs/Thread/components/ThreadListItem.js.map +1 -0
- package/dist/cjs/Thread/components/ThreadMessageInput.js +189 -0
- package/dist/cjs/Thread/components/ThreadMessageInput.js.map +1 -0
- package/dist/cjs/Thread/components/ThreadUI.js +268 -0
- package/dist/cjs/Thread/components/ThreadUI.js.map +1 -0
- package/dist/cjs/Thread/context.js +1337 -0
- package/dist/cjs/Thread/context.js.map +1 -0
- package/dist/cjs/Thread.js +130 -0
- package/dist/cjs/Thread.js.map +1 -0
- package/dist/cjs/VoicePlayer/context.js +15 -0
- package/dist/cjs/VoicePlayer/useVoicePlayer.js +73 -0
- package/dist/cjs/VoiceRecorder/context.js +138 -0
- package/dist/cjs/VoiceRecorder/useVoiceRecorder.js +111 -0
- package/dist/cjs/chunks/bundle--A7guNuh.js +179 -0
- package/dist/cjs/chunks/bundle--A7guNuh.js.map +1 -0
- package/dist/cjs/chunks/bundle--gwwLhzk.js +20 -0
- package/dist/cjs/chunks/bundle--gwwLhzk.js.map +1 -0
- package/dist/cjs/chunks/bundle-0fVnLVNe.js +236 -0
- package/dist/cjs/chunks/bundle-0fVnLVNe.js.map +1 -0
- package/dist/cjs/chunks/bundle-0pCHXNhB.js +102 -0
- package/dist/cjs/chunks/bundle-0pCHXNhB.js.map +1 -0
- package/dist/cjs/chunks/bundle-1NVer2pf.js +279 -0
- package/dist/cjs/chunks/bundle-1NVer2pf.js.map +1 -0
- package/dist/cjs/chunks/bundle-1m_ISTBo.js +224 -0
- package/dist/cjs/chunks/bundle-1m_ISTBo.js.map +1 -0
- package/dist/cjs/chunks/bundle-21NdG-dk.js +839 -0
- package/dist/cjs/chunks/bundle-21NdG-dk.js.map +1 -0
- package/dist/cjs/chunks/bundle-2Gla4s_W.js +69 -0
- package/dist/cjs/chunks/bundle-2Gla4s_W.js.map +1 -0
- package/dist/cjs/chunks/bundle-2OrFys0C.js +35 -0
- package/dist/cjs/chunks/bundle-2OrFys0C.js.map +1 -0
- package/dist/cjs/chunks/bundle-2k4v26zP.js +79 -0
- package/dist/cjs/chunks/bundle-2k4v26zP.js.map +1 -0
- package/dist/cjs/chunks/bundle-3CEbSubz.js +1858 -0
- package/dist/cjs/chunks/bundle-3CEbSubz.js.map +1 -0
- package/dist/cjs/chunks/bundle-4RnnhACR.js +84 -0
- package/dist/cjs/chunks/bundle-4RnnhACR.js.map +1 -0
- package/dist/cjs/chunks/bundle-4c_n4Hqm.js +220 -0
- package/dist/cjs/chunks/bundle-4c_n4Hqm.js.map +1 -0
- package/dist/cjs/chunks/bundle-5ApFd_AY.js +707 -0
- package/dist/cjs/chunks/bundle-5ApFd_AY.js.map +1 -0
- package/dist/cjs/chunks/bundle-60azKP5A.js +26 -0
- package/dist/cjs/chunks/bundle-60azKP5A.js.map +1 -0
- package/dist/cjs/chunks/bundle-66bD8OVx.js +84 -0
- package/dist/cjs/chunks/bundle-66bD8OVx.js.map +1 -0
- package/dist/cjs/chunks/bundle-9-nr_N-b.js +74 -0
- package/dist/cjs/chunks/bundle-9-nr_N-b.js.map +1 -0
- package/dist/cjs/chunks/bundle-9pKlhVIU.js +178 -0
- package/dist/cjs/chunks/bundle-9pKlhVIU.js.map +1 -0
- package/dist/cjs/chunks/bundle-BuqbuTrW.js +217 -0
- package/dist/cjs/chunks/bundle-BuqbuTrW.js.map +1 -0
- package/dist/cjs/chunks/bundle-CCMHQL0G.js +238 -0
- package/dist/cjs/chunks/bundle-CCMHQL0G.js.map +1 -0
- package/dist/cjs/chunks/bundle-Et2Mrxtk.js +74 -0
- package/dist/cjs/chunks/bundle-Et2Mrxtk.js.map +1 -0
- package/dist/cjs/chunks/bundle-J8UlQsgX.js +6 -0
- package/dist/cjs/chunks/bundle-J8UlQsgX.js.map +1 -0
- package/dist/cjs/chunks/bundle-MH5QFTEj.js +360 -0
- package/dist/cjs/chunks/bundle-MH5QFTEj.js.map +1 -0
- package/dist/cjs/chunks/bundle-NE9TILWI.js +28 -0
- package/dist/cjs/chunks/bundle-NE9TILWI.js.map +1 -0
- package/dist/cjs/chunks/bundle-NkP5dRWo.js +181 -0
- package/dist/cjs/chunks/bundle-NkP5dRWo.js.map +1 -0
- package/dist/cjs/chunks/bundle-NrEnVvdl.js +17 -0
- package/dist/cjs/chunks/bundle-NrEnVvdl.js.map +1 -0
- package/dist/cjs/chunks/bundle-Nz8Lrwe4.js +11 -0
- package/dist/cjs/chunks/bundle-Nz8Lrwe4.js.map +1 -0
- package/dist/cjs/chunks/bundle-Ptyw-8Gc.js +50 -0
- package/dist/cjs/chunks/bundle-Ptyw-8Gc.js.map +1 -0
- package/dist/cjs/chunks/bundle-PvmgqR2n.js +15 -0
- package/dist/cjs/chunks/bundle-PvmgqR2n.js.map +1 -0
- package/dist/cjs/chunks/bundle-SOsWW37c.js +6 -0
- package/dist/cjs/chunks/bundle-SOsWW37c.js.map +1 -0
- package/dist/cjs/chunks/bundle-V1HT7uWN.js +8 -0
- package/dist/cjs/chunks/bundle-V1HT7uWN.js.map +1 -0
- package/dist/cjs/chunks/bundle-V2Qx8kYB.js +99 -0
- package/dist/cjs/chunks/bundle-V2Qx8kYB.js.map +1 -0
- package/dist/cjs/chunks/bundle-Ve2qVeg-.js +30 -0
- package/dist/cjs/chunks/bundle-Ve2qVeg-.js.map +1 -0
- package/dist/cjs/chunks/bundle-X2iyUz_d.js +27 -0
- package/dist/cjs/chunks/bundle-X2iyUz_d.js.map +1 -0
- package/dist/cjs/chunks/bundle-XAU1mgI8.js +39 -0
- package/dist/cjs/chunks/bundle-XAU1mgI8.js.map +1 -0
- package/dist/cjs/chunks/bundle-Xwc-PXin.js +27 -0
- package/dist/cjs/chunks/bundle-Xwc-PXin.js.map +1 -0
- package/dist/cjs/chunks/bundle-YEhDTta6.js +19 -0
- package/dist/cjs/chunks/bundle-YEhDTta6.js.map +1 -0
- package/dist/cjs/chunks/bundle-Z30xKPjr.js +32 -0
- package/dist/cjs/chunks/bundle-Z30xKPjr.js.map +1 -0
- package/dist/cjs/chunks/bundle-_fpgAJFT.js +16 -0
- package/dist/cjs/chunks/bundle-_fpgAJFT.js.map +1 -0
- package/dist/cjs/chunks/bundle-aKKIV6sp.js +68 -0
- package/dist/cjs/chunks/bundle-aKKIV6sp.js.map +1 -0
- package/dist/cjs/chunks/bundle-alfVNg30.js +22 -0
- package/dist/cjs/chunks/bundle-alfVNg30.js.map +1 -0
- package/dist/cjs/chunks/bundle-ayxcxLwI.js +264 -0
- package/dist/cjs/chunks/bundle-ayxcxLwI.js.map +1 -0
- package/dist/cjs/chunks/bundle-bQ1hwrcE.js +6 -0
- package/dist/cjs/chunks/bundle-bQ1hwrcE.js.map +1 -0
- package/dist/cjs/chunks/bundle-c8PEMQg3.js +137 -0
- package/dist/cjs/chunks/bundle-c8PEMQg3.js.map +1 -0
- package/dist/cjs/chunks/bundle-eSkHuU0e.js +38 -0
- package/dist/cjs/chunks/bundle-eSkHuU0e.js.map +1 -0
- package/dist/cjs/chunks/bundle-fV1pX_hi.js +114 -0
- package/dist/cjs/chunks/bundle-fV1pX_hi.js.map +1 -0
- package/dist/cjs/chunks/bundle-f_lSJlZS.js +15 -0
- package/dist/cjs/chunks/bundle-f_lSJlZS.js.map +1 -0
- package/dist/cjs/chunks/bundle-gOtrtUIz.js +75 -0
- package/dist/cjs/chunks/bundle-gOtrtUIz.js.map +1 -0
- package/dist/cjs/chunks/bundle-ga2lvSm8.js +46 -0
- package/dist/cjs/chunks/bundle-ga2lvSm8.js.map +1 -0
- package/dist/cjs/chunks/bundle-jGjSthM3.js +128 -0
- package/dist/cjs/chunks/bundle-jGjSthM3.js.map +1 -0
- package/dist/cjs/chunks/bundle-kbntHY88.js +1409 -0
- package/dist/cjs/chunks/bundle-kbntHY88.js.map +1 -0
- package/dist/cjs/chunks/bundle-oTWBtf3l.js +510 -0
- package/dist/cjs/chunks/bundle-oTWBtf3l.js.map +1 -0
- package/dist/cjs/chunks/bundle-oXJwwgxy.js +79 -0
- package/dist/cjs/chunks/bundle-oXJwwgxy.js.map +1 -0
- package/dist/cjs/chunks/bundle-p04f0r41.js +136 -0
- package/dist/cjs/chunks/bundle-p04f0r41.js.map +1 -0
- package/dist/cjs/chunks/bundle-p9s6eIWW.js +18 -0
- package/dist/cjs/chunks/bundle-p9s6eIWW.js.map +1 -0
- package/dist/cjs/chunks/bundle-tWIm10AV.js +7 -0
- package/dist/cjs/chunks/bundle-tWIm10AV.js.map +1 -0
- package/dist/cjs/chunks/bundle-ttM5NXg0.js +224 -0
- package/dist/cjs/chunks/bundle-ttM5NXg0.js.map +1 -0
- package/dist/cjs/chunks/bundle-wiCMJG39.js +139 -0
- package/dist/cjs/chunks/bundle-wiCMJG39.js.map +1 -0
- package/dist/cjs/chunks/bundle-xeTDYh-o.js +159 -0
- package/dist/cjs/chunks/bundle-xeTDYh-o.js.map +1 -0
- package/dist/cjs/chunks/bundle-zBsUorPd.js +109 -0
- package/dist/cjs/chunks/bundle-zBsUorPd.js.map +1 -0
- package/dist/cjs/chunks/bundle-zaeeh2h7.js +1545 -0
- package/dist/cjs/chunks/bundle-zaeeh2h7.js.map +1 -0
- package/dist/cjs/chunks/bundle-zpXEP6A3.js +10 -0
- package/dist/cjs/chunks/bundle-zpXEP6A3.js.map +1 -0
- package/dist/cjs/hooks/useModal.js +59 -0
- package/dist/cjs/index.js +223 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/lame.all.js +10 -0
- package/dist/cjs/lame.all.js.map +1 -0
- package/dist/cjs/pubSub/topics.js +18 -0
- package/dist/cjs/sendbirdSelectors.js +580 -0
- package/dist/cjs/ui/Accordion.js +52 -0
- package/dist/cjs/ui/AccordionGroup.js +17 -0
- package/dist/cjs/ui/AdminMessage.js +21 -0
- package/dist/cjs/ui/Avatar.js +18 -0
- package/dist/cjs/ui/Badge.js +26 -0
- package/dist/cjs/ui/BottomSheet.js +38 -0
- package/dist/cjs/ui/Button.js +53 -0
- package/dist/cjs/ui/ChannelAvatar.js +32 -0
- package/dist/cjs/ui/ConnectionStatus.js +20 -0
- package/dist/cjs/ui/ContextMenu.js +216 -0
- package/dist/cjs/ui/DateSeparator.js +21 -0
- package/dist/cjs/ui/EmojiReactions.js +179 -0
- package/dist/cjs/ui/EmojiReactions.js.map +1 -0
- package/dist/cjs/ui/FileMessageItemBody.js +41 -0
- package/dist/cjs/ui/FileViewer.js +33 -0
- package/dist/cjs/ui/Icon.js +1140 -0
- package/dist/cjs/ui/IconButton.js +26 -0
- package/dist/cjs/ui/ImageRenderer.js +151 -0
- package/dist/cjs/ui/ImageRenderer.js.map +1 -0
- package/dist/cjs/ui/Input.js +26 -0
- package/dist/cjs/ui/Label.js +16 -0
- package/dist/cjs/ui/LinkLabel.js +32 -0
- package/dist/cjs/ui/Loader.js +20 -0
- package/dist/cjs/ui/MentionLabel.js +69 -0
- package/dist/cjs/ui/MentionUserLabel.js +12 -0
- package/dist/cjs/ui/MessageContent.js +341 -0
- package/dist/cjs/ui/MessageContent.js.map +1 -0
- package/dist/cjs/ui/MessageInput/hooks/usePaste.js +17 -0
- package/dist/cjs/ui/MessageInput.js +464 -0
- package/dist/cjs/ui/MessageItemMenu.js +131 -0
- package/dist/cjs/ui/MessageItemReactionMenu.js +58 -0
- package/dist/cjs/ui/MessageSearchFileItem.js +92 -0
- package/dist/cjs/ui/MessageSearchItem.js +63 -0
- package/dist/cjs/ui/MessageStatus.js +26 -0
- package/dist/cjs/ui/Modal.js +26 -0
- package/dist/cjs/ui/MutedAvatarOverlay.js +23 -0
- package/dist/cjs/ui/OGMessageItemBody.js +87 -0
- package/dist/cjs/ui/OpenChannelAdminMessage.js +17 -0
- package/dist/cjs/ui/OpenChannelAvatar.js +26 -0
- package/dist/cjs/ui/OpenchannelConversationHeader.js +34 -0
- package/dist/cjs/ui/OpenchannelFileMessage.js +141 -0
- package/dist/cjs/ui/OpenchannelFileMessage.js.map +1 -0
- package/dist/cjs/ui/OpenchannelOGMessage.js +186 -0
- package/dist/cjs/ui/OpenchannelOGMessage.js.map +1 -0
- package/dist/cjs/ui/OpenchannelThumbnailMessage.js +178 -0
- package/dist/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -0
- package/dist/cjs/ui/OpenchannelUserMessage.js +149 -0
- package/dist/cjs/ui/OpenchannelUserMessage.js.map +1 -0
- package/dist/cjs/ui/PlaceHolder.js +58 -0
- package/dist/cjs/ui/PlaybackTime.js +22 -0
- package/dist/cjs/ui/QuoteMessage.js +81 -0
- package/dist/cjs/ui/QuoteMessageInput.js +84 -0
- package/dist/cjs/ui/ReactionBadge.js +28 -0
- package/dist/cjs/ui/ReactionButton.js +25 -0
- package/dist/cjs/ui/SortByRow.js +31 -0
- package/dist/cjs/ui/TextButton.js +17 -0
- package/dist/cjs/ui/TextMessageItemBody.js +66 -0
- package/dist/cjs/ui/ThreadReplies.js +44 -0
- package/dist/cjs/ui/ThumbnailMessageItemBody.js +45 -0
- package/dist/cjs/ui/Toggle.js +131 -0
- package/dist/cjs/ui/Tooltip.js +17 -0
- package/dist/cjs/ui/TooltipWrapper.js +21 -0
- package/dist/cjs/ui/TypingIndicatorBubble.js +69 -0
- package/dist/cjs/ui/UnknownMessageItemBody.js +29 -0
- package/dist/cjs/ui/UserListItem.js +75 -0
- package/dist/cjs/ui/UserListItem.js.map +1 -0
- package/dist/cjs/ui/UserProfile.js +60 -0
- package/dist/cjs/ui/VoiceMessageInput.js +21 -0
- package/dist/cjs/ui/VoiceMessageItemBody.js +74 -0
- package/dist/cjs/ui/Word.js +82 -0
- package/dist/cjs/useSendbirdStateContext.js +27 -0
- package/dist/cjs/utils/message/isVoiceMessage.js +11 -0
- package/dist/cjs/withSendbird.js +28 -0
- package/dist/dist/index.css +7839 -0
- package/dist/dist/index.css.map +1 -0
- package/dist/hooks/useModal.js +55 -0
- package/dist/index.js +201 -0
- package/dist/index.js.map +1 -0
- package/dist/lame.all.js +4 -0
- package/dist/lame.all.js.map +1 -0
- package/dist/package.json +1521 -0
- package/dist/pubSub/topics.js +2 -0
- package/dist/sendbirdSelectors.js +555 -0
- package/dist/types/lib/hooks/useConnect/setupConnection.d.ts +18 -0
- package/dist/types/modules/Channel/components/Message/hooks/useIsElementInViewport.d.ts +2 -0
- package/dist/types/modules/Channel/components/Message/hooks/useLazyImageLoader.d.ts +2 -0
- package/dist/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +29 -0
- package/dist/types/modules/Channel/context/hooks/useHandleUploadFiles.d.ts +19 -0
- package/dist/types/modules/Channel/context/hooks/useResendMessageCallback.d.ts +16 -0
- package/dist/types/modules/ChannelList/components/ChannelListUI/index.d.ts +18 -0
- package/dist/types/modules/ChannelList/dux/actionTypes.d.ts +68 -0
- package/dist/types/modules/EditUserProfile/components/EditUserProfileUI/EditUserProfileUIView.d.ts +8 -0
- package/dist/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +17 -0
- package/dist/types/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +27 -0
- package/dist/types/types.d.ts +61 -0
- package/dist/types/ui/EmojiReactions/ReactionItem.d.ts +18 -0
- package/dist/types/ui/Label/stringSet.d.ts +193 -0
- package/dist/types/utils/consts.d.ts +24 -0
- package/dist/ui/Accordion.js +47 -0
- package/dist/ui/AccordionGroup.js +15 -0
- package/dist/ui/AdminMessage.js +19 -0
- package/dist/ui/Avatar.js +9 -0
- package/dist/ui/Badge.js +24 -0
- package/dist/ui/BottomSheet.js +36 -0
- package/dist/ui/Button.js +49 -0
- package/dist/ui/ChannelAvatar.js +30 -0
- package/dist/ui/ConnectionStatus.js +18 -0
- package/dist/ui/ContextMenu.js +207 -0
- package/dist/ui/DateSeparator.js +19 -0
- package/dist/ui/EmojiReactions.js +177 -0
- package/dist/ui/EmojiReactions.js.map +1 -0
- package/dist/ui/FileMessageItemBody.js +39 -0
- package/dist/ui/FileViewer.js +24 -0
- package/dist/ui/Icon.js +1116 -0
- package/dist/ui/IconButton.js +24 -0
- package/dist/ui/ImageRenderer.js +145 -0
- package/dist/ui/ImageRenderer.js.map +1 -0
- package/dist/ui/Input.js +21 -0
- package/dist/ui/Label.js +5 -0
- package/dist/ui/LinkLabel.js +26 -0
- package/dist/ui/Loader.js +18 -0
- package/dist/ui/MentionLabel.js +67 -0
- package/dist/ui/MentionUserLabel.js +10 -0
- package/dist/ui/MessageContent.js +339 -0
- package/dist/ui/MessageInput/hooks/usePaste.js +8 -0
- package/dist/ui/MessageInput.js +462 -0
- package/dist/ui/MessageItemMenu.js +126 -0
- package/dist/ui/MessageItemReactionMenu.js +53 -0
- package/dist/ui/MessageSearchFileItem.js +90 -0
- package/dist/ui/MessageSearchItem.js +61 -0
- package/dist/ui/MessageStatus.js +17 -0
- package/dist/ui/Modal.js +14 -0
- package/dist/ui/MutedAvatarOverlay.js +21 -0
- package/dist/ui/OGMessageItemBody.js +85 -0
- package/dist/ui/OpenChannelAdminMessage.js +15 -0
- package/dist/ui/OpenChannelAvatar.js +24 -0
- package/dist/ui/OpenchannelConversationHeader.js +32 -0
- package/dist/ui/OpenchannelFileMessage.js +139 -0
- package/dist/ui/OpenchannelOGMessage.js +184 -0
- package/dist/ui/OpenchannelThumbnailMessage.js +176 -0
- package/dist/ui/OpenchannelUserMessage.js +147 -0
- package/dist/ui/PlaceHolder.js +53 -0
- package/dist/ui/PlaybackTime.js +17 -0
- package/dist/ui/QuoteMessage.js +79 -0
- package/dist/ui/QuoteMessageInput.js +82 -0
- package/dist/ui/ReactionBadge.js +26 -0
- package/dist/ui/ReactionButton.js +23 -0
- package/dist/ui/SortByRow.js +29 -0
- package/dist/ui/TextButton.js +15 -0
- package/dist/ui/TextMessageItemBody.js +64 -0
- package/dist/ui/ThreadReplies.js +42 -0
- package/dist/ui/ThumbnailMessageItemBody.js +43 -0
- package/dist/ui/Toggle.js +126 -0
- package/dist/ui/Tooltip.js +15 -0
- package/dist/ui/TooltipWrapper.js +19 -0
- package/dist/ui/TypingIndicatorBubble.js +67 -0
- package/dist/ui/UnknownMessageItemBody.js +27 -0
- package/dist/ui/UserListItem.js +73 -0
- package/dist/ui/UserProfile.js +58 -0
- package/dist/ui/VoiceMessageInput.js +15 -0
- package/dist/ui/VoiceMessageItemBody.js +69 -0
- package/dist/ui/Word.js +80 -0
- package/dist/useSendbirdStateContext.js +22 -0
- package/dist/utils/message/isVoiceMessage.js +9 -0
- package/dist/withSendbird.js +23 -0
- package/package.json +111 -1477
- package/App.js +0 -421
- package/App.js.map +0 -1
- package/Channel/components/ChannelHeader.js +0 -67
- package/Channel/components/ChannelUI.js +0 -161
- package/Channel/components/ChannelUI.js.map +0 -1
- package/Channel/components/FileViewer.js +0 -88
- package/Channel/components/FrozenNotification.js +0 -16
- package/Channel/components/Message.js +0 -341
- package/Channel/components/MessageInput.js +0 -204
- package/Channel/components/MessageInput.js.map +0 -1
- package/Channel/components/MessageList.js +0 -111
- package/Channel/components/RemoveMessageModal.js +0 -52
- package/Channel/components/SuggestedMentionList.js +0 -198
- package/Channel/components/TypingIndicator.js +0 -84
- package/Channel/components/UnreadCount.js +0 -33
- package/Channel/context.js +0 -24
- package/Channel/hooks/useHandleUploadFiles.js +0 -237
- package/Channel/hooks/useHandleUploadFiles.js.map +0 -1
- package/Channel/hooks/useInitialMessagesFetch.js +0 -109
- package/Channel/utils/compareMessagesForGrouping.js +0 -26
- package/Channel/utils/getMessagePartsInfo.js +0 -34
- package/Channel.js +0 -131
- package/Channel.js.map +0 -1
- package/ChannelList/components/AddChannel.js +0 -61
- package/ChannelList/components/ChannelListHeader.js +0 -41
- package/ChannelList/components/ChannelListUI.js +0 -147
- package/ChannelList/components/ChannelPreview.js +0 -131
- package/ChannelList/components/ChannelPreviewAction.js +0 -71
- package/ChannelList/context.js +0 -15
- package/ChannelList.js +0 -81
- package/ChannelSettings/components/ChannelProfile.js +0 -65
- package/ChannelSettings/components/ChannelSettingsUI.js +0 -119
- package/ChannelSettings/components/EditDetailsModal.js +0 -97
- package/ChannelSettings/components/LeaveChannel.js +0 -67
- package/ChannelSettings/components/ModerationPanel.js +0 -455
- package/ChannelSettings/components/UserListItem.js +0 -65
- package/ChannelSettings/components/UserListItem.js.map +0 -1
- package/ChannelSettings/components/UserPanel.js +0 -64
- package/ChannelSettings/context.js +0 -69
- package/ChannelSettings.js +0 -61
- package/CreateChannel/components/CreateChannelUI.js +0 -48
- package/CreateChannel/components/InviteUsers.js +0 -167
- package/CreateChannel/components/SelectChannelType.js +0 -80
- package/CreateChannel/context.js +0 -9
- package/CreateChannel.js +0 -44
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -68
- package/CreateOpenChannel/context.js +0 -49
- package/CreateOpenChannel.js +0 -33
- package/EditUserProfile/components/EditUserProfileUI.js +0 -98
- package/EditUserProfile/components/EditUserProfileUI.js.map +0 -1
- package/EditUserProfile.js +0 -34
- package/MessageSearch/components/MessageSearchUI.js +0 -89
- package/MessageSearch/context.js +0 -258
- package/MessageSearch.js +0 -77
- package/OpenChannel/components/FrozenChannelNotification.js +0 -15
- package/OpenChannel/components/OpenChannelHeader.js +0 -47
- package/OpenChannel/components/OpenChannelHeader.js.map +0 -1
- package/OpenChannel/components/OpenChannelInput.js +0 -56
- package/OpenChannel/components/OpenChannelInput.js.map +0 -1
- package/OpenChannel/components/OpenChannelMessage.js +0 -196
- package/OpenChannel/components/OpenChannelMessage.js.map +0 -1
- package/OpenChannel/components/OpenChannelMessageList.js +0 -121
- package/OpenChannel/components/OpenChannelMessageList.js.map +0 -1
- package/OpenChannel/components/OpenChannelUI.js +0 -101
- package/OpenChannel/components/OpenChannelUI.js.map +0 -1
- package/OpenChannel/context.js +0 -14
- package/OpenChannel/context.js.map +0 -1
- package/OpenChannel.js +0 -79
- package/OpenChannel.js.map +0 -1
- package/OpenChannelList/components/OpenChannelListUI.js +0 -114
- package/OpenChannelList/components/OpenChannelPreview.js +0 -29
- package/OpenChannelList/context.js +0 -7
- package/OpenChannelList.js +0 -45
- package/OpenChannelSettings/components/EditDetailsModal.js +0 -89
- package/OpenChannelSettings/components/OpenChannelProfile.js +0 -56
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -90
- package/OpenChannelSettings/components/OperatorUI.js +0 -502
- package/OpenChannelSettings/components/ParticipantUI.js +0 -36
- package/OpenChannelSettings/context.js +0 -123
- package/OpenChannelSettings.js +0 -56
- package/SendbirdProvider.js +0 -1060
- package/Thread/components/ParentMessageInfo.js +0 -246
- package/Thread/components/ParentMessageInfo.js.map +0 -1
- package/Thread/components/ParentMessageInfoItem.js +0 -148
- package/Thread/components/ThreadHeader.js +0 -32
- package/Thread/components/ThreadList.js +0 -170
- package/Thread/components/ThreadListItem.js +0 -327
- package/Thread/components/ThreadListItem.js.map +0 -1
- package/Thread/components/ThreadMessageInput.js +0 -186
- package/Thread/components/ThreadMessageInput.js.map +0 -1
- package/Thread/components/ThreadUI.js +0 -265
- package/Thread/components/ThreadUI.js.map +0 -1
- package/Thread/context.js +0 -1301
- package/Thread/context.js.map +0 -1
- package/Thread.js +0 -127
- package/Thread.js.map +0 -1
- package/VoicePlayer/context.js +0 -7
- package/VoicePlayer/useVoicePlayer.js +0 -71
- package/VoiceRecorder/context.js +0 -132
- package/VoiceRecorder/useVoiceRecorder.js +0 -108
- package/chunks/bundle-0IelBspE.js +0 -78
- package/chunks/bundle-0IelBspE.js.map +0 -1
- package/chunks/bundle-0SIFukuT.js +0 -173
- package/chunks/bundle-0SIFukuT.js.map +0 -1
- package/chunks/bundle-2AUp3oeN.js +0 -15
- package/chunks/bundle-2AUp3oeN.js.map +0 -1
- package/chunks/bundle-2YEsND5T.js +0 -4
- package/chunks/bundle-2YEsND5T.js.map +0 -1
- package/chunks/bundle-3WQuaADd.js +0 -24
- package/chunks/bundle-3WQuaADd.js.map +0 -1
- package/chunks/bundle-5JvP07dI.js +0 -62
- package/chunks/bundle-5JvP07dI.js.map +0 -1
- package/chunks/bundle-6uVd8Nrl.js +0 -66
- package/chunks/bundle-6uVd8Nrl.js.map +0 -1
- package/chunks/bundle-7x4clnC7.js +0 -42
- package/chunks/bundle-7x4clnC7.js.map +0 -1
- package/chunks/bundle-89OkQYTj.js +0 -4
- package/chunks/bundle-89OkQYTj.js.map +0 -1
- package/chunks/bundle-8VA5hO1c.js +0 -13
- package/chunks/bundle-8VA5hO1c.js.map +0 -1
- package/chunks/bundle-967zXkjf.js +0 -12
- package/chunks/bundle-967zXkjf.js.map +0 -1
- package/chunks/bundle-96I4BbNe.js +0 -1455
- package/chunks/bundle-96I4BbNe.js.map +0 -1
- package/chunks/bundle-EPtYsHAJ.js +0 -14
- package/chunks/bundle-EPtYsHAJ.js.map +0 -1
- package/chunks/bundle-EteEacTX.js +0 -220
- package/chunks/bundle-EteEacTX.js.map +0 -1
- package/chunks/bundle-GGcTNRCI.js +0 -57
- package/chunks/bundle-GGcTNRCI.js.map +0 -1
- package/chunks/bundle-GiSLT4lG.js +0 -36
- package/chunks/bundle-GiSLT4lG.js.map +0 -1
- package/chunks/bundle-IeIHBN9i.js +0 -8
- package/chunks/bundle-IeIHBN9i.js.map +0 -1
- package/chunks/bundle-JSlDfYOF.js +0 -16
- package/chunks/bundle-JSlDfYOF.js.map +0 -1
- package/chunks/bundle-JhG5BHdE.js +0 -5
- package/chunks/bundle-JhG5BHdE.js.map +0 -1
- package/chunks/bundle-JuKER7D_.js +0 -213
- package/chunks/bundle-JuKER7D_.js.map +0 -1
- package/chunks/bundle-Jw6D-oM_.js +0 -18
- package/chunks/bundle-Jw6D-oM_.js.map +0 -1
- package/chunks/bundle-KOKqPpBq.js +0 -9
- package/chunks/bundle-KOKqPpBq.js.map +0 -1
- package/chunks/bundle-Ku1a64TD.js +0 -230
- package/chunks/bundle-Ku1a64TD.js.map +0 -1
- package/chunks/bundle-LTnLzJFb.js +0 -176
- package/chunks/bundle-LTnLzJFb.js.map +0 -1
- package/chunks/bundle-LhtrqZSE.js +0 -26
- package/chunks/bundle-LhtrqZSE.js.map +0 -1
- package/chunks/bundle-Mn36ivpf.js +0 -76
- package/chunks/bundle-Mn36ivpf.js.map +0 -1
- package/chunks/bundle-Nv1SlZSC.js +0 -72
- package/chunks/bundle-Nv1SlZSC.js.map +0 -1
- package/chunks/bundle-OiOp4RUP.js +0 -98
- package/chunks/bundle-OiOp4RUP.js.map +0 -1
- package/chunks/bundle-PwOQ689V.js +0 -28
- package/chunks/bundle-PwOQ689V.js.map +0 -1
- package/chunks/bundle-QO9wq7-1.js +0 -1519
- package/chunks/bundle-QO9wq7-1.js.map +0 -1
- package/chunks/bundle-Sk3SXXP7.js +0 -30
- package/chunks/bundle-Sk3SXXP7.js.map +0 -1
- package/chunks/bundle-Tep20T57.js +0 -70
- package/chunks/bundle-Tep20T57.js.map +0 -1
- package/chunks/bundle-WZvwkbYN.js +0 -69
- package/chunks/bundle-WZvwkbYN.js.map +0 -1
- package/chunks/bundle-Xly_X4hP.js +0 -16
- package/chunks/bundle-Xly_X4hP.js.map +0 -1
- package/chunks/bundle-Xq25cpwP.js +0 -826
- package/chunks/bundle-Xq25cpwP.js.map +0 -1
- package/chunks/bundle-Y6TqPszM.js +0 -97
- package/chunks/bundle-Y6TqPszM.js.map +0 -1
- package/chunks/bundle-YQkYq090.js +0 -13
- package/chunks/bundle-YQkYq090.js.map +0 -1
- package/chunks/bundle-YdRy5sj8.js +0 -355
- package/chunks/bundle-YdRy5sj8.js.map +0 -1
- package/chunks/bundle-ZNwxfYJx.js +0 -24
- package/chunks/bundle-ZNwxfYJx.js.map +0 -1
- package/chunks/bundle-ZT6XnGSN.js +0 -657
- package/chunks/bundle-ZT6XnGSN.js.map +0 -1
- package/chunks/bundle-cJc3JBZb.js +0 -77
- package/chunks/bundle-cJc3JBZb.js.map +0 -1
- package/chunks/bundle-dJBzT033.js +0 -31
- package/chunks/bundle-dJBzT033.js.map +0 -1
- package/chunks/bundle-h4Ck6NLh.js +0 -25
- package/chunks/bundle-h4Ck6NLh.js.map +0 -1
- package/chunks/bundle-hGeYEXGB.js +0 -125
- package/chunks/bundle-hGeYEXGB.js.map +0 -1
- package/chunks/bundle-jw3t70tT.js +0 -233
- package/chunks/bundle-jw3t70tT.js.map +0 -1
- package/chunks/bundle-jyTJAjUy.js +0 -134
- package/chunks/bundle-jyTJAjUy.js.map +0 -1
- package/chunks/bundle-k4WuO78S.js +0 -222
- package/chunks/bundle-k4WuO78S.js.map +0 -1
- package/chunks/bundle-l0M5nN1Q.js +0 -131
- package/chunks/bundle-l0M5nN1Q.js.map +0 -1
- package/chunks/bundle-lSKfBDuq.js +0 -132
- package/chunks/bundle-lSKfBDuq.js.map +0 -1
- package/chunks/bundle-menQ38z9.js +0 -147
- package/chunks/bundle-menQ38z9.js.map +0 -1
- package/chunks/bundle-nHhZeAVb.js +0 -96
- package/chunks/bundle-nHhZeAVb.js.map +0 -1
- package/chunks/bundle-oghsyfOE.js +0 -174
- package/chunks/bundle-oghsyfOE.js.map +0 -1
- package/chunks/bundle-pCwi8C-K.js +0 -29
- package/chunks/bundle-pCwi8C-K.js.map +0 -1
- package/chunks/bundle-pmVgESW3.js +0 -1853
- package/chunks/bundle-pmVgESW3.js.map +0 -1
- package/chunks/bundle-s3qW-HFQ.js +0 -36
- package/chunks/bundle-s3qW-HFQ.js.map +0 -1
- package/chunks/bundle-tUJWK_IX.js +0 -277
- package/chunks/bundle-tUJWK_IX.js.map +0 -1
- package/chunks/bundle-vSJ8dTAZ.js +0 -211
- package/chunks/bundle-vSJ8dTAZ.js.map +0 -1
- package/chunks/bundle-wRCPXISN.js +0 -262
- package/chunks/bundle-wRCPXISN.js.map +0 -1
- package/chunks/bundle-xgxXEKxk.js +0 -508
- package/chunks/bundle-xgxXEKxk.js.map +0 -1
- package/chunks/bundle-zCWUhqT2.js +0 -4
- package/chunks/bundle-zCWUhqT2.js.map +0 -1
- package/chunks/bundle-zz1eCYds.js +0 -4
- package/chunks/bundle-zz1eCYds.js.map +0 -1
- package/cjs/App.js +0 -423
- package/cjs/App.js.map +0 -1
- package/cjs/Channel/components/ChannelHeader.js +0 -69
- package/cjs/Channel/components/ChannelUI.js +0 -163
- package/cjs/Channel/components/ChannelUI.js.map +0 -1
- package/cjs/Channel/components/FileViewer.js +0 -93
- package/cjs/Channel/components/FrozenNotification.js +0 -18
- package/cjs/Channel/components/Message.js +0 -343
- package/cjs/Channel/components/MessageInput.js +0 -209
- package/cjs/Channel/components/MessageInput.js.map +0 -1
- package/cjs/Channel/components/MessageList.js +0 -117
- package/cjs/Channel/components/RemoveMessageModal.js +0 -54
- package/cjs/Channel/components/SuggestedMentionList.js +0 -200
- package/cjs/Channel/components/TypingIndicator.js +0 -89
- package/cjs/Channel/components/UnreadCount.js +0 -35
- package/cjs/Channel/context.js +0 -31
- package/cjs/Channel/hooks/useHandleUploadFiles.js +0 -239
- package/cjs/Channel/hooks/useHandleUploadFiles.js.map +0 -1
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +0 -111
- package/cjs/Channel/utils/compareMessagesForGrouping.js +0 -28
- package/cjs/Channel/utils/getMessagePartsInfo.js +0 -36
- package/cjs/Channel.js +0 -133
- package/cjs/Channel.js.map +0 -1
- package/cjs/ChannelList/components/AddChannel.js +0 -66
- package/cjs/ChannelList/components/ChannelListHeader.js +0 -43
- package/cjs/ChannelList/components/ChannelListUI.js +0 -149
- package/cjs/ChannelList/components/ChannelPreview.js +0 -133
- package/cjs/ChannelList/components/ChannelPreviewAction.js +0 -73
- package/cjs/ChannelList/context.js +0 -22
- package/cjs/ChannelList.js +0 -83
- package/cjs/ChannelSettings/components/ChannelProfile.js +0 -67
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +0 -121
- package/cjs/ChannelSettings/components/EditDetailsModal.js +0 -99
- package/cjs/ChannelSettings/components/LeaveChannel.js +0 -69
- package/cjs/ChannelSettings/components/ModerationPanel.js +0 -457
- package/cjs/ChannelSettings/components/UserListItem.js +0 -67
- package/cjs/ChannelSettings/components/UserPanel.js +0 -66
- package/cjs/ChannelSettings/context.js +0 -72
- package/cjs/ChannelSettings.js +0 -63
- package/cjs/CreateChannel/components/CreateChannelUI.js +0 -50
- package/cjs/CreateChannel/components/InviteUsers.js +0 -169
- package/cjs/CreateChannel/components/SelectChannelType.js +0 -82
- package/cjs/CreateChannel/context.js +0 -16
- package/cjs/CreateChannel.js +0 -46
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +0 -70
- package/cjs/CreateOpenChannel/context.js +0 -52
- package/cjs/CreateOpenChannel.js +0 -35
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +0 -100
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +0 -1
- package/cjs/EditUserProfile.js +0 -36
- package/cjs/MessageSearch/components/MessageSearchUI.js +0 -94
- package/cjs/MessageSearch/context.js +0 -261
- package/cjs/MessageSearch.js +0 -79
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +0 -17
- package/cjs/OpenChannel/components/OpenChannelHeader.js +0 -49
- package/cjs/OpenChannel/components/OpenChannelHeader.js.map +0 -1
- package/cjs/OpenChannel/components/OpenChannelInput.js +0 -58
- package/cjs/OpenChannel/components/OpenChannelInput.js.map +0 -1
- package/cjs/OpenChannel/components/OpenChannelMessage.js +0 -198
- package/cjs/OpenChannel/components/OpenChannelMessage.js.map +0 -1
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +0 -123
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +0 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +0 -103
- package/cjs/OpenChannel/components/OpenChannelUI.js.map +0 -1
- package/cjs/OpenChannel/context.js +0 -21
- package/cjs/OpenChannel/context.js.map +0 -1
- package/cjs/OpenChannel.js +0 -81
- package/cjs/OpenChannel.js.map +0 -1
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +0 -116
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +0 -31
- package/cjs/OpenChannelList/context.js +0 -17
- package/cjs/OpenChannelList.js +0 -47
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +0 -91
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +0 -58
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +0 -92
- package/cjs/OpenChannelSettings/components/OperatorUI.js +0 -508
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +0 -42
- package/cjs/OpenChannelSettings/context.js +0 -126
- package/cjs/OpenChannelSettings.js +0 -58
- package/cjs/SendbirdProvider.js +0 -1066
- package/cjs/Thread/components/ParentMessageInfo.js +0 -248
- package/cjs/Thread/components/ParentMessageInfo.js.map +0 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +0 -150
- package/cjs/Thread/components/ThreadHeader.js +0 -34
- package/cjs/Thread/components/ThreadList.js +0 -172
- package/cjs/Thread/components/ThreadListItem.js +0 -329
- package/cjs/Thread/components/ThreadListItem.js.map +0 -1
- package/cjs/Thread/components/ThreadMessageInput.js +0 -188
- package/cjs/Thread/components/ThreadMessageInput.js.map +0 -1
- package/cjs/Thread/components/ThreadUI.js +0 -267
- package/cjs/Thread/components/ThreadUI.js.map +0 -1
- package/cjs/Thread/context.js +0 -1304
- package/cjs/Thread/context.js.map +0 -1
- package/cjs/Thread.js +0 -129
- package/cjs/Thread.js.map +0 -1
- package/cjs/VoicePlayer/context.js +0 -15
- package/cjs/VoicePlayer/useVoicePlayer.js +0 -73
- package/cjs/VoiceRecorder/context.js +0 -138
- package/cjs/VoiceRecorder/useVoiceRecorder.js +0 -111
- package/cjs/chunks/bundle-0MHADZvF.js +0 -84
- package/cjs/chunks/bundle-0MHADZvF.js.map +0 -1
- package/cjs/chunks/bundle-0bOWh2mP.js +0 -139
- package/cjs/chunks/bundle-0bOWh2mP.js.map +0 -1
- package/cjs/chunks/bundle-0wbO-LdY.js +0 -46
- package/cjs/chunks/bundle-0wbO-LdY.js.map +0 -1
- package/cjs/chunks/bundle-5MVOBR4R.js +0 -79
- package/cjs/chunks/bundle-5MVOBR4R.js.map +0 -1
- package/cjs/chunks/bundle-5NqynIJA.js +0 -264
- package/cjs/chunks/bundle-5NqynIJA.js.map +0 -1
- package/cjs/chunks/bundle-5cuVj6Hi.js +0 -181
- package/cjs/chunks/bundle-5cuVj6Hi.js.map +0 -1
- package/cjs/chunks/bundle-7gBYfQwU.js +0 -1523
- package/cjs/chunks/bundle-7gBYfQwU.js.map +0 -1
- package/cjs/chunks/bundle-A4ywDIVT.js +0 -35
- package/cjs/chunks/bundle-A4ywDIVT.js.map +0 -1
- package/cjs/chunks/bundle-AQhLE-Ci.js +0 -7
- package/cjs/chunks/bundle-AQhLE-Ci.js.map +0 -1
- package/cjs/chunks/bundle-AoaxviqO.js +0 -68
- package/cjs/chunks/bundle-AoaxviqO.js.map +0 -1
- package/cjs/chunks/bundle-BA9K_smf.js +0 -360
- package/cjs/chunks/bundle-BA9K_smf.js.map +0 -1
- package/cjs/chunks/bundle-EVdeXpsD.js +0 -48
- package/cjs/chunks/bundle-EVdeXpsD.js.map +0 -1
- package/cjs/chunks/bundle-F--qTOLe.js +0 -707
- package/cjs/chunks/bundle-F--qTOLe.js.map +0 -1
- package/cjs/chunks/bundle-FV9lCJz1.js +0 -831
- package/cjs/chunks/bundle-FV9lCJz1.js.map +0 -1
- package/cjs/chunks/bundle-FpImAp7o.js +0 -137
- package/cjs/chunks/bundle-FpImAp7o.js.map +0 -1
- package/cjs/chunks/bundle-GE1I3PNS.js +0 -84
- package/cjs/chunks/bundle-GE1I3PNS.js.map +0 -1
- package/cjs/chunks/bundle-HaufoaVC.js +0 -18
- package/cjs/chunks/bundle-HaufoaVC.js.map +0 -1
- package/cjs/chunks/bundle-HjwY9t7s.js +0 -217
- package/cjs/chunks/bundle-HjwY9t7s.js.map +0 -1
- package/cjs/chunks/bundle-IxIg8fhp.js +0 -99
- package/cjs/chunks/bundle-IxIg8fhp.js.map +0 -1
- package/cjs/chunks/bundle-JragPpHy.js +0 -69
- package/cjs/chunks/bundle-JragPpHy.js.map +0 -1
- package/cjs/chunks/bundle-KKPmuuwX.js +0 -74
- package/cjs/chunks/bundle-KKPmuuwX.js.map +0 -1
- package/cjs/chunks/bundle-KVlEj9_l.js +0 -1460
- package/cjs/chunks/bundle-KVlEj9_l.js.map +0 -1
- package/cjs/chunks/bundle-MBuX_zXW.js +0 -27
- package/cjs/chunks/bundle-MBuX_zXW.js.map +0 -1
- package/cjs/chunks/bundle-MeuNh9Q9.js +0 -17
- package/cjs/chunks/bundle-MeuNh9Q9.js.map +0 -1
- package/cjs/chunks/bundle-N1ipvkhN.js +0 -6
- package/cjs/chunks/bundle-N1ipvkhN.js.map +0 -1
- package/cjs/chunks/bundle-NYFm08XH.js +0 -15
- package/cjs/chunks/bundle-NYFm08XH.js.map +0 -1
- package/cjs/chunks/bundle-Pe-j2f1D.js +0 -8
- package/cjs/chunks/bundle-Pe-j2f1D.js.map +0 -1
- package/cjs/chunks/bundle-QH7iLrPR.js +0 -102
- package/cjs/chunks/bundle-QH7iLrPR.js.map +0 -1
- package/cjs/chunks/bundle-SngxTjas.js +0 -30
- package/cjs/chunks/bundle-SngxTjas.js.map +0 -1
- package/cjs/chunks/bundle-VoZZnYtF.js +0 -236
- package/cjs/chunks/bundle-VoZZnYtF.js.map +0 -1
- package/cjs/chunks/bundle-XoWonC_b.js +0 -128
- package/cjs/chunks/bundle-XoWonC_b.js.map +0 -1
- package/cjs/chunks/bundle-YjWwnwWH.js +0 -178
- package/cjs/chunks/bundle-YjWwnwWH.js.map +0 -1
- package/cjs/chunks/bundle-YkzD-qec.js +0 -279
- package/cjs/chunks/bundle-YkzD-qec.js.map +0 -1
- package/cjs/chunks/bundle-ZurhBjw4.js +0 -20
- package/cjs/chunks/bundle-ZurhBjw4.js.map +0 -1
- package/cjs/chunks/bundle-cV7uGK08.js +0 -510
- package/cjs/chunks/bundle-cV7uGK08.js.map +0 -1
- package/cjs/chunks/bundle-fWyUHuJu.js +0 -11
- package/cjs/chunks/bundle-fWyUHuJu.js.map +0 -1
- package/cjs/chunks/bundle-gM8i5lGF.js +0 -27
- package/cjs/chunks/bundle-gM8i5lGF.js.map +0 -1
- package/cjs/chunks/bundle-hxGMLtWg.js +0 -22
- package/cjs/chunks/bundle-hxGMLtWg.js.map +0 -1
- package/cjs/chunks/bundle-i5KLDxjz.js +0 -6
- package/cjs/chunks/bundle-i5KLDxjz.js.map +0 -1
- package/cjs/chunks/bundle-igY82TbB.js +0 -39
- package/cjs/chunks/bundle-igY82TbB.js.map +0 -1
- package/cjs/chunks/bundle-l92Ws-Rs.js +0 -32
- package/cjs/chunks/bundle-l92Ws-Rs.js.map +0 -1
- package/cjs/chunks/bundle-mgmuHFWU.js +0 -26
- package/cjs/chunks/bundle-mgmuHFWU.js.map +0 -1
- package/cjs/chunks/bundle-nGMCZjvM.js +0 -1858
- package/cjs/chunks/bundle-nGMCZjvM.js.map +0 -1
- package/cjs/chunks/bundle-nuIgQkwQ.js +0 -75
- package/cjs/chunks/bundle-nuIgQkwQ.js.map +0 -1
- package/cjs/chunks/bundle-o1ta9AIa.js +0 -19
- package/cjs/chunks/bundle-o1ta9AIa.js.map +0 -1
- package/cjs/chunks/bundle-omofvX-G.js +0 -178
- package/cjs/chunks/bundle-omofvX-G.js.map +0 -1
- package/cjs/chunks/bundle-ow5FLcVV.js +0 -16
- package/cjs/chunks/bundle-ow5FLcVV.js.map +0 -1
- package/cjs/chunks/bundle-pOTnhSyt.js +0 -15
- package/cjs/chunks/bundle-pOTnhSyt.js.map +0 -1
- package/cjs/chunks/bundle-pVKke2mQ.js +0 -224
- package/cjs/chunks/bundle-pVKke2mQ.js.map +0 -1
- package/cjs/chunks/bundle-pxBxPT0b.js +0 -159
- package/cjs/chunks/bundle-pxBxPT0b.js.map +0 -1
- package/cjs/chunks/bundle-tFuTz5CT.js +0 -228
- package/cjs/chunks/bundle-tFuTz5CT.js.map +0 -1
- package/cjs/chunks/bundle-ugapct3R.js +0 -236
- package/cjs/chunks/bundle-ugapct3R.js.map +0 -1
- package/cjs/chunks/bundle-v8bBiJ_c.js +0 -215
- package/cjs/chunks/bundle-v8bBiJ_c.js.map +0 -1
- package/cjs/chunks/bundle-vSdu8rrq.js +0 -74
- package/cjs/chunks/bundle-vSdu8rrq.js.map +0 -1
- package/cjs/chunks/bundle-vWUmeH2R.js +0 -79
- package/cjs/chunks/bundle-vWUmeH2R.js.map +0 -1
- package/cjs/chunks/bundle-vWlSj3_G.js +0 -10
- package/cjs/chunks/bundle-vWlSj3_G.js.map +0 -1
- package/cjs/chunks/bundle-wN0CLPzM.js +0 -38
- package/cjs/chunks/bundle-wN0CLPzM.js.map +0 -1
- package/cjs/chunks/bundle-x3a8KQ02.js +0 -136
- package/cjs/chunks/bundle-x3a8KQ02.js.map +0 -1
- package/cjs/chunks/bundle-xeeBDhY6.js +0 -6
- package/cjs/chunks/bundle-xeeBDhY6.js.map +0 -1
- package/cjs/chunks/bundle-xlnqnYUH.js +0 -109
- package/cjs/chunks/bundle-xlnqnYUH.js.map +0 -1
- package/cjs/chunks/bundle-yTYZiuXi.js +0 -28
- package/cjs/chunks/bundle-yTYZiuXi.js.map +0 -1
- package/cjs/hooks/useModal.js +0 -59
- package/cjs/index.js +0 -222
- package/cjs/index.js.map +0 -1
- package/cjs/lame.all.js +0 -16659
- package/cjs/lame.all.js.map +0 -1
- package/cjs/pubSub/topics.js +0 -18
- package/cjs/sendbirdSelectors.js +0 -580
- package/cjs/ui/Accordion.js +0 -52
- package/cjs/ui/AccordionGroup.js +0 -17
- package/cjs/ui/AdminMessage.js +0 -21
- package/cjs/ui/Avatar.js +0 -18
- package/cjs/ui/Badge.js +0 -26
- package/cjs/ui/BottomSheet.js +0 -38
- package/cjs/ui/Button.js +0 -53
- package/cjs/ui/ChannelAvatar.js +0 -32
- package/cjs/ui/ConnectionStatus.js +0 -20
- package/cjs/ui/ContextMenu.js +0 -216
- package/cjs/ui/DateSeparator.js +0 -21
- package/cjs/ui/EmojiReactions.js +0 -180
- package/cjs/ui/EmojiReactions.js.map +0 -1
- package/cjs/ui/FileMessageItemBody.js +0 -41
- package/cjs/ui/FileViewer.js +0 -33
- package/cjs/ui/Icon.js +0 -1140
- package/cjs/ui/IconButton.js +0 -26
- package/cjs/ui/ImageRenderer.js +0 -120
- package/cjs/ui/ImageRenderer.js.map +0 -1
- package/cjs/ui/Input.js +0 -26
- package/cjs/ui/Label.js +0 -16
- package/cjs/ui/LinkLabel.js +0 -32
- package/cjs/ui/Loader.js +0 -20
- package/cjs/ui/MentionLabel.js +0 -69
- package/cjs/ui/MentionUserLabel.js +0 -12
- package/cjs/ui/MessageContent.js +0 -339
- package/cjs/ui/MessageInput/hooks/usePaste.js +0 -17
- package/cjs/ui/MessageInput.js +0 -464
- package/cjs/ui/MessageItemMenu.js +0 -131
- package/cjs/ui/MessageItemReactionMenu.js +0 -58
- package/cjs/ui/MessageSearchFileItem.js +0 -92
- package/cjs/ui/MessageSearchItem.js +0 -63
- package/cjs/ui/MessageStatus.js +0 -26
- package/cjs/ui/Modal.js +0 -26
- package/cjs/ui/MutedAvatarOverlay.js +0 -23
- package/cjs/ui/OGMessageItemBody.js +0 -87
- package/cjs/ui/OpenChannelAdminMessage.js +0 -17
- package/cjs/ui/OpenChannelAvatar.js +0 -26
- package/cjs/ui/OpenchannelConversationHeader.js +0 -34
- package/cjs/ui/OpenchannelFileMessage.js +0 -139
- package/cjs/ui/OpenchannelOGMessage.js +0 -184
- package/cjs/ui/OpenchannelThumbnailMessage.js +0 -176
- package/cjs/ui/OpenchannelUserMessage.js +0 -147
- package/cjs/ui/PlaceHolder.js +0 -58
- package/cjs/ui/PlaybackTime.js +0 -22
- package/cjs/ui/QuoteMessage.js +0 -81
- package/cjs/ui/QuoteMessageInput.js +0 -84
- package/cjs/ui/ReactionBadge.js +0 -28
- package/cjs/ui/ReactionButton.js +0 -25
- package/cjs/ui/SortByRow.js +0 -31
- package/cjs/ui/TextButton.js +0 -17
- package/cjs/ui/TextMessageItemBody.js +0 -66
- package/cjs/ui/ThreadReplies.js +0 -44
- package/cjs/ui/ThumbnailMessageItemBody.js +0 -45
- package/cjs/ui/Toggle.js +0 -131
- package/cjs/ui/Tooltip.js +0 -17
- package/cjs/ui/TooltipWrapper.js +0 -21
- package/cjs/ui/TypingIndicatorBubble.js +0 -69
- package/cjs/ui/UnknownMessageItemBody.js +0 -29
- package/cjs/ui/UserListItem.js +0 -73
- package/cjs/ui/UserProfile.js +0 -60
- package/cjs/ui/VoiceMessageInput.js +0 -21
- package/cjs/ui/VoiceMessageItemBody.js +0 -74
- package/cjs/ui/Word.js +0 -82
- package/cjs/useSendbirdStateContext.js +0 -27
- package/cjs/utils/message/isVoiceMessage.js +0 -11
- package/cjs/withSendbird.js +0 -28
- package/dist/index.css +0 -7839
- package/dist/index.css.map +0 -1
- package/hooks/useModal.js +0 -55
- package/index.js +0 -200
- package/index.js.map +0 -1
- package/lame.all.js +0 -16655
- package/lame.all.js.map +0 -1
- package/pubSub/topics.js +0 -2
- package/sendbirdSelectors.js +0 -555
- package/types/lib/hooks/useConnect/setupConnection.d.ts +0 -18
- package/types/modules/Channel/components/MessageInput/useHandleUploadFiles.d.ts +0 -19
- package/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +0 -29
- package/types/modules/Channel/context/hooks/useResendMessageCallback.d.ts +0 -14
- package/types/modules/ChannelList/components/ChannelListUI/index.d.ts +0 -23
- package/types/modules/ChannelList/dux/actionTypes.d.ts +0 -66
- package/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +0 -3
- package/types/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +0 -27
- package/types/types.d.ts +0 -59
- package/types/ui/EmojiReactions/ReactionItem.d.ts +0 -17
- package/types/ui/Label/stringSet.d.ts +0 -189
- package/types/utils/consts.d.ts +0 -23
- package/ui/Accordion.js +0 -47
- package/ui/AccordionGroup.js +0 -15
- package/ui/AdminMessage.js +0 -19
- package/ui/Avatar.js +0 -9
- package/ui/Badge.js +0 -24
- package/ui/BottomSheet.js +0 -36
- package/ui/Button.js +0 -49
- package/ui/ChannelAvatar.js +0 -30
- package/ui/ConnectionStatus.js +0 -18
- package/ui/ContextMenu.js +0 -207
- package/ui/DateSeparator.js +0 -19
- package/ui/EmojiReactions.js +0 -178
- package/ui/EmojiReactions.js.map +0 -1
- package/ui/FileMessageItemBody.js +0 -39
- package/ui/FileViewer.js +0 -24
- package/ui/Icon.js +0 -1116
- package/ui/IconButton.js +0 -24
- package/ui/ImageRenderer.js +0 -114
- package/ui/ImageRenderer.js.map +0 -1
- package/ui/Input.js +0 -21
- package/ui/Label.js +0 -5
- package/ui/LinkLabel.js +0 -26
- package/ui/Loader.js +0 -18
- package/ui/MentionLabel.js +0 -67
- package/ui/MentionUserLabel.js +0 -10
- package/ui/MessageContent.js +0 -337
- package/ui/MessageContent.js.map +0 -1
- package/ui/MessageInput/hooks/usePaste.js +0 -8
- package/ui/MessageInput.js +0 -462
- package/ui/MessageItemMenu.js +0 -126
- package/ui/MessageItemReactionMenu.js +0 -53
- package/ui/MessageSearchFileItem.js +0 -90
- package/ui/MessageSearchItem.js +0 -61
- package/ui/MessageStatus.js +0 -17
- package/ui/Modal.js +0 -14
- package/ui/MutedAvatarOverlay.js +0 -21
- package/ui/OGMessageItemBody.js +0 -85
- package/ui/OpenChannelAdminMessage.js +0 -15
- package/ui/OpenChannelAvatar.js +0 -24
- package/ui/OpenchannelConversationHeader.js +0 -32
- package/ui/OpenchannelFileMessage.js +0 -137
- package/ui/OpenchannelFileMessage.js.map +0 -1
- package/ui/OpenchannelOGMessage.js +0 -182
- package/ui/OpenchannelOGMessage.js.map +0 -1
- package/ui/OpenchannelThumbnailMessage.js +0 -174
- package/ui/OpenchannelThumbnailMessage.js.map +0 -1
- package/ui/OpenchannelUserMessage.js +0 -145
- package/ui/OpenchannelUserMessage.js.map +0 -1
- package/ui/PlaceHolder.js +0 -53
- package/ui/PlaybackTime.js +0 -17
- package/ui/QuoteMessage.js +0 -79
- package/ui/QuoteMessageInput.js +0 -82
- package/ui/ReactionBadge.js +0 -26
- package/ui/ReactionButton.js +0 -23
- package/ui/SortByRow.js +0 -29
- package/ui/TextButton.js +0 -15
- package/ui/TextMessageItemBody.js +0 -64
- package/ui/ThreadReplies.js +0 -42
- package/ui/ThumbnailMessageItemBody.js +0 -43
- package/ui/Toggle.js +0 -126
- package/ui/Tooltip.js +0 -15
- package/ui/TooltipWrapper.js +0 -19
- package/ui/TypingIndicatorBubble.js +0 -67
- package/ui/UnknownMessageItemBody.js +0 -27
- package/ui/UserListItem.js +0 -71
- package/ui/UserListItem.js.map +0 -1
- package/ui/UserProfile.js +0 -58
- package/ui/VoiceMessageInput.js +0 -15
- package/ui/VoiceMessageItemBody.js +0 -69
- package/ui/Word.js +0 -80
- package/useSendbirdStateContext.js +0 -22
- package/utils/message/isVoiceMessage.js +0 -9
- package/withSendbird.js +0 -23
- /package/{Channel → dist/Channel}/components/ChannelHeader.js.map +0 -0
- /package/{Channel → dist/Channel}/components/FileViewer.js.map +0 -0
- /package/{Channel → dist/Channel}/components/FrozenNotification.js.map +0 -0
- /package/{Channel → dist/Channel}/components/Message.js.map +0 -0
- /package/{Channel → dist/Channel}/components/MessageList.js.map +0 -0
- /package/{Channel → dist/Channel}/components/RemoveMessageModal.js.map +0 -0
- /package/{Channel → dist/Channel}/components/SuggestedMentionList.js.map +0 -0
- /package/{Channel → dist/Channel}/components/TypingIndicator.js.map +0 -0
- /package/{Channel → dist/Channel}/components/UnreadCount.js.map +0 -0
- /package/{Channel → dist/Channel}/context.js.map +0 -0
- /package/{Channel → dist/Channel}/hooks/useInitialMessagesFetch.js.map +0 -0
- /package/{Channel → dist/Channel}/utils/compareMessagesForGrouping.js.map +0 -0
- /package/{Channel → dist/Channel}/utils/getMessagePartsInfo.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/components/AddChannel.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/components/ChannelListHeader.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/components/ChannelListUI.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/components/ChannelPreview.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/components/ChannelPreviewAction.js.map +0 -0
- /package/{ChannelList → dist/ChannelList}/context.js.map +0 -0
- /package/{ChannelList.js.map → dist/ChannelList.js.map} +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelProfile.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/ChannelSettingsUI.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/EditDetailsModal.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/LeaveChannel.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/ModerationPanel.js.map +0 -0
- /package/{cjs → dist}/ChannelSettings/components/UserListItem.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/components/UserPanel.js.map +0 -0
- /package/{ChannelSettings → dist/ChannelSettings}/context.js.map +0 -0
- /package/{ChannelSettings.js.map → dist/ChannelSettings.js.map} +0 -0
- /package/{CreateChannel → dist/CreateChannel}/components/CreateChannelUI.js.map +0 -0
- /package/{CreateChannel → dist/CreateChannel}/components/InviteUsers.js.map +0 -0
- /package/{CreateChannel → dist/CreateChannel}/components/SelectChannelType.js.map +0 -0
- /package/{CreateChannel → dist/CreateChannel}/context.js.map +0 -0
- /package/{CreateChannel.js.map → dist/CreateChannel.js.map} +0 -0
- /package/{CreateOpenChannel → dist/CreateOpenChannel}/components/CreateOpenChannelUI.js.map +0 -0
- /package/{CreateOpenChannel → dist/CreateOpenChannel}/context.js.map +0 -0
- /package/{CreateOpenChannel.js.map → dist/CreateOpenChannel.js.map} +0 -0
- /package/{EditUserProfile → dist/EditUserProfile}/context.js +0 -0
- /package/{EditUserProfile → dist/EditUserProfile}/context.js.map +0 -0
- /package/{EditUserProfile.js.map → dist/EditUserProfile.js.map} +0 -0
- /package/{Message → dist/Message}/context.js +0 -0
- /package/{Message → dist/Message}/context.js.map +0 -0
- /package/{Message → dist/Message}/hooks/useDirtyGetMentions.js +0 -0
- /package/{Message → dist/Message}/hooks/useDirtyGetMentions.js.map +0 -0
- /package/{MessageSearch → dist/MessageSearch}/components/MessageSearchUI.js.map +0 -0
- /package/{MessageSearch → dist/MessageSearch}/context.js.map +0 -0
- /package/{MessageSearch.js.map → dist/MessageSearch.js.map} +0 -0
- /package/{OpenChannel → dist/OpenChannel}/components/FrozenChannelNotification.js.map +0 -0
- /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelListUI.js.map +0 -0
- /package/{OpenChannelList → dist/OpenChannelList}/components/OpenChannelPreview.js.map +0 -0
- /package/{OpenChannelList → dist/OpenChannelList}/context.js.map +0 -0
- /package/{OpenChannelList.js.map → dist/OpenChannelList.js.map} +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/EditDetailsModal.js.map +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelProfile.js.map +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OpenChannelSettingsUI.js.map +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/OperatorUI.js.map +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/components/ParticipantUI.js.map +0 -0
- /package/{OpenChannelSettings → dist/OpenChannelSettings}/context.js.map +0 -0
- /package/{OpenChannelSettings.js.map → dist/OpenChannelSettings.js.map} +0 -0
- /package/{SendbirdProvider.js.map → dist/SendbirdProvider.js.map} +0 -0
- /package/{Thread → dist/Thread}/components/ParentMessageInfoItem.js.map +0 -0
- /package/{Thread → dist/Thread}/components/ThreadHeader.js.map +0 -0
- /package/{Thread → dist/Thread}/components/ThreadList.js.map +0 -0
- /package/{Thread → dist/Thread}/context/types.js +0 -0
- /package/{Thread → dist/Thread}/context/types.js.map +0 -0
- /package/{VoicePlayer → dist/VoicePlayer}/context.js.map +0 -0
- /package/{VoicePlayer → dist/VoicePlayer}/useVoicePlayer.js.map +0 -0
- /package/{VoiceRecorder → dist/VoiceRecorder}/context.js.map +0 -0
- /package/{VoiceRecorder → dist/VoiceRecorder}/useVoiceRecorder.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/ChannelHeader.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/FileViewer.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/FrozenNotification.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/Message.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/MessageList.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/RemoveMessageModal.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/SuggestedMentionList.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/TypingIndicator.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/components/UnreadCount.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/context.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/hooks/useInitialMessagesFetch.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/utils/compareMessagesForGrouping.js.map +0 -0
- /package/{cjs → dist/cjs}/Channel/utils/getMessagePartsInfo.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/components/AddChannel.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/components/ChannelListHeader.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/components/ChannelListUI.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreview.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/components/ChannelPreviewAction.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList/context.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelList.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelProfile.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/ChannelSettingsUI.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/EditDetailsModal.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/LeaveChannel.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/ModerationPanel.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/components/UserPanel.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings/context.js.map +0 -0
- /package/{cjs → dist/cjs}/ChannelSettings.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateChannel/components/CreateChannelUI.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateChannel/components/InviteUsers.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateChannel/components/SelectChannelType.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateChannel/context.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateChannel.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateOpenChannel/components/CreateOpenChannelUI.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateOpenChannel/context.js.map +0 -0
- /package/{cjs → dist/cjs}/CreateOpenChannel.js.map +0 -0
- /package/{cjs → dist/cjs}/EditUserProfile/context.js +0 -0
- /package/{cjs → dist/cjs}/EditUserProfile/context.js.map +0 -0
- /package/{cjs → dist/cjs}/EditUserProfile.js.map +0 -0
- /package/{cjs → dist/cjs}/Message/context.js +0 -0
- /package/{cjs → dist/cjs}/Message/context.js.map +0 -0
- /package/{cjs → dist/cjs}/Message/hooks/useDirtyGetMentions.js +0 -0
- /package/{cjs → dist/cjs}/Message/hooks/useDirtyGetMentions.js.map +0 -0
- /package/{cjs → dist/cjs}/MessageSearch/components/MessageSearchUI.js.map +0 -0
- /package/{cjs → dist/cjs}/MessageSearch/context.js.map +0 -0
- /package/{cjs → dist/cjs}/MessageSearch.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannel/components/FrozenChannelNotification.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelListUI.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelList/components/OpenChannelPreview.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelList/context.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelList.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/components/EditDetailsModal.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelProfile.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/components/OperatorUI.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/components/ParticipantUI.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings/context.js.map +0 -0
- /package/{cjs → dist/cjs}/OpenChannelSettings.js.map +0 -0
- /package/{cjs → dist/cjs}/SendbirdProvider.js.map +0 -0
- /package/{cjs → dist/cjs}/Thread/components/ParentMessageInfoItem.js.map +0 -0
- /package/{cjs → dist/cjs}/Thread/components/ThreadHeader.js.map +0 -0
- /package/{cjs → dist/cjs}/Thread/components/ThreadList.js.map +0 -0
- /package/{cjs → dist/cjs}/Thread/context/types.js +0 -0
- /package/{cjs → dist/cjs}/Thread/context/types.js.map +0 -0
- /package/{cjs → dist/cjs}/VoicePlayer/context.js.map +0 -0
- /package/{cjs → dist/cjs}/VoicePlayer/useVoicePlayer.js.map +0 -0
- /package/{cjs → dist/cjs}/VoiceRecorder/context.js.map +0 -0
- /package/{cjs → dist/cjs}/VoiceRecorder/useVoiceRecorder.js.map +0 -0
- /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js +0 -0
- /package/{cjs → dist/cjs}/handlers/ConnectionHandler.js.map +0 -0
- /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js +0 -0
- /package/{cjs → dist/cjs}/handlers/GroupChannelHandler.js.map +0 -0
- /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js +0 -0
- /package/{cjs → dist/cjs}/handlers/OpenChannelHandler.js.map +0 -0
- /package/{cjs → dist/cjs}/handlers/SessionHandler.js +0 -0
- /package/{cjs → dist/cjs}/handlers/SessionHandler.js.map +0 -0
- /package/{cjs → dist/cjs}/handlers/UserEventHandler.js +0 -0
- /package/{cjs → dist/cjs}/handlers/UserEventHandler.js.map +0 -0
- /package/{cjs → dist/cjs}/hooks/useModal.js.map +0 -0
- /package/{cjs → dist/cjs}/package.json +0 -0
- /package/{cjs → dist/cjs}/pubSub/topics.js.map +0 -0
- /package/{cjs → dist/cjs}/sendbirdSelectors.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Accordion.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/AccordionGroup.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/AdminMessage.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Avatar.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Badge.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/BottomSheet.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Button.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ChannelAvatar.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Checkbox.js +0 -0
- /package/{cjs → dist/cjs}/ui/Checkbox.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ConnectionStatus.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ContextMenu.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/DateSeparator.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/FileMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/FileViewer.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Icon.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/IconButton.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Input.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Label.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/LinkLabel.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Loader.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MentionLabel.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MentionUserLabel.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageInput/hooks/usePaste.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageInput.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageItemMenu.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageItemReactionMenu.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageSearchFileItem.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageSearchItem.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MessageStatus.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Modal.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/MutedAvatarOverlay.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/OGMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/OpenChannelAdminMessage.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/OpenChannelAvatar.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/OpenchannelConversationHeader.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/PlaceHolder.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/PlaybackTime.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ProgressBar.js +0 -0
- /package/{cjs → dist/cjs}/ui/ProgressBar.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/QuoteMessage.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/QuoteMessageInput.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ReactionBadge.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ReactionButton.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/SortByRow.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/TextButton.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/TextMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ThreadReplies.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/ThumbnailMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Toggle.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Tooltip.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/TooltipWrapper.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/TypingIndicatorBubble.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/UnknownMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/UserProfile.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/VoiceMessageInput.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/VoiceMessageItemBody.js.map +0 -0
- /package/{cjs → dist/cjs}/ui/Word.js.map +0 -0
- /package/{cjs → dist/cjs}/useSendbirdStateContext.js.map +0 -0
- /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js +0 -0
- /package/{cjs → dist/cjs}/utils/message/getOutgoingMessageState.js.map +0 -0
- /package/{cjs → dist/cjs}/utils/message/isVoiceMessage.js.map +0 -0
- /package/{cjs → dist/cjs}/withSendbird.js.map +0 -0
- /package/{handlers → dist/handlers}/ConnectionHandler.js +0 -0
- /package/{handlers → dist/handlers}/ConnectionHandler.js.map +0 -0
- /package/{handlers → dist/handlers}/GroupChannelHandler.js +0 -0
- /package/{handlers → dist/handlers}/GroupChannelHandler.js.map +0 -0
- /package/{handlers → dist/handlers}/OpenChannelHandler.js +0 -0
- /package/{handlers → dist/handlers}/OpenChannelHandler.js.map +0 -0
- /package/{handlers → dist/handlers}/SessionHandler.js +0 -0
- /package/{handlers → dist/handlers}/SessionHandler.js.map +0 -0
- /package/{handlers → dist/handlers}/UserEventHandler.js +0 -0
- /package/{handlers → dist/handlers}/UserEventHandler.js.map +0 -0
- /package/{hooks → dist/hooks}/useModal.js.map +0 -0
- /package/{pubSub → dist/pubSub}/topics.js.map +0 -0
- /package/{sendbirdSelectors.js.map → dist/sendbirdSelectors.js.map} +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/dux/reducer.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/useVoicePlayer.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoicePlayer/utils.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoiceRecorder/WebAudioUtils.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoiceRecorder/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/VoiceRecorder/useVoiceRecorder.d.ts +0 -0
- /package/{types → dist/types}/hooks/useAppendDomNode.d.ts +0 -0
- /package/{types → dist/types}/hooks/useDebounce.d.ts +0 -0
- /package/{types → dist/types}/hooks/useHandleOnScrollCallback/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/useLongPress.d.ts +0 -0
- /package/{types → dist/types}/hooks/useModal/ModalRoot/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/useModal/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/useMouseHover.d.ts +0 -0
- /package/{types → dist/types}/hooks/useOnScrollReachedEndDetector/index.d.ts +0 -0
- /package/{types → dist/types}/hooks/useOutsideAlerter.d.ts +0 -0
- /package/{types → dist/types}/hooks/useSendbirdStateContext.d.ts +0 -0
- /package/{types → dist/types}/hooks/useUnmount.d.ts +0 -0
- /package/{types → dist/types}/index.d.ts +0 -0
- /package/{types → dist/types}/lib/LocalizationContext.d.ts +0 -0
- /package/{types → dist/types}/lib/Logger/index.d.ts +0 -0
- /package/{types → dist/types}/lib/MediaQueryContext.d.ts +0 -0
- /package/{types → dist/types}/lib/Sendbird.d.ts +0 -0
- /package/{types → dist/types}/lib/SendbirdSdkContext.d.ts +0 -0
- /package/{types → dist/types}/lib/SendbirdState.d.ts +0 -0
- /package/{types → dist/types}/lib/UserProfileContext.d.ts +0 -0
- /package/{types → dist/types}/lib/VoiceMessageProvider.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/sdk/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/sdk/initialState.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/sdk/reducers.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/user/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/user/initialState.d.ts +0 -0
- /package/{types → dist/types}/lib/dux/user/reducers.d.ts +0 -0
- /package/{types → dist/types}/lib/handlers/ConnectionHandler.d.ts +0 -0
- /package/{types → dist/types}/lib/handlers/GroupChannelHandler.d.ts +0 -0
- /package/{types → dist/types}/lib/handlers/OpenChannelHandler.d.ts +0 -0
- /package/{types → dist/types}/lib/handlers/SessionHandler.d.ts +0 -0
- /package/{types → dist/types}/lib/handlers/UserEventHandler.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/schedulerFactory.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useConnect/__test__/data.mocks.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useConnect/connect.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useConnect/disconnectSdk.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useConnect/index.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useConnect/types.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useMarkAsDeliveredScheduler.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useMarkAsReadScheduler.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useOnlineStatus.d.ts +0 -0
- /package/{types → dist/types}/lib/hooks/useTheme.d.ts +0 -0
- /package/{types → dist/types}/lib/pubSub/index.d.ts +0 -0
- /package/{types → dist/types}/lib/pubSub/topics.d.ts +0 -0
- /package/{types → dist/types}/lib/selectors.d.ts +0 -0
- /package/{types → dist/types}/lib/types.d.ts +0 -0
- /package/{types → dist/types}/lib/utils/resolvedReplyType.d.ts +0 -0
- /package/{types → dist/types}/lib/utils/uikitConfigMapper.d.ts +0 -0
- /package/{types → dist/types}/modules/App/AppLayout.d.ts +0 -0
- /package/{types → dist/types}/modules/App/DesktopLayout.d.ts +0 -0
- /package/{types → dist/types}/modules/App/MobileLayout.d.ts +0 -0
- /package/{types → dist/types}/modules/App/index.d.ts +0 -0
- /package/{types → dist/types}/modules/App/types.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/ChannelHeader/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/ChannelHeader/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/ChannelUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/FileViewer/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/FrozenNotification/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/Message/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageInput/VoiceMessageInputWrapper.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageInput/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageList/getMessagePartsInfo.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageList/hooks/useScrollBehavior.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageList/hooks/useSetScrollToBottom.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/MessageList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/RemoveMessageModal.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/SuggestedUserMentionItem.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/SuggestedMentionList/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/SuggestedReplies/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/TypingIndicator.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/components/UnreadCount/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/ChannelProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/compareMessagesForGrouping.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/const.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/dux/reducers.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useDeleteMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useGetChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useHandleChannelPubsubEvents.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useHandleReconnect.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useInitialMessagesFetch.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useReconnectOnIdle.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useScrollCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useScrollDownCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useScrollToMessage.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useSendFileMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useSendMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useSendMultipleFilesMessage.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useSendVoiceMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useStatefulFileInfoList.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useThreadMessageKindKeySelector.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useToggleReactionCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/hooks/useUpdateMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/context/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/Channel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/AddChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/ChannelListHeader/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/ChannelPreview/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/ChannelPreview/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/ChannelPreviewAction.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/LeaveChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/components/Placeholder.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/context/ChannelListProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/context/hooks/useActiveChannelUrl.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/context/hooks/useFetchChannelList.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/dux/getNextChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/dux/reducers.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelList/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ChannelProfile/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ChannelSettingsUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/EditDetailsModal/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/LeaveChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/AddOperatorsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/BannedUserList.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/BannedUsersModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/InviteUsersModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MemberList.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MembersModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MutedMemberList.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/MutedMembersModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/OperatorList.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/OperatorsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/ModerationPanel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/UserListItem/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/components/UserPanel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/ChannelSettings/index.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/components/CreateChannelUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/components/InviteUsers/index.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/components/InviteUsers/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/components/SelectChannelType.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/context/CreateChannelProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/types.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateChannel/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateOpenChannel/components/CreateOpenChannelUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateOpenChannel/context/CreateOpenChannelProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/CreateOpenChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/EditUserProfile/context/EditUserProfileProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/EditUserProfile/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/components/TextFragment/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/consts.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/context/MessageProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/hooks/useDirtyGetMentions.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/utils/getMentionNodes.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/utils/tokens/keyGenerator.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/utils/tokens/tokenize.d.ts +0 -0
- /package/{types → dist/types}/modules/Message/utils/tokens/types.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/components/MessageSearchUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/MessageSearchProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/dux/reducers.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/hooks/useGetSearchedMessages.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/hooks/useScrollCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/hooks/useSearchStringEffect.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/context/hooks/useSetChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/MessageSearch/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/FrozenChannelNotification/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelHeader/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelInput/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/RemoveMessageModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelMessageList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/components/OpenChannelUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/OpenChannelProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/dux/reducers.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useCheckScrollBottom.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useDeleteMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useInitialMessagesFetch.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useResendMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useScrollCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useSendMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useSetChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useTrimMessageList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/hooks/useUpdateMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/context/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannel/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/Community.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/Streaming.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/assets/Icons.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/CommunityChannelList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/DummyStream.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/Login.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/OpenChannelPreview.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/Profile.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/components/StreamingChannelList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelApp/stories/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/components/OpenChannelListUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/components/OpenChannelPreview/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/OpenChannelListInterfaces.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/OpenChannelListProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/dux/reducer.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/hooks/createChannelListQuery.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useFetchNextCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useRefreshOpenChannelList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/context/hooks/useSetupOpenChannelList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/EditDetailsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/InvalidChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OpenChannelProfile/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OpenChannelSettingsUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/AddOperatorsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/BannedUserList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/BannedUsersModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/DeleteOpenChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/OperatorList.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/OperatorsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/OperatorUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/ParticipantItem.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/ParticipantsModal.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/components/ParticipantUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/context/OpenChannelSettingsProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/OpenChannelSettings/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ParentMessageInfo/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/RemoveMessageModal.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadHeader/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadList/ThreadListItem.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadList/ThreadListItemContent.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadList/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadMessageInput/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadUI/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedHeader.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedParentMessageInfo.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/components/ThreadUI/useMemorizedThreadList.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/consts.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/ThreadProvider.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/dux/actionTypes.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/dux/initialState.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/dux/reducer.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useDeleteMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetAllEmoji.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetChannel.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetNextThreadsCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetParentMessage.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetPrevThreadsCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useGetThreadList.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useHandleChannelEvents.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useHandleThreadPubsubEvents.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useResendMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useSendFileMessage.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useSendMultipleFilesMessage.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useSendUserMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useSendVoiceMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useToggleReactionsCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/hooks/useUpdateMessageCallback.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/context/utils.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/index.d.ts +0 -0
- /package/{types → dist/types}/modules/Thread/types.d.ts +0 -0
- /package/{types → dist/types}/modules/internalInterfaces.d.ts +0 -0
- /package/{types → dist/types}/ui/Accordion/AccordionGroup.d.ts +0 -0
- /package/{types → dist/types}/ui/Accordion/context.d.ts +0 -0
- /package/{types → dist/types}/ui/Accordion/index.d.ts +0 -0
- /package/{types → dist/types}/ui/AdminMessage/adminMessageDummyData.mock.d.ts +0 -0
- /package/{types → dist/types}/ui/AdminMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Avatar/AvatarDefault.d.ts +0 -0
- /package/{types → dist/types}/ui/Avatar/MutedAvatarOverlay.d.ts +0 -0
- /package/{types → dist/types}/ui/Avatar/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Badge/index.d.ts +0 -0
- /package/{types → dist/types}/ui/BottomSheet/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Button/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Button/types.d.ts +0 -0
- /package/{types → dist/types}/ui/Button/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/ChannelAvatar/OpenChannelAvatar.d.ts +0 -0
- /package/{types → dist/types}/ui/ChannelAvatar/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ChannelAvatar/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/Checkbox/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ConnectionStatus/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ContextMenu/EmojiListItems.d.ts +0 -0
- /package/{types → dist/types}/ui/ContextMenu/MenuItems.d.ts +0 -0
- /package/{types → dist/types}/ui/ContextMenu/index.d.ts +0 -0
- /package/{types → dist/types}/ui/DateSeparator/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Docs/Introduction.d.ts +0 -0
- /package/{types → dist/types}/ui/EmojiReactions/AddReactionBadgeItem.d.ts +0 -0
- /package/{types → dist/types}/ui/EmojiReactions/index.d.ts +0 -0
- /package/{types → dist/types}/ui/FileMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/DeleteButton.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/Slider.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/data.mock.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/hooks/useKeyDown.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/index.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/types.d.ts +0 -0
- /package/{types → dist/types}/ui/FileViewer/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/Icon/colors.d.ts +0 -0
- /package/{types → dist/types}/ui/Icon/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Icon/type.d.ts +0 -0
- /package/{types → dist/types}/ui/Icon/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/IconButton/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ImageGrid/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ImageRenderer/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ImageRenderer/useDynamicSideLength.d.ts +0 -0
- /package/{types → dist/types}/ui/ImageRenderer/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/Input/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Label/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Label/stringFormatterUtils.d.ts +0 -0
- /package/{types → dist/types}/ui/Label/types.d.ts +0 -0
- /package/{types → dist/types}/ui/Label/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/LegacyEditUserProfile/index.d.ts +0 -0
- /package/{types → dist/types}/ui/LinkLabel/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Loader/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MentionLabel/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MentionUserLabel/consts.d.ts +0 -0
- /package/{types → dist/types}/ui/MentionUserLabel/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MentionUserLabel/renderToString.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageContent/MessageBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageContent/MessageHeader/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageContent/MessageProfile/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageContent/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/const.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/consts.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/insertTemplate.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/types.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/hooks/usePaste/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/messageInputUtils.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageInput/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageItemMenu/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageItemReactionMenu/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchFileItem/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchFileItem/mockFileMessage.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchFileItem/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchItem/getCreatedAt.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchItem/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageSearchItem/messageDummyDate.mock.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageStatus/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MessageStatus/messageDummyData.mock.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/MobileBottomSheet.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/MobileContextMenu.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/MobileEmojisBottomSheet.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/ReactedMembersBottomSheet.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MobileMenu/types.d.ts +0 -0
- /package/{types → dist/types}/ui/Modal/index.d.ts +0 -0
- /package/{types → dist/types}/ui/MultipleFilesMessageItemBody/const.d.ts +0 -0
- /package/{types → dist/types}/ui/MultipleFilesMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OGMessageItemBody/consts.d.ts +0 -0
- /package/{types → dist/types}/ui/OGMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenChannelAdminMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenChannelMobileMenu/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelConversationHeader/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelFileMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelFileMessage/mockMessages.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelFileMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelOGMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelOGMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelThumbnailMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelThumbnailMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelUserMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/OpenchannelUserMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/PlaceHolder/index.d.ts +0 -0
- /package/{types → dist/types}/ui/PlaybackTime/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ProgressBar/index.d.ts +0 -0
- /package/{types → dist/types}/ui/QuoteMessage/index.d.ts +0 -0
- /package/{types → dist/types}/ui/QuoteMessage/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/QuoteMessageInput/QuoteMessageThumbnail.d.ts +0 -0
- /package/{types → dist/types}/ui/QuoteMessageInput/index.d.ts +0 -0
- /package/{types → dist/types}/ui/QuoteMessageInput/mockMessage.d.ts +0 -0
- /package/{types → dist/types}/ui/ReactionBadge/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ReactionButton/index.d.ts +0 -0
- /package/{types → dist/types}/ui/SortByRow/index.d.ts +0 -0
- /package/{types → dist/types}/ui/TextButton/index.d.ts +0 -0
- /package/{types → dist/types}/ui/TextMessageItemBody/consts.d.ts +0 -0
- /package/{types → dist/types}/ui/TextMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ThreadReplies/index.d.ts +0 -0
- /package/{types → dist/types}/ui/ThumbnailMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Toggle/ToggleContainer.d.ts +0 -0
- /package/{types → dist/types}/ui/Toggle/ToggleContext.d.ts +0 -0
- /package/{types → dist/types}/ui/Toggle/ToggleUI.d.ts +0 -0
- /package/{types → dist/types}/ui/Toggle/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Toggle/utils.d.ts +0 -0
- /package/{types → dist/types}/ui/Tooltip/index.d.ts +0 -0
- /package/{types → dist/types}/ui/TooltipWrapper/index.d.ts +0 -0
- /package/{types → dist/types}/ui/TypingIndicatorBubble/TypingDots.d.ts +0 -0
- /package/{types → dist/types}/ui/TypingIndicatorBubble/index.d.ts +0 -0
- /package/{types → dist/types}/ui/UnknownMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/UserListItem/index.d.ts +0 -0
- /package/{types → dist/types}/ui/UserProfile/index.d.ts +0 -0
- /package/{types → dist/types}/ui/VoiceMessageInput/controlerIcons.d.ts +0 -0
- /package/{types → dist/types}/ui/VoiceMessageInput/index.d.ts +0 -0
- /package/{types → dist/types}/ui/VoiceMessageInput/types.d.ts +0 -0
- /package/{types → dist/types}/ui/VoiceMessageItemBody/index.d.ts +0 -0
- /package/{types → dist/types}/ui/Word/index.d.ts +0 -0
- /package/{types → dist/types}/utils/cloneMessage.d.ts +0 -0
- /package/{types → dist/types}/utils/color.d.ts +0 -0
- /package/{types → dist/types}/utils/compareIds.d.ts +0 -0
- /package/{types → dist/types}/utils/compressImages.d.ts +0 -0
- /package/{types → dist/types}/utils/createStatefulFileInfoList.d.ts +0 -0
- /package/{types → dist/types}/utils/exports/getOutgoingMessageState.d.ts +0 -0
- /package/{types → dist/types}/utils/getIsReactionEnabled.d.ts +0 -0
- /package/{types → dist/types}/utils/index.d.ts +0 -0
- /package/{types → dist/types}/utils/isVoiceMessage.d.ts +0 -0
- /package/{types → dist/types}/utils/numberToPx.d.ts +0 -0
- /package/{types → dist/types}/utils/openChannelUtils.d.ts +0 -0
- /package/{types → dist/types}/utils/pxToNumber.d.ts +0 -0
- /package/{types → dist/types}/utils/testMocks/error.d.ts +0 -0
- /package/{types → dist/types}/utils/testMocks/message.d.ts +0 -0
- /package/{types → dist/types}/utils/testMocks/messageRequestHandler.d.ts +0 -0
- /package/{types → dist/types}/utils/typeHelpers/objectValues.d.ts +0 -0
- /package/{types → dist/types}/utils/typeHelpers/partialDeep.d.ts +0 -0
- /package/{types → dist/types}/utils/typeHelpers/reducers/createAction.d.ts +0 -0
- /package/{types → dist/types}/utils/useDidMountEffect.d.ts +0 -0
- /package/{types → dist/types}/utils/utils.d.ts +0 -0
- /package/{types → dist/types}/utils/uuid.d.ts +0 -0
- /package/{ui → dist/ui}/Accordion.js.map +0 -0
- /package/{ui → dist/ui}/AccordionGroup.js.map +0 -0
- /package/{ui → dist/ui}/AdminMessage.js.map +0 -0
- /package/{ui → dist/ui}/Avatar.js.map +0 -0
- /package/{ui → dist/ui}/Badge.js.map +0 -0
- /package/{ui → dist/ui}/BottomSheet.js.map +0 -0
- /package/{ui → dist/ui}/Button.js.map +0 -0
- /package/{ui → dist/ui}/ChannelAvatar.js.map +0 -0
- /package/{ui → dist/ui}/Checkbox.js +0 -0
- /package/{ui → dist/ui}/Checkbox.js.map +0 -0
- /package/{ui → dist/ui}/ConnectionStatus.js.map +0 -0
- /package/{ui → dist/ui}/ContextMenu.js.map +0 -0
- /package/{ui → dist/ui}/DateSeparator.js.map +0 -0
- /package/{ui → dist/ui}/FileMessageItemBody.js.map +0 -0
- /package/{ui → dist/ui}/FileViewer.js.map +0 -0
- /package/{ui → dist/ui}/Icon.js.map +0 -0
- /package/{ui → dist/ui}/IconButton.js.map +0 -0
- /package/{ui → dist/ui}/Input.js.map +0 -0
- /package/{ui → dist/ui}/Label.js.map +0 -0
- /package/{ui → dist/ui}/LinkLabel.js.map +0 -0
- /package/{ui → dist/ui}/Loader.js.map +0 -0
- /package/{ui → dist/ui}/MentionLabel.js.map +0 -0
- /package/{ui → dist/ui}/MentionUserLabel.js.map +0 -0
- /package/{cjs → dist}/ui/MessageContent.js.map +0 -0
- /package/{ui → dist/ui}/MessageInput/hooks/usePaste.js.map +0 -0
- /package/{ui → dist/ui}/MessageInput.js.map +0 -0
- /package/{ui → dist/ui}/MessageItemMenu.js.map +0 -0
- /package/{ui → dist/ui}/MessageItemReactionMenu.js.map +0 -0
- /package/{ui → dist/ui}/MessageSearchFileItem.js.map +0 -0
- /package/{ui → dist/ui}/MessageSearchItem.js.map +0 -0
- /package/{ui → dist/ui}/MessageStatus.js.map +0 -0
- /package/{ui → dist/ui}/Modal.js.map +0 -0
- /package/{ui → dist/ui}/MutedAvatarOverlay.js.map +0 -0
- /package/{ui → dist/ui}/OGMessageItemBody.js.map +0 -0
- /package/{ui → dist/ui}/OpenChannelAdminMessage.js.map +0 -0
- /package/{ui → dist/ui}/OpenChannelAvatar.js.map +0 -0
- /package/{ui → dist/ui}/OpenchannelConversationHeader.js.map +0 -0
- /package/{cjs → dist}/ui/OpenchannelFileMessage.js.map +0 -0
- /package/{cjs → dist}/ui/OpenchannelOGMessage.js.map +0 -0
- /package/{cjs → dist}/ui/OpenchannelThumbnailMessage.js.map +0 -0
- /package/{cjs → dist}/ui/OpenchannelUserMessage.js.map +0 -0
- /package/{ui → dist/ui}/PlaceHolder.js.map +0 -0
- /package/{ui → dist/ui}/PlaybackTime.js.map +0 -0
- /package/{ui → dist/ui}/ProgressBar.js +0 -0
- /package/{ui → dist/ui}/ProgressBar.js.map +0 -0
- /package/{ui → dist/ui}/QuoteMessage.js.map +0 -0
- /package/{ui → dist/ui}/QuoteMessageInput.js.map +0 -0
- /package/{ui → dist/ui}/ReactionBadge.js.map +0 -0
- /package/{ui → dist/ui}/ReactionButton.js.map +0 -0
- /package/{ui → dist/ui}/SortByRow.js.map +0 -0
- /package/{ui → dist/ui}/TextButton.js.map +0 -0
- /package/{ui → dist/ui}/TextMessageItemBody.js.map +0 -0
- /package/{ui → dist/ui}/ThreadReplies.js.map +0 -0
- /package/{ui → dist/ui}/ThumbnailMessageItemBody.js.map +0 -0
- /package/{ui → dist/ui}/Toggle.js.map +0 -0
- /package/{ui → dist/ui}/Tooltip.js.map +0 -0
- /package/{ui → dist/ui}/TooltipWrapper.js.map +0 -0
- /package/{ui → dist/ui}/TypingIndicatorBubble.js.map +0 -0
- /package/{ui → dist/ui}/UnknownMessageItemBody.js.map +0 -0
- /package/{cjs → dist}/ui/UserListItem.js.map +0 -0
- /package/{ui → dist/ui}/UserProfile.js.map +0 -0
- /package/{ui → dist/ui}/VoiceMessageInput.js.map +0 -0
- /package/{ui → dist/ui}/VoiceMessageItemBody.js.map +0 -0
- /package/{ui → dist/ui}/Word.js.map +0 -0
- /package/{useSendbirdStateContext.js.map → dist/useSendbirdStateContext.js.map} +0 -0
- /package/{utils → dist/utils}/message/getOutgoingMessageState.js +0 -0
- /package/{utils → dist/utils}/message/getOutgoingMessageState.js.map +0 -0
- /package/{utils → dist/utils}/message/isVoiceMessage.js.map +0 -0
- /package/{withSendbird.js.map → dist/withSendbird.js.map} +0 -0
package/ui/Icon.js
DELETED
|
@@ -1,1116 +0,0 @@
|
|
|
1
|
-
import { a as __spreadArray } from '../chunks/bundle-Y6TqPszM.js';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import React__default from 'react';
|
|
4
|
-
import { n as noop } from '../chunks/bundle-JhG5BHdE.js';
|
|
5
|
-
|
|
6
|
-
/* eslint-disable no-redeclare */
|
|
7
|
-
var Types = {
|
|
8
|
-
ADD: 'ADD',
|
|
9
|
-
ARROW_LEFT: 'ARROW_LEFT',
|
|
10
|
-
ATTACH: 'ATTACH',
|
|
11
|
-
AUDIO_ON_LINED: 'AUDIO_ON_LINED',
|
|
12
|
-
BAN: 'BAN',
|
|
13
|
-
BROADCAST: 'BROADCAST',
|
|
14
|
-
CAMERA: 'CAMERA',
|
|
15
|
-
CHANNELS: 'CHANNELS',
|
|
16
|
-
CHAT: 'CHAT',
|
|
17
|
-
CHAT_FILLED: 'CHAT_FILLED',
|
|
18
|
-
CHEVRON_DOWN: 'CHEVRON_DOWN',
|
|
19
|
-
CHEVRON_RIGHT: 'CHEVRON_RIGHT',
|
|
20
|
-
CLOSE: 'CLOSE',
|
|
21
|
-
COLLAPSE: 'COLLAPSE',
|
|
22
|
-
COPY: 'COPY',
|
|
23
|
-
CREATE: 'CREATE',
|
|
24
|
-
DELETE: 'DELETE',
|
|
25
|
-
DISCONNECTED: 'DISCONNECTED',
|
|
26
|
-
DOCUMENT: 'DOCUMENT',
|
|
27
|
-
DONE: 'DONE',
|
|
28
|
-
DONE_ALL: 'DONE_ALL',
|
|
29
|
-
DOWNLOAD: 'DOWNLOAD',
|
|
30
|
-
EDIT: 'EDIT',
|
|
31
|
-
EMOJI_MORE: 'EMOJI_MORE',
|
|
32
|
-
ERROR: 'ERROR',
|
|
33
|
-
EXPAND: 'EXPAND',
|
|
34
|
-
FILE_AUDIO: 'FILE_AUDIO',
|
|
35
|
-
FILE_DOCUMENT: 'FILE_DOCUMENT',
|
|
36
|
-
FREEZE: 'FREEZE',
|
|
37
|
-
GIF: 'GIF',
|
|
38
|
-
INFO: 'INFO',
|
|
39
|
-
LEAVE: 'LEAVE',
|
|
40
|
-
MEMBERS: 'MEMBERS',
|
|
41
|
-
MESSAGE: 'MESSAGE',
|
|
42
|
-
MODERATIONS: 'MODERATIONS',
|
|
43
|
-
MORE: 'MORE',
|
|
44
|
-
MUTE: 'MUTE',
|
|
45
|
-
NOTIFICATIONS: 'NOTIFICATIONS',
|
|
46
|
-
NOTIFICATIONS_OFF_FILLED: 'NOTIFICATIONS_OFF_FILLED',
|
|
47
|
-
OPERATOR: 'OPERATOR',
|
|
48
|
-
PHOTO: 'PHOTO',
|
|
49
|
-
PLAY: 'PLAY',
|
|
50
|
-
PLUS: 'PLUS',
|
|
51
|
-
QUESTION: 'QUESTION',
|
|
52
|
-
REFRESH: 'REFRESH',
|
|
53
|
-
REPLY: 'REPLY',
|
|
54
|
-
REMOVE: 'REMOVE',
|
|
55
|
-
SEARCH: 'SEARCH',
|
|
56
|
-
SEND: 'SEND',
|
|
57
|
-
SETTINGS_FILLED: 'SETTINGS_FILLED',
|
|
58
|
-
SLIDE_LEFT: 'SLIDE_LEFT',
|
|
59
|
-
SPINNER: 'SPINNER',
|
|
60
|
-
SUPERGROUP: 'SUPERGROUP',
|
|
61
|
-
THREAD: 'THREAD',
|
|
62
|
-
THUMBNAIL_NONE: 'THUMBNAIL_NONE',
|
|
63
|
-
TOGGLE_OFF: 'TOGGLE_OFF',
|
|
64
|
-
TOGGLE_ON: 'TOGGLE_ON',
|
|
65
|
-
USER: 'USER',
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
/* eslint-disable no-redeclare */
|
|
69
|
-
var Colors = {
|
|
70
|
-
DEFAULT: 'DEFAULT',
|
|
71
|
-
PRIMARY: 'PRIMARY',
|
|
72
|
-
PRIMARY_2: 'PRIMARY_2',
|
|
73
|
-
SECONDARY: 'SECONDARY',
|
|
74
|
-
CONTENT: 'CONTENT',
|
|
75
|
-
CONTENT_INVERSE: 'CONTENT_INVERSE',
|
|
76
|
-
WHITE: 'WHITE',
|
|
77
|
-
GRAY: 'GRAY',
|
|
78
|
-
THUMBNAIL_ICON: 'THUMBNAIL_ICON',
|
|
79
|
-
SENT: 'SENT',
|
|
80
|
-
READ: 'READ',
|
|
81
|
-
ON_BACKGROUND_1: 'ON_BACKGROUND_1',
|
|
82
|
-
ON_BACKGROUND_2: 'ON_BACKGROUND_2',
|
|
83
|
-
ON_BACKGROUND_3: 'ON_BACKGROUND_3',
|
|
84
|
-
ON_BACKGROUND_4: 'ON_BACKGROUND_4',
|
|
85
|
-
BACKGROUND_3: 'BACKGROUND_3',
|
|
86
|
-
ERROR: 'ERROR',
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
function changeColorToClassName(color) {
|
|
90
|
-
switch (color) {
|
|
91
|
-
case Colors.PRIMARY: return 'sendbird-icon-color--primary';
|
|
92
|
-
case Colors.PRIMARY_2: return 'sendbird-icon-color--primary-2';
|
|
93
|
-
case Colors.SECONDARY: return 'sendbird-icon-color--secondary';
|
|
94
|
-
case Colors.CONTENT: return 'sendbird-icon-color--content';
|
|
95
|
-
case Colors.CONTENT_INVERSE: return 'sendbird-icon-color--content-inverse';
|
|
96
|
-
case Colors.WHITE: return 'sendbird-icon-color--white';
|
|
97
|
-
case Colors.GRAY: return 'sendbird-icon-color--gray';
|
|
98
|
-
case Colors.THUMBNAIL_ICON: return 'sendbird-icon-color--thumbnail-icon';
|
|
99
|
-
case Colors.SENT: return 'sendbird-icon-color--sent';
|
|
100
|
-
case Colors.READ: return 'sendbird-icon-color--read';
|
|
101
|
-
case Colors.ON_BACKGROUND_1: return 'sendbird-icon-color--on-background-1';
|
|
102
|
-
case Colors.ON_BACKGROUND_2: return 'sendbird-icon-color--on-background-2';
|
|
103
|
-
case Colors.ON_BACKGROUND_3: return 'sendbird-icon-color--on-background-3';
|
|
104
|
-
case Colors.ON_BACKGROUND_4: return 'sendbird-icon-color--on-background-4';
|
|
105
|
-
case Colors.BACKGROUND_3: return 'sendbird-icon-color--background-3';
|
|
106
|
-
case Colors.ERROR: return 'sendbird-icon-color--error';
|
|
107
|
-
default: return '';
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
function changeTypeToIconClassName(type) {
|
|
111
|
-
switch (type) {
|
|
112
|
-
case Types.ADD: return 'sendbird-icon-add';
|
|
113
|
-
case Types.ARROW_LEFT: return 'sendbird-icon-arrow-left';
|
|
114
|
-
case Types.ATTACH: return 'sendbird-icon-attach';
|
|
115
|
-
case Types.AUDIO_ON_LINED: return 'sendbird-icon-audio-on-lined';
|
|
116
|
-
case Types.BAN: return 'sendbird-icon-ban';
|
|
117
|
-
case Types.BROADCAST: return 'sendbird-icon-broadcast';
|
|
118
|
-
case Types.CAMERA: return 'sendbird-icon-camera';
|
|
119
|
-
case Types.CHANNELS: return 'sendbird-icon-channels';
|
|
120
|
-
case Types.CHAT: return 'sendbird-icon-chat';
|
|
121
|
-
case Types.CHAT_FILLED: return 'sendbird-icon-chat-filled';
|
|
122
|
-
case Types.CHEVRON_DOWN: return 'sendbird-icon-chevron-down';
|
|
123
|
-
case Types.CHEVRON_RIGHT: return 'sendbird-icon-chevron-right';
|
|
124
|
-
case Types.CLOSE: return 'sendbird-icon-close';
|
|
125
|
-
case Types.COLLAPSE: return 'sendbird-icon-collapse';
|
|
126
|
-
case Types.COPY: return 'sendbird-icon-copy';
|
|
127
|
-
case Types.CREATE: return 'sendbird-icon-create';
|
|
128
|
-
case Types.DELETE: return 'sendbird-icon-delete';
|
|
129
|
-
case Types.DISCONNECTED: return 'sendbird-icon-disconnected';
|
|
130
|
-
case Types.DOCUMENT: return 'sendbird-icon-document';
|
|
131
|
-
case Types.DONE: return 'sendbird-icon-done';
|
|
132
|
-
case Types.DONE_ALL: return 'sendbird-icon-done-all';
|
|
133
|
-
case Types.DOWNLOAD: return 'sendbird-icon-down-load';
|
|
134
|
-
case Types.EDIT: return 'sendbird-icon-edit';
|
|
135
|
-
case Types.EMOJI_MORE: return 'sendbird-icon-emoji-more';
|
|
136
|
-
case Types.ERROR: return 'sendbird-icon-error';
|
|
137
|
-
case Types.EXPAND: return 'sendbird-icon-expand';
|
|
138
|
-
case Types.FILE_AUDIO: return 'sendbird-icon-file-audio';
|
|
139
|
-
case Types.FILE_DOCUMENT: return 'sendbird-icon-file-document';
|
|
140
|
-
case Types.FREEZE: return 'sendbird-icon-freeze';
|
|
141
|
-
case Types.GIF: return 'sendbird-icon-gif';
|
|
142
|
-
case Types.INFO: return 'sendbird-icon-info';
|
|
143
|
-
case Types.LEAVE: return 'sendbird-icon-leave';
|
|
144
|
-
case Types.MEMBERS: return 'sendbird-icon-members';
|
|
145
|
-
case Types.MESSAGE: return 'sendbird-icon-message';
|
|
146
|
-
case Types.MODERATIONS: return 'sendbird-icon-moderations';
|
|
147
|
-
case Types.MORE: return 'sendbird-icon-more';
|
|
148
|
-
case Types.MUTE: return 'sendbird-icon-mute';
|
|
149
|
-
case Types.NOTIFICATIONS: return 'sendbird-icon-notifications';
|
|
150
|
-
case Types.NOTIFICATIONS_OFF_FILLED: return 'sendbird-icon-notifications-off-filled';
|
|
151
|
-
case Types.OPERATOR: return 'sendbird-icon-operator';
|
|
152
|
-
case Types.PHOTO: return 'sendbird-icon-photo';
|
|
153
|
-
case Types.PLAY: return 'sendbird-icon-play';
|
|
154
|
-
case Types.PLUS: return 'sendbird-iconn-plus';
|
|
155
|
-
case Types.QUESTION: return 'sendbird-icon-question';
|
|
156
|
-
case Types.REFRESH: return 'sendbird-icon-refresh';
|
|
157
|
-
case Types.REMOVE: return 'sendbird-icon-remove';
|
|
158
|
-
case Types.REPLY: return 'sendbird-icon-reply';
|
|
159
|
-
case Types.SEARCH: return 'sendbird-icon-search';
|
|
160
|
-
case Types.SEND: return 'sendbird-icon-send';
|
|
161
|
-
case Types.SETTINGS_FILLED: return 'sendbird-icon-settings-filled';
|
|
162
|
-
case Types.SPINNER: return 'sendbird-icon-spinner';
|
|
163
|
-
case Types.SUPERGROUP: return 'sendbird-icon-supergroup';
|
|
164
|
-
case Types.THREAD: return 'sendbird-icon-thread';
|
|
165
|
-
case Types.THUMBNAIL_NONE: return 'sendbird-icon-thumbnail-none';
|
|
166
|
-
case Types.TOGGLE_OFF: return 'sendbird-icon-toggle-off';
|
|
167
|
-
case Types.TOGGLE_ON: return 'sendbird-icon-toggle-on';
|
|
168
|
-
case Types.USER: return 'sendbird-icon-user';
|
|
169
|
-
default: return 'sendbird-icon-unknown'; // If you see this text 'icon' replace icon for it
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
var _path$S;
|
|
174
|
-
function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
|
|
175
|
-
var SvgIconAdd = function SvgIconAdd(props) {
|
|
176
|
-
return /*#__PURE__*/React.createElement("svg", _extends$V({
|
|
177
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
178
|
-
viewBox: "0 0 64 64"
|
|
179
|
-
}, props), _path$S || (_path$S = /*#__PURE__*/React.createElement("path", {
|
|
180
|
-
fill: "#000",
|
|
181
|
-
fillRule: "evenodd",
|
|
182
|
-
d: "M50.667 5.333a8 8 0 0 1 8 8v37.334a8 8 0 0 1-8 8H13.333a8 8 0 0 1-8-8V13.333a8 8 0 0 1 8-8zm0 5.334H13.333a2.667 2.667 0 0 0-2.666 2.666v37.334a2.667 2.667 0 0 0 2.666 2.666h37.334a2.667 2.667 0 0 0 2.666-2.666V13.333a2.667 2.667 0 0 0-2.666-2.666zm-18.667 8a2.667 2.667 0 0 1 2.649 2.355l.018.311v8h8a2.667 2.667 0 0 1 .311 5.316l-.311.018h-8v8a2.667 2.667 0 0 1-5.316.311l-.018-.311v-8h-8a2.667 2.667 0 0 1-.311-5.316l.311-.018h8v-8A2.667 2.667 0 0 1 32 18.667z",
|
|
183
|
-
className: "icon-add_svg__fill"
|
|
184
|
-
})));
|
|
185
|
-
};
|
|
186
|
-
|
|
187
|
-
var _path$R;
|
|
188
|
-
function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
|
|
189
|
-
var SvgIconArrowLeft = function SvgIconArrowLeft(props) {
|
|
190
|
-
return /*#__PURE__*/React.createElement("svg", _extends$U({
|
|
191
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
192
|
-
viewBox: "0 0 64 64"
|
|
193
|
-
}, props), _path$R || (_path$R = /*#__PURE__*/React.createElement("path", {
|
|
194
|
-
fill: "#000",
|
|
195
|
-
fillRule: "evenodd",
|
|
196
|
-
d: "M33.886 8.781a2.668 2.668 0 0 1 .221 3.52l-.221.251-16.78 16.781H56a2.667 2.667 0 0 1 .311 5.316l-.311.018-38.895-.001 16.78 16.782a2.666 2.666 0 0 1 .222 3.52l-.221.251a2.668 2.668 0 0 1-3.52.222l-.252-.222L8.781 33.886a2.668 2.668 0 0 1-.222-3.52l.222-.252L30.114 8.781a2.668 2.668 0 0 1 3.772 0z",
|
|
197
|
-
className: "icon-arrow-left_svg__fill"
|
|
198
|
-
})));
|
|
199
|
-
};
|
|
200
|
-
|
|
201
|
-
var _path$Q;
|
|
202
|
-
function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
|
|
203
|
-
var SvgIconAttach = function SvgIconAttach(props) {
|
|
204
|
-
return /*#__PURE__*/React.createElement("svg", _extends$T({
|
|
205
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
206
|
-
viewBox: "0 0 64 64"
|
|
207
|
-
}, props), _path$Q || (_path$Q = /*#__PURE__*/React.createElement("path", {
|
|
208
|
-
fill: "#000",
|
|
209
|
-
fillRule: "evenodd",
|
|
210
|
-
d: "m55.334 28.926-24.506 23.34c-5.222 4.973-13.74 4.973-18.962 0-5.149-4.903-5.149-12.797 0-17.7l24.506-23.34c3.138-2.988 8.278-2.988 11.416 0 3.064 2.919 3.064 7.594 0 10.513L23.255 45.077c-1.055 1.005-2.815 1.005-3.87.001-.98-.933-.98-2.39 0-3.325l22.64-21.535a2.667 2.667 0 0 0-3.676-3.864L15.709 37.89a7.578 7.578 0 0 0-.001 11.05c3.113 2.966 8.11 2.966 11.224 0l24.533-23.338c5.272-5.021 5.272-13.217 0-18.238-5.197-4.95-13.573-4.95-18.77 0L8.187 30.704c-7.356 7.005-7.356 18.419 0 25.424 7.281 6.935 19.036 6.935 26.318 0l24.506-23.34a2.666 2.666 0 1 0-3.678-3.862z",
|
|
211
|
-
className: "icon-attach_svg__fill"
|
|
212
|
-
})));
|
|
213
|
-
};
|
|
214
|
-
|
|
215
|
-
var _g$2, _defs;
|
|
216
|
-
function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
|
|
217
|
-
var SvgIconAudioOnLined = function SvgIconAudioOnLined(props) {
|
|
218
|
-
return /*#__PURE__*/React.createElement("svg", _extends$S({
|
|
219
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
220
|
-
fill: "none",
|
|
221
|
-
viewBox: "0 0 64 64"
|
|
222
|
-
}, props), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
223
|
-
clipPath: "url(#icon-audio-on-lined_svg__a)"
|
|
224
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
225
|
-
d: "M32 0C26.11 0 21.333 4.776 21.333 10.667V32c0 5.891 4.776 10.667 10.667 10.667S42.667 37.89 42.667 32V10.667C42.667 4.776 37.89 0 32 0Zm-5.333 10.667a5.333 5.333 0 0 1 10.666 0V32a5.333 5.333 0 0 1-10.666 0V10.667Z",
|
|
226
|
-
className: "icon-audio-on-lined_svg__fill",
|
|
227
|
-
clipRule: "evenodd"
|
|
228
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
229
|
-
d: "M16 26.667a2.667 2.667 0 1 0-5.333 0V32c0 10.879 8.143 19.856 18.666 21.168v5.499h-8a2.667 2.667 0 0 0 0 5.333h21.334a2.667 2.667 0 1 0 0-5.333h-8v-5.499C45.19 51.856 53.333 42.88 53.333 32v-5.333a2.667 2.667 0 1 0-5.333 0V32c0 8.837-7.163 16-16 16s-16-7.163-16-16v-5.333Z",
|
|
230
|
-
className: "icon-audio-on-lined_svg__fill"
|
|
231
|
-
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
232
|
-
id: "icon-audio-on-lined_svg__a"
|
|
233
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
234
|
-
fill: "#fff",
|
|
235
|
-
d: "M0 0h64v64H0z"
|
|
236
|
-
})))));
|
|
237
|
-
};
|
|
238
|
-
|
|
239
|
-
var _path$P;
|
|
240
|
-
function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
|
|
241
|
-
var SvgIconBan = function SvgIconBan(props) {
|
|
242
|
-
return /*#__PURE__*/React.createElement("svg", _extends$R({
|
|
243
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
244
|
-
viewBox: "0 0 64 64"
|
|
245
|
-
}, props), _path$P || (_path$P = /*#__PURE__*/React.createElement("path", {
|
|
246
|
-
fill: "#000",
|
|
247
|
-
fillRule: "evenodd",
|
|
248
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333 2.667 48.2 2.667 32 15.8 2.667 32 2.667zM32 8C18.745 8 8 18.745 8 32s10.745 24 24 24 24-10.745 24-24S45.255 8 32 8zm12.333 21.333a1 1 0 0 1 1 1v3.334a1 1 0 0 1-1 1H19.667a1 1 0 0 1-1-1v-3.334a1 1 0 0 1 1-1h24.666z",
|
|
249
|
-
className: "icon-ban_svg__fill"
|
|
250
|
-
})));
|
|
251
|
-
};
|
|
252
|
-
|
|
253
|
-
var _path$O;
|
|
254
|
-
function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
|
|
255
|
-
var SvgIconBroadcast = function SvgIconBroadcast(props) {
|
|
256
|
-
return /*#__PURE__*/React.createElement("svg", _extends$Q({
|
|
257
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
258
|
-
viewBox: "0 0 64 64"
|
|
259
|
-
}, props), _path$O || (_path$O = /*#__PURE__*/React.createElement("path", {
|
|
260
|
-
fill: "#000",
|
|
261
|
-
fillRule: "evenodd",
|
|
262
|
-
d: "M58.545 5.498c.08.258.122.526.122.796v46.079a2.666 2.666 0 0 1-3.462 2.546l-17.951-5.61c-.645 5.273-5.14 9.358-10.587 9.358C20.776 58.667 16 53.89 16 48v-5.334h-5.333a8 8 0 0 1-7.997-7.75l-.003-.25V24a8 8 0 0 1 8-8H16L55.205 3.749a2.665 2.665 0 0 1 3.34 1.75zM21.333 44.587V48a5.333 5.333 0 0 0 10.652.398L32 47.92l-10.667-3.333zm32-34.667-32 9.997v18.83l32 9.997V9.92zM16 21.333h-5.333a2.67 2.67 0 0 0-2.65 2.356L8 24v10.667a2.667 2.667 0 0 0 2.667 2.666H16v-16z",
|
|
263
|
-
className: "icon-broadcast_svg__fill"
|
|
264
|
-
})));
|
|
265
|
-
};
|
|
266
|
-
|
|
267
|
-
var _path$N;
|
|
268
|
-
function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
|
|
269
|
-
var SvgIconCamera = function SvgIconCamera(props) {
|
|
270
|
-
return /*#__PURE__*/React.createElement("svg", _extends$P({
|
|
271
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
272
|
-
viewBox: "0 0 64 64"
|
|
273
|
-
}, props), _path$N || (_path$N = /*#__PURE__*/React.createElement("path", {
|
|
274
|
-
fill: "#000",
|
|
275
|
-
fillRule: "evenodd",
|
|
276
|
-
d: "M40 5.333c.892 0 1.724.446 2.219 1.188l4.541 6.812H56a8 8 0 0 1 7.986 7.53l.014.47v29.334a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8V21.333a8 8 0 0 1 8-8h9.237l4.544-6.812a2.665 2.665 0 0 1 1.888-1.167l.331-.02zm-1.43 5.334H25.428l-4.542 6.812a2.66 2.66 0 0 1-1.887 1.167l-.331.02H8a2.668 2.668 0 0 0-2.667 2.667v29.334A2.667 2.667 0 0 0 8 53.333h48a2.667 2.667 0 0 0 2.667-2.666V21.333A2.667 2.667 0 0 0 56 18.667H45.333a2.665 2.665 0 0 1-2.218-1.188l-4.544-6.812zM32 21.333c7.364 0 13.333 5.97 13.333 13.334C45.333 42.03 39.363 48 32 48c-7.364 0-13.333-5.97-13.333-13.333 0-7.364 5.97-13.334 13.333-13.334zm0 5.334a8 8 0 1 0 0 16 8 8 0 0 0 0-16z",
|
|
277
|
-
className: "icon-camera_svg__fill"
|
|
278
|
-
})));
|
|
279
|
-
};
|
|
280
|
-
|
|
281
|
-
var _path$M;
|
|
282
|
-
function _extends$O() { _extends$O = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$O.apply(this, arguments); }
|
|
283
|
-
var SvgIconChannels = function SvgIconChannels(props) {
|
|
284
|
-
return /*#__PURE__*/React.createElement("svg", _extends$O({
|
|
285
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
286
|
-
viewBox: "0 0 64 64"
|
|
287
|
-
}, props), _path$M || (_path$M = /*#__PURE__*/React.createElement("path", {
|
|
288
|
-
fill: "#000",
|
|
289
|
-
fillRule: "evenodd",
|
|
290
|
-
d: "m42.65 5.333.311.017a2.666 2.666 0 0 1 2.373 2.633l-.017.311-1.45 13.04h9.466a2.667 2.667 0 0 1 .311 5.315l-.31.018H43.271l-1.184 10.666h11.245a2.667 2.667 0 0 1 .312 5.316l-.31.018H41.495l-1.512 13.627a2.667 2.667 0 0 1-5.318-.277l.017-.311 1.448-13.04H25.496l-1.512 13.628a2.667 2.667 0 0 1-5.318-.277l.017-.311 1.448-13.04h-9.464a2.667 2.667 0 0 1-.311-5.315l.31-.018h10.057l1.186-10.667H10.667a2.667 2.667 0 0 1-.311-5.315l.31-.018h11.835l1.515-13.627a2.668 2.668 0 0 1 2.634-2.373l.311.017a2.666 2.666 0 0 1 2.373 2.633l-.017.311-1.45 13.04H38.5l1.515-13.628a2.668 2.668 0 0 1 2.634-2.373zm-5.927 32 1.186-10.667H27.272l-1.184 10.667h10.635z",
|
|
291
|
-
className: "icon-channels_svg__fill"
|
|
292
|
-
})));
|
|
293
|
-
};
|
|
294
|
-
|
|
295
|
-
var _path$L;
|
|
296
|
-
function _extends$N() { _extends$N = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$N.apply(this, arguments); }
|
|
297
|
-
var SvgIconChat = function SvgIconChat(props) {
|
|
298
|
-
return /*#__PURE__*/React.createElement("svg", _extends$N({
|
|
299
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
300
|
-
viewBox: "0 0 64 64"
|
|
301
|
-
}, props), _path$L || (_path$L = /*#__PURE__*/React.createElement("path", {
|
|
302
|
-
fill: "#000",
|
|
303
|
-
fillRule: "evenodd",
|
|
304
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333c-4.455 0-8.679-.993-12.461-2.77l-1.753.58c-5.965 1.912-10.133 2.572-12.504 1.981-2.799-.698-3.351-1.919-1.657-3.663 1.171-1.396 2.147-3.14 2.928-5.234.622-1.668.377-4.001-.737-7A29.15 29.15 0 0 1 2.666 32C2.667 15.8 15.8 2.667 32 2.667zM32 8C18.745 8 8 18.745 8 32c0 3.5.747 6.88 2.168 9.978l.405.837.137.271.106.285c1.517 4.085 1.89 7.622.734 10.72l-.382.972-.192.433.235-.05a62.067 62.067 0 0 0 4.886-1.363l1.721-.568 2.04-.696 1.95.917A23.882 23.882 0 0 0 32 56c13.255 0 24-10.745 24-24S45.255 8 32 8z",
|
|
305
|
-
className: "icon-chat_svg__fill"
|
|
306
|
-
})));
|
|
307
|
-
};
|
|
308
|
-
|
|
309
|
-
var _path$K;
|
|
310
|
-
function _extends$M() { _extends$M = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$M.apply(this, arguments); }
|
|
311
|
-
var SvgIconChatFilled = function SvgIconChatFilled(props) {
|
|
312
|
-
return /*#__PURE__*/React.createElement("svg", _extends$M({
|
|
313
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
314
|
-
viewBox: "0 0 64 64"
|
|
315
|
-
}, props), _path$K || (_path$K = /*#__PURE__*/React.createElement("path", {
|
|
316
|
-
fill: "#000",
|
|
317
|
-
fillRule: "evenodd",
|
|
318
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333c-4.455 0-8.679-.993-12.461-2.77l-1.753.58c-5.965 1.912-10.133 2.572-12.504 1.981-2.799-.698-3.351-1.919-1.657-3.663 1.171-1.396 2.147-3.14 2.928-5.234.622-1.668.377-4.001-.737-7A29.15 29.15 0 0 1 2.666 32C2.667 15.8 15.8 2.667 32 2.667z",
|
|
319
|
-
className: "icon-chat-filled_svg__fill"
|
|
320
|
-
})));
|
|
321
|
-
};
|
|
322
|
-
|
|
323
|
-
var _path$J;
|
|
324
|
-
function _extends$L() { _extends$L = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$L.apply(this, arguments); }
|
|
325
|
-
var SvgIconChevronDown = function SvgIconChevronDown(props) {
|
|
326
|
-
return /*#__PURE__*/React.createElement("svg", _extends$L({
|
|
327
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
328
|
-
viewBox: "0 0 64 64"
|
|
329
|
-
}, props), _path$J || (_path$J = /*#__PURE__*/React.createElement("path", {
|
|
330
|
-
fill: "#000",
|
|
331
|
-
fillRule: "evenodd",
|
|
332
|
-
d: "M16.121 21.879a2.998 2.998 0 0 0-4.242 0 2.998 2.998 0 0 0 0 4.242l18 18a2.998 2.998 0 0 0 4.242 0l18-18a2.998 2.998 0 0 0 0-4.242 2.998 2.998 0 0 0-4.242 0L32 37.757 16.121 21.88z",
|
|
333
|
-
className: "icon-chevron-down_svg__fill"
|
|
334
|
-
})));
|
|
335
|
-
};
|
|
336
|
-
|
|
337
|
-
var _path$I;
|
|
338
|
-
function _extends$K() { _extends$K = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
339
|
-
var SvgIconChevronRight = function SvgIconChevronRight(props) {
|
|
340
|
-
return /*#__PURE__*/React.createElement("svg", _extends$K({
|
|
341
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
342
|
-
viewBox: "0 0 64 64"
|
|
343
|
-
}, props), _path$I || (_path$I = /*#__PURE__*/React.createElement("path", {
|
|
344
|
-
fill: "#000",
|
|
345
|
-
fillRule: "evenodd",
|
|
346
|
-
d: "M22.114 46.114a2.668 2.668 0 0 0 3.772 3.772l16-16a2.668 2.668 0 0 0 0-3.772l-16-16a2.668 2.668 0 0 0-3.772 3.772L36.23 32 22.114 46.114z",
|
|
347
|
-
className: "icon-chevron-right_svg__fill"
|
|
348
|
-
})));
|
|
349
|
-
};
|
|
350
|
-
|
|
351
|
-
var _path$H;
|
|
352
|
-
function _extends$J() { _extends$J = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$J.apply(this, arguments); }
|
|
353
|
-
var SvgIconClose = function SvgIconClose(props) {
|
|
354
|
-
return /*#__PURE__*/React.createElement("svg", _extends$J({
|
|
355
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
356
|
-
viewBox: "0 0 64 64"
|
|
357
|
-
}, props), _path$H || (_path$H = /*#__PURE__*/React.createElement("path", {
|
|
358
|
-
fill: "#000",
|
|
359
|
-
fillRule: "evenodd",
|
|
360
|
-
d: "M52.552 11.448a2.666 2.666 0 0 1 .222 3.52l-.222.251-16.781 16.78 16.781 16.782a2.665 2.665 0 0 1 0 3.771 2.666 2.666 0 0 1-3.52.222l-.251-.222L32 35.771 15.219 52.552a2.665 2.665 0 0 1-3.771 0 2.666 2.666 0 0 1-.222-3.52l.222-.251L28.228 32l-16.78-16.781a2.665 2.665 0 0 1 0-3.771 2.666 2.666 0 0 1 3.52-.222l.251.222 16.78 16.78 16.782-16.78a2.665 2.665 0 0 1 3.771 0z",
|
|
361
|
-
className: "icon-close_svg__fill"
|
|
362
|
-
})));
|
|
363
|
-
};
|
|
364
|
-
|
|
365
|
-
var _path$G;
|
|
366
|
-
function _extends$I() { _extends$I = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$I.apply(this, arguments); }
|
|
367
|
-
var SvgIconCollapse = function SvgIconCollapse(props) {
|
|
368
|
-
return /*#__PURE__*/React.createElement("svg", _extends$I({
|
|
369
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
370
|
-
viewBox: "0 0 64 64"
|
|
371
|
-
}, props), _path$G || (_path$G = /*#__PURE__*/React.createElement("path", {
|
|
372
|
-
fill: "#000",
|
|
373
|
-
fillRule: "evenodd",
|
|
374
|
-
d: "M16 8a2.667 2.667 0 0 0-2.649 2.356l-.018.31v42.667a2.667 2.667 0 0 0 5.316.311l.018-.31V34.666h25.56l-6.113 6.114a2.668 2.668 0 0 0-.221 3.52l.221.251a2.666 2.666 0 0 0 3.52.222l.252-.222 10.666-10.666a2.666 2.666 0 0 0 .222-3.52l-.222-.252-10.666-10.666a2.666 2.666 0 0 0-3.993 3.52l.221.251 6.113 6.114h-25.56V10.667A2.667 2.667 0 0 0 16 8z",
|
|
375
|
-
className: "icon-collapse_svg__fill"
|
|
376
|
-
})));
|
|
377
|
-
};
|
|
378
|
-
|
|
379
|
-
var _path$F;
|
|
380
|
-
function _extends$H() { _extends$H = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
|
|
381
|
-
var SvgIconCopy = function SvgIconCopy(props) {
|
|
382
|
-
return /*#__PURE__*/React.createElement("svg", _extends$H({
|
|
383
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
384
|
-
viewBox: "0 0 64 64"
|
|
385
|
-
}, props), _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
|
|
386
|
-
fill: "#000",
|
|
387
|
-
fillRule: "evenodd",
|
|
388
|
-
d: "M53.333 21.333a8 8 0 0 1 8 8v24a8 8 0 0 1-8 8h-24a8 8 0 0 1-8-8v-24a8 8 0 0 1 8-8zm0 5.334h-24a2.667 2.667 0 0 0-2.666 2.666v24A2.667 2.667 0 0 0 29.333 56h24A2.667 2.667 0 0 0 56 53.333v-24a2.667 2.667 0 0 0-2.667-2.666zm-18.666-24a8 8 0 0 1 7.986 7.53l.014.47v2.666a2.667 2.667 0 0 1-5.316.311l-.018-.31v-2.667a2.67 2.67 0 0 0-2.355-2.65L34.667 8h-24a2.67 2.67 0 0 0-2.65 2.356l-.017.31v24a2.67 2.67 0 0 0 2.356 2.65l.31.017h2.667a2.667 2.667 0 0 1 .311 5.316l-.31.018h-2.667a8.001 8.001 0 0 1-7.987-7.53l-.013-.47v-24c0-4.26 3.33-7.743 7.53-7.987l.47-.013h24z",
|
|
389
|
-
className: "icon-copy_svg__fill"
|
|
390
|
-
})));
|
|
391
|
-
};
|
|
392
|
-
|
|
393
|
-
var _path$E;
|
|
394
|
-
function _extends$G() { _extends$G = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
|
|
395
|
-
var SvgIconCreate = function SvgIconCreate(props) {
|
|
396
|
-
return /*#__PURE__*/React.createElement("svg", _extends$G({
|
|
397
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
398
|
-
viewBox: "0 0 64 64"
|
|
399
|
-
}, props), _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
|
|
400
|
-
fill: "#000",
|
|
401
|
-
fillRule: "evenodd",
|
|
402
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333c-4.455 0-8.679-.993-12.461-2.77l-1.753.58c-5.965 1.912-10.133 2.572-12.504 1.981-2.799-.698-3.351-1.919-1.657-3.663 1.171-1.396 2.147-3.14 2.928-5.234.622-1.668.377-4.001-.737-7A29.15 29.15 0 0 1 2.666 32C2.667 15.8 15.8 2.667 32 2.667zM32 8C18.745 8 8 18.745 8 32c0 3.5.747 6.88 2.168 9.978l.405.837.137.271.106.285c1.517 4.085 1.89 7.622.734 10.72l-.382.972-.192.433.235-.05a62.067 62.067 0 0 0 4.886-1.363l1.721-.568 2.04-.696 1.95.917A23.882 23.882 0 0 0 32 56c13.255 0 24-10.745 24-24S45.255 8 32 8zm2.667 16v5.333H40c3.556 0 3.556 5.334 0 5.334h-5.333V40c0 3.556-5.334 3.556-5.334 0v-5.333H24c-3.556 0-3.556-5.334 0-5.334h5.333V24c0-3.556 5.334-3.556 5.334 0z",
|
|
403
|
-
className: "icon-create_svg__fill"
|
|
404
|
-
})));
|
|
405
|
-
};
|
|
406
|
-
|
|
407
|
-
var _path$D;
|
|
408
|
-
function _extends$F() { _extends$F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
|
|
409
|
-
var SvgIconDelete = function SvgIconDelete(props) {
|
|
410
|
-
return /*#__PURE__*/React.createElement("svg", _extends$F({
|
|
411
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
412
|
-
viewBox: "0 0 64 64"
|
|
413
|
-
}, props), _path$D || (_path$D = /*#__PURE__*/React.createElement("path", {
|
|
414
|
-
fill: "#000",
|
|
415
|
-
fillRule: "evenodd",
|
|
416
|
-
d: "M37.333 2.667c4.26 0 7.743 3.33 7.987 7.53l.013.47v2.666H56a2.667 2.667 0 0 1 .311 5.316l-.311.018h-2.668l.001 34.666c0 4.26-3.33 7.743-7.53 7.987l-.47.013H18.667a8.001 8.001 0 0 1-7.987-7.53l-.013-.47V18.667H8a2.667 2.667 0 0 1-.311-5.316L8 13.333h10.666v-2.666a8.002 8.002 0 0 1 7.53-7.987l.47-.013h10.667zm10.666 16H16v34.666a2.67 2.67 0 0 0 2.356 2.65l.31.017h26.667a2.67 2.67 0 0 0 2.65-2.356l.017-.31V18.666zm-21.332 8a2.667 2.667 0 0 1 2.648 2.355l.018.311v16a2.667 2.667 0 0 1-5.316.311l-.017-.31v-16a2.667 2.667 0 0 1 2.667-2.667zm10.666 0a2.67 2.67 0 0 1 2.65 2.355l.017.311v16a2.667 2.667 0 0 1-5.315.311l-.018-.31v-16a2.667 2.667 0 0 1 2.666-2.667zm0-18.667H26.667a2.67 2.67 0 0 0-2.65 2.356l-.017.31v2.667h16v-2.666a2.67 2.67 0 0 0-2.356-2.65L37.334 8z",
|
|
417
|
-
className: "icon-delete_svg__fill"
|
|
418
|
-
})));
|
|
419
|
-
};
|
|
420
|
-
|
|
421
|
-
var _path$C;
|
|
422
|
-
function _extends$E() { _extends$E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
|
|
423
|
-
var SvgIconDisconnected = function SvgIconDisconnected(props) {
|
|
424
|
-
return /*#__PURE__*/React.createElement("svg", _extends$E({
|
|
425
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
426
|
-
viewBox: "0 0 64 64"
|
|
427
|
-
}, props), _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
|
|
428
|
-
fill: "#000",
|
|
429
|
-
fillRule: "evenodd",
|
|
430
|
-
d: "m54.534 6.069-.248.217-9.736 9.735-.04.04-9.573 9.573c-.15.118-.286.254-.405.404L6.286 54.286a2.423 2.423 0 0 0 3.18 3.645l.248-.217 13.374-13.373a2.419 2.419 0 0 0 1.88-.401 12.119 12.119 0 0 1 14.04 0 2.424 2.424 0 1 0 2.808-3.952 16.951 16.951 0 0 0-11.303-3.072l6.743-6.744a24.105 24.105 0 0 1 10.159 5.021 2.424 2.424 0 0 0 3.11-3.719 28.945 28.945 0 0 0-9.34-5.23l5.633-5.634a36.153 36.153 0 0 1 9.225 5.934 2.425 2.425 0 0 0 3.211-3.633 40.972 40.972 0 0 0-8.796-5.941l7.256-7.256a2.423 2.423 0 0 0-3.18-3.645zm-35.04 21.474a28.936 28.936 0 0 0-6.032 3.942 2.424 2.424 0 0 0 3.137 3.697 24.018 24.018 0 0 1 5.022-3.282 2.425 2.425 0 0 0-2.127-4.357zM4.748 22.909a2.424 2.424 0 0 0 3.207 3.636 36.363 36.363 0 0 1 26.978-8.977 2.424 2.424 0 0 0 .389-4.832A41.204 41.204 0 0 0 4.748 22.909z",
|
|
431
|
-
className: "icon-disconnected_svg__fill"
|
|
432
|
-
})));
|
|
433
|
-
};
|
|
434
|
-
|
|
435
|
-
var _path$B;
|
|
436
|
-
function _extends$D() { _extends$D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
|
|
437
|
-
var SvgIconDocument = function SvgIconDocument(props) {
|
|
438
|
-
return /*#__PURE__*/React.createElement("svg", _extends$D({
|
|
439
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
440
|
-
viewBox: "0 0 64 64"
|
|
441
|
-
}, props), _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
|
|
442
|
-
fill: "#000",
|
|
443
|
-
fillRule: "evenodd",
|
|
444
|
-
d: "M37.333 2.667a3.305 3.305 0 0 1 .274.014l.085.01.058.008c.047.007.094.016.141.026l.029.007c.05.01.098.023.146.037l.034.01c.237.07.46.173.663.303l.034.022c.036.023.07.047.104.072l.057.043a2.646 2.646 0 0 1 .261.228l-.126-.117c.05.043.097.088.143.135L55.21 19.438c.047.046.091.094.134.143l.035.04c.026.032.052.063.076.096l.04.054.07.1.024.038c.16.253.279.535.347.836l.01.048c.009.043.017.086.024.13l.006.048.007.051.004.041c.01.09.014.18.014.27v32a8 8 0 0 1-8 8H16a8 8 0 0 1-8-8V10.667a8 8 0 0 1 8-8h21.333zM34.666 8H16a2.667 2.667 0 0 0-2.667 2.667v42.666A2.667 2.667 0 0 0 16 56h32a2.667 2.667 0 0 0 2.667-2.667L50.666 24H37.333a2.667 2.667 0 0 1-2.648-2.356l-.018-.31L34.666 8zm12.227 10.667-6.894-6.894.001 6.894h6.893z",
|
|
445
|
-
className: "icon-document_svg__fill"
|
|
446
|
-
})));
|
|
447
|
-
};
|
|
448
|
-
|
|
449
|
-
var _path$A;
|
|
450
|
-
function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
|
|
451
|
-
var SvgIconDone = function SvgIconDone(props) {
|
|
452
|
-
return /*#__PURE__*/React.createElement("svg", _extends$C({
|
|
453
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
454
|
-
viewBox: "0 0 64 64"
|
|
455
|
-
}, props), _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
|
|
456
|
-
fill: "#000",
|
|
457
|
-
fillRule: "evenodd",
|
|
458
|
-
d: "M12.552 31.448a2.665 2.665 0 1 0-3.771 3.771l13.333 13.333a2.666 2.666 0 0 0 3.772 0L55.219 19.22a2.667 2.667 0 0 0-3.771-3.771L24 42.895 12.552 31.448z",
|
|
459
|
-
className: "icon-done_svg__fill"
|
|
460
|
-
})));
|
|
461
|
-
};
|
|
462
|
-
|
|
463
|
-
var _path$z;
|
|
464
|
-
function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
|
|
465
|
-
var SvgIconDoneAll = function SvgIconDoneAll(props) {
|
|
466
|
-
return /*#__PURE__*/React.createElement("svg", _extends$B({
|
|
467
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
468
|
-
viewBox: "0 0 64 64"
|
|
469
|
-
}, props), _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
|
|
470
|
-
fill: "#000",
|
|
471
|
-
fillRule: "evenodd",
|
|
472
|
-
d: "M5.886 31.448 19.219 44.78a2.667 2.667 0 0 1-3.771 3.771L2.114 35.22a2.667 2.667 0 0 1 3.772-3.771zm52.228-16a2.666 2.666 0 1 1 3.772 3.771L32.552 48.552a2.665 2.665 0 0 1-3.771 0L15.448 35.22a2.665 2.665 0 0 1 0-3.771 2.665 2.665 0 0 1 3.771 0l11.448 11.447zm-9.562 0a2.665 2.665 0 0 1 0 3.771L32.556 35.215a2.665 2.665 0 0 1-3.771 0 2.664 2.664 0 0 1 0-3.77L44.78 15.447a2.665 2.665 0 0 1 3.771 0z",
|
|
473
|
-
className: "icon-done-all_svg__fill"
|
|
474
|
-
})));
|
|
475
|
-
};
|
|
476
|
-
|
|
477
|
-
var _path$y;
|
|
478
|
-
function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
|
|
479
|
-
var SvgIconDownload = function SvgIconDownload(props) {
|
|
480
|
-
return /*#__PURE__*/React.createElement("svg", _extends$A({
|
|
481
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
482
|
-
viewBox: "0 0 64 64"
|
|
483
|
-
}, props), _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
|
|
484
|
-
fill: "#000",
|
|
485
|
-
fillRule: "evenodd",
|
|
486
|
-
d: "M56 42.667a2.667 2.667 0 0 1 2.649 2.355l.018.311v8c0 4.26-3.33 7.743-7.53 7.987l-.47.013H13.333a8 8 0 0 1-7.986-7.53l-.014-.47v-8a2.667 2.667 0 0 1 5.316-.311l.018.311v8a2.67 2.67 0 0 0 2.355 2.65l.311.017h37.334a2.667 2.667 0 0 0 2.648-2.356l.018-.31v-8A2.667 2.667 0 0 1 56 42.667zm-36.552-8.781a2.666 2.666 0 0 1 3.52-3.993l.251.221 6.114 6.114V5.333a2.667 2.667 0 0 1 5.316-.311l.018.311v30.894l6.114-6.113a2.668 2.668 0 0 1 3.52-.221l.251.221a2.666 2.666 0 0 1 .222 3.52l-.222.252-10.658 10.657a2.341 2.341 0 0 1-.135.128l.127-.119a2.67 2.67 0 0 1-.195.176l-.056.045a1.74 1.74 0 0 1-.086.064l-.056.04-.086.056-.06.036-.081.046-.079.04a2.528 2.528 0 0 1-.14.065l-.09.036c-.023.01-.045.017-.067.025l-.09.03-.063.019c-.043.012-.086.024-.13.034l-.013.003a3.06 3.06 0 0 1-.144.028l-.064.01c-.03.005-.061.009-.092.012l-.084.008a1.727 1.727 0 0 1-.103.006l-.069.002h-.095c-.028 0-.055-.002-.082-.003l.139.003c-.084 0-.167-.004-.249-.011l-.061-.007a1.359 1.359 0 0 1-.092-.012l-.09-.015a2.242 2.242 0 0 1-.118-.025l-.04-.01a2.644 2.644 0 0 1-.34-.11l-.015-.006c-.05-.02-.097-.04-.145-.063l-.042-.02L30.71 45a1.16 1.16 0 0 1-.067-.039c-.03-.018-.059-.035-.087-.054l-.062-.041c-.03-.02-.06-.042-.088-.063l-.04-.03-.008-.007a2.796 2.796 0 0 1-.251-.223L19.448 33.886z",
|
|
487
|
-
className: "icon-download_svg__fill"
|
|
488
|
-
})));
|
|
489
|
-
};
|
|
490
|
-
|
|
491
|
-
var _path$x;
|
|
492
|
-
function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
|
|
493
|
-
var SvgIconEdit = function SvgIconEdit(props) {
|
|
494
|
-
return /*#__PURE__*/React.createElement("svg", _extends$z({
|
|
495
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
496
|
-
viewBox: "0 0 65 65"
|
|
497
|
-
}, props), _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
|
|
498
|
-
fill: "#000",
|
|
499
|
-
fillRule: "evenodd",
|
|
500
|
-
d: "M56 56a2.667 2.667 0 0 1 .311 5.315l-.311.018H8a2.667 2.667 0 0 1-.311-5.316L8 56h48zM35.448 3.448a2.665 2.665 0 0 1 3.771 0l10.667 10.666a2.668 2.668 0 0 1 0 3.772L20.552 47.219c-.5.5-1.178.781-1.885.781H8a2.667 2.667 0 0 1-2.667-2.667V34.667c0-.708.281-1.386.781-1.886zm1.885 5.659L10.667 35.77v6.896h6.89L44.227 16l-6.894-6.893z",
|
|
501
|
-
className: "icon-edit_svg__fill"
|
|
502
|
-
})));
|
|
503
|
-
};
|
|
504
|
-
|
|
505
|
-
var _path$w;
|
|
506
|
-
function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
|
|
507
|
-
var SvgIconEmojiMore = function SvgIconEmojiMore(props) {
|
|
508
|
-
return /*#__PURE__*/React.createElement("svg", _extends$y({
|
|
509
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
510
|
-
viewBox: "0 0 64 64"
|
|
511
|
-
}, props), _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
|
|
512
|
-
fill: "#000",
|
|
513
|
-
fillRule: "evenodd",
|
|
514
|
-
d: "M32.097 3.22c2.65 0 5.255.357 7.763 1.054a2.134 2.134 0 0 1-1.144 4.111 24.669 24.669 0 0 0-6.619-.899c-13.603 0-24.63 11.027-24.63 24.63s11.027 24.63 24.63 24.63 24.63-11.027 24.63-24.63c0-2.227-.295-4.413-.87-6.518a2.13 2.13 0 0 1 1.494-2.62 2.13 2.13 0 0 1 2.62 1.494 28.895 28.895 0 0 1 1.023 7.644c0 15.96-12.938 28.897-28.897 28.897-15.96 0-28.897-12.937-28.897-28.897C3.2 16.157 16.138 3.22 32.097 3.22zm10.705 34.792a2.133 2.133 0 0 1 2.024 2.808c-1.873 5.623-6.937 9.488-12.729 9.488-5.792 0-10.856-3.865-12.73-9.488a2.134 2.134 0 0 1 1.875-2.803l.15-.005h21.41zm-3.477 4.266H24.867l.294.382c1.539 1.887 3.718 3.113 6.115 3.342l.314.024.507.015c2.617 0 5.037-1.188 6.743-3.151l.193-.23.292-.382zM21.392 21.954c1.087 0 1.985.814 2.116 1.866l.017.267v5.353a2.133 2.133 0 0 1-4.25.268l-.017-.268v-5.353c0-1.178.955-2.133 2.134-2.133zm21.41 0c1.088 0 1.985.814 2.117 1.866l.017.267v5.353a2.133 2.133 0 0 1-4.25.268l-.017-.268v-5.353c0-1.178.955-2.133 2.133-2.133zM54.853 0a.8.8 0 0 1 .8.8v7.786h7.76a.8.8 0 0 1 .8.8v2.667a.8.8 0 0 1-.8.8h-7.76v7.758a.8.8 0 0 1-.8.8h-2.666a.8.8 0 0 1-.8-.8v-7.758h-7.785a.8.8 0 0 1-.8-.8V9.387a.8.8 0 0 1 .8-.8l7.784-.001V.8a.8.8 0 0 1 .8-.8h2.667z",
|
|
515
|
-
className: "icon-emoji-more_svg__fill"
|
|
516
|
-
})));
|
|
517
|
-
};
|
|
518
|
-
|
|
519
|
-
var _path$v;
|
|
520
|
-
function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
|
|
521
|
-
var SvgIconError = function SvgIconError(props) {
|
|
522
|
-
return /*#__PURE__*/React.createElement("svg", _extends$x({
|
|
523
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
524
|
-
viewBox: "0 0 64 64"
|
|
525
|
-
}, props), _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
|
|
526
|
-
fill: "#000",
|
|
527
|
-
fillRule: "evenodd",
|
|
528
|
-
d: "M32 5.06a8 8 0 0 1 6.561 3.424l.287.439 22.608 37.744a8 8 0 0 1 .022 7.962 8.005 8.005 0 0 1-6.356 4.014l-.535.024H9.384a8.002 8.002 0 0 1-6.862-4.038 8.008 8.008 0 0 1-.226-7.493l.27-.506L25.16 8.91A8.001 8.001 0 0 1 32 5.06zm0 5.333c-.816 0-1.58.372-2.076.99l-.196.28-22.565 37.67a2.669 2.669 0 0 0 1.909 3.973l.341.027h45.144a2.67 2.67 0 0 0 2.45-3.659l-.148-.304L34.28 11.676A2.666 2.666 0 0 0 32 10.393zm0 32.274A2.667 2.667 0 1 1 32 48a2.667 2.667 0 0 1 0-5.333zm0-21.334a2.667 2.667 0 0 1 2.649 2.356l.018.311v10.667a2.667 2.667 0 0 1-5.316.311l-.018-.311V24A2.667 2.667 0 0 1 32 21.333z",
|
|
529
|
-
className: "icon-error_svg__fill"
|
|
530
|
-
})));
|
|
531
|
-
};
|
|
532
|
-
|
|
533
|
-
var _path$u;
|
|
534
|
-
function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
|
|
535
|
-
var SvgIconExpand = function SvgIconExpand(props) {
|
|
536
|
-
return /*#__PURE__*/React.createElement("svg", _extends$w({
|
|
537
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
538
|
-
viewBox: "0 0 64 64"
|
|
539
|
-
}, props), _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
|
|
540
|
-
fill: "#000",
|
|
541
|
-
fillRule: "evenodd",
|
|
542
|
-
d: "M48 8a2.667 2.667 0 0 1 2.649 2.356l.018.31V32l-.001.027v21.306a2.667 2.667 0 0 1-5.315.311l-.018-.31V34.665H19.772l6.114 6.115a2.668 2.668 0 0 1 .221 3.52l-.221.251a2.666 2.666 0 0 1-3.52.222l-.252-.222-10.666-10.666a2.666 2.666 0 0 1-.222-3.52l.222-.252 10.666-10.666a2.666 2.666 0 0 1 3.993 3.52l-.221.251-6.113 6.114h25.56V10.667A2.667 2.667 0 0 1 48 8z",
|
|
543
|
-
className: "icon-expand_svg__fill"
|
|
544
|
-
})));
|
|
545
|
-
};
|
|
546
|
-
|
|
547
|
-
var _path$t;
|
|
548
|
-
function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
|
|
549
|
-
var SvgIconFileAudio = function SvgIconFileAudio(props) {
|
|
550
|
-
return /*#__PURE__*/React.createElement("svg", _extends$v({
|
|
551
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
552
|
-
viewBox: "0 0 64 64"
|
|
553
|
-
}, props), _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
|
|
554
|
-
fill: "#000",
|
|
555
|
-
fillRule: "evenodd",
|
|
556
|
-
d: "M30.52 12.51c1.685-1.226 4.139-.103 4.139 1.893v35.194c0 1.996-2.454 3.119-4.138 1.893l-12.45-9.909H7.898c-1.416 0-2.564-1.074-2.564-2.399V24.818c0-1.325 1.148-2.4 2.564-2.4h10.175zm20.427.163c10.293 10.667 10.293 27.987 0 38.654a2.137 2.137 0 0 1-3.156-.047c-.86-.942-.84-2.448.044-3.364 8.49-8.799 8.49-23.033 0-31.832-.884-.916-.904-2.422-.044-3.364a2.137 2.137 0 0 1 3.156-.047zm-8.492 8.799c5.597 5.8 5.597 15.231 0 21.031a2.136 2.136 0 0 1-3.156-.046c-.86-.942-.84-2.448.044-3.364 3.794-3.932 3.794-10.279 0-14.211-.884-.916-.904-2.422-.044-3.363a2.136 2.136 0 0 1 3.156-.047z",
|
|
557
|
-
className: "icon-file-audio_svg__fill"
|
|
558
|
-
})));
|
|
559
|
-
};
|
|
560
|
-
|
|
561
|
-
var _path$s;
|
|
562
|
-
function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
|
|
563
|
-
var SvgIconFileDocument = function SvgIconFileDocument(props) {
|
|
564
|
-
return /*#__PURE__*/React.createElement("svg", _extends$u({
|
|
565
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
566
|
-
viewBox: "0 0 64 64"
|
|
567
|
-
}, props), _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
|
|
568
|
-
fill: "#000",
|
|
569
|
-
fillRule: "evenodd",
|
|
570
|
-
d: "M39.414 6.4a2.41 2.41 0 0 1 1.71.701l12.642 12.75c.407.41.634.953.634 1.516v29.765c0 3.542-4.342 6.468-8 6.468H16.16c-3.658 0-6.4-2.926-6.4-6.468L9.6 12.868c0-3.542 2.902-6.468 6.56-6.468zm3.331 35.173-21.49.027-.147.005c-1.066.08-1.908 1.014-1.908 2.155 0 1.193.92 2.16 2.055 2.16l21.49-.027.147-.005c1.066-.08 1.908-1.014 1.908-2.155 0-1.193-.92-2.16-2.055-2.16zm0-8.533-21.49.027-.147.005c-1.066.08-1.908 1.014-1.908 2.155 0 1.193.92 2.16 2.055 2.16l21.49-.027.147-.005c1.066-.08 1.908-1.014 1.908-2.155 0-1.193-.92-2.16-2.055-2.16zm-11.807-8.507h-9.6l-.153.006a2.15 2.15 0 0 0-1.985 2.154c0 1.193.957 2.16 2.138 2.16h9.6l.152-.005a2.152 2.152 0 0 0 1.985-2.155c0-1.193-.957-2.16-2.137-2.16z",
|
|
571
|
-
className: "icon-file-document_svg__fill"
|
|
572
|
-
})));
|
|
573
|
-
};
|
|
574
|
-
|
|
575
|
-
var _path$r;
|
|
576
|
-
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
577
|
-
var SvgIconFreeze = function SvgIconFreeze(props) {
|
|
578
|
-
return /*#__PURE__*/React.createElement("svg", _extends$t({
|
|
579
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
580
|
-
viewBox: "0 0 64 64"
|
|
581
|
-
}, props), _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
|
|
582
|
-
fill: "#000",
|
|
583
|
-
fillRule: "evenodd",
|
|
584
|
-
d: "m41.636 3.226.251.222a2.668 2.668 0 0 1 .222 3.52l-.222.251-7.219 7.218V27.38l11.209-6.472 2.643-9.86a2.667 2.667 0 0 1 5.218 1.051l-.067.329-2.237 8.35 8.352 2.24a2.668 2.668 0 0 1 1.952 2.938l-.067.328a2.667 2.667 0 0 1-2.937 1.952l-.329-.066-9.861-2.643L37.334 32l11.209 6.47 9.862-2.64.329-.067a2.667 2.667 0 0 1 2.937 1.952l.067.328a2.669 2.669 0 0 1-1.952 2.938l-8.353 2.237 2.238 8.353.067.329a2.666 2.666 0 0 1-5.218 1.052l-2.643-9.861-11.209-6.472v12.944l7.219 7.218a2.667 2.667 0 0 1-3.52 3.993l-.251-.222L32 54.437l-6.114 6.115a2.666 2.666 0 0 1-3.52.222l-.251-.222a2.666 2.666 0 0 1-.222-3.52l.222-.251 7.218-7.22V36.62l-11.209 6.47-2.642 9.863a2.666 2.666 0 0 1-5.218-1.052l.067-.329 2.236-8.351-8.35-2.24a2.665 2.665 0 0 1-1.953-2.937l.067-.328a2.665 2.665 0 0 1 2.937-1.952l.329.066 9.861 2.642L26.667 32l-11.209-6.472-9.86 2.643-.329.066a2.665 2.665 0 0 1-2.937-1.952l-.067-.328a2.668 2.668 0 0 1 1.952-2.938l8.35-2.239-2.235-8.351-.067-.329a2.667 2.667 0 0 1 5.218-1.052l2.642 9.862 11.209 6.47V14.439L22.116 7.22a2.665 2.665 0 0 1 0-3.771 2.666 2.666 0 0 1 3.52-.222l.251.222 6.114 6.112 6.115-6.112a2.666 2.666 0 0 1 3.52-.222z",
|
|
585
|
-
className: "icon-freeze_svg__fill"
|
|
586
|
-
})));
|
|
587
|
-
};
|
|
588
|
-
|
|
589
|
-
var _path$q;
|
|
590
|
-
function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
|
|
591
|
-
var SvgIconGif = function SvgIconGif(props) {
|
|
592
|
-
return /*#__PURE__*/React.createElement("svg", _extends$s({
|
|
593
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
594
|
-
viewBox: "0 0 64 64"
|
|
595
|
-
}, props), _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
|
|
596
|
-
fill: "#000",
|
|
597
|
-
fillRule: "evenodd",
|
|
598
|
-
d: "M16.664 45.333c2.155 0 4.119-.318 5.89-.953 1.772-.636 3.143-1.53 4.113-2.683V31.34h-10.29v3.94h4.902v4.474c-.861.856-2.304 1.283-4.327 1.283-2.011 0-3.538-.695-4.58-2.085-1.04-1.39-1.562-3.446-1.562-6.168v-1.657c.012-2.698.497-4.73 1.455-6.097.958-1.366 2.352-2.05 4.184-2.05 1.437 0 2.565.345 3.385 1.034.82.69 1.35 1.777 1.59 3.262h5.243c-.324-2.804-1.36-4.94-3.107-6.408-1.748-1.468-4.172-2.201-7.273-2.201-2.226 0-4.169.502-5.827 1.506-1.658 1.004-2.927 2.454-3.807 4.35-.88 1.895-1.32 4.138-1.32 6.728v1.765c.024 2.52.5 4.712 1.428 6.578.928 1.865 2.245 3.288 3.95 4.269 1.707.98 3.69 1.47 5.953 1.47zm20.67 0V18.667H32v26.666h5.333zm10.396 0V34.436h9.721v-4.432H47.73v-6.887h10.937v-4.45h-16v26.666h5.063z",
|
|
599
|
-
className: "icon-gif_svg__fill"
|
|
600
|
-
})));
|
|
601
|
-
};
|
|
602
|
-
|
|
603
|
-
var _path$p;
|
|
604
|
-
function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
|
|
605
|
-
var SvgIconInfo = function SvgIconInfo(props) {
|
|
606
|
-
return /*#__PURE__*/React.createElement("svg", _extends$r({
|
|
607
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
608
|
-
viewBox: "0 0 64 64"
|
|
609
|
-
}, props), _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
|
|
610
|
-
fill: "#000",
|
|
611
|
-
fillRule: "evenodd",
|
|
612
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333 2.667 48.2 2.667 32 15.8 2.667 32 2.667zM32 8C18.745 8 8 18.745 8 32s10.745 24 24 24 24-10.745 24-24S45.255 8 32 8zm1.667 21.333a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3.334a1 1 0 0 1-1-1v-14a1 1 0 0 1 1-1h3.334zm-1.667-8a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z",
|
|
613
|
-
className: "icon-info_svg__fill"
|
|
614
|
-
})));
|
|
615
|
-
};
|
|
616
|
-
|
|
617
|
-
var _path$o;
|
|
618
|
-
function _extends$q() { _extends$q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$q.apply(this, arguments); }
|
|
619
|
-
var SvgIconLeave = function SvgIconLeave(props) {
|
|
620
|
-
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
621
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
622
|
-
viewBox: "0 0 64 64"
|
|
623
|
-
}, props), _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
|
|
624
|
-
fill: "#000",
|
|
625
|
-
fillRule: "evenodd",
|
|
626
|
-
d: "M32 5.333a2.667 2.667 0 0 1 .311 5.316l-.311.018H10.667a2.67 2.67 0 0 0-2.65 2.355L8 13.333v37.334a2.667 2.667 0 0 0 2.356 2.648l.31.018H32a2.667 2.667 0 0 1 .311 5.316l-.311.018H10.667a8.001 8.001 0 0 1-7.987-7.53l-.013-.47V13.333a8 8 0 0 1 7.53-7.986l.47-.014H32zm17.634 13.893.252.222 10.666 10.666a2.666 2.666 0 0 1 .222 3.52l-.222.252-10.666 10.666a2.666 2.666 0 0 1-3.993-3.52l.221-.251 4.78-4.782L20 36a2.667 2.667 0 0 1-.311-5.315l.311-.018h33.56l-7.446-7.448a2.668 2.668 0 0 1-.221-3.52l.221-.251a2.666 2.666 0 0 1 3.52-.222z",
|
|
627
|
-
className: "icon-leave_svg__fill"
|
|
628
|
-
})));
|
|
629
|
-
};
|
|
630
|
-
|
|
631
|
-
var _path$n;
|
|
632
|
-
function _extends$p() { _extends$p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$p.apply(this, arguments); }
|
|
633
|
-
var SvgIconMembers = function SvgIconMembers(props) {
|
|
634
|
-
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
635
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
636
|
-
viewBox: "0 0 64 64"
|
|
637
|
-
}, props), _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
638
|
-
fill: "#000",
|
|
639
|
-
fillRule: "evenodd",
|
|
640
|
-
d: "M34.667 37.333c7.17 0 13.018 5.66 13.32 12.755l.013.579V56a2.667 2.667 0 0 1-5.315.311L42.667 56v-5.333c0-4.26-3.33-7.743-7.53-7.987l-.47-.013H13.333a8 8 0 0 0-7.986 7.53l-.014.47V56a2.667 2.667 0 0 1-5.316.311L0 56v-5.333c0-7.17 5.66-13.019 12.755-13.321l.578-.013h21.334zM54 37.765a13.333 13.333 0 0 1 9.986 12.297l.014.605V56a2.667 2.667 0 0 1-5.315.311L58.667 56v-5.331a8 8 0 0 0-6-7.74A2.667 2.667 0 1 1 54 37.765zM24 5.333c7.364 0 13.333 5.97 13.333 13.334C37.333 26.03 31.363 32 24 32c-7.364 0-13.333-5.97-13.333-13.333 0-7.364 5.97-13.334 13.333-13.334zm19.328.43a13.333 13.333 0 0 1 0 25.834 2.667 2.667 0 1 1-1.323-5.167 8 8 0 0 0 0-15.5 2.667 2.667 0 1 1 1.323-5.167zM24 10.667a8 8 0 1 0 0 16 8 8 0 0 0 0-16z",
|
|
641
|
-
className: "icon-members_svg__fill"
|
|
642
|
-
})));
|
|
643
|
-
};
|
|
644
|
-
|
|
645
|
-
var _path$m;
|
|
646
|
-
function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
|
|
647
|
-
var SvgIconMessage = function SvgIconMessage(props) {
|
|
648
|
-
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
649
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
650
|
-
viewBox: "0 0 64 64"
|
|
651
|
-
}, props), _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
652
|
-
fill: "#000",
|
|
653
|
-
fillRule: "evenodd",
|
|
654
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333c-4.455 0-8.679-.993-12.461-2.77l-1.753.58c-5.965 1.912-10.133 2.572-12.504 1.981-2.799-.698-3.351-1.919-1.657-3.663 1.171-1.396 2.147-3.14 2.928-5.234.622-1.668.377-4.001-.737-7A29.15 29.15 0 0 1 2.666 32C2.667 15.8 15.8 2.667 32 2.667zM32 8C18.745 8 8 18.745 8 32c0 3.5.747 6.88 2.168 9.978l.405.837.137.271.106.285c1.517 4.085 1.89 7.622.734 10.72l-.382.972-.192.433.235-.05a62.067 62.067 0 0 0 4.886-1.363l1.721-.568 2.04-.696 1.95.917A23.882 23.882 0 0 0 32 56c13.255 0 24-10.745 24-24S45.255 8 32 8zM18.667 29.333a2.667 2.667 0 1 1-.001 5.333 2.667 2.667 0 0 1 .001-5.333zm13.333 0a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334zm13.333 0a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z",
|
|
655
|
-
className: "icon-message_svg__fill"
|
|
656
|
-
})));
|
|
657
|
-
};
|
|
658
|
-
|
|
659
|
-
var _path$l;
|
|
660
|
-
function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
|
|
661
|
-
var SvgIconModerations = function SvgIconModerations(props) {
|
|
662
|
-
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
663
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
664
|
-
viewBox: "0 0 64 64"
|
|
665
|
-
}, props), _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
666
|
-
fill: "#000",
|
|
667
|
-
fillRule: "evenodd",
|
|
668
|
-
d: "M18.667 34.667a2.667 2.667 0 0 1 .311 5.316l-.311.017h-5.334v16a2.667 2.667 0 0 1-5.316.311L8 56V40H2.667a2.667 2.667 0 0 1-.311-5.315l.31-.018h16zM32 29.333a2.667 2.667 0 0 1 2.649 2.356l.018.311v24a2.667 2.667 0 0 1-5.316.311L29.333 56V32A2.667 2.667 0 0 1 32 29.333zM61.333 40a2.667 2.667 0 0 1 .311 5.315l-.31.018h-5.335L56 56a2.667 2.667 0 0 1-5.315.311L50.667 56l-.001-10.668-5.333.001a2.667 2.667 0 0 1-.311-5.316l.311-.017h16zm-8-34.667a2.67 2.67 0 0 1 2.65 2.356L56 8v24a2.667 2.667 0 0 1-5.315.311L50.667 32V8a2.667 2.667 0 0 1 2.666-2.667zm-42.666 0a2.667 2.667 0 0 1 2.648 2.356l.018.311v18.667a2.667 2.667 0 0 1-5.316.311L8 26.667V8a2.667 2.667 0 0 1 2.667-2.667zm21.333 0a2.667 2.667 0 0 1 2.649 2.356l.018.311-.001 10.666H40a2.668 2.668 0 0 1 .311 5.317L40 24H24a2.667 2.667 0 0 1-.311-5.315l.311-.018h5.333V8A2.667 2.667 0 0 1 32 5.333z",
|
|
669
|
-
className: "icon-moderations_svg__fill"
|
|
670
|
-
})));
|
|
671
|
-
};
|
|
672
|
-
|
|
673
|
-
var _path$k;
|
|
674
|
-
function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
|
|
675
|
-
var SvgIconMore = function SvgIconMore(props) {
|
|
676
|
-
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
677
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
678
|
-
viewBox: "0 0 64 64"
|
|
679
|
-
}, props), _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
680
|
-
fill: "#000",
|
|
681
|
-
fillRule: "evenodd",
|
|
682
|
-
d: "M32 45.333a5.333 5.333 0 1 1 0 10.666 5.333 5.333 0 0 1 0-10.666zM32 28a5.333 5.333 0 1 1 0 10.668A5.333 5.333 0 0 1 32 28zm0-17.333c2.946 0 5.333 2.387 5.333 5.333S34.946 21.333 32 21.333 26.667 18.946 26.667 16s2.387-5.333 5.333-5.333z",
|
|
683
|
-
className: "icon-more_svg__fill"
|
|
684
|
-
})));
|
|
685
|
-
};
|
|
686
|
-
|
|
687
|
-
var _path$j;
|
|
688
|
-
function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
|
|
689
|
-
var SvgIconMute = function SvgIconMute(props) {
|
|
690
|
-
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
691
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
692
|
-
viewBox: "0 0 64 64"
|
|
693
|
-
}, props), _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
694
|
-
fill: "#000",
|
|
695
|
-
fillRule: "evenodd",
|
|
696
|
-
d: "m55.62 19.616.067.123A26.552 26.552 0 0 1 58.667 32c0 4.326-1.03 8.41-2.864 12.025-1.012 2.726-1.235 4.847-.67 6.363.71 1.903 1.598 3.49 2.662 4.758 1.54 1.586 1.039 2.696-1.506 3.33-2.09.521-5.716-.027-10.879-1.646l-.488-.155-1.594-.527A26.56 26.56 0 0 1 32 58.667a26.55 26.55 0 0 1-12.326-3.014l-.059-.03 4-4A21.24 21.24 0 0 0 32 53.333c2.993 0 5.89-.614 8.562-1.786l.498-.226 1.925-.905 3.613 1.196.695.219c.728.225 1.414.423 2.054.595l.472.125.485.121-.167-.42-.2-.594c-.814-2.685-.484-5.681.713-9.065l.154-.425.106-.284.528-1.084a21.188 21.188 0 0 0 1.895-8.8 21.24 21.24 0 0 0-1.71-8.385l3.997-3.999zm2.266-13.502a2.668 2.668 0 0 1 .221 3.52l-.221.252-48 48a2.668 2.668 0 0 1-3.993-3.52l.221-.252 5.238-5.237a26.563 26.563 0 0 1-6.015-16.412L5.333 32C5.333 17.272 17.273 5.333 32 5.333a26.55 26.55 0 0 1 16.877 6.02l5.237-5.239a2.668 2.668 0 0 1 3.772 0zM32 10.667c-11.782 0-21.333 9.55-21.333 21.333 0 4.836 1.614 9.401 4.48 13.084l29.936-29.938A21.248 21.248 0 0 0 32 10.666z",
|
|
697
|
-
className: "icon-mute_svg__fill"
|
|
698
|
-
})));
|
|
699
|
-
};
|
|
700
|
-
|
|
701
|
-
var _path$i;
|
|
702
|
-
function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
703
|
-
var SvgIconNotifications = function SvgIconNotifications(props) {
|
|
704
|
-
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
705
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
706
|
-
viewBox: "0 0 64 64"
|
|
707
|
-
}, props), _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
708
|
-
fill: "#000",
|
|
709
|
-
fillRule: "evenodd",
|
|
710
|
-
d: "M36.613 53.333c2.056 0 3.338 2.227 2.307 4.005a8 8 0 0 1-13.84 0c-.98-1.689.129-3.783 2.004-3.988l.303-.017h9.226zM32 2.667c11.56 0 20.972 9.194 21.323 20.669l.01.664v13.333a5.334 5.334 0 0 0 4.936 5.319l.753.033c2.963.318 3.077 4.616.342 5.24l-.342.056-.355.019H5.333l-.355-.019c-3.082-.33-3.082-4.965 0-5.296l.753-.033a5.335 5.335 0 0 0 4.92-4.9l.016-.419V24c0-11.782 9.55-21.333 21.333-21.333zM32 8c-8.636 0-15.674 6.842-15.989 15.4L16 24v13.333c0 1.562-.336 3.046-.939 4.383l-.275.564-.218.387h34.861l-.215-.387a10.583 10.583 0 0 1-1.146-3.74l-.055-.674-.013-.533V24c0-8.837-7.163-16-16-16z",
|
|
711
|
-
className: "icon-notifications_svg__fill"
|
|
712
|
-
})));
|
|
713
|
-
};
|
|
714
|
-
|
|
715
|
-
var _path$h;
|
|
716
|
-
function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
717
|
-
var SvgIconNotificationsOffFilled = function SvgIconNotificationsOffFilled(props) {
|
|
718
|
-
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
719
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
720
|
-
viewBox: "0 0 64 64"
|
|
721
|
-
}, props), _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
722
|
-
fill: "#000",
|
|
723
|
-
fillRule: "evenodd",
|
|
724
|
-
d: "M36.613 53.333c2.056 0 3.338 2.227 2.307 4.005a8 8 0 0 1-13.84 0c-.98-1.689.129-3.783 2.004-3.988l.303-.017h9.226zM32 2.667c7.173 0 13.52 3.54 17.387 8.97l5.686-5.687a2.105 2.105 0 0 1 2.85-.117l.127.117a2.105 2.105 0 0 1 0 2.977L8.927 58.05c-.78.781-2.023.82-2.85.117l-.127-.117a2.105 2.105 0 0 1 0-2.977L13.023 48h-7.69l-.355-.019c-3.082-.33-3.082-4.965 0-5.296l.753-.033a5.335 5.335 0 0 0 4.92-4.9l.016-.419V24c0-11.782 9.55-21.333 21.333-21.333zm20.85 16.795c.271 1.253.433 2.548.473 3.874l.01.664v13.333a5.334 5.334 0 0 0 4.936 5.319l.753.033c2.963.318 3.077 4.616.342 5.24l-.342.056-.355.019H24.31l28.54-28.538z",
|
|
725
|
-
className: "icon-notifications-off-filled_svg__fill"
|
|
726
|
-
})));
|
|
727
|
-
};
|
|
728
|
-
|
|
729
|
-
var _path$g;
|
|
730
|
-
function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
731
|
-
var SvgIconOperator = function SvgIconOperator(props) {
|
|
732
|
-
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
733
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
734
|
-
viewBox: "0 0 64 64"
|
|
735
|
-
}, props), _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
736
|
-
fill: "#000",
|
|
737
|
-
fillRule: "evenodd",
|
|
738
|
-
d: "M29.83 6.45a2.667 2.667 0 0 1 4.34 0l11.697 16.374L57 13.918c1.88-1.504 4.573.054 4.32 2.35l-.047.29-8 37.334A2.666 2.666 0 0 1 50.666 56H13.333a2.666 2.666 0 0 1-2.607-2.108l-8-37.333c-.525-2.452 2.315-4.207 4.273-2.641l11.132 8.906zM32 12.587l-11.163 15.63a2.667 2.667 0 0 1-3.836.532l-7.497-5.997 5.984 27.915h33.021l5.984-27.915L47 28.749a2.667 2.667 0 0 1-3.632-.281l-.204-.251L32 12.587zM32 32a5.333 5.333 0 1 1 0 10.668A5.333 5.333 0 0 1 32 32z",
|
|
739
|
-
className: "icon-operator_svg__fill"
|
|
740
|
-
})));
|
|
741
|
-
};
|
|
742
|
-
|
|
743
|
-
var _path$f;
|
|
744
|
-
function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
745
|
-
var SvgIconPhoto = function SvgIconPhoto(props) {
|
|
746
|
-
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
747
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
748
|
-
viewBox: "0 0 64 64"
|
|
749
|
-
}, props), _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
750
|
-
fill: "#000",
|
|
751
|
-
fillRule: "evenodd",
|
|
752
|
-
d: "M50.667 5.333a8 8 0 0 1 8 8v37.334a8 8 0 0 1-8 8H13.333a8 8 0 0 1-8-8V13.333a8 8 0 0 1 8-8zm-8 25.107L19.77 53.332l30.896.001a2.667 2.667 0 0 0 2.661-2.498l.005-.168v-9.564L42.666 30.44zm8-19.773H13.333a2.667 2.667 0 0 0-2.666 2.666v37.334c0 1.143.72 2.119 1.731 2.498L40.781 24.78a2.668 2.668 0 0 1 3.52-.222l.251.222 8.78 8.78.001-20.228a2.667 2.667 0 0 0-2.498-2.661l-.168-.005zm-28 5.333a6.666 6.666 0 1 1 0 13.333 6.666 6.666 0 0 1 0-13.333zm0 5.333a1.334 1.334 0 1 0 0 2.667 1.334 1.334 0 0 0 0-2.667z",
|
|
753
|
-
className: "icon-photo_svg__fill"
|
|
754
|
-
})));
|
|
755
|
-
};
|
|
756
|
-
|
|
757
|
-
var _path$e;
|
|
758
|
-
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
759
|
-
var SvgIconPlay = function SvgIconPlay(props) {
|
|
760
|
-
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
761
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
762
|
-
viewBox: "0 0 64 64"
|
|
763
|
-
}, props), _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
764
|
-
fill: "#000",
|
|
765
|
-
fillRule: "evenodd",
|
|
766
|
-
d: "M51.908 34.75c1.9-1.233 1.896-3.26.013-4.514L19.376 8.577c-1.893-1.26-3.404-.391-3.376 1.968l.522 42.888c.028 2.347 1.596 3.247 3.493 2.016L51.908 34.75z",
|
|
767
|
-
className: "icon-play_svg__fill"
|
|
768
|
-
})));
|
|
769
|
-
};
|
|
770
|
-
|
|
771
|
-
var _path$d;
|
|
772
|
-
function _extends$f() { _extends$f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$f.apply(this, arguments); }
|
|
773
|
-
var SvgIconPlus = function SvgIconPlus(props) {
|
|
774
|
-
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
775
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
776
|
-
viewBox: "0 0 64 64"
|
|
777
|
-
}, props), _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
778
|
-
fill: "#000",
|
|
779
|
-
fillRule: "evenodd",
|
|
780
|
-
d: "M34.667 29.333h18.666c3.556 0 3.556 5.334 0 5.334H34.667v18.666c0 3.556-5.334 3.556-5.334 0V34.667H10.667c-3.556 0-3.556-5.334 0-5.334h18.666V10.667c0-3.556 5.334-3.556 5.334 0v18.666z",
|
|
781
|
-
className: "icon-plus_svg__fill"
|
|
782
|
-
})));
|
|
783
|
-
};
|
|
784
|
-
|
|
785
|
-
var _path$c;
|
|
786
|
-
function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
|
|
787
|
-
var SvgIconQuestion = function SvgIconQuestion(props) {
|
|
788
|
-
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
789
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
790
|
-
viewBox: "0 0 64 64"
|
|
791
|
-
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
792
|
-
fill: "#000",
|
|
793
|
-
fillRule: "evenodd",
|
|
794
|
-
d: "M32 61.333C15.8 61.333 2.667 48.2 2.667 32S15.8 2.667 32 2.667 61.333 15.8 61.333 32 48.2 61.333 32 61.333zM32 56c13.255 0 24-10.745 24-24S45.255 8 32 8 8 18.745 8 32s10.745 24 24 24zm2.213-18.63a2.667 2.667 0 1 1-5.333 0v-2.69c0-1.148.734-2.168 1.823-2.53.173-.058.532-.195 1.01-.407.809-.36 1.616-.79 2.354-1.282 1.835-1.223 2.813-2.528 2.813-3.786a5.333 5.333 0 0 0-10.364-1.777 2.667 2.667 0 0 1-5.032-1.77 10.668 10.668 0 0 1 20.729 3.551c0 3.413-2.022 6.109-5.187 8.22a21.268 21.268 0 0 1-2.813 1.578v.893zm-5.333 7.523a2.667 2.667 0 1 1 5.333 0v.44a2.667 2.667 0 1 1-5.333 0v-.44z",
|
|
795
|
-
className: "icon-question_svg__fill"
|
|
796
|
-
})));
|
|
797
|
-
};
|
|
798
|
-
|
|
799
|
-
var _path$b;
|
|
800
|
-
function _extends$d() { _extends$d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
|
|
801
|
-
var SvgIconRefresh = function SvgIconRefresh(props) {
|
|
802
|
-
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
803
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
804
|
-
viewBox: "0 0 64 64"
|
|
805
|
-
}, props), _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
806
|
-
fill: "#000",
|
|
807
|
-
fillRule: "evenodd",
|
|
808
|
-
d: "m46.14 14.43.562.537 6.631 6.167v-7.8a2.67 2.67 0 0 1 2.356-2.65l.311-.017a2.667 2.667 0 0 1 2.649 2.355l.018.311v16a2.67 2.67 0 0 1-2.356 2.65L56 32H40a2.667 2.667 0 0 1-.311-5.315l.311-.018h11.452l-8.44-7.85c-5.964-5.893-15.168-7.182-22.563-3.156-7.38 4.018-11.172 12.357-9.314 20.455 1.859 8.107 8.935 14.032 17.362 14.518 8.43.487 16.162-4.585 18.967-12.426a2.667 2.667 0 0 1 5.022 1.797C48.88 50.082 38.973 56.582 28.19 55.959c-10.785-.623-19.862-8.222-22.254-18.65C3.542 26.872 8.426 16.135 17.9 10.977c9.227-5.024 20.65-3.579 28.241 3.453z",
|
|
809
|
-
className: "icon-refresh_svg__fill"
|
|
810
|
-
})));
|
|
811
|
-
};
|
|
812
|
-
|
|
813
|
-
var _path$a;
|
|
814
|
-
function _extends$c() { _extends$c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
|
|
815
|
-
var SvgIconRemove = function SvgIconRemove(props) {
|
|
816
|
-
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
817
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
818
|
-
viewBox: "0 0 64 64"
|
|
819
|
-
}, props), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
820
|
-
fill: "#000",
|
|
821
|
-
fillRule: "evenodd",
|
|
822
|
-
d: "M32 2.667C48.2 2.667 61.333 15.8 61.333 32S48.2 61.333 32 61.333 2.667 48.2 2.667 32 15.8 2.667 32 2.667zm9.886 19.447a2.668 2.668 0 0 0-3.772 0L32 28.23l-6.114-6.115-.134-.124a2.667 2.667 0 0 0-3.638.124l-.124.134a2.667 2.667 0 0 0 .124 3.638L28.23 32l-6.115 6.114-.124.134a2.667 2.667 0 0 0 .124 3.638l.134.124a2.667 2.667 0 0 0 3.638-.124L32 35.77l6.114 6.115.134.124a2.667 2.667 0 0 0 3.638-.124l.124-.134a2.667 2.667 0 0 0-.124-3.638L35.77 32l6.115-6.114.124-.134a2.667 2.667 0 0 0-.124-3.638z",
|
|
823
|
-
className: "icon-remove_svg__fill"
|
|
824
|
-
})));
|
|
825
|
-
};
|
|
826
|
-
|
|
827
|
-
var _path$9;
|
|
828
|
-
function _extends$b() { _extends$b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
|
|
829
|
-
var SvgIconReplyFilled = function SvgIconReplyFilled(props) {
|
|
830
|
-
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
831
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
832
|
-
viewBox: "0 0 12 12"
|
|
833
|
-
}, props), _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
834
|
-
fill: "#000",
|
|
835
|
-
fillRule: "evenodd",
|
|
836
|
-
d: "M11.774 10.5c.062 0 .12-.025.164-.07a.22.22 0 0 0 .062-.164c-.069-1.447-.495-2.678-1.268-3.66-.618-.785-1.455-1.409-2.49-1.855a9.331 9.331 0 0 0-2.406-.655 9.542 9.542 0 0 0-.862-.078V2.225a.225.225 0 0 0-.128-.203.23.23 0 0 0-.24.028L.084 5.692A.221.221 0 0 0 0 5.865c0 .068.03.132.082.175l4.523 3.737c.067.056.16.068.24.03a.222.222 0 0 0 .13-.202v-1.95c1.134-.08 2.178.003 3.107.25a6.39 6.39 0 0 1 2.087.96c1.018.724 1.398 1.5 1.401 1.507a.23.23 0 0 0 .204.128z",
|
|
837
|
-
className: "icon-reply-filled_svg__fill"
|
|
838
|
-
})));
|
|
839
|
-
};
|
|
840
|
-
|
|
841
|
-
var _path$8;
|
|
842
|
-
function _extends$a() { _extends$a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$a.apply(this, arguments); }
|
|
843
|
-
var SvgIconSearch = function SvgIconSearch(props) {
|
|
844
|
-
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
845
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
846
|
-
viewBox: "0 0 64 64"
|
|
847
|
-
}, props), _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
848
|
-
fill: "#000",
|
|
849
|
-
fillRule: "evenodd",
|
|
850
|
-
d: "M26.667 48C14.885 48 5.333 38.449 5.333 26.667c0-11.782 9.552-21.334 21.334-21.334S48 14.885 48 26.667c0 4.93-1.672 9.469-4.48 13.081l13.67 13.67a2.668 2.668 0 0 1-3.772 3.772l-13.67-13.67A21.239 21.239 0 0 1 26.667 48zm0-5.333c8.836 0 16-7.164 16-16 0-8.837-7.164-16-16-16-8.837 0-16 7.163-16 16 0 8.836 7.163 16 16 16z",
|
|
851
|
-
className: "icon-search_svg__fill"
|
|
852
|
-
})));
|
|
853
|
-
};
|
|
854
|
-
|
|
855
|
-
var _path$7;
|
|
856
|
-
function _extends$9() { _extends$9 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$9.apply(this, arguments); }
|
|
857
|
-
var SvgIconSend = function SvgIconSend(props) {
|
|
858
|
-
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
859
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
860
|
-
viewBox: "0 0 64 64"
|
|
861
|
-
}, props), _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
862
|
-
fill: "#000",
|
|
863
|
-
fillRule: "evenodd",
|
|
864
|
-
d: "M59.795 29.43 7.329 2.979C4.691 1.802 1.76 4.153 2.932 6.798l6.925 18.609a2 2 0 0 0 1.544 1.275l32.273 5.394L11.4 37.47a1.998 1.998 0 0 0-1.544 1.275L2.932 57.353c-.879 2.645 1.76 4.997 4.397 3.527l52.466-26.453c2.051-.882 2.051-3.82 0-4.996z",
|
|
865
|
-
className: "icon-send_svg__fill"
|
|
866
|
-
})));
|
|
867
|
-
};
|
|
868
|
-
|
|
869
|
-
var _path$6;
|
|
870
|
-
function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$8.apply(this, arguments); }
|
|
871
|
-
var SvgIconSettingsFilled = function SvgIconSettingsFilled(props) {
|
|
872
|
-
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
873
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
874
|
-
viewBox: "0 0 64 64"
|
|
875
|
-
}, props), _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
876
|
-
fill: "#000",
|
|
877
|
-
fillRule: "evenodd",
|
|
878
|
-
d: "M32 2.667A5.332 5.332 0 0 1 37.333 8v.24A4.4 4.4 0 0 0 40 12.267a4.4 4.4 0 0 0 4.853-.88l.16-.16a5.332 5.332 0 0 1 7.547 0 5.333 5.333 0 0 1 0 7.546l-.16.16a4.401 4.401 0 0 0-.88 4.854V24a4.4 4.4 0 0 0 4.027 2.667H56c2.946 0 5.333 2.387 5.333 5.333S58.946 37.333 56 37.333h-.24A4.4 4.4 0 0 0 51.733 40a4.4 4.4 0 0 0 .88 4.853l.16.16a5.332 5.332 0 0 1 0 7.547 5.333 5.333 0 0 1-7.546 0l-.16-.16a4.401 4.401 0 0 0-4.854-.88 4.397 4.397 0 0 0-2.666 4.027V56a5.333 5.333 0 0 1-10.667 0v-.24A4.4 4.4 0 0 0 24 51.733a4.4 4.4 0 0 0-4.853.88l-.16.16a5.332 5.332 0 0 1-7.547 0 5.333 5.333 0 0 1 0-7.546l.16-.16a4.401 4.401 0 0 0 .88-4.854 4.397 4.397 0 0 0-4.027-2.666H8A5.333 5.333 0 0 1 8 26.88h.24A4.4 4.4 0 0 0 12.267 24a4.4 4.4 0 0 0-.88-4.853l-.16-.16a5.332 5.332 0 0 1 0-7.547 5.333 5.333 0 0 1 7.546 0l.16.16a4.401 4.401 0 0 0 4.854.88H24a4.4 4.4 0 0 0 2.667-4.027V8A5.332 5.332 0 0 1 32 2.667zM32 24a8 8 0 1 0 0 16 8 8 0 0 0 0-16z",
|
|
879
|
-
className: "icon-settings-filled_svg__fill"
|
|
880
|
-
})));
|
|
881
|
-
};
|
|
882
|
-
|
|
883
|
-
var _path$5;
|
|
884
|
-
function _extends$7() { _extends$7 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$7.apply(this, arguments); }
|
|
885
|
-
var SvgIconSlideLeft = function SvgIconSlideLeft(props) {
|
|
886
|
-
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
887
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
888
|
-
fill: "none",
|
|
889
|
-
viewBox: "0 0 32 32"
|
|
890
|
-
}, props), _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
891
|
-
d: "M21.943 24.39a1.333 1.333 0 0 1-1.886 1.886l-9.333-9.333a1.333 1.333 0 0 1 0-1.886l9.333-9.333a1.333 1.333 0 1 1 1.886 1.885L13.553 16l8.39 8.391Z",
|
|
892
|
-
className: "icon-slide-left_svg__fill",
|
|
893
|
-
clipRule: "evenodd"
|
|
894
|
-
})));
|
|
895
|
-
};
|
|
896
|
-
|
|
897
|
-
var _path$4;
|
|
898
|
-
function _extends$6() { _extends$6 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
|
|
899
|
-
var SvgIconSpinner = function SvgIconSpinner(props) {
|
|
900
|
-
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
901
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
902
|
-
viewBox: "0 0 64 64"
|
|
903
|
-
}, props), _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
904
|
-
fill: "#000",
|
|
905
|
-
fillRule: "evenodd",
|
|
906
|
-
d: "M32 61.333C48.2 61.333 61.333 48.2 61.333 32S48.2 2.667 32 2.667 2.667 15.8 2.667 32a2.838 2.838 0 1 0 5.678 0C8.344 18.935 18.934 8.344 32 8.344c13.065 0 23.656 10.591 23.656 23.656S45.065 55.656 32 55.656a2.838 2.838 0 1 0 0 5.677z",
|
|
907
|
-
className: "icon-spinner_svg__fill"
|
|
908
|
-
})));
|
|
909
|
-
};
|
|
910
|
-
|
|
911
|
-
var _path$3;
|
|
912
|
-
function _extends$5() { _extends$5 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$5.apply(this, arguments); }
|
|
913
|
-
var SvgIconSupergroup = function SvgIconSupergroup(props) {
|
|
914
|
-
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
915
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
916
|
-
viewBox: "0 0 64 64"
|
|
917
|
-
}, props), _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
918
|
-
fill: "#000",
|
|
919
|
-
fillRule: "evenodd",
|
|
920
|
-
d: "M36.889 43.013c6.608 0 12.121 4.685 12.43 10.734l.014.537V58a2.667 2.667 0 0 1-5.316.311L44 58v-3.716c0-3.07-2.87-5.718-6.636-5.925l-.475-.013H27.11c-3.838 0-6.86 2.525-7.096 5.557l-.015.381V58a2.667 2.667 0 0 1-5.315.311L14.667 58v-3.716c0-6.126 5.324-10.986 11.864-11.26l.58-.011h9.778zm18.578-17.291c.266 0 .53.04.784.118 4.632 1.426 7.518 4.801 7.736 9.688l.013.594v12.8a2.667 2.667 0 0 1-5.315.311l-.018-.311V36.124c-.002-2.595-1.163-4.171-3.528-5.034l-.104-.037-2.502.002a2.667 2.667 0 0 1-2.648-2.356l-.018-.31a2.67 2.67 0 0 1 2.355-2.65l.311-.017h2.934zm-44 0 .31.018a2.666 2.666 0 0 1 2.356 2.648l-.018.311a2.666 2.666 0 0 1-2.648 2.356l-2.51-.002-.119.042c-2.246.85-3.503 2.574-3.505 5.147v12.68l-.018.31A2.666 2.666 0 0 1 0 48.922V36.24l.014-.591c.225-4.874 3.203-8.415 7.712-9.809.255-.078.52-.118.788-.118h2.953zM32 19.958c5.512 0 10 4.409 10 9.871 0 5.463-4.488 9.872-10 9.872s-10-4.41-10-9.872 4.488-9.871 10-9.871zm0 5.333c-2.588 0-4.667 2.043-4.667 4.538 0 2.496 2.08 4.538 4.667 4.538 2.588 0 4.667-2.042 4.667-4.538 0-2.495-2.08-4.538-4.667-4.538zM17.333 2.667c5.513 0 10 4.409 10 9.871 0 5.462-4.487 9.871-10 9.871-5.512 0-10-4.409-10-9.871 0-5.462 4.488-9.871 10-9.871zm29.334 0c5.512 0 10 4.409 10 9.871 0 5.462-4.488 9.871-10 9.871-5.513 0-10-4.409-10-9.871 0-5.462 4.487-9.871 10-9.871zM17.333 8c-2.587 0-4.666 2.042-4.666 4.538 0 2.496 2.079 4.538 4.666 4.538 2.588 0 4.667-2.042 4.667-4.538C22 10.042 19.921 8 17.333 8zm29.334 0C44.079 8 42 10.042 42 12.538c0 2.496 2.079 4.538 4.667 4.538 2.587 0 4.666-2.042 4.666-4.538 0-2.496-2.079-4.538-4.666-4.538z",
|
|
921
|
-
className: "icon-supergroup_svg__fill"
|
|
922
|
-
})));
|
|
923
|
-
};
|
|
924
|
-
|
|
925
|
-
var _path$2, _path2;
|
|
926
|
-
function _extends$4() { _extends$4 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); }
|
|
927
|
-
var SvgIconThread = function SvgIconThread(props) {
|
|
928
|
-
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
929
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
930
|
-
fill: "none",
|
|
931
|
-
viewBox: "0 0 64 64"
|
|
932
|
-
}, props), _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
933
|
-
d: "M38.824 25.895a2.95 2.95 0 0 1 4.16-.074L57.1 39.378a2.921 2.921 0 0 1 .002 4.213L42.985 57.177a2.95 2.95 0 0 1-4.158-.07 2.919 2.919 0 0 1 .07-4.14l11.928-11.48-11.926-11.451a2.919 2.919 0 0 1-.075-4.14Z",
|
|
934
|
-
className: "icon-thread_svg__fill",
|
|
935
|
-
clipRule: "evenodd"
|
|
936
|
-
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
|
937
|
-
d: "M8.866 6c1.583 0 2.866 1.216 2.866 2.716V25.5c0 7.672 6.846 14.068 15.475 14.068h22.927c1.583 0 2.866 1.216 2.866 2.716 0 1.5-1.283 2.716-2.866 2.716H27.207C15.604 45 6 36.35 6 25.5V8.716C6 7.216 7.283 6 8.866 6Z",
|
|
938
|
-
className: "icon-thread_svg__fill",
|
|
939
|
-
clipRule: "evenodd"
|
|
940
|
-
})));
|
|
941
|
-
};
|
|
942
|
-
|
|
943
|
-
var _path$1;
|
|
944
|
-
function _extends$3() { _extends$3 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); }
|
|
945
|
-
var SvgIconThumbnailNone = function SvgIconThumbnailNone(props) {
|
|
946
|
-
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
947
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
948
|
-
viewBox: "0 0 64 64"
|
|
949
|
-
}, props), _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
950
|
-
fill: "#000",
|
|
951
|
-
fillRule: "evenodd",
|
|
952
|
-
d: "M34.667 5.333a2.667 2.667 0 0 1 0 5.334H13.333a2.667 2.667 0 0 0-2.666 2.666v37.334c0 1.143.72 2.118 1.73 2.497l28.384-28.383a2.667 2.667 0 0 1 3.771 0l8.781 8.78v-4.228a2.667 2.667 0 0 1 2.498-2.661l.169-.005a2.667 2.667 0 0 1 2.667 2.666v21.334a8 8 0 0 1-8 8H13.33a8 8 0 0 1-7.998-8V13.333a8 8 0 0 1 8-8zm8 25.105L19.77 53.333h30.897a2.667 2.667 0 0 0 2.661-2.498l.005-.168v-9.563L42.667 30.438zM22.667 16a6.666 6.666 0 1 1 0 13.333 6.666 6.666 0 0 1 0-13.333zm0 5.333a1.334 1.334 0 1 0 0 2.667 1.334 1.334 0 0 0 0-2.667zM56.78 3.448a2.665 2.665 0 0 1 3.771 0 2.665 2.665 0 0 1 0 3.771l-4.782 4.78 4.782 4.782c.998.998 1.04 2.59.125 3.638l-.125.133a2.665 2.665 0 0 1-3.771 0l-4.782-4.781-4.78 4.781a2.667 2.667 0 0 1-3.638.125l-.133-.125a2.665 2.665 0 0 1 0-3.771L48.228 12l-4.78-4.781a2.667 2.667 0 0 1-.125-3.638l.125-.133a2.665 2.665 0 0 1 3.771 0l4.78 4.78z",
|
|
953
|
-
className: "icon-thumbnail-none_svg__fill"
|
|
954
|
-
})));
|
|
955
|
-
};
|
|
956
|
-
|
|
957
|
-
var _g$1;
|
|
958
|
-
function _extends$2() { _extends$2 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); }
|
|
959
|
-
var SvgIconToggleoff = function SvgIconToggleoff(props) {
|
|
960
|
-
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
961
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
962
|
-
viewBox: "0 0 88 48"
|
|
963
|
-
}, props), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
964
|
-
fill: "none",
|
|
965
|
-
fillRule: "evenodd"
|
|
966
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
967
|
-
width: 80,
|
|
968
|
-
height: 40,
|
|
969
|
-
x: 4,
|
|
970
|
-
y: 4,
|
|
971
|
-
fill: "#000",
|
|
972
|
-
className: "icon-toggleoff_svg__fill",
|
|
973
|
-
rx: 20
|
|
974
|
-
}), /*#__PURE__*/React.createElement("circle", {
|
|
975
|
-
cx: 24,
|
|
976
|
-
cy: 24,
|
|
977
|
-
r: 12,
|
|
978
|
-
fill: "#FFF"
|
|
979
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
980
|
-
fill: "#FFF",
|
|
981
|
-
d: "M64 4c11.046 0 20 8.954 20 20s-8.954 20-20 20H24C12.954 44 4 35.046 4 24S12.954 4 24 4h40zm0 2H24C14.059 6 6 14.059 6 24c0 9.764 7.774 17.712 17.47 17.992L24 42h40c9.941 0 18-8.059 18-18 0-9.764-7.774-17.712-17.47-17.992L64 6z"
|
|
982
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
983
|
-
fill: "#000",
|
|
984
|
-
d: "M64 0H24C10.745 0 0 10.745 0 24s10.745 24 24 24h40c13.255 0 24-10.745 24-24S77.255 0 64 0zm0 4c11.046 0 20 8.954 20 20s-8.954 20-20 20H24C12.954 44 4 35.046 4 24S12.954 4 24 4h40z",
|
|
985
|
-
className: "icon-toggleoff_svg__fill"
|
|
986
|
-
}))));
|
|
987
|
-
};
|
|
988
|
-
|
|
989
|
-
var _g;
|
|
990
|
-
function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
991
|
-
var SvgIconToggleon = function SvgIconToggleon(props) {
|
|
992
|
-
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
993
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
994
|
-
viewBox: "0 0 88 48"
|
|
995
|
-
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
996
|
-
fill: "none",
|
|
997
|
-
fillRule: "evenodd"
|
|
998
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
999
|
-
width: 80,
|
|
1000
|
-
height: 40,
|
|
1001
|
-
x: 4,
|
|
1002
|
-
y: 4,
|
|
1003
|
-
fill: "#000",
|
|
1004
|
-
className: "icon-toggleon_svg__fill",
|
|
1005
|
-
rx: 20
|
|
1006
|
-
}), /*#__PURE__*/React.createElement("circle", {
|
|
1007
|
-
cx: 64,
|
|
1008
|
-
cy: 24,
|
|
1009
|
-
r: 12,
|
|
1010
|
-
fill: "#FFF"
|
|
1011
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
1012
|
-
fill: "#FFF",
|
|
1013
|
-
d: "M64 4c11.046 0 20 8.954 20 20s-8.954 20-20 20H24C12.954 44 4 35.046 4 24S12.954 4 24 4h40zm0 2H24C14.059 6 6 14.059 6 24c0 9.764 7.774 17.712 17.47 17.992L24 42h40c9.941 0 18-8.059 18-18 0-9.764-7.774-17.712-17.47-17.992L64 6z"
|
|
1014
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
1015
|
-
fill: "#000",
|
|
1016
|
-
d: "M64 0H24C10.745 0 0 10.745 0 24s10.745 24 24 24h40c13.255 0 24-10.745 24-24S77.255 0 64 0zm0 4c11.046 0 20 8.954 20 20s-8.954 20-20 20H24C12.954 44 4 35.046 4 24S12.954 4 24 4h40z",
|
|
1017
|
-
className: "icon-toggleon_svg__fill"
|
|
1018
|
-
}))));
|
|
1019
|
-
};
|
|
1020
|
-
|
|
1021
|
-
var _path;
|
|
1022
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
1023
|
-
var SvgIconUser = function SvgIconUser(props) {
|
|
1024
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
1025
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1026
|
-
viewBox: "0 0 64 64"
|
|
1027
|
-
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
1028
|
-
fill: "#000",
|
|
1029
|
-
fillRule: "evenodd",
|
|
1030
|
-
d: "M42.667 37.333c7.17 0 13.018 5.66 13.32 12.755l.013.579V56a2.667 2.667 0 0 1-5.315.311L50.667 56v-5.333c0-4.26-3.33-7.743-7.53-7.987l-.47-.013H21.333a8 8 0 0 0-7.986 7.53l-.014.47V56a2.667 2.667 0 0 1-5.316.311L8 56v-5.333c0-7.17 5.66-13.019 12.755-13.321l.578-.013h21.334zM32 5.333c7.364 0 13.333 5.97 13.333 13.334C45.333 26.03 39.363 32 32 32c-7.364 0-13.333-5.97-13.333-13.333 0-7.364 5.97-13.334 13.333-13.334zm0 5.334a8 8 0 1 0 0 16 8 8 0 0 0 0-16z",
|
|
1031
|
-
className: "icon-user_svg__fill"
|
|
1032
|
-
})));
|
|
1033
|
-
};
|
|
1034
|
-
|
|
1035
|
-
function changeTypeToIconComponent(type) {
|
|
1036
|
-
switch (type) {
|
|
1037
|
-
case Types.ADD: return React__default.createElement(SvgIconAdd, null);
|
|
1038
|
-
case Types.ARROW_LEFT: return React__default.createElement(SvgIconArrowLeft, null);
|
|
1039
|
-
case Types.ATTACH: return React__default.createElement(SvgIconAttach, null);
|
|
1040
|
-
case Types.AUDIO_ON_LINED: return React__default.createElement(SvgIconAudioOnLined, null);
|
|
1041
|
-
case Types.BAN: return React__default.createElement(SvgIconBan, null);
|
|
1042
|
-
case Types.BROADCAST: return React__default.createElement(SvgIconBroadcast, null);
|
|
1043
|
-
case Types.CAMERA: return React__default.createElement(SvgIconCamera, null);
|
|
1044
|
-
case Types.CHANNELS: return React__default.createElement(SvgIconChannels, null);
|
|
1045
|
-
case Types.CHAT: return React__default.createElement(SvgIconChat, null);
|
|
1046
|
-
case Types.CHAT_FILLED: return React__default.createElement(SvgIconChatFilled, null);
|
|
1047
|
-
case Types.CHEVRON_DOWN: return React__default.createElement(SvgIconChevronDown, null);
|
|
1048
|
-
case Types.CHEVRON_RIGHT: return React__default.createElement(SvgIconChevronRight, null);
|
|
1049
|
-
case Types.CLOSE: return React__default.createElement(SvgIconClose, null);
|
|
1050
|
-
case Types.COLLAPSE: return React__default.createElement(SvgIconCollapse, null);
|
|
1051
|
-
case Types.COPY: return React__default.createElement(SvgIconCopy, null);
|
|
1052
|
-
case Types.CREATE: return React__default.createElement(SvgIconCreate, null);
|
|
1053
|
-
case Types.DELETE: return React__default.createElement(SvgIconDelete, null);
|
|
1054
|
-
case Types.DISCONNECTED: return React__default.createElement(SvgIconDisconnected, null);
|
|
1055
|
-
case Types.DOCUMENT: return React__default.createElement(SvgIconDocument, null);
|
|
1056
|
-
case Types.DONE: return React__default.createElement(SvgIconDone, null);
|
|
1057
|
-
case Types.DONE_ALL: return React__default.createElement(SvgIconDoneAll, null);
|
|
1058
|
-
case Types.DOWNLOAD: return React__default.createElement(SvgIconDownload, null);
|
|
1059
|
-
case Types.EDIT: return React__default.createElement(SvgIconEdit, null);
|
|
1060
|
-
case Types.EMOJI_MORE: return React__default.createElement(SvgIconEmojiMore, null);
|
|
1061
|
-
case Types.ERROR: return React__default.createElement(SvgIconError, null);
|
|
1062
|
-
case Types.EXPAND: return React__default.createElement(SvgIconExpand, null);
|
|
1063
|
-
case Types.FILE_AUDIO: return React__default.createElement(SvgIconFileAudio, null);
|
|
1064
|
-
case Types.FILE_DOCUMENT: return React__default.createElement(SvgIconFileDocument, null);
|
|
1065
|
-
case Types.FREEZE: return React__default.createElement(SvgIconFreeze, null);
|
|
1066
|
-
case Types.GIF: return React__default.createElement(SvgIconGif, null);
|
|
1067
|
-
case Types.INFO: return React__default.createElement(SvgIconInfo, null);
|
|
1068
|
-
case Types.LEAVE: return React__default.createElement(SvgIconLeave, null);
|
|
1069
|
-
case Types.MEMBERS: return React__default.createElement(SvgIconMembers, null);
|
|
1070
|
-
case Types.MESSAGE: return React__default.createElement(SvgIconMessage, null);
|
|
1071
|
-
case Types.MODERATIONS: return React__default.createElement(SvgIconModerations, null);
|
|
1072
|
-
case Types.MORE: return React__default.createElement(SvgIconMore, null);
|
|
1073
|
-
case Types.MUTE: return React__default.createElement(SvgIconMute, null);
|
|
1074
|
-
case Types.NOTIFICATIONS: return React__default.createElement(SvgIconNotifications, null);
|
|
1075
|
-
case Types.NOTIFICATIONS_OFF_FILLED: return React__default.createElement(SvgIconNotificationsOffFilled, null);
|
|
1076
|
-
case Types.OPERATOR: return React__default.createElement(SvgIconOperator, null);
|
|
1077
|
-
case Types.PHOTO: return React__default.createElement(SvgIconPhoto, null);
|
|
1078
|
-
case Types.PLAY: return React__default.createElement(SvgIconPlay, null);
|
|
1079
|
-
case Types.PLUS: return React__default.createElement(SvgIconPlus, null);
|
|
1080
|
-
case Types.QUESTION: return React__default.createElement(SvgIconQuestion, null);
|
|
1081
|
-
case Types.REFRESH: return React__default.createElement(SvgIconRefresh, null);
|
|
1082
|
-
case Types.REMOVE: return React__default.createElement(SvgIconRemove, null);
|
|
1083
|
-
case Types.REPLY: return React__default.createElement(SvgIconReplyFilled, null);
|
|
1084
|
-
case Types.SEARCH: return React__default.createElement(SvgIconSearch, null);
|
|
1085
|
-
case Types.SEND: return React__default.createElement(SvgIconSend, null);
|
|
1086
|
-
case Types.SETTINGS_FILLED: return React__default.createElement(SvgIconSettingsFilled, null);
|
|
1087
|
-
case Types.SLIDE_LEFT: return React__default.createElement(SvgIconSlideLeft, null);
|
|
1088
|
-
case Types.SPINNER: return React__default.createElement(SvgIconSpinner, null);
|
|
1089
|
-
case Types.SUPERGROUP: return React__default.createElement(SvgIconSupergroup, null);
|
|
1090
|
-
case Types.THREAD: return React__default.createElement(SvgIconThread, null);
|
|
1091
|
-
case Types.THUMBNAIL_NONE: return React__default.createElement(SvgIconThumbnailNone, null);
|
|
1092
|
-
case Types.TOGGLE_OFF: return React__default.createElement(SvgIconToggleoff, null);
|
|
1093
|
-
case Types.TOGGLE_ON: return React__default.createElement(SvgIconToggleon, null);
|
|
1094
|
-
case Types.USER: return React__default.createElement(SvgIconUser, null);
|
|
1095
|
-
default: return 'icon'; // If you see this text 'icon' replace icon for it
|
|
1096
|
-
}
|
|
1097
|
-
}
|
|
1098
|
-
function Icon(_a) {
|
|
1099
|
-
var _b = _a.className, className = _b === void 0 ? '' : _b, type = _a.type, _c = _a.fillColor, fillColor = _c === void 0 ? Colors.DEFAULT : _c, _d = _a.width, width = _d === void 0 ? 26 : _d, _e = _a.height, height = _e === void 0 ? 26 : _e, _f = _a.onClick, onClick = _f === void 0 ? noop : _f, _g = _a.children, children = _g === void 0 ? null : _g;
|
|
1100
|
-
var iconStyle = {
|
|
1101
|
-
width: typeof width === 'string' ? width : "".concat(width, "px"),
|
|
1102
|
-
minWidth: typeof width === 'string' ? width : "".concat(width, "px"),
|
|
1103
|
-
height: typeof height === 'string' ? height : "".concat(height, "px"),
|
|
1104
|
-
minHeight: typeof height === 'string' ? height : "".concat(height, "px"),
|
|
1105
|
-
};
|
|
1106
|
-
return (React__default.createElement("div", { className: __spreadArray(__spreadArray([], (Array.isArray(className) ? className : [className]), true), [
|
|
1107
|
-
'sendbird-icon',
|
|
1108
|
-
changeTypeToIconClassName(type),
|
|
1109
|
-
changeColorToClassName(fillColor),
|
|
1110
|
-
], false).join(' '), role: 'button', onClick: onClick, onKeyDown: onClick, tabIndex: 0, style: iconStyle }, children || changeTypeToIconComponent(type)));
|
|
1111
|
-
}
|
|
1112
|
-
var IconTypes = Types;
|
|
1113
|
-
var IconColors = Colors;
|
|
1114
|
-
|
|
1115
|
-
export { IconColors, IconTypes, Icon as default };
|
|
1116
|
-
//# sourceMappingURL=Icon.js.map
|