quickblox-react-ui-kit 0.4.5 → 0.5.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 (1001) hide show
  1. package/.storybook/main.ts +84 -12
  2. package/.storybook/preview.ts +6 -1
  3. package/babel.config.js +7 -0
  4. package/dist/App.d.ts.map +1 -0
  5. package/dist/CommonTypes/BaseViewModel.d.ts +1 -1
  6. package/dist/CommonTypes/BaseViewModel.d.ts.map +1 -0
  7. package/dist/CommonTypes/CommonTypes.d.ts.map +1 -0
  8. package/dist/CommonTypes/FunctionResult.d.ts.map +1 -0
  9. package/dist/Data/Creator.d.ts.map +1 -0
  10. package/dist/Data/DefaultConfigurations.d.ts.map +1 -0
  11. package/dist/Data/Stubs.d.ts.map +1 -0
  12. package/dist/Data/dto/dialog/LocalDialogDTO.d.ts.map +1 -0
  13. package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts.map +1 -0
  14. package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts.map +1 -0
  15. package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts.map +1 -0
  16. package/dist/Data/dto/file/LocalFileDTO.d.ts.map +1 -0
  17. package/dist/Data/dto/file/RemoteFileDTO.d.ts.map +1 -0
  18. package/dist/Data/dto/message/LocalMessageDTO.d.ts.map +1 -0
  19. package/dist/Data/dto/message/LocalMessagesDTO.d.ts.map +1 -0
  20. package/dist/Data/dto/message/RemoteMessageDTO.d.ts.map +1 -0
  21. package/dist/Data/dto/message/RemoteMessagesDTO.d.ts.map +1 -0
  22. package/dist/Data/dto/user/LocalUserDTO.d.ts.map +1 -0
  23. package/dist/Data/dto/user/LocalUsersDTO.d.ts.map +1 -0
  24. package/dist/Data/dto/user/RemoteUserDTO.d.ts.map +1 -0
  25. package/dist/Data/dto/user/RemoteUsersDTO.d.ts.map +1 -0
  26. package/dist/Data/mapper/DialogLocalDTOMapper.d.ts.map +1 -0
  27. package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts.map +1 -0
  28. package/dist/Data/mapper/FileLocalDTOMapper.d.ts.map +1 -0
  29. package/dist/Data/mapper/FileRemoteDTOMapper.d.ts.map +1 -0
  30. package/dist/Data/mapper/IMapper.d.ts.map +1 -0
  31. package/dist/Data/mapper/MessageLocalDTOMapper.d.ts.map +1 -0
  32. package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts.map +1 -0
  33. package/dist/Data/mapper/UserLocalDTOMapper.d.ts.map +1 -0
  34. package/dist/Data/mapper/UserRemoteDTOMapper.d.ts.map +1 -0
  35. package/dist/Data/repository/ConnectionRepository.d.ts.map +1 -0
  36. package/dist/Data/repository/DialogsRepository.d.ts.map +1 -0
  37. package/dist/Data/repository/EventMessagesRepository.d.ts.map +1 -0
  38. package/dist/Data/repository/FileRepository.d.ts.map +1 -0
  39. package/dist/Data/repository/MessagesRepository.d.ts.map +1 -0
  40. package/dist/Data/repository/UsersRepository.d.ts.map +1 -0
  41. package/dist/Data/source/AISource.d.ts.map +1 -0
  42. package/dist/Data/source/exception/LocalDataSourceException.d.ts.map +1 -0
  43. package/dist/Data/source/exception/MapperDTOException.d.ts.map +1 -0
  44. package/dist/Data/source/exception/RemoteDataSourceException.d.ts.map +1 -0
  45. package/dist/Data/source/exception/RepositoryException.d.ts.map +1 -0
  46. package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts.map +1 -0
  47. package/dist/Data/source/local/ILocalDataSource.d.ts.map +1 -0
  48. package/dist/Data/source/local/ILocalFileDataSource.d.ts.map +1 -0
  49. package/dist/Data/source/local/LocalDataSource.d.ts.map +1 -0
  50. package/dist/Data/source/local/LocalFileDataSource.d.ts.map +1 -0
  51. package/dist/Data/source/remote/IRemoteDataSource.d.ts.map +1 -0
  52. package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts.map +1 -0
  53. package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts.map +1 -0
  54. package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts.map +1 -0
  55. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts.map +1 -0
  56. package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts.map +1 -0
  57. package/dist/Data/source/remote/RemoteDataSource.d.ts.map +1 -0
  58. package/dist/Domain/entity/Chat.d.ts.map +1 -0
  59. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts.map +1 -0
  60. package/dist/Domain/entity/CustomDataEntity.d.ts.map +1 -0
  61. package/dist/Domain/entity/DialogEntity.d.ts.map +1 -0
  62. package/dist/Domain/entity/DialogEventInfo.d.ts.map +1 -0
  63. package/dist/Domain/entity/DialogTypes.d.ts.map +1 -0
  64. package/dist/Domain/entity/EventMessageType.d.ts.map +1 -0
  65. package/dist/Domain/entity/FileEntity.d.ts.map +1 -0
  66. package/dist/Domain/entity/FileTypes.d.ts.map +1 -0
  67. package/dist/Domain/entity/GroupDialogEntity.d.ts.map +1 -0
  68. package/dist/Domain/entity/LastMessageEntity.d.ts.map +1 -0
  69. package/dist/Domain/entity/MessageEntity.d.ts.map +1 -0
  70. package/dist/Domain/entity/NotificationTypes.d.ts.map +1 -0
  71. package/dist/Domain/entity/PrivateDialogEntity.d.ts.map +1 -0
  72. package/dist/Domain/entity/PublicDialogEntity.d.ts.map +1 -0
  73. package/dist/Domain/entity/UserEntity.d.ts.map +1 -0
  74. package/dist/Domain/exception/domain/DomainExecption.d.ts.map +1 -0
  75. package/dist/Domain/repository/IDialogsRepository.d.ts.map +1 -0
  76. package/dist/Domain/repository/IFileRepository.d.ts.map +1 -0
  77. package/dist/Domain/repository/IMessagesRepository.d.ts.map +1 -0
  78. package/dist/Domain/repository/IUsersRepository.d.ts.map +1 -0
  79. package/dist/Domain/repository/Pagination.d.ts.map +1 -0
  80. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts.map +1 -0
  81. package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts.map +1 -0
  82. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts.map +1 -0
  83. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts.map +1 -0
  84. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts.map +1 -0
  85. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts.map +1 -0
  86. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts.map +1 -0
  87. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts.map +1 -0
  88. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts.map +1 -0
  89. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts.map +1 -0
  90. package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts.map +1 -0
  91. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts.map +1 -0
  92. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts.map +1 -0
  93. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts.map +1 -0
  94. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts.map +1 -0
  95. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts.map +1 -0
  96. package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts.map +1 -0
  97. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts.map +1 -0
  98. package/dist/Domain/use_cases/UploadFileUseCase.d.ts.map +1 -0
  99. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts.map +1 -0
  100. package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts.map +1 -0
  101. package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts.map +1 -0
  102. package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts.map +1 -0
  103. package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts.map +1 -0
  104. package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts.map +1 -0
  105. package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts.map +1 -0
  106. package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts.map +1 -0
  107. package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts.map +1 -0
  108. package/dist/Domain/use_cases/base/BaseUseCase.d.ts.map +1 -0
  109. package/dist/Domain/use_cases/base/IUseCase.d.ts.map +1 -0
  110. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts.map +1 -0
  111. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts.map +1 -0
  112. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts.map +1 -0
  113. package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts.map +1 -0
  114. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts.map +1 -0
  115. package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts.map +1 -0
  116. package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts.map +1 -0
  117. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +1 -2
  118. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts.map +1 -0
  119. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +1 -1
  120. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts.map +1 -0
  121. package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts.map +1 -0
  122. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +2 -2
  123. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts.map +1 -0
  124. package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts.map +1 -0
  125. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts.map +1 -0
  126. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts.map +1 -0
  127. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts.map +1 -0
  128. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts.map +1 -0
  129. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts.map +1 -0
  130. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts.map +1 -0
  131. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts.map +1 -0
  132. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts.map +1 -0
  133. package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts.map +1 -0
  134. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +1 -1
  135. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts.map +1 -0
  136. package/dist/Presentation/Views/Dialog/Dialog.d.ts +2 -1
  137. package/dist/Presentation/Views/Dialog/Dialog.d.ts.map +1 -0
  138. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +1 -2
  139. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts.map +1 -0
  140. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +2 -1
  141. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts.map +1 -0
  142. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +1 -2
  143. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts.map +1 -0
  144. package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts.map +1 -0
  145. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +2 -1
  146. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts.map +1 -0
  147. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +2 -1
  148. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts.map +1 -0
  149. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +1 -2
  150. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts.map +1 -0
  151. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +1 -2
  152. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts.map +1 -0
  153. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +1 -2
  154. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts.map +1 -0
  155. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +1 -2
  156. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts.map +1 -0
  157. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +1 -2
  158. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts.map +1 -0
  159. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +1 -2
  160. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts.map +1 -0
  161. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +1 -2
  162. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts.map +1 -0
  163. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +2 -1
  164. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts.map +1 -0
  165. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +1 -2
  166. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts.map +1 -0
  167. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +1 -0
  168. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts.map +1 -0
  169. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts.map +1 -0
  170. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +1 -0
  171. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts.map +1 -0
  172. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +1 -0
  173. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts.map +1 -0
  174. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +1 -0
  175. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts.map +1 -0
  176. package/dist/Presentation/Views/Dialog/Message/Message.d.ts +2 -2
  177. package/dist/Presentation/Views/Dialog/Message/Message.d.ts.map +1 -0
  178. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +1 -2
  179. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts.map +1 -0
  180. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +1 -2
  181. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts.map +1 -0
  182. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +1 -2
  183. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts.map +1 -0
  184. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +1 -1
  185. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts.map +1 -0
  186. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +1 -2
  187. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts.map +1 -0
  188. package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts.map +1 -0
  189. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -0
  190. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts.map +1 -0
  191. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +1 -1
  192. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts.map +1 -0
  193. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +1 -0
  194. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts.map +1 -0
  195. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts.map +1 -0
  196. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +1 -0
  197. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts.map +1 -0
  198. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +1 -2
  199. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts.map +1 -0
  200. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +1 -2
  201. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts.map +1 -0
  202. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +2 -1
  203. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts.map +1 -0
  204. package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts.map +1 -0
  205. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +2 -1
  206. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts.map +1 -0
  207. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +1 -2
  208. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts.map +1 -0
  209. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +1 -2
  210. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts.map +1 -0
  211. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +1 -2
  212. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts.map +1 -0
  213. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +1 -0
  214. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts.map +1 -0
  215. package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts.map +1 -0
  216. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts.map +1 -0
  217. package/dist/Presentation/Views/DialogList/DialogList.d.ts +6 -5
  218. package/dist/Presentation/Views/DialogList/DialogList.d.ts.map +1 -0
  219. package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts.map +1 -0
  220. package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts.map +1 -0
  221. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +1 -2
  222. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts.map +1 -0
  223. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +1 -2
  224. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts.map +1 -0
  225. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +1 -2
  226. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts.map +1 -0
  227. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +1 -2
  228. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts.map +1 -0
  229. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +1 -2
  230. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts.map +1 -0
  231. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +1 -2
  232. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts.map +1 -0
  233. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +1 -2
  234. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts.map +1 -0
  235. package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts.map +1 -0
  236. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +1 -2
  237. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts.map +1 -0
  238. package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts.map +1 -0
  239. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +1 -2
  240. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts.map +1 -0
  241. package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts.map +1 -0
  242. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +2 -2
  243. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts.map +1 -0
  244. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts.map +1 -0
  245. package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts.map +1 -0
  246. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +1 -2
  247. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts.map +1 -0
  248. package/dist/Presentation/components/Navbar.d.ts.map +1 -0
  249. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +2 -1
  250. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts.map +1 -0
  251. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +2 -1
  252. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts.map +1 -0
  253. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +2 -1
  254. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts.map +1 -0
  255. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +2 -1
  256. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts.map +1 -0
  257. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +1 -2
  258. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts.map +1 -0
  259. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts.map +1 -0
  260. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +2 -1
  261. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts.map +1 -0
  262. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts.map +1 -0
  263. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts.map +1 -0
  264. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts.map +1 -0
  265. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts.map +1 -0
  266. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts.map +1 -0
  267. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts.map +1 -0
  268. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts.map +1 -0
  269. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts.map +1 -0
  270. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts.map +1 -0
  271. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts.map +1 -0
  272. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts.map +1 -0
  273. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts.map +1 -0
  274. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts.map +1 -0
  275. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts.map +1 -0
  276. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts.map +1 -0
  277. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts.map +1 -0
  278. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts.map +1 -0
  279. package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts.map +1 -0
  280. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts.map +1 -0
  281. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts.map +1 -0
  282. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts.map +1 -0
  283. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts.map +1 -0
  284. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts.map +1 -0
  285. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts.map +1 -0
  286. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts.map +1 -0
  287. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts.map +1 -0
  288. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts.map +1 -0
  289. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts.map +1 -0
  290. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts.map +1 -0
  291. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts.map +1 -0
  292. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts.map +1 -0
  293. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts.map +1 -0
  294. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts.map +1 -0
  295. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts.map +1 -0
  296. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts.map +1 -0
  297. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts.map +1 -0
  298. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts.map +1 -0
  299. package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts.map +1 -0
  300. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts.map +1 -0
  301. package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts.map +1 -0
  302. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts.map +1 -0
  303. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts.map +1 -0
  304. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts.map +1 -0
  305. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts.map +1 -0
  306. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts.map +1 -0
  307. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts.map +1 -0
  308. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts.map +1 -0
  309. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts.map +1 -0
  310. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts.map +1 -0
  311. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts.map +1 -0
  312. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts.map +1 -0
  313. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts.map +1 -0
  314. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts.map +1 -0
  315. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts.map +1 -0
  316. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts.map +1 -0
  317. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts.map +1 -0
  318. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts.map +1 -0
  319. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts.map +1 -0
  320. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts.map +1 -0
  321. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts.map +1 -0
  322. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts.map +1 -0
  323. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts.map +1 -0
  324. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts.map +1 -0
  325. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts.map +1 -0
  326. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts.map +1 -0
  327. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts.map +1 -0
  328. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts.map +1 -0
  329. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts.map +1 -0
  330. package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts.map +1 -0
  331. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts.map +1 -0
  332. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts.map +1 -0
  333. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts.map +1 -0
  334. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts.map +1 -0
  335. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts.map +1 -0
  336. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts.map +1 -0
  337. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts.map +1 -0
  338. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts.map +1 -0
  339. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts.map +1 -0
  340. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts.map +1 -0
  341. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts.map +1 -0
  342. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts.map +1 -0
  343. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts.map +1 -0
  344. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts.map +1 -0
  345. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts.map +1 -0
  346. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts.map +1 -0
  347. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts.map +1 -0
  348. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts.map +1 -0
  349. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts.map +1 -0
  350. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts.map +1 -0
  351. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts.map +1 -0
  352. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts.map +1 -0
  353. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts.map +1 -0
  354. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts.map +1 -0
  355. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts.map +1 -0
  356. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts.map +1 -0
  357. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts.map +1 -0
  358. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts.map +1 -0
  359. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts.map +1 -0
  360. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts.map +1 -0
  361. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts.map +1 -0
  362. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts.map +1 -0
  363. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts.map +1 -0
  364. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts.map +1 -0
  365. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts.map +1 -0
  366. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts.map +1 -0
  367. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts.map +1 -0
  368. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts.map +1 -0
  369. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts.map +1 -0
  370. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts.map +1 -0
  371. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts.map +1 -0
  372. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts.map +1 -0
  373. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts.map +1 -0
  374. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts.map +1 -0
  375. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts.map +1 -0
  376. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts.map +1 -0
  377. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts.map +1 -0
  378. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts.map +1 -0
  379. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts.map +1 -0
  380. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts.map +1 -0
  381. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts.map +1 -0
  382. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +1 -2
  383. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts.map +1 -0
  384. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +2 -1
  385. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts.map +1 -0
  386. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +2 -1
  387. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts.map +1 -0
  388. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +2 -1
  389. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts.map +1 -0
  390. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +1 -0
  391. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts.map +1 -0
  392. package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts.map +1 -0
  393. package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts.map +1 -0
  394. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts.map +1 -0
  395. package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts.map +1 -0
  396. package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts.map +1 -0
  397. package/dist/Presentation/components/containers/SectionList/index.d.ts.map +1 -0
  398. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +1 -0
  399. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts.map +1 -0
  400. package/dist/Presentation/icons/actions/index.d.ts +27 -26
  401. package/dist/Presentation/icons/actions/index.d.ts.map +1 -0
  402. package/dist/Presentation/icons/contents/index.d.ts +14 -13
  403. package/dist/Presentation/icons/contents/index.d.ts.map +1 -0
  404. package/dist/Presentation/icons/index.d.ts +1 -1
  405. package/dist/Presentation/icons/index.d.ts.map +1 -0
  406. package/dist/Presentation/icons/media/index.d.ts +13 -12
  407. package/dist/Presentation/icons/media/index.d.ts.map +1 -0
  408. package/dist/Presentation/icons/moderation/index.d.ts +6 -5
  409. package/dist/Presentation/icons/moderation/index.d.ts.map +1 -0
  410. package/dist/Presentation/icons/navigation/index.d.ts +13 -12
  411. package/dist/Presentation/icons/navigation/index.d.ts.map +1 -0
  412. package/dist/Presentation/icons/status/index.d.ts +8 -7
  413. package/dist/Presentation/icons/status/index.d.ts.map +1 -0
  414. package/dist/Presentation/icons/toggle/index.d.ts +24 -23
  415. package/dist/Presentation/icons/toggle/index.d.ts.map +1 -0
  416. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +1 -0
  417. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts.map +1 -0
  418. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -2
  419. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts.map +1 -0
  420. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +1 -0
  421. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts.map +1 -0
  422. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +1 -0
  423. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts.map +1 -0
  424. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +1 -2
  425. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts.map +1 -0
  426. package/dist/Presentation/providers/ProviderProps.d.ts +1 -0
  427. package/dist/Presentation/providers/ProviderProps.d.ts.map +1 -0
  428. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +1 -0
  429. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts.map +1 -0
  430. package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts.map +1 -0
  431. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts.map +1 -0
  432. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts.map +1 -0
  433. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts.map +1 -0
  434. package/dist/Presentation/themes/DarkTheme.d.ts.map +1 -0
  435. package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts.map +1 -0
  436. package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts.map +1 -0
  437. package/dist/Presentation/themes/LightTheme.d.ts.map +1 -0
  438. package/dist/Presentation/themes/ThemeScheme.d.ts.map +1 -0
  439. package/dist/Presentation/themes/UiKitTheme.d.ts.map +1 -0
  440. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +1 -0
  441. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts.map +1 -0
  442. package/dist/Presentation/ui-components/Badge/Badge.d.ts.map +1 -0
  443. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts.map +1 -0
  444. package/dist/Presentation/ui-components/Button/Button.d.ts +1 -0
  445. package/dist/Presentation/ui-components/Button/Button.d.ts.map +1 -0
  446. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +4 -4
  447. package/dist/Presentation/ui-components/Button/Button.stories.d.ts.map +1 -0
  448. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts.map +1 -0
  449. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts.map +1 -0
  450. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts.map +1 -0
  451. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +2 -1
  452. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts.map +1 -0
  453. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +4 -3
  454. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts.map +1 -0
  455. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +1 -0
  456. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts.map +1 -0
  457. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +1 -0
  458. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts.map +1 -0
  459. package/dist/Presentation/ui-components/Header/Header.d.ts +2 -1
  460. package/dist/Presentation/ui-components/Header/Header.d.ts.map +1 -0
  461. package/dist/Presentation/ui-components/Loader/Loader.d.ts.map +1 -0
  462. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +1 -1
  463. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts.map +1 -0
  464. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts.map +1 -0
  465. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts.map +1 -0
  466. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts.map +1 -0
  467. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts.map +1 -0
  468. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts.map +1 -0
  469. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts.map +1 -0
  470. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts.map +1 -0
  471. package/dist/Presentation/ui-components/Message/Message.d.ts +1 -0
  472. package/dist/Presentation/ui-components/Message/Message.d.ts.map +1 -0
  473. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts.map +1 -0
  474. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts.map +1 -0
  475. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +2 -1
  476. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts.map +1 -0
  477. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +2 -1
  478. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts.map +1 -0
  479. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +1 -2
  480. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts.map +1 -0
  481. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -2
  482. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts.map +1 -0
  483. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +1 -2
  484. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts.map +1 -0
  485. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts.map +1 -0
  486. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +1 -1
  487. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts.map +1 -0
  488. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +1 -0
  489. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts.map +1 -0
  490. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts.map +1 -0
  491. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts.map +1 -0
  492. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +1 -0
  493. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts.map +1 -0
  494. package/dist/Presentation/ui-components/TextField/TextField.d.ts +3 -2
  495. package/dist/Presentation/ui-components/TextField/TextField.d.ts.map +1 -0
  496. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts.map +1 -0
  497. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +1 -0
  498. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts.map +1 -0
  499. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts.map +1 -0
  500. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +2 -2
  501. package/dist/Presentation/ui-components/index.d.ts.map +1 -0
  502. package/dist/QBconfig.d.ts.map +1 -0
  503. package/dist/hooks/useModal.d.ts.map +1 -0
  504. package/dist/hooks/useQuickBloxUIKit.d.ts +5 -2
  505. package/dist/hooks/useQuickBloxUIKit.d.ts.map +1 -0
  506. package/dist/index-ui.d.ts +1 -3
  507. package/dist/index-ui.d.ts.map +1 -0
  508. package/dist/index-ui.js +73631 -35645
  509. package/dist/index.d.ts.map +1 -0
  510. package/dist/qb-api-calls/index.d.ts.map +1 -0
  511. package/dist/setupTests.d.ts.map +1 -0
  512. package/dist/utils/DateTimeFormatter.d.ts.map +1 -0
  513. package/dist/utils/formatFileSize.d.ts.map +1 -0
  514. package/dist/utils/parse.d.ts +1 -1
  515. package/dist/utils/parse.d.ts.map +1 -0
  516. package/dist/utils/utils.d.ts.map +1 -0
  517. package/global.d.ts +11 -202
  518. package/package.json +46 -45
  519. package/public/index.html +15 -42
  520. package/src/App.scss +5 -0
  521. package/src/App.tsx +53 -33
  522. package/src/CommonTypes/FunctionResult.ts +1 -0
  523. package/src/Data/Stubs.ts +6 -6
  524. package/src/Data/repository/ConnectionRepository.ts +1 -2
  525. package/src/Data/repository/UsersRepository.ts +2 -2
  526. package/src/Data/source/remote/RemoteDataSource.ts +1 -1
  527. package/src/Domain/use_cases/SyncDialogsUseCase.ts +2 -2
  528. package/src/Domain/use_cases/UserTypingMessageUseCase.ts +3 -3
  529. package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.tsx +1 -1
  530. package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.tsx +1 -1
  531. package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.tsx +1 -1
  532. package/src/Presentation/Views/Dialog/AIWidgets/SliderMenu.tsx +2 -2
  533. package/src/Presentation/Views/Dialog/Dialog.tsx +12 -12
  534. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.tsx +1 -4
  535. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.tsx +1 -1
  536. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.tsx +1 -4
  537. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.tsx +1 -1
  538. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx +1 -1
  539. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.tsx +1 -1
  540. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx +1 -1
  541. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.tsx +1 -1
  542. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.tsx +1 -1
  543. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.tsx +1 -1
  544. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.tsx +1 -1
  545. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.tsx +1 -1
  546. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.tsx +1 -1
  547. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.tsx +1 -1
  548. package/src/Presentation/Views/Dialog/Message/Message.tsx +1 -1
  549. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.tsx +1 -1
  550. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.tsx +1 -1
  551. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.tsx +1 -1
  552. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.tsx +1 -1
  553. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.tsx +3 -3
  554. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +1 -1
  555. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.tsx +1 -1
  556. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.tsx +1 -1
  557. package/src/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.tsx +1 -1
  558. package/src/Presentation/Views/DialogInfo/DialogInfo.scss +3 -19
  559. package/src/Presentation/Views/DialogInfo/DialogInfo.tsx +1 -1
  560. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +0 -17
  561. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.tsx +2 -2
  562. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +0 -1
  563. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.tsx +1 -1
  564. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.tsx +1 -1
  565. package/src/Presentation/Views/DialogList/DialogList.tsx +6 -5
  566. package/src/Presentation/Views/DialogList/useDialogListViewModel.ts +28 -30
  567. package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +1 -1
  568. package/src/Presentation/Views/DialogListHeader/DialogListHeader.tsx +1 -1
  569. package/src/Presentation/Views/EditDialog/EditDialog.scss +1 -38
  570. package/src/Presentation/Views/EditDialog/EditDialog.tsx +2 -2
  571. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.tsx +2 -2
  572. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +17 -42
  573. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +40 -37
  574. package/src/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.tsx +4 -3
  575. package/src/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.tsx +1 -1
  576. package/src/Presentation/Views/InviteMembers/InviteMembers.scss +4 -33
  577. package/src/Presentation/Views/InviteMembers/InviteMembers.tsx +19 -9
  578. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +2 -2
  579. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.tsx +1 -1
  580. package/src/Presentation/Views/PreviewDialog/PreviewDialog.tsx +1 -1
  581. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.tsx +1 -1
  582. package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +1 -1
  583. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +2 -2
  584. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +5 -10
  585. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +2 -2
  586. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +2 -2
  587. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +0 -5
  588. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +1 -1
  589. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +0 -2
  590. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +1 -1
  591. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +1 -10
  592. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +1 -1
  593. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +1 -1
  594. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +1 -1
  595. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +1 -1
  596. package/src/Presentation/icons/actions/index.ts +55 -26
  597. package/src/Presentation/icons/contents/index.ts +31 -13
  598. package/src/Presentation/icons/index.ts +17 -1
  599. package/src/Presentation/icons/media/index.ts +27 -12
  600. package/src/Presentation/icons/moderation/index.ts +13 -5
  601. package/src/Presentation/icons/navigation/index.ts +27 -12
  602. package/src/Presentation/icons/status/index.ts +17 -7
  603. package/src/Presentation/icons/toggle/index.ts +49 -23
  604. package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +33 -38
  605. package/src/Presentation/layouts/TestStage/LoginView/Login.scss +6 -3
  606. package/src/Presentation/layouts/TestStage/LoginView/Login.tsx +1 -1
  607. package/src/Presentation/themes/styles/_fonts.scss +0 -30
  608. package/src/Presentation/themes/styles/_theme_colors_scheme.scss +1 -1
  609. package/src/Presentation/themes/styles/_theme_dark.scss +5 -4
  610. package/src/Presentation/themes/styles/_theme_light.scss +3 -2
  611. package/src/Presentation/themes/styles/_variables.scss +2 -2
  612. package/src/Presentation/ui-components/Avatar/Avatar.scss +11 -7
  613. package/src/Presentation/ui-components/Avatar/Avatar.tsx +1 -0
  614. package/src/Presentation/ui-components/Avatar/avatar.stories.tsx +2 -0
  615. package/src/Presentation/ui-components/Badge/Badge.stories.ts +3 -3
  616. package/src/Presentation/ui-components/Badge/Badge.tsx +1 -1
  617. package/src/Presentation/ui-components/Button/Button.scss +5 -6
  618. package/src/Presentation/ui-components/Button/Button.stories.ts +4 -3
  619. package/src/Presentation/ui-components/Button/Button.tsx +1 -0
  620. package/src/Presentation/ui-components/CheckBox/CheckBox.scss +29 -1
  621. package/src/Presentation/ui-components/CheckBox/CheckBox.tsx +9 -7
  622. package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +13 -13
  623. package/src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts +1 -1
  624. package/src/Presentation/ui-components/DialogBanner/DialogBanner.tsx +2 -1
  625. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +6 -5
  626. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx +7 -5
  627. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.tsx +2 -2
  628. package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +10 -7
  629. package/src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx +10 -1
  630. package/src/Presentation/ui-components/DialogWindow/DialogWindow.tsx +4 -4
  631. package/src/Presentation/ui-components/Dropdown/Dropdown.scss +1 -1
  632. package/src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx +3 -2
  633. package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +1 -1
  634. package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +1 -0
  635. package/src/Presentation/ui-components/Header/Header.scss +11 -4
  636. package/src/Presentation/ui-components/Header/Header.stories.tsx +1 -0
  637. package/src/Presentation/ui-components/Header/Header.tsx +2 -2
  638. package/src/Presentation/ui-components/Loader/Loader.scss +4 -2
  639. package/src/Presentation/ui-components/Loader/Loader.stories.ts +1 -0
  640. package/src/Presentation/ui-components/Loader/Loader.tsx +1 -0
  641. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +1 -0
  642. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.tsx +2 -2
  643. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.tsx +1 -0
  644. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.tsx +1 -0
  645. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +6 -3
  646. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.tsx +1 -0
  647. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.tsx +1 -0
  648. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +0 -3
  649. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.tsx +2 -1
  650. package/src/Presentation/ui-components/Message/Message.scss +0 -1
  651. package/src/Presentation/ui-components/Message/Message.tsx +2 -2
  652. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.tsx +2 -2
  653. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.tsx +3 -3
  654. package/src/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.tsx +1 -1
  655. package/src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx +3 -3
  656. package/src/Presentation/ui-components/MessageInput/MessageInput.tsx +1 -1
  657. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.tsx +1 -4
  658. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.tsx +1 -1
  659. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +4 -4
  660. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +17 -16
  661. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts +1 -0
  662. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.tsx +1 -0
  663. package/src/Presentation/ui-components/Placeholder/Placeholder.scss +6 -1
  664. package/src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx +1 -0
  665. package/src/Presentation/ui-components/Placeholder/Placeholder.tsx +1 -1
  666. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +4 -1
  667. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts +2 -0
  668. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.tsx +1 -0
  669. package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +8 -3
  670. package/src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx +8 -7
  671. package/src/Presentation/ui-components/SettingsItem/SettingsItem.tsx +1 -1
  672. package/src/Presentation/ui-components/TextField/TextField.scss +3 -4
  673. package/src/Presentation/ui-components/TextField/TextField.stories.ts +3 -2
  674. package/src/Presentation/ui-components/TextField/TextField.tsx +5 -4
  675. package/src/Presentation/ui-components/Toast/Toast.stories.tsx +1 -0
  676. package/src/Presentation/ui-components/Toast/ToastProvider.tsx +1 -1
  677. package/src/Presentation/ui-components/UserListItem/UserListItem.scss +2 -3
  678. package/src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx +19 -6
  679. package/src/Presentation/ui-components/UserListItem/UserListItem.tsx +1 -0
  680. package/src/hooks/useQuickBloxUIKit.ts +160 -128
  681. package/src/index-ui.ts +1 -5
  682. package/src/index.scss +4 -4
  683. package/storybook-static/167.88fc69a9.iframe.bundle.js +1 -0
  684. package/storybook-static/294.b81cdbca.iframe.bundle.js +1 -0
  685. package/storybook-static/363.2cb21716.iframe.bundle.js +2 -0
  686. package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +44 -0
  687. package/storybook-static/364.988cd801.iframe.bundle.js +1 -0
  688. package/storybook-static/488.3cd3942e.iframe.bundle.js +1 -0
  689. package/storybook-static/559.9e64a6f5.iframe.bundle.js +2 -0
  690. package/storybook-static/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +5 -0
  691. package/storybook-static/735.82f96f8a.iframe.bundle.js +2 -0
  692. package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +9 -0
  693. package/storybook-static/756.92971caf.iframe.bundle.js +405 -0
  694. package/storybook-static/756.92971caf.iframe.bundle.js.LICENSE.txt +19 -0
  695. package/storybook-static/756.92971caf.iframe.bundle.js.map +1 -0
  696. package/storybook-static/844.642791cb.iframe.bundle.js +95 -0
  697. package/storybook-static/844.642791cb.iframe.bundle.js.LICENSE.txt +19 -0
  698. package/storybook-static/844.642791cb.iframe.bundle.js.map +1 -0
  699. package/storybook-static/936.8546c1d8.iframe.bundle.js +1 -0
  700. package/storybook-static/961.c94da456.iframe.bundle.js +2 -0
  701. package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +9 -0
  702. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js +2 -0
  703. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js.LICENSE.txt +5 -0
  704. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js +2 -0
  705. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js.LICENSE.txt +5 -0
  706. package/storybook-static/Presentation-ui-components-Button-Button-stories.1b030a58.iframe.bundle.js +2 -0
  707. package/storybook-static/Presentation-ui-components-Button-Button-stories.1b030a58.iframe.bundle.js.LICENSE.txt +5 -0
  708. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.cd797979.iframe.bundle.js +1 -0
  709. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.0d762d0d.iframe.bundle.js +2 -0
  710. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.0d762d0d.iframe.bundle.js.LICENSE.txt +5 -0
  711. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.eb7d6a47.iframe.bundle.js +2 -0
  712. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.eb7d6a47.iframe.bundle.js.LICENSE.txt +15 -0
  713. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.9b27ad00.iframe.bundle.js +2 -0
  714. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.9b27ad00.iframe.bundle.js.LICENSE.txt +5 -0
  715. package/storybook-static/Presentation-ui-components-Header-Header-stories.85ea0a7f.iframe.bundle.js +2 -0
  716. package/storybook-static/Presentation-ui-components-Header-Header-stories.85ea0a7f.iframe.bundle.js.LICENSE.txt +5 -0
  717. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js +2 -0
  718. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js.LICENSE.txt +5 -0
  719. package/storybook-static/Presentation-ui-components-Message-Message-stories.6f9e723d.iframe.bundle.js +2 -0
  720. package/storybook-static/Presentation-ui-components-Message-Message-stories.6f9e723d.iframe.bundle.js.LICENSE.txt +5 -0
  721. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.1f01374c.iframe.bundle.js +1 -0
  722. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.b927d1e1.iframe.bundle.js +1 -0
  723. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js +2 -0
  724. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js.LICENSE.txt +5 -0
  725. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js +2 -0
  726. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js.LICENSE.txt +5 -0
  727. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js +2 -0
  728. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js.LICENSE.txt +5 -0
  729. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.db85d4ac.iframe.bundle.js +2 -0
  730. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.db85d4ac.iframe.bundle.js.LICENSE.txt +5 -0
  731. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.5c245f2b.iframe.bundle.js +1 -0
  732. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.65dee6f0.iframe.bundle.js +2 -0
  733. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.65dee6f0.iframe.bundle.js.LICENSE.txt +5 -0
  734. package/storybook-static/docs-Introduction-mdx.5addfa61.iframe.bundle.js +1 -0
  735. package/storybook-static/docs-Styling-mdx.9f4235f1.iframe.bundle.js +1 -0
  736. package/storybook-static/favicon.svg +1 -7
  737. package/storybook-static/iframe.html +175 -19
  738. package/storybook-static/index.html +100 -46
  739. package/storybook-static/index.json +1 -1
  740. package/storybook-static/main.4f17bc46.iframe.bundle.js +1 -0
  741. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  742. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  743. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  744. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  745. package/storybook-static/project.json +1 -1
  746. package/storybook-static/runtime~main.a64d2b1e.iframe.bundle.js +1 -0
  747. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +331 -0
  748. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +51 -0
  749. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +3 -0
  750. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +12 -0
  751. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +402 -0
  752. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +242 -0
  753. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +3 -0
  754. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +3 -0
  755. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +3 -0
  756. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +3 -0
  757. package/storybook-static/sb-addons/interactions-11/manager-bundle.js +222 -0
  758. package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +127 -0
  759. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  760. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  761. package/storybook-static/sb-manager/globals-module-info.js +1046 -1
  762. package/storybook-static/sb-manager/globals-runtime.js +41239 -0
  763. package/storybook-static/sb-manager/globals.js +48 -1
  764. package/storybook-static/sb-manager/runtime.js +12048 -1
  765. package/storybook-static/sb-preview/globals.js +33 -1
  766. package/storybook-static/sb-preview/runtime.js +7725 -90
  767. package/tsconfig.buildlib.json +20 -13
  768. package/tsconfig.json +6 -7
  769. package/webpack.app.config.js +67 -0
  770. package/webpack.lib.config-debug.js +87 -0
  771. package/webpack.lib.config-prev.js +64 -0
  772. package/webpack.lib.config.js +87 -0
  773. package/dist/index-ui.js.map +0 -1
  774. package/media-recorder-js.d.ts +0 -133
  775. package/src/react-app-env.d.ts +0 -1
  776. package/storybook-static/208.5b4db3b7.iframe.bundle.js +0 -508
  777. package/storybook-static/208.5b4db3b7.iframe.bundle.js.map +0 -1
  778. package/storybook-static/294.3eb6fe57.iframe.bundle.js +0 -1
  779. package/storybook-static/305.8c6a9b9c.iframe.bundle.js +0 -1
  780. package/storybook-static/421.0bbb0e61.iframe.bundle.js +0 -1
  781. package/storybook-static/457.6ff065bd.iframe.bundle.js +0 -352
  782. package/storybook-static/457.6ff065bd.iframe.bundle.js.map +0 -1
  783. package/storybook-static/503.769aa420.iframe.bundle.js +0 -1
  784. package/storybook-static/647.be358768.iframe.bundle.js +0 -1
  785. package/storybook-static/71.badb5d90.iframe.bundle.js +0 -157
  786. package/storybook-static/71.badb5d90.iframe.bundle.js.map +0 -1
  787. package/storybook-static/857.fdf27d25.iframe.bundle.js +0 -1
  788. package/storybook-static/994.d260ec82.iframe.bundle.js +0 -39
  789. package/storybook-static/994.d260ec82.iframe.bundle.js.map +0 -1
  790. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.f12c0e50.iframe.bundle.js +0 -14
  791. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.f12c0e50.iframe.bundle.js.map +0 -1
  792. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.848c045d.iframe.bundle.js +0 -14
  793. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.848c045d.iframe.bundle.js.map +0 -1
  794. package/storybook-static/Presentation-ui-components-Button-Button-stories.0a264f7c.iframe.bundle.js +0 -14
  795. package/storybook-static/Presentation-ui-components-Button-Button-stories.0a264f7c.iframe.bundle.js.map +0 -1
  796. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.e500567e.iframe.bundle.js +0 -10
  797. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.e500567e.iframe.bundle.js.map +0 -1
  798. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.053f39b6.iframe.bundle.js +0 -14
  799. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.053f39b6.iframe.bundle.js.map +0 -1
  800. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.8d572e56.iframe.bundle.js +0 -14
  801. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.8d572e56.iframe.bundle.js.map +0 -1
  802. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.68f79f53.iframe.bundle.js +0 -14
  803. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.68f79f53.iframe.bundle.js.map +0 -1
  804. package/storybook-static/Presentation-ui-components-Header-Header-stories.e2972795.iframe.bundle.js +0 -14
  805. package/storybook-static/Presentation-ui-components-Header-Header-stories.e2972795.iframe.bundle.js.map +0 -1
  806. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8eb761ce.iframe.bundle.js +0 -14
  807. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8eb761ce.iframe.bundle.js.map +0 -1
  808. package/storybook-static/Presentation-ui-components-Message-Message-stories.b5b1775d.iframe.bundle.js +0 -14
  809. package/storybook-static/Presentation-ui-components-Message-Message-stories.b5b1775d.iframe.bundle.js.map +0 -1
  810. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.e55416f1.iframe.bundle.js +0 -1
  811. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.419df5dd.iframe.bundle.js +0 -10
  812. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.419df5dd.iframe.bundle.js.map +0 -1
  813. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.c17043ac.iframe.bundle.js +0 -14
  814. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.c17043ac.iframe.bundle.js.map +0 -1
  815. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.3fd8b734.iframe.bundle.js +0 -14
  816. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.3fd8b734.iframe.bundle.js.map +0 -1
  817. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.c943f648.iframe.bundle.js +0 -14
  818. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.c943f648.iframe.bundle.js.map +0 -1
  819. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.30586294.iframe.bundle.js +0 -14
  820. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.30586294.iframe.bundle.js.map +0 -1
  821. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.24db9b3e.iframe.bundle.js +0 -14
  822. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.24db9b3e.iframe.bundle.js.map +0 -1
  823. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.04902be9.iframe.bundle.js +0 -14
  824. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.04902be9.iframe.bundle.js.map +0 -1
  825. package/storybook-static/docs-Introduction-mdx.4b40f479.iframe.bundle.js +0 -10
  826. package/storybook-static/docs-Introduction-mdx.4b40f479.iframe.bundle.js.map +0 -1
  827. package/storybook-static/docs-Styling-mdx.55077e67.iframe.bundle.js +0 -10
  828. package/storybook-static/docs-Styling-mdx.55077e67.iframe.bundle.js.map +0 -1
  829. package/storybook-static/favicon.ico +0 -0
  830. package/storybook-static/logo192.png +0 -0
  831. package/storybook-static/logo512.png +0 -0
  832. package/storybook-static/main.c0c1b229.iframe.bundle.js +0 -1
  833. package/storybook-static/manifest.json +0 -25
  834. package/storybook-static/robots.txt +0 -3
  835. package/storybook-static/runtime~main.94227b12.iframe.bundle.js +0 -1
  836. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -3
  837. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  838. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -12
  839. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  840. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -62
  841. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
  842. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +0 -3
  843. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
  844. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +0 -3
  845. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
  846. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +0 -3
  847. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
  848. package/storybook-static/sb-addons/interactions-7/manager-bundle.js +0 -12
  849. package/storybook-static/sb-addons/interactions-7/manager-bundle.js.LEGAL.txt +0 -0
  850. package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -3
  851. package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
  852. package/storybook-static/sb-addons/viewport-8/manager-bundle.js +0 -3
  853. package/storybook-static/sb-addons/viewport-8/manager-bundle.js.LEGAL.txt +0 -0
  854. package/storybook-static/sb-common-assets/fonts.css +0 -31
  855. package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +0 -1
  856. package/storybook-static/sb-manager/chunk-5QAFKPS7.js +0 -7
  857. package/storybook-static/sb-manager/chunk-7PRFHFSS.js +0 -9
  858. package/storybook-static/sb-manager/chunk-XE6LDGTE.js +0 -406
  859. package/storybook-static/sb-manager/chunk-YDUB7CS6.js +0 -348
  860. package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +0 -1
  861. package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +0 -156
  862. package/storybook-static/sb-manager/index.js +0 -1
  863. package/storybook-static/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +0 -1
  864. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.7b228eb0.chunk.css +0 -3
  865. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.7b228eb0.chunk.css.map +0 -1
  866. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css +0 -3
  867. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css.map +0 -1
  868. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css +0 -4
  869. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css.map +0 -1
  870. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css +0 -3
  871. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css.map +0 -1
  872. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.6d563072.chunk.css +0 -7
  873. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.6d563072.chunk.css.map +0 -1
  874. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.4f813450.chunk.css +0 -6
  875. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.4f813450.chunk.css.map +0 -1
  876. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.e37f549d.chunk.css +0 -5
  877. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.e37f549d.chunk.css.map +0 -1
  878. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.fb1001e7.chunk.css +0 -4
  879. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.fb1001e7.chunk.css.map +0 -1
  880. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css +0 -3
  881. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css.map +0 -1
  882. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.aca0e085.chunk.css +0 -14
  883. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.aca0e085.chunk.css.map +0 -1
  884. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.7eb916fc.chunk.css +0 -7
  885. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.7eb916fc.chunk.css.map +0 -1
  886. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css +0 -3
  887. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css.map +0 -1
  888. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.cb7fb80a.chunk.css +0 -3
  889. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.cb7fb80a.chunk.css.map +0 -1
  890. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.31cd021e.chunk.css +0 -3
  891. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.31cd021e.chunk.css.map +0 -1
  892. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.b67b748b.chunk.css +0 -5
  893. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.b67b748b.chunk.css.map +0 -1
  894. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css +0 -4
  895. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css.map +0 -1
  896. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.a5b284f4.chunk.css +0 -754
  897. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.a5b284f4.chunk.css.map +0 -1
  898. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.655aa6c1.chunk.css +0 -7
  899. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.655aa6c1.chunk.css.map +0 -1
  900. package/storybook-static/static/css/main.a921485c.css +0 -5
  901. package/storybook-static/static/css/main.a921485c.css.map +0 -1
  902. package/storybook-static/static/media/add-contact.e7e7b8b15edebe99cae9c46963126e7c.svg +0 -3
  903. package/storybook-static/static/media/add.5cbe1f2c489b81396863f7128e3d26e7.svg +0 -3
  904. package/storybook-static/static/media/admin.476c2854d7ad23f2afdedac2d9bd6815.svg +0 -3
  905. package/storybook-static/static/media/archive.d0a72898f3c47a4194d18f560a54e109.svg +0 -3
  906. package/storybook-static/static/media/arrow-left.5005351d4fa6a7c074dd9780fb49dcc8.svg +0 -3
  907. package/storybook-static/static/media/arrow-right.1be3b599e21158807fdf72f4976179a2.svg +0 -3
  908. package/storybook-static/static/media/attachment.a58b8549f46ae5bbe93be779cd9f2037.svg +0 -3
  909. package/storybook-static/static/media/audio-file.40179c472f715fc74d4da607da96aa5e.svg +0 -3
  910. package/storybook-static/static/media/back.b541e72fe05542e145575c8851558998.svg +0 -3
  911. package/storybook-static/static/media/banned.c7c74bfa1c833263f3ab42d0529132d1.svg +0 -3
  912. package/storybook-static/static/media/broadcast.55273926379e5f486ccfdfab1a310b2d.svg +0 -7
  913. package/storybook-static/static/media/broken-file.bc084278a0d284b7901b47f24001caa6.svg +0 -3
  914. package/storybook-static/static/media/camera-off.8e01960815ce7620a1039d0fc5f758b2.svg +0 -3
  915. package/storybook-static/static/media/camera-on.ddd56e36fa505d618ab772e23c8381e6.svg +0 -3
  916. package/storybook-static/static/media/camera.a5a215695fba60146e649094188f37e2.svg +0 -3
  917. package/storybook-static/static/media/chat-filled.aaf0b778d198e7b8f632a68299a8fd13.svg +0 -3
  918. package/storybook-static/static/media/chat.59cd437f21fe7043682dd04cbe6377be.svg +0 -3
  919. package/storybook-static/static/media/check-off.0c0256f00eeb75770ffc2fbd2b59eab0.svg +0 -3
  920. package/storybook-static/static/media/check-on.80442753ef6922df1913453f50099315.svg +0 -3
  921. package/storybook-static/static/media/close.c145af996de81b25f3930bf36d88b161.svg +0 -3
  922. package/storybook-static/static/media/conference.ffbdf37c0510c796138f18e6c1205204.svg +0 -3
  923. package/storybook-static/static/media/contact-filled.f04f56ba3f98ade5d7ced7814d8a5fa8.svg +0 -3
  924. package/storybook-static/static/media/contact.40a8b8104c3a448b81108ffede850963.svg +0 -3
  925. package/storybook-static/static/media/copy.100bd0fff933cbde8ad4bc2ac281c845.svg +0 -3
  926. package/storybook-static/static/media/delete.287c9b4b3b0e58cb081c6e388e68b409.svg +0 -3
  927. package/storybook-static/static/media/down.7a43a3d78885f40616ce111c86c108a4.svg +0 -3
  928. package/storybook-static/static/media/download.43c26d404dd023e42aaacc52151f7a59.svg +0 -3
  929. package/storybook-static/static/media/edit.8d813af82ecab84303ee3c97bd7bc562.svg +0 -3
  930. package/storybook-static/static/media/emoji.9a202cbb16735f3c83ba8772f0218aa4.svg +0 -3
  931. package/storybook-static/static/media/error.ec60e2052661b82f27b7ce270ae133a7.svg +0 -3
  932. package/storybook-static/static/media/favorite.194d78057be6cd7968c85e7b5822f82a.svg +0 -3
  933. package/storybook-static/static/media/file.e537292693b3c89c023fd383c70bd221.svg +0 -3
  934. package/storybook-static/static/media/forward-filled.43120a68057427c89c88b28d9b20dd90.svg +0 -3
  935. package/storybook-static/static/media/freeze.35619771e645b649c38e0427d9b39a25.svg +0 -3
  936. package/storybook-static/static/media/full-screen.6b01c93e069421c69bda2bbde5d01336.svg +0 -3
  937. package/storybook-static/static/media/gif-file.2c46a5df6c8397f5b9088e66aee3fd44.svg +0 -3
  938. package/storybook-static/static/media/group-chat.19d5305cab6017d494ac35ecb285a9fe.svg +0 -3
  939. package/storybook-static/static/media/help.786f48518c96c8e7098296d68245c339.svg +0 -3
  940. package/storybook-static/static/media/hide.2785264246d70868717984a5ad44d4c9.svg +0 -3
  941. package/storybook-static/static/media/hungup.e5d2289a9e8cd755bd1ee36b738305a2.svg +0 -3
  942. package/storybook-static/static/media/image-filled.8afb62b142d786e90102f1cac73a9c13.svg +0 -3
  943. package/storybook-static/static/media/image.64092dadd5215c8d3ba99ccac753d743.svg +0 -3
  944. package/storybook-static/static/media/income-call.60ca2d367a00d582f4b6f4a5f2047e27.svg +0 -3
  945. package/storybook-static/static/media/information.8217e163c334852f143e7199c97fab1d.svg +0 -3
  946. package/storybook-static/static/media/leave.ae5422a12edec1b61484ff2932819c77.svg +0 -3
  947. package/storybook-static/static/media/like.45662989373aa524cd580fb42432e0bc.svg +0 -3
  948. package/storybook-static/static/media/link.74f567c3ee4366d79fb81d73eb8c0919.svg +0 -3
  949. package/storybook-static/static/media/loader.2eb72391c5267453edb4106528c075ad.svg +0 -3
  950. package/storybook-static/static/media/location.cab52453404524c345ec7efdd86fa66b.svg +0 -4
  951. package/storybook-static/static/media/louder.133519141541a9cd2f0e898534b39732.svg +0 -3
  952. package/storybook-static/static/media/mention.6c4885bb0ea5ca85c8962f6f51ac1cb4.svg +0 -3
  953. package/storybook-static/static/media/mic-off.43e60427600bcf7fd78fb840ff50d804.svg +0 -3
  954. package/storybook-static/static/media/mic-on.5a52100de3770550b3a57a76827843c2.svg +0 -4
  955. package/storybook-static/static/media/minimize.a849dd3a36ece08b992a773d135a0c3f.svg +0 -3
  956. package/storybook-static/static/media/moderations.07c8d1fe96b0b8bb5911f6cc37f764c6.svg +0 -3
  957. package/storybook-static/static/media/more.4ed9ad54ae110d9760b6e9698d821960.svg +0 -3
  958. package/storybook-static/static/media/muted.cb37ac3c577c87c800466aa7aee65af2.svg +0 -3
  959. package/storybook-static/static/media/new-chat.124e0351bd0e19ff4c5fdbabbe5c6027.svg +0 -3
  960. package/storybook-static/static/media/next.97a0eeea1f8daa2d31c8452f29908bf1.svg +0 -3
  961. package/storybook-static/static/media/notifications.ab8e847ae04e2bec9209dbdd1054b0f2.svg +0 -3
  962. package/storybook-static/static/media/notify-off.4a669a3a8cbd38b3309dbc4c909f6089.svg +0 -3
  963. package/storybook-static/static/media/notify-on.ea9ffc856ad6cdbe87184af558c78eec.svg +0 -3
  964. package/storybook-static/static/media/outcome-call.9f5fec07823796ad78963a06cdcf629e.svg +0 -3
  965. package/storybook-static/static/media/pause.27eb8c32999f10d05d6a200165d798a9.svg +0 -3
  966. package/storybook-static/static/media/phone-filled.e969511d74935af26ef366f575929f68.svg +0 -3
  967. package/storybook-static/static/media/phone.6355580a064a488b6317372d71f84c00.svg +0 -3
  968. package/storybook-static/static/media/play.00bfe0e9c94dc6dfb230262e45b2f860.svg +0 -3
  969. package/storybook-static/static/media/plus.d3953cb1cf830bcfc41c8cc6133b13b1.svg +0 -3
  970. package/storybook-static/static/media/private-chat.c68f36baf025b9d20ad1f801a2396e7a.svg +0 -3
  971. package/storybook-static/static/media/public-channel.7a6ada7f30c44fb4a99021df0eb0e996.svg +0 -7
  972. package/storybook-static/static/media/quite.9f45e2152fe6c499a776cb387ee4859f.svg +0 -3
  973. package/storybook-static/static/media/record.e49ee7da793b2ce446a4e7128970c0cc.svg +0 -3
  974. package/storybook-static/static/media/refresh.6e955728d9ec086f34e9adaaaafacf3e.svg +0 -3
  975. package/storybook-static/static/media/remove-2.8a7700757f02c941f03c37c7e495bf63.svg +0 -3
  976. package/storybook-static/static/media/remove.831e69b70db1b3eb72a49444b8aa1e16.svg +0 -3
  977. package/storybook-static/static/media/rephrase.551171aa8903b31746a58a95528b1f68.svg +0 -6
  978. package/storybook-static/static/media/reply-filled.17ed65506e902f17bb22e87ffac93314.svg +0 -3
  979. package/storybook-static/static/media/screenshare.c2f94264a7640ea1bbb2a22f7d570038.svg +0 -3
  980. package/storybook-static/static/media/search.25663e60d71e01c64fdfc83df7460ab0.svg +0 -3
  981. package/storybook-static/static/media/send.d298db52aafdb846a46c9d180ad45946.svg +0 -3
  982. package/storybook-static/static/media/sent.f427753e5502fd7783a08e5f0e0d2f35.svg +0 -3
  983. package/storybook-static/static/media/settings-filled.bd9b60ff4e9eae911e4e2bc69e8e79ca.svg +0 -3
  984. package/storybook-static/static/media/share.7ce8283aa267fb065c568d65b482e211.svg +0 -3
  985. package/storybook-static/static/media/show.de1782527c4a7fa14101dffbfba8aea6.svg +0 -3
  986. package/storybook-static/static/media/speaker-off.fe84597c4b68f4f761e12f789dc58718.svg +0 -3
  987. package/storybook-static/static/media/speaker.e7ff48a73ca43188703b36dfecd932b5.svg +0 -3
  988. package/storybook-static/static/media/stop-record.a2e9d50a0930c24af43d7f357093be81.svg +0 -3
  989. package/storybook-static/static/media/stop-share.d1be236e01dd924ba711e1e17f41054c.svg +0 -3
  990. package/storybook-static/static/media/stream-filled.c40bae61fea25455602a61db5e77fa71.svg +0 -3
  991. package/storybook-static/static/media/stream.700f4f8ce0cee0ae1ef56132867427fe.svg +0 -3
  992. package/storybook-static/static/media/swap-camera.bc3a4652106f5c57d14b4dcbffff08a5.svg +0 -3
  993. package/storybook-static/static/media/text-document.cad7e87368501b96de2a939d08852dcd.svg +0 -3
  994. package/storybook-static/static/media/unarchive.1b1a7438cd8eb6fee80e6ac89baa195b.svg +0 -3
  995. package/storybook-static/static/media/user.911c7ae778615185b285ce0ae4068486.svg +0 -3
  996. package/storybook-static/static/media/video-file.dbd1f8c63a3769f9e9a027f0922d56b2.svg +0 -3
  997. package/storybook-static/static/media/video.bbcc2109285c18eea02ede86920de0dd.svg +0 -3
  998. package/storybook-static/static/media/viewed-delivered.f43360dc87235a6cf574ff53f73dd777.svg +0 -3
  999. package/storybook-static/static/media/voice.b937c8a1f744050bec2cd389ad2a1f3a.svg +0 -3
  1000. package/storybook-static/stories.json +0 -1
  1001. package/webpack.config.js +0 -82
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReplyMessagesUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/ReplyMessagesUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAE1E,qBAAa,oBAAqB,YAAW,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IACxE,OAAO,CAAC,kBAAkB,CAAqB;IAE/C,OAAO,CAAC,eAAe,CAAkB;IAEzC,OAAO,CAAC,cAAc,CAAgB;gBAGpC,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,aAAa,EAAE,EAChC,cAAc,EAAE,aAAa;IAQzB,OAAO,IAAI,OAAO,CAAC,aAAa,CAAC;CAYxC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SendTextMessageUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SendTextMessageUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAE1E,qBAAa,sBAAuB,YAAW,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAC1E,OAAO,CAAC,kBAAkB,CAAqB;IAE/C,OAAO,CAAC,aAAa,CAAgB;gBAGnC,kBAAkB,EAAE,kBAAkB,EACtC,aAAa,EAAE,aAAa;IAOxB,OAAO,IAAI,OAAO,CAAC,aAAa,CAAC;CAQxC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscribeToDialogEventsUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,uBAAuB,MAAM,+CAA+C,CAAC;AAGpF,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAE5D,qBAAa,8BAA+B,SAAQ,WAAW,CAC7D,eAAe,EACf,OAAO,CACR;IACC,OAAO,CAAC,uBAAuB,CAA0B;IAEzD,OAAO,CAAC,eAAe,CAAgD;gBAGrE,uBAAuB,EAAE,uBAAuB,EAChD,gBAAgB,GAAE,MAAwD;IAW5E,OAAO,CAAC,QAAQ,EAAE,gBAAgB,CAAC,eAAe,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IA8CtE,+BAA+B,CAAC,eAAe,EAAE,eAAe,GAAG,IAAI;IASvE,sBAAsB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IAe1D,wBAAwB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IAe5D,uBAAuB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IAe3D,4BAA4B,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IAehE,qBAAqB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;CAc1D"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscribeToDialogsUpdatesUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAEnD,qBAAa,gCAAiC,SAAQ,WAAW,CAC/D,KAAK,CAAC,YAAY,CAAC,EACnB,KAAK,CAAC,YAAY,CAAC,CACpB;IACC,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,eAAe,CAAoD;IAE3E,OAAO,CAAC,OAAO,CAA2B;gBAE9B,gBAAgB,EAAE,iBAAiB;IAQ/C,OAAO,CACL,QAAQ,EAAE,gBAAgB,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAC9C,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;CA0ChC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscribeToDialogsUpdatesUseCaseWithMock.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAEnD,qBAAa,wCAAyC,SAAQ,WAAW,CACvE,KAAK,CAAC,YAAY,CAAC,EACnB,KAAK,CAAC,YAAY,CAAC,CACpB;IACC,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,eAAe,CAAoD;IAE3E,OAAO,CAAC,OAAO,CAA2B;gBAE9B,gBAAgB,EAAE,iBAAiB;IAO/C,OAAO,CACL,QAAQ,EAAE,gBAAgB,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAC9C,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;CAoBhC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SyncDialogsUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/SyncDialogsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,oBAAoB,MAAM,4CAA4C,CAAC;AAE9E,OAAO,uBAAuB,MAAM,+CAA+C,CAAC;AAGpF,qBAAa,kBAAmB,SAAQ,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC;IACnE,OAAO,CAAC,oBAAoB,CAAuB;IAEnD,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,uBAAuB,CAA0B;IAEzD,OAAO,CAAC,eAAe,CAAwC;IAE/D,OAAO,CAAC,QAAQ,CAA2B;IAE3C,OAAO,CAAC,QAAQ,CAA2B;IAE3C,OAAO,CAAC,OAAO,CAA+B;gBAG5C,gBAAgB,EAAE,iBAAiB,EACnC,oBAAoB,EAAE,oBAAoB,EAC1C,uBAAuB,EAAE,uBAAuB;IAgBlD,OAAO,CAAC,QAAQ,EAAE,gBAAgB,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;YAehD,WAAW;YAwEX,kBAAkB;YAclB,8BAA8B;YAI9B,uBAAuB;IAerC,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,kBAAkB;IAIjB,OAAO;CAMjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UpdateCurrentDialogInDataSourceUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAE9D,qBAAa,sCACX,YAAW,QAAQ,CAAC,IAAI,EAAE,YAAY,CAAC;IAEvC,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,YAAY,CAAoB;IAExC,OAAO,CAAC,QAAQ,CAAgB;gBAG9B,gBAAgB,EAAE,iBAAiB,EACnC,YAAY,EAAE,iBAAiB,EAC/B,QAAQ,EAAE,aAAa;IAQnB,OAAO,IAAI,OAAO,CAAC,YAAY,CAAC;CAUvC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UpdateDialogUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UpdateDialogUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,iBAAiB,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAGhE,OAAO,uBAAuB,MAAM,+CAA+C,CAAC;AAGpF,qBAAa,mBAAoB,YAAW,QAAQ,CAAC,IAAI,EAAE,YAAY,CAAC;IACtE,OAAO,CAAC,gBAAgB,CAAoB;IAE5C,OAAO,CAAC,uBAAuB,CAA0B;IAEzD,OAAO,CAAC,YAAY,CAAoB;IAExC,OAAO,CAAC,sBAAsB,CAAS;gBAGrC,uBAAuB,EAAE,uBAAuB,EAChD,gBAAgB,EAAE,iBAAiB,EACnC,YAAY,EAAE,iBAAiB,EAC/B,sBAAsB,EAAE,MAAM;IAS1B,OAAO,IAAI,OAAO,CAAC,YAAY,CAAC;CA6CvC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UploadFileUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UploadFileUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,qBAAa,iBAAkB,YAAW,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAC;IAClE,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAa;gBAEnB,cAAc,EAAE,cAAc,EAAE,UAAU,EAAE,UAAU;IAM5D,OAAO,IAAI,OAAO,CAAC,UAAU,CAAC;CAQrC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserTypingMessageUseCase.d.ts","sourceRoot":"","sources":["../../../src/Domain/use_cases/UserTypingMessageUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,wBAAyB,YAAW,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC;IACnE,OAAO,CAAC,kBAAkB,CAAqB;IAE/C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAElC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAe;IAEtC,OAAO,CAAC,aAAa,CAAK;IAE1B,OAAO,CAAC,YAAY,CAA+B;IAEnD,OAAO,CAAC,WAAW,CAAK;gBAGtB,kBAAkB,EAAE,kBAAkB,EACtC,MAAM,EAAE,YAAY,EACpB,QAAQ,EAAE,MAAM;IAQZ,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;CAqB/B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIAnswerAssistUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AIAnswerAssistUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,qBAAa,qBAAsB,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAClE,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAYzB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CA6BjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIAnswerAssistWithProxyUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,qBAAa,8BAA+B,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAC3E,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAYzB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAiBjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIAnswerAssistWithSDKUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAKlF,qBAAa,4BAA6B,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACzE,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAoB;IAEtC,OAAO,CAAC,oBAAoB,CAAS;gBAGnC,UAAU,EAAE,MAAM,EAClB,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,iBAAiB,EAC7B,oBAAoB,EAAE,MAAM;IASxB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAkBjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIRephraseUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AIRephraseUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,mDAAmD,CAAC;AAEzE,qBAAa,iBAAkB,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAC9D,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,IAAI,CAAO;IAEnB,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,IAAI,EACV,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAazB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CA4CjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIRephraseWithProxyUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AIRephraseWithProxyUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,mDAAmD,CAAC;AAEzE,qBAAa,0BAA2B,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACvE,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,IAAI,CAAO;IAEnB,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,IAAI,EACV,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAazB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAiBjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AITranslateUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AITranslateUseCase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,qBAAa,kBAAmB,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAC/D,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAazB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAiCjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AITranslateWithProxyUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AITranslateWithProxyUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,qBAAa,2BAA4B,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACxE,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,cAAc,CAAiB;IAEvC,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;gBAG1B,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,cAAc,EAAE,YAAY,EAAE,EAC9B,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,MAAM,EACpB,WAAW,SAAkB;IAazB,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAmBjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AITranslateWithSDKUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/ai/AITranslateWithSDKUseCase.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAElF,qBAAa,yBAA0B,YAAW,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtE,OAAO,CAAC,aAAa,CA8DnB;IAEF,OAAO,CAAC,UAAU,CAAS;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,UAAU,CAAoB;IAEtC,OAAO,CAAC,oBAAoB,CAAS;gBAGnC,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,iBAAiB,EAC7B,oBAAoB,EAAE,MAAM;IAS9B,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAInC,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;CAWjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/base/BaseUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAE7E,8BAAsB,WAAW,CAAC,IAAI,EAAE,OAAO,CAC7C,SAAQ,qBAAqB,CAAC,IAAI,CAClC,YAAW,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;IAElC,QAAQ,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;CAqEjE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IUseCase.d.ts","sourceRoot":"","sources":["../../../../src/Domain/use_cases/base/IUseCase.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,CAAC,IAAI,IAAI,CAAC,GAAG,EAAE,IAAI,KAAK,IAAI,CAAC;AACzD,MAAM,MAAM,2BAA2B,CAAC,IAAI,IAAI,CAAC,GAAG,EAAE,IAAI,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAC7E,MAAM,WAAW,QAAQ,CAAC,IAAI,EAAE,OAAO;IACrC,OAAO,CAAC,QAAQ,EAAE,gBAAgB,CAAC,IAAI,CAAC,GAAG,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACzE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ISubscribable.d.ts","sourceRoot":"","sources":["../../../../../src/Domain/use_cases/base/Subscribable/ISubscribable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,MAAM,WAAW,aAAa,CAAC,IAAI;IACjC,SAAS,CAAC,IAAI,EAAE,gBAAgB,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7D,OAAO,IAAI,IAAI,CAAC;CACjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscriptionPerformer.d.ts","sourceRoot":"","sources":["../../../../../src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,MAAM,WAAW,QAAQ;IACvB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ,CAAC,IAAI;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,gBAAgB,CAAC,IAAI,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,eAAe,CAAC,IAAI;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;CAC/B;AAQD,KAAK,cAAc,CAAC,CAAC,IAAI,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;AACzD,qBAAa,qBAAqB,CAAC,IAAI,CAAE,YAAW,aAAa,CAAC,IAAI,CAAC;IACrE,SAAS,CAAC,QAAQ,CAAC,wBAAwB,EAAE,UAAU,CACrD,cAAc,CAAC,IAAI,CAAC,CACrB,CAAM;IAEP,gBAAuB,yBAAyB,aAAa;IAE7D,SAAS,CAAC,QAAQ,CAAC,WAAW,EAAE,cAAc,CAAC,IAAI,CAAC,CAAM;IAE1D,SAAS,CAAC,UAAU,EAAE,MAAM,CACsB;IAElD,SAAS,CAAC,UAAU,EAAE,MAAM,CAAiC;IAGtD,OAAO,IAAI,IAAI;;IAoBtB,SAAS,CACP,QAAQ,EAAE,gBAAgB,CAAC,IAAI,CAAC,EAChC,SAAS,GAAE,MAAwB,EACnC,SAAS,GAAE,MAAwB,GAClC,IAAI;IAkBA,iBAAiB,CACtB,GAAG,CAAC,EAAE,IAAI,EACV,SAAS,GAAE,MAAwB,EACnC,KAAK,GAAE,MAAwD,GAC9D,IAAI;CA2DR"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIAssist.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAE3E,OAAO,iBAAiB,CAAC;AAEzB,UAAU,aAAa;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,eAAe,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACpD,OAAO,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC,cAAc,CAAC,EAAE,aAAa,EAAE,CAAC;IACjC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC/B,OAAe,EACf,cAAc,EACd,SAAS,EACT,SAAS,EACT,OAAO,EACP,eAAe,EACf,cAAc,EACd,aAAa,EACb,aAAqB,GACtB,EAAE,aAAa,2CAyCf"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIAssistComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.tsx"],"names":[],"mappings":"AACA,OAAO,0BAA0B,CAAC;AAElC,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAElF,UAAU,sBAAsB;IAC9B,cAAc,EAAE,sBAAsB,CAAC;IACvC,YAAY,EAAE,OAAO,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,2CAiBtE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AITranslate.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAElE,OAAO,oBAAoB,CAAC;AAE5B,UAAU,yBAAyB;IACjC,iBAAiB,EAAE,eAAe,CAAC;IACnC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACpD,OAAO,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC,cAAc,CAAC,EAAE,aAAa,EAAE,CAAC;IACjC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAClC,iBAAiB,EACjB,mBAAmB,EACnB,OAAe,EACf,eAAe,EACf,SAAS,EACT,SAAS,EACT,SAAS,EACT,OAAO,EACP,YAAY,EACZ,kBAAkB,EAClB,cAAc,EACd,aAAa,EACb,aAAqB,GACtB,EAAE,yBAAyB,2CAuF3B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AITranslateComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.tsx"],"names":[],"mappings":"AACA,OAAO,6BAA6B,CAAC;AAGrC,OAAO,EACL,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,0CAA0C,CAAC;AAElD,UAAU,yBAAyB;IACjC,WAAW,EAAE,wBAAwB,CAAC;IACtC,mBAAmB,EAAE,sBAAsB,CAAC;IAC5C,mBAAmB,EAAE,OAAO,CAAC;IAC7B,qBAAqB,EAAE,OAAO,CAAC;IAC/B,uBAAuB,EAAE,MAAM,EAAE,CAAC;CACnC;AAED,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,KAAK,EAAE,yBAAyB,2CA4D5E"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIMessageWidget.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mCAAmC,EACnC,sBAAsB,EACtB,qCAAqC,EACrC,uBAAuB,EACxB,MAAM,uCAAuC,CAAC;AAE/C,MAAM,WAAW,kBAAkB;IAKjC,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,QAAQ;IACvB,YAAY,EAAE,sBAAsB,CAAC;CACtC;AACD,MAAM,WAAW,YAAa,SAAQ,QAAQ;IAC5C,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC;AAED,MAAM,WAAW,YAAa,SAAQ,QAAQ;IAC5C,aAAa,EAAE,IAAI,GAAG,SAAS,CAAC;CACjC;AAED,MAAM,WAAW,eAAgB,SAAQ,YAAY;IACnD,YAAY,EAAE,qCAAqC,CAAC;CACrD;AAED,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACvD,aAAa,EAAE,uBAAuB,CAAC;CACxC;AAED,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACtD,YAAY,EAAE,mCAAmC,CAAC;CACnD"}
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import './AIRephraseWidget.scss';
3
2
  import { Tone } from 'qb-ai-rephrase/src/Tone';
4
3
  import { FunctionTypeBooleanToVoid, FunctionTypeStringToVoid } from '../../../../../CommonTypes/BaseViewModel';
@@ -19,5 +18,5 @@ type AIRephraseWidgetProps = {
19
18
  setPrevValueText: FunctionTypeStringToVoid;
20
19
  disableActions?: boolean;
21
20
  };
22
- declare const AIRephraseWidget: React.FC<AIRephraseWidgetProps>;
21
+ declare const AIRephraseWidget: ({ messageText, waitAIWidget, setWaitAIWidget, setMessageErrorToast, AIRephrase, messagesToView, currentUserId, maxTokensForAIRephrase, rephraseTones, theme, setPrevValueText, disableActions, }: AIRephraseWidgetProps) => import("react/jsx-runtime").JSX.Element;
23
22
  export default AIRephraseWidget;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIRephraseWidget.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.tsx"],"names":[],"mappings":"AACA,OAAO,yBAAyB,CAAC;AACjC,OAAO,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AAG/C,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACzB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAc3E,OAAO,UAAU,MAAM,+BAA+B,CAAC;AAGvD,KAAK,qBAAqB,GAAG;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,OAAO,CAAC;IACtB,eAAe,EAAE,yBAAyB,CAAC;IAC3C,oBAAoB,EAAE,wBAAwB,CAAC;IAC/C,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,aAAa,EAAE,MAAM,CAAC;IACtB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,aAAa,EAAE,IAAI,EAAE,CAAC;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,gBAAgB,EAAE,wBAAwB,CAAC;IAC3C,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,QAAA,MAAM,gBAAgB,qMAcnB,qBAAqB,4CA+HvB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ /// <reference types="@types/react" />
2
2
  import './AIWidgetActions.scss';
3
3
  export type MenuItem = {
4
4
  title: string;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIWidgetActions.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.tsx"],"names":[],"mappings":";AACA,OAAO,wBAAwB,CAAC;AAGhC,MAAM,MAAM,QAAQ,GAAG;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB,CAAC;AAEF,KAAK,gBAAgB,GAAG;IACtB,cAAc,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IAC7B,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAkCF,iBAAS,eAAe,CAAC,EACvB,KAAK,EACL,cAAc,EACd,KAAY,EACZ,QAAe,GAChB,EAAE,gBAAgB,2CAiElB;AAED,eAAe,eAAe,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorMessageIcon.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,gBAAgB,GAAG;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAE,gBAAgB,EAAE,CAAC;CACzC,CAAC;AAsCF,iBAAS,gBAAgB,CAAC,EACxB,gBAAgB,EAChB,kBAAkB,GACnB,EAAE,qBAAqB,2CA4CvB;AAED,eAAe,gBAAgB,CAAC"}
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ /// <reference types="@types/react" />
2
2
  type MenuItem = {
3
3
  title: string;
4
4
  icon?: JSX.Element;
@@ -19,5 +19,5 @@ type SliderMenuProps = {
19
19
  activeItemBorderColor?: string;
20
20
  activeItemBoxShadow?: string;
21
21
  };
22
- declare const SliderMenu: React.FC<SliderMenuProps>;
22
+ declare const SliderMenu: ({ items, width, arrowColor, activeArrowColor, borderColor, backgroundColor, itemBackgroundColor, itemWidth, itemHeight, itemBorder, fontSize, activeItemBorderColor, activeItemBoxShadow, }: SliderMenuProps) => import("react/jsx-runtime").JSX.Element;
23
23
  export default SliderMenu;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SliderMenu.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/SliderMenu.tsx"],"names":[],"mappings":";AAEA,KAAK,QAAQ,GAAG;IACd,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAGF,QAAA,MAAM,UAAU,gMAcd,eAAe,4CAkIhB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tone.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/Tone.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,IAAI;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,SAAU,IAAI,KAAG,MAEzC,CAAC;AAEF,eAAO,MAAM,YAAY,YACd,MAAM,gBACD,MAAM,UACZ,MAAM,KACb,IAAI,GAAG,SAMT,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAIAssistAnswerWidget.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAMxE,MAAM,CAAC,OAAO,UAAU,8BAA8B,CAAC,EACrD,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CA2DtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAIAssistAnswerWidgetWithProxy.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAMxE,MAAM,CAAC,OAAO,UAAU,uCAAuC,CAAC,EAC9D,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CA2DtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAIAssistAnswerWidgetWithSDK.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAIpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iDAAiD,CAAC;AAGnF,MAAM,CAAC,OAAO,UAAU,qCAAqC,CAC3D,UAAU,EAAE,gBAAgB,EAC5B,oBAAoB,EAAE,MAAM,GAC3B,eAAe,CA8DjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAIRephraseMessageWidget.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAOxE,MAAM,CAAC,OAAO,UAAU,iCAAiC,CAAC,EACxD,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CAkFtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAIRephraseMessageWidgetWithProxy.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAOxE,MAAM,CAAC,OAAO,UAAU,0CAA0C,CAAC,EACjE,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CAgFtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAITranslateWidget.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAIxE,MAAM,CAAC,OAAO,UAAU,2BAA2B,CAAC,EAClD,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CAiEtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAITranslateWidgetWithProxy.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAIxE,MAAM,CAAC,OAAO,UAAU,oCAAoC,CAAC,EAC3D,UAAU,EACV,GAAG,EACH,IAAI,EACJ,oBAAoB,GACrB,EAAE,kBAAkB,GAAG,eAAe,CAiEtC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UseDefaultAITranslateWidgetWithSDK.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iDAAiD,CAAC;AAGnF,MAAM,CAAC,OAAO,UAAU,kCAAkC,CACxD,UAAU,EAAE,gBAAgB,EAC5B,oBAAoB,EAAE,MAAM,GAC3B,eAAe,CA0DjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDefaultVoiceInputWidget.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAIvD,MAAM,CAAC,OAAO,UAAU,0BAA0B,IAAI,kBAAkB,CAkFvE"}
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ /// <reference types="@types/react" />
2
2
  import './ContextMenu.scss';
3
3
  type MenuItem = {
4
4
  title: string;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextMenu.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/ContextMenu/ContextMenu.tsx"],"names":[],"mappings":";AACA,OAAO,oBAAoB,CAAC;AAG5B,KAAK,QAAQ,GAAG;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB,CAAC;AAEF,KAAK,gBAAgB,GAAG;IACtB,cAAc,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IAC7B,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;CACpB,CAAC;AAoBF,iBAAS,WAAW,CAAC,EAAE,KAAK,EAAE,cAAc,EAAE,EAAE,gBAAgB,2CA0D/D;AAED,eAAe,WAAW,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import './Dialog.scss';
3
4
  import { DialogViewModel } from './DialogViewModel';
@@ -14,5 +15,5 @@ type DialogProps = {
14
15
  rootStyles?: React.CSSProperties;
15
16
  messagesContainerStyles?: React.CSSProperties;
16
17
  };
17
- declare const Dialog: React.FC<DialogProps>;
18
+ declare const Dialog: ({ messagesViewModel, maxWidthToResize, warningErrorText, renderHeader, renderMessageList, renderMessageInput, theme, headerContent, rootStyles, messagesContainerStyles, }: DialogProps) => import("react/jsx-runtime").JSX.Element;
18
19
  export default Dialog;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../../../../src/Presentation/Views/Dialog/Dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,UAAU,MAAM,yBAAyB,CAAC;AAGjD,KAAK,WAAW,GAAG;IACjB,iBAAiB,EAAE,eAAe,CAAC;IACnC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,iBAAiB,EAAE,KAAK,CAAC,SAAS,CAAC;IACnC,kBAAkB,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IACjC,uBAAuB,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/C,CAAC;AAGF,QAAA,MAAM,MAAM,+KAWO,WAAW,4CAkE7B,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1,8 +1,7 @@
1
- import React from 'react';
2
1
  import './DialogBackIcon.scss';
3
2
  import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
4
3
  type RenderLeftActionsProps = {
5
4
  onClickBack: FunctionTypeVoidToVoid;
6
5
  };
7
- declare const DialogBackIcon: React.FC<RenderLeftActionsProps>;
6
+ declare const DialogBackIcon: ({ onClickBack }: RenderLeftActionsProps) => import("react/jsx-runtime").JSX.Element;
8
7
  export default DialogBackIcon;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogBackIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.tsx"],"names":[],"mappings":"AACA,OAAO,uBAAuB,CAAC;AAC/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAIlF,KAAK,sBAAsB,GAAG;IAC5B,WAAW,EAAE,sBAAsB,CAAC;CACrC,CAAC;AAEF,QAAA,MAAM,cAAc,oBAAqB,sBAAsB,4CAkB9D,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import './DialogHeader.scss';
2
3
  import React from 'react';
3
4
  import UiKitTheme from '../../../themes/UiKitTheme';
@@ -9,5 +10,5 @@ type DialogHeaderProps = {
9
10
  countMembers?: number;
10
11
  theme?: UiKitTheme;
11
12
  };
12
- declare const DialogHeader: React.FC<DialogHeaderProps>;
13
+ declare const DialogHeader: ({ dialogName, renderAvatar, renderLeftActions, renderRightActions, countMembers, theme, }: DialogHeaderProps) => import("react/jsx-runtime").JSX.Element;
13
14
  export default DialogHeader;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogHeader.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/DialogHeader/DialogHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,CAAC;AAC7B,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,UAAU,MAAM,4BAA4B,CAAC;AAEpD,KAAK,iBAAiB,GAAG;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,iBAAiB,EAAE,KAAK,CAAC,SAAS,CAAC;IACnC,kBAAkB,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AAEF,QAAA,MAAM,YAAY,8FAaf,iBAAiB,4CAsBnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import './DialogInfoIcon.scss';
3
2
  import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
4
3
  import UiKitTheme from '../../../../themes/UiKitTheme';
@@ -6,5 +5,5 @@ type RenderRightActionsProps = {
6
5
  onClickInfo: FunctionTypeVoidToVoid;
7
6
  theme?: UiKitTheme;
8
7
  };
9
- declare const DialogInfoIcon: React.FC<RenderRightActionsProps>;
8
+ declare const DialogInfoIcon: ({ onClickInfo, theme, }: RenderRightActionsProps) => import("react/jsx-runtime").JSX.Element;
10
9
  export default DialogInfoIcon;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogInfoIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.tsx"],"names":[],"mappings":"AACA,OAAO,uBAAuB,CAAC;AAC/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAClF,OAAO,UAAU,MAAM,+BAA+B,CAAC;AAIvD,KAAK,uBAAuB,GAAG;IAC7B,WAAW,EAAE,sBAAsB,CAAC;IACpC,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AACF,QAAA,MAAM,cAAc,4BAIjB,uBAAuB,4CAqCzB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogViewModel.d.ts","sourceRoot":"","sources":["../../../../src/Presentation/Views/Dialog/DialogViewModel.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,EAAE,EACpB,2BAA2B,EAC3B,0CAA0C,EAC1C,4BAA4B,EAC5B,wCAAwC,EACxC,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,uCAAuC,CAAC;AAEnE,MAAM,WAAW,eAAgB,SAAQ,aAAa,CAAC,YAAY,CAAC;IAClE,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,WAAW,EAAE,4BAA4B,CAAC;IAC1C,eAAe,EAAE,wBAAwB,CAAC;IAC1C,qBAAqB,EAAE,2BAA2B,CAAC;IACnD,qBAAqB,EAAE,0CAA0C,CAAC;IAClE,iBAAiB,EAAE,wCAAwC,CAAC;IAC5D,OAAO,EAAE,sBAAsB,CAAC;IAChC,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import './DropDownMenu.scss';
2
3
  import React from 'react';
3
4
  import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
@@ -21,5 +22,5 @@ export declare const contextMessageMenuAI: ContextMessageMenuAI[];
21
22
  type DropDownMenuProps = {
22
23
  items: ContextMessageMenu[];
23
24
  };
24
- export declare const DropDownMenu: React.FC<DropDownMenuProps>;
25
+ export declare const DropDownMenu: ({ items, }: DropDownMenuProps) => import("react/jsx-runtime").JSX.Element;
25
26
  export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DropDownMenu.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,CAAC;AAC7B,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,sBAAsB,EAAE,MAAM,uCAAuC,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAGxE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACvC,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACvC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,kBAAkB,EAsBlD,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,oBAAoB,EAetD,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,KAAK,EAAE,kBAAkB,EAAE,CAAC;CAE7B,CAAC;AAGF,eAAO,MAAM,YAAY,eAGzB,iBAAiB,4CAgChB,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import './ItemDropDownMenu.scss';
2
3
  import React from 'react';
3
4
  import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
@@ -7,5 +8,5 @@ type ItemDropDownMenuProps = {
7
8
  touchAction?: FunctionTypeVoidToVoid;
8
9
  clickAction?: FunctionTypeVoidToVoid;
9
10
  };
10
- export declare const ItemDropDownMenu: React.FC<ItemDropDownMenuProps>;
11
+ export declare const ItemDropDownMenu: ({ item, icon, touchAction, clickAction, }: ItemDropDownMenuProps) => import("react/jsx-runtime").JSX.Element;
11
12
  export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ItemDropDownMenu.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAC;AACjC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAElF,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,WAAW,CAAC,EAAE,sBAAsB,CAAC;IACrC,WAAW,CAAC,EAAE,sBAAsB,CAAC;CACtC,CAAC;AAGF,eAAO,MAAM,gBAAgB,8CAK1B,qBAAqB,4CAyBvB,CAAC"}
@@ -1,7 +1,6 @@
1
- import React from 'react';
2
1
  import './ErrorToast.scss';
3
2
  type ErrorToastProps = {
4
3
  messageText: string;
5
4
  };
6
- export declare const ErrorToast: React.FC<ErrorToastProps>;
5
+ export declare const ErrorToast: ({ messageText, }: ErrorToastProps) => import("react/jsx-runtime").JSX.Element;
7
6
  export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorToast.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/ErrorToast/ErrorToast.tsx"],"names":[],"mappings":"AACA,OAAO,mBAAmB,CAAC;AAE3B,KAAK,eAAe,GAAG;IACrB,WAAW,EAAE,MAAM,CAAC;CAErB,CAAC;AAGF,eAAO,MAAM,UAAU,qBAGvB,eAAe,4CAUd,CAAC"}
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import './DialogListItem.scss';
3
2
  import { FunctionTypeStringToVoid } from '../../../../../../CommonTypes/BaseViewModel';
4
3
  import { DialogType } from '../../../../../../Domain/entity/DialogTypes';
@@ -10,5 +9,5 @@ type DialogListItemProps = {
10
9
  checked: boolean;
11
10
  onSelect: FunctionTypeStringToVoid;
12
11
  };
13
- declare const DialogListItem: React.FC<DialogListItemProps>;
12
+ declare const DialogListItem: ({ name, avatar, typeDialog, id, checked, onSelect, }: DialogListItemProps) => import("react/jsx-runtime").JSX.Element;
14
13
  export default DialogListItem;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogListItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx"],"names":[],"mappings":"AACA,OAAO,uBAAuB,CAAC;AAC/B,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAC;AACvF,OAAO,EAAE,UAAU,EAAE,MAAM,6CAA6C,CAAC;AAOzE,KAAK,mBAAmB,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,UAAU,CAAC;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,wBAAwB,CAAC;CACpC,CAAC;AAiDF,QAAA,MAAM,cAAc,yDAOjB,mBAAmB,4CAoBrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import './DialogsWithSearch.scss';
3
2
  import { DialogEntity } from '../../../../../Domain/entity/DialogEntity';
4
3
  import { FunctionTypeStringToVoid } from '../../../../../CommonTypes/BaseViewModel';
@@ -8,5 +7,5 @@ type DialogsWithSearchProps = {
8
7
  selectedDialogs: string[];
9
8
  onSelect: FunctionTypeStringToVoid;
10
9
  };
11
- declare const DialogsWithSearch: React.FC<DialogsWithSearchProps>;
10
+ declare const DialogsWithSearch: ({ dialogs, currentDialog, selectedDialogs, onSelect, }: DialogsWithSearchProps) => import("react/jsx-runtime").JSX.Element;
12
11
  export default DialogsWithSearch;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DialogsWithSearch.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.tsx"],"names":[],"mappings":"AACA,OAAO,0BAA0B,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,2CAA2C,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AAQpF,KAAK,sBAAsB,GAAG;IAC5B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,aAAa,EAAE,YAAY,CAAC;IAC5B,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,QAAQ,EAAE,wBAAwB,CAAC;CACpC,CAAC;AAGF,QAAA,MAAM,iBAAiB,2DAKpB,sBAAsB,4CAsExB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
@@ -1,8 +1,7 @@
1
- import React from 'react';
2
1
  import './SearchComponent.scss';
3
2
  import { FunctionTypeStringToVoid } from '../../../../../../CommonTypes/BaseViewModel';
4
3
  type SearchComponentProps = {
5
4
  onChange: FunctionTypeStringToVoid;
6
5
  };
7
- declare const SearchComponent: React.FC<SearchComponentProps>;
6
+ declare const SearchComponent: ({ onChange, }: SearchComponentProps) => import("react/jsx-runtime").JSX.Element;
8
7
  export default SearchComponent;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SearchComponent.d.ts","sourceRoot":"","sources":["../../../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.tsx"],"names":[],"mappings":"AACA,OAAO,wBAAwB,CAAC;AAEhC,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAC;AAGvF,KAAK,oBAAoB,GAAG;IAC1B,QAAQ,EAAE,wBAAwB,CAAC;CACpC,CAAC;AAGF,QAAA,MAAM,eAAe,kBAElB,oBAAoB,4CAiDtB,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -1,5 +1,4 @@
1
1
  import './ForwardMessageFlow.scss';
2
- import React from 'react';
3
2
  import { DialogEntity } from '../../../../Domain/entity/DialogEntity';
4
3
  import { MessageEntity } from '../../../../Domain/entity/MessageEntity';
5
4
  type ForwardMessageFlowProps = {
@@ -10,5 +9,5 @@ type ForwardMessageFlowProps = {
10
9
  onSendData: (dialogs: DialogEntity[], messages: MessageEntity[], relatedText: string) => void;
11
10
  disableActions: boolean;
12
11
  };
13
- declare const ForwardMessageFlow: React.FC<ForwardMessageFlowProps>;
12
+ declare const ForwardMessageFlow: ({ messages, dialogs, currentDialog, currentUserName, onSendData, disableActions, }: ForwardMessageFlowProps) => import("react/jsx-runtime").JSX.Element;
14
13
  export default ForwardMessageFlow;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ForwardMessageFlow.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.tsx"],"names":[],"mappings":"AAAA,OAAO,2BAA2B,CAAC;AAEnC,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAMxE,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,aAAa,EAAE,YAAY,CAAC;IAC5B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,CACV,OAAO,EAAE,YAAY,EAAE,EACvB,QAAQ,EAAE,aAAa,EAAE,EACzB,WAAW,EAAE,MAAM,KAChB,IAAI,CAAC;IACV,cAAc,EAAE,OAAO,CAAC;CACzB,CAAC;AAGF,QAAA,MAAM,kBAAkB,uFAOrB,uBAAuB,4CAyFzB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
@@ -1,9 +1,8 @@
1
- import React from 'react';
2
1
  import './ForwardMessagePreview.scss';
3
2
  import { MessageEntity } from '../../../../../Domain/entity/MessageEntity';
4
3
  type ForwardMessagePreviewProps = {
5
4
  messages: MessageEntity[];
6
5
  userNameSentMessage: string;
7
6
  };
8
- declare const ForwardMessagePreview: React.FC<ForwardMessagePreviewProps>;
7
+ declare const ForwardMessagePreview: ({ messages, userNameSentMessage, }: ForwardMessagePreviewProps) => import("react/jsx-runtime").JSX.Element;
9
8
  export default ForwardMessagePreview;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ForwardMessagePreview.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.tsx"],"names":[],"mappings":"AACA,OAAO,8BAA8B,CAAC;AAEtC,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAM3E,KAAK,0BAA0B,GAAG;IAChC,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;CAC7B,CAAC;AAOF,QAAA,MAAM,qBAAqB,uCAGxB,0BAA0B,4CAiE5B,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { FunctionTypeStringToVoid, FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel';
3
2
  import './InputForForwarding.scss';
4
3
  type InputForForwardingProps = {
@@ -7,5 +6,5 @@ type InputForForwardingProps = {
7
6
  onSend: FunctionTypeVoidToVoid;
8
7
  disabled?: boolean;
9
8
  };
10
- declare const InputForForwarding: React.FC<InputForForwardingProps>;
9
+ declare const InputForForwarding: ({ inputText, onChange, onSend, disabled, }: InputForForwardingProps) => import("react/jsx-runtime").JSX.Element;
11
10
  export default InputForForwarding;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InputForForwarding.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,0CAA0C,CAAC;AAElD,OAAO,2BAA2B,CAAC;AAEnC,KAAK,uBAAuB,GAAG;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,wBAAwB,CAAC;IACnC,MAAM,EAAE,sBAAsB,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAGF,QAAA,MAAM,kBAAkB,+CAKrB,uBAAuB,4CAuBzB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import UiKitTheme from '../../../themes/UiKitTheme';
3
4
  import { DialogViewModel } from '../DialogViewModel';
@@ -17,5 +18,5 @@ type MessageInputProps = {
17
18
  maxWidthToResizing: string;
18
19
  theme?: UiKitTheme;
19
20
  };
20
- declare const InputMessage: React.FC<MessageInputProps>;
21
+ declare const InputMessage: ({ messageText, onChangeText, sendText, renderSendIcon, renderAttachment, isRecording, renderVoiceRecorder, renderVoiceRecordProgress, renderAIWidget, waitAIWidget, messagesViewModel, maxWidthToResizing, theme, }: MessageInputProps) => import("react/jsx-runtime").JSX.Element;
21
22
  export default InputMessage;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InputMessage.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/InputMessage/InputMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AACrD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AAGpD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAC;AAEjF,KAAK,iBAAiB,GAAG;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,wBAAwB,CAAC;IACvC,QAAQ,EAAE,wBAAwB,CAAC;IACnC,cAAc,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,gBAAgB,EAAE,KAAK,CAAC,SAAS,CAAC;IAClC,WAAW,EAAE,OAAO,CAAC;IACrB,mBAAmB,EAAE,KAAK,CAAC,SAAS,CAAC;IACrC,yBAAyB,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3C,cAAc,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,YAAY,EAAE,OAAO,CAAC;IACtB,iBAAiB,EAAE,eAAe,CAAC;IACnC,kBAAkB,EAAE,MAAM,CAAC;IAC3B,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AAEF,QAAA,MAAM,YAAY,wNAcf,iBAAiB,4CAyGnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1,9 +1,8 @@
1
1
  import './HighLightLink.scss';
2
- import React from 'react';
3
2
  export declare const isURL: (str: string) => boolean;
4
3
  export declare const messageHasUrls: (message: string) => boolean;
5
4
  type HighLightLinkProps = {
6
5
  messageText: string;
7
6
  };
8
- export declare const HighLightLink: React.FC<HighLightLinkProps>;
7
+ export declare const HighLightLink: ({ messageText, }: HighLightLinkProps) => import("react/jsx-runtime").JSX.Element;
9
8
  export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HighLightLink.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.tsx"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,CAAC;AAwB9B,eAAO,MAAM,KAAK,QAAS,MAAM,YAQhC,CAAC;AAwBF,eAAO,MAAM,cAAc,YAAa,MAAM,YAc7C,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAGF,eAAO,MAAM,aAAa,qBAEvB,kBAAkB,4CAkCpB,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import './IncomingForwardedMessage.scss';
3
4
  import { AvatarContentIncomingUserProps } from '../IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IncomingForwardedMessage.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,iCAAiC,CAAC;AACzC,OAAkC,EAChC,8BAA8B,EAC/B,MAAM,wEAAwE,CAAC;AAChF,OAAO,UAAU,MAAM,+BAA+B,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAC3E,OAAO,EAAE,+BAA+B,EAAE,MAAM,0CAA0C,CAAC;AAC3F,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAYlE,iBAAS,wBAAwB,CAAC,KAAK,EAAE;IACvC,KAAK,CAAC,EAAE,UAAU,CAAC;IAEnB,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,CACjB,KAAK,EAAE,8BAA8B,KAClC,KAAK,CAAC,YAAY,CAAC;IACxB,OAAO,EAAE,+BAA+B,CAAC;IACzC,SAAS,EAAE,+BAA+B,CAAC;IAC3C,eAAe,EAAE,MAAM,CAAC;IACxB,sBAAsB,EAAE,KAAK,CAAC,SAAS,CAAC;IACxC,aAAa,CAAC,EAAE,eAAe,CAAC;IAChC,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC,aAAa,EAAE,MAAM,IAAI,CAAC;IAE1B,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,YAAY,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,gBAAgB,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,OAAO,CAAC;CACzB,2CAqPA;AAED,eAAe,wBAAwB,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvatarContentIncomingUser.d.ts","sourceRoot":"","sources":["../../../../../../../src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.tsx"],"names":[],"mappings":"AACA,OAAO,kCAAkC,CAAC;AAE1C,MAAM,WAAW,8BAA8B;IAE7C,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,UAAU,yBAAyB,4CAuBhD"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import './IncomingMessage.scss';
3
4
  import UiKitTheme from '../../../../themes/UiKitTheme';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IncomingMessage.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,wBAAwB,CAAC;AAChC,OAAO,UAAU,MAAM,+BAA+B,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAKlE,OAAO,EAAE,UAAU,EAAE,MAAM,yCAAyC,CAAC;AACrE,OAAkC,EAChC,8BAA8B,EAC/B,MAAM,uDAAuD,CAAC;AAC/D,OAAO,EAAE,+BAA+B,EAAE,MAAM,0CAA0C,CAAC;AAQ3F,MAAM,MAAM,cAAc,GAAG,CAAC,KAAK,EAAE;IACnC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB,KAAK,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;AAElC,wBAAgB,eAAe,CAAC,KAAK,EAAE;IACrC,KAAK,EAAE,UAAU,GAAG,SAAS,CAAC;IAC9B,aAAa,EAAE,cAAc,CAAC;IAC9B,OAAO,EAAE,aAAa,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,+BAA+B,CAAC;IACzC,SAAS,EAAE,+BAA+B,CAAC;IAC3C,aAAa,EAAE,MAAM,IAAI,CAAC;IAE1B,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,YAAY,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,aAAa,CAAC,EAAE,eAAe,CAAC;IAChC,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC,gBAAgB,CAAC,EAAE,CACjB,KAAK,EAAE,8BAA8B,KAClC,KAAK,CAAC,YAAY,CAAC;IACxB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,OAAO,CAAC;CAIzB,2CA0QA"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import { FC } from 'react';
2
3
  import './MessageContentComponent.scss';
3
4
  import { MessageEntity } from '../../../../../../Domain/entity/MessageEntity';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MessageContentComponent.d.ts","sourceRoot":"","sources":["../../../../../../../src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAa,MAAM,OAAO,CAAC;AAC7C,OAAO,gCAAgC,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,OAAO,UAAU,MAAM,kCAAkC,CAAC;AAS1D,KAAK,4BAA4B,GAAG;IAClC,aAAa,EAAE,aAAa,CAAC;IAC7B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AAEF,QAAA,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CA6C7D,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import './IncomingRepliedMessage.scss';
3
4
  import UiKitTheme from '../../../../themes/UiKitTheme';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IncomingRepliedMessage.d.ts","sourceRoot":"","sources":["../../../../../../src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,+BAA+B,CAAC;AAEvC,OAAO,UAAU,MAAM,+BAA+B,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAC3E,OAAO,EAAE,+BAA+B,EAAE,MAAM,0CAA0C,CAAC;AAC3F,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAQlE,OAAkC,EAChC,8BAA8B,EAC/B,MAAM,wEAAwE,CAAC;AAIhF,iBAAS,sBAAsB,CAAC,KAAK,EAAE;IACrC,KAAK,EAAE,UAAU,GAAG,SAAS,CAAC;IAE9B,QAAQ,EAAE,aAAa,EAAE,CAAC;IAE1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,CACjB,KAAK,EAAE,8BAA8B,KAClC,KAAK,CAAC,YAAY,CAAC;IACxB,OAAO,EAAE,+BAA+B,CAAC;IACzC,SAAS,EAAE,+BAA+B,CAAC;IAC3C,eAAe,EAAE,MAAM,CAAC;IACxB,sBAAsB,EAAE,KAAK,CAAC,SAAS,CAAC;IACxC,aAAa,CAAC,EAAE,eAAe,CAAC;IAChC,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC,aAAa,EAAE,MAAM,IAAI,CAAC;IAE1B,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,YAAY,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,gBAAgB,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,OAAO,CAAC;CAOzB,2CAsPA;AAED,eAAe,sBAAsB,CAAC"}
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ /// <reference types="@types/react" />
2
2
  import { FunctionTypeBooleanToVoid, FunctionTypeMessageEntityToVoid, FunctionTypeStringToVoid } from '../../../../CommonTypes/BaseViewModel';
3
3
  import { MessageEntity } from '../../../../Domain/entity/MessageEntity';
4
4
  import UiKitTheme from '../../../themes/UiKitTheme';
@@ -20,5 +20,5 @@ type MessageProps = {
20
20
  enableForwarding: boolean;
21
21
  enableReplying: boolean;
22
22
  };
23
- declare const Message: React.FC<MessageProps>;
23
+ declare const Message: ({ message, userId, setWaitAIWidget, setShowErrorToast, setMessageErrorToast, messagesToView, AITranslateWidget, AIAssistWidget, onReply, onForward, defaultGetSenderName, theme, enableForwarding, enableReplying, }: MessageProps) => JSX.Element;
24
24
  export default Message;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../../../../src/Presentation/Views/Dialog/Message/Message.tsx"],"names":[],"mappings":";AACA,OAAO,EACL,yBAAyB,EACzB,+BAA+B,EAC/B,wBAAwB,EACzB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAGxE,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EACL,cAAc,EAEf,MAAM,mCAAmC,CAAC;AAS3C,KAAK,YAAY,GAAG;IAClB,OAAO,EAAE,aAAa,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,yBAAyB,CAAC;IAC3C,iBAAiB,EAAE,yBAAyB,CAAC;IAC7C,oBAAoB,EAAE,wBAAwB,CAAC;IAC/C,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,iBAAiB,EAAE,eAAe,CAAC;IACnC,cAAc,EAAE,eAAe,CAAC;IAChC,OAAO,EAAE,+BAA+B,CAAC;IACzC,SAAS,EAAE,+BAA+B,CAAC;IAC3C,oBAAoB,EAAE,cAAc,CAAC;IACrC,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,OAAO,CAAC;CACzB,CAAC;AAGF,QAAA,MAAM,OAAO,yNAeV,YAAY,gBA+Td,CAAC;AAEF,eAAe,OAAO,CAAC"}