quickblox-react-ui-kit 0.4.6-beta.1 → 0.4.6-beta.3
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 -4
- package/.prettierrc +10 -10
- package/.storybook/main.ts +26 -26
- package/.storybook/preview.ts +16 -16
- package/LICENSE.md +18 -18
- package/dist/App.d.ts +3 -3
- package/dist/CommonTypes/BaseViewModel.d.ts +58 -58
- package/dist/CommonTypes/CommonTypes.d.ts +189 -189
- package/dist/CommonTypes/FunctionResult.d.ts +4 -4
- package/dist/Data/Creator.d.ts +30 -30
- package/dist/Data/DefaultConfigurations.d.ts +7 -7
- package/dist/Data/Stubs.d.ts +31 -31
- package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +16 -16
- package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +9 -9
- package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +18 -18
- package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +9 -9
- package/dist/Data/dto/file/LocalFileDTO.d.ts +10 -10
- package/dist/Data/dto/file/RemoteFileDTO.d.ts +10 -10
- package/dist/Data/dto/message/LocalMessageDTO.d.ts +20 -20
- package/dist/Data/dto/message/LocalMessagesDTO.d.ts +9 -9
- package/dist/Data/dto/message/RemoteMessageDTO.d.ts +23 -23
- package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +9 -9
- package/dist/Data/dto/user/LocalUserDTO.d.ts +14 -14
- package/dist/Data/dto/user/LocalUsersDTO.d.ts +9 -9
- package/dist/Data/dto/user/RemoteUserDTO.d.ts +14 -14
- package/dist/Data/dto/user/RemoteUsersDTO.d.ts +9 -9
- package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +17 -17
- package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +18 -18
- package/dist/Data/mapper/FileLocalDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/IMapper.d.ts +4 -4
- package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +10 -10
- package/dist/Data/mapper/UserLocalDTOMapper.d.ts +9 -9
- package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +9 -9
- package/dist/Data/repository/ConnectionRepository.d.ts +17 -17
- package/dist/Data/repository/DialogsRepository.d.ts +31 -31
- package/dist/Data/repository/EventMessagesRepository.d.ts +36 -36
- package/dist/Data/repository/FileRepository.d.ts +14 -14
- package/dist/Data/repository/MessagesRepository.d.ts +24 -24
- package/dist/Data/repository/UsersRepository.d.ts +18 -18
- package/dist/Data/source/AISource.d.ts +13 -13
- package/dist/Data/source/exception/LocalDataSourceException.d.ts +10 -10
- package/dist/Data/source/exception/MapperDTOException.d.ts +9 -9
- package/dist/Data/source/exception/RemoteDataSourceException.d.ts +15 -15
- package/dist/Data/source/exception/RepositoryException.d.ts +15 -15
- package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +8 -8
- package/dist/Data/source/local/ILocalDataSource.d.ts +25 -25
- package/dist/Data/source/local/ILocalFileDataSource.d.ts +7 -7
- package/dist/Data/source/local/LocalDataSource.d.ts +28 -28
- package/dist/Data/source/local/LocalFileDataSource.d.ts +8 -8
- package/dist/Data/source/remote/IRemoteDataSource.d.ts +41 -41
- package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +10 -10
- package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +7 -7
- package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +4 -4
- package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +25 -25
- package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +7 -7
- package/dist/Data/source/remote/RemoteDataSource.d.ts +100 -94
- package/dist/Domain/entity/Chat.d.ts +4 -4
- package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +14 -14
- package/dist/Domain/entity/CustomDataEntity.d.ts +3 -3
- package/dist/Domain/entity/DialogEntity.d.ts +13 -13
- package/dist/Domain/entity/DialogEventInfo.d.ts +18 -18
- package/dist/Domain/entity/DialogTypes.d.ts +5 -5
- package/dist/Domain/entity/EventMessageType.d.ts +5 -5
- package/dist/Domain/entity/FileEntity.d.ts +10 -10
- package/dist/Domain/entity/FileTypes.d.ts +6 -6
- package/dist/Domain/entity/GroupDialogEntity.d.ts +19 -19
- package/dist/Domain/entity/LastMessageEntity.d.ts +5 -5
- package/dist/Domain/entity/MessageEntity.d.ts +24 -24
- package/dist/Domain/entity/NotificationTypes.d.ts +6 -6
- package/dist/Domain/entity/PrivateDialogEntity.d.ts +16 -16
- package/dist/Domain/entity/PublicDialogEntity.d.ts +18 -18
- package/dist/Domain/entity/UserEntity.d.ts +13 -13
- package/dist/Domain/exception/domain/DomainExecption.d.ts +4 -4
- package/dist/Domain/repository/IDialogsRepository.d.ts +21 -21
- package/dist/Domain/repository/IFileRepository.d.ts +6 -6
- package/dist/Domain/repository/IMessagesRepository.d.ts +15 -15
- package/dist/Domain/repository/IUsersRepository.d.ts +8 -8
- package/dist/Domain/repository/Pagination.d.ts +16 -16
- package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +8 -8
- package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +10 -10
- package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +11 -11
- package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +19 -19
- package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +10 -10
- package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +17 -17
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +11 -11
- package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +23 -23
- package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +12 -12
- package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/UploadFileUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +15 -15
- package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +15 -15
- package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +14 -14
- package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +14 -14
- package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +12 -12
- package/dist/Domain/use_cases/base/BaseUseCase.d.ts +5 -5
- package/dist/Domain/use_cases/base/IUseCase.d.ts +5 -5
- package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +5 -5
- package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +24 -24
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -16
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -20
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +25 -25
- package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +23 -23
- package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +15 -15
- package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +10 -10
- package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +23 -23
- package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +3 -3
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +3 -3
- package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/Dialog.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +13 -13
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +10 -10
- package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +25 -25
- package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +9 -9
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +21 -21
- package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +9 -9
- package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +27 -27
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +5 -5
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +30 -30
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +27 -27
- package/dist/Presentation/Views/Dialog/Message/Message.d.ts +24 -24
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +15 -15
- package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +16 -16
- package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +24 -23
- package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +4 -4
- package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +21 -21
- package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +10 -10
- package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +9 -9
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +3 -3
- package/dist/Presentation/Views/DialogList/DialogList.d.ts +14 -14
- package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +17 -17
- package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +4 -4
- package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +15 -15
- package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +20 -20
- package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +11 -11
- package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +13 -13
- package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +11 -11
- package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +9 -9
- package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +16 -16
- package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +13 -13
- package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +13 -13
- package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +6 -6
- package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +7 -7
- package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +2 -2
- package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +37 -37
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +11 -11
- package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +13 -13
- package/dist/Presentation/components/Button.d.ts +4 -4
- package/dist/Presentation/components/Navbar.d.ts +1 -1
- package/dist/Presentation/components/TextInput.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +9 -9
- package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +11 -11
- package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +21 -21
- package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +11 -11
- package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +12 -12
- package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +11 -11
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +6 -6
- package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +3 -3
- package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +5 -5
- package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +16 -16
- package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +3 -3
- package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +4 -4
- package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/index.d.ts +3 -3
- package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +28 -28
- package/dist/Presentation/icons/actions/index.d.ts +26 -26
- package/dist/Presentation/icons/contents/index.d.ts +13 -13
- package/dist/Presentation/icons/index.d.ts +7 -7
- package/dist/Presentation/icons/media/index.d.ts +12 -12
- package/dist/Presentation/icons/moderation/index.d.ts +5 -5
- package/dist/Presentation/icons/navigation/index.d.ts +12 -12
- package/dist/Presentation/icons/status/index.d.ts +7 -7
- package/dist/Presentation/icons/toggle/index.d.ts +23 -23
- package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +13 -13
- package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +6 -6
- package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +6 -6
- package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +3 -3
- package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +9 -9
- package/dist/Presentation/providers/ProviderProps.d.ts +4 -4
- package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +47 -47
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +3 -3
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +8 -8
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +3 -3
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +3 -3
- package/dist/Presentation/themes/DarkTheme.d.ts +21 -21
- package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +21 -21
- package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +21 -21
- package/dist/Presentation/themes/LightTheme.d.ts +21 -21
- package/dist/Presentation/themes/ThemeScheme.d.ts +43 -43
- package/dist/Presentation/themes/UiKitTheme.d.ts +20 -20
- package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -9
- package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Badge/Badge.d.ts +9 -9
- package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Button/Button.d.ts +12 -12
- package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -83
- package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +8 -8
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +7 -7
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -34
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -16
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +12 -12
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -6
- package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -12
- package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +28 -28
- package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +13 -13
- package/dist/Presentation/ui-components/Header/Header.d.ts +13 -13
- package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/Loader/Loader.d.ts +7 -7
- package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -44
- package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +10 -10
- package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Message.d.ts +18 -18
- package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +7 -7
- package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +21 -21
- package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +11 -11
- package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +11 -11
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +7 -7
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -44
- package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -10
- package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -7
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +8 -8
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -12
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -13
- package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -6
- package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -8
- package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +10 -10
- package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -86
- package/dist/Presentation/ui-components/index.d.ts +19 -19
- package/dist/QBconfig.d.ts +2 -2
- package/dist/hooks/useModal.d.ts +5 -5
- package/dist/hooks/useQuickBloxUIKit.d.ts +108 -108
- package/dist/index-ui.d.ts +62 -60
- package/dist/index-ui.js +20829 -20716
- package/dist/index-ui.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/qb-api-calls/index.d.ts +79 -79
- package/dist/setupTests.d.ts +1 -1
- package/dist/utils/DateTimeFormatter.d.ts +6 -6
- package/dist/utils/formatFileSize.d.ts +1 -1
- package/dist/utils/parse.d.ts +7 -7
- package/dist/utils/utils.d.ts +12 -12
- package/package.json +114 -114
- package/public/index.html +47 -47
- package/public/manifest.json +25 -25
- package/public/robots.txt +3 -3
- package/src/App.scss +3 -3
- package/src/Data/Creator.ts +4 -2
- package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +26 -7
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +7 -1
- package/src/Data/source/remote/RemoteDataSource.ts +24 -10
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +6 -3
- package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +39 -39
- package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -32
- package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +77 -77
- package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -47
- package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +25 -25
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -55
- package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -58
- package/src/Presentation/Views/Dialog/Dialog.scss +368 -368
- package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -29
- package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -114
- package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -53
- package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -84
- package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -50
- package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -26
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -74
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +50 -50
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -98
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -159
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -100
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +95 -95
- package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -92
- package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -97
- package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -250
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -22
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -241
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -4
- package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -250
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -31
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -76
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -14
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -18
- package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -10
- package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -160
- package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -122
- package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -155
- package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -19
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -21
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +12 -8
- package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -23
- package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -21
- package/src/Presentation/Views/DialogInfo/DialogInfo.scss +237 -237
- package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -42
- package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +85 -85
- package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -66
- package/src/Presentation/Views/DialogList/DialogList.scss +150 -150
- package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -68
- package/src/Presentation/Views/EditDialog/EditDialog.scss +175 -175
- package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -32
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -93
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +12 -12
- package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -202
- package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -90
- package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -38
- package/src/Presentation/Views/Navigation/More.svg +7 -7
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -211
- package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -9
- package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -11
- package/src/Presentation/components/Button.js +4 -4
- package/src/Presentation/components/TextInput.js +9 -9
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -103
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -61
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -74
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -21
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -3
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -5
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -6
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -4
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -4
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -3
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -16
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -45
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -45
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -46
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -45
- package/src/Presentation/components/containers/SectionList/styles.css +50 -50
- package/src/Presentation/icons/actions/add-contact.svg +3 -3
- package/src/Presentation/icons/actions/add.svg +3 -3
- package/src/Presentation/icons/actions/archive.svg +3 -3
- package/src/Presentation/icons/actions/copy.svg +3 -3
- package/src/Presentation/icons/actions/delete.svg +3 -3
- package/src/Presentation/icons/actions/download.svg +3 -3
- package/src/Presentation/icons/actions/edit.svg +3 -3
- package/src/Presentation/icons/actions/emoji.svg +3 -3
- package/src/Presentation/icons/actions/forward-filled.svg +3 -3
- package/src/Presentation/icons/actions/hungup.svg +3 -3
- package/src/Presentation/icons/actions/income-call.svg +3 -3
- package/src/Presentation/icons/actions/like.svg +3 -3
- package/src/Presentation/icons/actions/new-chat.svg +3 -3
- package/src/Presentation/icons/actions/outcome-call.svg +3 -3
- package/src/Presentation/icons/actions/phone-filled.svg +3 -3
- package/src/Presentation/icons/actions/phone.svg +3 -3
- package/src/Presentation/icons/actions/remove-2.svg +3 -3
- package/src/Presentation/icons/actions/remove.svg +3 -3
- package/src/Presentation/icons/actions/rephrase.svg +6 -6
- package/src/Presentation/icons/actions/reply-filled.svg +3 -3
- package/src/Presentation/icons/actions/robot.svg +5 -5
- package/src/Presentation/icons/actions/send.svg +3 -3
- package/src/Presentation/icons/actions/share.svg +3 -3
- package/src/Presentation/icons/actions/swap-camera.svg +3 -3
- package/src/Presentation/icons/actions/translate.svg +3 -3
- package/src/Presentation/icons/actions/unarchive.svg +3 -3
- package/src/Presentation/icons/actions/video.svg +3 -3
- package/src/Presentation/icons/actions/voice.svg +3 -3
- package/src/Presentation/icons/contents/broadcast.svg +7 -7
- package/src/Presentation/icons/contents/chat-filled.svg +3 -3
- package/src/Presentation/icons/contents/chat.svg +3 -3
- package/src/Presentation/icons/contents/conference.svg +3 -3
- package/src/Presentation/icons/contents/contact-filled.svg +3 -3
- package/src/Presentation/icons/contents/contact.svg +3 -3
- package/src/Presentation/icons/contents/group-chat.svg +3 -3
- package/src/Presentation/icons/contents/notifications.svg +3 -3
- package/src/Presentation/icons/contents/private-chat.svg +3 -3
- package/src/Presentation/icons/contents/public-channel.svg +7 -7
- package/src/Presentation/icons/contents/stream-filled.svg +3 -3
- package/src/Presentation/icons/contents/stream.svg +3 -3
- package/src/Presentation/icons/contents/user.svg +3 -3
- package/src/Presentation/icons/media/attachment.svg +3 -3
- package/src/Presentation/icons/media/audio-file.svg +3 -3
- package/src/Presentation/icons/media/broken-file.svg +3 -3
- package/src/Presentation/icons/media/camera.svg +3 -3
- package/src/Presentation/icons/media/file.svg +3 -3
- package/src/Presentation/icons/media/gif-file.svg +3 -3
- package/src/Presentation/icons/media/image-filled.svg +3 -3
- package/src/Presentation/icons/media/image.svg +3 -3
- package/src/Presentation/icons/media/link.svg +3 -3
- package/src/Presentation/icons/media/location.svg +4 -4
- package/src/Presentation/icons/media/text-document.svg +3 -3
- package/src/Presentation/icons/media/video-file.svg +3 -3
- package/src/Presentation/icons/moderation/admin.svg +3 -3
- package/src/Presentation/icons/moderation/banned.svg +3 -3
- package/src/Presentation/icons/moderation/freeze.svg +3 -3
- package/src/Presentation/icons/moderation/moderations.svg +3 -3
- package/src/Presentation/icons/moderation/muted.svg +3 -3
- package/src/Presentation/icons/navigation/arrow-left.svg +3 -3
- package/src/Presentation/icons/navigation/arrow-right.svg +3 -3
- package/src/Presentation/icons/navigation/back.svg +3 -3
- package/src/Presentation/icons/navigation/close.svg +3 -3
- package/src/Presentation/icons/navigation/down.svg +3 -3
- package/src/Presentation/icons/navigation/leave.svg +3 -3
- package/src/Presentation/icons/navigation/more.svg +3 -3
- package/src/Presentation/icons/navigation/next.svg +3 -3
- package/src/Presentation/icons/navigation/plus.svg +3 -3
- package/src/Presentation/icons/navigation/refresh.svg +3 -3
- package/src/Presentation/icons/navigation/search.svg +3 -3
- package/src/Presentation/icons/navigation/settings-filled.svg +3 -3
- package/src/Presentation/icons/navigation/settings.svg +3 -3
- package/src/Presentation/icons/status/error.svg +3 -3
- package/src/Presentation/icons/status/help.svg +3 -3
- package/src/Presentation/icons/status/information.svg +3 -3
- package/src/Presentation/icons/status/loader.svg +3 -3
- package/src/Presentation/icons/status/mention.svg +3 -3
- package/src/Presentation/icons/status/sent.svg +3 -3
- package/src/Presentation/icons/status/viewed-delivered.svg +3 -3
- package/src/Presentation/icons/toggle/camera-off.svg +3 -3
- package/src/Presentation/icons/toggle/camera-on.svg +3 -3
- package/src/Presentation/icons/toggle/check-off.svg +3 -3
- package/src/Presentation/icons/toggle/check-on.svg +3 -3
- package/src/Presentation/icons/toggle/favorite.svg +3 -3
- package/src/Presentation/icons/toggle/favourite.svg +3 -3
- package/src/Presentation/icons/toggle/full-screen.svg +3 -3
- package/src/Presentation/icons/toggle/hide.svg +3 -3
- package/src/Presentation/icons/toggle/louder.svg +3 -3
- package/src/Presentation/icons/toggle/mic-off.svg +3 -3
- package/src/Presentation/icons/toggle/mic-on.svg +4 -4
- package/src/Presentation/icons/toggle/minimize.svg +3 -3
- package/src/Presentation/icons/toggle/notify-off.svg +3 -3
- package/src/Presentation/icons/toggle/notify-on.svg +3 -3
- package/src/Presentation/icons/toggle/pause.svg +3 -3
- package/src/Presentation/icons/toggle/play.svg +3 -3
- package/src/Presentation/icons/toggle/quite.svg +3 -3
- package/src/Presentation/icons/toggle/record.svg +3 -3
- package/src/Presentation/icons/toggle/screenshare.svg +3 -3
- package/src/Presentation/icons/toggle/show.svg +3 -3
- package/src/Presentation/icons/toggle/speaker off.svg +3 -3
- package/src/Presentation/icons/toggle/speaker-off.svg +3 -3
- package/src/Presentation/icons/toggle/speaker.svg +3 -3
- package/src/Presentation/icons/toggle/stop-record.svg +3 -3
- package/src/Presentation/icons/toggle/stop-share.svg +3 -3
- package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -62
- package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +96 -31
- package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -72
- package/src/Presentation/themes/styles/_fonts.scss +32 -32
- package/src/Presentation/themes/styles/_mixins.scss +6 -6
- package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -56
- package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -57
- package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -72
- package/src/Presentation/themes/styles/_theme_dark.scss +37 -37
- package/src/Presentation/themes/styles/_theme_light.scss +38 -38
- package/src/Presentation/themes/styles/_variables.scss +54 -54
- package/src/Presentation/ui-components/Avatar/Avatar.scss +58 -58
- package/src/Presentation/ui-components/Badge/Badge.scss +23 -23
- package/src/Presentation/ui-components/Button/Button.scss +133 -133
- package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -10
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -29
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -71
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +56 -56
- package/src/Presentation/ui-components/Dropdown/Dropdown.scss +82 -82
- package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +4 -4
- package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +3 -3
- package/src/Presentation/ui-components/Header/Header.scss +72 -72
- package/src/Presentation/ui-components/Loader/Loader.scss +27 -27
- package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +86 -86
- package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -29
- package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -16
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -40
- package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +27 -27
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -58
- package/src/Presentation/ui-components/Message/Message.scss +136 -136
- package/src/Presentation/ui-components/Message/Message.tsx +16 -4
- package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -90
- package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -51
- package/src/Presentation/ui-components/MessageInput/MessageInput.scss +137 -137
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -16
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -140
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -35
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -30
- package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -51
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -30
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -69
- package/src/Presentation/ui-components/TextField/TextField.scss +91 -91
- package/src/Presentation/ui-components/Toast/Toast.scss +22 -22
- package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -33
- package/src/QBconfig.ts +7 -7
- package/src/hooks/useQuickBloxUIKit.ts +2 -2
- package/src/index-ui.ts +8 -0
- package/src/index.scss +28 -28
- package/src/package_artan_react_ui.json +91 -91
- package/src/package_original.json +115 -115
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/favicon.svg +7 -1
- package/storybook-static/index.html +46 -100
- package/storybook-static/index.json +1 -1
- package/storybook-static/logo192.png +0 -0
- package/storybook-static/logo512.png +0 -0
- package/storybook-static/manifest.json +25 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/robots.txt +3 -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 +62 -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-7/manager-bundle.js +12 -0
- package/storybook-static/sb-addons/interactions-7/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/viewport-8/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/viewport-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-common-assets/fonts.css +31 -0
- package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +1 -0
- package/storybook-static/sb-manager/chunk-5QAFKPS7.js +7 -0
- package/storybook-static/sb-manager/chunk-7PRFHFSS.js +9 -0
- package/storybook-static/sb-manager/chunk-XE6LDGTE.js +406 -0
- package/storybook-static/sb-manager/chunk-YDUB7CS6.js +348 -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 -1051
- package/storybook-static/sb-manager/globals.js +1 -48
- package/storybook-static/sb-manager/index.js +1 -0
- package/storybook-static/sb-manager/runtime.js +1 -12048
- package/storybook-static/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +1 -0
- package/storybook-static/sb-preview/globals.js +1 -33
- package/storybook-static/sb-preview/runtime.js +90 -7723
- package/storybook-static/stories.json +1 -0
- package/tsconfig.buildlib.json +33 -33
- package/tsconfig.json +34 -34
- package/typedoc.json +4 -4
- package/webpack.config.js +82 -82
- package/storybook-static/167.88fc69a9.iframe.bundle.js +0 -1
- package/storybook-static/294.b81cdbca.iframe.bundle.js +0 -1
- package/storybook-static/363.2cb21716.iframe.bundle.js +0 -2
- package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +0 -44
- package/storybook-static/364.988cd801.iframe.bundle.js +0 -1
- package/storybook-static/44.2dce2443.iframe.bundle.js +0 -405
- package/storybook-static/44.2dce2443.iframe.bundle.js.LICENSE.txt +0 -19
- package/storybook-static/44.2dce2443.iframe.bundle.js.map +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/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/735.82f96f8a.iframe.bundle.js +0 -2
- package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +0 -9
- package/storybook-static/844.59cc9fcc.iframe.bundle.js +0 -95
- package/storybook-static/844.59cc9fcc.iframe.bundle.js.LICENSE.txt +0 -19
- package/storybook-static/844.59cc9fcc.iframe.bundle.js.map +0 -1
- package/storybook-static/936.8546c1d8.iframe.bundle.js +0 -1
- package/storybook-static/961.c94da456.iframe.bundle.js +0 -2
- package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +0 -9
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.3e9b31ee.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js.LICENSE.txt +0 -15
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.4538dec0.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.ccfd1b95.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.b4ff1c4c.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/docs-Introduction-mdx.024f959d.iframe.bundle.js +0 -1
- package/storybook-static/docs-Styling-mdx.abbdb393.iframe.bundle.js +0 -1
- package/storybook-static/iframe.html +0 -511
- package/storybook-static/main.b6cefba5.iframe.bundle.js +0 -1
- package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/runtime~main.0313ac39.iframe.bundle.js +0 -1
- package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +0 -331
- package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +0 -51
- package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +0 -12
- package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +0 -402
- package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +0 -242
- package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/interactions-11/manager-bundle.js +0 -222
- package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +0 -127
- package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
- package/storybook-static/sb-common-assets/favicon.svg +0 -1
- package/storybook-static/sb-manager/globals-runtime.js +0 -41591
|
@@ -1,511 +0,0 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Webpack App</title><meta name="viewport" content="width=device-width,initial-scale=1"><style>@font-face {
|
|
2
|
-
font-family: 'Nunito Sans';
|
|
3
|
-
font-style: normal;
|
|
4
|
-
font-weight: 400;
|
|
5
|
-
font-display: swap;
|
|
6
|
-
src: url('./sb-common-assets/nunito-sans-regular.woff2') format('woff2');
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: 'Nunito Sans';
|
|
11
|
-
font-style: italic;
|
|
12
|
-
font-weight: 400;
|
|
13
|
-
font-display: swap;
|
|
14
|
-
src: url('./sb-common-assets/nunito-sans-italic.woff2') format('woff2');
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@font-face {
|
|
18
|
-
font-family: 'Nunito Sans';
|
|
19
|
-
font-style: normal;
|
|
20
|
-
font-weight: 700;
|
|
21
|
-
font-display: swap;
|
|
22
|
-
src: url('./sb-common-assets/nunito-sans-bold.woff2') format('woff2');
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@font-face {
|
|
26
|
-
font-family: 'Nunito Sans';
|
|
27
|
-
font-style: italic;
|
|
28
|
-
font-weight: 700;
|
|
29
|
-
font-display: swap;
|
|
30
|
-
src: url('./sb-common-assets/nunito-sans-bold-italic.woff2') format('woff2');
|
|
31
|
-
}</style><base target="_parent"><style>/* While we aren't showing the main block yet, but still preparing, we want everything the user
|
|
32
|
-
has rendered, which may or may not be in #storybook-root, to be display none */
|
|
33
|
-
.sb-show-preparing-story:not(.sb-show-main) > :not(.sb-preparing-story) {
|
|
34
|
-
display: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.sb-show-preparing-docs:not(.sb-show-main) > :not(.sb-preparing-docs) {
|
|
38
|
-
display: none;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/* Hide our own blocks when we aren't supposed to be showing them */
|
|
42
|
-
:not(.sb-show-preparing-story) > .sb-preparing-story,
|
|
43
|
-
:not(.sb-show-preparing-docs) > .sb-preparing-docs,
|
|
44
|
-
:not(.sb-show-nopreview) > .sb-nopreview,
|
|
45
|
-
:not(.sb-show-errordisplay) > .sb-errordisplay {
|
|
46
|
-
display: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.sb-show-main.sb-main-centered {
|
|
50
|
-
margin: 0;
|
|
51
|
-
display: flex;
|
|
52
|
-
align-items: center;
|
|
53
|
-
min-height: 100vh;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.sb-show-main.sb-main-centered #storybook-root {
|
|
57
|
-
box-sizing: border-box;
|
|
58
|
-
margin: auto;
|
|
59
|
-
padding: 1rem;
|
|
60
|
-
max-height: 100%;
|
|
61
|
-
/* Hack for centering correctly in IE11 */
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/* Vertical centering fix for IE11 */
|
|
65
|
-
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
66
|
-
.sb-show-main.sb-main-centered:after {
|
|
67
|
-
content: '';
|
|
68
|
-
min-height: inherit;
|
|
69
|
-
font-size: 0;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.sb-show-main.sb-main-fullscreen {
|
|
74
|
-
margin: 0;
|
|
75
|
-
padding: 0;
|
|
76
|
-
display: block;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.sb-show-main.sb-main-padded {
|
|
80
|
-
margin: 0;
|
|
81
|
-
padding: 1rem;
|
|
82
|
-
display: block;
|
|
83
|
-
box-sizing: border-box;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.sb-wrapper {
|
|
87
|
-
position: fixed;
|
|
88
|
-
top: 0;
|
|
89
|
-
bottom: 0;
|
|
90
|
-
left: 0;
|
|
91
|
-
right: 0;
|
|
92
|
-
box-sizing: border-box;
|
|
93
|
-
|
|
94
|
-
padding: 40px;
|
|
95
|
-
font-family:
|
|
96
|
-
'Nunito Sans',
|
|
97
|
-
-apple-system,
|
|
98
|
-
'.SFNSText-Regular',
|
|
99
|
-
'San Francisco',
|
|
100
|
-
BlinkMacSystemFont,
|
|
101
|
-
'Segoe UI',
|
|
102
|
-
'Helvetica Neue',
|
|
103
|
-
Helvetica,
|
|
104
|
-
Arial,
|
|
105
|
-
sans-serif;
|
|
106
|
-
-webkit-font-smoothing: antialiased;
|
|
107
|
-
overflow: auto;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
@media (max-width: 700px) {
|
|
111
|
-
.sb-wrapper {
|
|
112
|
-
padding: 20px;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
@media (max-width: 500px) {
|
|
117
|
-
.sb-wrapper {
|
|
118
|
-
padding: 10px;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.sb-heading {
|
|
123
|
-
font-size: 14px;
|
|
124
|
-
font-weight: 600;
|
|
125
|
-
letter-spacing: 0.2px;
|
|
126
|
-
margin: 10px 0;
|
|
127
|
-
padding-right: 25px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.sb-nopreview {
|
|
131
|
-
display: flex;
|
|
132
|
-
align-content: center;
|
|
133
|
-
justify-content: center;
|
|
134
|
-
box-sizing: border-box;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.sb-nopreview_main {
|
|
138
|
-
margin: auto;
|
|
139
|
-
padding: 30px;
|
|
140
|
-
border-radius: 10px;
|
|
141
|
-
background: rgba(0, 0, 0, 0.03);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.sb-nopreview_heading {
|
|
145
|
-
text-align: center;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.sb-errordisplay {
|
|
149
|
-
background: #f6f9fc;
|
|
150
|
-
color: black;
|
|
151
|
-
z-index: 999999;
|
|
152
|
-
width: 100vw;
|
|
153
|
-
min-height: 100vh;
|
|
154
|
-
box-sizing: border-box;
|
|
155
|
-
|
|
156
|
-
& ol {
|
|
157
|
-
padding-left: 18px;
|
|
158
|
-
margin: 0;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
& h1 {
|
|
162
|
-
font-family: Nunito Sans;
|
|
163
|
-
font-size: 22px;
|
|
164
|
-
font-weight: 400;
|
|
165
|
-
line-height: 30px;
|
|
166
|
-
font-weight: normal;
|
|
167
|
-
margin: 0;
|
|
168
|
-
|
|
169
|
-
&::before {
|
|
170
|
-
content: '';
|
|
171
|
-
display: inline-block;
|
|
172
|
-
width: 12px;
|
|
173
|
-
height: 12px;
|
|
174
|
-
background: #ff4400;
|
|
175
|
-
border-radius: 50%;
|
|
176
|
-
margin-right: 8px;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
& p,
|
|
181
|
-
& ol {
|
|
182
|
-
font-family: Nunito Sans;
|
|
183
|
-
font-size: 14px;
|
|
184
|
-
font-weight: 400;
|
|
185
|
-
line-height: 19px;
|
|
186
|
-
margin: 0;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
& li + li {
|
|
190
|
-
margin: 0;
|
|
191
|
-
padding: 0;
|
|
192
|
-
padding-top: 12px;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
& a {
|
|
196
|
-
color: currentColor;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.sb-errordisplay_main {
|
|
201
|
-
margin: auto;
|
|
202
|
-
padding: 24px;
|
|
203
|
-
display: flex;
|
|
204
|
-
box-sizing: border-box;
|
|
205
|
-
|
|
206
|
-
flex-direction: column;
|
|
207
|
-
min-height: 100%;
|
|
208
|
-
width: 100%;
|
|
209
|
-
border-radius: 6px;
|
|
210
|
-
background: white;
|
|
211
|
-
border: 1px solid #ff0000;
|
|
212
|
-
box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
|
|
213
|
-
gap: 24px;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.sb-errordisplay_code {
|
|
217
|
-
padding: 10px;
|
|
218
|
-
flex: 1;
|
|
219
|
-
background: #242424;
|
|
220
|
-
color: #c6c6c6;
|
|
221
|
-
box-sizing: border-box;
|
|
222
|
-
|
|
223
|
-
font-size: 14px;
|
|
224
|
-
font-weight: 400;
|
|
225
|
-
line-height: 19px;
|
|
226
|
-
border-radius: 4px;
|
|
227
|
-
|
|
228
|
-
font-family: 'Operator Mono', 'Fira Code Retina', 'Fira Code', 'FiraCode-Retina', 'Andale Mono',
|
|
229
|
-
'Lucida Console', Consolas, Monaco, monospace;
|
|
230
|
-
margin: 0;
|
|
231
|
-
overflow: auto;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.sb-errordisplay pre {
|
|
235
|
-
white-space: pre-wrap;
|
|
236
|
-
white-space: revert;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
@-webkit-keyframes sb-rotate360 {
|
|
240
|
-
from {
|
|
241
|
-
transform: rotate(0deg);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
to {
|
|
245
|
-
transform: rotate(360deg);
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
@keyframes sb-rotate360 {
|
|
250
|
-
from {
|
|
251
|
-
transform: rotate(0deg);
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
to {
|
|
255
|
-
transform: rotate(360deg);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
@-webkit-keyframes sb-glow {
|
|
260
|
-
0%,
|
|
261
|
-
100% {
|
|
262
|
-
opacity: 1;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
50% {
|
|
266
|
-
opacity: 0.4;
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
@keyframes sb-glow {
|
|
271
|
-
0%,
|
|
272
|
-
100% {
|
|
273
|
-
opacity: 1;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
50% {
|
|
277
|
-
opacity: 0.4;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/* We display the preparing loaders *over* the rendering story */
|
|
282
|
-
.sb-preparing-story,
|
|
283
|
-
.sb-preparing-docs {
|
|
284
|
-
background-color: white;
|
|
285
|
-
/* Maximum possible z-index. It would be better to use stacking contexts to ensure it's always
|
|
286
|
-
on top, but this isn't possible as it would require making CSS changes that could affect user code */
|
|
287
|
-
z-index: 2147483647;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.sb-loader {
|
|
291
|
-
-webkit-animation: sb-rotate360 0.7s linear infinite;
|
|
292
|
-
animation: sb-rotate360 0.7s linear infinite;
|
|
293
|
-
border-color: rgba(97, 97, 97, 0.29);
|
|
294
|
-
border-radius: 50%;
|
|
295
|
-
border-style: solid;
|
|
296
|
-
border-top-color: #646464;
|
|
297
|
-
border-width: 2px;
|
|
298
|
-
display: inline-block;
|
|
299
|
-
height: 32px;
|
|
300
|
-
left: 50%;
|
|
301
|
-
margin-left: -16px;
|
|
302
|
-
margin-top: -16px;
|
|
303
|
-
mix-blend-mode: difference;
|
|
304
|
-
overflow: hidden;
|
|
305
|
-
position: absolute;
|
|
306
|
-
top: 50%;
|
|
307
|
-
transition: all 200ms ease-out;
|
|
308
|
-
vertical-align: top;
|
|
309
|
-
width: 32px;
|
|
310
|
-
z-index: 4;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.sb-previewBlock {
|
|
314
|
-
background: #fff;
|
|
315
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
316
|
-
border-radius: 4px;
|
|
317
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0;
|
|
318
|
-
margin: 25px auto 40px;
|
|
319
|
-
max-width: 600px;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.sb-previewBlock_header {
|
|
323
|
-
align-items: center;
|
|
324
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 0 0 inset;
|
|
325
|
-
display: flex;
|
|
326
|
-
gap: 14px;
|
|
327
|
-
height: 40px;
|
|
328
|
-
padding: 0 12px;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.sb-previewBlock_icon {
|
|
332
|
-
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
333
|
-
animation: sb-glow 1.5s ease-in-out infinite;
|
|
334
|
-
background: #e6e6e6;
|
|
335
|
-
height: 14px;
|
|
336
|
-
width: 14px;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.sb-previewBlock_icon:last-child {
|
|
340
|
-
margin-left: auto;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.sb-previewBlock_body {
|
|
344
|
-
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
345
|
-
animation: sb-glow 1.5s ease-in-out infinite;
|
|
346
|
-
height: 182px;
|
|
347
|
-
position: relative;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.sb-argstableBlock {
|
|
351
|
-
border-collapse: collapse;
|
|
352
|
-
border-spacing: 0;
|
|
353
|
-
font-size: 13px;
|
|
354
|
-
line-height: 20px;
|
|
355
|
-
margin: 25px auto 40px;
|
|
356
|
-
max-width: 600px;
|
|
357
|
-
text-align: left;
|
|
358
|
-
width: 100%;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.sb-argstableBlock th:first-of-type,
|
|
362
|
-
.sb-argstableBlock td:first-of-type {
|
|
363
|
-
padding-left: 20px;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.sb-argstableBlock th:nth-of-type(2),
|
|
367
|
-
.sb-argstableBlock td:nth-of-type(2) {
|
|
368
|
-
width: 35%;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.sb-argstableBlock th:nth-of-type(3),
|
|
372
|
-
.sb-argstableBlock td:nth-of-type(3) {
|
|
373
|
-
width: 15%;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.sb-argstableBlock th:last-of-type,
|
|
377
|
-
.sb-argstableBlock td:last-of-type {
|
|
378
|
-
width: 25%;
|
|
379
|
-
padding-right: 20px;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.sb-argstableBlock th span,
|
|
383
|
-
.sb-argstableBlock td span {
|
|
384
|
-
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
385
|
-
animation: sb-glow 1.5s ease-in-out infinite;
|
|
386
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
387
|
-
border-radius: 0;
|
|
388
|
-
box-shadow: none;
|
|
389
|
-
color: transparent;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.sb-argstableBlock th {
|
|
393
|
-
padding: 10px 15px;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.sb-argstableBlock-body {
|
|
397
|
-
border-radius: 4px;
|
|
398
|
-
box-shadow:
|
|
399
|
-
rgba(0, 0, 0, 0.1) 0 1px 3px 1px,
|
|
400
|
-
rgba(0, 0, 0, 0.065) 0 0 0 1px;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
.sb-argstableBlock-body tr {
|
|
404
|
-
background: transparent;
|
|
405
|
-
overflow: hidden;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.sb-argstableBlock-body tr:not(:first-child) {
|
|
409
|
-
border-top: 1px solid #e6e6e6;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.sb-argstableBlock-body tr:first-child td:first-child {
|
|
413
|
-
border-top-left-radius: 4px;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.sb-argstableBlock-body tr:first-child td:last-child {
|
|
417
|
-
border-top-right-radius: 4px;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.sb-argstableBlock-body tr:last-child td:first-child {
|
|
421
|
-
border-bottom-left-radius: 4px;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
.sb-argstableBlock-body tr:last-child td:last-child {
|
|
425
|
-
border-bottom-right-radius: 4px;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
.sb-argstableBlock-body td {
|
|
429
|
-
background: #fff;
|
|
430
|
-
padding-bottom: 10px;
|
|
431
|
-
padding-top: 10px;
|
|
432
|
-
vertical-align: top;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
.sb-argstableBlock-body td:not(:first-of-type) {
|
|
436
|
-
padding-left: 15px;
|
|
437
|
-
padding-right: 15px;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.sb-argstableBlock-body button {
|
|
441
|
-
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
442
|
-
animation: sb-glow 1.5s ease-in-out infinite;
|
|
443
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
444
|
-
border: 0;
|
|
445
|
-
border-radius: 0;
|
|
446
|
-
box-shadow: none;
|
|
447
|
-
color: transparent;
|
|
448
|
-
display: inline;
|
|
449
|
-
font-size: 12px;
|
|
450
|
-
line-height: 1;
|
|
451
|
-
padding: 10px 16px;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.sb-argstableBlock-summary {
|
|
455
|
-
margin-top: 4px;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.sb-argstableBlock-code {
|
|
459
|
-
margin-right: 4px;
|
|
460
|
-
margin-bottom: 4px;
|
|
461
|
-
padding: 2px 5px;
|
|
462
|
-
}</style><script>/* globals window */
|
|
463
|
-
/* eslint-disable no-underscore-dangle */
|
|
464
|
-
try {
|
|
465
|
-
if (window.top !== window) {
|
|
466
|
-
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.top.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
467
|
-
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.top.__VUE_DEVTOOLS_GLOBAL_HOOK__;
|
|
468
|
-
window.top.__VUE_DEVTOOLS_CONTEXT__ = window.document;
|
|
469
|
-
}
|
|
470
|
-
} catch (e) {
|
|
471
|
-
// eslint-disable-next-line no-console
|
|
472
|
-
console.warn('unable to connect to top frame for connecting dev tools');
|
|
473
|
-
}</script><style>#storybook-root[hidden],
|
|
474
|
-
#storybook-docs[hidden] {
|
|
475
|
-
display: none !important;
|
|
476
|
-
}</style></head><body><div class="sb-preparing-story sb-wrapper"><div class="sb-loader"></div></div><div class="sb-preparing-docs sb-wrapper"><div class="sb-previewBlock"><div class="sb-previewBlock_header"><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div></div><div class="sb-previewBlock_body"><div class="sb-loader"></div></div></div><table aria-hidden="true" class="sb-argstableBlock"><thead class="sb-argstableBlock-head"><tr><th><span>Name</span></th><th><span>Description</span></th><th><span>Default</span></th><th><span>Control</span></th></tr></thead><tbody class="sb-argstableBlock-body"><tr><td><span>propertyName</span><span title="Required">*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr><tr><td><span>propertyName</span><span>*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr><tr><td><span>propertyName</span><span>*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr></tbody></table></div><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><div class="sb-errordisplay_main"><h1 id="error-message"></h1><p>The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:</p><ol><li><strong>Missing Context/Providers</strong>: You can use decorators to supply specific contexts or providers, which are sometimes necessary for components to render correctly. For detailed instructions on using decorators, please visit the <a href="https://storybook.js.org/docs/writing-stories/decorators">Decorators documentation</a>.</li><li><strong>Misconfigured Webpack or Vite</strong>: Verify that Storybook picks up all necessary settings for loaders, plugins, and other relevant parameters. You can find step-by-step guides for configuring <a href="https://storybook.js.org/docs/builders/webpack">Webpack</a> or <a href="https://storybook.js.org/docs/builders/vite">Vite</a> with Storybook.</li><li><strong>Missing Environment Variables</strong>: Your Storybook may require specific environment variables to function as intended. You can set up custom environment variables as outlined in the <a href="https://storybook.js.org/docs/configure/environment-variables">Environment Variables documentation</a>.</li></ol><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div></div><div id="storybook-root"></div><div id="storybook-docs"></div><script>window['CONFIG_TYPE'] = "PRODUCTION";
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
window['LOGLEVEL'] = "info";
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
window['FRAMEWORK_OPTIONS'] = {};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
window['FEATURES'] = {"argTypeTargetsV7":true,"legacyDecoratorFileOrder":false,"disallowImplicitActionsInRenderV8":true};
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/*.mdx","importPathMatcher":"^\\.[\\\\/](?:src(?:[\\\\/](?!\\.)(?:(?:(?!(?:^|[\\\\/])\\.).)*?)[\\\\/]|[\\\\/]|$)(?!\\.)(?=.)[^\\\\/]*?\\.mdx)$"},{"titlePrefix":"","directory":"./src","files":"**/*.stories.@(js|jsx|mjs|ts|tsx)","importPathMatcher":"^\\.[\\\\/](?:src(?:[\\\\/](?!\\.)(?:(?:(?!(?:^|[\\\\/])\\.).)*?)[\\\\/]|[\\\\/]|$)(?!\\.)(?=.)[^\\\\/]*?\\.stories\\.(js|jsx|mjs|ts|tsx))$"}];
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
window['DOCS_OPTIONS'] = {"defaultName":"Docs","autodocs":"tag"};
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
window['TAGS_OPTIONS'] = {"dev-only":{"excludeFromDocsStories":true},"docs-only":{"excludeFromSidebar":true},"test-only":{"excludeFromSidebar":true,"excludeFromDocsStories":true}};</script><script type="module">import './sb-preview/runtime.js';
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
import './runtime~main.0313ac39.iframe.bundle.js';
|
|
508
|
-
|
|
509
|
-
import './44.2dce2443.iframe.bundle.js';
|
|
510
|
-
|
|
511
|
-
import './main.b6cefba5.iframe.bundle.js';</script></body></html>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunkquickblox_react_ui_kit=self.webpackChunkquickblox_react_ui_kit||[]).push([[792],{"./.storybook/preview.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>_storybook_preview});var dist=__webpack_require__("./node_modules/@storybook/test/dist/index.mjs"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),cjs_js_src=__webpack_require__("./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/index.scss"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(cjs_js_src.A,options);cjs_js_src.A&&cjs_js_src.A.locals&&cjs_js_src.A.locals;const _storybook_preview={parameters:{actions:{onClick:(0,dist.fn)(),onChange:(0,dist.fn)()},controls:{matchers:{color:/(background|color)$/i,date:/Date$/i}},viewMode:"docs"}}},"./node_modules/@storybook/instrumenter/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/instrumenter/dist sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/test/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/test/dist sync recursive",module.exports=webpackEmptyContext},"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/index.scss":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@import url(https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,700&display=swap);"]),___CSS_LOADER_EXPORT___.push([module.id,"@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap);"]),___CSS_LOADER_EXPORT___.push([module.id,':root{--primary: #3978FC;--color-background: #FFFFFF;--color-background-modal: rgba(19, 29, 40, 0.8);--color-background-overlay: #0B121B;--color-divider: #E7EFFF;--color-font: #0B121B;--color-icon: #3978FC;--color-media-icon: #FFFFFF;--color-default-hover: #2C65FB;--color-default-active: #1748FA;--color-background-info: #C4D7FE;--color-border-active: #9CBCFE;--tertiary-elements: #636D78;--main-elements: #3978FC;--toast-color: #131D28;--secondary-elements: #202F3E;--input-elements: #202F3E;--disabled-elements: #BCC1C5;--field-border: #90979F;--main-text: #0B121B;--secondary-text: #636D78;--caption: #90979F;--main-background: #FFFFFF;--secondary-background: #FFFFFF;--secondary-background-modal: rgba(19, 29, 40, 0.8);--incoming-background: #E4E6E8;--outgoing-background: #E7EFFF;--dropdown-background: #FFFFFF;--chat-input: #F7F9FF;--divider: #E7EFFF;--error: #FF3B30;--error-secondary: #FF9D98;--hightlight: #FFFDC1;--system: #FFFFFF}html[data-theme=dark]{--primary: #3978FC;--color-background: #0B121B;--color-background-modal: rgba(19, 29, 40, 0.8);--color-background-overlay: #0B121B;--color-divider: #414E5B;--color-font: #FFFFFF;--color-icon: #74A1FD;--color-media-icon: #FFFFFF;--color-default-hover: #182330;--color-default-active: #0B121B;--color-background-info: #3978FC;--color-border-active: #90979F;--tertiary-elements: #636D78;--main-elements: #74A1FD;--secondary-elements: #FFFFFF;--input-elements: #90979F;--disabled-elements: #BCC1C5;--field-border: #90979F;--main-text: #FFFFFF;--secondary-text: #90979F;--caption: #BCC1C5;--main-background: #202F3E;--secondary-background: #131D28;--incoming-background: #414E5B;--outgoing-background: #3978FC;--dropdown-background: #414E5B;--chat-input: #131D28;--divider: #414E5B;--error: #FF766E;--error-secondary: #FFC4C1;--hightlight: #FFFDC1;--system: #FFFFFF}:root{--title-title-large: 500 20px/24px "Roboto", sans-serif;--title-title-medium: 500 16px/24px "Roboto", sans-serif;--title-title-small: 500 14px/20px "Roboto", sans-serif;--label-label-large: 500 14px/20px "Roboto", sans-serif;--label-label-medium: 500 12px/16px "Roboto", sans-serif;--label-label-small: 500 11px/16px "Roboto", sans-serif;--body-body-large: 400 16px/24px "Roboto", sans-serif;--body-body-medium: 400 14px/20px "Roboto", sans-serif;--body-body-small: 400 12px/16px "Roboto", sans-serif;--button-fab: 500 14px/16px "Roboto", sans-serif;--button-default: 700 14px/16px "Roboto", sans-serif;--ui-kit-header: 500 48px "Roboto Mono", sans-serif;--ui-kit-title: 500 32px "Roboto Mono", sans-serif;--ui-kit-body: 400 17px "Roboto Mono", sans-serif;--max-width-message-bubble: 480px;--max-width-message-view-container: 680px;--max-width-image-message: 240px;--max-width-audio-message: 300px;--max-width-dialog-list: 320px;--min-width-screen-desktop: 980px}.qb-uikit-layout *{box-sizing:border-box}.qb-uikit-layout{font-family:"Roboto";color:var(--main-text);background-color:var(--main-background);overflow:hidden !important;scrollbar-width:none !important}@media only screen and (max-width: 980px){:root{--max-width-message-view-container: 345px;--max-width-message-bubble: 170px;--max-width-image-message: 150px;--max-width-audio-message: 150px;--max-width-dialog-list: 100%}}',"",{version:3,sources:["webpack://./src/Presentation/themes/styles/_theme_light.scss","webpack://./src/Presentation/themes/styles/_theme_dark.scss","webpack://./src/Presentation/themes/styles/_variables.scss","webpack://./src/index.scss"],names:[],mappings:"AAEA,MACE,kBAAA,CACA,2BAAA,CACA,+CAAA,CACA,mCAAA,CACA,wBAAA,CACA,qBAAA,CACA,qBAAA,CACA,2BAAA,CACA,8BAAA,CACA,+BAAA,CAEA,gCAAA,CACA,8BAAA,CACA,4BAAA,CACA,wBAAA,CACA,sBAAA,CACA,6BAAA,CACA,yBAAA,CACA,4BAAA,CACA,uBAAA,CACA,oBAAA,CACA,yBAAA,CACA,kBAAA,CACA,0BAAA,CACA,+BAAA,CACA,mDAAA,CACA,8BAAA,CACA,8BAAA,CACA,8BAAA,CACA,qBAAA,CACA,kBAAA,CACA,gBAAA,CACA,0BAAA,CACA,qBAAA,CACA,iBAAA,CClCF,sBACE,kBAAA,CACA,2BAAA,CACA,+CAAA,CACA,mCAAA,CACA,wBAAA,CACA,qBAAA,CACA,qBAAA,CACA,2BAAA,CACA,8BAAA,CACA,+BAAA,CAEA,gCAAA,CACA,8BAAA,CACA,4BAAA,CACA,wBAAA,CACA,6BAAA,CACA,yBAAA,CACA,4BAAA,CACA,uBAAA,CACA,oBAAA,CACA,yBAAA,CACA,kBAAA,CACA,0BAAA,CACA,+BAAA,CACA,8BAAA,CACA,8BAAA,CACA,8BAAA,CACA,qBAAA,CACA,kBAAA,CACA,gBAAA,CACA,0BAAA,CACA,qBAAA,CACA,iBAAA,CCTF,MACE,uDAAA,CACA,wDAAA,CACA,uDAAA,CACA,uDAAA,CACA,wDAAA,CACA,uDAAA,CACA,qDAAA,CACA,sDAAA,CACA,qDAAA,CACA,gDAAA,CACA,oDAAA,CACA,mDAAA,CACA,kDAAA,CACA,iDAAA,CAGA,iCAAA,CACA,yCAAA,CACA,gCAAA,CACA,gCAAA,CACA,8BAAA,CACA,iCAAA,CC5CF,mBACE,qBAAA,CAGF,iBACE,oBAAA,CACA,sBAAA,CACA,uCAAA,CAEA,0BAAA,CACA,+BAAA,CAIF,0CACE,MACE,yCAAA,CACA,iCAAA,CACA,gCAAA,CACA,gCAAA,CACA,6BAAA,CAAA",sourcesContent:["@use 'theme_colors_scheme' as *;\r\n\r\n:root {\r\n --primary: #{$primary-500};\r\n --color-background: #{$primary-a-100};\r\n --color-background-modal: #{$background-overlay-light};\r\n --color-background-overlay: #{$secondary-900};\r\n --color-divider: #{$primary-50};\r\n --color-font: #{$secondary-900};\r\n --color-icon: #{$primary-500};\r\n --color-media-icon: #{$primary-a-100};\r\n --color-default-hover: #{$primary-700};\r\n --color-default-active: #{$primary-900};\r\n\r\n --color-background-info: #{$primary-100};\r\n --color-border-active: #{$primary-200};\r\n --tertiary-elements: #{$secondary-300};\r\n --main-elements: #{$primary-500};\r\n --toast-color: #{$secondary-800};\r\n --secondary-elements: #{$secondary-500};\r\n --input-elements: #{$secondary-500};\r\n --disabled-elements: #{$secondary-100};\r\n --field-border: #{$secondary-200};\r\n --main-text: #{$secondary-900};\r\n --secondary-text: #{$secondary-300};\r\n --caption: #{$secondary-200};\r\n --main-background: #{$primary-a-100};\r\n --secondary-background: #{$primary-a-100}; // #{$primary-50};\r\n --secondary-background-modal: #{$background-overlay-light};\r\n --incoming-background: #{$secondary-50};\r\n --outgoing-background: #{$primary-50};\r\n --dropdown-background: #{$primary-a-100};\r\n --chat-input: #{$primary-a-200};\r\n --divider: #{$primary-50};\r\n --error: #{$error-500};\r\n --error-secondary: #{$error-200};\r\n --hightlight: #{$highlight};\r\n --system: #{$primary-a-100};\r\n}\r\n","@use 'theme_colors_scheme' as *;\r\n// https://sass-lang.com/documentation/breaking-changes/css-vars\r\n\r\nhtml[data-theme='dark'] {\r\n --primary: #{$primary-500};\r\n --color-background: #{$secondary-900};\r\n --color-background-modal: #{$background-overlay-dark};\r\n --color-background-overlay: #{$secondary-900};\r\n --color-divider: #{$secondary-400};\r\n --color-font: #{$primary-a-100};\r\n --color-icon: #{$primary-300};\r\n --color-media-icon: #{$primary-a-100};\r\n --color-default-hover: #{$secondary-700};\r\n --color-default-active: #{$secondary-900};\r\n\r\n --color-background-info: #{$primary-500};\r\n --color-border-active: #{$secondary-200};\r\n --tertiary-elements: #{$secondary-300};\r\n --main-elements: #{$primary-300};\r\n --secondary-elements: #{$primary-a-100};\r\n --input-elements: #{$secondary-200};\r\n --disabled-elements: #{$secondary-100};\r\n --field-border: #{$secondary-200};\r\n --main-text: #{$primary-a-100};\r\n --secondary-text: #{$secondary-200};\r\n --caption: #{$secondary-100};\r\n --main-background: #{$secondary-500};\r\n --secondary-background: #{$secondary-800};\r\n --incoming-background: #{$secondary-400};\r\n --outgoing-background: #{$primary-500};\r\n --dropdown-background: #{$secondary-400};\r\n --chat-input: #{$secondary-800};\r\n --divider: #{$secondary-400};\r\n --error: #{$error-300};\r\n --error-secondary: #{$error-100};\r\n --hightlight: #{$highlight};\r\n --system: #{$primary-a-100};\r\n}\r\n",'@use "theme_light" as *;\r\n@use "theme_dark" as *;\r\n\r\n$qb-min-width-screen-desktop: 980px;\r\n\r\n$qb-max-width-screen: 980px;\r\n\r\n$qb-max-width-message-view-container-desktop: 680px;\r\n$qb-max-width-message-view-container-mobile: 345px;\r\n\r\n$qb-max-width-message-bubble-desktop: 480px;\r\n$qb-max-width-message-bubble-mobile: 170px;\r\n\r\n$qb-max-width-image-message-desktop: 240px;\r\n$qb-max-width-image-message-mobile: 150px;\r\n\r\n$qb-max-width-audio-message-desktop: 300px;\r\n$qb-max-width-audio-message-mobile: 150px;\r\n\r\n$qb-max-width-dialog-list-desktop: 320px;\r\n$qb-max-width-dialog-list-mobile: 100%;\r\n\r\n$create-dialog-container-width: 380px;\r\n\r\n\r\n\r\n/* Fonts */\r\n:root{\r\n --title-title-large: 500 20px/24px "Roboto", sans-serif;\r\n --title-title-medium: 500 16px/24px "Roboto", sans-serif;\r\n --title-title-small: 500 14px/20px "Roboto", sans-serif;\r\n --label-label-large: 500 14px/20px "Roboto", sans-serif;\r\n --label-label-medium: 500 12px/16px "Roboto", sans-serif;\r\n --label-label-small: 500 11px/16px "Roboto", sans-serif;\r\n --body-body-large: 400 16px/24px "Roboto", sans-serif;\r\n --body-body-medium: 400 14px/20px "Roboto", sans-serif;\r\n --body-body-small: 400 12px/16px "Roboto", sans-serif;\r\n --button-fab: 500 14px/16px "Roboto", sans-serif;\r\n --button-default: 700 14px/16px "Roboto", sans-serif;\r\n --ui-kit-header: 500 48px "Roboto Mono", sans-serif;\r\n --ui-kit-title: 500 32px "Roboto Mono", sans-serif;\r\n --ui-kit-body: 400 17px "Roboto Mono", sans-serif;\r\n\r\n/* Width */\r\n --max-width-message-bubble: #{$qb-max-width-message-bubble-desktop};\r\n --max-width-message-view-container: #{$qb-max-width-message-view-container-desktop};\r\n --max-width-image-message: #{$qb-max-width-image-message-desktop};\r\n --max-width-audio-message: #{$qb-max-width-audio-message-desktop};\r\n --max-width-dialog-list: #{$qb-max-width-dialog-list-desktop};\r\n --min-width-screen-desktop: #{$qb-min-width-screen-desktop};\r\n}\r\n\r\n\r\n\r\n',"@use 'Presentation/themes/styles/fonts' as *;\r\n@use 'Presentation/themes/styles/theme_colors_scheme' as *;\r\n@use 'Presentation/themes/styles/variables' as *;\r\n@use 'Presentation/themes/styles/mixins' as *;\r\n\r\n.qb-uikit-layout * {\r\n box-sizing: border-box;\r\n}\r\n\r\n.qb-uikit-layout {\r\n font-family: 'Roboto';\r\n color: var(--main-text);\r\n background-color: var(--main-background);\r\n //to hide the scrollbars if DialogInfo clicked\r\n overflow: hidden !important;\r\n scrollbar-width: none !important;\r\n}\r\n\r\n/* Media-query for mobile devices */\r\n@media only screen and (max-width: #{$qb-max-width-screen}) {\r\n :root {\r\n --max-width-message-view-container: #{$qb-max-width-message-view-container-mobile};\r\n --max-width-message-bubble: #{$qb-max-width-message-bubble-mobile};\r\n --max-width-image-message: #{$qb-max-width-image-message-mobile};\r\n --max-width-audio-message: #{$qb-max-width-audio-message-mobile};\r\n --max-width-dialog-list: #{$qb-max-width-dialog-list-mobile};\r\n }\r\n}\r\n"],sourceRoot:""}]);const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.mdx)$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./docs/Introduction.mdx":["./src/docs/Introduction.mdx",844,485],"./docs/Styling.mdx":["./src/docs/Styling.mdx",844,234]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.mdx)$",module.exports=webpackAsyncContext},"./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./Presentation/ui-components/Avatar/avatar.stories":["./src/Presentation/ui-components/Avatar/avatar.stories.tsx",488,155],"./Presentation/ui-components/Avatar/avatar.stories.tsx":["./src/Presentation/ui-components/Avatar/avatar.stories.tsx",488,155],"./Presentation/ui-components/Badge/Badge.stories":["./src/Presentation/ui-components/Badge/Badge.stories.ts",751],"./Presentation/ui-components/Badge/Badge.stories.ts":["./src/Presentation/ui-components/Badge/Badge.stories.ts",751],"./Presentation/ui-components/Button/Button.stories":["./src/Presentation/ui-components/Button/Button.stories.ts",488,349],"./Presentation/ui-components/Button/Button.stories.ts":["./src/Presentation/ui-components/Button/Button.stories.ts",488,349],"./Presentation/ui-components/DialogBanner/DialogBanner.stories":["./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts",801],"./Presentation/ui-components/DialogBanner/DialogBanner.stories.ts":["./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts",801],"./Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories":["./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx",488,275],"./Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx":["./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx",488,275],"./Presentation/ui-components/DialogWindow/DialogWindow.stories":["./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx",488,409],"./Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx":["./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx",488,409],"./Presentation/ui-components/Dropdown/Dropdown.stories":["./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx",488,107],"./Presentation/ui-components/Dropdown/Dropdown.stories.tsx":["./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx",488,107],"./Presentation/ui-components/Header/Header.stories":["./src/Presentation/ui-components/Header/Header.stories.tsx",488,395],"./Presentation/ui-components/Header/Header.stories.tsx":["./src/Presentation/ui-components/Header/Header.stories.tsx",488,395],"./Presentation/ui-components/Loader/Loader.stories":["./src/Presentation/ui-components/Loader/Loader.stories.ts",488,43],"./Presentation/ui-components/Loader/Loader.stories.ts":["./src/Presentation/ui-components/Loader/Loader.stories.ts",488,43],"./Presentation/ui-components/Message/Message.stories":["./src/Presentation/ui-components/Message/Message.stories.tsx",488,515],"./Presentation/ui-components/Message/Message.stories.tsx":["./src/Presentation/ui-components/Message/Message.stories.tsx",488,515],"./Presentation/ui-components/MessageInput/MessageInput.stories":["./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx",363,488,491],"./Presentation/ui-components/MessageInput/MessageInput.stories.tsx":["./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx",363,488,491],"./Presentation/ui-components/MessageSeparator/MessageSeparator.stories":["./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts",117],"./Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts":["./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts",117],"./Presentation/ui-components/Placeholder/Placeholder.stories":["./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx",488,723],"./Presentation/ui-components/Placeholder/Placeholder.stories.tsx":["./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx",488,723],"./Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories":["./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts",488,731],"./Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts":["./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts",488,731],"./Presentation/ui-components/SettingsItem/SettingsItem.stories":["./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx",488,853],"./Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx":["./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx",488,853],"./Presentation/ui-components/TextField/TextField.stories":["./src/Presentation/ui-components/TextField/TextField.stories.ts",488,555],"./Presentation/ui-components/TextField/TextField.stories.ts":["./src/Presentation/ui-components/TextField/TextField.stories.ts",488,555],"./Presentation/ui-components/Toast/Toast.stories":["./src/Presentation/ui-components/Toast/Toast.stories.tsx",559,488,47],"./Presentation/ui-components/Toast/Toast.stories.tsx":["./src/Presentation/ui-components/Toast/Toast.stories.tsx",559,488,47],"./Presentation/ui-components/UserListItem/UserListItem.stories":["./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx",488,585],"./Presentation/ui-components/UserListItem/UserListItem.stories.tsx":["./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx",488,585]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$",module.exports=webpackAsyncContext},"./storybook-config-entry.js":(__unused_webpack_module,__unused_webpack___webpack_exports__,__webpack_require__)=>{"use strict";var external_STORYBOOK_MODULE_CHANNELS_=__webpack_require__("storybook/internal/channels"),csf=__webpack_require__("./node_modules/@storybook/core/dist/csf/index.js"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global");const importers=[async path=>{if(!/^\.[\\/](?:src(?:[\\/](?!\.)(?:(?:(?!(?:^|[\\/])\.).)*?)[\\/]|[\\/]|$)(?!\.)(?=.)[^\\/]*?\.mdx)$/.exec(path))return;const pathRemainder=path.substring(6);return __webpack_require__("./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.mdx)$")("./"+pathRemainder)},async path=>{if(!/^\.[\\/](?:src(?:[\\/](?!\.)(?:(?:(?!(?:^|[\\/])\.).)*?)[\\/]|[\\/]|$)(?!\.)(?=.)[^\\/]*?\.stories\.(js|jsx|mjs|ts|tsx))$/.exec(path))return;const pathRemainder=path.substring(6);return __webpack_require__("./src lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$")("./"+pathRemainder)}];const channel=(0,external_STORYBOOK_MODULE_CHANNELS_.createBrowserChannel)({page:"preview"});external_STORYBOOK_MODULE_PREVIEW_API_.addons.setChannel(channel),"DEVELOPMENT"===external_STORYBOOK_MODULE_GLOBAL_.global.CONFIG_TYPE&&(window.__STORYBOOK_SERVER_CHANNEL__=channel);const preview=new external_STORYBOOK_MODULE_PREVIEW_API_.PreviewWeb((async function importFn(path){for(let i=0;i<importers.length;i++){const moduleExports=await(x=()=>importers[i](path),x());if(moduleExports)return moduleExports}var x}),(()=>{const previewAnnotations=[__webpack_require__("./node_modules/@storybook/react/dist/entry-preview.mjs"),__webpack_require__("./node_modules/@storybook/react/dist/entry-preview-docs.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/actions/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/docs/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/viewport/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/measure/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/outline/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-interactions/dist/preview.mjs"),__webpack_require__("./.storybook/preview.ts")],userPreview=previewAnnotations[previewAnnotations.length-1]?.default;return(0,csf.bU)(userPreview)?userPreview.composed:(0,external_STORYBOOK_MODULE_PREVIEW_API_.composeConfigs)(previewAnnotations)}));window.__STORYBOOK_PREVIEW__=preview,window.__STORYBOOK_STORY_STORE__=preview.storyStore,window.__STORYBOOK_ADDONS_CHANNEL__=channel},"@storybook/global":module=>{"use strict";module.exports=__STORYBOOK_MODULE_GLOBAL__},"storybook/internal/channels":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CHANNELS__},"storybook/internal/client-logger":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CLIENT_LOGGER__},"storybook/internal/core-events":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS__},"storybook/internal/preview-api":module=>{"use strict";module.exports=__STORYBOOK_MODULE_PREVIEW_API__},"storybook/internal/preview-errors":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__}},__webpack_require__=>{__webpack_require__.O(0,[44],(()=>{return moduleId="./storybook-config-entry.js",__webpack_require__(__webpack_require__.s=moduleId);var moduleId}));__webpack_require__.O()}]);
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(()=>{"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.amdO={},deferred=[],__webpack_require__.O=(result,chunkIds,fn,priority)=>{if(!chunkIds){var notFulfilled=1/0;for(i=0;i<deferred.length;i++){chunkIds=deferred[i][0],fn=deferred[i][1],priority=deferred[i][2];for(var fulfilled=!0,j=0;j<chunkIds.length;j++)(!1&priority||notFulfilled>=priority)&&Object.keys(__webpack_require__.O).every((key=>__webpack_require__.O[key](chunkIds[j])))?chunkIds.splice(j--,1):(fulfilled=!1,priority<notFulfilled&&(notFulfilled=priority));if(fulfilled){deferred.splice(i--,1);var r=fn();void 0!==r&&(result=r)}}return result}priority=priority||0;for(var i=deferred.length;i>0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=module=>{var getter=module&&module.__esModule?()=>module.default:()=>module;return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?obj=>Object.getPrototypeOf(obj):obj=>obj.__proto__,__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((key=>def[key]=()=>value[key]));return def.default=()=>value,__webpack_require__.d(ns,def),ns},__webpack_require__.d=(exports,definition)=>{for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=chunkId=>Promise.all(Object.keys(__webpack_require__.f).reduce(((promises,key)=>(__webpack_require__.f[key](chunkId,promises),promises)),[])),__webpack_require__.u=chunkId=>(({43:"Presentation-ui-components-Loader-Loader-stories",47:"Presentation-ui-components-Toast-Toast-stories",107:"Presentation-ui-components-Dropdown-Dropdown-stories",117:"Presentation-ui-components-MessageSeparator-MessageSeparator-stories",155:"Presentation-ui-components-Avatar-avatar-stories",234:"docs-Styling-mdx",275:"Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories",349:"Presentation-ui-components-Button-Button-stories",395:"Presentation-ui-components-Header-Header-stories",409:"Presentation-ui-components-DialogWindow-DialogWindow-stories",485:"docs-Introduction-mdx",491:"Presentation-ui-components-MessageInput-MessageInput-stories",515:"Presentation-ui-components-Message-Message-stories",555:"Presentation-ui-components-TextField-TextField-stories",585:"Presentation-ui-components-UserListItem-UserListItem-stories",723:"Presentation-ui-components-Placeholder-Placeholder-stories",731:"Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories",751:"Presentation-ui-components-Badge-Badge-stories",801:"Presentation-ui-components-DialogBanner-DialogBanner-stories",853:"Presentation-ui-components-SettingsItem-SettingsItem-stories"}[chunkId]||chunkId)+"."+{43:"9ffbbddb",47:"b4ff1c4c",107:"62c3a3cc",117:"ccfd1b95",155:"5dd31ce9",167:"88fc69a9",234:"abbdb393",275:"528c08e7",294:"b81cdbca",349:"e958fce3",363:"2cb21716",364:"988cd801",395:"33ced43a",409:"b1e69362",485:"024f959d",488:"3cd3942e",491:"4538dec0",515:"56b66b6d",555:"448b262f",559:"9e64a6f5",585:"8ddeec07",723:"87417472",731:"c2851879",735:"82f96f8a",751:"6ac75e0c",801:"3e9b31ee",844:"59cc9fcc",853:"b8aff90f",936:"8546c1d8",961:"c94da456"}[chunkId]+".iframe.bundle.js"),__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=module=>((module=Object.create(module)).children||(module.children=[]),Object.defineProperty(module,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+module.id)}}),module),__webpack_require__.o=(obj,prop)=>Object.prototype.hasOwnProperty.call(obj,prop),inProgress={},__webpack_require__.l=(url,done,key,chunkId)=>{if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i<scripts.length;i++){var s=scripts[i];if(s.getAttribute("src")==url||s.getAttribute("data-webpack")=="quickblox-react-ui-kit:"+key){script=s;break}}script||(needAttach=!0,(script=document.createElement("script")).charset="utf-8",script.timeout=120,__webpack_require__.nc&&script.setAttribute("nonce",__webpack_require__.nc),script.setAttribute("data-webpack","quickblox-react-ui-kit:"+key),script.src=url),inProgress[url]=[done];var onScriptComplete=(prev,event)=>{script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((fn=>fn(event))),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=exports=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.p="",(()=>{var installedChunks={354:0};__webpack_require__.f.j=(chunkId,promises)=>{var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(354!=chunkId){var promise=new Promise(((resolve,reject)=>installedChunkData=installedChunks[chunkId]=[resolve,reject]));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(event=>{if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=chunkId=>0===installedChunks[chunkId];var webpackJsonpCallback=(parentChunkLoadingFunction,data)=>{var moduleId,chunkId,chunkIds=data[0],moreModules=data[1],runtime=data[2],i=0;if(chunkIds.some((id=>0!==installedChunks[id]))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i<chunkIds.length;i++)chunkId=chunkIds[i],__webpack_require__.o(installedChunks,chunkId)&&installedChunks[chunkId]&&installedChunks[chunkId][0](),installedChunks[chunkId]=0;return __webpack_require__.O(result)},chunkLoadingGlobal=self.webpackChunkquickblox_react_ui_kit=self.webpackChunkquickblox_react_ui_kit||[];chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null,0)),chunkLoadingGlobal.push=webpackJsonpCallback.bind(null,chunkLoadingGlobal.push.bind(chunkLoadingGlobal))})(),__webpack_require__.nc=void 0})();
|