quickblox-react-ui-kit 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +288 -255
- package/dist/Presentation/Views/Dialogs/Dialogs.d.ts +3 -0
- package/dist/Presentation/Views/Dialogs/useDialogsViewModel.d.ts +3 -1
- package/dist/Presentation/{components/UI → assets}/ DefaultThemes/DefaultTheme.d.ts +2 -2
- package/dist/Presentation/assets/DarkTheme.d.ts +2 -2
- package/dist/Presentation/assets/LightTheme.d.ts +2 -2
- package/dist/Presentation/assets/{Theme.d.ts → UiKitTheme.d.ts} +1 -1
- package/dist/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.d.ts +2 -2
- package/dist/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.d.ts +2 -0
- package/dist/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.d.ts +2 -0
- package/dist/Presentation/components/UI/Dialogs/MessagesView/MessagesView.d.ts +2 -0
- package/dist/Presentation/components/UI/Dialogs/MessagesView/{useMessagesViewModelWithMockUseCase.d.ts → useMessagesViewModel.d.ts} +1 -1
- package/dist/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.d.ts +2 -2
- package/dist/Presentation/components/layouts/Desktop/{DesktopLayoutForMockModels.d.ts → DesktopLayout.d.ts} +2 -2
- package/dist/Presentation/components/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +7 -0
- package/dist/index-ui.d.ts +6 -5
- package/dist/index-ui.js +49 -93
- package/package.json +9 -2
- package/.prettierignore +0 -4
- package/.prettierrc +0 -8
- package/dist/MyButton/MyButton.d.ts +0 -9
- package/dist/MyInput/MyInput.d.ts +0 -10
- package/dist/Presentation/Views/Dialogs/useDialogsViewModelWithMockUseCase.d.ts +0 -4
- package/dist/Presentation/components/layouts/Desktop/Desktop.d.ts +0 -4
- package/dist/Presentation/components/layouts/TestStage/TestStageWithMockData/TestStageWithMockData.d.ts +0 -3
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -47
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +0 -25
- package/public/quickblox.js +0 -54609
- package/public/robots.txt +0 -3
- package/src/App.scss +0 -0
- package/src/App.tsx +0 -230
- package/src/CommonTypes/FunctionResult.ts +0 -4
- package/src/Data/Stubs.ts +0 -1131
- package/src/Data/dto/dialog/LocalDialogDTO.ts +0 -42
- package/src/Data/dto/dialog/LocalDialogsDTO.ts +0 -21
- package/src/Data/dto/dialog/RemoteDialogDTO.ts +0 -58
- package/src/Data/dto/dialog/RemoteDialogsDTO.ts +0 -21
- package/src/Data/dto/file/LocalFileDTO.ts +0 -26
- package/src/Data/dto/file/RemoteFileDTO.ts +0 -26
- package/src/Data/dto/message/LocalMessageDTO.ts +0 -51
- package/src/Data/dto/message/LocalMessagesDTO.ts +0 -21
- package/src/Data/dto/message/RemoteMessageDTO.ts +0 -51
- package/src/Data/dto/message/RemoteMessagesDTO.ts +0 -21
- package/src/Data/dto/user/LocalUserDTO.ts +0 -37
- package/src/Data/dto/user/LocalUsersDTO.ts +0 -23
- package/src/Data/dto/user/RemoteUserDTO.ts +0 -37
- package/src/Data/dto/user/RemoteUsersDTO.ts +0 -21
- package/src/Data/mapper/DialogLocalDTOMapper.ts +0 -742
- package/src/Data/mapper/DialogRemoteDTOMapper.ts +0 -776
- package/src/Data/mapper/FileLocalDTOMapper.ts +0 -253
- package/src/Data/mapper/FileRemoteDTOMapper.ts +0 -265
- package/src/Data/mapper/IMapper.ts +0 -14
- package/src/Data/mapper/MessageLocalDTOMapper.ts +0 -425
- package/src/Data/mapper/MessageRemoteDTOMapper.ts +0 -430
- package/src/Data/mapper/UserLocalDTOMapper.ts +0 -381
- package/src/Data/mapper/UserRemoteDTOMapper.ts +0 -393
- package/src/Data/repository/ConnectionRepository.ts +0 -128
- package/src/Data/repository/DialogsRepository.ts +0 -422
- package/src/Data/repository/EventMessagesRepository.ts +0 -291
- package/src/Data/repository/FileRepository.ts +0 -110
- package/src/Data/repository/MessagesRepository.ts +0 -288
- package/src/Data/repository/UsersRepository.ts +0 -324
- package/src/Data/source/exception/LocalDataSourceException.ts +0 -17
- package/src/Data/source/exception/MapperDTOException.ts +0 -19
- package/src/Data/source/exception/RemoteDataSourceException.ts +0 -28
- package/src/Data/source/exception/RepositoryException.ts +0 -27
- package/src/Data/source/local/ChatLocalStorageDataSource.ts +0 -262
- package/src/Data/source/local/ILocalDataSource.ts +0 -45
- package/src/Data/source/local/ILocalFileDataSource.ts +0 -11
- package/src/Data/source/local/LocalDataSource.ts +0 -377
- package/src/Data/source/local/LocalFileDataSource.ts +0 -22
- package/src/Data/source/remote/IRemoteDataSource.ts +0 -112
- package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +0 -401
- package/src/Data/source/remote/Mapper/FileDTOMapper.ts +0 -276
- package/src/Data/source/remote/Mapper/IDTOMapper.ts +0 -4
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +0 -399
- package/src/Data/source/remote/Mapper/UserDTOMapper.ts +0 -344
- package/src/Data/source/remote/RemoteDataSource.ts +0 -1278
- package/src/Domain/entity/Chat.ts +0 -4
- package/src/Domain/entity/ChatMessageAttachmentEntity.ts +0 -15
- package/src/Domain/entity/CustomDataEntity.ts +0 -3
- package/src/Domain/entity/DialogEntity.ts +0 -15
- package/src/Domain/entity/DialogEventInfo.ts +0 -15
- package/src/Domain/entity/DialogTypes.ts +0 -7
- package/src/Domain/entity/EventMessageType.ts +0 -7
- package/src/Domain/entity/FileEntity.ts +0 -11
- package/src/Domain/entity/FileTypes.ts +0 -9
- package/src/Domain/entity/GroupDialogEntity.ts +0 -54
- package/src/Domain/entity/LastMessageEntity.ts +0 -5
- package/src/Domain/entity/MessageEntity.ts +0 -25
- package/src/Domain/entity/NotificationTypes.ts +0 -7
- package/src/Domain/entity/PrivateDialogEntity.ts +0 -46
- package/src/Domain/entity/PublicDialogEntity.ts +0 -72
- package/src/Domain/entity/UserEntity.ts +0 -22
- package/src/Domain/exception/domain/DomainExecption.ts +0 -5
- package/src/Domain/repository/IDialogsRepository.ts +0 -40
- package/src/Domain/repository/IFileRepository.ts +0 -9
- package/src/Domain/repository/IMessagesRepository.ts +0 -28
- package/src/Domain/repository/IUsersRepository.ts +0 -13
- package/src/Domain/repository/Pagination.ts +0 -48
- package/src/Domain/use_cases/CreateDialogUseCase.ts +0 -73
- package/src/Domain/use_cases/GetAllDialogsUseCase.ts +0 -20
- package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +0 -45
- package/src/Domain/use_cases/GetAllMessagesForDialog.ts +0 -61
- package/src/Domain/use_cases/GetAllUsersUseCase.ts +0 -34
- package/src/Domain/use_cases/GetDialogByIdUseCase.ts +0 -28
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +0 -22
- package/src/Domain/use_cases/LeaveDialogUseCase.ts +0 -109
- package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +0 -103
- package/src/Domain/use_cases/SendTextMessageUseCase.ts +0 -26
- package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +0 -141
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +0 -69
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts +0 -61
- package/src/Domain/use_cases/SyncDialogsUseCase.ts +0 -246
- package/src/Domain/use_cases/UpdateDialogUseCase.ts +0 -65
- package/src/Domain/use_cases/UploadFileUseCase.ts +0 -24
- package/src/Domain/use_cases/UserTypingMessageUseCase.ts +0 -51
- package/src/Domain/use_cases/base/BaseUseCase.ts +0 -77
- package/src/Domain/use_cases/base/IUseCase.ts +0 -5
- package/src/Domain/use_cases/base/Subscribable/ISubscribable.ts +0 -6
- package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +0 -143
- package/src/MyButton/MyButton.scss +0 -11
- package/src/MyButton/MyButton.tsx +0 -25
- package/src/MyInput/MyInput.scss +0 -9
- package/src/MyInput/MyInput.tsx +0 -36
- package/src/Presentation/.gitkeep +0 -0
- package/src/Presentation/Views/Base/BaseViewModel.ts +0 -66
- package/src/Presentation/Views/CreateDialogFlow/CreateNewDialogFlow.tsx +0 -187
- package/src/Presentation/Views/Dialogs/DialogViewModel.ts +0 -23
- package/src/Presentation/Views/Dialogs/Dialogs.scss +0 -66
- package/src/Presentation/Views/Dialogs/Dialogs.tsx +0 -372
- package/src/Presentation/Views/Dialogs/useDialogsViewModel.ts +0 -136
- package/src/Presentation/Views/Dialogs/useDialogsViewModelWithMockUseCase.ts +0 -345
- package/src/Presentation/Views/Navigation/More.svg +0 -7
- package/src/Presentation/assets/DarkTheme.ts +0 -58
- package/src/Presentation/assets/LightTheme.ts +0 -58
- package/src/Presentation/assets/Theme.ts +0 -143
- package/src/Presentation/assets/ThemeScheme.ts +0 -83
- package/src/Presentation/assets/fonts/.gitkeep +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff2 +0 -0
- package/src/Presentation/assets/img/Artem_Koltunov_Selfi.png +0 -0
- package/src/Presentation/assets/img/bee-img.png +0 -0
- package/src/Presentation/assets/styles/_fonts.scss +0 -32
- package/src/Presentation/assets/styles/_reset-styles.scss +0 -435
- package/src/Presentation/assets/styles/_theme_colors_scheme.scss +0 -56
- package/src/Presentation/assets/styles/_theme_dark.scss +0 -33
- package/src/Presentation/assets/styles/_theme_light.scss +0 -33
- package/src/Presentation/assets/styles/_variables.scss +0 -2
- package/src/Presentation/components/Button.js +0 -5
- package/src/Presentation/components/Navbar.tsx +0 -45
- package/src/Presentation/components/TextInput.js +0 -10
- package/src/Presentation/components/UI/ DefaultThemes/CustomTheme.ts +0 -13
- package/src/Presentation/components/UI/ DefaultThemes/DefaultTheme.ts +0 -58
- package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +0 -40
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.scss +0 -0
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +0 -30
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.scss +0 -127
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +0 -62
- package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.scss +0 -45
- package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.tsx +0 -77
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.scss +0 -429
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.tsx +0 -646
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.scss +0 -42
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.tsx +0 -26
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.scss +0 -95
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.tsx +0 -42
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.scss +0 -60
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.tsx +0 -65
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersListViewModel.ts +0 -13
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/useUsersListViewModel.ts +0 -81
- package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.scss +0 -183
- package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.tsx +0 -262
- package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.scss +0 -32
- package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.tsx +0 -59
- package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.scss +0 -67
- package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.tsx +0 -112
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.scss +0 -146
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.tsx +0 -374
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembersViewModel.ts +0 -18
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +0 -113
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +0 -87
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersResultViewModel.ts +0 -12
- package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.scss +0 -37
- package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.tsx +0 -22
- package/src/Presentation/components/UI/Dialogs/InviteMembers/useInviteMembersViewModel.ts +0 -116
- package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.scss +0 -128
- package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.tsx +0 -89
- package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.scss +0 -7
- package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.tsx +0 -27
- package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.scss +0 -133
- package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.tsx +0 -137
- package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.scss +0 -11
- package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.tsx +0 -25
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.scss +0 -327
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.tsx +0 -794
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesViewModel.ts +0 -20
- package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.scss +0 -7
- package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.tsx +0 -33
- package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.scss +0 -35
- package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.tsx +0 -86
- package/src/Presentation/components/UI/Dialogs/MessagesView/useMessagesViewModelWithMockUseCase.ts +0 -452
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.scss +0 -100
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.tsx +0 -405
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialogViewModel.ts +0 -42
- package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.scss +0 -35
- package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.tsx +0 -89
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +0 -61
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +0 -48
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +0 -74
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +0 -72
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +0 -21
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.tsx +0 -41
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +0 -3
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +0 -41
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.tsx +0 -67
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/IconsCommonTypes.ts +0 -6
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +0 -4
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/index.tsx +0 -26
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.tsx +0 -36
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/index.tsx +0 -36
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.tsx +0 -24
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +0 -4
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.tsx +0 -26
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.tsx +0 -22
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +0 -6
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +0 -24
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +0 -45
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +0 -95
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +0 -45
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +0 -97
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +0 -46
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +0 -97
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +0 -46
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.tsx +0 -85
- package/src/Presentation/components/layouts/Desktop/Desktop.tsx +0 -103
- package/src/Presentation/components/layouts/Desktop/DesktopLayout.scss +0 -31
- package/src/Presentation/components/layouts/Desktop/DesktopLayoutForMockModels.tsx +0 -31
- package/src/Presentation/components/layouts/LayoutCommonTypes.ts +0 -7
- package/src/Presentation/components/layouts/TestStage/LoginView/Login.scss +0 -71
- package/src/Presentation/components/layouts/TestStage/LoginView/Login.tsx +0 -116
- package/src/Presentation/components/layouts/TestStage/TestStageMarkup.scss +0 -24
- package/src/Presentation/components/layouts/TestStage/TestStageMarkup.tsx +0 -1109
- package/src/Presentation/components/layouts/TestStage/TestStageWithMockData/TestStageWithMockData.tsx +0 -209
- package/src/Presentation/components/providers/ModalContextProvider/Modal.scss +0 -71
- package/src/Presentation/components/providers/ModalContextProvider/Modal.tsx +0 -131
- package/src/Presentation/components/providers/ModalContextProvider/ModalContextProvider.tsx +0 -38
- package/src/Presentation/components/providers/ModalContextProvider/useModal.ts +0 -39
- package/src/Presentation/components/providers/ProviderProps.ts +0 -5
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +0 -255
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useEventMessagesRepository.ts +0 -10
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQBConnection.ts +0 -38
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQbDataContext.ts +0 -82
- package/src/QBconfig.ts +0 -41
- package/src/index-ui.ts +0 -60
- package/src/index.scss +0 -74
- package/src/index.tsx +0 -25
- package/src/logo.svg +0 -1
- package/src/qb-api-calls/index.ts +0 -543
- package/src/react-app-env.d.ts +0 -1
- package/src/setupTests.ts +0 -5
- package/src/utils/DateTimeFormatter.ts +0 -35
- package/src/utils/parse.ts +0 -74
- package/tsconfig.json +0 -33
- package/typedoc.json +0 -4
- package/webpack.config.js +0 -56
- /package/dist/Presentation/{components/UI → assets}/ DefaultThemes/CustomTheme.d.ts +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,700&display=swap');
|
|
2
|
-
////font-family: 'Ubuntu', sans-serif;
|
|
3
|
-
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');
|
|
4
|
-
////font-family: 'Roboto', sans-serif;
|
|
5
|
-
/*
|
|
6
|
-
@font-face {
|
|
7
|
-
font-family: "Roboto-Regular";
|
|
8
|
-
src: url("../fonts/Roboto-Regular.eot");
|
|
9
|
-
src: local("☺"), url("../fonts/Roboto-Regular.woff") format("woff"),
|
|
10
|
-
url("../fonts/Roboto-Regular.ttf") format("truetype");
|
|
11
|
-
font-weight: normal;
|
|
12
|
-
font-style: normal;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: "Roboto-Medium";
|
|
17
|
-
src: url("../fonts/Roboto-Medium.eot");
|
|
18
|
-
src: local("☺"), url("../fonts/Roboto-Medium.woff") format("woff"),
|
|
19
|
-
url("../fonts/Roboto-Medium.ttf") format("truetype");
|
|
20
|
-
font-weight: normal;
|
|
21
|
-
font-style: normal;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@font-face {
|
|
25
|
-
font-family: "Roboto-Bold";
|
|
26
|
-
src: url("../fonts/Roboto-Bold.eot");
|
|
27
|
-
src: local("☺"), url("../fonts/Roboto-Bold.woff") format("woff"),
|
|
28
|
-
url("../fonts/Roboto-Bold.ttf") format("truetype");
|
|
29
|
-
font-weight: normal;
|
|
30
|
-
font-style: normal;
|
|
31
|
-
}
|
|
32
|
-
*/
|
|
@@ -1,435 +0,0 @@
|
|
|
1
|
-
/* http://meyerweb.com/eric/tools/css/reset/
|
|
2
|
-
v2.0-modified | 20110126
|
|
3
|
-
License: none (public domain)
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
html, body, div, span, applet, object, iframe,
|
|
7
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
8
|
-
a, abbr, acronym, address, big, cite, code,
|
|
9
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
10
|
-
small, strike, strong, sub, sup, tt, var,
|
|
11
|
-
b, u, i, center,
|
|
12
|
-
dl, dt, dd, ol, ul, li,
|
|
13
|
-
fieldset, form, label, legend,
|
|
14
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
15
|
-
article, aside, canvas, details, embed,
|
|
16
|
-
figure, figcaption, footer, header, hgroup,
|
|
17
|
-
menu, nav, output, ruby, section, summary,
|
|
18
|
-
time, mark, audio, video {
|
|
19
|
-
margin: 0;
|
|
20
|
-
padding: 0;
|
|
21
|
-
border: 0;
|
|
22
|
-
font-size: 100%;
|
|
23
|
-
font: inherit;
|
|
24
|
-
vertical-align: baseline;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/* make sure to set some focus styles for accessibility */
|
|
28
|
-
:focus {
|
|
29
|
-
outline: 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/* HTML5 display-role reset for older browsers */
|
|
33
|
-
article, aside, details, figcaption, figure,
|
|
34
|
-
footer, header, hgroup, menu, nav, section {
|
|
35
|
-
display: block;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
body {
|
|
39
|
-
line-height: 1;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
ol, ul {
|
|
43
|
-
list-style: none;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
blockquote, q {
|
|
47
|
-
quotes: none;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
blockquote:before, blockquote:after,
|
|
51
|
-
q:before, q:after {
|
|
52
|
-
content: '';
|
|
53
|
-
content: none;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
table {
|
|
57
|
-
border-collapse: collapse;
|
|
58
|
-
border-spacing: 0;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
input[type=search]::-webkit-search-cancel-button,
|
|
62
|
-
input[type=search]::-webkit-search-decoration,
|
|
63
|
-
input[type=search]::-webkit-search-results-button,
|
|
64
|
-
input[type=search]::-webkit-search-results-decoration {
|
|
65
|
-
-webkit-appearance: none;
|
|
66
|
-
-moz-appearance: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
input[type=search] {
|
|
70
|
-
-webkit-appearance: none;
|
|
71
|
-
-moz-appearance: none;
|
|
72
|
-
-webkit-box-sizing: content-box;
|
|
73
|
-
-moz-box-sizing: content-box;
|
|
74
|
-
box-sizing: content-box;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
textarea {
|
|
78
|
-
overflow: auto;
|
|
79
|
-
vertical-align: top;
|
|
80
|
-
resize: vertical;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
|
85
|
-
*/
|
|
86
|
-
|
|
87
|
-
audio,
|
|
88
|
-
canvas,
|
|
89
|
-
video {
|
|
90
|
-
display: inline-block;
|
|
91
|
-
*display: inline;
|
|
92
|
-
*zoom: 1;
|
|
93
|
-
max-width: 100%;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* Prevent modern browsers from displaying `audio` without controls.
|
|
98
|
-
* Remove excess height in iOS 5 devices.
|
|
99
|
-
*/
|
|
100
|
-
|
|
101
|
-
audio:not([controls]) {
|
|
102
|
-
display: none;
|
|
103
|
-
height: 0;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
|
|
108
|
-
* Known issue: no IE 6 support.
|
|
109
|
-
*/
|
|
110
|
-
|
|
111
|
-
[hidden] {
|
|
112
|
-
display: none;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
|
|
117
|
-
* `em` units.
|
|
118
|
-
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
|
119
|
-
* user zoom.
|
|
120
|
-
*/
|
|
121
|
-
|
|
122
|
-
html {
|
|
123
|
-
font-size: 100%; /* 1 */
|
|
124
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
125
|
-
-ms-text-size-adjust: 100%; /* 2 */
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* Address `outline` inconsistency between Chrome and other browsers.
|
|
130
|
-
*/
|
|
131
|
-
|
|
132
|
-
a:focus {
|
|
133
|
-
outline: thin dotted;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* Improve readability when focused and also mouse hovered in all browsers.
|
|
138
|
-
*/
|
|
139
|
-
|
|
140
|
-
a:active,
|
|
141
|
-
a:hover {
|
|
142
|
-
outline: 0;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
/**
|
|
146
|
-
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
|
147
|
-
* 2. Improve image quality when scaled in IE 7.
|
|
148
|
-
*/
|
|
149
|
-
|
|
150
|
-
img {
|
|
151
|
-
border: 0; /* 1 */
|
|
152
|
-
-ms-interpolation-mode: bicubic; /* 2 */
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
/**
|
|
156
|
-
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
|
157
|
-
*/
|
|
158
|
-
|
|
159
|
-
figure {
|
|
160
|
-
margin: 0;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* Correct margin displayed oddly in IE 6/7.
|
|
165
|
-
*/
|
|
166
|
-
|
|
167
|
-
form {
|
|
168
|
-
margin: 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* Define consistent border, margin, and padding.
|
|
173
|
-
*/
|
|
174
|
-
|
|
175
|
-
fieldset {
|
|
176
|
-
border: 1px solid #c0c0c0;
|
|
177
|
-
margin: 0 2px;
|
|
178
|
-
padding: 0.35em 0.625em 0.75em;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* 1. Correct color not being inherited in IE 6/7/8/9.
|
|
183
|
-
* 2. Correct text not wrapping in Firefox 3.
|
|
184
|
-
* 3. Correct alignment displayed oddly in IE 6/7.
|
|
185
|
-
*/
|
|
186
|
-
|
|
187
|
-
legend {
|
|
188
|
-
border: 0; /* 1 */
|
|
189
|
-
padding: 0;
|
|
190
|
-
white-space: normal; /* 2 */
|
|
191
|
-
*margin-left: -7px; /* 3 */
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
/**
|
|
195
|
-
* 1. Correct font size not being inherited in all browsers.
|
|
196
|
-
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
|
197
|
-
* and Chrome.
|
|
198
|
-
* 3. Improve appearance and consistency in all browsers.
|
|
199
|
-
*/
|
|
200
|
-
|
|
201
|
-
button,
|
|
202
|
-
input,
|
|
203
|
-
select,
|
|
204
|
-
textarea {
|
|
205
|
-
font-size: 100%; /* 1 */
|
|
206
|
-
margin: 0; /* 2 */
|
|
207
|
-
vertical-align: baseline; /* 3 */
|
|
208
|
-
*vertical-align: middle; /* 3 */
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
/**
|
|
212
|
-
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
|
|
213
|
-
* the UA stylesheet.
|
|
214
|
-
*/
|
|
215
|
-
|
|
216
|
-
button,
|
|
217
|
-
input {
|
|
218
|
-
line-height: normal;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
|
223
|
-
* All other form control elements do not inherit `text-transform` values.
|
|
224
|
-
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
|
|
225
|
-
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
|
226
|
-
*/
|
|
227
|
-
|
|
228
|
-
button,
|
|
229
|
-
select {
|
|
230
|
-
text-transform: none;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
/**
|
|
234
|
-
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
|
235
|
-
* and `video` controls.
|
|
236
|
-
* 2. Correct inability to style clickable `input` types in iOS.
|
|
237
|
-
* 3. Improve usability and consistency of cursor style between image-type
|
|
238
|
-
* `input` and others.
|
|
239
|
-
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
|
|
240
|
-
* Known issue: inner spacing remains in IE 6.
|
|
241
|
-
*/
|
|
242
|
-
|
|
243
|
-
button,
|
|
244
|
-
html input[type="button"], /* 1 */
|
|
245
|
-
input[type="reset"],
|
|
246
|
-
input[type="submit"] {
|
|
247
|
-
-webkit-appearance: button; /* 2 */
|
|
248
|
-
cursor: pointer; /* 3 */
|
|
249
|
-
*overflow: visible; /* 4 */
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
/**
|
|
253
|
-
* Re-set default cursor for disabled elements.
|
|
254
|
-
*/
|
|
255
|
-
|
|
256
|
-
button[disabled],
|
|
257
|
-
html input[disabled] {
|
|
258
|
-
cursor: default;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
/**
|
|
262
|
-
* 1. Address box sizing set to content-box in IE 8/9.
|
|
263
|
-
* 2. Remove excess padding in IE 8/9.
|
|
264
|
-
* 3. Remove excess padding in IE 7.
|
|
265
|
-
* Known issue: excess padding remains in IE 6.
|
|
266
|
-
*/
|
|
267
|
-
|
|
268
|
-
input[type="checkbox"],
|
|
269
|
-
input[type="radio"] {
|
|
270
|
-
box-sizing: border-box; /* 1 */
|
|
271
|
-
padding: 0; /* 2 */
|
|
272
|
-
*height: 13px; /* 3 */
|
|
273
|
-
*width: 13px; /* 3 */
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
|
278
|
-
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
|
279
|
-
* (include `-moz` to future-proof).
|
|
280
|
-
*/
|
|
281
|
-
|
|
282
|
-
input[type="search"] {
|
|
283
|
-
-webkit-appearance: textfield; /* 1 */
|
|
284
|
-
-moz-box-sizing: content-box;
|
|
285
|
-
-webkit-box-sizing: content-box; /* 2 */
|
|
286
|
-
box-sizing: content-box;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/**
|
|
290
|
-
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
|
291
|
-
* on OS X.
|
|
292
|
-
*/
|
|
293
|
-
|
|
294
|
-
input[type="search"]::-webkit-search-cancel-button,
|
|
295
|
-
input[type="search"]::-webkit-search-decoration {
|
|
296
|
-
-webkit-appearance: none;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
/**
|
|
300
|
-
* Remove inner padding and border in Firefox 3+.
|
|
301
|
-
*/
|
|
302
|
-
|
|
303
|
-
button::-moz-focus-inner,
|
|
304
|
-
input::-moz-focus-inner {
|
|
305
|
-
border: 0;
|
|
306
|
-
padding: 0;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
/**
|
|
310
|
-
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
|
|
311
|
-
* 2. Improve readability and alignment in all browsers.
|
|
312
|
-
*/
|
|
313
|
-
|
|
314
|
-
textarea {
|
|
315
|
-
overflow: auto; /* 1 */
|
|
316
|
-
vertical-align: top; /* 2 */
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* Remove most spacing between table cells.
|
|
321
|
-
*/
|
|
322
|
-
|
|
323
|
-
table {
|
|
324
|
-
border-collapse: collapse;
|
|
325
|
-
border-spacing: 0;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
html,
|
|
329
|
-
button,
|
|
330
|
-
input,
|
|
331
|
-
select,
|
|
332
|
-
textarea {
|
|
333
|
-
color: #222;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
::-moz-selection {
|
|
338
|
-
background: #b3d4fc;
|
|
339
|
-
text-shadow: none;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
::selection {
|
|
343
|
-
background: #b3d4fc;
|
|
344
|
-
text-shadow: none;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
img {
|
|
348
|
-
vertical-align: middle;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
fieldset {
|
|
352
|
-
border: 0;
|
|
353
|
-
margin: 0;
|
|
354
|
-
padding: 0;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
textarea {
|
|
358
|
-
resize: vertical;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.chromeframe {
|
|
362
|
-
margin: 0.2em 0;
|
|
363
|
-
background: #ccc;
|
|
364
|
-
color: #000;
|
|
365
|
-
padding: 0.2em 0;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
* {
|
|
369
|
-
padding: 0;
|
|
370
|
-
margin: 0;
|
|
371
|
-
border: 0;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
*, *:before, *:after {
|
|
375
|
-
-moz-box-sizing: border-box;
|
|
376
|
-
-webkit-box-sizing: border-box;
|
|
377
|
-
box-sizing: border-box;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
:focus, :active {
|
|
381
|
-
outline: none;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
a:focus, a:active {
|
|
385
|
-
outline: none;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
nav, footer, header, aside {
|
|
389
|
-
display: block;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
html, body {
|
|
393
|
-
height: 100%;
|
|
394
|
-
width: 100%;
|
|
395
|
-
font-size: 100%;
|
|
396
|
-
line-height: 1;
|
|
397
|
-
font-size: 14px;
|
|
398
|
-
-ms-text-size-adjust: 100%;
|
|
399
|
-
-moz-text-size-adjust: 100%;
|
|
400
|
-
-webkit-text-size-adjust: 100%;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
input, button, textarea {
|
|
404
|
-
font-family: inherit;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
input::-ms-clear {
|
|
408
|
-
display: none;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
button {
|
|
412
|
-
cursor: pointer;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
button::-moz-focus-inner {
|
|
416
|
-
padding: 0;
|
|
417
|
-
border: 0;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
a, a:visited {
|
|
421
|
-
text-decoration: none;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
ul li {
|
|
425
|
-
list-style: none;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
img {
|
|
429
|
-
vertical-align: top;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
h1, h2, h3, h4, h5, h6 {
|
|
433
|
-
font-size: inherit;
|
|
434
|
-
font-weight: 400;
|
|
435
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
$qb-light-primary: #3978FC;
|
|
2
|
-
$qb-light-color-background: #FFFFFF;
|
|
3
|
-
$qb-light-color-divider: #E7EFFF;
|
|
4
|
-
$qb-light-color-font: #0B121B;
|
|
5
|
-
|
|
6
|
-
$qb-dark-primary: #202F3E;
|
|
7
|
-
$qb-dark-color-background: #414E5B;
|
|
8
|
-
$qb-dark-color-divider: #FFFFFF;
|
|
9
|
-
$qb-dark-color-font: #3978FC;
|
|
10
|
-
|
|
11
|
-
$background-overlay-light: rgba(19, 29, 40, .80);
|
|
12
|
-
$background-overlay-dark: rgba(144, 151, 159, .80);
|
|
13
|
-
$primary-50: #E7EFFF;
|
|
14
|
-
$primary-100: #C4D7FE;
|
|
15
|
-
$primary-200: #9CBCFE;
|
|
16
|
-
$primary-300: #74A1FD;
|
|
17
|
-
$primary-400: #578CFC;
|
|
18
|
-
$primary-500: #3978FC;
|
|
19
|
-
$primary-600: #3370FC;
|
|
20
|
-
$primary-700: #2C65FB;
|
|
21
|
-
$primary-800: #245BFB;
|
|
22
|
-
$primary-900: #1748FA;
|
|
23
|
-
$primary-a-100: #FFFFFF;
|
|
24
|
-
$primary-a-200: #F7F9FF;
|
|
25
|
-
$primary-a-400: #C4CFFF;
|
|
26
|
-
$primary-a-700: #ABBAFF;
|
|
27
|
-
|
|
28
|
-
$secondary-50: #E4E6E8;
|
|
29
|
-
$secondary-100: #BCC1C5;
|
|
30
|
-
$secondary-200: #90979F;
|
|
31
|
-
$secondary-300: #636D78;
|
|
32
|
-
$secondary-400: #414E5B;
|
|
33
|
-
$secondary-500: #202F3E;
|
|
34
|
-
$secondary-600: #1C2A38;
|
|
35
|
-
$secondary-700: #182330;
|
|
36
|
-
$secondary-800: #131D28;
|
|
37
|
-
$secondary-900: #0B121B;
|
|
38
|
-
$secondary-a-100: #74A1FD;
|
|
39
|
-
$secondary-a-200: #3978FC;
|
|
40
|
-
$secondary-a-400: #245BFB;
|
|
41
|
-
$secondary-a-700: #0050DC;
|
|
42
|
-
|
|
43
|
-
$system-green-100: #C8F1D6;
|
|
44
|
-
$system-green-200: #A4E7BB;
|
|
45
|
-
$system-green-300: #80DDA0;
|
|
46
|
-
$system-green-400: #64D68B;
|
|
47
|
-
$system-green-500: #49CF77;
|
|
48
|
-
|
|
49
|
-
$error-100: #FFC4C1;
|
|
50
|
-
$error-200: #FF9D98;
|
|
51
|
-
$error-300: #FF766E;
|
|
52
|
-
$error-400: #FF584F;
|
|
53
|
-
$error-500: #FF3B30;
|
|
54
|
-
|
|
55
|
-
$information: #FDB0FF;
|
|
56
|
-
$highlight: #FFFDC1;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
@import "theme_colors_scheme";
|
|
2
|
-
// https://sass-lang.com/documentation/breaking-changes/css-vars
|
|
3
|
-
|
|
4
|
-
html[data-theme="dark"]{
|
|
5
|
-
--primary: #{$primary-500};
|
|
6
|
-
--color-background: #{$secondary-900};
|
|
7
|
-
--color-background-modal: #{$secondary-200};
|
|
8
|
-
--color-background-overlay: #{$secondary-900};
|
|
9
|
-
--color-divider: #{$secondary-400};
|
|
10
|
-
--color-font: #{$primary-a-100};
|
|
11
|
-
--color-icon: #{$primary-500};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
--color-background-info: #{$primary-500};
|
|
15
|
-
--tertiary-elements: #{$background-overlay-dark};
|
|
16
|
-
--main-elements: #{$primary-300};
|
|
17
|
-
--secondary-elements: #{$primary-a-100};
|
|
18
|
-
--input-elements: #{$secondary-200};
|
|
19
|
-
--disabled-elements: #{$secondary-300};
|
|
20
|
-
--field-border: #{$secondary-200};
|
|
21
|
-
--main-text: #{$primary-a-100};
|
|
22
|
-
--secondary-text: #{$secondary-200};
|
|
23
|
-
--caption: #{$secondary-100};
|
|
24
|
-
--main-background: #{$secondary-500};
|
|
25
|
-
--secondary-background: #{$secondary-800};
|
|
26
|
-
--incoming-background: #{$secondary-400};
|
|
27
|
-
--outgoing-background: #{$primary-500};
|
|
28
|
-
--dropdown-background: #{$secondary-400};
|
|
29
|
-
--chat-input: #{$secondary-800};
|
|
30
|
-
--divider: #{$secondary-400};
|
|
31
|
-
--error: #{$error-300};
|
|
32
|
-
--hightlight: #{$highlight};
|
|
33
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
@import "theme_colors_scheme";
|
|
2
|
-
|
|
3
|
-
:root{
|
|
4
|
-
--primary: #{$primary-500};
|
|
5
|
-
--color-background: #{$primary-a-100};
|
|
6
|
-
--color-background-modal: #{$primary-100};
|
|
7
|
-
--color-background-overlay: #{$secondary-900};
|
|
8
|
-
--color-divider: #{$primary-50};
|
|
9
|
-
--color-font: #{$secondary-900};
|
|
10
|
-
--color-icon: #{$primary-500};
|
|
11
|
-
|
|
12
|
-
--color-background-info:#{$primary-100};
|
|
13
|
-
--tertiary-elements: #{$secondary-300};
|
|
14
|
-
--main-elements: #{$primary-500};
|
|
15
|
-
--secondary-elements: #{$secondary-500};
|
|
16
|
-
--input-elements: #{$secondary-500};
|
|
17
|
-
--disabled-elements: #{$secondary-100};
|
|
18
|
-
--field-border: #{$secondary-200};
|
|
19
|
-
--main-text: #{$secondary-900};
|
|
20
|
-
--secondary-text: #{$secondary-300};
|
|
21
|
-
--caption: #{$secondary-200};
|
|
22
|
-
--main-background: #{$primary-a-100};
|
|
23
|
-
--secondary-background: #{$primary-a-100}; // #{$primary-50};
|
|
24
|
-
--secondary-background-modal: #{$background-overlay-light};
|
|
25
|
-
--incoming-background: #{$secondary-50};
|
|
26
|
-
--outgoing-background: #{$primary-50};
|
|
27
|
-
--dropdown-background: #{$primary-a-100};
|
|
28
|
-
--chat-input: #{$primary-a-200};
|
|
29
|
-
--divider: #{$primary-50};
|
|
30
|
-
--error: #{$error-500};
|
|
31
|
-
--hightlight: #{$highlight};
|
|
32
|
-
|
|
33
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { Link } from 'react-router-dom';
|
|
2
|
-
|
|
3
|
-
export default function Navbar() {
|
|
4
|
-
return (
|
|
5
|
-
<nav className="navbar navbar-expand-lg bg-light">
|
|
6
|
-
<div className="container-fluid">
|
|
7
|
-
<button
|
|
8
|
-
className="navbar-toggler"
|
|
9
|
-
type="button"
|
|
10
|
-
data-bs-toggle="collapse"
|
|
11
|
-
data-bs-target="#navbarNav"
|
|
12
|
-
aria-controls="navbarNav"
|
|
13
|
-
aria-expanded="false"
|
|
14
|
-
aria-label="Toggle navigation"
|
|
15
|
-
>
|
|
16
|
-
<span className="navbar-toggler-icon" />
|
|
17
|
-
</button>
|
|
18
|
-
<div className="collapse navbar-collapse" id="navbarNav">
|
|
19
|
-
<ul className="navbar-nav">
|
|
20
|
-
<li className="nav-item">
|
|
21
|
-
<Link className="nav-link" to="/">
|
|
22
|
-
Login
|
|
23
|
-
</Link>
|
|
24
|
-
</li>
|
|
25
|
-
<li className="nav-item">
|
|
26
|
-
<Link className="nav-link" to="/test-stage">
|
|
27
|
-
Markup test stage
|
|
28
|
-
</Link>
|
|
29
|
-
</li>
|
|
30
|
-
<li className="nav-item">
|
|
31
|
-
<Link className="nav-link" to="/desktop-test-mock">
|
|
32
|
-
Test Mock Sync Dialogs Use Case
|
|
33
|
-
</Link>
|
|
34
|
-
</li>
|
|
35
|
-
<li className="nav-item">
|
|
36
|
-
<Link className="nav-link" to="/desktop-test">
|
|
37
|
-
Desktop
|
|
38
|
-
</Link>
|
|
39
|
-
</li>
|
|
40
|
-
</ul>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</nav>
|
|
44
|
-
);
|
|
45
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import DefaultTheme from './DefaultTheme'
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export default class CustomTheme extends DefaultTheme {
|
|
5
|
-
// eslint-disable-next-line class-methods-use-this
|
|
6
|
-
divider = (): string => 'var(--divider)';
|
|
7
|
-
|
|
8
|
-
// eslint-disable-next-line class-methods-use-this
|
|
9
|
-
mainText = (): string => '#FFFFFF';
|
|
10
|
-
|
|
11
|
-
// eslint-disable-next-line class-methods-use-this
|
|
12
|
-
fontFamily = (): string => 'Roboto';
|
|
13
|
-
}
|