quickblox-react-ui-kit 0.4.5-beta.5 → 0.4.6-beta.1

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.
Files changed (851) hide show
  1. package/.prettierignore +4 -4
  2. package/.prettierrc +10 -10
  3. package/.storybook/main.ts +26 -26
  4. package/.storybook/preview.ts +16 -16
  5. package/LICENSE.md +18 -18
  6. package/dist/App.d.ts +3 -3
  7. package/dist/CommonTypes/BaseViewModel.d.ts +58 -58
  8. package/dist/CommonTypes/CommonTypes.d.ts +189 -189
  9. package/dist/CommonTypes/FunctionResult.d.ts +4 -4
  10. package/dist/Data/Creator.d.ts +30 -30
  11. package/dist/Data/DefaultConfigurations.d.ts +7 -7
  12. package/dist/Data/Stubs.d.ts +31 -31
  13. package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +16 -16
  14. package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +9 -9
  15. package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +18 -18
  16. package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +9 -9
  17. package/dist/Data/dto/file/LocalFileDTO.d.ts +10 -10
  18. package/dist/Data/dto/file/RemoteFileDTO.d.ts +10 -10
  19. package/dist/Data/dto/message/LocalMessageDTO.d.ts +20 -20
  20. package/dist/Data/dto/message/LocalMessagesDTO.d.ts +9 -9
  21. package/dist/Data/dto/message/RemoteMessageDTO.d.ts +23 -23
  22. package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +9 -9
  23. package/dist/Data/dto/user/LocalUserDTO.d.ts +14 -14
  24. package/dist/Data/dto/user/LocalUsersDTO.d.ts +9 -9
  25. package/dist/Data/dto/user/RemoteUserDTO.d.ts +14 -14
  26. package/dist/Data/dto/user/RemoteUsersDTO.d.ts +9 -9
  27. package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +17 -17
  28. package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +18 -18
  29. package/dist/Data/mapper/FileLocalDTOMapper.d.ts +8 -8
  30. package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +8 -8
  31. package/dist/Data/mapper/IMapper.d.ts +4 -4
  32. package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +8 -8
  33. package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +10 -10
  34. package/dist/Data/mapper/UserLocalDTOMapper.d.ts +9 -9
  35. package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +9 -9
  36. package/dist/Data/repository/ConnectionRepository.d.ts +17 -17
  37. package/dist/Data/repository/DialogsRepository.d.ts +31 -31
  38. package/dist/Data/repository/EventMessagesRepository.d.ts +36 -36
  39. package/dist/Data/repository/FileRepository.d.ts +14 -14
  40. package/dist/Data/repository/MessagesRepository.d.ts +24 -24
  41. package/dist/Data/repository/UsersRepository.d.ts +18 -18
  42. package/dist/Data/source/AISource.d.ts +13 -13
  43. package/dist/Data/source/exception/LocalDataSourceException.d.ts +10 -10
  44. package/dist/Data/source/exception/MapperDTOException.d.ts +9 -9
  45. package/dist/Data/source/exception/RemoteDataSourceException.d.ts +15 -15
  46. package/dist/Data/source/exception/RepositoryException.d.ts +15 -15
  47. package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +8 -8
  48. package/dist/Data/source/local/ILocalDataSource.d.ts +25 -25
  49. package/dist/Data/source/local/ILocalFileDataSource.d.ts +7 -7
  50. package/dist/Data/source/local/LocalDataSource.d.ts +28 -28
  51. package/dist/Data/source/local/LocalFileDataSource.d.ts +8 -8
  52. package/dist/Data/source/remote/IRemoteDataSource.d.ts +41 -41
  53. package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +10 -10
  54. package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +7 -7
  55. package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +4 -4
  56. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +25 -25
  57. package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +7 -7
  58. package/dist/Data/source/remote/RemoteDataSource.d.ts +94 -94
  59. package/dist/Domain/entity/Chat.d.ts +4 -4
  60. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +14 -14
  61. package/dist/Domain/entity/CustomDataEntity.d.ts +3 -3
  62. package/dist/Domain/entity/DialogEntity.d.ts +13 -13
  63. package/dist/Domain/entity/DialogEventInfo.d.ts +18 -18
  64. package/dist/Domain/entity/DialogTypes.d.ts +5 -5
  65. package/dist/Domain/entity/EventMessageType.d.ts +5 -5
  66. package/dist/Domain/entity/FileEntity.d.ts +10 -10
  67. package/dist/Domain/entity/FileTypes.d.ts +6 -6
  68. package/dist/Domain/entity/GroupDialogEntity.d.ts +19 -19
  69. package/dist/Domain/entity/LastMessageEntity.d.ts +5 -5
  70. package/dist/Domain/entity/MessageEntity.d.ts +24 -24
  71. package/dist/Domain/entity/NotificationTypes.d.ts +6 -6
  72. package/dist/Domain/entity/PrivateDialogEntity.d.ts +16 -16
  73. package/dist/Domain/entity/PublicDialogEntity.d.ts +18 -18
  74. package/dist/Domain/entity/UserEntity.d.ts +13 -13
  75. package/dist/Domain/exception/domain/DomainExecption.d.ts +4 -4
  76. package/dist/Domain/repository/IDialogsRepository.d.ts +21 -21
  77. package/dist/Domain/repository/IFileRepository.d.ts +6 -6
  78. package/dist/Domain/repository/IMessagesRepository.d.ts +15 -15
  79. package/dist/Domain/repository/IUsersRepository.d.ts +8 -8
  80. package/dist/Domain/repository/Pagination.d.ts +16 -16
  81. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +13 -13
  82. package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +13 -13
  83. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +8 -8
  84. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +10 -10
  85. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +11 -11
  86. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +11 -11
  87. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +9 -9
  88. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +9 -9
  89. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +19 -19
  90. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +13 -13
  91. package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +10 -10
  92. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +9 -9
  93. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +17 -17
  94. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +11 -11
  95. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +11 -11
  96. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +23 -23
  97. package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +12 -12
  98. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +13 -13
  99. package/dist/Domain/use_cases/UploadFileUseCase.d.ts +9 -9
  100. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +13 -13
  101. package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +13 -13
  102. package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +13 -13
  103. package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +11 -11
  104. package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +15 -15
  105. package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +15 -15
  106. package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +14 -14
  107. package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +14 -14
  108. package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +12 -12
  109. package/dist/Domain/use_cases/base/BaseUseCase.d.ts +5 -5
  110. package/dist/Domain/use_cases/base/IUseCase.d.ts +5 -5
  111. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +5 -5
  112. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +24 -24
  113. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -16
  114. package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +8 -8
  115. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -20
  116. package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +11 -11
  117. package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +25 -25
  118. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +23 -23
  119. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +15 -15
  120. package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +10 -10
  121. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +23 -23
  122. package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +7 -7
  123. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +2 -2
  124. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +2 -2
  125. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +3 -3
  126. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +2 -2
  127. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +2 -2
  128. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +2 -2
  129. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +2 -2
  130. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +3 -3
  131. package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +2 -2
  132. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +12 -12
  133. package/dist/Presentation/Views/Dialog/Dialog.d.ts +18 -18
  134. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -8
  135. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +13 -13
  136. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +10 -10
  137. package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +18 -18
  138. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +25 -25
  139. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +11 -11
  140. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +7 -7
  141. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +14 -14
  142. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +12 -12
  143. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +8 -8
  144. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +14 -14
  145. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +9 -9
  146. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +11 -11
  147. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +21 -21
  148. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +9 -9
  149. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +27 -27
  150. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +5 -5
  151. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +30 -30
  152. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +12 -12
  153. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +27 -27
  154. package/dist/Presentation/Views/Dialog/Message/Message.d.ts +24 -24
  155. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +8 -8
  156. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +8 -8
  157. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +8 -8
  158. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +11 -11
  159. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +8 -8
  160. package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +14 -14
  161. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +18 -18
  162. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +15 -15
  163. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +16 -16
  164. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -12
  165. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +23 -23
  166. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +7 -7
  167. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +7 -7
  168. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +8 -8
  169. package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +4 -4
  170. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +21 -21
  171. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +10 -10
  172. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +11 -11
  173. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +9 -9
  174. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +11 -11
  175. package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +11 -11
  176. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +3 -3
  177. package/dist/Presentation/Views/DialogList/DialogList.d.ts +14 -14
  178. package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +17 -17
  179. package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +4 -4
  180. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +15 -15
  181. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +20 -20
  182. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +11 -11
  183. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +13 -13
  184. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +11 -11
  185. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +9 -9
  186. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +16 -16
  187. package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +13 -13
  188. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +13 -13
  189. package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +6 -6
  190. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +7 -7
  191. package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +2 -2
  192. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +37 -37
  193. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +12 -12
  194. package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +11 -11
  195. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +13 -13
  196. package/dist/Presentation/components/Button.d.ts +4 -4
  197. package/dist/Presentation/components/Navbar.d.ts +1 -1
  198. package/dist/Presentation/components/TextInput.d.ts +1 -1
  199. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +9 -9
  200. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +11 -11
  201. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +21 -21
  202. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +11 -11
  203. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +12 -12
  204. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +3 -3
  205. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +11 -11
  206. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +3 -3
  207. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +2 -2
  208. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +3 -3
  209. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +2 -2
  210. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +2 -2
  211. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +2 -2
  212. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +2 -2
  213. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +2 -2
  214. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +2 -2
  215. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +2 -2
  216. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +2 -2
  217. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +2 -2
  218. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +2 -2
  219. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +2 -2
  220. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +3 -3
  221. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +3 -3
  222. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +3 -3
  223. package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +3 -3
  224. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +3 -3
  225. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +3 -3
  226. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +3 -3
  227. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +3 -3
  228. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +3 -3
  229. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +3 -3
  230. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +3 -3
  231. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +3 -3
  232. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +3 -3
  233. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +3 -3
  234. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +3 -3
  235. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +3 -3
  236. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +3 -3
  237. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +3 -3
  238. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +3 -3
  239. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +3 -3
  240. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +3 -3
  241. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +3 -3
  242. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +3 -3
  243. package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +3 -3
  244. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +3 -3
  245. package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +3 -3
  246. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +3 -3
  247. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +3 -3
  248. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +3 -3
  249. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +3 -3
  250. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +3 -3
  251. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +3 -3
  252. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +3 -3
  253. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +3 -3
  254. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +3 -3
  255. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +3 -3
  256. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +3 -3
  257. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +3 -3
  258. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +3 -3
  259. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +3 -3
  260. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +3 -3
  261. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +3 -3
  262. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +6 -6
  263. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +3 -3
  264. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +3 -3
  265. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +3 -3
  266. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +3 -3
  267. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +3 -3
  268. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +3 -3
  269. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +3 -3
  270. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +3 -3
  271. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +3 -3
  272. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +3 -3
  273. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +3 -3
  274. package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +3 -3
  275. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +3 -3
  276. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +3 -3
  277. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +3 -3
  278. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +3 -3
  279. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +3 -3
  280. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +3 -3
  281. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +3 -3
  282. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +3 -3
  283. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +3 -3
  284. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +3 -3
  285. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +3 -3
  286. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +3 -3
  287. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +3 -3
  288. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +3 -3
  289. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +3 -3
  290. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +3 -3
  291. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +3 -3
  292. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +3 -3
  293. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +3 -3
  294. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +3 -3
  295. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +3 -3
  296. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +3 -3
  297. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +3 -3
  298. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +3 -3
  299. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +3 -3
  300. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +3 -3
  301. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +3 -3
  302. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +3 -3
  303. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +3 -3
  304. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +3 -3
  305. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +3 -3
  306. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +3 -3
  307. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +3 -3
  308. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +3 -3
  309. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +3 -3
  310. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +3 -3
  311. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +3 -3
  312. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +3 -3
  313. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +3 -3
  314. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +3 -3
  315. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +3 -3
  316. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +3 -3
  317. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +3 -3
  318. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +3 -3
  319. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +3 -3
  320. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +3 -3
  321. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +3 -3
  322. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +3 -3
  323. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +3 -3
  324. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +3 -3
  325. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +3 -3
  326. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +5 -5
  327. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +33 -33
  328. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +33 -33
  329. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +33 -33
  330. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +16 -16
  331. package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +3 -3
  332. package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +4 -4
  333. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -1
  334. package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -1
  335. package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -1
  336. package/dist/Presentation/components/containers/SectionList/index.d.ts +3 -3
  337. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +28 -28
  338. package/dist/Presentation/icons/actions/index.d.ts +26 -26
  339. package/dist/Presentation/icons/contents/index.d.ts +13 -13
  340. package/dist/Presentation/icons/index.d.ts +7 -7
  341. package/dist/Presentation/icons/media/index.d.ts +12 -12
  342. package/dist/Presentation/icons/moderation/index.d.ts +5 -5
  343. package/dist/Presentation/icons/navigation/index.d.ts +12 -12
  344. package/dist/Presentation/icons/status/index.d.ts +7 -7
  345. package/dist/Presentation/icons/toggle/index.d.ts +23 -23
  346. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +13 -13
  347. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +6 -6
  348. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +6 -6
  349. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +3 -3
  350. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +9 -9
  351. package/dist/Presentation/providers/ProviderProps.d.ts +4 -4
  352. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +47 -47
  353. package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +3 -3
  354. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +8 -8
  355. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +3 -3
  356. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +3 -3
  357. package/dist/Presentation/themes/DarkTheme.d.ts +21 -21
  358. package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +21 -21
  359. package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +21 -21
  360. package/dist/Presentation/themes/LightTheme.d.ts +21 -21
  361. package/dist/Presentation/themes/ThemeScheme.d.ts +43 -43
  362. package/dist/Presentation/themes/UiKitTheme.d.ts +20 -20
  363. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -9
  364. package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -8
  365. package/dist/Presentation/ui-components/Badge/Badge.d.ts +9 -9
  366. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -8
  367. package/dist/Presentation/ui-components/Button/Button.d.ts +12 -12
  368. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -83
  369. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +8 -8
  370. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +7 -7
  371. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -34
  372. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -16
  373. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -9
  374. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +12 -12
  375. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -6
  376. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -12
  377. package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +28 -28
  378. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +13 -13
  379. package/dist/Presentation/ui-components/Header/Header.d.ts +13 -13
  380. package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -9
  381. package/dist/Presentation/ui-components/Loader/Loader.d.ts +7 -7
  382. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -44
  383. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +7 -7
  384. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +10 -10
  385. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +8 -8
  386. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +7 -7
  387. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +7 -7
  388. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +8 -8
  389. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +7 -7
  390. package/dist/Presentation/ui-components/Message/Message.d.ts +18 -18
  391. package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -8
  392. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +8 -8
  393. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +7 -7
  394. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +8 -8
  395. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +21 -21
  396. package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -8
  397. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +8 -8
  398. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +11 -11
  399. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +11 -11
  400. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +7 -7
  401. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -44
  402. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -10
  403. package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -7
  404. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +8 -8
  405. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -9
  406. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -12
  407. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -8
  408. package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -13
  409. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -8
  410. package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -6
  411. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -8
  412. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +10 -10
  413. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -86
  414. package/dist/Presentation/ui-components/index.d.ts +19 -19
  415. package/dist/QBconfig.d.ts +2 -2
  416. package/dist/hooks/useModal.d.ts +5 -5
  417. package/dist/hooks/useQuickBloxUIKit.d.ts +108 -108
  418. package/dist/index-ui.d.ts +60 -55
  419. package/dist/index-ui.js +20602 -20201
  420. package/dist/index-ui.js.map +1 -1
  421. package/dist/index.d.ts +1 -1
  422. package/dist/qb-api-calls/index.d.ts +79 -79
  423. package/dist/setupTests.d.ts +1 -1
  424. package/dist/utils/DateTimeFormatter.d.ts +6 -6
  425. package/dist/utils/formatFileSize.d.ts +1 -1
  426. package/dist/utils/parse.d.ts +7 -7
  427. package/dist/utils/utils.d.ts +12 -12
  428. package/media-recorder-js.d.ts +26 -26
  429. package/package.json +114 -114
  430. package/public/index.html +47 -47
  431. package/public/manifest.json +25 -25
  432. package/public/robots.txt +3 -3
  433. package/src/App.scss +3 -3
  434. package/src/CommonTypes/FunctionResult.ts +0 -1
  435. package/src/Data/repository/UsersRepository.ts +11 -2
  436. package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +39 -39
  437. package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -32
  438. package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +77 -77
  439. package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -47
  440. package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +25 -25
  441. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -55
  442. package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -58
  443. package/src/Presentation/Views/Dialog/Dialog.scss +368 -368
  444. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -29
  445. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -114
  446. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -53
  447. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -84
  448. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -50
  449. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -26
  450. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -74
  451. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +50 -50
  452. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -98
  453. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -159
  454. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -100
  455. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +95 -95
  456. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -92
  457. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -97
  458. package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -250
  459. package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -22
  460. package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -241
  461. package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -4
  462. package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -250
  463. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -31
  464. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -76
  465. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -14
  466. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -18
  467. package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -10
  468. package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -160
  469. package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -122
  470. package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -155
  471. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -19
  472. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -21
  473. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +6 -1
  474. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -23
  475. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -21
  476. package/src/Presentation/Views/DialogInfo/DialogInfo.scss +237 -237
  477. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -42
  478. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +85 -85
  479. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -66
  480. package/src/Presentation/Views/DialogInfo/UsersList/UsersList.tsx +1 -1
  481. package/src/Presentation/Views/DialogList/DialogList.scss +150 -150
  482. package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -68
  483. package/src/Presentation/Views/EditDialog/EditDialog.scss +175 -175
  484. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -32
  485. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -93
  486. package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -202
  487. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -90
  488. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -38
  489. package/src/Presentation/Views/Navigation/More.svg +7 -7
  490. package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -211
  491. package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -9
  492. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -11
  493. package/src/Presentation/components/Button.js +4 -4
  494. package/src/Presentation/components/TextInput.js +9 -9
  495. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -103
  496. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -61
  497. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -74
  498. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -21
  499. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -3
  500. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -3
  501. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -5
  502. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -3
  503. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -3
  504. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -3
  505. package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -3
  506. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -3
  507. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -3
  508. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -3
  509. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -3
  510. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -3
  511. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -3
  512. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -3
  513. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -3
  514. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -3
  515. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -3
  516. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -3
  517. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -3
  518. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -3
  519. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -3
  520. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -3
  521. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -3
  522. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -3
  523. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -3
  524. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -3
  525. package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -6
  526. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -3
  527. package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -3
  528. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -3
  529. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -3
  530. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -3
  531. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -7
  532. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -3
  533. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -3
  534. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -3
  535. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -3
  536. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -3
  537. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -3
  538. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -3
  539. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -3
  540. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -7
  541. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -3
  542. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -3
  543. package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -3
  544. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -3
  545. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -3
  546. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -3
  547. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -3
  548. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -3
  549. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -3
  550. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -3
  551. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -3
  552. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -3
  553. package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -4
  554. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -3
  555. package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -3
  556. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -3
  557. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -3
  558. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -3
  559. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -3
  560. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -3
  561. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -3
  562. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -3
  563. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -3
  564. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -3
  565. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -3
  566. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -3
  567. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -3
  568. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -7
  569. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -3
  570. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -3
  571. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -3
  572. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -3
  573. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -3
  574. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -3
  575. package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -3
  576. package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -3
  577. package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -3
  578. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -3
  579. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -3
  580. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -3
  581. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -3
  582. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -3
  583. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -3
  584. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -3
  585. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -3
  586. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -3
  587. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -3
  588. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -3
  589. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -3
  590. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -3
  591. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -3
  592. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -3
  593. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -4
  594. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -3
  595. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -3
  596. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -3
  597. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -3
  598. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -3
  599. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -3
  600. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -3
  601. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -3
  602. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -3
  603. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -3
  604. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -3
  605. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -3
  606. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -16
  607. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -45
  608. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -45
  609. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -46
  610. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -45
  611. package/src/Presentation/components/containers/SectionList/styles.css +50 -50
  612. package/src/Presentation/icons/actions/add-contact.svg +3 -3
  613. package/src/Presentation/icons/actions/add.svg +3 -3
  614. package/src/Presentation/icons/actions/archive.svg +3 -3
  615. package/src/Presentation/icons/actions/copy.svg +3 -3
  616. package/src/Presentation/icons/actions/delete.svg +3 -3
  617. package/src/Presentation/icons/actions/download.svg +3 -3
  618. package/src/Presentation/icons/actions/edit.svg +3 -3
  619. package/src/Presentation/icons/actions/emoji.svg +3 -3
  620. package/src/Presentation/icons/actions/forward-filled.svg +3 -3
  621. package/src/Presentation/icons/actions/hungup.svg +3 -3
  622. package/src/Presentation/icons/actions/income-call.svg +3 -3
  623. package/src/Presentation/icons/actions/like.svg +3 -3
  624. package/src/Presentation/icons/actions/new-chat.svg +3 -3
  625. package/src/Presentation/icons/actions/outcome-call.svg +3 -3
  626. package/src/Presentation/icons/actions/phone-filled.svg +3 -3
  627. package/src/Presentation/icons/actions/phone.svg +3 -3
  628. package/src/Presentation/icons/actions/remove-2.svg +3 -3
  629. package/src/Presentation/icons/actions/remove.svg +3 -3
  630. package/src/Presentation/icons/actions/rephrase.svg +6 -6
  631. package/src/Presentation/icons/actions/reply-filled.svg +3 -3
  632. package/src/Presentation/icons/actions/robot.svg +5 -5
  633. package/src/Presentation/icons/actions/send.svg +3 -3
  634. package/src/Presentation/icons/actions/share.svg +3 -3
  635. package/src/Presentation/icons/actions/swap-camera.svg +3 -3
  636. package/src/Presentation/icons/actions/translate.svg +3 -3
  637. package/src/Presentation/icons/actions/unarchive.svg +3 -3
  638. package/src/Presentation/icons/actions/video.svg +3 -3
  639. package/src/Presentation/icons/actions/voice.svg +3 -3
  640. package/src/Presentation/icons/contents/broadcast.svg +7 -7
  641. package/src/Presentation/icons/contents/chat-filled.svg +3 -3
  642. package/src/Presentation/icons/contents/chat.svg +3 -3
  643. package/src/Presentation/icons/contents/conference.svg +3 -3
  644. package/src/Presentation/icons/contents/contact-filled.svg +3 -3
  645. package/src/Presentation/icons/contents/contact.svg +3 -3
  646. package/src/Presentation/icons/contents/group-chat.svg +3 -3
  647. package/src/Presentation/icons/contents/notifications.svg +3 -3
  648. package/src/Presentation/icons/contents/private-chat.svg +3 -3
  649. package/src/Presentation/icons/contents/public-channel.svg +7 -7
  650. package/src/Presentation/icons/contents/stream-filled.svg +3 -3
  651. package/src/Presentation/icons/contents/stream.svg +3 -3
  652. package/src/Presentation/icons/contents/user.svg +3 -3
  653. package/src/Presentation/icons/media/attachment.svg +3 -3
  654. package/src/Presentation/icons/media/audio-file.svg +3 -3
  655. package/src/Presentation/icons/media/broken-file.svg +3 -3
  656. package/src/Presentation/icons/media/camera.svg +3 -3
  657. package/src/Presentation/icons/media/file.svg +3 -3
  658. package/src/Presentation/icons/media/gif-file.svg +3 -3
  659. package/src/Presentation/icons/media/image-filled.svg +3 -3
  660. package/src/Presentation/icons/media/image.svg +3 -3
  661. package/src/Presentation/icons/media/link.svg +3 -3
  662. package/src/Presentation/icons/media/location.svg +4 -4
  663. package/src/Presentation/icons/media/text-document.svg +3 -3
  664. package/src/Presentation/icons/media/video-file.svg +3 -3
  665. package/src/Presentation/icons/moderation/admin.svg +3 -3
  666. package/src/Presentation/icons/moderation/banned.svg +3 -3
  667. package/src/Presentation/icons/moderation/freeze.svg +3 -3
  668. package/src/Presentation/icons/moderation/moderations.svg +3 -3
  669. package/src/Presentation/icons/moderation/muted.svg +3 -3
  670. package/src/Presentation/icons/navigation/arrow-left.svg +3 -3
  671. package/src/Presentation/icons/navigation/arrow-right.svg +3 -3
  672. package/src/Presentation/icons/navigation/back.svg +3 -3
  673. package/src/Presentation/icons/navigation/close.svg +3 -3
  674. package/src/Presentation/icons/navigation/down.svg +3 -3
  675. package/src/Presentation/icons/navigation/leave.svg +3 -3
  676. package/src/Presentation/icons/navigation/more.svg +3 -3
  677. package/src/Presentation/icons/navigation/next.svg +3 -3
  678. package/src/Presentation/icons/navigation/plus.svg +3 -3
  679. package/src/Presentation/icons/navigation/refresh.svg +3 -3
  680. package/src/Presentation/icons/navigation/search.svg +3 -3
  681. package/src/Presentation/icons/navigation/settings-filled.svg +3 -3
  682. package/src/Presentation/icons/navigation/settings.svg +3 -3
  683. package/src/Presentation/icons/status/error.svg +3 -3
  684. package/src/Presentation/icons/status/help.svg +3 -3
  685. package/src/Presentation/icons/status/information.svg +3 -3
  686. package/src/Presentation/icons/status/loader.svg +3 -3
  687. package/src/Presentation/icons/status/mention.svg +3 -3
  688. package/src/Presentation/icons/status/sent.svg +3 -3
  689. package/src/Presentation/icons/status/viewed-delivered.svg +3 -3
  690. package/src/Presentation/icons/toggle/camera-off.svg +3 -3
  691. package/src/Presentation/icons/toggle/camera-on.svg +3 -3
  692. package/src/Presentation/icons/toggle/check-off.svg +3 -3
  693. package/src/Presentation/icons/toggle/check-on.svg +3 -3
  694. package/src/Presentation/icons/toggle/favorite.svg +3 -3
  695. package/src/Presentation/icons/toggle/favourite.svg +3 -3
  696. package/src/Presentation/icons/toggle/full-screen.svg +3 -3
  697. package/src/Presentation/icons/toggle/hide.svg +3 -3
  698. package/src/Presentation/icons/toggle/louder.svg +3 -3
  699. package/src/Presentation/icons/toggle/mic-off.svg +3 -3
  700. package/src/Presentation/icons/toggle/mic-on.svg +4 -4
  701. package/src/Presentation/icons/toggle/minimize.svg +3 -3
  702. package/src/Presentation/icons/toggle/notify-off.svg +3 -3
  703. package/src/Presentation/icons/toggle/notify-on.svg +3 -3
  704. package/src/Presentation/icons/toggle/pause.svg +3 -3
  705. package/src/Presentation/icons/toggle/play.svg +3 -3
  706. package/src/Presentation/icons/toggle/quite.svg +3 -3
  707. package/src/Presentation/icons/toggle/record.svg +3 -3
  708. package/src/Presentation/icons/toggle/screenshare.svg +3 -3
  709. package/src/Presentation/icons/toggle/show.svg +3 -3
  710. package/src/Presentation/icons/toggle/speaker off.svg +3 -3
  711. package/src/Presentation/icons/toggle/speaker-off.svg +3 -3
  712. package/src/Presentation/icons/toggle/speaker.svg +3 -3
  713. package/src/Presentation/icons/toggle/stop-record.svg +3 -3
  714. package/src/Presentation/icons/toggle/stop-share.svg +3 -3
  715. package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -62
  716. package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -72
  717. package/src/Presentation/themes/styles/_fonts.scss +32 -32
  718. package/src/Presentation/themes/styles/_mixins.scss +6 -6
  719. package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -56
  720. package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -57
  721. package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -72
  722. package/src/Presentation/themes/styles/_theme_dark.scss +37 -37
  723. package/src/Presentation/themes/styles/_theme_light.scss +38 -38
  724. package/src/Presentation/themes/styles/_variables.scss +54 -54
  725. package/src/Presentation/ui-components/Avatar/Avatar.scss +58 -58
  726. package/src/Presentation/ui-components/Badge/Badge.scss +23 -23
  727. package/src/Presentation/ui-components/Button/Button.scss +133 -133
  728. package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -10
  729. package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -29
  730. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -71
  731. package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +56 -56
  732. package/src/Presentation/ui-components/Dropdown/Dropdown.scss +82 -82
  733. package/src/Presentation/ui-components/Header/Header.scss +72 -72
  734. package/src/Presentation/ui-components/Loader/Loader.scss +27 -27
  735. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +86 -86
  736. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -29
  737. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -16
  738. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -40
  739. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +27 -27
  740. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -58
  741. package/src/Presentation/ui-components/Message/Message.scss +136 -136
  742. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -90
  743. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -51
  744. package/src/Presentation/ui-components/MessageInput/MessageInput.scss +137 -137
  745. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -16
  746. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -140
  747. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -35
  748. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -30
  749. package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -51
  750. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -30
  751. package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -69
  752. package/src/Presentation/ui-components/TextField/TextField.scss +91 -91
  753. package/src/Presentation/ui-components/Toast/Toast.scss +22 -22
  754. package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -33
  755. package/src/index-ui.ts +18 -3
  756. package/src/index.scss +28 -28
  757. package/src/package_artan_react_ui.json +91 -91
  758. package/src/package_original.json +115 -115
  759. package/storybook-static/167.88fc69a9.iframe.bundle.js +1 -0
  760. package/storybook-static/294.b81cdbca.iframe.bundle.js +1 -0
  761. package/storybook-static/363.2cb21716.iframe.bundle.js +2 -0
  762. package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +44 -0
  763. package/storybook-static/364.988cd801.iframe.bundle.js +1 -0
  764. package/storybook-static/44.2dce2443.iframe.bundle.js +405 -0
  765. package/storybook-static/44.2dce2443.iframe.bundle.js.LICENSE.txt +19 -0
  766. package/storybook-static/44.2dce2443.iframe.bundle.js.map +1 -0
  767. package/storybook-static/488.3cd3942e.iframe.bundle.js +1 -0
  768. package/storybook-static/559.9e64a6f5.iframe.bundle.js +2 -0
  769. package/storybook-static/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +5 -0
  770. package/storybook-static/735.82f96f8a.iframe.bundle.js +2 -0
  771. package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +9 -0
  772. package/storybook-static/844.59cc9fcc.iframe.bundle.js +95 -0
  773. package/storybook-static/844.59cc9fcc.iframe.bundle.js.LICENSE.txt +19 -0
  774. package/storybook-static/844.59cc9fcc.iframe.bundle.js.map +1 -0
  775. package/storybook-static/936.8546c1d8.iframe.bundle.js +1 -0
  776. package/storybook-static/961.c94da456.iframe.bundle.js +2 -0
  777. package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +9 -0
  778. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js +2 -0
  779. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js.LICENSE.txt +5 -0
  780. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js +2 -0
  781. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js.LICENSE.txt +5 -0
  782. package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js +2 -0
  783. package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js.LICENSE.txt +5 -0
  784. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.3e9b31ee.iframe.bundle.js +1 -0
  785. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js +2 -0
  786. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js.LICENSE.txt +5 -0
  787. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js +2 -0
  788. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js.LICENSE.txt +15 -0
  789. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js +2 -0
  790. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js.LICENSE.txt +5 -0
  791. package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js +2 -0
  792. package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js.LICENSE.txt +5 -0
  793. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js +2 -0
  794. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js.LICENSE.txt +5 -0
  795. package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js +2 -0
  796. package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js.LICENSE.txt +5 -0
  797. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.4538dec0.iframe.bundle.js +1 -0
  798. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.ccfd1b95.iframe.bundle.js +1 -0
  799. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js +2 -0
  800. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js.LICENSE.txt +5 -0
  801. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js +2 -0
  802. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js.LICENSE.txt +5 -0
  803. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js +2 -0
  804. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js.LICENSE.txt +5 -0
  805. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js +2 -0
  806. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js.LICENSE.txt +5 -0
  807. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.b4ff1c4c.iframe.bundle.js +1 -0
  808. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js +2 -0
  809. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js.LICENSE.txt +5 -0
  810. package/storybook-static/docs-Introduction-mdx.024f959d.iframe.bundle.js +1 -0
  811. package/storybook-static/docs-Styling-mdx.abbdb393.iframe.bundle.js +1 -0
  812. package/storybook-static/favicon.svg +1 -0
  813. package/storybook-static/iframe.html +511 -0
  814. package/storybook-static/index.html +181 -0
  815. package/storybook-static/index.json +1 -0
  816. package/storybook-static/main.b6cefba5.iframe.bundle.js +1 -0
  817. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  818. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  819. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  820. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  821. package/storybook-static/project.json +1 -0
  822. package/storybook-static/runtime~main.0313ac39.iframe.bundle.js +1 -0
  823. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +331 -0
  824. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +51 -0
  825. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +3 -0
  826. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +12 -0
  827. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +402 -0
  828. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +242 -0
  829. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +3 -0
  830. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +3 -0
  831. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +3 -0
  832. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +3 -0
  833. package/storybook-static/sb-addons/interactions-11/manager-bundle.js +222 -0
  834. package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +127 -0
  835. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  836. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  837. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  838. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  839. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  840. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  841. package/storybook-static/sb-manager/globals-module-info.js +1051 -0
  842. package/storybook-static/sb-manager/globals-runtime.js +41591 -0
  843. package/storybook-static/sb-manager/globals.js +48 -0
  844. package/storybook-static/sb-manager/runtime.js +12048 -0
  845. package/storybook-static/sb-preview/globals.js +33 -0
  846. package/storybook-static/sb-preview/runtime.js +7745 -0
  847. package/tsconfig.buildlib.json +33 -33
  848. package/tsconfig.json +34 -34
  849. package/typedoc.json +4 -4
  850. package/webpack.config.js +82 -82
  851. package/.env +0 -1
@@ -1,9 +1,9 @@
1
- .dialog-context-menu {
2
- display: flex;
3
- flex-direction: row;
4
- gap: 0px;
5
- align-items: flex-start;
6
- justify-content: flex-start;
7
- flex-shrink: 0;
8
- position: relative;
9
- }
1
+ .dialog-context-menu {
2
+ display: flex;
3
+ flex-direction: row;
4
+ gap: 0px;
5
+ align-items: flex-start;
6
+ justify-content: flex-start;
7
+ flex-shrink: 0;
8
+ position: relative;
9
+ }
@@ -1,11 +1,11 @@
1
- .ynq-dialog-actions {
2
- display: flex;
3
- flex-direction: row;
4
- gap: 8px;
5
- align-items: flex-end;
6
- justify-content: flex-end;
7
- align-self: stretch;
8
- flex-shrink: 0;
9
- position: relative;
10
- }
11
-
1
+ .ynq-dialog-actions {
2
+ display: flex;
3
+ flex-direction: row;
4
+ gap: 8px;
5
+ align-items: flex-end;
6
+ justify-content: flex-end;
7
+ align-self: stretch;
8
+ flex-shrink: 0;
9
+ position: relative;
10
+ }
11
+
@@ -1,5 +1,5 @@
1
- export default function List({ onClick, title, }) {
2
- return (
3
- <button style={{ height: 24 }} onClick={onClick}>{title}</button>
4
- );
1
+ export default function List({ onClick, title, }) {
2
+ return (
3
+ <button style={{ height: 24 }} onClick={onClick}>{title}</button>
4
+ );
5
5
  }
@@ -1,10 +1,10 @@
1
- import React from 'react';
2
- export default function TextInput(rest) {
3
- return (
4
- <input
5
-
6
- style={{ height: 28, padding: 10, marginBottom: 10 }}
7
- {...rest}
8
- />
9
- );
1
+ import React from 'react';
2
+ export default function TextInput(rest) {
3
+ return (
4
+ <input
5
+
6
+ style={{ height: 28, padding: 10, marginBottom: 10 }}
7
+ {...rest}
8
+ />
9
+ );
10
10
  }
@@ -1,103 +1,103 @@
1
- .main-button {
2
- display: flex;
3
- flex-direction: row;
4
- justify-content: center;
5
- align-items: center;
6
- padding: 8px 16px 8px 16px;
7
-
8
- height: 32px;
9
-
10
- background: var(--main-elements);
11
- border-radius: 4px;
12
-
13
- flex: none;
14
- order: 1;
15
- flex-grow: 0;
16
-
17
- font-family: 'Roboto';
18
- font-style: normal;
19
- font-weight: 700;
20
- font-size: 14px;
21
- line-height: 16px;
22
- letter-spacing: 0.4px;
23
-
24
- color: var(--main-background);
25
-
26
- border: none;
27
- outline: none;
28
- }
29
-
30
- .danger-button {
31
- display: flex;
32
- flex-direction: row;
33
- justify-content: center;
34
- align-items: center;
35
- padding: 8px 16px 8px 16px;
36
-
37
- height: 32px;
38
-
39
- background: var(--error);
40
- border-radius: 4px;
41
- flex: none;
42
- order: 1;
43
- flex-grow: 0;
44
- font-family: 'Roboto';
45
- font-style: normal;
46
- font-weight: 700;
47
- font-size: 14px;
48
- line-height: 16px;
49
- letter-spacing: 0.4px;
50
- color: var(--main-background);
51
-
52
- border: none;
53
- outline: none;
54
- }
55
-
56
- .secondary-button{
57
- box-sizing: border-box;
58
- display: flex;
59
- flex-direction: row;
60
- justify-content: center;
61
- align-items: center;
62
- padding: 8px 16px 8px 16px;
63
- height: 32px;
64
-
65
- background-color: var(--main-background);
66
- border: 1px solid var(--secondary-elements);
67
- border-radius: 4px;
68
- flex: none;
69
- order: 0;
70
- flex-grow: 0;
71
-
72
- font-family: 'Roboto';
73
- font-style: normal;
74
- font-weight: 700;
75
- font-size: 14px;
76
- line-height: 16px;
77
- letter-spacing: 0.4px;
78
- color: var(--secondary-elements);
79
- }
80
-
81
- .main-disabled-button{
82
- display: flex;
83
- flex-direction: row;
84
- justify-content: center;
85
- align-items: center;
86
- padding: 8px 16px 8px 16px;
87
- height: 32px;
88
- background: var(--disabled-elements);
89
- border-radius: 4px;
90
- flex: none;
91
- order: 1;
92
- flex-grow: 0;
93
- font-family: 'Roboto';
94
- font-style: normal;
95
- font-weight: 700;
96
- font-size: 14px;
97
- line-height: 16px;
98
- letter-spacing: 0.4px;
99
- color: var(--secondary-text);
100
-
101
- border: none;
102
- outline: none;
103
- }
1
+ .main-button {
2
+ display: flex;
3
+ flex-direction: row;
4
+ justify-content: center;
5
+ align-items: center;
6
+ padding: 8px 16px 8px 16px;
7
+
8
+ height: 32px;
9
+
10
+ background: var(--main-elements);
11
+ border-radius: 4px;
12
+
13
+ flex: none;
14
+ order: 1;
15
+ flex-grow: 0;
16
+
17
+ font-family: 'Roboto';
18
+ font-style: normal;
19
+ font-weight: 700;
20
+ font-size: 14px;
21
+ line-height: 16px;
22
+ letter-spacing: 0.4px;
23
+
24
+ color: var(--main-background);
25
+
26
+ border: none;
27
+ outline: none;
28
+ }
29
+
30
+ .danger-button {
31
+ display: flex;
32
+ flex-direction: row;
33
+ justify-content: center;
34
+ align-items: center;
35
+ padding: 8px 16px 8px 16px;
36
+
37
+ height: 32px;
38
+
39
+ background: var(--error);
40
+ border-radius: 4px;
41
+ flex: none;
42
+ order: 1;
43
+ flex-grow: 0;
44
+ font-family: 'Roboto';
45
+ font-style: normal;
46
+ font-weight: 700;
47
+ font-size: 14px;
48
+ line-height: 16px;
49
+ letter-spacing: 0.4px;
50
+ color: var(--main-background);
51
+
52
+ border: none;
53
+ outline: none;
54
+ }
55
+
56
+ .secondary-button{
57
+ box-sizing: border-box;
58
+ display: flex;
59
+ flex-direction: row;
60
+ justify-content: center;
61
+ align-items: center;
62
+ padding: 8px 16px 8px 16px;
63
+ height: 32px;
64
+
65
+ background-color: var(--main-background);
66
+ border: 1px solid var(--secondary-elements);
67
+ border-radius: 4px;
68
+ flex: none;
69
+ order: 0;
70
+ flex-grow: 0;
71
+
72
+ font-family: 'Roboto';
73
+ font-style: normal;
74
+ font-weight: 700;
75
+ font-size: 14px;
76
+ line-height: 16px;
77
+ letter-spacing: 0.4px;
78
+ color: var(--secondary-elements);
79
+ }
80
+
81
+ .main-disabled-button{
82
+ display: flex;
83
+ flex-direction: row;
84
+ justify-content: center;
85
+ align-items: center;
86
+ padding: 8px 16px 8px 16px;
87
+ height: 32px;
88
+ background: var(--disabled-elements);
89
+ border-radius: 4px;
90
+ flex: none;
91
+ order: 1;
92
+ flex-grow: 0;
93
+ font-family: 'Roboto';
94
+ font-style: normal;
95
+ font-weight: 700;
96
+ font-size: 14px;
97
+ line-height: 16px;
98
+ letter-spacing: 0.4px;
99
+ color: var(--secondary-text);
100
+
101
+ border: none;
102
+ outline: none;
103
+ }
@@ -1,61 +1,61 @@
1
- $background-color-off: var(--disabled-elements);
2
- $background-color-on: var(--main-elements);
3
- /* The switch - the box around the slider */
4
- .switch {
5
- position: relative;
6
- display: inline-block;
7
- width: 40px;
8
- height: 20px;
9
- }
10
-
11
- /* Hide default HTML checkbox */
12
- .switch input {display:none;}
13
-
14
- /* The slider */
15
- .slider {
16
- position: absolute;
17
- cursor: pointer;
18
- top: 0;
19
- left: 0;
20
- right: 0;
21
- bottom: 0;
22
- background-color: #ccc;
23
- -webkit-transition: .4s;
24
- transition: .4s;
25
- }
26
-
27
- .slider:before {
28
- position: absolute;
29
- content: "";
30
- height: 12px;
31
- width: 12px;
32
- left: 4px;
33
- bottom: 4px;
34
- right: 4px;
35
- background-color: white;
36
- -webkit-transition: .4s;
37
- transition: .4s;
38
- }
39
-
40
- input:checked + .slider {
41
- background-color: #2196F3;
42
- }
43
-
44
- input:focus + .slider {
45
- box-shadow: 0 0 1px #2196F3;
46
- }
47
-
48
- input:checked + .slider:before {
49
- -webkit-transform: translateX(12px);
50
- -ms-transform: translateX(12px);
51
- transform: translateX(12px);
52
- }
53
-
54
- /* Rounded sliders */
55
- .slider.round {
56
- border-radius: 12px;
57
- }
58
-
59
- .slider.round:before {
60
- border-radius: 50%;
61
- }
1
+ $background-color-off: var(--disabled-elements);
2
+ $background-color-on: var(--main-elements);
3
+ /* The switch - the box around the slider */
4
+ .switch {
5
+ position: relative;
6
+ display: inline-block;
7
+ width: 40px;
8
+ height: 20px;
9
+ }
10
+
11
+ /* Hide default HTML checkbox */
12
+ .switch input {display:none;}
13
+
14
+ /* The slider */
15
+ .slider {
16
+ position: absolute;
17
+ cursor: pointer;
18
+ top: 0;
19
+ left: 0;
20
+ right: 0;
21
+ bottom: 0;
22
+ background-color: #ccc;
23
+ -webkit-transition: .4s;
24
+ transition: .4s;
25
+ }
26
+
27
+ .slider:before {
28
+ position: absolute;
29
+ content: "";
30
+ height: 12px;
31
+ width: 12px;
32
+ left: 4px;
33
+ bottom: 4px;
34
+ right: 4px;
35
+ background-color: white;
36
+ -webkit-transition: .4s;
37
+ transition: .4s;
38
+ }
39
+
40
+ input:checked + .slider {
41
+ background-color: #2196F3;
42
+ }
43
+
44
+ input:focus + .slider {
45
+ box-shadow: 0 0 1px #2196F3;
46
+ }
47
+
48
+ input:checked + .slider:before {
49
+ -webkit-transform: translateX(12px);
50
+ -ms-transform: translateX(12px);
51
+ transform: translateX(12px);
52
+ }
53
+
54
+ /* Rounded sliders */
55
+ .slider.round {
56
+ border-radius: 12px;
57
+ }
58
+
59
+ .slider.round:before {
60
+ border-radius: 50%;
61
+ }
@@ -1,74 +1,74 @@
1
- $error-container-background-color: var(--main-background);
2
- $error-container-error-message-text-color: var(--caption);
3
- $error-container-error-action-color: var(--main-elements);
4
- $error-container-divider: var(--divider);
5
-
6
- .error-container-wrapper {
7
- // padding-top: 9px;
8
- // padding-bottom: 12px;
9
- border: 1px solid $error-container-divider;
10
- }
11
-
12
- .error-container {
13
- display: flex;
14
- flex-flow: column nowrap;
15
- min-width: 360px;
16
- min-height: 156px;
17
- margin: 0 auto;
18
- justify-content: center;
19
- align-items: center;
20
- // border: 1px solid green;
21
- gap: 16px;
22
- background-color: $error-container-background-color;
23
- &__error-icon {
24
- display: flex;
25
- justify-content: center;
26
- align-items: center;
27
- margin: 0 auto;
28
-
29
- min-width: 60px;
30
- min-height: 60px;
31
-
32
-
33
- color: $error-container-error-message-text-color;
34
- svg path {fill: $error-container-error-message-text-color}
35
- }
36
- &__error-message {
37
- min-height: 24px;
38
- font-family: 'Roboto';
39
- font-style: normal;
40
- font-weight: 400;
41
- font-size: 16px;
42
- line-height: 24px;
43
- text-align: center;
44
- letter-spacing: 0.15px;
45
- color: $error-container-error-message-text-color;
46
- }
47
- &--error-action {
48
- display: flex;
49
- flex-direction: row;
50
- flex-wrap: nowrap;
51
- justify-content: center;
52
- align-items: center;
53
- margin: 0 auto;
54
- gap: 8px;
55
- min-height: 40px;
56
- min-width: 92px;
57
- cursor: pointer;
58
-
59
- &__refresh-icon {
60
- min-width: 24px;
61
- min-height: 24px;
62
- svg path {fill: $error-container-error-action-color}
63
- }
64
- &__refresh-text {
65
- color: $error-container-error-action-color;
66
- font-family: 'Roboto';
67
- font-style: normal;
68
- font-weight: 700;
69
- font-size: 14px;
70
- line-height: 16px;
71
- letter-spacing: 0.4px;
72
- }
73
- }
74
- }
1
+ $error-container-background-color: var(--main-background);
2
+ $error-container-error-message-text-color: var(--caption);
3
+ $error-container-error-action-color: var(--main-elements);
4
+ $error-container-divider: var(--divider);
5
+
6
+ .error-container-wrapper {
7
+ // padding-top: 9px;
8
+ // padding-bottom: 12px;
9
+ border: 1px solid $error-container-divider;
10
+ }
11
+
12
+ .error-container {
13
+ display: flex;
14
+ flex-flow: column nowrap;
15
+ min-width: 360px;
16
+ min-height: 156px;
17
+ margin: 0 auto;
18
+ justify-content: center;
19
+ align-items: center;
20
+ // border: 1px solid green;
21
+ gap: 16px;
22
+ background-color: $error-container-background-color;
23
+ &__error-icon {
24
+ display: flex;
25
+ justify-content: center;
26
+ align-items: center;
27
+ margin: 0 auto;
28
+
29
+ min-width: 60px;
30
+ min-height: 60px;
31
+
32
+
33
+ color: $error-container-error-message-text-color;
34
+ svg path {fill: $error-container-error-message-text-color}
35
+ }
36
+ &__error-message {
37
+ min-height: 24px;
38
+ font-family: 'Roboto';
39
+ font-style: normal;
40
+ font-weight: 400;
41
+ font-size: 16px;
42
+ line-height: 24px;
43
+ text-align: center;
44
+ letter-spacing: 0.15px;
45
+ color: $error-container-error-message-text-color;
46
+ }
47
+ &--error-action {
48
+ display: flex;
49
+ flex-direction: row;
50
+ flex-wrap: nowrap;
51
+ justify-content: center;
52
+ align-items: center;
53
+ margin: 0 auto;
54
+ gap: 8px;
55
+ min-height: 40px;
56
+ min-width: 92px;
57
+ cursor: pointer;
58
+
59
+ &__refresh-icon {
60
+ min-width: 24px;
61
+ min-height: 24px;
62
+ svg path {fill: $error-container-error-action-color}
63
+ }
64
+ &__refresh-text {
65
+ color: $error-container-error-action-color;
66
+ font-family: 'Roboto';
67
+ font-style: normal;
68
+ font-weight: 700;
69
+ font-size: 14px;
70
+ line-height: 16px;
71
+ letter-spacing: 0.4px;
72
+ }
73
+ }
74
+ }
@@ -1,21 +1,21 @@
1
- $default-background-color: var(--main-elements);
2
- $default-width-icon: 44;
3
- $default-height-icon: 44;
4
-
5
- // #Loader{fill: $default-background-color};
6
-
7
- .loader {
8
- animation: spin 2s linear infinite;
9
- svg path {fill: $default-background-color};
10
- min-width: $default-width-icon;
11
- min-height: $default-height-icon;
12
- }
13
-
14
- @keyframes spin {
15
- 0% {
16
- transform: rotate(0deg);
17
- }
18
- 100% {
19
- transform: rotate(360deg);
20
- }
21
- }
1
+ $default-background-color: var(--main-elements);
2
+ $default-width-icon: 44;
3
+ $default-height-icon: 44;
4
+
5
+ // #Loader{fill: $default-background-color};
6
+
7
+ .loader {
8
+ animation: spin 2s linear infinite;
9
+ svg path {fill: $default-background-color};
10
+ min-width: $default-width-icon;
11
+ min-height: $default-height-icon;
12
+ }
13
+
14
+ @keyframes spin {
15
+ 0% {
16
+ transform: rotate(0deg);
17
+ }
18
+ 100% {
19
+ transform: rotate(360deg);
20
+ }
21
+ }
@@ -1,3 +1,3 @@
1
- .active-svg-container{
2
- cursor: pointer;
3
- }
1
+ .active-svg-container{
2
+ cursor: pointer;
3
+ }
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M2.76833 38.5L41.25 22L2.76833 5.5L2.75 18.3333L30.25 22L2.75 25.6667L2.76833 38.5Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.76833 38.5L41.25 22L2.76833 5.5L2.75 18.3333L30.25 22L2.75 25.6667L2.76833 38.5Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none">
2
- <path d="M16.1339 5.61003H12.9186V4.69137C12.9186 4.44772 12.8219 4.21406 12.6496 4.04177C12.4773 3.86949 12.2436 3.77271 12 3.77271C11.7563 3.77271 11.5227 3.86949 11.3504 4.04177C11.1781 4.21406 11.0813 4.44772 11.0813 4.69137V5.61003H7.86601C6.64779 5.61003 5.47946 6.09396 4.61805 6.95537C3.75664 7.81678 3.27271 8.98511 3.27271 10.2033V16.6339C3.27271 17.8522 3.75664 19.0205 4.61805 19.8819C5.47946 20.7433 6.64779 21.2272 7.86601 21.2272H16.1339C16.7371 21.2272 17.3344 21.1084 17.8917 20.8776C18.449 20.6468 18.9554 20.3084 19.3819 19.8819C19.8084 19.4554 20.1468 18.949 20.3776 18.3917C20.6084 17.8344 20.7272 17.2371 20.7272 16.6339V10.2033C20.7272 9.60013 20.6084 9.00283 20.3776 8.44555C20.1468 7.88826 19.8084 7.3819 19.3819 6.95537C18.9554 6.52884 18.449 6.1905 17.8917 5.95967C17.3344 5.72883 16.7371 5.61003 16.1339 5.61003ZM18.8899 16.6339C18.8899 17.3649 18.5996 18.0659 18.0827 18.5827C17.5659 19.0996 16.8649 19.3899 16.1339 19.3899H7.86601C7.13507 19.3899 6.43408 19.0996 5.91723 18.5827C5.40039 18.0659 5.11003 17.3649 5.11003 16.6339V10.2033C5.11003 9.47239 5.40039 8.7714 5.91723 8.25455C6.43408 7.73771 7.13507 7.44735 7.86601 7.44735H16.1339C16.8649 7.44735 17.5659 7.73771 18.0827 8.25455C18.5996 8.7714 18.8899 9.47239 18.8899 10.2033V16.6339Z" fill="#3978FC"/>
3
- <path d="M14.7559 10.2034C14.5123 10.2034 14.2786 10.3002 14.1063 10.4724C13.9341 10.6447 13.8373 10.8784 13.8373 11.122V12.9594C13.8373 13.203 13.9341 13.4367 14.1063 13.6089C14.2786 13.7812 14.5123 13.878 14.7559 13.878C14.9996 13.878 15.2332 13.7812 15.4055 13.6089C15.5778 13.4367 15.6746 13.203 15.6746 12.9594V11.122C15.6746 10.8784 15.5778 10.6447 15.4055 10.4724C15.2332 10.3002 14.9996 10.2034 14.7559 10.2034Z" fill="#3978FC"/>
4
- <path d="M9.24398 10.2034C9.00034 10.2034 8.76668 10.3002 8.59439 10.4724C8.42211 10.6447 8.32532 10.8784 8.32532 11.122V12.9594C8.32532 13.203 8.42211 13.4367 8.59439 13.6089C8.76668 13.7812 9.00034 13.878 9.24398 13.878C9.48763 13.878 9.72129 13.7812 9.89358 13.6089C10.0659 13.4367 10.1626 13.203 10.1626 12.9594V11.122C10.1626 10.8784 10.0659 10.6447 9.89358 10.4724C9.72129 10.3002 9.48763 10.2034 9.24398 10.2034Z" fill="#3978FC"/>
5
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none">
2
+ <path d="M16.1339 5.61003H12.9186V4.69137C12.9186 4.44772 12.8219 4.21406 12.6496 4.04177C12.4773 3.86949 12.2436 3.77271 12 3.77271C11.7563 3.77271 11.5227 3.86949 11.3504 4.04177C11.1781 4.21406 11.0813 4.44772 11.0813 4.69137V5.61003H7.86601C6.64779 5.61003 5.47946 6.09396 4.61805 6.95537C3.75664 7.81678 3.27271 8.98511 3.27271 10.2033V16.6339C3.27271 17.8522 3.75664 19.0205 4.61805 19.8819C5.47946 20.7433 6.64779 21.2272 7.86601 21.2272H16.1339C16.7371 21.2272 17.3344 21.1084 17.8917 20.8776C18.449 20.6468 18.9554 20.3084 19.3819 19.8819C19.8084 19.4554 20.1468 18.949 20.3776 18.3917C20.6084 17.8344 20.7272 17.2371 20.7272 16.6339V10.2033C20.7272 9.60013 20.6084 9.00283 20.3776 8.44555C20.1468 7.88826 19.8084 7.3819 19.3819 6.95537C18.9554 6.52884 18.449 6.1905 17.8917 5.95967C17.3344 5.72883 16.7371 5.61003 16.1339 5.61003ZM18.8899 16.6339C18.8899 17.3649 18.5996 18.0659 18.0827 18.5827C17.5659 19.0996 16.8649 19.3899 16.1339 19.3899H7.86601C7.13507 19.3899 6.43408 19.0996 5.91723 18.5827C5.40039 18.0659 5.11003 17.3649 5.11003 16.6339V10.2033C5.11003 9.47239 5.40039 8.7714 5.91723 8.25455C6.43408 7.73771 7.13507 7.44735 7.86601 7.44735H16.1339C16.8649 7.44735 17.5659 7.73771 18.0827 8.25455C18.5996 8.7714 18.8899 9.47239 18.8899 10.2033V16.6339Z" fill="#3978FC"/>
3
+ <path d="M14.7559 10.2034C14.5123 10.2034 14.2786 10.3002 14.1063 10.4724C13.9341 10.6447 13.8373 10.8784 13.8373 11.122V12.9594C13.8373 13.203 13.9341 13.4367 14.1063 13.6089C14.2786 13.7812 14.5123 13.878 14.7559 13.878C14.9996 13.878 15.2332 13.7812 15.4055 13.6089C15.5778 13.4367 15.6746 13.203 15.6746 12.9594V11.122C15.6746 10.8784 15.5778 10.6447 15.4055 10.4724C15.2332 10.3002 14.9996 10.2034 14.7559 10.2034Z" fill="#3978FC"/>
4
+ <path d="M9.24398 10.2034C9.00034 10.2034 8.76668 10.3002 8.59439 10.4724C8.42211 10.6447 8.32532 10.8784 8.32532 11.122V12.9594C8.32532 13.203 8.42211 13.4367 8.59439 13.6089C8.76668 13.7812 9.00034 13.878 9.24398 13.878C9.48763 13.878 9.72129 13.7812 9.89358 13.6089C10.0659 13.4367 10.1626 13.203 10.1626 12.9594V11.122C10.1626 10.8784 10.0659 10.6447 9.89358 10.4724C9.72129 10.3002 9.48763 10.2034 9.24398 10.2034Z" fill="#3978FC"/>
5
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M34.8333 5.5H9.16667C7.13167 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.13167 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM34.8333 34.8333H9.16667V9.16667H34.8333V34.8333ZM20.1667 31.1667H23.8333V23.8333H31.1667V20.1667H23.8333V12.8333H20.1667V20.1667H12.8333V23.8333H20.1667V31.1667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.8333 5.5H9.16667C7.13167 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.13167 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM34.8333 34.8333H9.16667V9.16667H34.8333V34.8333ZM20.1667 31.1667H23.8333V23.8333H31.1667V20.1667H23.8333V12.8333H20.1667V20.1667H12.8333V23.8333H20.1667V31.1667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M27.4999 22C31.5516 22 34.8333 18.7183 34.8333 14.6666C34.8333 10.615 31.5516 7.33331 27.4999 7.33331C23.4483 7.33331 20.1666 10.615 20.1666 14.6666C20.1666 18.7183 23.4483 22 27.4999 22ZM27.4999 11C29.5166 11 31.1666 12.65 31.1666 14.6666C31.1666 16.6833 29.5166 18.3333 27.4999 18.3333C25.4833 18.3333 23.8333 16.6833 23.8333 14.6666C23.8333 12.65 25.4833 11 27.4999 11ZM27.4999 25.6666C22.6049 25.6666 12.8333 28.1233 12.8333 33V36.6666H42.1666V33C42.1666 28.1233 32.3949 25.6666 27.4999 25.6666ZM16.4999 33C16.9033 31.68 22.5683 29.3333 27.4999 29.3333C32.4499 29.3333 38.1333 31.6983 38.4999 33H16.4999ZM10.9999 27.5V22H16.4999V18.3333H10.9999V12.8333H7.33325V18.3333H1.83325V22H7.33325V27.5H10.9999Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M27.4999 22C31.5516 22 34.8333 18.7183 34.8333 14.6666C34.8333 10.615 31.5516 7.33331 27.4999 7.33331C23.4483 7.33331 20.1666 10.615 20.1666 14.6666C20.1666 18.7183 23.4483 22 27.4999 22ZM27.4999 11C29.5166 11 31.1666 12.65 31.1666 14.6666C31.1666 16.6833 29.5166 18.3333 27.4999 18.3333C25.4833 18.3333 23.8333 16.6833 23.8333 14.6666C23.8333 12.65 25.4833 11 27.4999 11ZM27.4999 25.6666C22.6049 25.6666 12.8333 28.1233 12.8333 33V36.6666H42.1666V33C42.1666 28.1233 32.3949 25.6666 27.4999 25.6666ZM16.4999 33C16.9033 31.68 22.5683 29.3333 27.4999 29.3333C32.4499 29.3333 38.1333 31.6983 38.4999 33H16.4999ZM10.9999 27.5V22H16.4999V18.3333H10.9999V12.8333H7.33325V18.3333H1.83325V22H7.33325V27.5H10.9999Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M37.6567 9.58833L35.1083 6.50833C34.6133 5.885 33.8617 5.5 33 5.5H11C10.1383 5.5 9.38667 5.885 8.87333 6.50833L6.34333 9.58833C5.81167 10.2117 5.5 11.0367 5.5 11.9167V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V11.9167C38.5 11.0367 38.1883 10.2117 37.6567 9.58833ZM11.44 9.16667H32.56L34.045 10.945H9.97333L11.44 9.16667ZM9.16667 34.8333V14.6667H34.8333V34.8333H9.16667ZM24.6583 18.3333H19.3417V23.8333H14.6667L22 31.1667L29.3333 23.8333H24.6583V18.3333Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M37.6567 9.58833L35.1083 6.50833C34.6133 5.885 33.8617 5.5 33 5.5H11C10.1383 5.5 9.38667 5.885 8.87333 6.50833L6.34333 9.58833C5.81167 10.2117 5.5 11.0367 5.5 11.9167V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V11.9167C38.5 11.0367 38.1883 10.2117 37.6567 9.58833ZM11.44 9.16667H32.56L34.045 10.945H9.97333L11.44 9.16667ZM9.16667 34.8333V14.6667H34.8333V34.8333H9.16667ZM24.6583 18.3333H19.3417V23.8333H14.6667L22 31.1667L29.3333 23.8333H24.6583V18.3333Z" fill="#0B121B"/>
3
+ </svg>