quickblox-react-ui-kit 0.4.5 → 0.5.0-beta.10

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 (1010) 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 +6 -0
  58. package/dist/Data/source/remote/RemoteDataSource.d.ts.map +1 -0
  59. package/dist/Domain/entity/Chat.d.ts.map +1 -0
  60. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts.map +1 -0
  61. package/dist/Domain/entity/CustomDataEntity.d.ts.map +1 -0
  62. package/dist/Domain/entity/DialogEntity.d.ts.map +1 -0
  63. package/dist/Domain/entity/DialogEventInfo.d.ts.map +1 -0
  64. package/dist/Domain/entity/DialogTypes.d.ts.map +1 -0
  65. package/dist/Domain/entity/EventMessageType.d.ts.map +1 -0
  66. package/dist/Domain/entity/FileEntity.d.ts.map +1 -0
  67. package/dist/Domain/entity/FileTypes.d.ts.map +1 -0
  68. package/dist/Domain/entity/GroupDialogEntity.d.ts.map +1 -0
  69. package/dist/Domain/entity/LastMessageEntity.d.ts.map +1 -0
  70. package/dist/Domain/entity/MessageEntity.d.ts.map +1 -0
  71. package/dist/Domain/entity/NotificationTypes.d.ts.map +1 -0
  72. package/dist/Domain/entity/PrivateDialogEntity.d.ts.map +1 -0
  73. package/dist/Domain/entity/PublicDialogEntity.d.ts.map +1 -0
  74. package/dist/Domain/entity/UserEntity.d.ts.map +1 -0
  75. package/dist/Domain/exception/domain/DomainExecption.d.ts.map +1 -0
  76. package/dist/Domain/repository/IDialogsRepository.d.ts.map +1 -0
  77. package/dist/Domain/repository/IFileRepository.d.ts.map +1 -0
  78. package/dist/Domain/repository/IMessagesRepository.d.ts.map +1 -0
  79. package/dist/Domain/repository/IUsersRepository.d.ts.map +1 -0
  80. package/dist/Domain/repository/Pagination.d.ts.map +1 -0
  81. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts.map +1 -0
  82. package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts.map +1 -0
  83. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts.map +1 -0
  84. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts.map +1 -0
  85. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts.map +1 -0
  86. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts.map +1 -0
  87. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts.map +1 -0
  88. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts.map +1 -0
  89. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts.map +1 -0
  90. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts.map +1 -0
  91. package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts.map +1 -0
  92. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts.map +1 -0
  93. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts.map +1 -0
  94. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts.map +1 -0
  95. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts.map +1 -0
  96. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts.map +1 -0
  97. package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts.map +1 -0
  98. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts.map +1 -0
  99. package/dist/Domain/use_cases/UploadFileUseCase.d.ts.map +1 -0
  100. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts.map +1 -0
  101. package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts.map +1 -0
  102. package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts.map +1 -0
  103. package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts.map +1 -0
  104. package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts.map +1 -0
  105. package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts.map +1 -0
  106. package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts.map +1 -0
  107. package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts.map +1 -0
  108. package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts.map +1 -0
  109. package/dist/Domain/use_cases/base/BaseUseCase.d.ts.map +1 -0
  110. package/dist/Domain/use_cases/base/IUseCase.d.ts.map +1 -0
  111. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts.map +1 -0
  112. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts.map +1 -0
  113. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts.map +1 -0
  114. package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts.map +1 -0
  115. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts.map +1 -0
  116. package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts.map +1 -0
  117. package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts.map +1 -0
  118. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +1 -2
  119. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts.map +1 -0
  120. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +1 -1
  121. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts.map +1 -0
  122. package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts.map +1 -0
  123. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +2 -2
  124. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts.map +1 -0
  125. package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts.map +1 -0
  126. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts.map +1 -0
  127. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts.map +1 -0
  128. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts.map +1 -0
  129. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts.map +1 -0
  130. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts.map +1 -0
  131. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts.map +1 -0
  132. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts.map +1 -0
  133. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts.map +1 -0
  134. package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts.map +1 -0
  135. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +1 -1
  136. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts.map +1 -0
  137. package/dist/Presentation/Views/Dialog/Dialog.d.ts +2 -1
  138. package/dist/Presentation/Views/Dialog/Dialog.d.ts.map +1 -0
  139. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +1 -2
  140. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts.map +1 -0
  141. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +2 -1
  142. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts.map +1 -0
  143. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +1 -2
  144. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts.map +1 -0
  145. package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts.map +1 -0
  146. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +2 -1
  147. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts.map +1 -0
  148. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +2 -1
  149. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts.map +1 -0
  150. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +1 -2
  151. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts.map +1 -0
  152. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +2 -3
  153. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts.map +1 -0
  154. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +1 -2
  155. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts.map +1 -0
  156. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +1 -2
  157. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts.map +1 -0
  158. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +1 -2
  159. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts.map +1 -0
  160. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +1 -2
  161. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts.map +1 -0
  162. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +1 -2
  163. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts.map +1 -0
  164. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +2 -1
  165. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts.map +1 -0
  166. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +1 -2
  167. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts.map +1 -0
  168. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +1 -0
  169. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts.map +1 -0
  170. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts.map +1 -0
  171. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +1 -0
  172. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts.map +1 -0
  173. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +1 -0
  174. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts.map +1 -0
  175. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +1 -0
  176. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts.map +1 -0
  177. package/dist/Presentation/Views/Dialog/Message/Message.d.ts +2 -2
  178. package/dist/Presentation/Views/Dialog/Message/Message.d.ts.map +1 -0
  179. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +1 -2
  180. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts.map +1 -0
  181. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +1 -2
  182. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts.map +1 -0
  183. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +1 -2
  184. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts.map +1 -0
  185. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +1 -1
  186. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts.map +1 -0
  187. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +1 -2
  188. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts.map +1 -0
  189. package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts.map +1 -0
  190. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -0
  191. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts.map +1 -0
  192. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +1 -1
  193. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts.map +1 -0
  194. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +1 -0
  195. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts.map +1 -0
  196. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts.map +1 -0
  197. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +1 -0
  198. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts.map +1 -0
  199. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +1 -2
  200. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts.map +1 -0
  201. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +1 -2
  202. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts.map +1 -0
  203. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +2 -1
  204. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts.map +1 -0
  205. package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts.map +1 -0
  206. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +2 -1
  207. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts.map +1 -0
  208. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +1 -2
  209. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts.map +1 -0
  210. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +1 -2
  211. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts.map +1 -0
  212. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +1 -2
  213. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts.map +1 -0
  214. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +1 -0
  215. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts.map +1 -0
  216. package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts.map +1 -0
  217. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts.map +1 -0
  218. package/dist/Presentation/Views/DialogList/DialogList.d.ts +6 -5
  219. package/dist/Presentation/Views/DialogList/DialogList.d.ts.map +1 -0
  220. package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts.map +1 -0
  221. package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts.map +1 -0
  222. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +1 -2
  223. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts.map +1 -0
  224. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +1 -2
  225. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts.map +1 -0
  226. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +1 -2
  227. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts.map +1 -0
  228. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +1 -2
  229. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts.map +1 -0
  230. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +1 -2
  231. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts.map +1 -0
  232. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +1 -2
  233. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts.map +1 -0
  234. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +1 -2
  235. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts.map +1 -0
  236. package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts.map +1 -0
  237. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +1 -2
  238. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts.map +1 -0
  239. package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts.map +1 -0
  240. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +1 -2
  241. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts.map +1 -0
  242. package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts.map +1 -0
  243. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +2 -2
  244. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts.map +1 -0
  245. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts.map +1 -0
  246. package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts.map +1 -0
  247. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +1 -2
  248. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts.map +1 -0
  249. package/dist/Presentation/components/Navbar.d.ts.map +1 -0
  250. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +2 -1
  251. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts.map +1 -0
  252. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +2 -1
  253. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts.map +1 -0
  254. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +2 -1
  255. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts.map +1 -0
  256. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +2 -1
  257. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts.map +1 -0
  258. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +1 -2
  259. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts.map +1 -0
  260. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts.map +1 -0
  261. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +2 -1
  262. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts.map +1 -0
  263. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts.map +1 -0
  264. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts.map +1 -0
  265. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts.map +1 -0
  266. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts.map +1 -0
  267. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts.map +1 -0
  268. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts.map +1 -0
  269. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts.map +1 -0
  270. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts.map +1 -0
  271. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts.map +1 -0
  272. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts.map +1 -0
  273. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts.map +1 -0
  274. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts.map +1 -0
  275. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts.map +1 -0
  276. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts.map +1 -0
  277. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts.map +1 -0
  278. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts.map +1 -0
  279. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts.map +1 -0
  280. package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts.map +1 -0
  281. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts.map +1 -0
  282. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts.map +1 -0
  283. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts.map +1 -0
  284. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts.map +1 -0
  285. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts.map +1 -0
  286. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts.map +1 -0
  287. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts.map +1 -0
  288. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts.map +1 -0
  289. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts.map +1 -0
  290. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts.map +1 -0
  291. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts.map +1 -0
  292. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts.map +1 -0
  293. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts.map +1 -0
  294. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts.map +1 -0
  295. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts.map +1 -0
  296. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts.map +1 -0
  297. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts.map +1 -0
  298. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts.map +1 -0
  299. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts.map +1 -0
  300. package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts.map +1 -0
  301. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts.map +1 -0
  302. package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts.map +1 -0
  303. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts.map +1 -0
  304. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts.map +1 -0
  305. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts.map +1 -0
  306. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts.map +1 -0
  307. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts.map +1 -0
  308. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts.map +1 -0
  309. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts.map +1 -0
  310. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts.map +1 -0
  311. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts.map +1 -0
  312. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts.map +1 -0
  313. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts.map +1 -0
  314. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts.map +1 -0
  315. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts.map +1 -0
  316. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts.map +1 -0
  317. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts.map +1 -0
  318. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts.map +1 -0
  319. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts.map +1 -0
  320. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts.map +1 -0
  321. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts.map +1 -0
  322. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts.map +1 -0
  323. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts.map +1 -0
  324. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts.map +1 -0
  325. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts.map +1 -0
  326. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts.map +1 -0
  327. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts.map +1 -0
  328. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts.map +1 -0
  329. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts.map +1 -0
  330. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts.map +1 -0
  331. package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts.map +1 -0
  332. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts.map +1 -0
  333. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts.map +1 -0
  334. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts.map +1 -0
  335. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts.map +1 -0
  336. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts.map +1 -0
  337. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts.map +1 -0
  338. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts.map +1 -0
  339. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts.map +1 -0
  340. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts.map +1 -0
  341. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts.map +1 -0
  342. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts.map +1 -0
  343. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts.map +1 -0
  344. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts.map +1 -0
  345. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts.map +1 -0
  346. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts.map +1 -0
  347. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts.map +1 -0
  348. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts.map +1 -0
  349. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts.map +1 -0
  350. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts.map +1 -0
  351. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts.map +1 -0
  352. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts.map +1 -0
  353. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts.map +1 -0
  354. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts.map +1 -0
  355. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts.map +1 -0
  356. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts.map +1 -0
  357. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts.map +1 -0
  358. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts.map +1 -0
  359. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts.map +1 -0
  360. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts.map +1 -0
  361. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts.map +1 -0
  362. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts.map +1 -0
  363. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts.map +1 -0
  364. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts.map +1 -0
  365. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts.map +1 -0
  366. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts.map +1 -0
  367. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts.map +1 -0
  368. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts.map +1 -0
  369. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts.map +1 -0
  370. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts.map +1 -0
  371. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts.map +1 -0
  372. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts.map +1 -0
  373. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts.map +1 -0
  374. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts.map +1 -0
  375. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts.map +1 -0
  376. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts.map +1 -0
  377. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts.map +1 -0
  378. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts.map +1 -0
  379. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts.map +1 -0
  380. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts.map +1 -0
  381. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts.map +1 -0
  382. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts.map +1 -0
  383. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +1 -2
  384. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts.map +1 -0
  385. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +2 -1
  386. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts.map +1 -0
  387. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +2 -1
  388. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts.map +1 -0
  389. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +2 -1
  390. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts.map +1 -0
  391. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +1 -0
  392. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts.map +1 -0
  393. package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts.map +1 -0
  394. package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts.map +1 -0
  395. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts.map +1 -0
  396. package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts.map +1 -0
  397. package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts.map +1 -0
  398. package/dist/Presentation/components/containers/SectionList/index.d.ts.map +1 -0
  399. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +1 -0
  400. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts.map +1 -0
  401. package/dist/Presentation/icons/actions/index.d.ts +27 -26
  402. package/dist/Presentation/icons/actions/index.d.ts.map +1 -0
  403. package/dist/Presentation/icons/contents/index.d.ts +14 -13
  404. package/dist/Presentation/icons/contents/index.d.ts.map +1 -0
  405. package/dist/Presentation/icons/index.d.ts +1 -1
  406. package/dist/Presentation/icons/index.d.ts.map +1 -0
  407. package/dist/Presentation/icons/media/index.d.ts +13 -12
  408. package/dist/Presentation/icons/media/index.d.ts.map +1 -0
  409. package/dist/Presentation/icons/moderation/index.d.ts +6 -5
  410. package/dist/Presentation/icons/moderation/index.d.ts.map +1 -0
  411. package/dist/Presentation/icons/navigation/index.d.ts +13 -12
  412. package/dist/Presentation/icons/navigation/index.d.ts.map +1 -0
  413. package/dist/Presentation/icons/status/index.d.ts +8 -7
  414. package/dist/Presentation/icons/status/index.d.ts.map +1 -0
  415. package/dist/Presentation/icons/toggle/index.d.ts +24 -23
  416. package/dist/Presentation/icons/toggle/index.d.ts.map +1 -0
  417. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +1 -0
  418. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts.map +1 -0
  419. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -2
  420. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts.map +1 -0
  421. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +1 -0
  422. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts.map +1 -0
  423. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +1 -0
  424. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts.map +1 -0
  425. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +1 -2
  426. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts.map +1 -0
  427. package/dist/Presentation/providers/ProviderProps.d.ts +1 -0
  428. package/dist/Presentation/providers/ProviderProps.d.ts.map +1 -0
  429. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +1 -0
  430. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts.map +1 -0
  431. package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts.map +1 -0
  432. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts.map +1 -0
  433. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts.map +1 -0
  434. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts.map +1 -0
  435. package/dist/Presentation/themes/DarkTheme.d.ts.map +1 -0
  436. package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts.map +1 -0
  437. package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts.map +1 -0
  438. package/dist/Presentation/themes/LightTheme.d.ts.map +1 -0
  439. package/dist/Presentation/themes/ThemeScheme.d.ts.map +1 -0
  440. package/dist/Presentation/themes/UiKitTheme.d.ts.map +1 -0
  441. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +1 -0
  442. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts.map +1 -0
  443. package/dist/Presentation/ui-components/Badge/Badge.d.ts.map +1 -0
  444. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts.map +1 -0
  445. package/dist/Presentation/ui-components/Button/Button.d.ts +1 -0
  446. package/dist/Presentation/ui-components/Button/Button.d.ts.map +1 -0
  447. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +4 -4
  448. package/dist/Presentation/ui-components/Button/Button.stories.d.ts.map +1 -0
  449. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts.map +1 -0
  450. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts.map +1 -0
  451. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts.map +1 -0
  452. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +4 -3
  453. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts.map +1 -0
  454. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +4 -3
  455. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts.map +1 -0
  456. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +1 -0
  457. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts.map +1 -0
  458. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +1 -0
  459. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts.map +1 -0
  460. package/dist/Presentation/ui-components/Header/Header.d.ts +2 -1
  461. package/dist/Presentation/ui-components/Header/Header.d.ts.map +1 -0
  462. package/dist/Presentation/ui-components/Loader/Loader.d.ts.map +1 -0
  463. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +1 -1
  464. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts.map +1 -0
  465. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts.map +1 -0
  466. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts.map +1 -0
  467. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts.map +1 -0
  468. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts.map +1 -0
  469. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts.map +1 -0
  470. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts.map +1 -0
  471. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts.map +1 -0
  472. package/dist/Presentation/ui-components/Message/Message.d.ts +1 -0
  473. package/dist/Presentation/ui-components/Message/Message.d.ts.map +1 -0
  474. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts.map +1 -0
  475. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts.map +1 -0
  476. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +2 -1
  477. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts.map +1 -0
  478. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +2 -1
  479. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts.map +1 -0
  480. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +1 -2
  481. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts.map +1 -0
  482. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -2
  483. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts.map +1 -0
  484. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +1 -2
  485. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts.map +1 -0
  486. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts.map +1 -0
  487. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +1 -1
  488. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts.map +1 -0
  489. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +1 -0
  490. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts.map +1 -0
  491. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts.map +1 -0
  492. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts.map +1 -0
  493. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +1 -0
  494. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts.map +1 -0
  495. package/dist/Presentation/ui-components/TextField/TextField.d.ts +3 -2
  496. package/dist/Presentation/ui-components/TextField/TextField.d.ts.map +1 -0
  497. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts.map +1 -0
  498. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +1 -0
  499. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts.map +1 -0
  500. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts.map +1 -0
  501. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +2 -2
  502. package/dist/Presentation/ui-components/index.d.ts.map +1 -0
  503. package/dist/QBconfig.d.ts.map +1 -0
  504. package/dist/hooks/useModal.d.ts.map +1 -0
  505. package/dist/hooks/useQuickBloxUIKit.d.ts +1 -0
  506. package/dist/hooks/useQuickBloxUIKit.d.ts.map +1 -0
  507. package/dist/index-ui.d.ts +1 -3
  508. package/dist/index-ui.d.ts.map +1 -0
  509. package/dist/index-ui.js +74582 -35570
  510. package/dist/index.d.ts.map +1 -0
  511. package/dist/qb-api-calls/index.d.ts.map +1 -0
  512. package/dist/setupTests.d.ts.map +1 -0
  513. package/dist/utils/DateTimeFormatter.d.ts.map +1 -0
  514. package/dist/utils/formatFileSize.d.ts.map +1 -0
  515. package/dist/utils/parse.d.ts +1 -1
  516. package/dist/utils/parse.d.ts.map +1 -0
  517. package/dist/utils/utils.d.ts.map +1 -0
  518. package/global.d.ts +15 -202
  519. package/package.json +46 -44
  520. package/public/index.html +15 -42
  521. package/src/App.scss +5 -0
  522. package/src/App.tsx +58 -45
  523. package/src/Data/Stubs.ts +6 -6
  524. package/src/Data/repository/ConnectionRepository.ts +1 -2
  525. package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +26 -7
  526. package/src/Data/source/remote/RemoteDataSource.ts +206 -78
  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 +2 -2
  532. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +12 -6
  533. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.tsx +2 -2
  534. package/src/Presentation/Views/Dialog/AIWidgets/SliderMenu.tsx +2 -2
  535. package/src/Presentation/Views/Dialog/Dialog.scss +7 -1
  536. package/src/Presentation/Views/Dialog/Dialog.tsx +12 -12
  537. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.tsx +1 -4
  538. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.tsx +1 -1
  539. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.tsx +1 -4
  540. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.tsx +1 -1
  541. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx +1 -1
  542. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.tsx +1 -1
  543. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +17 -29
  544. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx +5 -14
  545. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.tsx +1 -1
  546. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.tsx +1 -1
  547. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +9 -9
  548. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.tsx +1 -1
  549. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.tsx +1 -1
  550. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +11 -0
  551. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.tsx +1 -1
  552. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.tsx +1 -1
  553. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.tsx +1 -1
  554. package/src/Presentation/Views/Dialog/Message/Message.tsx +1 -1
  555. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.tsx +1 -1
  556. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.tsx +1 -1
  557. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.tsx +1 -1
  558. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.tsx +1 -1
  559. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.tsx +3 -3
  560. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +1 -1
  561. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.tsx +1 -1
  562. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.tsx +1 -1
  563. package/src/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.tsx +1 -1
  564. package/src/Presentation/Views/Dialog/useDialogViewModel.ts +5 -13
  565. package/src/Presentation/Views/DialogInfo/DialogInfo.scss +19 -25
  566. package/src/Presentation/Views/DialogInfo/DialogInfo.tsx +3 -3
  567. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +0 -17
  568. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.tsx +2 -2
  569. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +9 -1
  570. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.tsx +1 -1
  571. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +0 -1
  572. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.tsx +1 -1
  573. package/src/Presentation/Views/DialogList/DialogList.tsx +6 -5
  574. package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +1 -1
  575. package/src/Presentation/Views/DialogListHeader/DialogListHeader.tsx +1 -1
  576. package/src/Presentation/Views/EditDialog/EditDialog.scss +1 -38
  577. package/src/Presentation/Views/EditDialog/EditDialog.tsx +2 -2
  578. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.tsx +2 -2
  579. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +17 -42
  580. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +40 -37
  581. package/src/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.tsx +4 -3
  582. package/src/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.tsx +1 -1
  583. package/src/Presentation/Views/InviteMembers/InviteMembers.scss +4 -33
  584. package/src/Presentation/Views/InviteMembers/InviteMembers.tsx +19 -9
  585. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +2 -2
  586. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.tsx +1 -1
  587. package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +8 -0
  588. package/src/Presentation/Views/PreviewDialog/PreviewDialog.tsx +9 -7
  589. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.tsx +1 -1
  590. package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +1 -1
  591. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +2 -2
  592. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +5 -10
  593. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +2 -2
  594. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +2 -2
  595. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +0 -5
  596. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +1 -1
  597. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +0 -2
  598. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +1 -1
  599. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +1 -10
  600. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +1 -1
  601. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +1 -1
  602. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +1 -1
  603. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +1 -1
  604. package/src/Presentation/icons/actions/index.ts +55 -26
  605. package/src/Presentation/icons/contents/index.ts +31 -13
  606. package/src/Presentation/icons/index.ts +17 -1
  607. package/src/Presentation/icons/media/index.ts +27 -12
  608. package/src/Presentation/icons/moderation/index.ts +13 -5
  609. package/src/Presentation/icons/navigation/index.ts +27 -12
  610. package/src/Presentation/icons/status/index.ts +17 -7
  611. package/src/Presentation/icons/toggle/index.ts +49 -23
  612. package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +97 -40
  613. package/src/Presentation/layouts/TestStage/LoginView/Login.scss +6 -3
  614. package/src/Presentation/layouts/TestStage/LoginView/Login.tsx +1 -1
  615. package/src/Presentation/themes/styles/_fonts.scss +0 -30
  616. package/src/Presentation/themes/styles/_theme_colors_scheme.scss +1 -1
  617. package/src/Presentation/themes/styles/_theme_dark.scss +6 -5
  618. package/src/Presentation/themes/styles/_theme_light.scss +4 -3
  619. package/src/Presentation/themes/styles/_variables.scss +2 -2
  620. package/src/Presentation/ui-components/Avatar/Avatar.scss +11 -7
  621. package/src/Presentation/ui-components/Avatar/Avatar.tsx +1 -0
  622. package/src/Presentation/ui-components/Avatar/avatar.stories.tsx +2 -0
  623. package/src/Presentation/ui-components/Badge/Badge.stories.ts +3 -3
  624. package/src/Presentation/ui-components/Badge/Badge.tsx +1 -1
  625. package/src/Presentation/ui-components/Button/Button.scss +6 -7
  626. package/src/Presentation/ui-components/Button/Button.stories.ts +4 -3
  627. package/src/Presentation/ui-components/Button/Button.tsx +1 -0
  628. package/src/Presentation/ui-components/CheckBox/CheckBox.scss +29 -1
  629. package/src/Presentation/ui-components/CheckBox/CheckBox.tsx +11 -7
  630. package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +13 -13
  631. package/src/Presentation/ui-components/DialogBanner/DialogBanner.stories.ts +1 -1
  632. package/src/Presentation/ui-components/DialogBanner/DialogBanner.tsx +2 -1
  633. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +6 -5
  634. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.tsx +9 -5
  635. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.tsx +4 -4
  636. package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +10 -7
  637. package/src/Presentation/ui-components/DialogWindow/DialogWindow.stories.tsx +10 -1
  638. package/src/Presentation/ui-components/DialogWindow/DialogWindow.tsx +5 -5
  639. package/src/Presentation/ui-components/Dropdown/Dropdown.scss +1 -1
  640. package/src/Presentation/ui-components/Dropdown/Dropdown.stories.tsx +3 -2
  641. package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +1 -1
  642. package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +1 -0
  643. package/src/Presentation/ui-components/Header/Header.scss +12 -5
  644. package/src/Presentation/ui-components/Header/Header.stories.tsx +1 -0
  645. package/src/Presentation/ui-components/Header/Header.tsx +2 -2
  646. package/src/Presentation/ui-components/Loader/Loader.scss +4 -2
  647. package/src/Presentation/ui-components/Loader/Loader.stories.ts +1 -0
  648. package/src/Presentation/ui-components/Loader/Loader.tsx +1 -0
  649. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +1 -0
  650. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.tsx +2 -2
  651. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.tsx +1 -0
  652. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.tsx +1 -0
  653. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +13 -3
  654. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.tsx +1 -0
  655. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.tsx +1 -0
  656. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +0 -3
  657. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.tsx +2 -1
  658. package/src/Presentation/ui-components/Message/Message.scss +5 -1
  659. package/src/Presentation/ui-components/Message/Message.tsx +16 -4
  660. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.tsx +2 -2
  661. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.tsx +3 -3
  662. package/src/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.tsx +1 -1
  663. package/src/Presentation/ui-components/MessageInput/MessageInput.scss +5 -1
  664. package/src/Presentation/ui-components/MessageInput/MessageInput.stories.tsx +3 -3
  665. package/src/Presentation/ui-components/MessageInput/MessageInput.tsx +65 -64
  666. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.tsx +1 -4
  667. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.tsx +1 -1
  668. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +5 -5
  669. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +17 -16
  670. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.ts +1 -0
  671. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.tsx +1 -0
  672. package/src/Presentation/ui-components/Placeholder/Placeholder.scss +6 -1
  673. package/src/Presentation/ui-components/Placeholder/Placeholder.stories.tsx +1 -0
  674. package/src/Presentation/ui-components/Placeholder/Placeholder.tsx +1 -1
  675. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +4 -1
  676. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.ts +2 -0
  677. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.tsx +1 -0
  678. package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +8 -3
  679. package/src/Presentation/ui-components/SettingsItem/SettingsItem.stories.tsx +8 -7
  680. package/src/Presentation/ui-components/SettingsItem/SettingsItem.tsx +1 -1
  681. package/src/Presentation/ui-components/TextField/TextField.scss +6 -4
  682. package/src/Presentation/ui-components/TextField/TextField.stories.ts +3 -2
  683. package/src/Presentation/ui-components/TextField/TextField.tsx +5 -4
  684. package/src/Presentation/ui-components/Toast/Toast.scss +2 -2
  685. package/src/Presentation/ui-components/Toast/Toast.stories.tsx +1 -0
  686. package/src/Presentation/ui-components/Toast/ToastProvider.tsx +1 -1
  687. package/src/Presentation/ui-components/UserListItem/UserListItem.scss +11 -3
  688. package/src/Presentation/ui-components/UserListItem/UserListItem.stories.tsx +19 -6
  689. package/src/Presentation/ui-components/UserListItem/UserListItem.tsx +1 -0
  690. package/src/hooks/useQuickBloxUIKit.ts +94 -18
  691. package/src/index-ui.ts +1 -5
  692. package/src/index.scss +4 -4
  693. package/storybook-static/167.88fc69a9.iframe.bundle.js +1 -0
  694. package/storybook-static/294.b81cdbca.iframe.bundle.js +1 -0
  695. package/storybook-static/363.2cb21716.iframe.bundle.js +2 -0
  696. package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +44 -0
  697. package/storybook-static/364.988cd801.iframe.bundle.js +1 -0
  698. package/storybook-static/488.3cd3942e.iframe.bundle.js +1 -0
  699. package/storybook-static/559.9e64a6f5.iframe.bundle.js +2 -0
  700. package/storybook-static/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +5 -0
  701. package/storybook-static/735.82f96f8a.iframe.bundle.js +2 -0
  702. package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +9 -0
  703. package/storybook-static/756.92971caf.iframe.bundle.js +405 -0
  704. package/storybook-static/756.92971caf.iframe.bundle.js.LICENSE.txt +19 -0
  705. package/storybook-static/756.92971caf.iframe.bundle.js.map +1 -0
  706. package/storybook-static/844.642791cb.iframe.bundle.js +95 -0
  707. package/storybook-static/844.642791cb.iframe.bundle.js.LICENSE.txt +19 -0
  708. package/storybook-static/844.642791cb.iframe.bundle.js.map +1 -0
  709. package/storybook-static/936.8546c1d8.iframe.bundle.js +1 -0
  710. package/storybook-static/961.c94da456.iframe.bundle.js +2 -0
  711. package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +9 -0
  712. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js +2 -0
  713. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js.LICENSE.txt +5 -0
  714. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js +2 -0
  715. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js.LICENSE.txt +5 -0
  716. package/storybook-static/Presentation-ui-components-Button-Button-stories.1e4ae2b4.iframe.bundle.js +2 -0
  717. package/storybook-static/Presentation-ui-components-Button-Button-stories.1e4ae2b4.iframe.bundle.js.LICENSE.txt +5 -0
  718. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.cd797979.iframe.bundle.js +1 -0
  719. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.4e25a94d.iframe.bundle.js +2 -0
  720. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.4e25a94d.iframe.bundle.js.LICENSE.txt +5 -0
  721. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.e22e8be5.iframe.bundle.js +2 -0
  722. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.e22e8be5.iframe.bundle.js.LICENSE.txt +15 -0
  723. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.8321872b.iframe.bundle.js +2 -0
  724. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.8321872b.iframe.bundle.js.LICENSE.txt +5 -0
  725. package/storybook-static/Presentation-ui-components-Header-Header-stories.1cff200a.iframe.bundle.js +2 -0
  726. package/storybook-static/Presentation-ui-components-Header-Header-stories.1cff200a.iframe.bundle.js.LICENSE.txt +5 -0
  727. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js +2 -0
  728. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js.LICENSE.txt +5 -0
  729. package/storybook-static/Presentation-ui-components-Message-Message-stories.49f0dbbf.iframe.bundle.js +2 -0
  730. package/storybook-static/Presentation-ui-components-Message-Message-stories.49f0dbbf.iframe.bundle.js.LICENSE.txt +5 -0
  731. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.de6fb2f3.iframe.bundle.js +1 -0
  732. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.b927d1e1.iframe.bundle.js +1 -0
  733. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js +2 -0
  734. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js.LICENSE.txt +5 -0
  735. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js +2 -0
  736. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js.LICENSE.txt +5 -0
  737. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js +2 -0
  738. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js.LICENSE.txt +5 -0
  739. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.19812f7d.iframe.bundle.js +2 -0
  740. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.19812f7d.iframe.bundle.js.LICENSE.txt +5 -0
  741. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.5e19f10e.iframe.bundle.js +1 -0
  742. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.d2f60e13.iframe.bundle.js +2 -0
  743. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.d2f60e13.iframe.bundle.js.LICENSE.txt +5 -0
  744. package/storybook-static/docs-Introduction-mdx.5addfa61.iframe.bundle.js +1 -0
  745. package/storybook-static/docs-Styling-mdx.9f4235f1.iframe.bundle.js +1 -0
  746. package/storybook-static/favicon.svg +1 -7
  747. package/storybook-static/iframe.html +175 -19
  748. package/storybook-static/index.html +100 -46
  749. package/storybook-static/index.json +1 -1
  750. package/storybook-static/main.c2fb2ab0.iframe.bundle.js +1 -0
  751. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  752. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  753. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  754. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  755. package/storybook-static/project.json +1 -1
  756. package/storybook-static/runtime~main.2530bea6.iframe.bundle.js +1 -0
  757. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +331 -0
  758. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +51 -0
  759. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +3 -0
  760. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +12 -0
  761. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +402 -0
  762. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +242 -0
  763. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +3 -0
  764. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +3 -0
  765. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +3 -0
  766. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +3 -0
  767. package/storybook-static/sb-addons/interactions-11/manager-bundle.js +222 -0
  768. package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +127 -0
  769. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  770. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  771. package/storybook-static/sb-manager/globals-module-info.js +1046 -1
  772. package/storybook-static/sb-manager/globals-runtime.js +41239 -0
  773. package/storybook-static/sb-manager/globals.js +48 -1
  774. package/storybook-static/sb-manager/runtime.js +12048 -1
  775. package/storybook-static/sb-preview/globals.js +33 -1
  776. package/storybook-static/sb-preview/runtime.js +7725 -90
  777. package/tsconfig.buildlib.json +22 -14
  778. package/tsconfig.json +5 -5
  779. package/webpack.app.config.js +70 -0
  780. package/webpack.lib.config-debug.js +91 -0
  781. package/webpack.lib.config-prev.js +64 -0
  782. package/webpack.lib.config.js +91 -0
  783. package/dist/index-ui.js.map +0 -1
  784. package/src/react-app-env.d.ts +0 -1
  785. package/storybook-static/208.5b4db3b7.iframe.bundle.js +0 -508
  786. package/storybook-static/208.5b4db3b7.iframe.bundle.js.map +0 -1
  787. package/storybook-static/294.3eb6fe57.iframe.bundle.js +0 -1
  788. package/storybook-static/305.8c6a9b9c.iframe.bundle.js +0 -1
  789. package/storybook-static/421.0bbb0e61.iframe.bundle.js +0 -1
  790. package/storybook-static/457.6ff065bd.iframe.bundle.js +0 -352
  791. package/storybook-static/457.6ff065bd.iframe.bundle.js.map +0 -1
  792. package/storybook-static/503.769aa420.iframe.bundle.js +0 -1
  793. package/storybook-static/647.be358768.iframe.bundle.js +0 -1
  794. package/storybook-static/71.badb5d90.iframe.bundle.js +0 -157
  795. package/storybook-static/71.badb5d90.iframe.bundle.js.map +0 -1
  796. package/storybook-static/857.fdf27d25.iframe.bundle.js +0 -1
  797. package/storybook-static/994.d260ec82.iframe.bundle.js +0 -39
  798. package/storybook-static/994.d260ec82.iframe.bundle.js.map +0 -1
  799. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.f12c0e50.iframe.bundle.js +0 -14
  800. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.f12c0e50.iframe.bundle.js.map +0 -1
  801. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.848c045d.iframe.bundle.js +0 -14
  802. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.848c045d.iframe.bundle.js.map +0 -1
  803. package/storybook-static/Presentation-ui-components-Button-Button-stories.0a264f7c.iframe.bundle.js +0 -14
  804. package/storybook-static/Presentation-ui-components-Button-Button-stories.0a264f7c.iframe.bundle.js.map +0 -1
  805. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.e500567e.iframe.bundle.js +0 -10
  806. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.e500567e.iframe.bundle.js.map +0 -1
  807. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.053f39b6.iframe.bundle.js +0 -14
  808. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.053f39b6.iframe.bundle.js.map +0 -1
  809. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.8d572e56.iframe.bundle.js +0 -14
  810. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.8d572e56.iframe.bundle.js.map +0 -1
  811. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.68f79f53.iframe.bundle.js +0 -14
  812. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.68f79f53.iframe.bundle.js.map +0 -1
  813. package/storybook-static/Presentation-ui-components-Header-Header-stories.e2972795.iframe.bundle.js +0 -14
  814. package/storybook-static/Presentation-ui-components-Header-Header-stories.e2972795.iframe.bundle.js.map +0 -1
  815. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8eb761ce.iframe.bundle.js +0 -14
  816. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.8eb761ce.iframe.bundle.js.map +0 -1
  817. package/storybook-static/Presentation-ui-components-Message-Message-stories.b5b1775d.iframe.bundle.js +0 -14
  818. package/storybook-static/Presentation-ui-components-Message-Message-stories.b5b1775d.iframe.bundle.js.map +0 -1
  819. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.e55416f1.iframe.bundle.js +0 -1
  820. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.419df5dd.iframe.bundle.js +0 -10
  821. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.419df5dd.iframe.bundle.js.map +0 -1
  822. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.c17043ac.iframe.bundle.js +0 -14
  823. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.c17043ac.iframe.bundle.js.map +0 -1
  824. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.3fd8b734.iframe.bundle.js +0 -14
  825. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.3fd8b734.iframe.bundle.js.map +0 -1
  826. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.c943f648.iframe.bundle.js +0 -14
  827. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.c943f648.iframe.bundle.js.map +0 -1
  828. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.30586294.iframe.bundle.js +0 -14
  829. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.30586294.iframe.bundle.js.map +0 -1
  830. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.24db9b3e.iframe.bundle.js +0 -14
  831. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.24db9b3e.iframe.bundle.js.map +0 -1
  832. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.04902be9.iframe.bundle.js +0 -14
  833. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.04902be9.iframe.bundle.js.map +0 -1
  834. package/storybook-static/docs-Introduction-mdx.4b40f479.iframe.bundle.js +0 -10
  835. package/storybook-static/docs-Introduction-mdx.4b40f479.iframe.bundle.js.map +0 -1
  836. package/storybook-static/docs-Styling-mdx.55077e67.iframe.bundle.js +0 -10
  837. package/storybook-static/docs-Styling-mdx.55077e67.iframe.bundle.js.map +0 -1
  838. package/storybook-static/favicon.ico +0 -0
  839. package/storybook-static/logo192.png +0 -0
  840. package/storybook-static/logo512.png +0 -0
  841. package/storybook-static/main.c0c1b229.iframe.bundle.js +0 -1
  842. package/storybook-static/manifest.json +0 -25
  843. package/storybook-static/robots.txt +0 -3
  844. package/storybook-static/runtime~main.94227b12.iframe.bundle.js +0 -1
  845. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -3
  846. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  847. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -12
  848. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  849. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -62
  850. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
  851. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +0 -3
  852. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
  853. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +0 -3
  854. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
  855. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +0 -3
  856. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
  857. package/storybook-static/sb-addons/interactions-7/manager-bundle.js +0 -12
  858. package/storybook-static/sb-addons/interactions-7/manager-bundle.js.LEGAL.txt +0 -0
  859. package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -3
  860. package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
  861. package/storybook-static/sb-addons/viewport-8/manager-bundle.js +0 -3
  862. package/storybook-static/sb-addons/viewport-8/manager-bundle.js.LEGAL.txt +0 -0
  863. package/storybook-static/sb-common-assets/fonts.css +0 -31
  864. package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +0 -1
  865. package/storybook-static/sb-manager/chunk-5QAFKPS7.js +0 -7
  866. package/storybook-static/sb-manager/chunk-7PRFHFSS.js +0 -9
  867. package/storybook-static/sb-manager/chunk-XE6LDGTE.js +0 -406
  868. package/storybook-static/sb-manager/chunk-YDUB7CS6.js +0 -348
  869. package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +0 -1
  870. package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +0 -156
  871. package/storybook-static/sb-manager/index.js +0 -1
  872. package/storybook-static/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +0 -1
  873. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.7b228eb0.chunk.css +0 -3
  874. package/storybook-static/static/css/Presentation-ui-components-Avatar-avatar-stories.7b228eb0.chunk.css.map +0 -1
  875. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css +0 -3
  876. package/storybook-static/static/css/Presentation-ui-components-Badge-Badge-stories.7b8317f8.chunk.css.map +0 -1
  877. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css +0 -4
  878. package/storybook-static/static/css/Presentation-ui-components-Button-Button-stories.1b6e1c55.chunk.css.map +0 -1
  879. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css +0 -3
  880. package/storybook-static/static/css/Presentation-ui-components-DialogBanner-DialogBanner-stories.bd07fad3.chunk.css.map +0 -1
  881. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.6d563072.chunk.css +0 -7
  882. package/storybook-static/static/css/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.6d563072.chunk.css.map +0 -1
  883. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.4f813450.chunk.css +0 -6
  884. package/storybook-static/static/css/Presentation-ui-components-DialogWindow-DialogWindow-stories.4f813450.chunk.css.map +0 -1
  885. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.e37f549d.chunk.css +0 -5
  886. package/storybook-static/static/css/Presentation-ui-components-Dropdown-Dropdown-stories.e37f549d.chunk.css.map +0 -1
  887. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.fb1001e7.chunk.css +0 -4
  888. package/storybook-static/static/css/Presentation-ui-components-Header-Header-stories.fb1001e7.chunk.css.map +0 -1
  889. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css +0 -3
  890. package/storybook-static/static/css/Presentation-ui-components-Loader-Loader-stories.dab34da1.chunk.css.map +0 -1
  891. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.aca0e085.chunk.css +0 -14
  892. package/storybook-static/static/css/Presentation-ui-components-Message-Message-stories.aca0e085.chunk.css.map +0 -1
  893. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.7eb916fc.chunk.css +0 -7
  894. package/storybook-static/static/css/Presentation-ui-components-MessageInput-MessageInput-stories.7eb916fc.chunk.css.map +0 -1
  895. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css +0 -3
  896. package/storybook-static/static/css/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.34aa36b2.chunk.css.map +0 -1
  897. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.cb7fb80a.chunk.css +0 -3
  898. package/storybook-static/static/css/Presentation-ui-components-Placeholder-Placeholder-stories.cb7fb80a.chunk.css.map +0 -1
  899. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.31cd021e.chunk.css +0 -3
  900. package/storybook-static/static/css/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.31cd021e.chunk.css.map +0 -1
  901. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.b67b748b.chunk.css +0 -5
  902. package/storybook-static/static/css/Presentation-ui-components-SettingsItem-SettingsItem-stories.b67b748b.chunk.css.map +0 -1
  903. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css +0 -4
  904. package/storybook-static/static/css/Presentation-ui-components-TextField-TextField-stories.412027f8.chunk.css.map +0 -1
  905. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.a5b284f4.chunk.css +0 -754
  906. package/storybook-static/static/css/Presentation-ui-components-Toast-Toast-stories.a5b284f4.chunk.css.map +0 -1
  907. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.655aa6c1.chunk.css +0 -7
  908. package/storybook-static/static/css/Presentation-ui-components-UserListItem-UserListItem-stories.655aa6c1.chunk.css.map +0 -1
  909. package/storybook-static/static/css/main.a921485c.css +0 -5
  910. package/storybook-static/static/css/main.a921485c.css.map +0 -1
  911. package/storybook-static/static/media/add-contact.e7e7b8b15edebe99cae9c46963126e7c.svg +0 -3
  912. package/storybook-static/static/media/add.5cbe1f2c489b81396863f7128e3d26e7.svg +0 -3
  913. package/storybook-static/static/media/admin.476c2854d7ad23f2afdedac2d9bd6815.svg +0 -3
  914. package/storybook-static/static/media/archive.d0a72898f3c47a4194d18f560a54e109.svg +0 -3
  915. package/storybook-static/static/media/arrow-left.5005351d4fa6a7c074dd9780fb49dcc8.svg +0 -3
  916. package/storybook-static/static/media/arrow-right.1be3b599e21158807fdf72f4976179a2.svg +0 -3
  917. package/storybook-static/static/media/attachment.a58b8549f46ae5bbe93be779cd9f2037.svg +0 -3
  918. package/storybook-static/static/media/audio-file.40179c472f715fc74d4da607da96aa5e.svg +0 -3
  919. package/storybook-static/static/media/back.b541e72fe05542e145575c8851558998.svg +0 -3
  920. package/storybook-static/static/media/banned.c7c74bfa1c833263f3ab42d0529132d1.svg +0 -3
  921. package/storybook-static/static/media/broadcast.55273926379e5f486ccfdfab1a310b2d.svg +0 -7
  922. package/storybook-static/static/media/broken-file.bc084278a0d284b7901b47f24001caa6.svg +0 -3
  923. package/storybook-static/static/media/camera-off.8e01960815ce7620a1039d0fc5f758b2.svg +0 -3
  924. package/storybook-static/static/media/camera-on.ddd56e36fa505d618ab772e23c8381e6.svg +0 -3
  925. package/storybook-static/static/media/camera.a5a215695fba60146e649094188f37e2.svg +0 -3
  926. package/storybook-static/static/media/chat-filled.aaf0b778d198e7b8f632a68299a8fd13.svg +0 -3
  927. package/storybook-static/static/media/chat.59cd437f21fe7043682dd04cbe6377be.svg +0 -3
  928. package/storybook-static/static/media/check-off.0c0256f00eeb75770ffc2fbd2b59eab0.svg +0 -3
  929. package/storybook-static/static/media/check-on.80442753ef6922df1913453f50099315.svg +0 -3
  930. package/storybook-static/static/media/close.c145af996de81b25f3930bf36d88b161.svg +0 -3
  931. package/storybook-static/static/media/conference.ffbdf37c0510c796138f18e6c1205204.svg +0 -3
  932. package/storybook-static/static/media/contact-filled.f04f56ba3f98ade5d7ced7814d8a5fa8.svg +0 -3
  933. package/storybook-static/static/media/contact.40a8b8104c3a448b81108ffede850963.svg +0 -3
  934. package/storybook-static/static/media/copy.100bd0fff933cbde8ad4bc2ac281c845.svg +0 -3
  935. package/storybook-static/static/media/delete.287c9b4b3b0e58cb081c6e388e68b409.svg +0 -3
  936. package/storybook-static/static/media/down.7a43a3d78885f40616ce111c86c108a4.svg +0 -3
  937. package/storybook-static/static/media/download.43c26d404dd023e42aaacc52151f7a59.svg +0 -3
  938. package/storybook-static/static/media/edit.8d813af82ecab84303ee3c97bd7bc562.svg +0 -3
  939. package/storybook-static/static/media/emoji.9a202cbb16735f3c83ba8772f0218aa4.svg +0 -3
  940. package/storybook-static/static/media/error.ec60e2052661b82f27b7ce270ae133a7.svg +0 -3
  941. package/storybook-static/static/media/favorite.194d78057be6cd7968c85e7b5822f82a.svg +0 -3
  942. package/storybook-static/static/media/file.e537292693b3c89c023fd383c70bd221.svg +0 -3
  943. package/storybook-static/static/media/forward-filled.43120a68057427c89c88b28d9b20dd90.svg +0 -3
  944. package/storybook-static/static/media/freeze.35619771e645b649c38e0427d9b39a25.svg +0 -3
  945. package/storybook-static/static/media/full-screen.6b01c93e069421c69bda2bbde5d01336.svg +0 -3
  946. package/storybook-static/static/media/gif-file.2c46a5df6c8397f5b9088e66aee3fd44.svg +0 -3
  947. package/storybook-static/static/media/group-chat.19d5305cab6017d494ac35ecb285a9fe.svg +0 -3
  948. package/storybook-static/static/media/help.786f48518c96c8e7098296d68245c339.svg +0 -3
  949. package/storybook-static/static/media/hide.2785264246d70868717984a5ad44d4c9.svg +0 -3
  950. package/storybook-static/static/media/hungup.e5d2289a9e8cd755bd1ee36b738305a2.svg +0 -3
  951. package/storybook-static/static/media/image-filled.8afb62b142d786e90102f1cac73a9c13.svg +0 -3
  952. package/storybook-static/static/media/image.64092dadd5215c8d3ba99ccac753d743.svg +0 -3
  953. package/storybook-static/static/media/income-call.60ca2d367a00d582f4b6f4a5f2047e27.svg +0 -3
  954. package/storybook-static/static/media/information.8217e163c334852f143e7199c97fab1d.svg +0 -3
  955. package/storybook-static/static/media/leave.ae5422a12edec1b61484ff2932819c77.svg +0 -3
  956. package/storybook-static/static/media/like.45662989373aa524cd580fb42432e0bc.svg +0 -3
  957. package/storybook-static/static/media/link.74f567c3ee4366d79fb81d73eb8c0919.svg +0 -3
  958. package/storybook-static/static/media/loader.2eb72391c5267453edb4106528c075ad.svg +0 -3
  959. package/storybook-static/static/media/location.cab52453404524c345ec7efdd86fa66b.svg +0 -4
  960. package/storybook-static/static/media/louder.133519141541a9cd2f0e898534b39732.svg +0 -3
  961. package/storybook-static/static/media/mention.6c4885bb0ea5ca85c8962f6f51ac1cb4.svg +0 -3
  962. package/storybook-static/static/media/mic-off.43e60427600bcf7fd78fb840ff50d804.svg +0 -3
  963. package/storybook-static/static/media/mic-on.5a52100de3770550b3a57a76827843c2.svg +0 -4
  964. package/storybook-static/static/media/minimize.a849dd3a36ece08b992a773d135a0c3f.svg +0 -3
  965. package/storybook-static/static/media/moderations.07c8d1fe96b0b8bb5911f6cc37f764c6.svg +0 -3
  966. package/storybook-static/static/media/more.4ed9ad54ae110d9760b6e9698d821960.svg +0 -3
  967. package/storybook-static/static/media/muted.cb37ac3c577c87c800466aa7aee65af2.svg +0 -3
  968. package/storybook-static/static/media/new-chat.124e0351bd0e19ff4c5fdbabbe5c6027.svg +0 -3
  969. package/storybook-static/static/media/next.97a0eeea1f8daa2d31c8452f29908bf1.svg +0 -3
  970. package/storybook-static/static/media/notifications.ab8e847ae04e2bec9209dbdd1054b0f2.svg +0 -3
  971. package/storybook-static/static/media/notify-off.4a669a3a8cbd38b3309dbc4c909f6089.svg +0 -3
  972. package/storybook-static/static/media/notify-on.ea9ffc856ad6cdbe87184af558c78eec.svg +0 -3
  973. package/storybook-static/static/media/outcome-call.9f5fec07823796ad78963a06cdcf629e.svg +0 -3
  974. package/storybook-static/static/media/pause.27eb8c32999f10d05d6a200165d798a9.svg +0 -3
  975. package/storybook-static/static/media/phone-filled.e969511d74935af26ef366f575929f68.svg +0 -3
  976. package/storybook-static/static/media/phone.6355580a064a488b6317372d71f84c00.svg +0 -3
  977. package/storybook-static/static/media/play.00bfe0e9c94dc6dfb230262e45b2f860.svg +0 -3
  978. package/storybook-static/static/media/plus.d3953cb1cf830bcfc41c8cc6133b13b1.svg +0 -3
  979. package/storybook-static/static/media/private-chat.c68f36baf025b9d20ad1f801a2396e7a.svg +0 -3
  980. package/storybook-static/static/media/public-channel.7a6ada7f30c44fb4a99021df0eb0e996.svg +0 -7
  981. package/storybook-static/static/media/quite.9f45e2152fe6c499a776cb387ee4859f.svg +0 -3
  982. package/storybook-static/static/media/record.e49ee7da793b2ce446a4e7128970c0cc.svg +0 -3
  983. package/storybook-static/static/media/refresh.6e955728d9ec086f34e9adaaaafacf3e.svg +0 -3
  984. package/storybook-static/static/media/remove-2.8a7700757f02c941f03c37c7e495bf63.svg +0 -3
  985. package/storybook-static/static/media/remove.831e69b70db1b3eb72a49444b8aa1e16.svg +0 -3
  986. package/storybook-static/static/media/rephrase.551171aa8903b31746a58a95528b1f68.svg +0 -6
  987. package/storybook-static/static/media/reply-filled.17ed65506e902f17bb22e87ffac93314.svg +0 -3
  988. package/storybook-static/static/media/screenshare.c2f94264a7640ea1bbb2a22f7d570038.svg +0 -3
  989. package/storybook-static/static/media/search.25663e60d71e01c64fdfc83df7460ab0.svg +0 -3
  990. package/storybook-static/static/media/send.d298db52aafdb846a46c9d180ad45946.svg +0 -3
  991. package/storybook-static/static/media/sent.f427753e5502fd7783a08e5f0e0d2f35.svg +0 -3
  992. package/storybook-static/static/media/settings-filled.bd9b60ff4e9eae911e4e2bc69e8e79ca.svg +0 -3
  993. package/storybook-static/static/media/share.7ce8283aa267fb065c568d65b482e211.svg +0 -3
  994. package/storybook-static/static/media/show.de1782527c4a7fa14101dffbfba8aea6.svg +0 -3
  995. package/storybook-static/static/media/speaker-off.fe84597c4b68f4f761e12f789dc58718.svg +0 -3
  996. package/storybook-static/static/media/speaker.e7ff48a73ca43188703b36dfecd932b5.svg +0 -3
  997. package/storybook-static/static/media/stop-record.a2e9d50a0930c24af43d7f357093be81.svg +0 -3
  998. package/storybook-static/static/media/stop-share.d1be236e01dd924ba711e1e17f41054c.svg +0 -3
  999. package/storybook-static/static/media/stream-filled.c40bae61fea25455602a61db5e77fa71.svg +0 -3
  1000. package/storybook-static/static/media/stream.700f4f8ce0cee0ae1ef56132867427fe.svg +0 -3
  1001. package/storybook-static/static/media/swap-camera.bc3a4652106f5c57d14b4dcbffff08a5.svg +0 -3
  1002. package/storybook-static/static/media/text-document.cad7e87368501b96de2a939d08852dcd.svg +0 -3
  1003. package/storybook-static/static/media/unarchive.1b1a7438cd8eb6fee80e6ac89baa195b.svg +0 -3
  1004. package/storybook-static/static/media/user.911c7ae778615185b285ce0ae4068486.svg +0 -3
  1005. package/storybook-static/static/media/video-file.dbd1f8c63a3769f9e9a027f0922d56b2.svg +0 -3
  1006. package/storybook-static/static/media/video.bbcc2109285c18eea02ede86920de0dd.svg +0 -3
  1007. package/storybook-static/static/media/viewed-delivered.f43360dc87235a6cf574ff53f73dd777.svg +0 -3
  1008. package/storybook-static/static/media/voice.b937c8a1f744050bec2cd389ad2a1f3a.svg +0 -3
  1009. package/storybook-static/stories.json +0 -1
  1010. package/webpack.config.js +0 -82
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunkquickblox_react_ui_kit=self.webpackChunkquickblox_react_ui_kit||[]).push([[294],{"./node_modules/@mdx-js/react/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{MDXContext:()=>_lib_index_js__WEBPACK_IMPORTED_MODULE_0__.BN,MDXProvider:()=>_lib_index_js__WEBPACK_IMPORTED_MODULE_0__.xA,useMDXComponents:()=>_lib_index_js__WEBPACK_IMPORTED_MODULE_0__.RP,withMDXComponents:()=>_lib_index_js__WEBPACK_IMPORTED_MODULE_0__.gz});var _lib_index_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/@mdx-js/react/lib/index.js")},"./node_modules/@mdx-js/react/lib/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{BN:()=>MDXContext,RP:()=>useMDXComponents,gz:()=>withMDXComponents,xA:()=>MDXProvider});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");let MDXContext=react__WEBPACK_IMPORTED_MODULE_0__.createContext({});function withMDXComponents(Component){return boundMDXComponent;function boundMDXComponent(props){let allComponents=useMDXComponents(props.components);return react__WEBPACK_IMPORTED_MODULE_0__.createElement(Component,{...props,allComponents})}}function useMDXComponents(components){let contextComponents=react__WEBPACK_IMPORTED_MODULE_0__.useContext(MDXContext);return react__WEBPACK_IMPORTED_MODULE_0__.useMemo(()=>"function"==typeof components?components(contextComponents):{...contextComponents,...components},[contextComponents,components])}let emptyObject={};function MDXProvider({components,children,disableParentContext}){let allComponents;return allComponents=disableParentContext?"function"==typeof components?components({}):components||emptyObject:useMDXComponents(components),react__WEBPACK_IMPORTED_MODULE_0__.createElement(MDXContext.Provider,{value:allComponents},children)}}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunkquickblox_react_ui_kit=self.webpackChunkquickblox_react_ui_kit||[]).push([[305],{"./src/Presentation/icons/actions/forward-filled.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgForwardFilled(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M31.1667 13.75V8.25L44 21.0833L31.1667 33.9167V28.4167L38.5 21.0833L31.1667 13.75ZM20.1667 15.5833V8.25L33 21.0833L20.1667 33.9167V26.4C11 26.4 4.58333 29.3333 0 35.75C1.83333 26.5833 7.33333 17.4167 20.1667 15.5833Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgForwardFilled);__webpack_require__.p},"./src/Presentation/icons/actions/reply-filled.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgReplyFilled(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M18.3333 15.5833V8.25L5.5 21.0833L18.3333 33.9167V26.4C27.5 26.4 33.9167 29.3333 38.5 35.75C36.6667 26.5833 31.1667 17.4167 18.3333 15.5833Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgReplyFilled);__webpack_require__.p},"./src/Presentation/icons/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{ci:()=>attachment_ForwardRef,Lg:()=>audio_file_ForwardRef,oV:()=>back_ForwardRef,pK:()=>banned_ForwardRef,hL:()=>chat_ForwardRef,X6:()=>close_ForwardRef,os:()=>conference_ForwardRef,Lf:()=>down.h,Bw:()=>error.h,C_:()=>group_chat_ForwardRef,vT:()=>information_ForwardRef,iO:()=>loader_ForwardRef,WA:()=>location_ForwardRef,ur:()=>more_ForwardRef,Q4:()=>muted_ForwardRef,Vp:()=>new_chat_ForwardRef,gI:()=>next_ForwardRef,BD:()=>notifications_ForwardRef,BR:()=>play.h,vq:()=>public_channel_ForwardRef,ij:()=>refresh_ForwardRef,$j:()=>remove_ForwardRef,p8:()=>search_ForwardRef,Fx:()=>send_ForwardRef,jw:()=>text_document_ForwardRef,Uh:()=>user_ForwardRef,NG:()=>voice_ForwardRef});var new_chat_path,remove_path,send_path,voice_path,chat_path,conference_path,group_chat_path,notifications_path,public_channel_path,public_channel_path2,public_channel_path3,public_channel_path4,public_channel_path5,user_path,attachment_path,audio_file_path,location_path,location_path2,text_document_path,banned_path,muted_path,back_path,close_path,next_path,more_path,refresh_path,search_path,information_path,loader_path,react=__webpack_require__("./node_modules/react/index.js");__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p,__webpack_require__("./src/Presentation/icons/actions/forward-filled.svg");__webpack_require__.p;function new_chat_extends(){return(new_chat_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgNewChat(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",new_chat_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,new_chat_path||(new_chat_path=react.createElement("path",{d:"M40.3334 7.33335C40.3334 5.31669 38.6834 3.66669 36.6667 3.66669H7.33341C5.31675 3.66669 3.66675 5.31669 3.66675 7.33335V29.3334C3.66675 31.35 5.31675 33 7.33341 33H33.0001L40.3334 40.3334V7.33335ZM36.6667 31.4784L34.5217 29.3334H7.33341V7.33335H36.6667V31.4784ZM23.8334 9.16669H20.1667V16.5H12.8334V20.1667H20.1667V27.5H23.8334V20.1667H31.1667V16.5H23.8334V9.16669Z"})))}__webpack_require__.p,__webpack_require__.p;let new_chat_ForwardRef=react.forwardRef(SvgNewChat);__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;function remove_extends(){return(remove_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgRemove(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",remove_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,remove_path||(remove_path=react.createElement("path",{d:"M26.7482 14.6666L21.9998 19.415L17.2515 14.6666L14.6665 17.2516L19.4148 22L14.6665 26.7483L17.2515 29.3333L21.9998 24.585L26.7482 29.3333L29.3332 26.7483L24.5848 22L29.3332 17.2516L26.7482 14.6666ZM21.9998 3.66663C11.8615 3.66663 3.6665 11.8616 3.6665 22C3.6665 32.1383 11.8615 40.3333 21.9998 40.3333C32.1382 40.3333 40.3332 32.1383 40.3332 22C40.3332 11.8616 32.1382 3.66663 21.9998 3.66663ZM21.9998 36.6666C13.9148 36.6666 7.33317 30.085 7.33317 22C7.33317 13.915 13.9148 7.33329 21.9998 7.33329C30.0848 7.33329 36.6665 13.915 36.6665 22C36.6665 30.085 30.0848 36.6666 21.9998 36.6666Z"})))}__webpack_require__.p,__webpack_require__.p;let remove_ForwardRef=react.forwardRef(SvgRemove);function send_extends(){return(send_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgSend(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",send_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,send_path||(send_path=react.createElement("path",{d:"M2.76833 38.5L41.25 22L2.76833 5.5L2.75 18.3333L30.25 22L2.75 25.6667L2.76833 38.5Z"})))}__webpack_require__.p,__webpack_require__.p,__webpack_require__("./src/Presentation/icons/actions/reply-filled.svg");let send_ForwardRef=react.forwardRef(SvgSend);__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;function voice_extends(){return(voice_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgVoice(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",voice_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,voice_path||(voice_path=react.createElement("path",{d:"M22.0001 26.5834C25.0434 26.5834 27.5001 24.1267 27.5001 21.0834V10.0834C27.5001 7.04004 25.0434 4.58337 22.0001 4.58337C18.9567 4.58337 16.5001 7.04004 16.5001 10.0834V21.0834C16.5001 24.1267 18.9567 26.5834 22.0001 26.5834ZM20.1667 10.0834C20.1667 9.07504 20.9917 8.25004 22.0001 8.25004C23.0084 8.25004 23.8334 9.07504 23.8334 10.0834V21.0834C23.8334 22.0917 23.0084 22.9167 22.0001 22.9167C20.9917 22.9167 20.1667 22.0917 20.1667 21.0834V10.0834ZM31.1667 21.0834C31.1667 26.1434 27.0601 30.25 22.0001 30.25C16.9401 30.25 12.8334 26.1434 12.8334 21.0834H9.16675C9.16675 27.555 13.9517 32.8717 20.1667 33.77V39.4167H23.8334V33.77C30.0484 32.8717 34.8334 27.555 34.8334 21.0834H31.1667Z"})))}__webpack_require__.p,__webpack_require__.p;let voice_ForwardRef=react.forwardRef(SvgVoice);__webpack_require__.p;function chat_extends(){return(chat_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgChat(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",chat_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,chat_path||(chat_path=react.createElement("path",{d:"M36.6667 3.66663H7.33341C5.31675 3.66663 3.66675 5.31663 3.66675 7.33329V40.3333L11.0001 33H36.6667C38.6834 33 40.3334 31.35 40.3334 29.3333V7.33329C40.3334 5.31663 38.6834 3.66663 36.6667 3.66663ZM36.6667 29.3333H11.0001L7.33341 33V7.33329H36.6667V29.3333Z"})))}__webpack_require__.p,__webpack_require__.p;let chat_ForwardRef=react.forwardRef(SvgChat);function conference_extends(){return(conference_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgConference(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",conference_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,conference_path||(conference_path=react.createElement("path",{d:"M7.33333 23.8333C9.35 23.8333 11 22.1833 11 20.1667C11 18.15 9.35 16.5 7.33333 16.5C5.31667 16.5 3.66667 18.15 3.66667 20.1667C3.66667 22.1833 5.31667 23.8333 7.33333 23.8333ZM9.405 25.85C8.72667 25.74 8.04833 25.6667 7.33333 25.6667C5.51833 25.6667 3.795 26.0517 2.23667 26.73C0.88 27.3167 0 28.6367 0 30.1217V33H8.25V30.0483C8.25 28.5267 8.67167 27.0967 9.405 25.85ZM36.6667 23.8333C38.6833 23.8333 40.3333 22.1833 40.3333 20.1667C40.3333 18.15 38.6833 16.5 36.6667 16.5C34.65 16.5 33 18.15 33 20.1667C33 22.1833 34.65 23.8333 36.6667 23.8333ZM44 30.1217C44 28.6367 43.12 27.3167 41.7633 26.73C40.205 26.0517 38.4817 25.6667 36.6667 25.6667C35.9517 25.6667 35.2733 25.74 34.595 25.85C35.3283 27.0967 35.75 28.5267 35.75 30.0483V33H44V30.1217ZM29.7733 25.025C27.6283 24.0717 24.9883 23.375 22 23.375C19.0117 23.375 16.3717 24.09 14.2267 25.025C12.2467 25.905 11 27.885 11 30.0483V33H33V30.0483C33 27.885 31.7533 25.905 29.7733 25.025ZM14.795 29.3333C14.96 28.9117 15.0333 28.6183 16.4633 28.0683C18.2417 27.3717 20.1117 27.0417 22 27.0417C23.8883 27.0417 25.7583 27.3717 27.5367 28.0683C28.9483 28.6183 29.0217 28.9117 29.205 29.3333H14.795ZM22 14.6667C23.0083 14.6667 23.8333 15.4917 23.8333 16.5C23.8333 17.5083 23.0083 18.3333 22 18.3333C20.9917 18.3333 20.1667 17.5083 20.1667 16.5C20.1667 15.4917 20.9917 14.6667 22 14.6667ZM22 11C18.9567 11 16.5 13.4567 16.5 16.5C16.5 19.5433 18.9567 22 22 22C25.0433 22 27.5 19.5433 27.5 16.5C27.5 13.4567 25.0433 11 22 11Z"})))}__webpack_require__.p;let conference_ForwardRef=react.forwardRef(SvgConference);__webpack_require__.p;function group_chat_extends(){return(group_chat_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgGroupChat(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",group_chat_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,group_chat_path||(group_chat_path=react.createElement("path",{d:"M30.2499 23.8333C28.0499 23.8333 24.6216 24.4566 21.9999 25.6666C19.3783 24.4383 15.9499 23.8333 13.7499 23.8333C9.77159 23.8333 1.83325 25.8133 1.83325 29.7916V34.8333H42.1666V29.7916C42.1666 25.8133 34.2283 23.8333 30.2499 23.8333ZM22.9166 32.0833H4.58325V29.7916C4.58325 28.8016 9.27659 26.5833 13.7499 26.5833C18.2233 26.5833 22.9166 28.8016 22.9166 29.7916V32.0833ZM39.4166 32.0833H25.6666V29.7916C25.6666 28.9483 25.2999 28.215 24.7133 27.555C26.3266 27.005 28.3066 26.5833 30.2499 26.5833C34.7233 26.5833 39.4166 28.8016 39.4166 29.7916V32.0833ZM13.7499 22C17.2883 22 20.1666 19.1216 20.1666 15.5833C20.1666 12.045 17.2883 9.16663 13.7499 9.16663C10.2116 9.16663 7.33325 12.045 7.33325 15.5833C7.33325 19.1216 10.2116 22 13.7499 22ZM13.7499 11.9166C15.7666 11.9166 17.4166 13.5666 17.4166 15.5833C17.4166 17.6 15.7666 19.25 13.7499 19.25C11.7333 19.25 10.0833 17.6 10.0833 15.5833C10.0833 13.5666 11.7333 11.9166 13.7499 11.9166ZM30.2499 22C33.7883 22 36.6666 19.1216 36.6666 15.5833C36.6666 12.045 33.7883 9.16663 30.2499 9.16663C26.7116 9.16663 23.8333 12.045 23.8333 15.5833C23.8333 19.1216 26.7116 22 30.2499 22ZM30.2499 11.9166C32.2666 11.9166 33.9166 13.5666 33.9166 15.5833C33.9166 17.6 32.2666 19.25 30.2499 19.25C28.2333 19.25 26.5833 17.6 26.5833 15.5833C26.5833 13.5666 28.2333 11.9166 30.2499 11.9166Z"})))}__webpack_require__.p,__webpack_require__.p;let group_chat_ForwardRef=react.forwardRef(SvgGroupChat);function notifications_extends(){return(notifications_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgNotifications(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",notifications_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,notifications_path||(notifications_path=react.createElement("path",{d:"M21.9999 39.875C24.0166 39.875 25.6666 38.225 25.6666 36.2083H18.3333C18.3333 38.225 19.9833 39.875 21.9999 39.875ZM32.9999 28.875V19.7083C32.9999 14.08 30.0116 9.36833 24.7499 8.12167V6.875C24.7499 5.35333 23.5216 4.125 21.9999 4.125C20.4783 4.125 19.2499 5.35333 19.2499 6.875V8.12167C14.0066 9.36833 10.9999 14.0617 10.9999 19.7083V28.875L7.33325 32.5417V34.375H36.6666V32.5417L32.9999 28.875ZM29.3333 30.7083H14.6666V19.7083C14.6666 15.1617 17.4349 11.4583 21.9999 11.4583C26.5649 11.4583 29.3333 15.1617 29.3333 19.7083V30.7083Z"})))}__webpack_require__.p;let notifications_ForwardRef=react.forwardRef(SvgNotifications);function public_channel_extends(){return(public_channel_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgPublicChannel(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",public_channel_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,public_channel_path||(public_channel_path=react.createElement("path",{d:"M32.9998 20.1667C32.9998 21.395 32.9998 22.605 32.9998 23.8334C35.1998 23.8334 38.0598 23.8334 40.3332 23.8334C40.3332 22.605 40.3332 21.395 40.3332 20.1667C38.0598 20.1667 35.1998 20.1667 32.9998 20.1667Z"})),public_channel_path2||(public_channel_path2=react.createElement("path",{d:"M29.3332 32.285C31.0932 33.5867 33.3848 35.31 35.1998 36.6667C35.9332 35.695 36.6665 34.705 37.3998 33.7334C35.5848 32.3767 33.2932 30.6534 31.5332 29.3334C30.7998 30.3234 30.0665 31.3134 29.3332 32.285Z"})),public_channel_path3||(public_channel_path3=react.createElement("path",{d:"M37.3998 10.2667C36.6665 9.29504 35.9332 8.30504 35.1998 7.33337C33.3848 8.69004 31.0932 10.4134 29.3332 11.7334C30.0665 12.705 30.7998 13.695 31.5332 14.6667C33.2932 13.3467 35.5848 11.6417 37.3998 10.2667Z"})),public_channel_path4||(public_channel_path4=react.createElement("path",{d:"M7.33317 16.5C5.3165 16.5 3.6665 18.15 3.6665 20.1667V23.8334C3.6665 25.85 5.3165 27.5 7.33317 27.5H9.1665V34.8334H12.8332V27.5H14.6665L23.8332 33V11L14.6665 16.5H7.33317ZM16.5548 19.635L20.1665 17.4717V26.5284L16.5548 24.365L15.6748 23.8334H7.33317V20.1667H15.6748L16.5548 19.635Z"})),public_channel_path5||(public_channel_path5=react.createElement("path",{d:"M28.4165 22C28.4165 19.5617 27.3532 17.3617 25.6665 15.8584V28.1234C27.3532 26.6384 28.4165 24.4384 28.4165 22Z"})))}__webpack_require__.p,__webpack_require__.p;let public_channel_ForwardRef=react.forwardRef(SvgPublicChannel);__webpack_require__.p;function user_extends(){return(user_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgUser(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",user_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,user_path||(user_path=react.createElement("path",{d:"M21.9999 10.8167C24.1266 10.8167 25.8499 12.54 25.8499 14.6667C25.8499 16.7934 24.1266 18.5167 21.9999 18.5167C19.8733 18.5167 18.1499 16.7934 18.1499 14.6667C18.1499 12.54 19.8733 10.8167 21.9999 10.8167ZM21.9999 27.3167C27.4449 27.3167 33.1833 29.9934 33.1833 31.1667V33.1834H10.8166V31.1667C10.8166 29.9934 16.5549 27.3167 21.9999 27.3167ZM21.9999 7.33337C17.9483 7.33337 14.6666 10.615 14.6666 14.6667C14.6666 18.7184 17.9483 22 21.9999 22C26.0516 22 29.3333 18.7184 29.3333 14.6667C29.3333 10.615 26.0516 7.33337 21.9999 7.33337ZM21.9999 23.8334C17.1049 23.8334 7.33325 26.29 7.33325 31.1667V36.6667H36.6666V31.1667C36.6666 26.29 26.8949 23.8334 21.9999 23.8334Z"})))}__webpack_require__.p,__webpack_require__.p;let user_ForwardRef=react.forwardRef(SvgUser);function attachment_extends(){return(attachment_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgAttachment(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",attachment_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,attachment_path||(attachment_path=react.createElement("path",{d:"M34.9635 19.4074L20.0553 34.3156C17.1903 37.1805 12.5494 37.1805 9.6844 34.3156C6.81944 31.4506 6.81944 26.8096 9.6844 23.9447L25.8889 7.74014C27.6779 5.95117 30.5818 5.95116 32.3707 7.74014C34.1597 9.52912 34.1597 12.433 32.3707 14.222L18.7589 27.8338C18.0459 28.5468 16.8792 28.5468 16.1662 27.8338C15.4532 27.1208 15.4532 25.954 16.1662 25.241L28.4817 12.9256L26.5371 10.9811L14.2217 23.2965C12.4327 25.0855 12.4327 27.9893 14.2217 29.7783C16.0106 31.5673 18.9145 31.5673 20.7035 29.7783L34.3153 16.1665C37.1802 13.3015 37.1802 8.66056 34.3153 5.7956C31.4503 2.93064 26.8093 2.93064 23.9444 5.7956L7.73986 22.0001C3.79891 25.9411 3.79891 32.3192 7.73986 36.2601C11.6808 40.2011 18.0589 40.2011 21.9998 36.2601L36.908 21.3519L34.9635 19.4074Z"})))}__webpack_require__.p;let attachment_ForwardRef=react.forwardRef(SvgAttachment);function audio_file_extends(){return(audio_file_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgAudioFile(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",audio_file_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,audio_file_path||(audio_file_path=react.createElement("path",{d:"M34.375 21.9999C34.375 18.7549 32.505 15.9683 29.7917 14.6116V29.3699C32.505 28.0316 34.375 25.2449 34.375 21.9999ZM9.625 16.4999V27.4999H16.9583L26.125 36.6666V7.33325L16.9583 16.4999H9.625Z"})))}__webpack_require__.p;let audio_file_ForwardRef=react.forwardRef(SvgAudioFile);__webpack_require__.p;__webpack_require__.p;__webpack_require__.p,__webpack_require__("./src/Presentation/icons/media/file.svg");__webpack_require__.p;__webpack_require__.p;function location_extends(){return(location_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgLocation(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",location_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,location_path||(location_path=react.createElement("path",{d:"M22.0001 3.66675C14.9051 3.66675 9.16675 9.40508 9.16675 16.5001C9.16675 26.1251 22.0001 40.3334 22.0001 40.3334C22.0001 40.3334 34.8334 26.1251 34.8334 16.5001C34.8334 9.40508 29.0951 3.66675 22.0001 3.66675ZM12.8334 16.5001C12.8334 11.4401 16.9401 7.33341 22.0001 7.33341C27.0601 7.33341 31.1667 11.4401 31.1667 16.5001C31.1667 21.7801 25.8867 29.6817 22.0001 34.6134C18.1867 29.7184 12.8334 21.7251 12.8334 16.5001Z"})),location_path2||(location_path2=react.createElement("path",{d:"M22.0001 21.0834C24.5314 21.0834 26.5834 19.0314 26.5834 16.5001C26.5834 13.9688 24.5314 11.9167 22.0001 11.9167C19.4688 11.9167 17.4167 13.9688 17.4167 16.5001C17.4167 19.0314 19.4688 21.0834 22.0001 21.0834Z"})))}__webpack_require__.p,__webpack_require__.p;let location_ForwardRef=react.forwardRef(SvgLocation);function text_document_extends(){return(text_document_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgTextDocument(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",text_document_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,text_document_path||(text_document_path=react.createElement("path",{d:"M25.6668 3.66675H11.0002C8.9835 3.66675 7.35183 5.31675 7.35183 7.33341L7.3335 36.6667C7.3335 38.6834 8.96516 40.3334 10.9818 40.3334H33.0002C35.0168 40.3334 36.6668 38.6834 36.6668 36.6667V14.6667L25.6668 3.66675ZM29.3335 33.0001H14.6668V29.3334H29.3335V33.0001ZM29.3335 25.6667H14.6668V22.0001H29.3335V25.6667ZM23.8335 16.5001V6.41675L33.9168 16.5001H23.8335Z"})))}__webpack_require__.p;let text_document_ForwardRef=react.forwardRef(SvgTextDocument);__webpack_require__.p;function banned_extends(){return(banned_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgBanned(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",banned_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,banned_path||(banned_path=react.createElement("path",{d:"M22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 18.6084 8.48841 15.4917 10.4317 13.0167L30.9834 33.5684C28.5084 35.5117 25.3917 36.6667 22.0001 36.6667ZM33.5684 30.9834L13.0167 10.4317C15.4917 8.48841 18.6084 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 25.3917 35.5117 28.5084 33.5684 30.9834Z"})))}__webpack_require__.p,__webpack_require__.p;let banned_ForwardRef=react.forwardRef(SvgBanned);__webpack_require__.p;function muted_extends(){return(muted_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgMuted(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",muted_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,muted_path||(muted_path=react.createElement("path",{d:"M7.95658 5.38086L5.37158 7.96586L13.3649 15.9592L12.8332 16.5092H5.49992V27.5092H12.8332L21.9999 36.6759V24.5942L29.6632 32.2575C28.4716 33.1559 27.1332 33.8709 25.6666 34.2925V38.0692C28.1233 37.5192 30.3783 36.3825 32.2849 34.8609L36.0433 38.6192L38.6283 36.0342L7.95658 5.38086ZM18.3332 27.8209L14.3549 23.8425H9.16658V20.1759H14.3549L15.9682 18.5625L18.3332 20.9275V27.8209ZM34.8333 22.0092C34.8333 23.5125 34.5583 24.9609 34.0816 26.2992L36.8866 29.1042C37.9133 26.9592 38.4999 24.5575 38.4999 22.0092C38.4999 14.1625 33.0183 7.59919 25.6666 5.93086V9.70753C30.9649 11.2842 34.8333 16.1975 34.8333 22.0092ZM21.9999 7.34253L18.5532 10.7892L21.9999 14.2359V7.34253ZM30.2499 22.0092C30.2499 18.7642 28.3799 15.9775 25.6666 14.6209V17.9025L30.2132 22.4492C30.2316 22.3025 30.2499 22.1559 30.2499 22.0092Z"})))}__webpack_require__.p,__webpack_require__.p;let muted_ForwardRef=react.forwardRef(SvgMuted);__webpack_require__.p;function back_extends(){return(back_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgBack(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",back_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,back_path||(back_path=react.createElement("path",{d:"M36.6668 20.1667H14.3552L24.6035 9.91834L22.0002 7.33334L7.3335 22L22.0002 36.6667L24.5852 34.0817L14.3552 23.8333H36.6668V20.1667Z"})))}__webpack_require__.p,__webpack_require__.p;let back_ForwardRef=react.forwardRef(SvgBack);function close_extends(){return(close_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgClose(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",close_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,close_path||(close_path=react.createElement("path",{d:"M35.8332 11.7517L33.2482 9.16666L22.9998 19.415L12.7515 9.16666L10.1665 11.7517L20.4148 22L10.1665 32.2483L12.7515 34.8333L22.9998 24.585L33.2482 34.8333L35.8332 32.2483L25.5848 22L35.8332 11.7517Z"})))}__webpack_require__.p;let close_ForwardRef=react.forwardRef(SvgClose);__webpack_require__.p;var down=__webpack_require__("./src/Presentation/icons/navigation/down.svg");function next_extends(){return(next_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgNext(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",next_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,next_path||(next_path=react.createElement("path",{d:"M17.7925 11L15.2075 13.585L23.6042 22L15.2075 30.415L17.7925 33L28.7925 22L17.7925 11Z"})))}let next_ForwardRef=react.forwardRef(SvgNext);function more_extends(){return(more_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgMore(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",more_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,more_path||(more_path=react.createElement("path",{d:"M21.9999 14.6667C24.0166 14.6667 25.6666 13.0167 25.6666 11C25.6666 8.98334 24.0166 7.33334 21.9999 7.33334C19.9833 7.33334 18.3333 8.98334 18.3333 11C18.3333 13.0167 19.9833 14.6667 21.9999 14.6667ZM21.9999 18.3333C19.9833 18.3333 18.3333 19.9833 18.3333 22C18.3333 24.0167 19.9833 25.6667 21.9999 25.6667C24.0166 25.6667 25.6666 24.0167 25.6666 22C25.6666 19.9833 24.0166 18.3333 21.9999 18.3333ZM21.9999 29.3333C19.9833 29.3333 18.3333 30.9833 18.3333 33C18.3333 35.0167 19.9833 36.6667 21.9999 36.6667C24.0166 36.6667 25.6666 35.0167 25.6666 33C25.6666 30.9833 24.0166 29.3333 21.9999 29.3333Z"})))}__webpack_require__.p,__webpack_require__.p;let more_ForwardRef=react.forwardRef(SvgMore);function refresh_extends(){return(refresh_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgRefresh(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",refresh_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,refresh_path||(refresh_path=react.createElement("path",{d:"M32.3492 11.6416C29.6909 8.98331 26.0425 7.33331 21.9909 7.33331C13.8875 7.33331 7.34253 13.8966 7.34253 22C7.34253 30.1033 13.8875 36.6666 21.9909 36.6666C28.8292 36.6666 34.5309 31.9916 36.1625 25.6666H32.3492C30.8459 29.9383 26.7759 33 21.9909 33C15.9225 33 10.9909 28.0683 10.9909 22C10.9909 15.9316 15.9225 11 21.9909 11C25.0342 11 27.7475 12.265 29.7275 14.2633L23.8242 20.1666H36.6575V7.33331L32.3492 11.6416Z"})))}__webpack_require__.p,__webpack_require__.p;let refresh_ForwardRef=react.forwardRef(SvgRefresh);function search_extends(){return(search_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgSearch(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",search_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,search_path||(search_path=react.createElement("path",{d:"M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z"})))}__webpack_require__.p;let search_ForwardRef=react.forwardRef(SvgSearch);__webpack_require__.p,__webpack_require__.p;var error=__webpack_require__("./src/Presentation/icons/status/error.svg");function information_extends(){return(information_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgInformation(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",information_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,information_path||(information_path=react.createElement("path",{d:"M20.1667 27.5001H23.8334V31.1667H20.1667V27.5001ZM20.1667 12.8334H23.8334V23.8334H20.1667V12.8334ZM21.9817 3.66675C11.8617 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8617 40.3334 21.9817 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 21.9817 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 13.8967 13.8967 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 30.1034 30.1034 36.6667 22.0001 36.6667Z"})))}__webpack_require__.p;let information_ForwardRef=react.forwardRef(SvgInformation);function loader_extends(){return(loader_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgLoader(_ref,svgRef){let{title,titleId,...props}=_ref;return react.createElement("svg",loader_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react.createElement("title",{id:titleId},title):null,loader_path||(loader_path=react.createElement("path",{d:"M20.1666 7.46163V3.7583C16.4816 4.12497 13.1266 5.59163 10.4133 7.80997L13.0166 10.4316C15.0516 8.85497 17.49 7.79163 20.1666 7.46163ZM33.5866 7.80997C30.8733 5.59163 27.5183 4.12497 23.8333 3.7583V7.46163C26.51 7.79163 28.9483 8.85497 30.9833 10.4316L33.5866 7.80997ZM36.5383 20.1666H40.2416C39.875 16.4816 38.4083 13.1266 36.19 10.4133L33.5683 13.0166C35.145 15.0516 36.2083 17.49 36.5383 20.1666ZM10.4316 13.0166L7.80997 10.4133C5.59163 13.1266 4.12497 16.4816 3.7583 20.1666H7.46163C7.79163 17.49 8.85497 15.0516 10.4316 13.0166ZM7.46163 23.8333H3.7583C4.12497 27.5183 5.59163 30.8733 7.80997 33.5866L10.4316 30.965C8.85497 28.9483 7.79163 26.51 7.46163 23.8333ZM33.5683 30.9833L36.19 33.605C38.4083 30.8916 39.875 27.5183 40.2416 23.8516H36.5383C36.2083 26.51 35.145 28.9483 33.5683 30.9833ZM23.8333 36.5383V40.2416C27.5183 39.875 30.8733 38.4083 33.5866 36.19L30.965 33.5683C28.9483 35.145 26.51 36.2083 23.8333 36.5383ZM10.4133 36.19C13.1266 38.4083 16.5 39.875 20.1666 40.2416V36.5383C17.49 36.2083 15.0516 35.145 13.0166 33.5683L10.4133 36.19Z"})))}__webpack_require__.p;let loader_ForwardRef=react.forwardRef(SvgLoader);__webpack_require__.p;__webpack_require__.p,__webpack_require__("./src/Presentation/icons/status/sent.svg"),__webpack_require__("./src/Presentation/icons/status/viewed-delivered.svg");__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p,__webpack_require__.p,__webpack_require__("./src/Presentation/icons/toggle/pause.svg");var play=__webpack_require__("./src/Presentation/icons/toggle/play.svg");__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p;__webpack_require__.p,__webpack_require__.p},"./src/Presentation/icons/media/file.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgFile(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M14.6666 29.3334H29.3333V33.0001H14.6666V29.3334ZM14.6666 22.0001H29.3333V25.6667H14.6666V22.0001ZM25.6666 3.66675H10.9999C8.98325 3.66675 7.33325 5.31675 7.33325 7.33341V36.6667C7.33325 38.6834 8.96492 40.3334 10.9816 40.3334H32.9999C35.0166 40.3334 36.6666 38.6834 36.6666 36.6667V14.6667L25.6666 3.66675ZM32.9999 36.6667H10.9999V7.33341H23.8333V16.5001H32.9999V36.6667Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgFile);__webpack_require__.p},"./src/Presentation/icons/navigation/down.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgDown(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M30.415 16.2075L22 24.6042L13.585 16.2075L11 18.7925L22 29.7925L33 18.7925L30.415 16.2075Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgDown);__webpack_require__.p},"./src/Presentation/icons/status/error.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgError(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M21.9999 11.8983L35.8049 35.7499H8.19492L21.9999 11.8983ZM21.9999 4.58325L1.83325 39.4166H42.1666L21.9999 4.58325ZM23.8333 30.2499H20.1666V33.9166H23.8333V30.2499ZM23.8333 19.2499H20.1666V26.5833H23.8333V19.2499Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgError);__webpack_require__.p},"./src/Presentation/icons/status/sent.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgSent(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M16.1334 29.1499L8.43337 21.4499L5.8667 24.0166L16.1334 34.2832L38.1334 12.2832L35.5667 9.71655L16.1334 29.1499Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgSent);__webpack_require__.p},"./src/Presentation/icons/status/viewed-delivered.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgViewedDelivered(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M32.9358 12.2925L30.3508 9.70752L18.7275 21.3309L21.3125 23.9159L32.9358 12.2925ZM40.7092 9.70752L21.3125 29.1042L13.6492 21.4592L11.0642 24.0442L21.3125 34.2925L43.3125 12.2925L40.7092 9.70752ZM0.6875 24.0442L10.9358 34.2925L13.5208 31.7075L3.29083 21.4592L0.6875 24.0442Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgViewedDelivered);__webpack_require__.p},"./src/Presentation/icons/toggle/pause.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgPause(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M11 34.8334H18.3333V9.16675H11V34.8334ZM25.6667 9.16675V34.8334H33V9.16675H25.6667Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgPause);__webpack_require__.p},"./src/Presentation/icons/toggle/play.svg":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>ForwardRef});var _path,react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");function _extends(){return(_extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n}).apply(null,arguments)}function SvgPlay(_ref,svgRef){let{title,titleId,...props}=_ref;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",_extends({viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",ref:svgRef,"aria-labelledby":titleId},props),title?react__WEBPACK_IMPORTED_MODULE_0__.createElement("title",{id:titleId},title):null,_path||(_path=react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M12.9165 9.16675V34.8334L33.0832 22.0001L12.9165 9.16675Z"})))}let ForwardRef=react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(SvgPlay);__webpack_require__.p}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunkquickblox_react_ui_kit=self.webpackChunkquickblox_react_ui_kit||[]).push([[421],{"./node_modules/@storybook/components/dist/syntaxhighlighter-MJWPISIS.mjs":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{SyntaxHighlighter:()=>_chunk_VZ2J7KYM_mjs__WEBPACK_IMPORTED_MODULE_0__.bF,createCopyToClipboardFunction:()=>_chunk_VZ2J7KYM_mjs__WEBPACK_IMPORTED_MODULE_0__.zH,default:()=>_chunk_VZ2J7KYM_mjs__WEBPACK_IMPORTED_MODULE_0__.L0});var _chunk_VZ2J7KYM_mjs__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/@storybook/components/dist/chunk-VZ2J7KYM.mjs")}}]);