quickblox-react-ui-kit 0.5.1 → 0.5.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/.claude/settings.local.json +15 -0
- package/dist/App.d.ts +1 -0
- package/dist/CommonTypes/BaseViewModel.d.ts +2 -1
- package/dist/CommonTypes/CommonTypes.d.ts +1 -0
- package/dist/CommonTypes/FunctionResult.d.ts +1 -0
- package/dist/Data/Creator.d.ts +1 -0
- package/dist/Data/DefaultConfigurations.d.ts +1 -0
- package/dist/Data/Stubs.d.ts +1 -0
- package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +1 -0
- package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +1 -0
- package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +1 -0
- package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +1 -0
- package/dist/Data/dto/file/LocalFileDTO.d.ts +1 -0
- package/dist/Data/dto/file/RemoteFileDTO.d.ts +1 -0
- package/dist/Data/dto/message/LocalMessageDTO.d.ts +1 -0
- package/dist/Data/dto/message/LocalMessagesDTO.d.ts +1 -0
- package/dist/Data/dto/message/RemoteMessageDTO.d.ts +1 -0
- package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +1 -0
- package/dist/Data/dto/user/LocalUserDTO.d.ts +1 -0
- package/dist/Data/dto/user/LocalUsersDTO.d.ts +1 -0
- package/dist/Data/dto/user/RemoteUserDTO.d.ts +1 -0
- package/dist/Data/dto/user/RemoteUsersDTO.d.ts +1 -0
- package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/FileLocalDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/IMapper.d.ts +1 -0
- package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/UserLocalDTOMapper.d.ts +1 -0
- package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +1 -0
- package/dist/Data/repository/ConnectionRepository.d.ts +1 -0
- package/dist/Data/repository/ConnectionRepository.d.ts.map +1 -1
- package/dist/Data/repository/DialogsRepository.d.ts +1 -0
- package/dist/Data/repository/EventMessagesRepository.d.ts +1 -0
- package/dist/Data/repository/FileRepository.d.ts +1 -0
- package/dist/Data/repository/MessagesRepository.d.ts +1 -0
- package/dist/Data/repository/UsersRepository.d.ts +1 -0
- package/dist/Data/source/AISource.d.ts +1 -0
- package/dist/Data/source/exception/LocalDataSourceException.d.ts +1 -0
- package/dist/Data/source/exception/MapperDTOException.d.ts +1 -0
- package/dist/Data/source/exception/RemoteDataSourceException.d.ts +1 -0
- package/dist/Data/source/exception/RepositoryException.d.ts +1 -0
- package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +1 -0
- package/dist/Data/source/local/ILocalDataSource.d.ts +1 -0
- package/dist/Data/source/local/ILocalFileDataSource.d.ts +1 -0
- package/dist/Data/source/local/LocalDataSource.d.ts +1 -0
- package/dist/Data/source/local/LocalFileDataSource.d.ts +1 -0
- package/dist/Data/source/remote/IRemoteDataSource.d.ts +1 -0
- package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +1 -0
- package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +1 -0
- package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +1 -0
- package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +2 -0
- package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts.map +1 -1
- package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +1 -0
- package/dist/Data/source/remote/RemoteDataSource.d.ts +1 -0
- package/dist/Domain/entity/Chat.d.ts +1 -0
- package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +1 -0
- package/dist/Domain/entity/CustomDataEntity.d.ts +1 -0
- package/dist/Domain/entity/DialogEntity.d.ts +1 -0
- package/dist/Domain/entity/DialogEventInfo.d.ts +1 -0
- package/dist/Domain/entity/DialogTypes.d.ts +1 -0
- package/dist/Domain/entity/EventMessageType.d.ts +1 -0
- package/dist/Domain/entity/FileEntity.d.ts +1 -0
- package/dist/Domain/entity/FileTypes.d.ts +1 -0
- package/dist/Domain/entity/GroupDialogEntity.d.ts +1 -0
- package/dist/Domain/entity/LastMessageEntity.d.ts +1 -0
- package/dist/Domain/entity/MessageEntity.d.ts +1 -0
- package/dist/Domain/entity/NotificationTypes.d.ts +1 -0
- package/dist/Domain/entity/PrivateDialogEntity.d.ts +1 -0
- package/dist/Domain/entity/PublicDialogEntity.d.ts +1 -0
- package/dist/Domain/entity/UserEntity.d.ts +1 -0
- package/dist/Domain/exception/domain/DomainExecption.d.ts +1 -0
- package/dist/Domain/repository/IDialogsRepository.d.ts +1 -0
- package/dist/Domain/repository/IFileRepository.d.ts +1 -0
- package/dist/Domain/repository/IMessagesRepository.d.ts +1 -0
- package/dist/Domain/repository/IUsersRepository.d.ts +1 -0
- package/dist/Domain/repository/Pagination.d.ts +1 -0
- package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +1 -0
- package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +1 -0
- package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +1 -0
- package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts.map +1 -1
- package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/UploadFileUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts.map +1 -1
- package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/base/BaseUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/base/IUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +1 -0
- package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/Dialog.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/Message.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +2 -1
- package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +1 -0
- package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +1 -1
- package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +1 -0
- package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +1 -0
- package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +1 -0
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +1 -1
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +1 -0
- package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +1 -0
- package/dist/Presentation/Views/DialogList/DialogList.d.ts +1 -1
- package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +1 -0
- package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +1 -0
- package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +1 -0
- package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +1 -0
- package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +1 -0
- package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +1 -0
- package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +1 -0
- package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +1 -0
- package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +1 -0
- package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +2 -1
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +1 -0
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +1 -0
- package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +1 -0
- package/dist/Presentation/components/Navbar.d.ts +1 -0
- package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +1 -0
- package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +1 -1
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +1 -0
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +1 -0
- package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +1 -0
- package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +1 -1
- package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +1 -1
- package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +1 -1
- package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/index.d.ts +1 -0
- package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +1 -1
- package/dist/Presentation/icons/actions/index.d.ts +1 -0
- package/dist/Presentation/icons/contents/index.d.ts +1 -0
- package/dist/Presentation/icons/index.d.ts +1 -0
- package/dist/Presentation/icons/media/index.d.ts +1 -0
- package/dist/Presentation/icons/moderation/index.d.ts +1 -0
- package/dist/Presentation/icons/navigation/index.d.ts +1 -0
- package/dist/Presentation/icons/status/index.d.ts +1 -0
- package/dist/Presentation/icons/toggle/index.d.ts +1 -0
- package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +1 -1
- package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -0
- package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +1 -1
- package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +1 -1
- package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +1 -0
- package/dist/Presentation/providers/ProviderProps.d.ts +1 -1
- package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +1 -1
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +1 -0
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +1 -0
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +1 -0
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +1 -0
- package/dist/Presentation/themes/DarkTheme.d.ts +1 -0
- package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +1 -0
- package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +1 -0
- package/dist/Presentation/themes/LightTheme.d.ts +1 -0
- package/dist/Presentation/themes/ThemeScheme.d.ts +1 -0
- package/dist/Presentation/themes/UiKitTheme.d.ts +1 -0
- package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +1 -1
- package/dist/Presentation/ui-components/Badge/Badge.d.ts +1 -0
- package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/Button/Button.d.ts +1 -1
- package/dist/Presentation/ui-components/Button/Button.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +1 -0
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +1 -0
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +1 -1
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +1 -1
- package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +1 -1
- package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +1 -1
- package/dist/Presentation/ui-components/Header/Header.d.ts +1 -1
- package/dist/Presentation/ui-components/Loader/Loader.d.ts +1 -0
- package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/Message.d.ts +1 -1
- package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +1 -0
- package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +1 -0
- package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +1 -1
- package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +1 -1
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +1 -0
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -0
- package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +1 -0
- package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts.map +1 -1
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +1 -0
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +1 -1
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +1 -0
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +1 -1
- package/dist/Presentation/ui-components/TextField/TextField.d.ts +1 -1
- package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +1 -0
- package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +1 -1
- package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +1 -0
- package/dist/Presentation/ui-components/index.d.ts +1 -0
- package/dist/QBconfig.d.ts +1 -0
- package/dist/hooks/useModal.d.ts +1 -0
- package/dist/hooks/useQuickBloxUIKit.d.ts +1 -1
- package/dist/index-ui.d.ts +1 -0
- package/dist/index-ui.js +43359 -58620
- package/dist/index.d.ts +1 -0
- package/dist/qb-api-calls/index.d.ts +1 -0
- package/dist/setupTests.d.ts +1 -0
- package/dist/utils/DateTimeFormatter.d.ts +1 -0
- package/dist/utils/formatFileSize.d.ts +1 -0
- package/dist/utils/parse.d.ts +1 -0
- package/dist/utils/utils.d.ts +1 -0
- package/package.json +14 -8
- package/src/Data/repository/ConnectionRepository.ts +3 -2
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +39 -22
- package/src/Domain/use_cases/SyncDialogsUseCase.ts +3 -3
- package/src/Domain/use_cases/UserTypingMessageUseCase.ts +4 -2
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +24 -8
- package/storybook-static/161.77e7dbc5.iframe.bundle.js +2 -0
- package/storybook-static/217.cb8da73c.iframe.bundle.js +408 -0
- package/storybook-static/217.cb8da73c.iframe.bundle.js.map +1 -0
- package/storybook-static/263.f039edee.iframe.bundle.js +2 -0
- package/storybook-static/294.7ed84cb5.iframe.bundle.js +1 -0
- package/storybook-static/338.ed5286bb.iframe.bundle.js +2 -0
- package/storybook-static/363.fe646024.iframe.bundle.js +2 -0
- package/storybook-static/{363.f6fcc1b9.iframe.bundle.js.LICENSE.txt → 363.fe646024.iframe.bundle.js.LICENSE.txt} +0 -7
- package/storybook-static/364.fb3fc9b4.iframe.bundle.js +1 -0
- package/storybook-static/488.a47f0de8.iframe.bundle.js +1 -0
- package/storybook-static/559.fdf11e08.iframe.bundle.js +2 -0
- package/storybook-static/618.ab5566c8.iframe.bundle.js +1 -0
- package/storybook-static/844.5804474b.iframe.bundle.js +95 -0
- package/storybook-static/844.5804474b.iframe.bundle.js.map +1 -0
- package/storybook-static/936.ba75ae44.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.6977856e.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.d77c6500.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Button-Button-stories.05f2f5b7.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.118df514.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e9d3dc6b.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.7d74bffa.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.d92e6904.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Header-Header-stories.b9a00187.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.f484b131.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Message-Message-stories.66867b7e.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.d72f098b.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.7d9e0991.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.1e6bd1cd.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.44c68c03.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.3e87329b.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.ec3e7d5f.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.2721621c.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.33b23eab.iframe.bundle.js +2 -0
- package/storybook-static/docs-Introduction-mdx.416f8bf9.iframe.bundle.js +1 -0
- package/storybook-static/docs-Styling-mdx.c119b271.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +5 -3
- package/storybook-static/main.bfaba8e3.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.b1ec3380.iframe.bundle.js +1 -0
- package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +27 -27
- package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +74 -71
- package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +73 -70
- package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/interactions-11/manager-bundle.js +6 -6
- package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +18 -18
- package/storybook-static/sb-manager/globals-runtime.js +10691 -11043
- package/storybook-static/sb-preview/runtime.js +238 -238
- package/dist/Presentation/components/Button.d.ts +0 -4
- package/dist/Presentation/components/TextInput.d.ts +0 -1
- package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +0 -8
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +0 -9
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +0 -6
- package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +0 -28
- package/dist/Presentation/ui-components/Header/Header.stories.d.ts +0 -9
- package/dist/Presentation/ui-components/Message/Message.stories.d.ts +0 -8
- package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +0 -8
- package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +0 -7
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +0 -8
- package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +0 -6
- package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +0 -86
- package/storybook-static/161.53da4e03.iframe.bundle.js +0 -2
- package/storybook-static/167.88fc69a9.iframe.bundle.js +0 -1
- package/storybook-static/217.f067a49f.iframe.bundle.js +0 -405
- package/storybook-static/217.f067a49f.iframe.bundle.js.map +0 -1
- package/storybook-static/294.b81cdbca.iframe.bundle.js +0 -1
- package/storybook-static/363.f6fcc1b9.iframe.bundle.js +0 -2
- package/storybook-static/364.988cd801.iframe.bundle.js +0 -1
- package/storybook-static/488.3cd3942e.iframe.bundle.js +0 -1
- package/storybook-static/559.9e64a6f5.iframe.bundle.js +0 -2
- package/storybook-static/735.6ee62079.iframe.bundle.js +0 -2
- package/storybook-static/844.be4346f2.iframe.bundle.js +0 -95
- package/storybook-static/844.be4346f2.iframe.bundle.js.map +0 -1
- package/storybook-static/936.8546c1d8.iframe.bundle.js +0 -1
- package/storybook-static/961.d47fc2bc.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.cd797979.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.46997cb0.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Header-Header-stories.a4edfcc6.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.2af0de55.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.b927d1e1.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.4f00432b.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js +0 -2
- package/storybook-static/docs-Introduction-mdx.5addfa61.iframe.bundle.js +0 -1
- package/storybook-static/docs-Styling-mdx.9f4235f1.iframe.bundle.js +0 -1
- package/storybook-static/main.59f682e8.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.26de4dfd.iframe.bundle.js +0 -1
- /package/storybook-static/{161.53da4e03.iframe.bundle.js.LICENSE.txt → 161.77e7dbc5.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{217.f067a49f.iframe.bundle.js.LICENSE.txt → 217.cb8da73c.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{961.d47fc2bc.iframe.bundle.js.LICENSE.txt → 263.f039edee.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{735.6ee62079.iframe.bundle.js.LICENSE.txt → 338.ed5286bb.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{559.9e64a6f5.iframe.bundle.js.LICENSE.txt → 559.fdf11e08.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{844.be4346f2.iframe.bundle.js.LICENSE.txt → 844.5804474b.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Avatar-avatar-stories.6977856e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Badge-Badge-stories.d77c6500.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Button-Button-stories.05f2f5b7.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e9d3dc6b.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-DialogWindow-DialogWindow-stories.46997cb0.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogWindow-DialogWindow-stories.7d74bffa.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Dropdown-Dropdown-stories.d92e6904.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Header-Header-stories.a4edfcc6.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Header-Header-stories.b9a00187.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Loader-Loader-stories.f484b131.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Message-Message-stories.66867b7e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Placeholder-Placeholder-stories.1e6bd1cd.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.44c68c03.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-SettingsItem-SettingsItem-stories.3e87329b.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-TextField-TextField-stories.ec3e7d5f.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-UserListItem-UserListItem-stories.33b23eab.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -9,3 +9,4 @@ export declare class SubscribeToDialogsUpdatesUseCase extends BaseUseCase<Array<
|
|
|
9
9
|
constructor(dialogRepository: DialogsRepository);
|
|
10
10
|
execute(callBack: CallBackFunction<Array<DialogEntity>>): Promise<Array<DialogEntity>>;
|
|
11
11
|
}
|
|
12
|
+
//# sourceMappingURL=SubscribeToDialogsUpdatesUseCase.d.ts.map
|
|
@@ -9,3 +9,4 @@ export declare class SubscribeToDialogsUpdatesUseCaseWithMock extends BaseUseCas
|
|
|
9
9
|
constructor(dialogRepository: DialogsRepository);
|
|
10
10
|
execute(callBack: CallBackFunction<Array<DialogEntity>>): Promise<Array<DialogEntity>>;
|
|
11
11
|
}
|
|
12
|
+
//# sourceMappingURL=SubscribeToDialogsUpdatesUseCaseWithMock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SyncDialogsUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SyncDialogsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,oBAAoB,MAAM,4CAA4C,CAAC;AAE9E,OAAO,uBAAuB,MAAM,+CAA+C,CAAC;AAGpF,qBAAa,kBAAmB,SAAQ,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC;IACnE,OAAO,CAAC,oBAAoB,CAAuB;IAEnD,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,uBAAuB,CAA0B;IAEzD,OAAO,CAAC,eAAe,CAAwC;IAE/D,OAAO,CAAC,QAAQ,
|
|
1
|
+
{"version":3,"file":"SyncDialogsUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SyncDialogsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,oBAAoB,MAAM,4CAA4C,CAAC;AAE9E,OAAO,uBAAuB,MAAM,+CAA+C,CAAC;AAGpF,qBAAa,kBAAmB,SAAQ,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC;IACnE,OAAO,CAAC,oBAAoB,CAAuB;IAEnD,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,uBAAuB,CAA0B;IAEzD,OAAO,CAAC,eAAe,CAAwC;IAE/D,OAAO,CAAC,QAAQ,CAA4C;IAE5D,OAAO,CAAC,QAAQ,CAA4C;IAE5D,OAAO,CAAC,OAAO,CAA+B;gBAG5C,gBAAgB,EAAE,iBAAiB,EACnC,oBAAoB,EAAE,oBAAoB,EAC1C,uBAAuB,EAAE,uBAAuB;IAelD,OAAO,CAAC,QAAQ,EAAE,gBAAgB,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;YAehD,WAAW;YAwEX,kBAAkB;YAclB,8BAA8B;YAI9B,uBAAuB;IAerC,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,kBAAkB;IAIjB,OAAO;CAMjB"}
|
|
@@ -10,3 +10,4 @@ export declare class UpdateCurrentDialogInDataSourceUseCase implements IUseCase<
|
|
|
10
10
|
constructor(dialogRepository: DialogsRepository, updateDialog: GroupDialogEntity, qbConfig: QBUIKitConfig);
|
|
11
11
|
execute(): Promise<DialogEntity>;
|
|
12
12
|
}
|
|
13
|
+
//# sourceMappingURL=UpdateCurrentDialogInDataSourceUseCase.d.ts.map
|
|
@@ -11,3 +11,4 @@ export declare class UpdateDialogUseCase implements IUseCase<void, DialogEntity>
|
|
|
11
11
|
constructor(eventMessagesRepository: EventMessagesRepository, dialogRepository: DialogsRepository, updateDialog: GroupDialogEntity, textInformationMessage: string);
|
|
12
12
|
execute(): Promise<DialogEntity>;
|
|
13
13
|
}
|
|
14
|
+
//# sourceMappingURL=UpdateDialogUseCase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserTypingMessageUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UserTypingMessageUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,wBAAyB,YAAW,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC;IACnE,OAAO,CAAC,kBAAkB,CAAqB;IAE/C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAElC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAe;IAEtC,OAAO,CAAC,aAAa,CAAK;IAE1B,OAAO,CAAC,YAAY,CAA+
|
|
1
|
+
{"version":3,"file":"UserTypingMessageUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UserTypingMessageUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,wBAAyB,YAAW,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC;IACnE,OAAO,CAAC,kBAAkB,CAAqB;IAE/C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAElC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAe;IAEtC,OAAO,CAAC,aAAa,CAAK;IAE1B,OAAO,CAAC,YAAY,CAA+C;IAEnE,OAAO,CAAC,WAAW,CAAK;gBAGtB,kBAAkB,EAAE,kBAAkB,EACtC,MAAM,EAAE,YAAY,EACpB,QAAQ,EAAE,MAAM;IAOZ,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;CAsB/B"}
|
|
@@ -11,3 +11,4 @@ export declare class AIAnswerAssistUseCase implements IUseCase<void, string> {
|
|
|
11
11
|
constructor(textToSend: string, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
12
12
|
execute(): Promise<string>;
|
|
13
13
|
}
|
|
14
|
+
//# sourceMappingURL=AIAnswerAssistUseCase.d.ts.map
|
|
@@ -11,3 +11,4 @@ export declare class AIAnswerAssistWithProxyUseCase implements IUseCase<void, st
|
|
|
11
11
|
constructor(textToSend: string, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
12
12
|
execute(): Promise<string>;
|
|
13
13
|
}
|
|
14
|
+
//# sourceMappingURL=AIAnswerAssistWithProxyUseCase.d.ts.map
|
|
@@ -9,3 +9,4 @@ export declare class AIAnswerAssistWithSDKUseCase implements IUseCase<void, stri
|
|
|
9
9
|
constructor(textToSend: string, dialogMessages: IChatMessage[], dataSource: IRemoteDataSource, smartChatAssistantId: string);
|
|
10
10
|
execute(): Promise<string>;
|
|
11
11
|
}
|
|
12
|
+
//# sourceMappingURL=AIAnswerAssistWithSDKUseCase.d.ts.map
|
|
@@ -13,3 +13,4 @@ export declare class AIRephraseUseCase implements IUseCase<void, string> {
|
|
|
13
13
|
constructor(textToSend: string, tone: Tone, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
14
14
|
execute(): Promise<string>;
|
|
15
15
|
}
|
|
16
|
+
//# sourceMappingURL=AIRephraseUseCase.d.ts.map
|
|
@@ -13,3 +13,4 @@ export declare class AIRephraseWithProxyUseCase implements IUseCase<void, string
|
|
|
13
13
|
constructor(textToSend: string, tone: Tone, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
14
14
|
execute(): Promise<string>;
|
|
15
15
|
}
|
|
16
|
+
//# sourceMappingURL=AIRephraseWithProxyUseCase.d.ts.map
|
|
@@ -12,3 +12,4 @@ export declare class AITranslateUseCase implements IUseCase<void, string> {
|
|
|
12
12
|
constructor(textToSend: string, language: string, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
13
13
|
execute(): Promise<string>;
|
|
14
14
|
}
|
|
15
|
+
//# sourceMappingURL=AITranslateUseCase.d.ts.map
|
|
@@ -12,3 +12,4 @@ export declare class AITranslateWithProxyUseCase implements IUseCase<void, strin
|
|
|
12
12
|
constructor(textToSend: string, language: string, dialogMessages: IChatMessage[], servername: string, api: string, port: string, sessionToken: string, openAIModel?: string);
|
|
13
13
|
execute(): Promise<string>;
|
|
14
14
|
}
|
|
15
|
+
//# sourceMappingURL=AITranslateWithProxyUseCase.d.ts.map
|
|
@@ -3,3 +3,4 @@ import { SubscriptionPerformer } from './Subscribable/SubscriptionPerformer';
|
|
|
3
3
|
export declare abstract class BaseUseCase<TArg, TResult> extends SubscriptionPerformer<TArg> implements IUseCase<TArg, TResult> {
|
|
4
4
|
abstract execute(args: CallBackFunction<TArg>): Promise<TResult>;
|
|
5
5
|
}
|
|
6
|
+
//# sourceMappingURL=BaseUseCase.d.ts.map
|
|
@@ -14,3 +14,4 @@ interface AIAssistProps {
|
|
|
14
14
|
}
|
|
15
15
|
export default function AIAssist({ loading, AIAssistWidget, maxTokens, onLoading, onError, messageToAssist, messageHistory, currentUserId, disableAction, }: AIAssistProps): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
export {};
|
|
17
|
+
//# sourceMappingURL=AIAssist.d.ts.map
|
|
@@ -18,3 +18,4 @@ interface AITranslateComponentProps {
|
|
|
18
18
|
}
|
|
19
19
|
export default function AITranslate({ AITranslateWidget, originalTextMessage, loading, defaultLanguage, languages, maxTokens, onLoading, onError, onTranslated, messageToTranslate, messageHistory, currentUserId, disableAction, }: AITranslateComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
export {};
|
|
21
|
+
//# sourceMappingURL=AITranslate.d.ts.map
|
|
@@ -20,3 +20,4 @@ type AIRephraseWidgetProps = {
|
|
|
20
20
|
};
|
|
21
21
|
declare const AIRephraseWidget: ({ messageText, waitAIWidget, setWaitAIWidget, setMessageErrorToast, AIRephrase, messagesToView, currentUserId, maxTokensForAIRephrase, rephraseTones, theme, setPrevValueText, disableActions, }: AIRephraseWidgetProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
export default AIRephraseWidget;
|
|
23
|
+
//# sourceMappingURL=AIRephraseWidget.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import './AIWidgetActions.scss';
|
|
3
3
|
export type MenuItem = {
|
|
4
4
|
title: string;
|
|
@@ -13,3 +13,4 @@ type ContextMenuProps = {
|
|
|
13
13
|
};
|
|
14
14
|
declare function AIWidgetActions({ items, widgetToRender, title, disabled, }: ContextMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
15
15
|
export default AIWidgetActions;
|
|
16
|
+
//# sourceMappingURL=AIWidgetActions.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
type MenuItem = {
|
|
3
3
|
title: string;
|
|
4
4
|
icon?: JSX.Element;
|
|
@@ -21,3 +21,4 @@ type SliderMenuProps = {
|
|
|
21
21
|
};
|
|
22
22
|
declare const SliderMenu: ({ items, width, arrowColor, activeArrowColor, borderColor, backgroundColor, itemBackgroundColor, itemWidth, itemHeight, itemBorder, fontSize, activeItemBorderColor, activeItemBoxShadow, }: SliderMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
export default SliderMenu;
|
|
24
|
+
//# sourceMappingURL=SliderMenu.d.ts.map
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { AIMessageWidget, MessageWidgetProps } from './AIMessageWidget';
|
|
2
2
|
export default function UseDefaultAIAssistAnswerWidget({ servername, api, port, apiKeyOrSessionToken, }: MessageWidgetProps): AIMessageWidget;
|
|
3
|
+
//# sourceMappingURL=UseDefaultAIAssistAnswerWidget.d.ts.map
|
package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { AIMessageWidget, MessageWidgetProps } from './AIMessageWidget';
|
|
2
2
|
export default function UseDefaultAIAssistAnswerWidgetWithProxy({ servername, api, port, apiKeyOrSessionToken, }: MessageWidgetProps): AIMessageWidget;
|
|
3
|
+
//# sourceMappingURL=UseDefaultAIAssistAnswerWidgetWithProxy.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { AIMessageWidget } from './AIMessageWidget';
|
|
2
2
|
import { RemoteDataSource } from '../../../../Data/source/remote/RemoteDataSource';
|
|
3
3
|
export default function UseDefaultAIAssistAnswerWidgetWithSDK(dataSource: RemoteDataSource, smartChatAssistantId: string): AIMessageWidget;
|
|
4
|
+
//# sourceMappingURL=UseDefaultAIAssistAnswerWidgetWithSDK.d.ts.map
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { AIMessageWidget, MessageWidgetProps } from './AIMessageWidget';
|
|
2
2
|
export default function UseDefaultAIRephraseMessageWidget({ servername, api, port, apiKeyOrSessionToken, }: MessageWidgetProps): AIMessageWidget;
|
|
3
|
+
//# sourceMappingURL=UseDefaultAIRephraseMessageWidget.d.ts.map
|
package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { AIMessageWidget, MessageWidgetProps } from './AIMessageWidget';
|
|
2
2
|
export default function UseDefaultAIRephraseMessageWidgetWithProxy({ servername, api, port, apiKeyOrSessionToken, }: MessageWidgetProps): AIMessageWidget;
|
|
3
|
+
//# sourceMappingURL=UseDefaultAIRephraseMessageWidgetWithProxy.d.ts.map
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { AIMessageWidget, MessageWidgetProps } from './AIMessageWidget';
|
|
2
2
|
export default function UseDefaultAITranslateWidgetWithProxy({ servername, api, port, apiKeyOrSessionToken, }: MessageWidgetProps): AIMessageWidget;
|
|
3
|
+
//# sourceMappingURL=UseDefaultAITranslateWidgetWithProxy.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { AIMessageWidget } from './AIMessageWidget';
|
|
2
2
|
import { RemoteDataSource } from '../../../../Data/source/remote/RemoteDataSource';
|
|
3
3
|
export default function UseDefaultAITranslateWidgetWithSDK(dataSource: RemoteDataSource, smartChatAssistantId: string): AIMessageWidget;
|
|
4
|
+
//# sourceMappingURL=UseDefaultAITranslateWidgetWithSDK.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import './ContextMenu.scss';
|
|
3
3
|
type MenuItem = {
|
|
4
4
|
title: string;
|
|
@@ -10,3 +10,4 @@ type ContextMenuProps = {
|
|
|
10
10
|
};
|
|
11
11
|
declare function ContextMenu({ items, widgetToRender }: ContextMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export default ContextMenu;
|
|
13
|
+
//# sourceMappingURL=ContextMenu.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './Dialog.scss';
|
|
4
3
|
import { DialogViewModel } from './DialogViewModel';
|
|
@@ -17,3 +16,4 @@ type DialogProps = {
|
|
|
17
16
|
};
|
|
18
17
|
declare const Dialog: ({ messagesViewModel, maxWidthToResize, warningErrorText, renderHeader, renderMessageList, renderMessageInput, theme, headerContent, rootStyles, messagesContainerStyles, }: DialogProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
export default Dialog;
|
|
19
|
+
//# sourceMappingURL=Dialog.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import './DialogHeader.scss';
|
|
3
2
|
import React from 'react';
|
|
4
3
|
import UiKitTheme from '../../../themes/UiKitTheme';
|
|
@@ -12,3 +11,4 @@ type DialogHeaderProps = {
|
|
|
12
11
|
};
|
|
13
12
|
declare const DialogHeader: ({ dialogName, renderAvatar, renderLeftActions, renderRightActions, countMembers, theme, }: DialogHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
13
|
export default DialogHeader;
|
|
14
|
+
//# sourceMappingURL=DialogHeader.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import './DropDownMenu.scss';
|
|
3
2
|
import React from 'react';
|
|
4
3
|
import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
|
|
@@ -24,3 +23,4 @@ type DropDownMenuProps = {
|
|
|
24
23
|
};
|
|
25
24
|
export declare const DropDownMenu: ({ items, }: DropDownMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
25
|
export {};
|
|
26
|
+
//# sourceMappingURL=DropDownMenu.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import './ItemDropDownMenu.scss';
|
|
3
2
|
import React from 'react';
|
|
4
3
|
import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
|
|
@@ -10,3 +9,4 @@ type ItemDropDownMenuProps = {
|
|
|
10
9
|
};
|
|
11
10
|
export declare const ItemDropDownMenu: ({ item, icon, touchAction, clickAction, }: ItemDropDownMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
11
|
export {};
|
|
12
|
+
//# sourceMappingURL=ItemDropDownMenu.d.ts.map
|
package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts
CHANGED
|
@@ -9,3 +9,4 @@ type DialogsWithSearchProps = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const DialogsWithSearch: ({ dialogs, currentDialog, selectedDialogs, onSelect, }: DialogsWithSearchProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default DialogsWithSearch;
|
|
12
|
+
//# sourceMappingURL=DialogsWithSearch.d.ts.map
|
|
@@ -11,3 +11,4 @@ type ForwardMessageFlowProps = {
|
|
|
11
11
|
};
|
|
12
12
|
declare const ForwardMessageFlow: ({ messages, dialogs, currentDialog, currentUserName, onSendData, disableActions, }: ForwardMessageFlowProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export default ForwardMessageFlow;
|
|
14
|
+
//# sourceMappingURL=ForwardMessageFlow.d.ts.map
|
|
@@ -6,3 +6,4 @@ type ForwardMessagePreviewProps = {
|
|
|
6
6
|
};
|
|
7
7
|
declare const ForwardMessagePreview: ({ messages, userNameSentMessage, }: ForwardMessagePreviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default ForwardMessagePreview;
|
|
9
|
+
//# sourceMappingURL=ForwardMessagePreview.d.ts.map
|
package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts
CHANGED
|
@@ -8,3 +8,4 @@ type InputForForwardingProps = {
|
|
|
8
8
|
};
|
|
9
9
|
declare const InputForForwarding: ({ inputText, onChange, onSend, disabled, }: InputForForwardingProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export default InputForForwarding;
|
|
11
|
+
//# sourceMappingURL=InputForForwarding.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import UiKitTheme from '../../../themes/UiKitTheme';
|
|
4
3
|
import { DialogViewModel } from '../DialogViewModel';
|
|
@@ -20,3 +19,4 @@ type MessageInputProps = {
|
|
|
20
19
|
};
|
|
21
20
|
declare const InputMessage: ({ messageText, onChangeText, sendText, renderSendIcon, renderAttachment, isRecording, renderVoiceRecorder, renderVoiceRecordProgress, renderAIWidget, waitAIWidget, messagesViewModel, maxWidthToResizing, theme, }: MessageInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
21
|
export default InputMessage;
|
|
22
|
+
//# sourceMappingURL=InputMessage.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './IncomingForwardedMessage.scss';
|
|
4
3
|
import { AvatarContentIncomingUserProps } from '../IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser';
|
|
@@ -26,3 +25,4 @@ declare function IncomingForwardedMessage(props: {
|
|
|
26
25
|
enableReplying: boolean;
|
|
27
26
|
}): import("react/jsx-runtime").JSX.Element;
|
|
28
27
|
export default IncomingForwardedMessage;
|
|
28
|
+
//# sourceMappingURL=IncomingForwardedMessage.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './IncomingMessage.scss';
|
|
4
3
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
@@ -29,3 +28,4 @@ export declare function IncomingMessage(props: {
|
|
|
29
28
|
enableForwarding: boolean;
|
|
30
29
|
enableReplying: boolean;
|
|
31
30
|
}): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
//# sourceMappingURL=IncomingMessage.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import { FC } from 'react';
|
|
3
2
|
import './MessageContentComponent.scss';
|
|
4
3
|
import { MessageEntity } from '../../../../../../Domain/entity/MessageEntity';
|
|
@@ -11,3 +10,4 @@ type MessageContentComponentProps = {
|
|
|
11
10
|
};
|
|
12
11
|
declare const MessageContentComponent: FC<MessageContentComponentProps>;
|
|
13
12
|
export default MessageContentComponent;
|
|
13
|
+
//# sourceMappingURL=MessageContentComponent.d.ts.map
|
package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './IncomingRepliedMessage.scss';
|
|
4
3
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
@@ -26,3 +25,4 @@ declare function IncomingRepliedMessage(props: {
|
|
|
26
25
|
enableReplying: boolean;
|
|
27
26
|
}): import("react/jsx-runtime").JSX.Element;
|
|
28
27
|
export default IncomingRepliedMessage;
|
|
28
|
+
//# sourceMappingURL=IncomingRepliedMessage.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { FunctionTypeBooleanToVoid, FunctionTypeMessageEntityToVoid, FunctionTypeStringToVoid } from '../../../../CommonTypes/BaseViewModel';
|
|
3
3
|
import { MessageEntity } from '../../../../Domain/entity/MessageEntity';
|
|
4
4
|
import UiKitTheme from '../../../themes/UiKitTheme';
|
|
@@ -22,3 +22,4 @@ type MessageProps = {
|
|
|
22
22
|
};
|
|
23
23
|
declare const Message: ({ message, userId, setWaitAIWidget, setShowErrorToast, setMessageErrorToast, messagesToView, AITranslateWidget, AIAssistWidget, onReply, onForward, defaultGetSenderName, theme, enableForwarding, enableReplying, }: MessageProps) => JSX.Element;
|
|
24
24
|
export default Message;
|
|
25
|
+
//# sourceMappingURL=Message.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import ChatMessageAttachmentEntity from '../../../../../Domain/entity/ChatMessageAttachmentEntity';
|
|
3
3
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
4
4
|
type AttachmentProps = {
|
|
@@ -9,3 +9,4 @@ type AttachmentContentComponentProps = AttachmentProps & {
|
|
|
9
9
|
};
|
|
10
10
|
declare function MessageAttachment({ attachment, theme, }: AttachmentContentComponentProps): JSX.Element;
|
|
11
11
|
export default MessageAttachment;
|
|
12
|
+
//# sourceMappingURL=MessageAttachment.d.ts.map
|
package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './OutgoinForwardedMessage.scss';
|
|
4
3
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
@@ -17,3 +16,4 @@ declare function OutgoingForwardedMessage(props: {
|
|
|
17
16
|
enableReplying: boolean;
|
|
18
17
|
}): import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
export default OutgoingForwardedMessage;
|
|
19
|
+
//# sourceMappingURL=OutgoinForwardedMessage.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import './OutgoingMessage.scss';
|
|
3
3
|
import { MessageEntity } from '../../../../../Domain/entity/MessageEntity';
|
|
4
4
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
@@ -13,3 +13,4 @@ export declare function OutgoingMessage(props: {
|
|
|
13
13
|
enableForwarding: boolean;
|
|
14
14
|
enableReplying: boolean;
|
|
15
15
|
}): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
//# sourceMappingURL=OutgoingMessage.d.ts.map
|
package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './OutgoingRepliedMessage.scss';
|
|
4
3
|
import UiKitTheme from '../../../../themes/UiKitTheme';
|
|
@@ -15,3 +14,4 @@ declare function OutgoingRepliedMessage(props: {
|
|
|
15
14
|
enableReplying: boolean;
|
|
16
15
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
16
|
export default OutgoingRepliedMessage;
|
|
17
|
+
//# sourceMappingURL=OutgoingRepliedMessage.d.ts.map
|
|
@@ -10,3 +10,4 @@ export type MessageContextMenuProps = {
|
|
|
10
10
|
disableActions?: boolean;
|
|
11
11
|
};
|
|
12
12
|
export default function MessageContextMenu({ message, enableReplying, enableForwarding, onReply, onForward, disableActions, }: MessageContextMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
//# sourceMappingURL=MessageContextMenu.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import { ReactElement, RefObject } from 'react';
|
|
3
2
|
import { MessageEntity } from '../../../../Domain/entity/MessageEntity';
|
|
4
3
|
import { FunctionTypeMessageEntityToVoid } from '../../../../CommonTypes/BaseViewModel';
|
|
@@ -23,3 +22,4 @@ export type MessageItemProps = {
|
|
|
23
22
|
disableAction?: boolean;
|
|
24
23
|
};
|
|
25
24
|
export default function MessageItem({ message, avatar, currentUserId, enableForwarding, enableReplying, onReply, onForward, listRef, messagesToView, AITranslateWidget, AIAssistWidget, maxTokens, defaultTranslationLanguage, languagesForAITranslate, onError, disableAction, }: MessageItemProps): import("react/jsx-runtime").JSX.Element | null;
|
|
25
|
+
//# sourceMappingURL=MessageItem.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
|
|
4
3
|
type VoiceMessageProps = {
|
|
@@ -7,3 +6,4 @@ type VoiceMessageProps = {
|
|
|
7
6
|
};
|
|
8
7
|
declare const VoiceMessage: ({ icon, onClick, }: VoiceMessageProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export default VoiceMessage;
|
|
9
|
+
//# sourceMappingURL=VoiceMessage.d.ts.map
|
|
@@ -2,3 +2,4 @@ import { DialogType } from '../../../Domain/entity/DialogTypes';
|
|
|
2
2
|
import { DialogEntity } from '../../../Domain/entity/DialogEntity';
|
|
3
3
|
import { DialogViewModel } from './DialogViewModel';
|
|
4
4
|
export default function useDialogViewModel(dialogType: DialogType, dialogEntity: DialogEntity): DialogViewModel;
|
|
5
|
+
//# sourceMappingURL=useDialogViewModel.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import './DialogInfo.scss';
|
|
4
3
|
import { DialogEntity } from '../../../Domain/entity/DialogEntity';
|
|
@@ -20,3 +19,4 @@ type HeaderDialogsProps = {
|
|
|
20
19
|
};
|
|
21
20
|
declare const DialogInfo: ({ dialog, dialogViewModel, onCloseDialogInformationHandler, onShowAllMemberClick, users, theme, subHeaderContent, upHeaderContent, rootStyles, disableAction, }: HeaderDialogsProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
21
|
export default DialogInfo;
|
|
22
|
+
//# sourceMappingURL=DialogInfo.d.ts.map
|