quickblox-react-ui-kit 0.2.8 → 0.3.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1081) hide show
  1. package/.prettierignore +4 -0
  2. package/.prettierrc +10 -0
  3. package/.storybook/main.ts +26 -0
  4. package/.storybook/preview.ts +16 -0
  5. package/README.md +5 -1
  6. package/dist/Data/Stubs.d.ts +1 -0
  7. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -0
  8. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -0
  9. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +0 -1
  10. package/dist/Presentation/Views/Dialog/Dialog.d.ts +0 -4
  11. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -0
  12. package/dist/Presentation/Views/Dialog/DialogHeader/{RenderRightActions/RenderRightActions.d.ts → DialogInfoIcon/DialogInfoIcon.d.ts} +3 -3
  13. package/dist/Presentation/Views/Dialog/{MessageInput/MessageInput.d.ts → InputMessage/InputMessage.d.ts} +2 -2
  14. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -1
  15. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -0
  16. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +22 -0
  17. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +0 -1
  18. package/dist/Presentation/Views/DialogList/DialogList.d.ts +8 -4
  19. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +6 -6
  20. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +3 -0
  21. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +3 -4
  22. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +1 -1
  23. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +3 -3
  24. package/dist/Presentation/icons/actions/index.d.ts +26 -0
  25. package/dist/Presentation/icons/contents/index.d.ts +13 -0
  26. package/dist/Presentation/icons/index.d.ts +7 -0
  27. package/dist/Presentation/icons/media/index.d.ts +12 -0
  28. package/dist/Presentation/icons/moderation/index.d.ts +5 -0
  29. package/dist/Presentation/icons/navigation/index.d.ts +12 -0
  30. package/dist/Presentation/icons/status/index.d.ts +7 -0
  31. package/dist/Presentation/icons/toggle/index.d.ts +23 -0
  32. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -0
  33. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -0
  34. package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -0
  35. package/dist/Presentation/ui-components/Badge/Badge.d.ts +10 -0
  36. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -0
  37. package/dist/Presentation/ui-components/Button/Button.d.ts +12 -0
  38. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -0
  39. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +9 -0
  40. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +8 -0
  41. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -0
  42. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -0
  43. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -0
  44. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +11 -0
  45. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -0
  46. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -0
  47. package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +29 -0
  48. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +12 -0
  49. package/dist/Presentation/ui-components/Header/Header.d.ts +13 -0
  50. package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -0
  51. package/dist/Presentation/ui-components/Loader/Loader.d.ts +8 -0
  52. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -0
  53. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +8 -0
  54. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +11 -0
  55. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +9 -0
  56. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +8 -0
  57. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +8 -0
  58. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +9 -0
  59. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +8 -0
  60. package/dist/Presentation/ui-components/Message/Message.d.ts +18 -0
  61. package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -0
  62. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +9 -0
  63. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +8 -0
  64. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +20 -0
  65. package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -0
  66. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +8 -0
  67. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -0
  68. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -0
  69. package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -0
  70. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +9 -0
  71. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -0
  72. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -0
  73. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -0
  74. package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -0
  75. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -0
  76. package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -0
  77. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -0
  78. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +11 -0
  79. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -0
  80. package/dist/Presentation/ui-components/index.d.ts +19 -0
  81. package/dist/hooks/useModal.d.ts +5 -0
  82. package/dist/index-ui.js +16525 -14748
  83. package/dist/index-ui.js.map +1 -1
  84. package/package.json +32 -34
  85. package/public/favicon.ico +0 -0
  86. package/public/index.html +47 -0
  87. package/public/logo192.png +0 -0
  88. package/public/logo512.png +0 -0
  89. package/public/manifest.json +25 -0
  90. package/public/quickblox.js +54609 -0
  91. package/public/robots.txt +3 -0
  92. package/src/App.scss +0 -0
  93. package/src/App.tsx +231 -0
  94. package/src/CommonTypes/BaseViewModel.ts +95 -0
  95. package/src/CommonTypes/FunctionResult.ts +66 -0
  96. package/src/Data/Creator.ts +105 -0
  97. package/src/Data/DefaultConfigurations.ts +270 -0
  98. package/src/Data/Stubs.ts +1242 -0
  99. package/src/Data/dto/dialog/LocalDialogDTO.ts +42 -0
  100. package/src/Data/dto/dialog/LocalDialogsDTO.ts +21 -0
  101. package/src/Data/dto/dialog/RemoteDialogDTO.ts +58 -0
  102. package/src/Data/dto/dialog/RemoteDialogsDTO.ts +21 -0
  103. package/src/Data/dto/file/LocalFileDTO.ts +26 -0
  104. package/src/Data/dto/file/RemoteFileDTO.ts +26 -0
  105. package/src/Data/dto/message/LocalMessageDTO.ts +49 -0
  106. package/src/Data/dto/message/LocalMessagesDTO.ts +21 -0
  107. package/src/Data/dto/message/RemoteMessageDTO.ts +57 -0
  108. package/src/Data/dto/message/RemoteMessagesDTO.ts +21 -0
  109. package/src/Data/dto/user/LocalUserDTO.ts +37 -0
  110. package/src/Data/dto/user/LocalUsersDTO.ts +21 -0
  111. package/src/Data/dto/user/RemoteUserDTO.ts +37 -0
  112. package/src/Data/dto/user/RemoteUsersDTO.ts +21 -0
  113. package/src/Data/mapper/DialogLocalDTOMapper.ts +742 -0
  114. package/src/Data/mapper/DialogRemoteDTOMapper.ts +741 -0
  115. package/src/Data/mapper/FileLocalDTOMapper.ts +216 -0
  116. package/src/Data/mapper/FileRemoteDTOMapper.ts +228 -0
  117. package/src/Data/mapper/IMapper.ts +4 -0
  118. package/src/Data/mapper/MessageLocalDTOMapper.ts +426 -0
  119. package/src/Data/mapper/MessageRemoteDTOMapper.ts +465 -0
  120. package/src/Data/mapper/UserLocalDTOMapper.ts +387 -0
  121. package/src/Data/mapper/UserRemoteDTOMapper.ts +398 -0
  122. package/src/Data/repository/ConnectionRepository.ts +133 -0
  123. package/src/Data/repository/DialogsRepository.ts +358 -0
  124. package/src/Data/repository/EventMessagesRepository.ts +325 -0
  125. package/src/Data/repository/FileRepository.ts +107 -0
  126. package/src/Data/repository/MessagesRepository.ts +291 -0
  127. package/src/Data/repository/UsersRepository.ts +297 -0
  128. package/src/Data/source/AISource.ts +133 -0
  129. package/src/Data/source/exception/LocalDataSourceException.ts +17 -0
  130. package/src/Data/source/exception/MapperDTOException.ts +22 -0
  131. package/src/Data/source/exception/RemoteDataSourceException.ts +28 -0
  132. package/src/Data/source/exception/RepositoryException.ts +27 -0
  133. package/src/Data/source/local/ChatLocalStorageDataSource.ts +260 -0
  134. package/src/Data/source/local/ILocalDataSource.ts +41 -0
  135. package/src/Data/source/local/ILocalFileDataSource.ts +11 -0
  136. package/src/Data/source/local/LocalDataSource.ts +353 -0
  137. package/src/Data/source/local/LocalFileDataSource.ts +20 -0
  138. package/src/Data/source/remote/IRemoteDataSource.ts +112 -0
  139. package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +425 -0
  140. package/src/Data/source/remote/Mapper/FileDTOMapper.ts +270 -0
  141. package/src/Data/source/remote/Mapper/IDTOMapper.ts +4 -0
  142. package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +607 -0
  143. package/src/Data/source/remote/Mapper/UserDTOMapper.ts +345 -0
  144. package/src/Data/source/remote/RemoteDataSource.ts +1291 -0
  145. package/src/Domain/entity/Chat.ts +4 -0
  146. package/src/Domain/entity/ChatMessageAttachmentEntity.ts +15 -0
  147. package/src/Domain/entity/CustomDataEntity.ts +3 -0
  148. package/src/Domain/entity/DialogEntity.ts +15 -0
  149. package/src/Domain/entity/DialogEventInfo.ts +15 -0
  150. package/src/Domain/entity/DialogTypes.ts +7 -0
  151. package/src/Domain/entity/EventMessageType.ts +7 -0
  152. package/src/Domain/entity/FileEntity.ts +11 -0
  153. package/src/Domain/entity/FileTypes.ts +9 -0
  154. package/src/Domain/entity/GroupDialogEntity.ts +54 -0
  155. package/src/Domain/entity/LastMessageEntity.ts +5 -0
  156. package/src/Domain/entity/MessageEntity.ts +25 -0
  157. package/src/Domain/entity/NotificationTypes.ts +9 -0
  158. package/src/Domain/entity/PrivateDialogEntity.ts +46 -0
  159. package/src/Domain/entity/PublicDialogEntity.ts +80 -0
  160. package/src/Domain/entity/UserEntity.ts +23 -0
  161. package/src/Domain/exception/domain/DomainExecption.ts +5 -0
  162. package/src/Domain/repository/IDialogsRepository.ts +42 -0
  163. package/src/Domain/repository/IFileRepository.ts +9 -0
  164. package/src/Domain/repository/IMessagesRepository.ts +28 -0
  165. package/src/Domain/repository/IUsersRepository.ts +13 -0
  166. package/src/Domain/repository/Pagination.ts +48 -0
  167. package/src/Domain/use_cases/CreateDialogUseCase.ts +79 -0
  168. package/src/Domain/use_cases/ForwardMessagesUseCase.ts +73 -0
  169. package/src/Domain/use_cases/GetAllDialogsUseCase.ts +20 -0
  170. package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +40 -0
  171. package/src/Domain/use_cases/GetAllMessagesForDialog.ts +61 -0
  172. package/src/Domain/use_cases/GetAllUsersUseCase.ts +34 -0
  173. package/src/Domain/use_cases/GetDialogByIdUseCase.ts +28 -0
  174. package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +22 -0
  175. package/src/Domain/use_cases/LeaveDialogUseCase.ts +116 -0
  176. package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +118 -0
  177. package/src/Domain/use_cases/ReplyMessagesUseCase.ts +35 -0
  178. package/src/Domain/use_cases/SendTextMessageUseCase.ts +27 -0
  179. package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +160 -0
  180. package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +68 -0
  181. package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts +45 -0
  182. package/src/Domain/use_cases/SyncDialogsUseCase.ts +177 -0
  183. package/src/Domain/use_cases/UpdateDialogUseCase.ts +72 -0
  184. package/src/Domain/use_cases/UploadFileUseCase.ts +24 -0
  185. package/src/Domain/use_cases/UserTypingMessageUseCase.ts +50 -0
  186. package/src/Domain/use_cases/ai/AIAnswerAssistUseCase.ts +69 -0
  187. package/src/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.ts +57 -0
  188. package/src/Domain/use_cases/ai/AIRephraseUseCase.ts +89 -0
  189. package/src/Domain/use_cases/ai/AIRephraseWithProxyUseCase.ts +62 -0
  190. package/src/Domain/use_cases/ai/AITranslateUseCase.ts +76 -0
  191. package/src/Domain/use_cases/ai/AITranslateWithProxyUseCase.ts +63 -0
  192. package/src/Domain/use_cases/base/BaseUseCase.ts +77 -0
  193. package/src/Domain/use_cases/base/IUseCase.ts +5 -0
  194. package/src/Domain/use_cases/base/Subscribable/ISubscribable.ts +6 -0
  195. package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +144 -0
  196. package/src/Presentation/.gitkeep +0 -0
  197. package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +34 -0
  198. package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.tsx +64 -0
  199. package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -0
  200. package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.tsx +28 -0
  201. package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +67 -0
  202. package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.tsx +117 -0
  203. package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -0
  204. package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.tsx +78 -0
  205. package/src/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.ts +40 -0
  206. package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +20 -0
  207. package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.tsx +177 -0
  208. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -0
  209. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.tsx +122 -0
  210. package/src/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.tsx +98 -0
  211. package/src/Presentation/Views/Dialog/AIWidgets/SliderMenu.tsx +172 -0
  212. package/src/Presentation/Views/Dialog/AIWidgets/Tone.ts +21 -0
  213. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.tsx +72 -0
  214. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.tsx +72 -0
  215. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.tsx +96 -0
  216. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.tsx +94 -0
  217. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.tsx +78 -0
  218. package/src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.tsx +78 -0
  219. package/src/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.tsx +88 -0
  220. package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -0
  221. package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.tsx +93 -0
  222. package/src/Presentation/Views/Dialog/Dialog.scss +368 -0
  223. package/src/Presentation/Views/Dialog/Dialog.tsx +100 -0
  224. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -0
  225. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.tsx +34 -0
  226. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -0
  227. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.tsx +51 -0
  228. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -0
  229. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.tsx +58 -0
  230. package/src/Presentation/Views/Dialog/DialogViewModel.ts +24 -0
  231. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -0
  232. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.tsx +105 -0
  233. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -0
  234. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx +43 -0
  235. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -0
  236. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.tsx +23 -0
  237. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -0
  238. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx +96 -0
  239. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +40 -0
  240. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.tsx +98 -0
  241. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -0
  242. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.tsx +65 -0
  243. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -0
  244. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.tsx +118 -0
  245. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -0
  246. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.tsx +90 -0
  247. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +65 -0
  248. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.tsx +47 -0
  249. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -0
  250. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.tsx +145 -0
  251. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -0
  252. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.tsx +114 -0
  253. package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -0
  254. package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.tsx +290 -0
  255. package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -0
  256. package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.tsx +32 -0
  257. package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -0
  258. package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.tsx +316 -0
  259. package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -0
  260. package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.tsx +67 -0
  261. package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -0
  262. package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.tsx +298 -0
  263. package/src/Presentation/Views/Dialog/Message/Message.tsx +378 -0
  264. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -0
  265. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.tsx +155 -0
  266. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -0
  267. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.tsx +50 -0
  268. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -0
  269. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.tsx +50 -0
  270. package/src/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.tsx +92 -0
  271. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -0
  272. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.tsx +58 -0
  273. package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -0
  274. package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.tsx +61 -0
  275. package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -0
  276. package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.tsx +133 -0
  277. package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -0
  278. package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.tsx +104 -0
  279. package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -0
  280. package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.tsx +103 -0
  281. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -0
  282. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.tsx +67 -0
  283. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -0
  284. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +364 -0
  285. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -0
  286. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.tsx +17 -0
  287. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -0
  288. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.tsx +17 -0
  289. package/src/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.tsx +21 -0
  290. package/src/Presentation/Views/Dialog/useDialogViewModel.ts +838 -0
  291. package/src/Presentation/Views/DialogInfo/DialogInfo.scss +235 -0
  292. package/src/Presentation/Views/DialogInfo/DialogInfo.tsx +450 -0
  293. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -0
  294. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.tsx +26 -0
  295. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +176 -0
  296. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.tsx +94 -0
  297. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -0
  298. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.tsx +71 -0
  299. package/src/Presentation/Views/DialogInfo/UsersList/UsersList.scss +0 -0
  300. package/src/Presentation/Views/DialogInfo/UsersList/UsersList.tsx +71 -0
  301. package/src/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.ts +15 -0
  302. package/src/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.ts +124 -0
  303. package/src/Presentation/Views/DialogList/DialogList.scss +145 -0
  304. package/src/Presentation/Views/DialogList/DialogList.tsx +371 -0
  305. package/src/Presentation/Views/DialogList/DialogListViewModel.ts +25 -0
  306. package/src/Presentation/Views/DialogList/useDialogListViewModel.ts +479 -0
  307. package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -0
  308. package/src/Presentation/Views/DialogListHeader/DialogListHeader.tsx +90 -0
  309. package/src/Presentation/Views/EditDialog/EditDialog.scss +203 -0
  310. package/src/Presentation/Views/EditDialog/EditDialog.tsx +267 -0
  311. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -0
  312. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.tsx +59 -0
  313. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -0
  314. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +69 -0
  315. package/src/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.tsx +177 -0
  316. package/src/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.tsx +37 -0
  317. package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -0
  318. package/src/Presentation/Views/InviteMembers/InviteMembers.tsx +309 -0
  319. package/src/Presentation/Views/InviteMembers/InviteMembersViewModel.ts +18 -0
  320. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -0
  321. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +122 -0
  322. package/src/Presentation/Views/InviteMembers/InviteUsersResultViewModel.ts +12 -0
  323. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -0
  324. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.tsx +22 -0
  325. package/src/Presentation/Views/InviteMembers/useInviteMembersViewModel.ts +143 -0
  326. package/src/Presentation/Views/Navigation/More.svg +7 -0
  327. package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -0
  328. package/src/Presentation/Views/PreviewDialog/PreviewDialog.tsx +317 -0
  329. package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -0
  330. package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.tsx +59 -0
  331. package/src/Presentation/Views/PreviewDialog/PreviewDialogViewModel.ts +42 -0
  332. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -0
  333. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.tsx +48 -0
  334. package/src/Presentation/assets/fonts/.gitkeep +0 -0
  335. package/src/Presentation/assets/fonts/Roboto-Bold.eot +0 -0
  336. package/src/Presentation/assets/fonts/Roboto-Bold.ttf +0 -0
  337. package/src/Presentation/assets/fonts/Roboto-Bold.woff +0 -0
  338. package/src/Presentation/assets/fonts/Roboto-Bold.woff2 +0 -0
  339. package/src/Presentation/assets/fonts/Roboto-Medium.eot +0 -0
  340. package/src/Presentation/assets/fonts/Roboto-Medium.ttf +0 -0
  341. package/src/Presentation/assets/fonts/Roboto-Medium.woff +0 -0
  342. package/src/Presentation/assets/fonts/Roboto-Medium.woff2 +0 -0
  343. package/src/Presentation/assets/fonts/Roboto-Regular.eot +0 -0
  344. package/src/Presentation/assets/fonts/Roboto-Regular.ttf +0 -0
  345. package/src/Presentation/assets/fonts/Roboto-Regular.woff +0 -0
  346. package/src/Presentation/assets/fonts/Roboto-Regular.woff2 +0 -0
  347. package/src/Presentation/assets/img/Artem_Koltunov_Selfi.png +0 -0
  348. package/src/Presentation/assets/img/bee-img.png +0 -0
  349. package/src/Presentation/assets/img/web-doc.png +0 -0
  350. package/src/Presentation/components/Button.js +5 -0
  351. package/src/Presentation/components/Navbar.tsx +45 -0
  352. package/src/Presentation/components/TextInput.js +10 -0
  353. package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +40 -0
  354. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.scss +0 -0
  355. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +30 -0
  356. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -0
  357. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +62 -0
  358. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -0
  359. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +48 -0
  360. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -0
  361. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +52 -0
  362. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -0
  363. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.tsx +44 -0
  364. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -0
  365. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +45 -0
  366. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -0
  367. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.tsx +39 -0
  368. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.tsx +7 -0
  369. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -0
  370. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.tsx +50 -0
  371. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.tsx +7 -0
  372. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.tsx +7 -0
  373. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.tsx +7 -0
  374. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.tsx +7 -0
  375. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.tsx +7 -0
  376. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.tsx +7 -0
  377. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.tsx +7 -0
  378. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.tsx +7 -0
  379. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.tsx +20 -0
  380. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.tsx +7 -0
  381. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.tsx +7 -0
  382. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -0
  383. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/index.tsx +22 -0
  384. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -0
  385. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.tsx +22 -0
  386. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -0
  387. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/index.tsx +22 -0
  388. package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -0
  389. package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.tsx +93 -0
  390. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -0
  391. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/index.tsx +22 -0
  392. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -0
  393. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/index.tsx +22 -0
  394. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -0
  395. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/index.tsx +22 -0
  396. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -0
  397. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/index.tsx +22 -0
  398. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -0
  399. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.tsx +35 -0
  400. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -0
  401. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.tsx +22 -0
  402. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -0
  403. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.tsx +22 -0
  404. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -0
  405. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.tsx +22 -0
  406. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -0
  407. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.tsx +22 -0
  408. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -0
  409. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/index.tsx +22 -0
  410. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -0
  411. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.tsx +22 -0
  412. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -0
  413. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.tsx +22 -0
  414. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -0
  415. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/index.tsx +35 -0
  416. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -0
  417. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.tsx +22 -0
  418. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -0
  419. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/index.tsx +22 -0
  420. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -0
  421. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.tsx +22 -0
  422. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -0
  423. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.tsx +22 -0
  424. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -0
  425. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/index.tsx +38 -0
  426. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -0
  427. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/index.tsx +22 -0
  428. package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -0
  429. package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.tsx +58 -0
  430. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -0
  431. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.tsx +22 -0
  432. package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -0
  433. package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/index.tsx +34 -0
  434. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -0
  435. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.tsx +22 -0
  436. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -0
  437. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.tsx +22 -0
  438. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -0
  439. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/index.tsx +35 -0
  440. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -0
  441. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.tsx +38 -0
  442. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -0
  443. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/index.tsx +35 -0
  444. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -0
  445. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.tsx +22 -0
  446. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -0
  447. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/index.tsx +22 -0
  448. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -0
  449. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/index.tsx +22 -0
  450. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -0
  451. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.tsx +22 -0
  452. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -0
  453. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.tsx +35 -0
  454. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -0
  455. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.tsx +22 -0
  456. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -0
  457. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.tsx +22 -0
  458. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -0
  459. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.tsx +67 -0
  460. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -0
  461. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/index.tsx +22 -0
  462. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -0
  463. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.tsx +22 -0
  464. package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -0
  465. package/src/Presentation/components/UI/svgs/Icons/Contents/User/index.tsx +35 -0
  466. package/src/Presentation/components/UI/svgs/Icons/IconsCommonTypes.ts +6 -0
  467. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -0
  468. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/index.tsx +22 -0
  469. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -0
  470. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.tsx +22 -0
  471. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -0
  472. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.tsx +22 -0
  473. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -0
  474. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/index.tsx +22 -0
  475. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -0
  476. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/index.tsx +22 -0
  477. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -0
  478. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.tsx +22 -0
  479. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -0
  480. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.tsx +35 -0
  481. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -0
  482. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.tsx +22 -0
  483. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -0
  484. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.tsx +22 -0
  485. package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -0
  486. package/src/Presentation/components/UI/svgs/Icons/Media/Location/index.tsx +26 -0
  487. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -0
  488. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.tsx +22 -0
  489. package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -0
  490. package/src/Presentation/components/UI/svgs/Icons/Media/Translate/index.tsx +35 -0
  491. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -0
  492. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.tsx +22 -0
  493. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -0
  494. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.tsx +22 -0
  495. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -0
  496. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.tsx +22 -0
  497. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -0
  498. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.tsx +22 -0
  499. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -0
  500. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.tsx +22 -0
  501. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -0
  502. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.tsx +22 -0
  503. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -0
  504. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.tsx +22 -0
  505. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -0
  506. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.tsx +22 -0
  507. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -0
  508. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/index.tsx +34 -0
  509. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -0
  510. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/index.tsx +35 -0
  511. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -0
  512. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/index.tsx +35 -0
  513. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -0
  514. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.tsx +35 -0
  515. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -0
  516. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/index.tsx +22 -0
  517. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -0
  518. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/index.tsx +35 -0
  519. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -0
  520. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.tsx +22 -0
  521. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -0
  522. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.tsx +36 -0
  523. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -0
  524. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/index.tsx +35 -0
  525. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -0
  526. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.tsx +22 -0
  527. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -0
  528. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.tsx +22 -0
  529. package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -0
  530. package/src/Presentation/components/UI/svgs/Icons/Status/Error/index.tsx +36 -0
  531. package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -0
  532. package/src/Presentation/components/UI/svgs/Icons/Status/Help/index.tsx +22 -0
  533. package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -0
  534. package/src/Presentation/components/UI/svgs/Icons/Status/Information/index.tsx +22 -0
  535. package/src/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.tsx +40 -0
  536. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -0
  537. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/index.tsx +22 -0
  538. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -0
  539. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/index.tsx +22 -0
  540. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -0
  541. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/index.tsx +22 -0
  542. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -0
  543. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.tsx +38 -0
  544. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -0
  545. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.tsx +22 -0
  546. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -0
  547. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.tsx +22 -0
  548. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -0
  549. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.tsx +22 -0
  550. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -0
  551. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.tsx +24 -0
  552. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -0
  553. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.tsx +22 -0
  554. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -0
  555. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.tsx +22 -0
  556. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -0
  557. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.tsx +22 -0
  558. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -0
  559. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.tsx +22 -0
  560. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -0
  561. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.tsx +22 -0
  562. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -0
  563. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.tsx +22 -0
  564. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -0
  565. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.tsx +22 -0
  566. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -0
  567. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.tsx +26 -0
  568. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -0
  569. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.tsx +22 -0
  570. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -0
  571. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.tsx +35 -0
  572. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -0
  573. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.tsx +35 -0
  574. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -0
  575. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.tsx +22 -0
  576. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -0
  577. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.tsx +22 -0
  578. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -0
  579. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/index.tsx +22 -0
  580. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -0
  581. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.tsx +22 -0
  582. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -0
  583. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/index.tsx +22 -0
  584. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -0
  585. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.tsx +22 -0
  586. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -0
  587. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.tsx +22 -0
  588. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -0
  589. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.tsx +22 -0
  590. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -0
  591. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.tsx +22 -0
  592. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -0
  593. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +27 -0
  594. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -0
  595. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +88 -0
  596. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -0
  597. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +90 -0
  598. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -0
  599. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +90 -0
  600. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -0
  601. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.tsx +102 -0
  602. package/src/Presentation/components/containers/SectionList/hooks/createUseComponent.ts +20 -0
  603. package/src/Presentation/components/containers/SectionList/hooks/index.ts +4 -0
  604. package/src/Presentation/components/containers/SectionList/hooks/useMobileLayout.ts +27 -0
  605. package/src/Presentation/components/containers/SectionList/hooks/usePrevious.ts +11 -0
  606. package/src/Presentation/components/containers/SectionList/hooks/useVisibility.ts +17 -0
  607. package/src/Presentation/components/containers/SectionList/index.tsx +52 -0
  608. package/src/Presentation/components/containers/SectionList/styles.css +50 -0
  609. package/src/Presentation/components/containers/SectionList/useComponent.ts +136 -0
  610. package/src/Presentation/icons/actions/add-contact.svg +3 -0
  611. package/src/Presentation/icons/actions/add.svg +3 -0
  612. package/src/Presentation/icons/actions/archive.svg +3 -0
  613. package/src/Presentation/icons/actions/copy.svg +3 -0
  614. package/src/Presentation/icons/actions/delete.svg +3 -0
  615. package/src/Presentation/icons/actions/download.svg +3 -0
  616. package/src/Presentation/icons/actions/edit.svg +3 -0
  617. package/src/Presentation/icons/actions/emoji.svg +3 -0
  618. package/src/Presentation/icons/actions/forward-filled.svg +3 -0
  619. package/src/Presentation/icons/actions/hungup.svg +3 -0
  620. package/src/Presentation/icons/actions/income-call.svg +3 -0
  621. package/src/Presentation/icons/actions/index.ts +26 -0
  622. package/src/Presentation/icons/actions/like.svg +3 -0
  623. package/src/Presentation/icons/actions/new-chat.svg +3 -0
  624. package/src/Presentation/icons/actions/outcome-call.svg +3 -0
  625. package/src/Presentation/icons/actions/phone-filled.svg +3 -0
  626. package/src/Presentation/icons/actions/phone.svg +3 -0
  627. package/src/Presentation/icons/actions/remove-2.svg +3 -0
  628. package/src/Presentation/icons/actions/remove.svg +3 -0
  629. package/src/Presentation/icons/actions/rephrase.svg +6 -0
  630. package/src/Presentation/icons/actions/reply-filled.svg +3 -0
  631. package/src/Presentation/icons/actions/robot.svg +5 -0
  632. package/src/Presentation/icons/actions/send.svg +3 -0
  633. package/src/Presentation/icons/actions/share.svg +3 -0
  634. package/src/Presentation/icons/actions/swap-camera.svg +3 -0
  635. package/src/Presentation/icons/actions/translate.svg +3 -0
  636. package/src/Presentation/icons/actions/unarchive.svg +3 -0
  637. package/src/Presentation/icons/actions/video.svg +3 -0
  638. package/src/Presentation/icons/actions/voice.svg +3 -0
  639. package/src/Presentation/icons/contents/broadcast.svg +7 -0
  640. package/src/Presentation/icons/contents/chat-filled.svg +3 -0
  641. package/src/Presentation/icons/contents/chat.svg +3 -0
  642. package/src/Presentation/icons/contents/conference.svg +3 -0
  643. package/src/Presentation/icons/contents/contact-filled.svg +3 -0
  644. package/src/Presentation/icons/contents/contact.svg +3 -0
  645. package/src/Presentation/icons/contents/group-chat.svg +3 -0
  646. package/src/Presentation/icons/contents/index.ts +13 -0
  647. package/src/Presentation/icons/contents/notifications.svg +3 -0
  648. package/src/Presentation/icons/contents/private-chat.svg +3 -0
  649. package/src/Presentation/icons/contents/public-channel.svg +7 -0
  650. package/src/Presentation/icons/contents/stream-filled.svg +3 -0
  651. package/src/Presentation/icons/contents/stream.svg +3 -0
  652. package/src/Presentation/icons/contents/user.svg +3 -0
  653. package/src/Presentation/icons/index.ts +7 -0
  654. package/src/Presentation/icons/media/attachment.svg +3 -0
  655. package/src/Presentation/icons/media/audio-file.svg +3 -0
  656. package/src/Presentation/icons/media/broken-file.svg +3 -0
  657. package/src/Presentation/icons/media/camera.svg +3 -0
  658. package/src/Presentation/icons/media/file.svg +3 -0
  659. package/src/Presentation/icons/media/gif-file.svg +3 -0
  660. package/src/Presentation/icons/media/image-filled.svg +3 -0
  661. package/src/Presentation/icons/media/image.svg +3 -0
  662. package/src/Presentation/icons/media/index.ts +12 -0
  663. package/src/Presentation/icons/media/link.svg +3 -0
  664. package/src/Presentation/icons/media/location.svg +4 -0
  665. package/src/Presentation/icons/media/text-document.svg +3 -0
  666. package/src/Presentation/icons/media/video-file.svg +3 -0
  667. package/src/Presentation/icons/moderation/admin.svg +3 -0
  668. package/src/Presentation/icons/moderation/banned.svg +3 -0
  669. package/src/Presentation/icons/moderation/freeze.svg +3 -0
  670. package/src/Presentation/icons/moderation/index.ts +5 -0
  671. package/src/Presentation/icons/moderation/moderations.svg +3 -0
  672. package/src/Presentation/icons/moderation/muted.svg +3 -0
  673. package/src/Presentation/icons/navigation/arrow-left.svg +3 -0
  674. package/src/Presentation/icons/navigation/arrow-right.svg +3 -0
  675. package/src/Presentation/icons/navigation/back.svg +3 -0
  676. package/src/Presentation/icons/navigation/close.svg +3 -0
  677. package/src/Presentation/icons/navigation/down.svg +3 -0
  678. package/src/Presentation/icons/navigation/index.ts +12 -0
  679. package/src/Presentation/icons/navigation/leave.svg +3 -0
  680. package/src/Presentation/icons/navigation/more.svg +3 -0
  681. package/src/Presentation/icons/navigation/next.svg +3 -0
  682. package/src/Presentation/icons/navigation/plus.svg +3 -0
  683. package/src/Presentation/icons/navigation/refresh.svg +3 -0
  684. package/src/Presentation/icons/navigation/search.svg +3 -0
  685. package/src/Presentation/icons/navigation/settings-filled.svg +3 -0
  686. package/src/Presentation/icons/navigation/settings.svg +3 -0
  687. package/src/Presentation/icons/status/error.svg +3 -0
  688. package/src/Presentation/icons/status/help.svg +3 -0
  689. package/src/Presentation/icons/status/index.ts +7 -0
  690. package/src/Presentation/icons/status/information.svg +3 -0
  691. package/src/Presentation/icons/status/loader.svg +3 -0
  692. package/src/Presentation/icons/status/mention.svg +3 -0
  693. package/src/Presentation/icons/status/sent.svg +3 -0
  694. package/src/Presentation/icons/status/viewed-delivered.svg +3 -0
  695. package/src/Presentation/icons/toggle/camera-off.svg +3 -0
  696. package/src/Presentation/icons/toggle/camera-on.svg +3 -0
  697. package/src/Presentation/icons/toggle/check-off.svg +3 -0
  698. package/src/Presentation/icons/toggle/check-on.svg +3 -0
  699. package/src/Presentation/icons/toggle/favorite.svg +3 -0
  700. package/src/Presentation/icons/toggle/favourite.svg +3 -0
  701. package/src/Presentation/icons/toggle/full-screen.svg +3 -0
  702. package/src/Presentation/icons/toggle/hide.svg +3 -0
  703. package/src/Presentation/icons/toggle/index.ts +23 -0
  704. package/src/Presentation/icons/toggle/louder.svg +3 -0
  705. package/src/Presentation/icons/toggle/mic-off.svg +3 -0
  706. package/src/Presentation/icons/toggle/mic-on.svg +4 -0
  707. package/src/Presentation/icons/toggle/minimize.svg +3 -0
  708. package/src/Presentation/icons/toggle/notify-off.svg +3 -0
  709. package/src/Presentation/icons/toggle/notify-on.svg +3 -0
  710. package/src/Presentation/icons/toggle/pause.svg +3 -0
  711. package/src/Presentation/icons/toggle/play.svg +3 -0
  712. package/src/Presentation/icons/toggle/quite.svg +3 -0
  713. package/src/Presentation/icons/toggle/record.svg +3 -0
  714. package/src/Presentation/icons/toggle/screenshare.svg +3 -0
  715. package/src/Presentation/icons/toggle/show.svg +3 -0
  716. package/src/Presentation/icons/toggle/speaker off.svg +3 -0
  717. package/src/Presentation/icons/toggle/speaker-off.svg +3 -0
  718. package/src/Presentation/icons/toggle/speaker.svg +3 -0
  719. package/src/Presentation/icons/toggle/stop-record.svg +3 -0
  720. package/src/Presentation/icons/toggle/stop-share.svg +3 -0
  721. package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -0
  722. package/src/Presentation/layouts/Desktop/DesktopLayout.tsx +89 -0
  723. package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +1374 -0
  724. package/src/Presentation/layouts/LayoutCommonTypes.ts +7 -0
  725. package/src/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.tsx +27 -0
  726. package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -0
  727. package/src/Presentation/layouts/TestStage/LoginView/Login.tsx +95 -0
  728. package/src/Presentation/providers/ProviderProps.ts +5 -0
  729. package/src/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +339 -0
  730. package/src/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.ts +10 -0
  731. package/src/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.ts +38 -0
  732. package/src/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.ts +83 -0
  733. package/src/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.ts +11 -0
  734. package/src/Presentation/themes/DarkTheme.ts +58 -0
  735. package/src/Presentation/themes/DefaultThemes/CustomTheme.ts +58 -0
  736. package/src/Presentation/themes/DefaultThemes/DefaultTheme.ts +58 -0
  737. package/src/Presentation/themes/LightTheme.ts +58 -0
  738. package/src/Presentation/themes/ThemeScheme.ts +83 -0
  739. package/src/Presentation/themes/UiKitTheme.ts +37 -0
  740. package/src/Presentation/themes/styles/_fonts.scss +32 -0
  741. package/src/Presentation/themes/styles/_mixins.scss +6 -0
  742. package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -0
  743. package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -0
  744. package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -0
  745. package/src/Presentation/themes/styles/_theme_dark.scss +37 -0
  746. package/src/Presentation/themes/styles/_theme_light.scss +38 -0
  747. package/src/Presentation/themes/styles/_variables.scss +54 -0
  748. package/src/Presentation/ui-components/Avatar/Avatar.scss +55 -0
  749. package/src/Presentation/ui-components/Avatar/Avatar.tsx +30 -0
  750. package/src/Presentation/ui-components/Avatar/avatar.stories.tsx +78 -0
  751. package/src/Presentation/ui-components/Badge/Badge.scss +23 -0
  752. package/src/Presentation/ui-components/Badge/Badge.stories.ts +64 -0
  753. package/src/Presentation/ui-components/Badge/Badge.tsx +23 -0
  754. package/src/Presentation/ui-components/Button/Button.scss +133 -0
  755. package/src/Presentation/ui-components/Button/Button.stories.ts +93 -0
  756. package/src/Presentation/ui-components/Button/Button.tsx +49 -0
  757. package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -0
  758. package/src/Presentation/ui-components/CheckBox/CheckBox.tsx +23 -0
  759. package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -0
  760. package/src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts +38 -0
  761. package/src/Presentation/ui-components/DialogBanner/DialogBanner.tsx +16 -0
  762. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -0
  763. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx +166 -0
  764. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.tsx +70 -0
  765. package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +45 -0
  766. package/src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx +106 -0
  767. package/src/Presentation/ui-components/DialogWindow/DialogWindow.tsx +41 -0
  768. package/src/Presentation/ui-components/Dropdown/Dropdown.scss +78 -0
  769. package/src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx +149 -0
  770. package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +89 -0
  771. package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +30 -0
  772. package/src/Presentation/ui-components/Header/Header.scss +72 -0
  773. package/src/Presentation/ui-components/Header/Header.stories.tsx +116 -0
  774. package/src/Presentation/ui-components/Header/Header.tsx +51 -0
  775. package/src/Presentation/ui-components/Loader/Loader.scss +27 -0
  776. package/src/Presentation/ui-components/Loader/Loader.stories.ts +42 -0
  777. package/src/Presentation/ui-components/Loader/Loader.tsx +15 -0
  778. package/src/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.tsx +66 -0
  779. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +71 -0
  780. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.tsx +148 -0
  781. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -0
  782. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.tsx +16 -0
  783. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -0
  784. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.tsx +25 -0
  785. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -0
  786. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.tsx +22 -0
  787. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +18 -0
  788. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.tsx +36 -0
  789. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -0
  790. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.tsx +43 -0
  791. package/src/Presentation/ui-components/Message/Message.scss +136 -0
  792. package/src/Presentation/ui-components/Message/Message.stories.tsx +249 -0
  793. package/src/Presentation/ui-components/Message/Message.tsx +85 -0
  794. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -0
  795. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.tsx +46 -0
  796. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -0
  797. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.tsx +32 -0
  798. package/src/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.tsx +33 -0
  799. package/src/Presentation/ui-components/MessageInput/MessageInput.scss +123 -0
  800. package/src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx +137 -0
  801. package/src/Presentation/ui-components/MessageInput/MessageInput.tsx +155 -0
  802. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -0
  803. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.tsx +27 -0
  804. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -0
  805. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.tsx +101 -0
  806. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -0
  807. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +79 -0
  808. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -0
  809. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts +158 -0
  810. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.tsx +34 -0
  811. package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -0
  812. package/src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx +95 -0
  813. package/src/Presentation/ui-components/Placeholder/Placeholder.tsx +38 -0
  814. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -0
  815. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts +66 -0
  816. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.tsx +38 -0
  817. package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -0
  818. package/src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx +177 -0
  819. package/src/Presentation/ui-components/SettingsItem/SettingsItem.tsx +56 -0
  820. package/src/Presentation/ui-components/TextField/TextField.scss +91 -0
  821. package/src/Presentation/ui-components/TextField/TextField.stories.ts +103 -0
  822. package/src/Presentation/ui-components/TextField/TextField.tsx +78 -0
  823. package/src/Presentation/ui-components/Toast/Toast.scss +17 -0
  824. package/src/Presentation/ui-components/Toast/Toast.stories.tsx +50 -0
  825. package/src/Presentation/ui-components/Toast/ToastProvider.tsx +28 -0
  826. package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -0
  827. package/src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx +128 -0
  828. package/src/Presentation/ui-components/UserListItem/UserListItem.tsx +43 -0
  829. package/src/Presentation/ui-components/index.ts +19 -0
  830. package/src/QBconfig.ts +151 -0
  831. package/src/hooks/useModal.ts +13 -0
  832. package/src/index-ui.ts +87 -0
  833. package/src/index.scss +27 -0
  834. package/src/index.tsx +25 -0
  835. package/src/logo.svg +1 -0
  836. package/src/package_artan_react_ui.json +91 -0
  837. package/src/package_original.json +115 -0
  838. package/src/qb-api-calls/index.ts +581 -0
  839. package/src/react-app-env.d.ts +1 -0
  840. package/src/setupTests.ts +5 -0
  841. package/src/utils/DateTimeFormatter.ts +90 -0
  842. package/src/utils/parse.ts +74 -0
  843. package/src/utils/utils.ts +102 -0
  844. package/storybook-static/312.0aa0e670.iframe.bundle.js +1 -0
  845. package/storybook-static/341.bea6d0bd.iframe.bundle.js +1 -0
  846. package/storybook-static/426.be971fb5.iframe.bundle.js +157 -0
  847. package/storybook-static/426.be971fb5.iframe.bundle.js.map +1 -0
  848. package/storybook-static/472.3c9e81e6.iframe.bundle.js +351 -0
  849. package/storybook-static/472.3c9e81e6.iframe.bundle.js.map +1 -0
  850. package/storybook-static/607.b04b9f0b.iframe.bundle.js +1 -0
  851. package/storybook-static/729.734b4ae4.iframe.bundle.js +1 -0
  852. package/storybook-static/758.d99b0166.iframe.bundle.js +14 -0
  853. package/storybook-static/758.d99b0166.iframe.bundle.js.map +1 -0
  854. package/storybook-static/797.b3873e04.iframe.bundle.js +1 -0
  855. package/storybook-static/926.f14bb932.iframe.bundle.js +508 -0
  856. package/storybook-static/926.f14bb932.iframe.bundle.js.map +1 -0
  857. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.2fb23ae6.iframe.bundle.js +1 -0
  858. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.fea53429.iframe.bundle.js +14 -0
  859. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.fea53429.iframe.bundle.js.map +1 -0
  860. package/storybook-static/Presentation-ui-components-Button-Button-stories.f6c6437b.iframe.bundle.js +1 -0
  861. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.6b2a3f72.iframe.bundle.js +10 -0
  862. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.6b2a3f72.iframe.bundle.js.map +1 -0
  863. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.f1cb9d40.iframe.bundle.js +1 -0
  864. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.0ad17c54.iframe.bundle.js +1 -0
  865. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.3b620239.iframe.bundle.js +1 -0
  866. package/storybook-static/Presentation-ui-components-Header-Header-stories.45503161.iframe.bundle.js +1 -0
  867. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8b53bb33.iframe.bundle.js +1 -0
  868. package/storybook-static/Presentation-ui-components-Message-Message-stories.63bec01b.iframe.bundle.js +1 -0
  869. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.728a66ad.iframe.bundle.js +1 -0
  870. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.82483823.iframe.bundle.js +10 -0
  871. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.82483823.iframe.bundle.js.map +1 -0
  872. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.0898ead6.iframe.bundle.js +1 -0
  873. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.973cdb64.iframe.bundle.js +1 -0
  874. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.0af0b8a8.iframe.bundle.js +1 -0
  875. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.5987d2bb.iframe.bundle.js +1 -0
  876. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.e26b2e07.iframe.bundle.js +1 -0
  877. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.e88f4206.iframe.bundle.js +1 -0
  878. package/storybook-static/favicon.ico +0 -0
  879. package/storybook-static/favicon.svg +7 -0
  880. package/storybook-static/iframe.html +355 -0
  881. package/storybook-static/index.html +131 -0
  882. package/storybook-static/index.json +1 -0
  883. package/storybook-static/logo192.png +0 -0
  884. package/storybook-static/logo512.png +0 -0
  885. package/storybook-static/main.0332574c.iframe.bundle.js +1 -0
  886. package/storybook-static/manifest.json +25 -0
  887. package/storybook-static/project.json +1 -0
  888. package/storybook-static/quickblox.js +54609 -0
  889. package/storybook-static/robots.txt +3 -0
  890. package/storybook-static/runtime~main.16726a14.iframe.bundle.js +1 -0
  891. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
  892. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  893. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
  894. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  895. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +63 -0
  896. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +18 -0
  897. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +3 -0
  898. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
  899. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +3 -0
  900. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
  901. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +3 -0
  902. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
  903. package/storybook-static/sb-addons/interactions-8/manager-bundle.js +12 -0
  904. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
  905. package/storybook-static/sb-addons/links-0/manager-bundle.js +3 -0
  906. package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
  907. package/storybook-static/sb-addons/onboarding-7/manager-bundle.js +503 -0
  908. package/storybook-static/sb-addons/onboarding-7/manager-bundle.js.LEGAL.txt +48 -0
  909. package/storybook-static/sb-addons/viewport-9/manager-bundle.js +3 -0
  910. package/storybook-static/sb-addons/viewport-9/manager-bundle.js.LEGAL.txt +0 -0
  911. package/storybook-static/sb-common-assets/fonts.css +31 -0
  912. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  913. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  914. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  915. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  916. package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-LVYLGZW2.js +1 -0
  917. package/storybook-static/sb-manager/chunk-2IXBUOFS.js +7 -0
  918. package/storybook-static/sb-manager/chunk-INSKDKQB.js +348 -0
  919. package/storybook-static/sb-manager/chunk-NGTUFCUO.js +9 -0
  920. package/storybook-static/sb-manager/chunk-NMB3SATH.js +406 -0
  921. package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +1 -0
  922. package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
  923. package/storybook-static/sb-manager/globals-module-info.js +1 -0
  924. package/storybook-static/sb-manager/globals.js +1 -0
  925. package/storybook-static/sb-manager/index.js +1 -0
  926. package/storybook-static/sb-manager/runtime.js +1 -0
  927. package/storybook-static/sb-manager/syntaxhighlighter-V7JZZA35-DXZCI2WR.js +1 -0
  928. package/storybook-static/sb-preview/globals.js +1 -0
  929. package/storybook-static/sb-preview/runtime.js +112 -0
  930. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.807573c8.chunk.css +3 -0
  931. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.807573c8.chunk.css.map +1 -0
  932. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css +3 -0
  933. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css.map +1 -0
  934. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css +4 -0
  935. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css.map +1 -0
  936. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css +3 -0
  937. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css.map +1 -0
  938. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e720ff21.chunk.css +7 -0
  939. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e720ff21.chunk.css.map +1 -0
  940. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.6fb3af8d.chunk.css +6 -0
  941. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.6fb3af8d.chunk.css.map +1 -0
  942. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.66965d64.chunk.css +5 -0
  943. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.66965d64.chunk.css.map +1 -0
  944. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.cdc47631.chunk.css +4 -0
  945. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.cdc47631.chunk.css.map +1 -0
  946. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css +3 -0
  947. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css.map +1 -0
  948. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.a518b61a.chunk.css +14 -0
  949. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.a518b61a.chunk.css.map +1 -0
  950. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.0e99d80b.chunk.css +7 -0
  951. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.0e99d80b.chunk.css.map +1 -0
  952. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css +3 -0
  953. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css.map +1 -0
  954. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.1ebf88ab.chunk.css +4 -0
  955. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.1ebf88ab.chunk.css.map +1 -0
  956. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.015ac417.chunk.css +3 -0
  957. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.015ac417.chunk.css.map +1 -0
  958. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.7b98a5d4.chunk.css +5 -0
  959. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.7b98a5d4.chunk.css.map +1 -0
  960. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css +4 -0
  961. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css.map +1 -0
  962. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.11d83296.chunk.css +754 -0
  963. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.11d83296.chunk.css.map +1 -0
  964. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.4d072348.chunk.css +7 -0
  965. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.4d072348.chunk.css.map +1 -0
  966. package/storybook-static/static/css/main.4e852eef.css +5 -0
  967. package/storybook-static/static/css/main.4e852eef.css.map +1 -0
  968. package/storybook-static/static/media/add-contact.e7e7b8b15edebe99cae9c46963126e7c.svg +3 -0
  969. package/storybook-static/static/media/add.5cbe1f2c489b81396863f7128e3d26e7.svg +3 -0
  970. package/storybook-static/static/media/admin.476c2854d7ad23f2afdedac2d9bd6815.svg +3 -0
  971. package/storybook-static/static/media/archive.d0a72898f3c47a4194d18f560a54e109.svg +3 -0
  972. package/storybook-static/static/media/arrow-left.5005351d4fa6a7c074dd9780fb49dcc8.svg +3 -0
  973. package/storybook-static/static/media/arrow-right.1be3b599e21158807fdf72f4976179a2.svg +3 -0
  974. package/storybook-static/static/media/attachment.a58b8549f46ae5bbe93be779cd9f2037.svg +3 -0
  975. package/storybook-static/static/media/audio-file.40179c472f715fc74d4da607da96aa5e.svg +3 -0
  976. package/storybook-static/static/media/back.b541e72fe05542e145575c8851558998.svg +3 -0
  977. package/storybook-static/static/media/banned.c7c74bfa1c833263f3ab42d0529132d1.svg +3 -0
  978. package/storybook-static/static/media/broadcast.55273926379e5f486ccfdfab1a310b2d.svg +7 -0
  979. package/storybook-static/static/media/broken-file.bc084278a0d284b7901b47f24001caa6.svg +3 -0
  980. package/storybook-static/static/media/camera-off.8e01960815ce7620a1039d0fc5f758b2.svg +3 -0
  981. package/storybook-static/static/media/camera-on.ddd56e36fa505d618ab772e23c8381e6.svg +3 -0
  982. package/storybook-static/static/media/camera.a5a215695fba60146e649094188f37e2.svg +3 -0
  983. package/storybook-static/static/media/chat-filled.aaf0b778d198e7b8f632a68299a8fd13.svg +3 -0
  984. package/storybook-static/static/media/chat.59cd437f21fe7043682dd04cbe6377be.svg +3 -0
  985. package/storybook-static/static/media/check-off.0c0256f00eeb75770ffc2fbd2b59eab0.svg +3 -0
  986. package/storybook-static/static/media/check-on.80442753ef6922df1913453f50099315.svg +3 -0
  987. package/storybook-static/static/media/close.c145af996de81b25f3930bf36d88b161.svg +3 -0
  988. package/storybook-static/static/media/conference.ffbdf37c0510c796138f18e6c1205204.svg +3 -0
  989. package/storybook-static/static/media/contact-filled.f04f56ba3f98ade5d7ced7814d8a5fa8.svg +3 -0
  990. package/storybook-static/static/media/contact.40a8b8104c3a448b81108ffede850963.svg +3 -0
  991. package/storybook-static/static/media/copy.100bd0fff933cbde8ad4bc2ac281c845.svg +3 -0
  992. package/storybook-static/static/media/delete.287c9b4b3b0e58cb081c6e388e68b409.svg +3 -0
  993. package/storybook-static/static/media/down.7a43a3d78885f40616ce111c86c108a4.svg +3 -0
  994. package/storybook-static/static/media/download.43c26d404dd023e42aaacc52151f7a59.svg +3 -0
  995. package/storybook-static/static/media/edit.8d813af82ecab84303ee3c97bd7bc562.svg +3 -0
  996. package/storybook-static/static/media/emoji.9a202cbb16735f3c83ba8772f0218aa4.svg +3 -0
  997. package/storybook-static/static/media/error.ec60e2052661b82f27b7ce270ae133a7.svg +3 -0
  998. package/storybook-static/static/media/favorite.194d78057be6cd7968c85e7b5822f82a.svg +3 -0
  999. package/storybook-static/static/media/file.e537292693b3c89c023fd383c70bd221.svg +3 -0
  1000. package/storybook-static/static/media/forward-filled.43120a68057427c89c88b28d9b20dd90.svg +3 -0
  1001. package/storybook-static/static/media/freeze.35619771e645b649c38e0427d9b39a25.svg +3 -0
  1002. package/storybook-static/static/media/full-screen.6b01c93e069421c69bda2bbde5d01336.svg +3 -0
  1003. package/storybook-static/static/media/gif-file.2c46a5df6c8397f5b9088e66aee3fd44.svg +3 -0
  1004. package/storybook-static/static/media/group-chat.19d5305cab6017d494ac35ecb285a9fe.svg +3 -0
  1005. package/storybook-static/static/media/help.786f48518c96c8e7098296d68245c339.svg +3 -0
  1006. package/storybook-static/static/media/hide.2785264246d70868717984a5ad44d4c9.svg +3 -0
  1007. package/storybook-static/static/media/hungup.e5d2289a9e8cd755bd1ee36b738305a2.svg +3 -0
  1008. package/storybook-static/static/media/image-filled.8afb62b142d786e90102f1cac73a9c13.svg +3 -0
  1009. package/storybook-static/static/media/image.64092dadd5215c8d3ba99ccac753d743.svg +3 -0
  1010. package/storybook-static/static/media/income-call.60ca2d367a00d582f4b6f4a5f2047e27.svg +3 -0
  1011. package/storybook-static/static/media/information.8217e163c334852f143e7199c97fab1d.svg +3 -0
  1012. package/storybook-static/static/media/leave.ae5422a12edec1b61484ff2932819c77.svg +3 -0
  1013. package/storybook-static/static/media/like.45662989373aa524cd580fb42432e0bc.svg +3 -0
  1014. package/storybook-static/static/media/link.74f567c3ee4366d79fb81d73eb8c0919.svg +3 -0
  1015. package/storybook-static/static/media/loader.2eb72391c5267453edb4106528c075ad.svg +3 -0
  1016. package/storybook-static/static/media/location.cab52453404524c345ec7efdd86fa66b.svg +4 -0
  1017. package/storybook-static/static/media/louder.133519141541a9cd2f0e898534b39732.svg +3 -0
  1018. package/storybook-static/static/media/mention.6c4885bb0ea5ca85c8962f6f51ac1cb4.svg +3 -0
  1019. package/storybook-static/static/media/mic-off.43e60427600bcf7fd78fb840ff50d804.svg +3 -0
  1020. package/storybook-static/static/media/mic-on.5a52100de3770550b3a57a76827843c2.svg +4 -0
  1021. package/storybook-static/static/media/minimize.a849dd3a36ece08b992a773d135a0c3f.svg +3 -0
  1022. package/storybook-static/static/media/moderations.07c8d1fe96b0b8bb5911f6cc37f764c6.svg +3 -0
  1023. package/storybook-static/static/media/more.4ed9ad54ae110d9760b6e9698d821960.svg +3 -0
  1024. package/storybook-static/static/media/muted.cb37ac3c577c87c800466aa7aee65af2.svg +3 -0
  1025. package/storybook-static/static/media/new-chat.124e0351bd0e19ff4c5fdbabbe5c6027.svg +3 -0
  1026. package/storybook-static/static/media/next.97a0eeea1f8daa2d31c8452f29908bf1.svg +3 -0
  1027. package/storybook-static/static/media/notifications.ab8e847ae04e2bec9209dbdd1054b0f2.svg +3 -0
  1028. package/storybook-static/static/media/notify-off.4a669a3a8cbd38b3309dbc4c909f6089.svg +3 -0
  1029. package/storybook-static/static/media/notify-on.ea9ffc856ad6cdbe87184af558c78eec.svg +3 -0
  1030. package/storybook-static/static/media/outcome-call.9f5fec07823796ad78963a06cdcf629e.svg +3 -0
  1031. package/storybook-static/static/media/pause.27eb8c32999f10d05d6a200165d798a9.svg +3 -0
  1032. package/storybook-static/static/media/phone-filled.e969511d74935af26ef366f575929f68.svg +3 -0
  1033. package/storybook-static/static/media/phone.6355580a064a488b6317372d71f84c00.svg +3 -0
  1034. package/storybook-static/static/media/play.00bfe0e9c94dc6dfb230262e45b2f860.svg +3 -0
  1035. package/storybook-static/static/media/plus.d3953cb1cf830bcfc41c8cc6133b13b1.svg +3 -0
  1036. package/storybook-static/static/media/private-chat.c68f36baf025b9d20ad1f801a2396e7a.svg +3 -0
  1037. package/storybook-static/static/media/public-channel.7a6ada7f30c44fb4a99021df0eb0e996.svg +7 -0
  1038. package/storybook-static/static/media/quite.9f45e2152fe6c499a776cb387ee4859f.svg +3 -0
  1039. package/storybook-static/static/media/record.e49ee7da793b2ce446a4e7128970c0cc.svg +3 -0
  1040. package/storybook-static/static/media/refresh.6e955728d9ec086f34e9adaaaafacf3e.svg +3 -0
  1041. package/storybook-static/static/media/remove-2.8a7700757f02c941f03c37c7e495bf63.svg +3 -0
  1042. package/storybook-static/static/media/remove.831e69b70db1b3eb72a49444b8aa1e16.svg +3 -0
  1043. package/storybook-static/static/media/rephrase.551171aa8903b31746a58a95528b1f68.svg +6 -0
  1044. package/storybook-static/static/media/reply-filled.17ed65506e902f17bb22e87ffac93314.svg +3 -0
  1045. package/storybook-static/static/media/screenshare.c2f94264a7640ea1bbb2a22f7d570038.svg +3 -0
  1046. package/storybook-static/static/media/search.25663e60d71e01c64fdfc83df7460ab0.svg +3 -0
  1047. package/storybook-static/static/media/send.d298db52aafdb846a46c9d180ad45946.svg +3 -0
  1048. package/storybook-static/static/media/sent.f427753e5502fd7783a08e5f0e0d2f35.svg +3 -0
  1049. package/storybook-static/static/media/settings-filled.bd9b60ff4e9eae911e4e2bc69e8e79ca.svg +3 -0
  1050. package/storybook-static/static/media/share.7ce8283aa267fb065c568d65b482e211.svg +3 -0
  1051. package/storybook-static/static/media/show.de1782527c4a7fa14101dffbfba8aea6.svg +3 -0
  1052. package/storybook-static/static/media/speaker-off.fe84597c4b68f4f761e12f789dc58718.svg +3 -0
  1053. package/storybook-static/static/media/speaker.e7ff48a73ca43188703b36dfecd932b5.svg +3 -0
  1054. package/storybook-static/static/media/stop-record.a2e9d50a0930c24af43d7f357093be81.svg +3 -0
  1055. package/storybook-static/static/media/stop-share.d1be236e01dd924ba711e1e17f41054c.svg +3 -0
  1056. package/storybook-static/static/media/stream-filled.c40bae61fea25455602a61db5e77fa71.svg +3 -0
  1057. package/storybook-static/static/media/stream.700f4f8ce0cee0ae1ef56132867427fe.svg +3 -0
  1058. package/storybook-static/static/media/swap-camera.bc3a4652106f5c57d14b4dcbffff08a5.svg +3 -0
  1059. package/storybook-static/static/media/text-document.cad7e87368501b96de2a939d08852dcd.svg +3 -0
  1060. package/storybook-static/static/media/unarchive.1b1a7438cd8eb6fee80e6ac89baa195b.svg +3 -0
  1061. package/storybook-static/static/media/user.911c7ae778615185b285ce0ae4068486.svg +3 -0
  1062. package/storybook-static/static/media/video-file.dbd1f8c63a3769f9e9a027f0922d56b2.svg +3 -0
  1063. package/storybook-static/static/media/video.bbcc2109285c18eea02ede86920de0dd.svg +3 -0
  1064. package/storybook-static/static/media/viewed-delivered.f43360dc87235a6cf574ff53f73dd777.svg +3 -0
  1065. package/storybook-static/static/media/voice.b937c8a1f744050bec2cd389ad2a1f3a.svg +3 -0
  1066. package/storybook-static/stories.json +1 -0
  1067. package/tsconfig.json +33 -0
  1068. package/typedoc.json +4 -0
  1069. package/webpack.config.js +68 -0
  1070. package/dist/Presentation/Views/Dialog/DialogHeader/RenderLeftActions/RenderLeftActions.d.ts +0 -10
  1071. package/dist/Presentation/Views/PreviewDialog/PreviewAudioFile/PreviewAudioFile.d.ts +0 -7
  1072. package/dist/Presentation/Views/PreviewDialog/PreviewDefaultFile/PreviewDefaultFile.d.ts +0 -7
  1073. package/dist/Presentation/Views/PreviewDialog/PreviewImageFile/PreviewImageFile.d.ts +0 -8
  1074. package/dist/Presentation/Views/PreviewDialog/PreviewVideoFile/PreviewVideoFile.d.ts +0 -7
  1075. package/dist/Presentation/providers/ModalContextProvider/Modal.d.ts +0 -14
  1076. package/dist/Presentation/providers/ModalContextProvider/ModalContextProvider.d.ts +0 -4
  1077. package/dist/Presentation/providers/ModalContextProvider/useModal.d.ts +0 -11
  1078. package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/AttachmentUploader/AttachmentUploader.d.ts +0 -0
  1079. package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +0 -0
  1080. package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -1
  1081. /package/dist/Presentation/{Views/Dialog → ui-components/MessageInput}/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +0 -0
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.1181 6.64154H27.4908C28.6863 6.64154 29.8701 6.87701 30.9746 7.33453C32.0792 7.79204 33.0828 8.46262 33.9281 9.30799C34.7735 10.1534 35.4441 11.157 35.9016 12.2615C36.3591 13.366 36.5946 14.5498 36.5946 15.7454V18.1351H32.9531V15.7454C32.9531 14.2967 32.3776 12.9073 31.3532 11.8829C30.3288 10.8586 28.9394 10.2831 27.4908 10.2831H11.1038C9.65515 10.2831 8.26579 10.8586 7.24141 11.8829C6.21703 12.9073 5.64154 14.2967 5.64154 15.7454V28.4908C5.64154 29.9395 6.21703 31.3288 7.24141 32.3532C8.26579 33.3776 9.65515 33.9531 11.1038 33.9531H18.2162V37.5946H11.1038C8.68935 37.5946 6.37375 36.6355 4.66645 34.9282C2.95915 33.2208 2 30.9053 2 28.4908V15.7454C2 13.3309 2.95915 11.0153 4.66645 9.30799C6.37375 7.60069 8.68935 6.64154 11.1038 6.64154H17.4765V4.82077C17.4765 4.33787 17.6684 3.87475 18.0098 3.53329C18.3513 3.19183 18.8144 3 19.2973 3C19.7802 3 20.2433 3.19183 20.5848 3.53329C20.9262 3.87475 21.1181 4.33787 21.1181 4.82077V6.64154Z"/>
3
+ <path d="M20.3784 36.334V40.8378H24.8823L38.1657 27.5544L33.6618 23.0505L20.3784 36.334ZM41.6487 24.0714C42.1171 23.603 42.1171 22.8463 41.6487 22.3779L38.8383 19.5675C38.3699 19.0991 37.6132 19.0991 37.1448 19.5675L34.9469 21.7654L39.4508 26.2693L41.6487 24.0714Z"/>
4
+ <path d="M24.7596 15.7455C24.2767 15.7455 23.8135 15.9373 23.4721 16.2788C23.1306 16.6202 22.9388 17.0833 22.9388 17.5662V21.2078C22.9388 21.6907 23.1306 22.1538 23.4721 22.4952C23.8135 22.8367 24.2767 23.0285 24.7596 23.0285C25.2425 23.0285 25.7056 22.8367 26.047 22.4952C26.3885 22.1538 26.5803 21.6907 26.5803 21.2078V17.5662C26.5803 17.0833 26.3885 16.6202 26.047 16.2788C25.7056 15.9373 25.2425 15.7455 24.7596 15.7455Z"/>
5
+ <path d="M13.835 15.7455C13.3521 15.7455 12.889 15.9373 12.5475 16.2788C12.206 16.6202 12.0142 17.0833 12.0142 17.5662V21.2078C12.0142 21.6907 12.206 22.1538 12.5475 22.4952C12.889 22.8367 13.3521 23.0285 13.835 23.0285C14.3179 23.0285 14.781 22.8367 15.1224 22.4952C15.4639 22.1538 15.6557 21.6907 15.6557 21.2078V17.5662C15.6557 17.0833 15.4639 16.6202 15.1224 16.2788C14.781 15.9373 14.3179 15.7455 13.835 15.7455Z"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.3333 15.5833V8.25L5.5 21.0833L18.3333 33.9167V26.4C27.5 26.4 33.9167 29.3333 38.5 35.75C36.6667 26.5833 31.1667 17.4167 18.3333 15.5833Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M36.6667 33.0002C38.6833 33.0002 40.315 31.3502 40.315 29.3335L40.3333 11.0002C40.3333 8.96516 38.6833 7.3335 36.6667 7.3335H7.33333C5.29833 7.3335 3.66667 8.96516 3.66667 11.0002V29.3335C3.66667 31.3502 5.29833 33.0002 7.33333 33.0002H0V36.6668H44V33.0002H36.6667ZM23.8333 26.5285V22.5135C18.7367 22.5135 15.3817 24.0718 12.8333 27.5002C13.86 22.6052 16.7017 17.7285 23.8333 16.7385V12.8335L31.1667 19.6718L23.8333 26.5285Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" 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" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.1334 29.1499L8.43337 21.4499L5.8667 24.0166L16.1334 34.2832L38.1334 12.2832L35.5667 9.71655L16.1334 29.1499Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.09 23.7233C35.1634 23.1733 35.2 22.605 35.2 22C35.2 21.4133 35.1634 20.8267 35.0717 20.2767L38.7934 17.38C39.1234 17.1233 39.215 16.6283 39.0134 16.2617L35.4934 10.175C35.2734 9.77166 34.815 9.64333 34.4117 9.77166L30.03 11.5317C29.1134 10.835 28.1417 10.2483 27.06 9.80833L26.4 5.15166C26.3267 4.71166 25.96 4.39999 25.52 4.39999H18.48C18.04 4.39999 17.6917 4.71166 17.6184 5.15166L16.9584 9.80833C15.8767 10.2483 14.8867 10.8533 13.9884 11.5317L9.6067 9.77166C9.20337 9.62499 8.74504 9.77166 8.52504 10.175L5.02337 16.2617C4.80337 16.6467 4.8767 17.1233 5.24337 17.38L8.96504 20.2767C8.87337 20.8267 8.80004 21.4317 8.80004 22C8.80004 22.5683 8.8367 23.1733 8.92837 23.7233L5.2067 26.62C4.8767 26.8767 4.78504 27.3717 4.98671 27.7383L8.5067 33.825C8.7267 34.2283 9.18504 34.3567 9.58837 34.2283L13.97 32.4683C14.8867 33.165 15.8584 33.7517 16.94 34.1917L17.6 38.8483C17.6917 39.2883 18.04 39.6 18.48 39.6H25.52C25.96 39.6 26.3267 39.2883 26.3817 38.8483L27.0417 34.1917C28.1234 33.7517 29.1134 33.165 30.0117 32.4683L34.3934 34.2283C34.7967 34.375 35.255 34.2283 35.475 33.825L38.995 27.7383C39.215 27.335 39.1234 26.8767 38.775 26.62L35.09 23.7233ZM22 28.6C18.37 28.6 15.4 25.63 15.4 22C15.4 18.37 18.37 15.4 22 15.4C25.63 15.4 28.6 18.37 28.6 22C28.6 25.63 25.63 28.6 22 28.6Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M33.0002 27.5V33H11.0002V27.5H7.3335V33C7.3335 35.0166 8.9835 36.6666 11.0002 36.6666H33.0002C35.0168 36.6666 36.6668 35.0166 36.6668 33V27.5H33.0002ZM12.8335 16.5L15.4185 19.085L20.1668 14.355V29.3333H23.8335V14.355L28.5818 19.085L31.1668 16.5L22.0002 7.33331L12.8335 16.5Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0002 8.25C12.8335 8.25 5.00516 13.9517 1.8335 22C5.00516 30.0483 12.8335 35.75 22.0002 35.75C31.1668 35.75 38.9952 30.0483 42.1668 22C38.9952 13.9517 31.1668 8.25 22.0002 8.25ZM22.0002 31.1667C16.9402 31.1667 12.8335 27.06 12.8335 22C12.8335 16.94 16.9402 12.8333 22.0002 12.8333C27.0602 12.8333 31.1668 16.94 31.1668 22C31.1668 27.06 27.0602 31.1667 22.0002 31.1667ZM22.0002 16.5C18.9568 16.5 16.5002 18.9567 16.5002 22C16.5002 25.0433 18.9568 27.5 22.0002 27.5C25.0435 27.5 27.5002 25.0433 27.5002 22C27.5002 18.9567 25.0435 16.5 22.0002 16.5Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6117V18.6633L30.1583 23.155C30.2133 22.7883 30.25 22.4033 30.25 22ZM34.8333 22C34.8333 23.7233 34.4667 25.3367 33.8433 26.84L36.6117 29.6083C37.8217 27.335 38.5 24.75 38.5 22C38.5 14.1533 33.0183 7.59 25.6667 5.92167V9.69833C30.965 11.275 34.8333 16.1883 34.8333 22ZM7.82833 5.5L5.5 7.82833L14.1717 16.5H5.5V27.5H12.8333L22 36.6667V24.3283L29.7917 32.12C28.5633 33.0733 27.1883 33.825 25.6667 34.2833V38.06C28.1967 37.4917 30.4883 36.3183 32.4317 34.7417L36.1717 38.5L38.5 36.1717L7.82833 5.5ZM22 7.33333L18.1683 11.165L22 14.9967V7.33333Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.5 16.5V27.5H12.8333L22 36.6666V7.3333L12.8333 16.5H5.5ZM30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6116V29.37C28.38 28.0316 30.25 25.245 30.25 22ZM25.6667 5.92163V9.6983C30.965 11.275 34.8333 16.1883 34.8333 22C34.8333 27.8116 30.965 32.725 25.6667 34.3016V38.0783C33.0183 36.41 38.5 29.8466 38.5 22C38.5 14.1533 33.0183 7.58996 25.6667 5.92163Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 11H33V33H11V11Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M38.9033 32.615L42.57 36.2817H44V32.615H38.9033ZM40.315 28.9483L40.3333 10.615C40.3333 8.58 38.6833 6.94833 36.6667 6.94833H13.2367L22.825 16.5367C23.155 16.4633 23.485 16.4083 23.8333 16.3533V12.4483L31.1667 19.2867L28.27 21.9817L38.4267 32.1383C39.545 31.5333 40.315 30.3233 40.315 28.9483ZM4.38167 2.75L2.035 5.07833L4.85833 7.90167C4.125 8.56167 3.66667 9.53333 3.66667 10.615V28.9483C3.66667 30.965 5.29833 32.615 7.33333 32.615H0V36.2817H33.2383L38.2067 41.25L40.535 38.9217L4.38167 2.75ZM12.8333 27.115C13.4017 24.4017 14.52 21.7067 16.6283 19.6717L19.5433 22.5867C16.72 23.2833 14.5933 24.75 12.8333 27.115Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM34.8335 12.8333H9.16683V15.8217C16.4268 18.1683 22.1652 23.9067 24.5118 31.1667H34.8335V12.8333ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333ZM38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.5Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.5ZM1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M36.6665 9.16667H30.8548L27.4998 5.5H16.4998L13.1448 9.16667H7.33317C5.3165 9.16667 3.6665 10.8167 3.6665 12.8333V34.8333C3.6665 36.85 5.3165 38.5 7.33317 38.5H36.6665C38.6832 38.5 40.3332 36.85 40.3332 34.8333V12.8333C40.3332 10.8167 38.6832 9.16667 36.6665 9.16667ZM27.4998 30.25V25.6667H16.4998V30.25L10.0832 23.8333L16.4998 17.4167V22H27.4998V17.4167L33.9165 23.8333L27.4998 30.25Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M25.6668 3.66675H11.0002C8.9835 3.66675 7.35183 5.31675 7.35183 7.33341L7.3335 36.6667C7.3335 38.6834 8.96516 40.3334 10.9818 40.3334H33.0002C35.0168 40.3334 36.6668 38.6834 36.6668 36.6667V14.6667L25.6668 3.66675ZM29.3335 33.0001H14.6668V29.3334H29.3335V33.0001ZM29.3335 25.6667H14.6668V22.0001H29.3335V25.6667ZM23.8335 16.5001V6.41675L33.9168 16.5001H23.8335Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" 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.0817 11H9.93667L11.44 9.16667ZM9.16667 34.8333V14.6667H34.8333V34.8333H9.16667ZM14.6667 25.6667H19.3417V31.1667H24.6583V25.6667H29.3333L22 18.3333L14.6667 25.6667Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.9999 10.8167C24.1266 10.8167 25.8499 12.54 25.8499 14.6667C25.8499 16.7934 24.1266 18.5167 21.9999 18.5167C19.8733 18.5167 18.1499 16.7934 18.1499 14.6667C18.1499 12.54 19.8733 10.8167 21.9999 10.8167ZM21.9999 27.3167C27.4449 27.3167 33.1833 29.9934 33.1833 31.1667V33.1834H10.8166V31.1667C10.8166 29.9934 16.5549 27.3167 21.9999 27.3167ZM21.9999 7.33337C17.9483 7.33337 14.6666 10.615 14.6666 14.6667C14.6666 18.7184 17.9483 22 21.9999 22C26.0516 22 29.3333 18.7184 29.3333 14.6667C29.3333 10.615 26.0516 7.33337 21.9999 7.33337ZM21.9999 23.8334C17.1049 23.8334 7.33325 26.29 7.33325 31.1667V36.6667H36.6666V31.1667C36.6666 26.29 26.8949 23.8334 21.9999 23.8334Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M33.0001 7.33325L36.6667 14.6666H31.1667L27.5001 7.33325H23.8334L27.5001 14.6666H22.0001L18.3334 7.33325H14.6667L18.3334 14.6666H12.8334L9.16675 7.33325H7.33341C5.31675 7.33325 3.68508 8.98325 3.68508 10.9999L3.66675 32.9999C3.66675 35.0166 5.31675 36.6666 7.33341 36.6666H36.6667C38.6834 36.6666 40.3334 35.0166 40.3334 32.9999V7.33325H33.0001Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M27.5 14.6667V29.3333H9.16667V14.6667H27.5ZM29.3333 11H7.33333C6.325 11 5.5 11.825 5.5 12.8333V31.1667C5.5 32.175 6.325 33 7.33333 33H29.3333C30.3417 33 31.1667 32.175 31.1667 31.1667V24.75L38.5 32.0833V11.9167L31.1667 19.25V12.8333C31.1667 11.825 30.3417 11 29.3333 11Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M32.9358 12.2925L30.3508 9.70752L18.7275 21.3309L21.3125 23.9159L32.9358 12.2925ZM40.7092 9.70752L21.3125 29.1042L13.6492 21.4592L11.0642 24.0442L21.3125 34.2925L43.3125 12.2925L40.7092 9.70752ZM0.6875 24.0442L10.9358 34.2925L13.5208 31.7075L3.29083 21.4592L0.6875 24.0442Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0001 26.5834C25.0434 26.5834 27.5001 24.1267 27.5001 21.0834V10.0834C27.5001 7.04004 25.0434 4.58337 22.0001 4.58337C18.9567 4.58337 16.5001 7.04004 16.5001 10.0834V21.0834C16.5001 24.1267 18.9567 26.5834 22.0001 26.5834ZM20.1667 10.0834C20.1667 9.07504 20.9917 8.25004 22.0001 8.25004C23.0084 8.25004 23.8334 9.07504 23.8334 10.0834V21.0834C23.8334 22.0917 23.0084 22.9167 22.0001 22.9167C20.9917 22.9167 20.1667 22.0917 20.1667 21.0834V10.0834ZM31.1667 21.0834C31.1667 26.1434 27.0601 30.25 22.0001 30.25C16.9401 30.25 12.8334 26.1434 12.8334 21.0834H9.16675C9.16675 27.555 13.9517 32.8717 20.1667 33.77V39.4167H23.8334V33.77C30.0484 32.8717 34.8334 27.555 34.8334 21.0834H31.1667Z"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ {"v":3,"stories":{"avatar--docs":{"id":"avatar--docs","title":"Avatar","name":"Docs","importPath":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Avatar","story":"Docs","parameters":{"__id":"avatar--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx"}},"avatar--avatar-default":{"id":"avatar--avatar-default","name":"Avatar Default","title":"Avatar","importPath":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx","tags":["autodocs","story"],"kind":"Avatar","story":"Avatar Default","parameters":{"__id":"avatar--avatar-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx"}},"avatar--avatar-icon":{"id":"avatar--avatar-icon","name":"Avatar Icon","title":"Avatar","importPath":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx","tags":["autodocs","story"],"kind":"Avatar","story":"Avatar Icon","parameters":{"__id":"avatar--avatar-icon","docsOnly":false,"fileName":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx"}},"avatar--avatar-image":{"id":"avatar--avatar-image","name":"Avatar Image","title":"Avatar","importPath":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx","tags":["autodocs","story"],"kind":"Avatar","story":"Avatar Image","parameters":{"__id":"avatar--avatar-image","docsOnly":false,"fileName":"./src/Presentation/ui-components/Avatar/avatar.stories.tsx"}},"badge--docs":{"id":"badge--docs","title":"Badge","name":"Docs","importPath":"./src/Presentation/ui-components/Badge/Badge.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"Badge","story":"Docs","parameters":{"__id":"badge--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Badge/Badge.stories.ts"}},"badge--badge-default":{"id":"badge--badge-default","name":"Badge Default","title":"Badge","importPath":"./src/Presentation/ui-components/Badge/Badge.stories.ts","tags":["autodocs","story"],"kind":"Badge","story":"Badge Default","parameters":{"__id":"badge--badge-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Badge/Badge.stories.ts"}},"badge--badge-count":{"id":"badge--badge-count","name":"Badge Count","title":"Badge","importPath":"./src/Presentation/ui-components/Badge/Badge.stories.ts","tags":["autodocs","story"],"kind":"Badge","story":"Badge Count","parameters":{"__id":"badge--badge-count","docsOnly":false,"fileName":"./src/Presentation/ui-components/Badge/Badge.stories.ts"}},"badge--badge-mute":{"id":"badge--badge-mute","name":"Badge Mute","title":"Badge","importPath":"./src/Presentation/ui-components/Badge/Badge.stories.ts","tags":["autodocs","story"],"kind":"Badge","story":"Badge Mute","parameters":{"__id":"badge--badge-mute","docsOnly":false,"fileName":"./src/Presentation/ui-components/Badge/Badge.stories.ts"}},"button--docs":{"id":"button--docs","title":"Button","name":"Docs","importPath":"./src/Presentation/ui-components/Button/Button.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"Button","story":"Docs","parameters":{"__id":"button--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Button/Button.stories.ts"}},"button--button-default":{"id":"button--button-default","name":"Button Default","title":"Button","importPath":"./src/Presentation/ui-components/Button/Button.stories.ts","tags":["autodocs","story"],"kind":"Button","story":"Button Default","parameters":{"__id":"button--button-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Button/Button.stories.ts"}},"button--button-outline":{"id":"button--button-outline","name":"Button Outline","title":"Button","importPath":"./src/Presentation/ui-components/Button/Button.stories.ts","tags":["autodocs","story"],"kind":"Button","story":"Button Outline","parameters":{"__id":"button--button-outline","docsOnly":false,"fileName":"./src/Presentation/ui-components/Button/Button.stories.ts"}},"button--button-danger":{"id":"button--button-danger","name":"Button Danger","title":"Button","importPath":"./src/Presentation/ui-components/Button/Button.stories.ts","tags":["autodocs","story"],"kind":"Button","story":"Button Danger","parameters":{"__id":"button--button-danger","docsOnly":false,"fileName":"./src/Presentation/ui-components/Button/Button.stories.ts"}},"button--button-text":{"id":"button--button-text","name":"Button Text","title":"Button","importPath":"./src/Presentation/ui-components/Button/Button.stories.ts","tags":["autodocs","story"],"kind":"Button","story":"Button Text","parameters":{"__id":"button--button-text","docsOnly":false,"fileName":"./src/Presentation/ui-components/Button/Button.stories.ts"}},"dialogbanner--docs":{"id":"dialogbanner--docs","title":"DialogBanner","name":"Docs","importPath":"./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"DialogBanner","story":"Docs","parameters":{"__id":"dialogbanner--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts"}},"dialogbanner--dialog-banner-default":{"id":"dialogbanner--dialog-banner-default","name":"Dialog Banner Default","title":"DialogBanner","importPath":"./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts","tags":["autodocs","story"],"kind":"DialogBanner","story":"Dialog Banner Default","parameters":{"__id":"dialogbanner--dialog-banner-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts"}},"dialogitempreview--docs":{"id":"dialogitempreview--docs","title":"DialogItemPreview","name":"Docs","importPath":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"DialogItemPreview","story":"Docs","parameters":{"__id":"dialogitempreview--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx"}},"dialogitempreview--dialog-item-preview-default":{"id":"dialogitempreview--dialog-item-preview-default","name":"Dialog Item Preview Default","title":"DialogItemPreview","importPath":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx","tags":["autodocs","story"],"kind":"DialogItemPreview","story":"Dialog Item Preview Default","parameters":{"__id":"dialogitempreview--dialog-item-preview-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx"}},"dialogitempreview--dialog-item-preview-full-screen":{"id":"dialogitempreview--dialog-item-preview-full-screen","name":"Dialog Item Preview Full Screen","title":"DialogItemPreview","importPath":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx","tags":["autodocs","story"],"kind":"DialogItemPreview","story":"Dialog Item Preview Full Screen","parameters":{"__id":"dialogitempreview--dialog-item-preview-full-screen","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx"}},"dialogitempreview--dialog-item-preview-mobile-screen":{"id":"dialogitempreview--dialog-item-preview-mobile-screen","name":"Dialog Item Preview Mobile Screen","title":"DialogItemPreview","importPath":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx","tags":["autodocs","story"],"kind":"DialogItemPreview","story":"Dialog Item Preview Mobile Screen","parameters":{"__id":"dialogitempreview--dialog-item-preview-mobile-screen","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx"}},"dialogitempreview--dialog-item-preview-mobile-screen-i-pad":{"id":"dialogitempreview--dialog-item-preview-mobile-screen-i-pad","name":"Dialog Item Preview Mobile Screen I Pad","title":"DialogItemPreview","importPath":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx","tags":["autodocs","story"],"kind":"DialogItemPreview","story":"Dialog Item Preview Mobile Screen I Pad","parameters":{"__id":"dialogitempreview--dialog-item-preview-mobile-screen-i-pad","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx"}},"dialog-window--docs":{"id":"dialog-window--docs","title":"Dialog Window","name":"Docs","importPath":"./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Dialog Window","story":"Docs","parameters":{"__id":"dialog-window--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx"}},"dialog-window--dialog-window-default":{"id":"dialog-window--dialog-window-default","name":"Dialog Window Default","title":"Dialog Window","importPath":"./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx","tags":["autodocs","story"],"kind":"Dialog Window","story":"Dialog Window Default","parameters":{"__id":"dialog-window--dialog-window-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx"}},"dropdown--docs":{"id":"dropdown--docs","title":"Dropdown","name":"Docs","importPath":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Dropdown","story":"Docs","parameters":{"__id":"dropdown--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx"}},"dropdown--dropdown-default":{"id":"dropdown--dropdown-default","name":"Dropdown Default","title":"Dropdown","importPath":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx","tags":["autodocs","story"],"kind":"Dropdown","story":"Dropdown Default","parameters":{"__id":"dropdown--dropdown-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx"}},"dropdown--dropdown-right-icon":{"id":"dropdown--dropdown-right-icon","name":"Dropdown Right Icon","title":"Dropdown","importPath":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx","tags":["autodocs","story"],"kind":"Dropdown","story":"Dropdown Right Icon","parameters":{"__id":"dropdown--dropdown-right-icon","docsOnly":false,"fileName":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx"}},"dropdown--dropdown-left-icon":{"id":"dropdown--dropdown-left-icon","name":"Dropdown Left Icon","title":"Dropdown","importPath":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx","tags":["autodocs","story"],"kind":"Dropdown","story":"Dropdown Left Icon","parameters":{"__id":"dropdown--dropdown-left-icon","docsOnly":false,"fileName":"./src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx"}},"header--docs":{"id":"header--docs","title":"Header","name":"Docs","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Header","story":"Docs","parameters":{"__id":"header--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"header--header-default":{"id":"header--header-default","name":"Header Default","title":"Header","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","story"],"kind":"Header","story":"Header Default","parameters":{"__id":"header--header-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"header--header-with-avatar":{"id":"header--header-with-avatar","name":"Header With Avatar","title":"Header","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","story"],"kind":"Header","story":"Header With Avatar","parameters":{"__id":"header--header-with-avatar","docsOnly":false,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"header--header-with-avatar-and-back":{"id":"header--header-with-avatar-and-back","name":"Header With Avatar And Back","title":"Header","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","story"],"kind":"Header","story":"Header With Avatar And Back","parameters":{"__id":"header--header-with-avatar-and-back","docsOnly":false,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"header--header-with-one-children-icon":{"id":"header--header-with-one-children-icon","name":"Header With One Children Icon","title":"Header","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","story"],"kind":"Header","story":"Header With One Children Icon","parameters":{"__id":"header--header-with-one-children-icon","docsOnly":false,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"header--header-with-two-children-icon":{"id":"header--header-with-two-children-icon","name":"Header With Two Children Icon","title":"Header","importPath":"./src/Presentation/ui-components/Header/Header.stories.tsx","tags":["autodocs","story"],"kind":"Header","story":"Header With Two Children Icon","parameters":{"__id":"header--header-with-two-children-icon","docsOnly":false,"fileName":"./src/Presentation/ui-components/Header/Header.stories.tsx"}},"loader--docs":{"id":"loader--docs","title":"Loader","name":"Docs","importPath":"./src/Presentation/ui-components/Loader/Loader.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"Loader","story":"Docs","parameters":{"__id":"loader--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Loader/Loader.stories.ts"}},"loader--loader-default":{"id":"loader--loader-default","name":"Loader Default","title":"Loader","importPath":"./src/Presentation/ui-components/Loader/Loader.stories.ts","tags":["autodocs","story"],"kind":"Loader","story":"Loader Default","parameters":{"__id":"loader--loader-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Loader/Loader.stories.ts"}},"message--message-text":{"id":"message--message-text","name":"Message Text","title":"Message","importPath":"./src/Presentation/ui-components/Message/Message.stories.tsx","tags":["story"],"kind":"Message","story":"Message Text","parameters":{"__id":"message--message-text","docsOnly":false,"fileName":"./src/Presentation/ui-components/Message/Message.stories.tsx"}},"message--message-image":{"id":"message--message-image","name":"Message Image","title":"Message","importPath":"./src/Presentation/ui-components/Message/Message.stories.tsx","tags":["story"],"kind":"Message","story":"Message Image","parameters":{"__id":"message--message-image","docsOnly":false,"fileName":"./src/Presentation/ui-components/Message/Message.stories.tsx"}},"message--message-file":{"id":"message--message-file","name":"Message File","title":"Message","importPath":"./src/Presentation/ui-components/Message/Message.stories.tsx","tags":["story"],"kind":"Message","story":"Message File","parameters":{"__id":"message--message-file","docsOnly":false,"fileName":"./src/Presentation/ui-components/Message/Message.stories.tsx"}},"messageinput--default":{"id":"messageinput--default","name":"Default","title":"MessageInput","importPath":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx","tags":["story"],"kind":"MessageInput","story":"Default","parameters":{"__id":"messageinput--default","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx"}},"messageinput--with-voice-message":{"id":"messageinput--with-voice-message","name":"With Voice Message","title":"MessageInput","importPath":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx","tags":["story"],"kind":"MessageInput","story":"With Voice Message","parameters":{"__id":"messageinput--with-voice-message","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx"}},"messageinput--with-preview":{"id":"messageinput--with-preview","name":"With Preview","title":"MessageInput","importPath":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx","tags":["story"],"kind":"MessageInput","story":"With Preview","parameters":{"__id":"messageinput--with-preview","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx"}},"messageinput--loading-state":{"id":"messageinput--loading-state","name":"Loading State","title":"MessageInput","importPath":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx","tags":["story"],"kind":"MessageInput","story":"Loading State","parameters":{"__id":"messageinput--loading-state","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx"}},"messageseparator--docs":{"id":"messageseparator--docs","title":"MessageSeparator","name":"Docs","importPath":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"MessageSeparator","story":"Docs","parameters":{"__id":"messageseparator--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts"}},"messageseparator--message-separator-date":{"id":"messageseparator--message-separator-date","name":"Message Separator Date","title":"MessageSeparator","importPath":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts","tags":["autodocs","story"],"kind":"MessageSeparator","story":"Message Separator Date","parameters":{"__id":"messageseparator--message-separator-date","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts"}},"messageseparator--message-separator-system":{"id":"messageseparator--message-separator-system","name":"Message Separator System","title":"MessageSeparator","importPath":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts","tags":["autodocs","story"],"kind":"MessageSeparator","story":"Message Separator System","parameters":{"__id":"messageseparator--message-separator-system","docsOnly":false,"fileName":"./src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts"}},"placeholder--docs":{"id":"placeholder--docs","title":"Placeholder","name":"Docs","importPath":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Placeholder","story":"Docs","parameters":{"__id":"placeholder--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx"}},"placeholder--placeholder-default":{"id":"placeholder--placeholder-default","name":"Placeholder Default","title":"Placeholder","importPath":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx","tags":["autodocs","story"],"kind":"Placeholder","story":"Placeholder Default","parameters":{"__id":"placeholder--placeholder-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx"}},"placeholder--placeholder-error":{"id":"placeholder--placeholder-error","name":"Placeholder Error","title":"Placeholder","importPath":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx","tags":["autodocs","story"],"kind":"Placeholder","story":"Placeholder Error","parameters":{"__id":"placeholder--placeholder-error","docsOnly":false,"fileName":"./src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx"}},"previewfilemessage--docs":{"id":"previewfilemessage--docs","title":"PreviewFileMessage","name":"Docs","importPath":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"PreviewFileMessage","story":"Docs","parameters":{"__id":"previewfilemessage--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts"}},"previewfilemessage--preview-file-message-default":{"id":"previewfilemessage--preview-file-message-default","name":"Preview File Message Default","title":"PreviewFileMessage","importPath":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts","tags":["autodocs","story"],"kind":"PreviewFileMessage","story":"Preview File Message Default","parameters":{"__id":"previewfilemessage--preview-file-message-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts"}},"previewfilemessage--preview-file-message-audio":{"id":"previewfilemessage--preview-file-message-audio","name":"Preview File Message Audio","title":"PreviewFileMessage","importPath":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts","tags":["autodocs","story"],"kind":"PreviewFileMessage","story":"Preview File Message Audio","parameters":{"__id":"previewfilemessage--preview-file-message-audio","docsOnly":false,"fileName":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts"}},"previewfilemessage--preview-file-message-video":{"id":"previewfilemessage--preview-file-message-video","name":"Preview File Message Video","title":"PreviewFileMessage","importPath":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts","tags":["autodocs","story"],"kind":"PreviewFileMessage","story":"Preview File Message Video","parameters":{"__id":"previewfilemessage--preview-file-message-video","docsOnly":false,"fileName":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts"}},"previewfilemessage--preview-file-message-image":{"id":"previewfilemessage--preview-file-message-image","name":"Preview File Message Image","title":"PreviewFileMessage","importPath":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts","tags":["autodocs","story"],"kind":"PreviewFileMessage","story":"Preview File Message Image","parameters":{"__id":"previewfilemessage--preview-file-message-image","docsOnly":false,"fileName":"./src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts"}},"settings-item--docs":{"id":"settings-item--docs","title":"Settings Item","name":"Docs","importPath":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Settings Item","story":"Docs","parameters":{"__id":"settings-item--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx"}},"settings-item--settings-item-default":{"id":"settings-item--settings-item-default","name":"Settings Item Default","title":"Settings Item","importPath":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx","tags":["autodocs","story"],"kind":"Settings Item","story":"Settings Item Default","parameters":{"__id":"settings-item--settings-item-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx"}},"settings-item--settings-item-notification":{"id":"settings-item--settings-item-notification","name":"Settings Item Notification","title":"Settings Item","importPath":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx","tags":["autodocs","story"],"kind":"Settings Item","story":"Settings Item Notification","parameters":{"__id":"settings-item--settings-item-notification","docsOnly":false,"fileName":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx"}},"settings-item--settings-item-members":{"id":"settings-item--settings-item-members","name":"Settings Item Members","title":"Settings Item","importPath":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx","tags":["autodocs","story"],"kind":"Settings Item","story":"Settings Item Members","parameters":{"__id":"settings-item--settings-item-members","docsOnly":false,"fileName":"./src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx"}},"textfield--docs":{"id":"textfield--docs","title":"TextField","name":"Docs","importPath":"./src/Presentation/ui-components/TextField/TextField.stories.ts","tags":["autodocs","docs"],"storiesImports":[],"kind":"TextField","story":"Docs","parameters":{"__id":"textfield--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/TextField/TextField.stories.ts"}},"textfield--text-field-default":{"id":"textfield--text-field-default","name":"Text Field Default","title":"TextField","importPath":"./src/Presentation/ui-components/TextField/TextField.stories.ts","tags":["autodocs","story"],"kind":"TextField","story":"Text Field Default","parameters":{"__id":"textfield--text-field-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/TextField/TextField.stories.ts"}},"textfield--text-field-disabled":{"id":"textfield--text-field-disabled","name":"Text Field Disabled","title":"TextField","importPath":"./src/Presentation/ui-components/TextField/TextField.stories.ts","tags":["autodocs","story"],"kind":"TextField","story":"Text Field Disabled","parameters":{"__id":"textfield--text-field-disabled","docsOnly":false,"fileName":"./src/Presentation/ui-components/TextField/TextField.stories.ts"}},"textfield--text-field-reset":{"id":"textfield--text-field-reset","name":"Text Field Reset","title":"TextField","importPath":"./src/Presentation/ui-components/TextField/TextField.stories.ts","tags":["autodocs","story"],"kind":"TextField","story":"Text Field Reset","parameters":{"__id":"textfield--text-field-reset","docsOnly":false,"fileName":"./src/Presentation/ui-components/TextField/TextField.stories.ts"}},"toast--docs":{"id":"toast--docs","title":"Toast","name":"Docs","importPath":"./src/Presentation/ui-components/Toast/Toast.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"Toast","story":"Docs","parameters":{"__id":"toast--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/Toast/Toast.stories.tsx"}},"toast--toast-default":{"id":"toast--toast-default","name":"Toast Default","title":"Toast","importPath":"./src/Presentation/ui-components/Toast/Toast.stories.tsx","tags":["autodocs","story"],"kind":"Toast","story":"Toast Default","parameters":{"__id":"toast--toast-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/Toast/Toast.stories.tsx"}},"user-list-item--docs":{"id":"user-list-item--docs","title":"User List Item","name":"Docs","importPath":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx","tags":["autodocs","docs"],"storiesImports":[],"kind":"User List Item","story":"Docs","parameters":{"__id":"user-list-item--docs","docsOnly":true,"fileName":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx"}},"user-list-item--user-list-item-default":{"id":"user-list-item--user-list-item-default","name":"User List Item Default","title":"User List Item","importPath":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx","tags":["autodocs","story"],"kind":"User List Item","story":"User List Item Default","parameters":{"__id":"user-list-item--user-list-item-default","docsOnly":false,"fileName":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx"}},"user-list-item--user-list":{"id":"user-list-item--user-list","name":"User List","title":"User List Item","importPath":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx","tags":["autodocs","story"],"kind":"User List Item","story":"User List","parameters":{"__id":"user-list-item--user-list","docsOnly":false,"fileName":"./src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx"}}}}
package/tsconfig.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "compilerOptions": {
3
+ "outDir": "./dist/",
4
+ "sourceMap": true,
5
+ "declaration": true,
6
+ "target": "es5",
7
+ "lib": [
8
+ "es2015",
9
+ "dom",
10
+ "dom.iterable",
11
+ "esnext"
12
+ ],
13
+ "allowJs": true,
14
+ "skipLibCheck": true,
15
+ "esModuleInterop": true,
16
+ "allowSyntheticDefaultImports": true,
17
+ "strict": true,
18
+ "forceConsistentCasingInFileNames": true,
19
+ "noFallthroughCasesInSwitch": true,
20
+ "module": "esnext",
21
+ "moduleResolution": "node",
22
+ "resolveJsonModule": true,
23
+ "isolatedModules": true,
24
+ "noEmit": true,
25
+ "jsx": "react-jsx",
26
+ },
27
+ "include": [
28
+ "src",
29
+ "global.d.ts"
30
+ ],
31
+ "exclude": ["node_modules", "dist"]
32
+
33
+ }
package/typedoc.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "entryPoints": ["./src/index.ts"],
3
+ "out": "docs"
4
+ }
@@ -0,0 +1,68 @@
1
+ const path = require('path');
2
+ // const packageInfo = require('./package.json');
3
+
4
+ module.exports = {
5
+ mode: 'development',
6
+ entry: './src/index-ui.ts',
7
+ devtool: 'source-map',
8
+ output: {
9
+ // filename: "research-ui-react-library-" +
10
+ // packageInfo.version + ".js",
11
+ filename: "index-ui.js",
12
+ path: path.resolve(__dirname, 'dist'),
13
+ libraryTarget: "umd",
14
+ clean: true
15
+ },
16
+ resolve: {
17
+ extensions: ['.ts', '.tsx']
18
+ },
19
+ externals: {
20
+ "react": "react",
21
+ "react-dom": "react-dom",
22
+ },
23
+ module: {
24
+ rules: [
25
+ {
26
+ test: [/\.css$/i],
27
+ use: [
28
+ // Creates style nodes from JS strings
29
+ 'style-loader',
30
+ // Translates CSS into CommonJS
31
+ 'css-loader'
32
+ ],
33
+ },
34
+ {
35
+ test: [/\.s[ac]ss$/i],
36
+ use: [
37
+ // Creates style nodes from JS strings
38
+ 'style-loader',
39
+ // Translates CSS into CommonJS
40
+ 'css-loader',
41
+ // Compiles Sass to CSS
42
+ 'sass-loader',
43
+ ],
44
+ exclude: /node_modules/
45
+ },
46
+ {
47
+ test: /\.(ts|tsx)?$/,
48
+
49
+ use: {
50
+ loader: 'ts-loader',
51
+ options: {
52
+ compilerOptions: {
53
+ noEmit: false,
54
+ },
55
+ }
56
+
57
+ },
58
+
59
+ exclude: ['/node_modules/', '/src/__tests__'],
60
+ },
61
+ {
62
+ test: /\.svg$/i,
63
+ issuer: /\.[jt]sx?$/,
64
+ use: ['@svgr/webpack', 'url-loader'],
65
+ },
66
+ ],
67
+ }
68
+ };
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- import './RenderLeftActions.scss';
3
- import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
4
- import UiKitTheme from '../../../../themes/UiKitTheme';
5
- type RenderLeftActionsProps = {
6
- onClickBack: FunctionTypeVoidToVoid;
7
- theme?: UiKitTheme;
8
- };
9
- declare const RenderLeftActions: React.FC<RenderLeftActionsProps>;
10
- export default RenderLeftActions;
@@ -1,7 +0,0 @@
1
- import './PreviewAudioFile.scss';
2
- import React from 'react';
3
- type PreviewAudioFileProps = {
4
- fileName: string;
5
- };
6
- declare const PreviewAudioFile: React.FC<PreviewAudioFileProps>;
7
- export default PreviewAudioFile;
@@ -1,7 +0,0 @@
1
- import './PreviewDefaultFile.scss';
2
- import React from 'react';
3
- type PreviewDefaultFileProps = {
4
- fileName: string;
5
- };
6
- declare const PreviewDefaultFile: React.FC<PreviewDefaultFileProps>;
7
- export default PreviewDefaultFile;
@@ -1,8 +0,0 @@
1
- import './PreviewImageFile.scss';
2
- import React from 'react';
3
- type PreviewImageFileProps = {
4
- fileName: string;
5
- imgUrl: string;
6
- };
7
- declare const PreviewImageFile: React.FC<PreviewImageFileProps>;
8
- export default PreviewImageFile;
@@ -1,7 +0,0 @@
1
- import './PreviewVideoFile.scss';
2
- import React from 'react';
3
- type PreviewVideoFileProps = {
4
- fileName: string;
5
- };
6
- declare const PreviewVideoFile: React.FC<PreviewVideoFileProps>;
7
- export default PreviewVideoFile;
@@ -1,14 +0,0 @@
1
- import React from 'react';
2
- import './Modal.scss';
3
- type ModalContextType = {
4
- isOpen: boolean;
5
- handleModal: (show: boolean, content: React.ReactNode, headerText?: string, withoutClose?: boolean, haveModalFooter?: boolean, haveModalContainerStyle?: React.CSSProperties) => void;
6
- modalContent: React.ReactNode;
7
- modalHeader: string;
8
- modalCloseTab: boolean;
9
- haveModalFooter: boolean;
10
- ModalContainerStyle: React.CSSProperties;
11
- };
12
- export declare const ModalContext: React.Context<ModalContextType>;
13
- declare function Modal(): JSX.Element;
14
- export default Modal;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { ProviderProps } from '../ProviderProps';
3
- declare function ModalContextProvider({ children }: ProviderProps): JSX.Element;
4
- export default ModalContextProvider;
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- declare const useModal: () => {
3
- isOpen: boolean;
4
- handleModal: (show: boolean, content: React.ReactNode, headerText?: string, withoutCloseTab?: boolean, withoutFooter?: boolean, haveModalContainerStyle?: React.CSSProperties) => void;
5
- modalContent: React.ReactNode;
6
- modalHeader: string;
7
- modalCloseTab: boolean;
8
- haveModalFooter: boolean;
9
- ModalContainerStyle: React.CSSProperties;
10
- };
11
- export default useModal;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import './ReplyMessagePreview.scss';
3
2
  import { MessageEntity } from '../../../../Domain/entity/MessageEntity';
4
3
  import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
4
+ import './ReplyMessagePreview.scss';
5
5
  type ReplyMessagePreviewProps = {
6
6
  messages: MessageEntity[];
7
7
  userNameSentMessage: string;