quickblox-react-ui-kit 0.2.8 → 0.3.0-beta.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/.prettierignore +4 -0
- package/.prettierrc +10 -0
- package/.storybook/main.ts +26 -0
- package/.storybook/preview.ts +16 -0
- package/README.md +5 -1
- package/dist/Data/Stubs.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +0 -1
- package/dist/Presentation/Views/Dialog/Dialog.d.ts +0 -4
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -0
- package/dist/Presentation/Views/Dialog/DialogHeader/{RenderRightActions/RenderRightActions.d.ts → DialogInfoIcon/DialogInfoIcon.d.ts} +3 -3
- package/dist/Presentation/Views/Dialog/{MessageInput/MessageInput.d.ts → InputMessage/InputMessage.d.ts} +2 -2
- package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -0
- package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +22 -0
- package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +0 -1
- package/dist/Presentation/Views/DialogList/DialogList.d.ts +8 -4
- package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +6 -6
- package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +3 -0
- package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +3 -4
- package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +3 -3
- package/dist/Presentation/icons/actions/index.d.ts +26 -0
- package/dist/Presentation/icons/contents/index.d.ts +13 -0
- package/dist/Presentation/icons/index.d.ts +7 -0
- package/dist/Presentation/icons/media/index.d.ts +12 -0
- package/dist/Presentation/icons/moderation/index.d.ts +5 -0
- package/dist/Presentation/icons/navigation/index.d.ts +12 -0
- package/dist/Presentation/icons/status/index.d.ts +7 -0
- package/dist/Presentation/icons/toggle/index.d.ts +23 -0
- package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -0
- package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -0
- package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/Badge/Badge.d.ts +10 -0
- package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/Button/Button.d.ts +12 -0
- package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -0
- package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +9 -0
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +8 -0
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -0
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -0
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -0
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +11 -0
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -0
- package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -0
- package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +29 -0
- package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +12 -0
- package/dist/Presentation/ui-components/Header/Header.d.ts +13 -0
- package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -0
- package/dist/Presentation/ui-components/Loader/Loader.d.ts +8 -0
- package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -0
- package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +8 -0
- package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +11 -0
- package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +9 -0
- package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +8 -0
- package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +8 -0
- package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +9 -0
- package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +8 -0
- package/dist/Presentation/ui-components/Message/Message.d.ts +18 -0
- package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +9 -0
- package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +8 -0
- package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +20 -0
- package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +8 -0
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -0
- package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -0
- package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -0
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +9 -0
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -0
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -0
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -0
- package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -0
- package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -0
- package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -0
- package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +11 -0
- package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -0
- package/dist/Presentation/ui-components/index.d.ts +19 -0
- package/dist/hooks/useModal.d.ts +5 -0
- package/dist/index-ui.js +16525 -14748
- package/dist/index-ui.js.map +1 -1
- package/package.json +32 -34
- package/public/favicon.ico +0 -0
- package/public/index.html +47 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/quickblox.js +54609 -0
- package/public/robots.txt +3 -0
- package/src/App.scss +0 -0
- package/src/App.tsx +231 -0
- package/src/CommonTypes/BaseViewModel.ts +95 -0
- package/src/CommonTypes/FunctionResult.ts +66 -0
- package/src/Data/Creator.ts +105 -0
- package/src/Data/DefaultConfigurations.ts +270 -0
- package/src/Data/Stubs.ts +1242 -0
- package/src/Data/dto/dialog/LocalDialogDTO.ts +42 -0
- package/src/Data/dto/dialog/LocalDialogsDTO.ts +21 -0
- package/src/Data/dto/dialog/RemoteDialogDTO.ts +58 -0
- package/src/Data/dto/dialog/RemoteDialogsDTO.ts +21 -0
- package/src/Data/dto/file/LocalFileDTO.ts +26 -0
- package/src/Data/dto/file/RemoteFileDTO.ts +26 -0
- package/src/Data/dto/message/LocalMessageDTO.ts +49 -0
- package/src/Data/dto/message/LocalMessagesDTO.ts +21 -0
- package/src/Data/dto/message/RemoteMessageDTO.ts +57 -0
- package/src/Data/dto/message/RemoteMessagesDTO.ts +21 -0
- package/src/Data/dto/user/LocalUserDTO.ts +37 -0
- package/src/Data/dto/user/LocalUsersDTO.ts +21 -0
- package/src/Data/dto/user/RemoteUserDTO.ts +37 -0
- package/src/Data/dto/user/RemoteUsersDTO.ts +21 -0
- package/src/Data/mapper/DialogLocalDTOMapper.ts +742 -0
- package/src/Data/mapper/DialogRemoteDTOMapper.ts +741 -0
- package/src/Data/mapper/FileLocalDTOMapper.ts +216 -0
- package/src/Data/mapper/FileRemoteDTOMapper.ts +228 -0
- package/src/Data/mapper/IMapper.ts +4 -0
- package/src/Data/mapper/MessageLocalDTOMapper.ts +426 -0
- package/src/Data/mapper/MessageRemoteDTOMapper.ts +465 -0
- package/src/Data/mapper/UserLocalDTOMapper.ts +387 -0
- package/src/Data/mapper/UserRemoteDTOMapper.ts +398 -0
- package/src/Data/repository/ConnectionRepository.ts +133 -0
- package/src/Data/repository/DialogsRepository.ts +358 -0
- package/src/Data/repository/EventMessagesRepository.ts +325 -0
- package/src/Data/repository/FileRepository.ts +107 -0
- package/src/Data/repository/MessagesRepository.ts +291 -0
- package/src/Data/repository/UsersRepository.ts +297 -0
- package/src/Data/source/AISource.ts +133 -0
- package/src/Data/source/exception/LocalDataSourceException.ts +17 -0
- package/src/Data/source/exception/MapperDTOException.ts +22 -0
- package/src/Data/source/exception/RemoteDataSourceException.ts +28 -0
- package/src/Data/source/exception/RepositoryException.ts +27 -0
- package/src/Data/source/local/ChatLocalStorageDataSource.ts +260 -0
- package/src/Data/source/local/ILocalDataSource.ts +41 -0
- package/src/Data/source/local/ILocalFileDataSource.ts +11 -0
- package/src/Data/source/local/LocalDataSource.ts +353 -0
- package/src/Data/source/local/LocalFileDataSource.ts +20 -0
- package/src/Data/source/remote/IRemoteDataSource.ts +112 -0
- package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +425 -0
- package/src/Data/source/remote/Mapper/FileDTOMapper.ts +270 -0
- package/src/Data/source/remote/Mapper/IDTOMapper.ts +4 -0
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +607 -0
- package/src/Data/source/remote/Mapper/UserDTOMapper.ts +345 -0
- package/src/Data/source/remote/RemoteDataSource.ts +1291 -0
- package/src/Domain/entity/Chat.ts +4 -0
- package/src/Domain/entity/ChatMessageAttachmentEntity.ts +15 -0
- package/src/Domain/entity/CustomDataEntity.ts +3 -0
- package/src/Domain/entity/DialogEntity.ts +15 -0
- package/src/Domain/entity/DialogEventInfo.ts +15 -0
- package/src/Domain/entity/DialogTypes.ts +7 -0
- package/src/Domain/entity/EventMessageType.ts +7 -0
- package/src/Domain/entity/FileEntity.ts +11 -0
- package/src/Domain/entity/FileTypes.ts +9 -0
- package/src/Domain/entity/GroupDialogEntity.ts +54 -0
- package/src/Domain/entity/LastMessageEntity.ts +5 -0
- package/src/Domain/entity/MessageEntity.ts +25 -0
- package/src/Domain/entity/NotificationTypes.ts +9 -0
- package/src/Domain/entity/PrivateDialogEntity.ts +46 -0
- package/src/Domain/entity/PublicDialogEntity.ts +80 -0
- package/src/Domain/entity/UserEntity.ts +23 -0
- package/src/Domain/exception/domain/DomainExecption.ts +5 -0
- package/src/Domain/repository/IDialogsRepository.ts +42 -0
- package/src/Domain/repository/IFileRepository.ts +9 -0
- package/src/Domain/repository/IMessagesRepository.ts +28 -0
- package/src/Domain/repository/IUsersRepository.ts +13 -0
- package/src/Domain/repository/Pagination.ts +48 -0
- package/src/Domain/use_cases/CreateDialogUseCase.ts +79 -0
- package/src/Domain/use_cases/ForwardMessagesUseCase.ts +73 -0
- package/src/Domain/use_cases/GetAllDialogsUseCase.ts +20 -0
- package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +40 -0
- package/src/Domain/use_cases/GetAllMessagesForDialog.ts +61 -0
- package/src/Domain/use_cases/GetAllUsersUseCase.ts +34 -0
- package/src/Domain/use_cases/GetDialogByIdUseCase.ts +28 -0
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +22 -0
- package/src/Domain/use_cases/LeaveDialogUseCase.ts +116 -0
- package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +118 -0
- package/src/Domain/use_cases/ReplyMessagesUseCase.ts +35 -0
- package/src/Domain/use_cases/SendTextMessageUseCase.ts +27 -0
- package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +160 -0
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +68 -0
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts +45 -0
- package/src/Domain/use_cases/SyncDialogsUseCase.ts +177 -0
- package/src/Domain/use_cases/UpdateDialogUseCase.ts +72 -0
- package/src/Domain/use_cases/UploadFileUseCase.ts +24 -0
- package/src/Domain/use_cases/UserTypingMessageUseCase.ts +50 -0
- package/src/Domain/use_cases/ai/AIAnswerAssistUseCase.ts +69 -0
- package/src/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.ts +57 -0
- package/src/Domain/use_cases/ai/AIRephraseUseCase.ts +89 -0
- package/src/Domain/use_cases/ai/AIRephraseWithProxyUseCase.ts +62 -0
- package/src/Domain/use_cases/ai/AITranslateUseCase.ts +76 -0
- package/src/Domain/use_cases/ai/AITranslateWithProxyUseCase.ts +63 -0
- package/src/Domain/use_cases/base/BaseUseCase.ts +77 -0
- package/src/Domain/use_cases/base/IUseCase.ts +5 -0
- package/src/Domain/use_cases/base/Subscribable/ISubscribable.ts +6 -0
- package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +144 -0
- package/src/Presentation/.gitkeep +0 -0
- package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +34 -0
- package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.tsx +64 -0
- package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -0
- package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.tsx +28 -0
- package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +67 -0
- package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.tsx +117 -0
- package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -0
- package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.tsx +78 -0
- package/src/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.ts +40 -0
- package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +20 -0
- package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.tsx +177 -0
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -0
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.tsx +122 -0
- package/src/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.tsx +98 -0
- package/src/Presentation/Views/Dialog/AIWidgets/SliderMenu.tsx +172 -0
- package/src/Presentation/Views/Dialog/AIWidgets/Tone.ts +21 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.tsx +72 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.tsx +72 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.tsx +96 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.tsx +94 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.tsx +78 -0
- package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.tsx +78 -0
- package/src/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.tsx +88 -0
- package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -0
- package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.tsx +93 -0
- package/src/Presentation/Views/Dialog/Dialog.scss +368 -0
- package/src/Presentation/Views/Dialog/Dialog.tsx +100 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.tsx +34 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.tsx +51 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -0
- package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.tsx +58 -0
- package/src/Presentation/Views/Dialog/DialogViewModel.ts +24 -0
- package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -0
- package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.tsx +105 -0
- package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -0
- package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx +43 -0
- package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -0
- package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.tsx +23 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx +96 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +40 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.tsx +98 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.tsx +65 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.tsx +118 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.tsx +90 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +65 -0
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.tsx +47 -0
- package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -0
- package/src/Presentation/Views/Dialog/InputMessage/InputMessage.tsx +145 -0
- package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -0
- package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.tsx +114 -0
- package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -0
- package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.tsx +290 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.tsx +32 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.tsx +316 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -0
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.tsx +67 -0
- package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -0
- package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.tsx +298 -0
- package/src/Presentation/Views/Dialog/Message/Message.tsx +378 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.tsx +155 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.tsx +50 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.tsx +50 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.tsx +92 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -0
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.tsx +58 -0
- package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -0
- package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.tsx +61 -0
- package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -0
- package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.tsx +133 -0
- package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -0
- package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.tsx +104 -0
- package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -0
- package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.tsx +103 -0
- package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -0
- package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.tsx +67 -0
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -0
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +364 -0
- package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -0
- package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.tsx +17 -0
- package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -0
- package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.tsx +17 -0
- package/src/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.tsx +21 -0
- package/src/Presentation/Views/Dialog/useDialogViewModel.ts +838 -0
- package/src/Presentation/Views/DialogInfo/DialogInfo.scss +235 -0
- package/src/Presentation/Views/DialogInfo/DialogInfo.tsx +450 -0
- package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -0
- package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.tsx +26 -0
- package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +176 -0
- package/src/Presentation/Views/DialogInfo/MembersList/MembersList.tsx +94 -0
- package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -0
- package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.tsx +71 -0
- package/src/Presentation/Views/DialogInfo/UsersList/UsersList.scss +0 -0
- package/src/Presentation/Views/DialogInfo/UsersList/UsersList.tsx +71 -0
- package/src/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.ts +15 -0
- package/src/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.ts +124 -0
- package/src/Presentation/Views/DialogList/DialogList.scss +145 -0
- package/src/Presentation/Views/DialogList/DialogList.tsx +371 -0
- package/src/Presentation/Views/DialogList/DialogListViewModel.ts +25 -0
- package/src/Presentation/Views/DialogList/useDialogListViewModel.ts +479 -0
- package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -0
- package/src/Presentation/Views/DialogListHeader/DialogListHeader.tsx +90 -0
- package/src/Presentation/Views/EditDialog/EditDialog.scss +203 -0
- package/src/Presentation/Views/EditDialog/EditDialog.tsx +267 -0
- package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -0
- package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.tsx +59 -0
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -0
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +69 -0
- package/src/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.tsx +177 -0
- package/src/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.tsx +37 -0
- package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -0
- package/src/Presentation/Views/InviteMembers/InviteMembers.tsx +309 -0
- package/src/Presentation/Views/InviteMembers/InviteMembersViewModel.ts +18 -0
- package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -0
- package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +122 -0
- package/src/Presentation/Views/InviteMembers/InviteUsersResultViewModel.ts +12 -0
- package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -0
- package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.tsx +22 -0
- package/src/Presentation/Views/InviteMembers/useInviteMembersViewModel.ts +143 -0
- package/src/Presentation/Views/Navigation/More.svg +7 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.tsx +317 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.tsx +59 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialogViewModel.ts +42 -0
- package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -0
- package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.tsx +48 -0
- package/src/Presentation/assets/fonts/.gitkeep +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff2 +0 -0
- package/src/Presentation/assets/img/Artem_Koltunov_Selfi.png +0 -0
- package/src/Presentation/assets/img/bee-img.png +0 -0
- package/src/Presentation/assets/img/web-doc.png +0 -0
- package/src/Presentation/components/Button.js +5 -0
- package/src/Presentation/components/Navbar.tsx +45 -0
- package/src/Presentation/components/TextInput.js +10 -0
- package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +40 -0
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.scss +0 -0
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +30 -0
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -0
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +62 -0
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -0
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +48 -0
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -0
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +52 -0
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -0
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.tsx +44 -0
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -0
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +45 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.tsx +39 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.tsx +50 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.tsx +20 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.tsx +7 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.tsx +93 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/index.tsx +38 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.tsx +58 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/index.tsx +34 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.tsx +38 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.tsx +67 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/IconsCommonTypes.ts +6 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/index.tsx +26 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/index.tsx +34 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.tsx +36 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/index.tsx +36 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.tsx +40 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.tsx +38 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.tsx +24 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.tsx +26 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.tsx +35 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.tsx +22 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -0
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.tsx +22 -0
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -0
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +27 -0
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -0
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +88 -0
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -0
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +90 -0
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -0
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +90 -0
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -0
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.tsx +102 -0
- package/src/Presentation/components/containers/SectionList/hooks/createUseComponent.ts +20 -0
- package/src/Presentation/components/containers/SectionList/hooks/index.ts +4 -0
- package/src/Presentation/components/containers/SectionList/hooks/useMobileLayout.ts +27 -0
- package/src/Presentation/components/containers/SectionList/hooks/usePrevious.ts +11 -0
- package/src/Presentation/components/containers/SectionList/hooks/useVisibility.ts +17 -0
- package/src/Presentation/components/containers/SectionList/index.tsx +52 -0
- package/src/Presentation/components/containers/SectionList/styles.css +50 -0
- package/src/Presentation/components/containers/SectionList/useComponent.ts +136 -0
- package/src/Presentation/icons/actions/add-contact.svg +3 -0
- package/src/Presentation/icons/actions/add.svg +3 -0
- package/src/Presentation/icons/actions/archive.svg +3 -0
- package/src/Presentation/icons/actions/copy.svg +3 -0
- package/src/Presentation/icons/actions/delete.svg +3 -0
- package/src/Presentation/icons/actions/download.svg +3 -0
- package/src/Presentation/icons/actions/edit.svg +3 -0
- package/src/Presentation/icons/actions/emoji.svg +3 -0
- package/src/Presentation/icons/actions/forward-filled.svg +3 -0
- package/src/Presentation/icons/actions/hungup.svg +3 -0
- package/src/Presentation/icons/actions/income-call.svg +3 -0
- package/src/Presentation/icons/actions/index.ts +26 -0
- package/src/Presentation/icons/actions/like.svg +3 -0
- package/src/Presentation/icons/actions/new-chat.svg +3 -0
- package/src/Presentation/icons/actions/outcome-call.svg +3 -0
- package/src/Presentation/icons/actions/phone-filled.svg +3 -0
- package/src/Presentation/icons/actions/phone.svg +3 -0
- package/src/Presentation/icons/actions/remove-2.svg +3 -0
- package/src/Presentation/icons/actions/remove.svg +3 -0
- package/src/Presentation/icons/actions/rephrase.svg +6 -0
- package/src/Presentation/icons/actions/reply-filled.svg +3 -0
- package/src/Presentation/icons/actions/robot.svg +5 -0
- package/src/Presentation/icons/actions/send.svg +3 -0
- package/src/Presentation/icons/actions/share.svg +3 -0
- package/src/Presentation/icons/actions/swap-camera.svg +3 -0
- package/src/Presentation/icons/actions/translate.svg +3 -0
- package/src/Presentation/icons/actions/unarchive.svg +3 -0
- package/src/Presentation/icons/actions/video.svg +3 -0
- package/src/Presentation/icons/actions/voice.svg +3 -0
- package/src/Presentation/icons/contents/broadcast.svg +7 -0
- package/src/Presentation/icons/contents/chat-filled.svg +3 -0
- package/src/Presentation/icons/contents/chat.svg +3 -0
- package/src/Presentation/icons/contents/conference.svg +3 -0
- package/src/Presentation/icons/contents/contact-filled.svg +3 -0
- package/src/Presentation/icons/contents/contact.svg +3 -0
- package/src/Presentation/icons/contents/group-chat.svg +3 -0
- package/src/Presentation/icons/contents/index.ts +13 -0
- package/src/Presentation/icons/contents/notifications.svg +3 -0
- package/src/Presentation/icons/contents/private-chat.svg +3 -0
- package/src/Presentation/icons/contents/public-channel.svg +7 -0
- package/src/Presentation/icons/contents/stream-filled.svg +3 -0
- package/src/Presentation/icons/contents/stream.svg +3 -0
- package/src/Presentation/icons/contents/user.svg +3 -0
- package/src/Presentation/icons/index.ts +7 -0
- package/src/Presentation/icons/media/attachment.svg +3 -0
- package/src/Presentation/icons/media/audio-file.svg +3 -0
- package/src/Presentation/icons/media/broken-file.svg +3 -0
- package/src/Presentation/icons/media/camera.svg +3 -0
- package/src/Presentation/icons/media/file.svg +3 -0
- package/src/Presentation/icons/media/gif-file.svg +3 -0
- package/src/Presentation/icons/media/image-filled.svg +3 -0
- package/src/Presentation/icons/media/image.svg +3 -0
- package/src/Presentation/icons/media/index.ts +12 -0
- package/src/Presentation/icons/media/link.svg +3 -0
- package/src/Presentation/icons/media/location.svg +4 -0
- package/src/Presentation/icons/media/text-document.svg +3 -0
- package/src/Presentation/icons/media/video-file.svg +3 -0
- package/src/Presentation/icons/moderation/admin.svg +3 -0
- package/src/Presentation/icons/moderation/banned.svg +3 -0
- package/src/Presentation/icons/moderation/freeze.svg +3 -0
- package/src/Presentation/icons/moderation/index.ts +5 -0
- package/src/Presentation/icons/moderation/moderations.svg +3 -0
- package/src/Presentation/icons/moderation/muted.svg +3 -0
- package/src/Presentation/icons/navigation/arrow-left.svg +3 -0
- package/src/Presentation/icons/navigation/arrow-right.svg +3 -0
- package/src/Presentation/icons/navigation/back.svg +3 -0
- package/src/Presentation/icons/navigation/close.svg +3 -0
- package/src/Presentation/icons/navigation/down.svg +3 -0
- package/src/Presentation/icons/navigation/index.ts +12 -0
- package/src/Presentation/icons/navigation/leave.svg +3 -0
- package/src/Presentation/icons/navigation/more.svg +3 -0
- package/src/Presentation/icons/navigation/next.svg +3 -0
- package/src/Presentation/icons/navigation/plus.svg +3 -0
- package/src/Presentation/icons/navigation/refresh.svg +3 -0
- package/src/Presentation/icons/navigation/search.svg +3 -0
- package/src/Presentation/icons/navigation/settings-filled.svg +3 -0
- package/src/Presentation/icons/navigation/settings.svg +3 -0
- package/src/Presentation/icons/status/error.svg +3 -0
- package/src/Presentation/icons/status/help.svg +3 -0
- package/src/Presentation/icons/status/index.ts +7 -0
- package/src/Presentation/icons/status/information.svg +3 -0
- package/src/Presentation/icons/status/loader.svg +3 -0
- package/src/Presentation/icons/status/mention.svg +3 -0
- package/src/Presentation/icons/status/sent.svg +3 -0
- package/src/Presentation/icons/status/viewed-delivered.svg +3 -0
- package/src/Presentation/icons/toggle/camera-off.svg +3 -0
- package/src/Presentation/icons/toggle/camera-on.svg +3 -0
- package/src/Presentation/icons/toggle/check-off.svg +3 -0
- package/src/Presentation/icons/toggle/check-on.svg +3 -0
- package/src/Presentation/icons/toggle/favorite.svg +3 -0
- package/src/Presentation/icons/toggle/favourite.svg +3 -0
- package/src/Presentation/icons/toggle/full-screen.svg +3 -0
- package/src/Presentation/icons/toggle/hide.svg +3 -0
- package/src/Presentation/icons/toggle/index.ts +23 -0
- package/src/Presentation/icons/toggle/louder.svg +3 -0
- package/src/Presentation/icons/toggle/mic-off.svg +3 -0
- package/src/Presentation/icons/toggle/mic-on.svg +4 -0
- package/src/Presentation/icons/toggle/minimize.svg +3 -0
- package/src/Presentation/icons/toggle/notify-off.svg +3 -0
- package/src/Presentation/icons/toggle/notify-on.svg +3 -0
- package/src/Presentation/icons/toggle/pause.svg +3 -0
- package/src/Presentation/icons/toggle/play.svg +3 -0
- package/src/Presentation/icons/toggle/quite.svg +3 -0
- package/src/Presentation/icons/toggle/record.svg +3 -0
- package/src/Presentation/icons/toggle/screenshare.svg +3 -0
- package/src/Presentation/icons/toggle/show.svg +3 -0
- package/src/Presentation/icons/toggle/speaker off.svg +3 -0
- package/src/Presentation/icons/toggle/speaker-off.svg +3 -0
- package/src/Presentation/icons/toggle/speaker.svg +3 -0
- package/src/Presentation/icons/toggle/stop-record.svg +3 -0
- package/src/Presentation/icons/toggle/stop-share.svg +3 -0
- package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -0
- package/src/Presentation/layouts/Desktop/DesktopLayout.tsx +89 -0
- package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +1374 -0
- package/src/Presentation/layouts/LayoutCommonTypes.ts +7 -0
- package/src/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.tsx +27 -0
- package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -0
- package/src/Presentation/layouts/TestStage/LoginView/Login.tsx +95 -0
- package/src/Presentation/providers/ProviderProps.ts +5 -0
- package/src/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +339 -0
- package/src/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.ts +10 -0
- package/src/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.ts +38 -0
- package/src/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.ts +83 -0
- package/src/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.ts +11 -0
- package/src/Presentation/themes/DarkTheme.ts +58 -0
- package/src/Presentation/themes/DefaultThemes/CustomTheme.ts +58 -0
- package/src/Presentation/themes/DefaultThemes/DefaultTheme.ts +58 -0
- package/src/Presentation/themes/LightTheme.ts +58 -0
- package/src/Presentation/themes/ThemeScheme.ts +83 -0
- package/src/Presentation/themes/UiKitTheme.ts +37 -0
- package/src/Presentation/themes/styles/_fonts.scss +32 -0
- package/src/Presentation/themes/styles/_mixins.scss +6 -0
- package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -0
- package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -0
- package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -0
- package/src/Presentation/themes/styles/_theme_dark.scss +37 -0
- package/src/Presentation/themes/styles/_theme_light.scss +38 -0
- package/src/Presentation/themes/styles/_variables.scss +54 -0
- package/src/Presentation/ui-components/Avatar/Avatar.scss +55 -0
- package/src/Presentation/ui-components/Avatar/Avatar.tsx +30 -0
- package/src/Presentation/ui-components/Avatar/avatar.stories.tsx +78 -0
- package/src/Presentation/ui-components/Badge/Badge.scss +23 -0
- package/src/Presentation/ui-components/Badge/Badge.stories.ts +64 -0
- package/src/Presentation/ui-components/Badge/Badge.tsx +23 -0
- package/src/Presentation/ui-components/Button/Button.scss +133 -0
- package/src/Presentation/ui-components/Button/Button.stories.ts +93 -0
- package/src/Presentation/ui-components/Button/Button.tsx +49 -0
- package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -0
- package/src/Presentation/ui-components/CheckBox/CheckBox.tsx +23 -0
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -0
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts +38 -0
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.tsx +16 -0
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -0
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx +166 -0
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.tsx +70 -0
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +45 -0
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx +106 -0
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.tsx +41 -0
- package/src/Presentation/ui-components/Dropdown/Dropdown.scss +78 -0
- package/src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx +149 -0
- package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +89 -0
- package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +30 -0
- package/src/Presentation/ui-components/Header/Header.scss +72 -0
- package/src/Presentation/ui-components/Header/Header.stories.tsx +116 -0
- package/src/Presentation/ui-components/Header/Header.tsx +51 -0
- package/src/Presentation/ui-components/Loader/Loader.scss +27 -0
- package/src/Presentation/ui-components/Loader/Loader.stories.ts +42 -0
- package/src/Presentation/ui-components/Loader/Loader.tsx +15 -0
- package/src/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.tsx +66 -0
- package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +71 -0
- package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.tsx +148 -0
- package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -0
- package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.tsx +16 -0
- package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -0
- package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.tsx +25 -0
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -0
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.tsx +22 -0
- package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +18 -0
- package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.tsx +36 -0
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -0
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.tsx +43 -0
- package/src/Presentation/ui-components/Message/Message.scss +136 -0
- package/src/Presentation/ui-components/Message/Message.stories.tsx +249 -0
- package/src/Presentation/ui-components/Message/Message.tsx +85 -0
- package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -0
- package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.tsx +46 -0
- package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -0
- package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.tsx +32 -0
- package/src/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.tsx +33 -0
- package/src/Presentation/ui-components/MessageInput/MessageInput.scss +123 -0
- package/src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx +137 -0
- package/src/Presentation/ui-components/MessageInput/MessageInput.tsx +155 -0
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -0
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.tsx +27 -0
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -0
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.tsx +101 -0
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -0
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +79 -0
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -0
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts +158 -0
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.tsx +34 -0
- package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -0
- package/src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx +95 -0
- package/src/Presentation/ui-components/Placeholder/Placeholder.tsx +38 -0
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -0
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts +66 -0
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.tsx +38 -0
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -0
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx +177 -0
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.tsx +56 -0
- package/src/Presentation/ui-components/TextField/TextField.scss +91 -0
- package/src/Presentation/ui-components/TextField/TextField.stories.ts +103 -0
- package/src/Presentation/ui-components/TextField/TextField.tsx +78 -0
- package/src/Presentation/ui-components/Toast/Toast.scss +17 -0
- package/src/Presentation/ui-components/Toast/Toast.stories.tsx +50 -0
- package/src/Presentation/ui-components/Toast/ToastProvider.tsx +28 -0
- package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -0
- package/src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx +128 -0
- package/src/Presentation/ui-components/UserListItem/UserListItem.tsx +43 -0
- package/src/Presentation/ui-components/index.ts +19 -0
- package/src/QBconfig.ts +151 -0
- package/src/hooks/useModal.ts +13 -0
- package/src/index-ui.ts +87 -0
- package/src/index.scss +27 -0
- package/src/index.tsx +25 -0
- package/src/logo.svg +1 -0
- package/src/package_artan_react_ui.json +91 -0
- package/src/package_original.json +115 -0
- package/src/qb-api-calls/index.ts +581 -0
- package/src/react-app-env.d.ts +1 -0
- package/src/setupTests.ts +5 -0
- package/src/utils/DateTimeFormatter.ts +90 -0
- package/src/utils/parse.ts +74 -0
- package/src/utils/utils.ts +102 -0
- package/storybook-static/312.0aa0e670.iframe.bundle.js +1 -0
- package/storybook-static/341.bea6d0bd.iframe.bundle.js +1 -0
- package/storybook-static/426.be971fb5.iframe.bundle.js +157 -0
- package/storybook-static/426.be971fb5.iframe.bundle.js.map +1 -0
- package/storybook-static/472.3c9e81e6.iframe.bundle.js +351 -0
- package/storybook-static/472.3c9e81e6.iframe.bundle.js.map +1 -0
- package/storybook-static/607.b04b9f0b.iframe.bundle.js +1 -0
- package/storybook-static/729.734b4ae4.iframe.bundle.js +1 -0
- package/storybook-static/758.d99b0166.iframe.bundle.js +14 -0
- package/storybook-static/758.d99b0166.iframe.bundle.js.map +1 -0
- package/storybook-static/797.b3873e04.iframe.bundle.js +1 -0
- package/storybook-static/926.f14bb932.iframe.bundle.js +508 -0
- package/storybook-static/926.f14bb932.iframe.bundle.js.map +1 -0
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.2fb23ae6.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.fea53429.iframe.bundle.js +14 -0
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.fea53429.iframe.bundle.js.map +1 -0
- package/storybook-static/Presentation-ui-components-Button-Button-stories.f6c6437b.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.6b2a3f72.iframe.bundle.js +10 -0
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.6b2a3f72.iframe.bundle.js.map +1 -0
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.f1cb9d40.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.0ad17c54.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.3b620239.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Header-Header-stories.45503161.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8b53bb33.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Message-Message-stories.63bec01b.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.728a66ad.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.82483823.iframe.bundle.js +10 -0
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.82483823.iframe.bundle.js.map +1 -0
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.0898ead6.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.973cdb64.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.0af0b8a8.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.5987d2bb.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.e26b2e07.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.e88f4206.iframe.bundle.js +1 -0
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/favicon.svg +7 -0
- package/storybook-static/iframe.html +355 -0
- package/storybook-static/index.html +131 -0
- package/storybook-static/index.json +1 -0
- package/storybook-static/logo192.png +0 -0
- package/storybook-static/logo512.png +0 -0
- package/storybook-static/main.0332574c.iframe.bundle.js +1 -0
- package/storybook-static/manifest.json +25 -0
- package/storybook-static/project.json +1 -0
- package/storybook-static/quickblox.js +54609 -0
- package/storybook-static/robots.txt +3 -0
- package/storybook-static/runtime~main.16726a14.iframe.bundle.js +1 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +63 -0
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +18 -0
- package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +12 -0
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/onboarding-7/manager-bundle.js +503 -0
- package/storybook-static/sb-addons/onboarding-7/manager-bundle.js.LEGAL.txt +48 -0
- package/storybook-static/sb-addons/viewport-9/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/viewport-9/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-common-assets/fonts.css +31 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-LVYLGZW2.js +1 -0
- package/storybook-static/sb-manager/chunk-2IXBUOFS.js +7 -0
- package/storybook-static/sb-manager/chunk-INSKDKQB.js +348 -0
- package/storybook-static/sb-manager/chunk-NGTUFCUO.js +9 -0
- package/storybook-static/sb-manager/chunk-NMB3SATH.js +406 -0
- package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +1 -0
- package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
- package/storybook-static/sb-manager/globals-module-info.js +1 -0
- package/storybook-static/sb-manager/globals.js +1 -0
- package/storybook-static/sb-manager/index.js +1 -0
- package/storybook-static/sb-manager/runtime.js +1 -0
- package/storybook-static/sb-manager/syntaxhighlighter-V7JZZA35-DXZCI2WR.js +1 -0
- package/storybook-static/sb-preview/globals.js +1 -0
- package/storybook-static/sb-preview/runtime.js +112 -0
- package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.807573c8.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.807573c8.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css +4 -0
- package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e720ff21.chunk.css +7 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e720ff21.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.6fb3af8d.chunk.css +6 -0
- package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.6fb3af8d.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.66965d64.chunk.css +5 -0
- package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.66965d64.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.cdc47631.chunk.css +4 -0
- package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.cdc47631.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.a518b61a.chunk.css +14 -0
- package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.a518b61a.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.0e99d80b.chunk.css +7 -0
- package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.0e99d80b.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.1ebf88ab.chunk.css +4 -0
- package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.1ebf88ab.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.015ac417.chunk.css +3 -0
- package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.015ac417.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.7b98a5d4.chunk.css +5 -0
- package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.7b98a5d4.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css +4 -0
- package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.11d83296.chunk.css +754 -0
- package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.11d83296.chunk.css.map +1 -0
- package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.4d072348.chunk.css +7 -0
- package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.4d072348.chunk.css.map +1 -0
- package/storybook-static/static/css/main.4e852eef.css +5 -0
- package/storybook-static/static/css/main.4e852eef.css.map +1 -0
- package/storybook-static/static/media/add-contact.e7e7b8b15edebe99cae9c46963126e7c.svg +3 -0
- package/storybook-static/static/media/add.5cbe1f2c489b81396863f7128e3d26e7.svg +3 -0
- package/storybook-static/static/media/admin.476c2854d7ad23f2afdedac2d9bd6815.svg +3 -0
- package/storybook-static/static/media/archive.d0a72898f3c47a4194d18f560a54e109.svg +3 -0
- package/storybook-static/static/media/arrow-left.5005351d4fa6a7c074dd9780fb49dcc8.svg +3 -0
- package/storybook-static/static/media/arrow-right.1be3b599e21158807fdf72f4976179a2.svg +3 -0
- package/storybook-static/static/media/attachment.a58b8549f46ae5bbe93be779cd9f2037.svg +3 -0
- package/storybook-static/static/media/audio-file.40179c472f715fc74d4da607da96aa5e.svg +3 -0
- package/storybook-static/static/media/back.b541e72fe05542e145575c8851558998.svg +3 -0
- package/storybook-static/static/media/banned.c7c74bfa1c833263f3ab42d0529132d1.svg +3 -0
- package/storybook-static/static/media/broadcast.55273926379e5f486ccfdfab1a310b2d.svg +7 -0
- package/storybook-static/static/media/broken-file.bc084278a0d284b7901b47f24001caa6.svg +3 -0
- package/storybook-static/static/media/camera-off.8e01960815ce7620a1039d0fc5f758b2.svg +3 -0
- package/storybook-static/static/media/camera-on.ddd56e36fa505d618ab772e23c8381e6.svg +3 -0
- package/storybook-static/static/media/camera.a5a215695fba60146e649094188f37e2.svg +3 -0
- package/storybook-static/static/media/chat-filled.aaf0b778d198e7b8f632a68299a8fd13.svg +3 -0
- package/storybook-static/static/media/chat.59cd437f21fe7043682dd04cbe6377be.svg +3 -0
- package/storybook-static/static/media/check-off.0c0256f00eeb75770ffc2fbd2b59eab0.svg +3 -0
- package/storybook-static/static/media/check-on.80442753ef6922df1913453f50099315.svg +3 -0
- package/storybook-static/static/media/close.c145af996de81b25f3930bf36d88b161.svg +3 -0
- package/storybook-static/static/media/conference.ffbdf37c0510c796138f18e6c1205204.svg +3 -0
- package/storybook-static/static/media/contact-filled.f04f56ba3f98ade5d7ced7814d8a5fa8.svg +3 -0
- package/storybook-static/static/media/contact.40a8b8104c3a448b81108ffede850963.svg +3 -0
- package/storybook-static/static/media/copy.100bd0fff933cbde8ad4bc2ac281c845.svg +3 -0
- package/storybook-static/static/media/delete.287c9b4b3b0e58cb081c6e388e68b409.svg +3 -0
- package/storybook-static/static/media/down.7a43a3d78885f40616ce111c86c108a4.svg +3 -0
- package/storybook-static/static/media/download.43c26d404dd023e42aaacc52151f7a59.svg +3 -0
- package/storybook-static/static/media/edit.8d813af82ecab84303ee3c97bd7bc562.svg +3 -0
- package/storybook-static/static/media/emoji.9a202cbb16735f3c83ba8772f0218aa4.svg +3 -0
- package/storybook-static/static/media/error.ec60e2052661b82f27b7ce270ae133a7.svg +3 -0
- package/storybook-static/static/media/favorite.194d78057be6cd7968c85e7b5822f82a.svg +3 -0
- package/storybook-static/static/media/file.e537292693b3c89c023fd383c70bd221.svg +3 -0
- package/storybook-static/static/media/forward-filled.43120a68057427c89c88b28d9b20dd90.svg +3 -0
- package/storybook-static/static/media/freeze.35619771e645b649c38e0427d9b39a25.svg +3 -0
- package/storybook-static/static/media/full-screen.6b01c93e069421c69bda2bbde5d01336.svg +3 -0
- package/storybook-static/static/media/gif-file.2c46a5df6c8397f5b9088e66aee3fd44.svg +3 -0
- package/storybook-static/static/media/group-chat.19d5305cab6017d494ac35ecb285a9fe.svg +3 -0
- package/storybook-static/static/media/help.786f48518c96c8e7098296d68245c339.svg +3 -0
- package/storybook-static/static/media/hide.2785264246d70868717984a5ad44d4c9.svg +3 -0
- package/storybook-static/static/media/hungup.e5d2289a9e8cd755bd1ee36b738305a2.svg +3 -0
- package/storybook-static/static/media/image-filled.8afb62b142d786e90102f1cac73a9c13.svg +3 -0
- package/storybook-static/static/media/image.64092dadd5215c8d3ba99ccac753d743.svg +3 -0
- package/storybook-static/static/media/income-call.60ca2d367a00d582f4b6f4a5f2047e27.svg +3 -0
- package/storybook-static/static/media/information.8217e163c334852f143e7199c97fab1d.svg +3 -0
- package/storybook-static/static/media/leave.ae5422a12edec1b61484ff2932819c77.svg +3 -0
- package/storybook-static/static/media/like.45662989373aa524cd580fb42432e0bc.svg +3 -0
- package/storybook-static/static/media/link.74f567c3ee4366d79fb81d73eb8c0919.svg +3 -0
- package/storybook-static/static/media/loader.2eb72391c5267453edb4106528c075ad.svg +3 -0
- package/storybook-static/static/media/location.cab52453404524c345ec7efdd86fa66b.svg +4 -0
- package/storybook-static/static/media/louder.133519141541a9cd2f0e898534b39732.svg +3 -0
- package/storybook-static/static/media/mention.6c4885bb0ea5ca85c8962f6f51ac1cb4.svg +3 -0
- package/storybook-static/static/media/mic-off.43e60427600bcf7fd78fb840ff50d804.svg +3 -0
- package/storybook-static/static/media/mic-on.5a52100de3770550b3a57a76827843c2.svg +4 -0
- package/storybook-static/static/media/minimize.a849dd3a36ece08b992a773d135a0c3f.svg +3 -0
- package/storybook-static/static/media/moderations.07c8d1fe96b0b8bb5911f6cc37f764c6.svg +3 -0
- package/storybook-static/static/media/more.4ed9ad54ae110d9760b6e9698d821960.svg +3 -0
- package/storybook-static/static/media/muted.cb37ac3c577c87c800466aa7aee65af2.svg +3 -0
- package/storybook-static/static/media/new-chat.124e0351bd0e19ff4c5fdbabbe5c6027.svg +3 -0
- package/storybook-static/static/media/next.97a0eeea1f8daa2d31c8452f29908bf1.svg +3 -0
- package/storybook-static/static/media/notifications.ab8e847ae04e2bec9209dbdd1054b0f2.svg +3 -0
- package/storybook-static/static/media/notify-off.4a669a3a8cbd38b3309dbc4c909f6089.svg +3 -0
- package/storybook-static/static/media/notify-on.ea9ffc856ad6cdbe87184af558c78eec.svg +3 -0
- package/storybook-static/static/media/outcome-call.9f5fec07823796ad78963a06cdcf629e.svg +3 -0
- package/storybook-static/static/media/pause.27eb8c32999f10d05d6a200165d798a9.svg +3 -0
- package/storybook-static/static/media/phone-filled.e969511d74935af26ef366f575929f68.svg +3 -0
- package/storybook-static/static/media/phone.6355580a064a488b6317372d71f84c00.svg +3 -0
- package/storybook-static/static/media/play.00bfe0e9c94dc6dfb230262e45b2f860.svg +3 -0
- package/storybook-static/static/media/plus.d3953cb1cf830bcfc41c8cc6133b13b1.svg +3 -0
- package/storybook-static/static/media/private-chat.c68f36baf025b9d20ad1f801a2396e7a.svg +3 -0
- package/storybook-static/static/media/public-channel.7a6ada7f30c44fb4a99021df0eb0e996.svg +7 -0
- package/storybook-static/static/media/quite.9f45e2152fe6c499a776cb387ee4859f.svg +3 -0
- package/storybook-static/static/media/record.e49ee7da793b2ce446a4e7128970c0cc.svg +3 -0
- package/storybook-static/static/media/refresh.6e955728d9ec086f34e9adaaaafacf3e.svg +3 -0
- package/storybook-static/static/media/remove-2.8a7700757f02c941f03c37c7e495bf63.svg +3 -0
- package/storybook-static/static/media/remove.831e69b70db1b3eb72a49444b8aa1e16.svg +3 -0
- package/storybook-static/static/media/rephrase.551171aa8903b31746a58a95528b1f68.svg +6 -0
- package/storybook-static/static/media/reply-filled.17ed65506e902f17bb22e87ffac93314.svg +3 -0
- package/storybook-static/static/media/screenshare.c2f94264a7640ea1bbb2a22f7d570038.svg +3 -0
- package/storybook-static/static/media/search.25663e60d71e01c64fdfc83df7460ab0.svg +3 -0
- package/storybook-static/static/media/send.d298db52aafdb846a46c9d180ad45946.svg +3 -0
- package/storybook-static/static/media/sent.f427753e5502fd7783a08e5f0e0d2f35.svg +3 -0
- package/storybook-static/static/media/settings-filled.bd9b60ff4e9eae911e4e2bc69e8e79ca.svg +3 -0
- package/storybook-static/static/media/share.7ce8283aa267fb065c568d65b482e211.svg +3 -0
- package/storybook-static/static/media/show.de1782527c4a7fa14101dffbfba8aea6.svg +3 -0
- package/storybook-static/static/media/speaker-off.fe84597c4b68f4f761e12f789dc58718.svg +3 -0
- package/storybook-static/static/media/speaker.e7ff48a73ca43188703b36dfecd932b5.svg +3 -0
- package/storybook-static/static/media/stop-record.a2e9d50a0930c24af43d7f357093be81.svg +3 -0
- package/storybook-static/static/media/stop-share.d1be236e01dd924ba711e1e17f41054c.svg +3 -0
- package/storybook-static/static/media/stream-filled.c40bae61fea25455602a61db5e77fa71.svg +3 -0
- package/storybook-static/static/media/stream.700f4f8ce0cee0ae1ef56132867427fe.svg +3 -0
- package/storybook-static/static/media/swap-camera.bc3a4652106f5c57d14b4dcbffff08a5.svg +3 -0
- package/storybook-static/static/media/text-document.cad7e87368501b96de2a939d08852dcd.svg +3 -0
- package/storybook-static/static/media/unarchive.1b1a7438cd8eb6fee80e6ac89baa195b.svg +3 -0
- package/storybook-static/static/media/user.911c7ae778615185b285ce0ae4068486.svg +3 -0
- package/storybook-static/static/media/video-file.dbd1f8c63a3769f9e9a027f0922d56b2.svg +3 -0
- package/storybook-static/static/media/video.bbcc2109285c18eea02ede86920de0dd.svg +3 -0
- package/storybook-static/static/media/viewed-delivered.f43360dc87235a6cf574ff53f73dd777.svg +3 -0
- package/storybook-static/static/media/voice.b937c8a1f744050bec2cd389ad2a1f3a.svg +3 -0
- package/storybook-static/stories.json +1 -0
- package/tsconfig.json +33 -0
- package/typedoc.json +4 -0
- package/webpack.config.js +68 -0
- package/dist/Presentation/Views/Dialog/DialogHeader/RenderLeftActions/RenderLeftActions.d.ts +0 -10
- package/dist/Presentation/Views/PreviewDialog/PreviewAudioFile/PreviewAudioFile.d.ts +0 -7
- package/dist/Presentation/Views/PreviewDialog/PreviewDefaultFile/PreviewDefaultFile.d.ts +0 -7
- package/dist/Presentation/Views/PreviewDialog/PreviewImageFile/PreviewImageFile.d.ts +0 -8
- package/dist/Presentation/Views/PreviewDialog/PreviewVideoFile/PreviewVideoFile.d.ts +0 -7
- package/dist/Presentation/providers/ModalContextProvider/Modal.d.ts +0 -14
- package/dist/Presentation/providers/ModalContextProvider/ModalContextProvider.d.ts +0 -4
- package/dist/Presentation/providers/ModalContextProvider/useModal.d.ts +0 -11
- package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/AttachmentUploader/AttachmentUploader.d.ts +0 -0
- package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +0 -0
- package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -1
- /package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function VideoFile(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M33.0001 7.33325L36.6667 14.6666H31.1667L27.5001 7.33325H23.8334L27.5001 14.6666H22.0001L18.3334 7.33325H14.6667L18.3334 14.6666H12.8334L9.16675 7.33325H7.33341C5.31675 7.33325 3.68508 8.98325 3.68508 10.9999L3.66675 32.9999C3.66675 35.0166 5.31675 36.6666 7.33341 36.6666H36.6667C38.6834 36.6666 40.3334 35.0166 40.3334 32.9999V7.33325H33.0001Z"
|
|
15
|
+
id="VideoFile"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default VideoFile;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.7466 24.1817L21.9999 20.955L26.2349 24.1817L24.6216 18.9567L28.8749 15.5833H23.6683L21.9999 10.4317L20.3316 15.5833H15.1249L19.3599 18.9567L17.7466 24.1817ZM36.6666 17.4167C36.6666 9.31333 30.1033 2.75 21.9999 2.75C13.8966 2.75 7.33325 9.31333 7.33325 17.4167C7.33325 21.1383 8.72659 24.5117 10.9999 27.0967V41.25L21.9999 37.5833L32.9999 41.25V27.0967C35.2733 24.5117 36.6666 21.1383 36.6666 17.4167ZM21.9999 6.41667C28.0683 6.41667 32.9999 11.3483 32.9999 17.4167C32.9999 23.485 28.0683 28.4167 21.9999 28.4167C15.9316 28.4167 10.9999 23.485 10.9999 17.4167C10.9999 11.3483 15.9316 6.41667 21.9999 6.41667ZM21.9999 33.9167L14.6666 35.7867V30.1033C16.8299 31.35 19.3233 32.0833 21.9999 32.0833C24.6766 32.0833 27.1699 31.35 29.3333 30.1033V35.7867L21.9999 33.9167Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Admin(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M17.7466 24.1817L21.9999 20.955L26.2349 24.1817L24.6216 18.9567L28.8749 15.5833H23.6683L21.9999 10.4317L20.3316 15.5833H15.1249L19.3599 18.9567L17.7466 24.1817ZM36.6666 17.4167C36.6666 9.31333 30.1033 2.75 21.9999 2.75C13.8966 2.75 7.33325 9.31333 7.33325 17.4167C7.33325 21.1383 8.72659 24.5117 10.9999 27.0967V41.25L21.9999 37.5833L32.9999 41.25V27.0967C35.2733 24.5117 36.6666 21.1383 36.6666 17.4167ZM21.9999 6.41667C28.0683 6.41667 32.9999 11.3483 32.9999 17.4167C32.9999 23.485 28.0683 28.4167 21.9999 28.4167C15.9316 28.4167 10.9999 23.485 10.9999 17.4167C10.9999 11.3483 15.9316 6.41667 21.9999 6.41667ZM21.9999 33.9167L14.6666 35.7867V30.1033C16.8299 31.35 19.3233 32.0833 21.9999 32.0833C24.6766 32.0833 27.1699 31.35 29.3333 30.1033V35.7867L21.9999 33.9167Z"
|
|
15
|
+
id="Admin"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Admin;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 18.6084 8.48841 15.4917 10.4317 13.0167L30.9834 33.5684C28.5084 35.5117 25.3917 36.6667 22.0001 36.6667ZM33.5684 30.9834L13.0167 10.4317C15.4917 8.48841 18.6084 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 25.3917 35.5117 28.5084 33.5684 30.9834Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Banned(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 18.6084 8.48841 15.4917 10.4317 13.0167L30.9834 33.5684C28.5084 35.5117 25.3917 36.6667 22.0001 36.6667ZM33.5684 30.9834L13.0167 10.4317C15.4917 8.48841 18.6084 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 25.3917 35.5117 28.5084 33.5684 30.9834Z"
|
|
15
|
+
id="Banned"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Banned;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M40.3334 20.1667H32.6884L38.6284 14.2267L36.0434 11.6234L27.5001 20.1667H23.8334V16.5001L32.3767 7.95675L29.7734 5.37175L23.8334 11.3117V3.66675H20.1667V11.3117L14.2267 5.37175L11.6234 7.95675L20.1667 16.5001V20.1667H16.5001L7.95675 11.6234L5.37175 14.2267L11.3117 20.1667H3.66675V23.8334H11.3117L5.37175 29.7734L7.95675 32.3767L16.5001 23.8334H20.1667V27.5001L11.6234 36.0434L14.2267 38.6284L20.1667 32.6884V40.3334H23.8334V32.6884L29.7734 38.6284L32.3767 36.0434L23.8334 27.5001V23.8334H27.5001L36.0434 32.3767L38.6284 29.7734L32.6884 23.8334H40.3334V20.1667Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Freeze(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M40.3334 20.1667H32.6884L38.6284 14.2267L36.0434 11.6234L27.5001 20.1667H23.8334V16.5001L32.3767 7.95675L29.7734 5.37175L23.8334 11.3117V3.66675H20.1667V11.3117L14.2267 5.37175L11.6234 7.95675L20.1667 16.5001V20.1667H16.5001L7.95675 11.6234L5.37175 14.2267L11.3117 20.1667H3.66675V23.8334H11.3117L5.37175 29.7734L7.95675 32.3767L16.5001 23.8334H20.1667V27.5001L11.6234 36.0434L14.2267 38.6284L20.1667 32.6884V40.3334H23.8334V32.6884L29.7734 38.6284L32.3767 36.0434L23.8334 27.5001V23.8334H27.5001L36.0434 32.3767L38.6284 29.7734L32.6884 23.8334H40.3334V20.1667Z"
|
|
15
|
+
id="Freeze"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Freeze;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.5 31.1667V34.8333H16.5V31.1667H5.5ZM5.5 9.16667V12.8333H23.8333V9.16667H5.5ZM23.8333 38.5V34.8333H38.5V31.1667H23.8333V27.5H20.1667V38.5H23.8333ZM12.8333 16.5V20.1667H5.5V23.8333H12.8333V27.5H16.5V16.5H12.8333ZM38.5 23.8333V20.1667H20.1667V23.8333H38.5ZM27.5 16.5H31.1667V12.8333H38.5V9.16667H31.1667V5.5H27.5V16.5Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Moderations(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M5.5 31.1667V34.8333H16.5V31.1667H5.5ZM5.5 9.16667V12.8333H23.8333V9.16667H5.5ZM23.8333 38.5V34.8333H38.5V31.1667H23.8333V27.5H20.1667V38.5H23.8333ZM12.8333 16.5V20.1667H5.5V23.8333H12.8333V27.5H16.5V16.5H12.8333ZM38.5 23.8333V20.1667H20.1667V23.8333H38.5ZM27.5 16.5H31.1667V12.8333H38.5V9.16667H31.1667V5.5H27.5V16.5Z"
|
|
15
|
+
id="Moderations"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Moderations;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.95658 5.38086L5.37158 7.96586L13.3649 15.9592L12.8332 16.5092H5.49992V27.5092H12.8332L21.9999 36.6759V24.5942L29.6632 32.2575C28.4716 33.1559 27.1332 33.8709 25.6666 34.2925V38.0692C28.1233 37.5192 30.3783 36.3825 32.2849 34.8609L36.0433 38.6192L38.6283 36.0342L7.95658 5.38086ZM18.3332 27.8209L14.3549 23.8425H9.16658V20.1759H14.3549L15.9682 18.5625L18.3332 20.9275V27.8209ZM34.8333 22.0092C34.8333 23.5125 34.5583 24.9609 34.0816 26.2992L36.8866 29.1042C37.9133 26.9592 38.4999 24.5575 38.4999 22.0092C38.4999 14.1625 33.0183 7.59919 25.6666 5.93086V9.70753C30.9649 11.2842 34.8333 16.1975 34.8333 22.0092ZM21.9999 7.34253L18.5532 10.7892L21.9999 14.2359V7.34253ZM30.2499 22.0092C30.2499 18.7642 28.3799 15.9775 25.6666 14.6209V17.9025L30.2132 22.4492C30.2316 22.3025 30.2499 22.1559 30.2499 22.0092Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Muted(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M7.95658 5.38086L5.37158 7.96586L13.3649 15.9592L12.8332 16.5092H5.49992V27.5092H12.8332L21.9999 36.6759V24.5942L29.6632 32.2575C28.4716 33.1559 27.1332 33.8709 25.6666 34.2925V38.0692C28.1233 37.5192 30.3783 36.3825 32.2849 34.8609L36.0433 38.6192L38.6283 36.0342L7.95658 5.38086ZM18.3332 27.8209L14.3549 23.8425H9.16658V20.1759H14.3549L15.9682 18.5625L18.3332 20.9275V27.8209ZM34.8333 22.0092C34.8333 23.5125 34.5583 24.9609 34.0816 26.2992L36.8866 29.1042C37.9133 26.9592 38.4999 24.5575 38.4999 22.0092C38.4999 14.1625 33.0183 7.59919 25.6666 5.93086V9.70753C30.9649 11.2842 34.8333 16.1975 34.8333 22.0092ZM21.9999 7.34253L18.5532 10.7892L21.9999 14.2359V7.34253ZM30.2499 22.0092C30.2499 18.7642 28.3799 15.9775 25.6666 14.6209V17.9025L30.2132 22.4492C30.2316 22.3025 30.2499 22.1559 30.2499 22.0092Z"
|
|
15
|
+
id="Muted"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Muted;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function ArrowLeft(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M16.5001 34.8334L19.0851 32.2484L10.6884 23.8334H40.3334V20.1667H10.6884L19.1034 11.7517L16.5001 9.16669L3.66675 22L16.5001 34.8334Z"
|
|
15
|
+
id="ArrowLeft"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default ArrowLeft;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function ArrowRight(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M28.5001 9.16669L25.9151 11.7517L34.3117 20.1667H4.66675V23.8334H34.3117L25.8967 32.2484L28.5001 34.8334L41.3334 22L28.5001 9.16669Z"
|
|
15
|
+
id="ArrowRight"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default ArrowRight;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Back(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M20 11H7.83L13.42 5.41L12 4L4 12L12 20L13.41 18.59L7.83 13H20V11Z"
|
|
15
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
// <svg
|
|
19
|
+
// width={theme && theme.width ? theme.width : '24'}
|
|
20
|
+
// height={theme && theme.height ? theme.height : '24'}
|
|
21
|
+
// viewBox="0 0 24 24"
|
|
22
|
+
// fill="none"
|
|
23
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
// >
|
|
25
|
+
// <path
|
|
26
|
+
// d="M36.6668 20.1667H14.3552L24.6035 9.91834L22.0002 7.33334L7.3335 22L22.0002 36.6667L24.5852 34.0817L14.3552 23.8333H36.6668V20.1667Z"
|
|
27
|
+
// id="Back"
|
|
28
|
+
// fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
29
|
+
// />
|
|
30
|
+
// </svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default Back;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M35.8332 11.7517L33.2482 9.16666L22.9998 19.415L12.7515 9.16666L10.1665 11.7517L20.4148 22L10.1665 32.2483L12.7515 34.8333L22.9998 24.585L33.2482 34.8333L35.8332 32.2483L25.5848 22L35.8332 11.7517Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Close(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M35.8332 11.7517L33.2482 9.16666L22.9998 19.415L12.7515 9.16666L10.1665 11.7517L20.4148 22L10.1665 32.2483L12.7515 34.8333L22.9998 24.585L33.2482 34.8333L35.8332 32.2483L25.5848 22L35.8332 11.7517Z"
|
|
15
|
+
id="Close"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '32'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '32'}
|
|
23
|
+
viewBox="0 0 32 32"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M23.5454 10.41L22.1354 9L16.5454 14.59L10.9554 9L9.54541 10.41L15.1354 16L9.54541 21.59L10.9554 23L16.5454 17.41L22.1354 23L23.5454 21.59L17.9554 16L23.5454 10.41Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Close;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Down(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M30.415 16.2075L22 24.6042L13.585 16.2075L11 18.7925L22 29.7925L33 18.7925L30.415 16.2075Z"
|
|
15
|
+
id="Down"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M16.59 8.84058L12 13.4206L7.41 8.84058L6 10.2506L12 16.2506L18 10.2506L16.59 8.84058Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Down;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.1667 14.6667L28.5817 17.2517L31.4783 20.1667H16.5V23.8333H31.4783L28.5817 26.73L31.1667 29.3333L38.5 22L31.1667 14.6667ZM9.16667 9.16667H22V5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H22V34.8333H9.16667V9.16667Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Leave(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M31.1667 14.6667L28.5817 17.2517L31.4783 20.1667H16.5V23.8333H31.4783L28.5817 26.73L31.1667 29.3333L38.5 22L31.1667 14.6667ZM9.16667 9.16667H22V5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H22V34.8333H9.16667V9.16667Z"
|
|
15
|
+
id="Leave"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M17 8L15.59 9.41L17.17 11H9V13H17.17L15.59 14.58L17 16L21 12L17 8ZM5 5H12V3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H12V19H5V5Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Leave;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Navigation/More">
|
|
3
|
+
<g id="Vector">
|
|
4
|
+
<path d="M21.9999 14.6667C24.0166 14.6667 25.6666 13.0167 25.6666 11C25.6666 8.98334 24.0166 7.33334 21.9999 7.33334C19.9833 7.33334 18.3333 8.98334 18.3333 11C18.3333 13.0167 19.9833 14.6667 21.9999 14.6667ZM21.9999 18.3333C19.9833 18.3333 18.3333 19.9833 18.3333 22C18.3333 24.0167 19.9833 25.6667 21.9999 25.6667C24.0166 25.6667 25.6666 24.0167 25.6666 22C25.6666 19.9833 24.0166 18.3333 21.9999 18.3333ZM21.9999 29.3333C19.9833 29.3333 18.3333 30.9833 18.3333 33C18.3333 35.0167 19.9833 36.6667 21.9999 36.6667C24.0166 36.6667 25.6666 35.0167 25.6666 33C25.6666 30.9833 24.0166 29.3333 21.9999 29.3333Z" fill="#0B121B"/>
|
|
5
|
+
</g>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function More(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M21.9999 14.6667C24.0166 14.6667 25.6666 13.0167 25.6666 11C25.6666 8.98334 24.0166 7.33334 21.9999 7.33334C19.9833 7.33334 18.3333 8.98334 18.3333 11C18.3333 13.0167 19.9833 14.6667 21.9999 14.6667ZM21.9999 18.3333C19.9833 18.3333 18.3333 19.9833 18.3333 22C18.3333 24.0167 19.9833 25.6667 21.9999 25.6667C24.0166 25.6667 25.6666 24.0167 25.6666 22C25.6666 19.9833 24.0166 18.3333 21.9999 18.3333ZM21.9999 29.3333C19.9833 29.3333 18.3333 30.9833 18.3333 33C18.3333 35.0167 19.9833 36.6667 21.9999 36.6667C24.0166 36.6667 25.6666 35.0167 25.6666 33C25.6666 30.9833 24.0166 29.3333 21.9999 29.3333Z"
|
|
15
|
+
id="More"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default More;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Next(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M17.7925 11L15.2075 13.585L23.6042 22L15.2075 30.415L17.7925 33L28.7925 22L17.7925 11Z"
|
|
15
|
+
id="Next"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M9.70492 6L8.29492 7.41L12.8749 12L8.29492 16.59L9.70492 18L15.7049 12L9.70492 6Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Next;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Plus(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M34.8334 23.8333H23.8334V34.8333H20.1667V23.8333H9.16675V20.1667H20.1667V9.16666H23.8334V20.1667H34.8334V23.8333Z"
|
|
15
|
+
id="Plus"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Plus;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M32.3492 11.6416C29.6909 8.98331 26.0425 7.33331 21.9909 7.33331C13.8875 7.33331 7.34253 13.8966 7.34253 22C7.34253 30.1033 13.8875 36.6666 21.9909 36.6666C28.8292 36.6666 34.5309 31.9916 36.1625 25.6666H32.3492C30.8459 29.9383 26.7759 33 21.9909 33C15.9225 33 10.9909 28.0683 10.9909 22C10.9909 15.9316 15.9225 11 21.9909 11C25.0342 11 27.7475 12.265 29.7275 14.2633L23.8242 20.1666H36.6575V7.33331L32.3492 11.6416Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Refresh(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M32.3492 11.6416C29.6909 8.98331 26.0425 7.33331 21.9909 7.33331C13.8875 7.33331 7.34253 13.8966 7.34253 22C7.34253 30.1033 13.8875 36.6666 21.9909 36.6666C28.8292 36.6666 34.5309 31.9916 36.1625 25.6666H32.3492C30.8459 29.9383 26.7759 33 21.9909 33C15.9225 33 10.9909 28.0683 10.9909 22C10.9909 15.9316 15.9225 11 21.9909 11C25.0342 11 27.7475 12.265 29.7275 14.2633L23.8242 20.1666H36.6575V7.33331L32.3492 11.6416Z"
|
|
15
|
+
id="Refresh"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M17.6449 6.35C16.1949 4.9 14.2049 4 11.9949 4C7.57488 4 4.00488 7.58 4.00488 12C4.00488 16.42 7.57488 20 11.9949 20C15.7249 20 18.8349 17.45 19.7249 14H17.6449C16.8249 16.33 14.6049 18 11.9949 18C8.68488 18 5.99488 15.31 5.99488 12C5.99488 8.69 8.68488 6 11.9949 6C13.6549 6 15.1349 6.69 16.2149 7.78L12.9949 11H19.9949V4L17.6449 6.35Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
// "#3978FC"
|
|
35
|
+
|
|
36
|
+
export default Refresh;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Search(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return !theme?.applyZoom ? (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z"
|
|
15
|
+
id="Search"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
) : (
|
|
20
|
+
<svg
|
|
21
|
+
width={theme && theme.width ? theme.width : '24'}
|
|
22
|
+
height={theme && theme.height ? theme.height : '24'}
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M15.7551 14.2549H14.9651L14.6851 13.9849C15.6651 12.8449 16.2551 11.3649 16.2551 9.75488C16.2551 6.16488 13.3451 3.25488 9.75513 3.25488C6.16513 3.25488 3.25513 6.16488 3.25513 9.75488C3.25513 13.3449 6.16513 16.2549 9.75513 16.2549C11.3651 16.2549 12.8451 15.6649 13.9851 14.6849L14.2551 14.9649V15.7549L19.2551 20.7449L20.7451 19.2549L15.7551 14.2549ZM9.75513 14.2549C7.26513 14.2549 5.25513 12.2449 5.25513 9.75488C5.25513 7.26488 7.26513 5.25488 9.75513 5.25488C12.2451 5.25488 14.2551 7.26488 14.2551 9.75488C14.2551 12.2449 12.2451 14.2549 9.75513 14.2549Z"
|
|
29
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Search;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M35.6258 23.7967C35.6991 23.21 35.7541 22.6233 35.7541 22C35.7541 21.3767 35.6991 20.79 35.6258 20.2033L39.4941 17.1783C39.8424 16.9033 39.9341 16.4083 39.7141 16.005L36.0474 9.66166C35.8824 9.36832 35.5708 9.20332 35.2408 9.20332C35.1308 9.20332 35.0208 9.22166 34.9291 9.25832L30.3641 11.0917C29.4108 10.3583 28.3841 9.75332 27.2658 9.29499L26.5691 4.43666C26.5141 3.99666 26.1291 3.66666 25.6708 3.66666H18.3374C17.8791 3.66666 17.4941 3.99666 17.4391 4.43666L16.7424 9.29499C15.6241 9.75332 14.5974 10.3767 13.6441 11.0917L9.0791 9.25832C8.9691 9.22166 8.8591 9.20332 8.7491 9.20332C8.43743 9.20332 8.12577 9.36832 7.96077 9.66166L4.2941 16.005C4.05577 16.4083 4.16577 16.9033 4.5141 17.1783L8.38243 20.2033C8.3091 20.79 8.2541 21.395 8.2541 22C8.2541 22.605 8.3091 23.21 8.38243 23.7967L4.5141 26.8217C4.16577 27.0967 4.0741 27.5917 4.2941 27.995L7.96077 34.3383C8.12577 34.6317 8.43743 34.7967 8.76743 34.7967C8.87743 34.7967 8.98743 34.7783 9.0791 34.7417L13.6441 32.9083C14.5974 33.6417 15.6241 34.2467 16.7424 34.705L17.4391 39.5633C17.4941 40.0033 17.8791 40.3333 18.3374 40.3333H25.6708C26.1291 40.3333 26.5141 40.0033 26.5691 39.5633L27.2658 34.705C28.3841 34.2467 29.4108 33.6233 30.3641 32.9083L34.9291 34.7417C35.0391 34.7783 35.1491 34.7967 35.2591 34.7967C35.5708 34.7967 35.8824 34.6317 36.0474 34.3383L39.7141 27.995C39.9341 27.5917 39.8424 27.0967 39.4941 26.8217L35.6258 23.7967ZM31.9958 20.6617C32.0691 21.23 32.0874 21.615 32.0874 22C32.0874 22.385 32.0508 22.7883 31.9958 23.3383L31.7391 25.41L33.3708 26.6933L35.3508 28.2333L34.0674 30.4517L31.7391 29.5167L29.8324 28.7467L28.1824 29.9933C27.3941 30.58 26.6424 31.02 25.8908 31.3317L23.9474 32.12L23.6541 34.1917L23.2874 36.6667H20.7208L20.0791 32.12L18.1358 31.3317C17.3474 31.0017 16.6141 30.58 15.8808 30.03L14.2124 28.7467L12.2691 29.535L9.94077 30.47L8.65743 28.2517L10.6374 26.7117L12.2691 25.4283L12.0124 23.3567C11.9574 22.7883 11.9208 22.3667 11.9208 22C11.9208 21.6333 11.9574 21.2117 12.0124 20.6617L12.2691 18.59L10.6374 17.3067L8.65743 15.7667L9.94077 13.5483L12.2691 14.4833L14.1758 15.2533L15.8258 14.0067C16.6141 13.42 17.3658 12.98 18.1174 12.6683L20.0608 11.88L20.3541 9.80832L20.7208 7.33332H23.2691L23.9108 11.88L25.8541 12.6683C26.6424 12.9983 27.3758 13.42 28.1091 13.97L29.7774 15.2533L31.7208 14.465L34.0491 13.53L35.3324 15.7483L33.3708 17.3067L31.7391 18.59L31.9958 20.6617ZM22.0041 14.6667C17.9524 14.6667 14.6708 17.9483 14.6708 22C14.6708 26.0517 17.9524 29.3333 22.0041 29.3333C26.0558 29.3333 29.3374 26.0517 29.3374 22C29.3374 17.9483 26.0558 14.6667 22.0041 14.6667ZM22.0041 25.6667C19.9874 25.6667 18.3374 24.0167 18.3374 22C18.3374 19.9833 19.9874 18.3333 22.0041 18.3333C24.0208 18.3333 25.6708 19.9833 25.6708 22C25.6708 24.0167 24.0208 25.6667 22.0041 25.6667Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconTheme } from '../../IconsCommonTypes';
|
|
3
|
+
|
|
4
|
+
function Settings(theme: IconTheme | undefined = undefined) {
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={theme && theme.width ? theme.width : '44'}
|
|
8
|
+
height={theme && theme.height ? theme.height : '44'}
|
|
9
|
+
viewBox="0 0 44 44"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M35.6258 23.7967C35.6991 23.21 35.7541 22.6233 35.7541 22C35.7541 21.3767 35.6991 20.79 35.6258 20.2033L39.4941 17.1783C39.8424 16.9033 39.9341 16.4083 39.7141 16.005L36.0474 9.66166C35.8824 9.36832 35.5708 9.20332 35.2408 9.20332C35.1308 9.20332 35.0208 9.22166 34.9291 9.25832L30.3641 11.0917C29.4108 10.3583 28.3841 9.75332 27.2658 9.29499L26.5691 4.43666C26.5141 3.99666 26.1291 3.66666 25.6708 3.66666H18.3374C17.8791 3.66666 17.4941 3.99666 17.4391 4.43666L16.7424 9.29499C15.6241 9.75332 14.5974 10.3767 13.6441 11.0917L9.0791 9.25832C8.9691 9.22166 8.8591 9.20332 8.7491 9.20332C8.43743 9.20332 8.12577 9.36832 7.96077 9.66166L4.2941 16.005C4.05577 16.4083 4.16577 16.9033 4.5141 17.1783L8.38243 20.2033C8.3091 20.79 8.2541 21.395 8.2541 22C8.2541 22.605 8.3091 23.21 8.38243 23.7967L4.5141 26.8217C4.16577 27.0967 4.0741 27.5917 4.2941 27.995L7.96077 34.3383C8.12577 34.6317 8.43743 34.7967 8.76743 34.7967C8.87743 34.7967 8.98743 34.7783 9.0791 34.7417L13.6441 32.9083C14.5974 33.6417 15.6241 34.2467 16.7424 34.705L17.4391 39.5633C17.4941 40.0033 17.8791 40.3333 18.3374 40.3333H25.6708C26.1291 40.3333 26.5141 40.0033 26.5691 39.5633L27.2658 34.705C28.3841 34.2467 29.4108 33.6233 30.3641 32.9083L34.9291 34.7417C35.0391 34.7783 35.1491 34.7967 35.2591 34.7967C35.5708 34.7967 35.8824 34.6317 36.0474 34.3383L39.7141 27.995C39.9341 27.5917 39.8424 27.0967 39.4941 26.8217L35.6258 23.7967ZM31.9958 20.6617C32.0691 21.23 32.0874 21.615 32.0874 22C32.0874 22.385 32.0508 22.7883 31.9958 23.3383L31.7391 25.41L33.3708 26.6933L35.3508 28.2333L34.0674 30.4517L31.7391 29.5167L29.8324 28.7467L28.1824 29.9933C27.3941 30.58 26.6424 31.02 25.8908 31.3317L23.9474 32.12L23.6541 34.1917L23.2874 36.6667H20.7208L20.0791 32.12L18.1358 31.3317C17.3474 31.0017 16.6141 30.58 15.8808 30.03L14.2124 28.7467L12.2691 29.535L9.94077 30.47L8.65743 28.2517L10.6374 26.7117L12.2691 25.4283L12.0124 23.3567C11.9574 22.7883 11.9208 22.3667 11.9208 22C11.9208 21.6333 11.9574 21.2117 12.0124 20.6617L12.2691 18.59L10.6374 17.3067L8.65743 15.7667L9.94077 13.5483L12.2691 14.4833L14.1758 15.2533L15.8258 14.0067C16.6141 13.42 17.3658 12.98 18.1174 12.6683L20.0608 11.88L20.3541 9.80832L20.7208 7.33332H23.2691L23.9108 11.88L25.8541 12.6683C26.6424 12.9983 27.3758 13.42 28.1091 13.97L29.7774 15.2533L31.7208 14.465L34.0491 13.53L35.3324 15.7483L33.3708 17.3067L31.7391 18.59L31.9958 20.6617ZM22.0041 14.6667C17.9524 14.6667 14.6708 17.9483 14.6708 22C14.6708 26.0517 17.9524 29.3333 22.0041 29.3333C26.0558 29.3333 29.3374 26.0517 29.3374 22C29.3374 17.9483 26.0558 14.6667 22.0041 14.6667ZM22.0041 25.6667C19.9874 25.6667 18.3374 24.0167 18.3374 22C18.3374 19.9833 19.9874 18.3333 22.0041 18.3333C24.0208 18.3333 25.6708 19.9833 25.6708 22C25.6708 24.0167 24.0208 25.6667 22.0041 25.6667Z"
|
|
15
|
+
id="Settings"
|
|
16
|
+
fill={theme && theme.color ? theme.color : 'var(--color-icon)'}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Settings;
|
package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M35.09 23.7233C35.1634 23.1733 35.2 22.605 35.2 22C35.2 21.4133 35.1634 20.8267 35.0717 20.2767L38.7934 17.38C39.1234 17.1233 39.215 16.6283 39.0134 16.2617L35.4934 10.175C35.2734 9.77166 34.815 9.64333 34.4117 9.77166L30.03 11.5317C29.1134 10.835 28.1417 10.2483 27.06 9.80833L26.4 5.15166C26.3267 4.71166 25.96 4.39999 25.52 4.39999H18.48C18.04 4.39999 17.6917 4.71166 17.6184 5.15166L16.9584 9.80833C15.8767 10.2483 14.8867 10.8533 13.9884 11.5317L9.6067 9.77166C9.20337 9.62499 8.74504 9.77166 8.52504 10.175L5.02337 16.2617C4.80337 16.6467 4.8767 17.1233 5.24337 17.38L8.96504 20.2767C8.87337 20.8267 8.80004 21.4317 8.80004 22C8.80004 22.5683 8.8367 23.1733 8.92837 23.7233L5.2067 26.62C4.8767 26.8767 4.78504 27.3717 4.98671 27.7383L8.5067 33.825C8.7267 34.2283 9.18504 34.3567 9.58837 34.2283L13.97 32.4683C14.8867 33.165 15.8584 33.7517 16.94 34.1917L17.6 38.8483C17.6917 39.2883 18.04 39.6 18.48 39.6H25.52C25.96 39.6 26.3267 39.2883 26.3817 38.8483L27.0417 34.1917C28.1234 33.7517 29.1134 33.165 30.0117 32.4683L34.3934 34.2283C34.7967 34.375 35.255 34.2283 35.475 33.825L38.995 27.7383C39.215 27.335 39.1234 26.8767 38.775 26.62L35.09 23.7233ZM22 28.6C18.37 28.6 15.4 25.63 15.4 22C15.4 18.37 18.37 15.4 22 15.4C25.63 15.4 28.6 18.37 28.6 22C28.6 25.63 25.63 28.6 22 28.6Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|