quickblox-react-ui-kit 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (538) hide show
  1. package/.claude/settings.local.json +15 -0
  2. package/dist/App.d.ts +1 -0
  3. package/dist/CommonTypes/BaseViewModel.d.ts +2 -1
  4. package/dist/CommonTypes/CommonTypes.d.ts +1 -0
  5. package/dist/CommonTypes/FunctionResult.d.ts +1 -0
  6. package/dist/Data/Creator.d.ts +1 -0
  7. package/dist/Data/DefaultConfigurations.d.ts +1 -0
  8. package/dist/Data/Stubs.d.ts +1 -0
  9. package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +1 -0
  10. package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +1 -0
  11. package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +1 -0
  12. package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +1 -0
  13. package/dist/Data/dto/file/LocalFileDTO.d.ts +1 -0
  14. package/dist/Data/dto/file/RemoteFileDTO.d.ts +1 -0
  15. package/dist/Data/dto/message/LocalMessageDTO.d.ts +1 -0
  16. package/dist/Data/dto/message/LocalMessagesDTO.d.ts +1 -0
  17. package/dist/Data/dto/message/RemoteMessageDTO.d.ts +1 -0
  18. package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +1 -0
  19. package/dist/Data/dto/user/LocalUserDTO.d.ts +1 -0
  20. package/dist/Data/dto/user/LocalUsersDTO.d.ts +1 -0
  21. package/dist/Data/dto/user/RemoteUserDTO.d.ts +1 -0
  22. package/dist/Data/dto/user/RemoteUsersDTO.d.ts +1 -0
  23. package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +1 -0
  24. package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +1 -0
  25. package/dist/Data/mapper/FileLocalDTOMapper.d.ts +1 -0
  26. package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +1 -0
  27. package/dist/Data/mapper/IMapper.d.ts +1 -0
  28. package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +1 -0
  29. package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +1 -0
  30. package/dist/Data/mapper/UserLocalDTOMapper.d.ts +1 -0
  31. package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +1 -0
  32. package/dist/Data/repository/ConnectionRepository.d.ts +1 -0
  33. package/dist/Data/repository/ConnectionRepository.d.ts.map +1 -1
  34. package/dist/Data/repository/DialogsRepository.d.ts +1 -0
  35. package/dist/Data/repository/EventMessagesRepository.d.ts +1 -0
  36. package/dist/Data/repository/FileRepository.d.ts +1 -0
  37. package/dist/Data/repository/MessagesRepository.d.ts +1 -0
  38. package/dist/Data/repository/UsersRepository.d.ts +1 -0
  39. package/dist/Data/source/AISource.d.ts +1 -0
  40. package/dist/Data/source/exception/LocalDataSourceException.d.ts +1 -0
  41. package/dist/Data/source/exception/MapperDTOException.d.ts +1 -0
  42. package/dist/Data/source/exception/RemoteDataSourceException.d.ts +1 -0
  43. package/dist/Data/source/exception/RepositoryException.d.ts +1 -0
  44. package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +1 -0
  45. package/dist/Data/source/local/ILocalDataSource.d.ts +1 -0
  46. package/dist/Data/source/local/ILocalFileDataSource.d.ts +1 -0
  47. package/dist/Data/source/local/LocalDataSource.d.ts +1 -0
  48. package/dist/Data/source/local/LocalFileDataSource.d.ts +1 -0
  49. package/dist/Data/source/remote/IRemoteDataSource.d.ts +1 -0
  50. package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +1 -0
  51. package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +1 -0
  52. package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +1 -0
  53. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +2 -0
  54. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts.map +1 -1
  55. package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +1 -0
  56. package/dist/Data/source/remote/RemoteDataSource.d.ts +1 -0
  57. package/dist/Domain/entity/Chat.d.ts +1 -0
  58. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +1 -0
  59. package/dist/Domain/entity/CustomDataEntity.d.ts +1 -0
  60. package/dist/Domain/entity/DialogEntity.d.ts +1 -0
  61. package/dist/Domain/entity/DialogEventInfo.d.ts +1 -0
  62. package/dist/Domain/entity/DialogTypes.d.ts +1 -0
  63. package/dist/Domain/entity/EventMessageType.d.ts +1 -0
  64. package/dist/Domain/entity/FileEntity.d.ts +1 -0
  65. package/dist/Domain/entity/FileTypes.d.ts +1 -0
  66. package/dist/Domain/entity/GroupDialogEntity.d.ts +1 -0
  67. package/dist/Domain/entity/LastMessageEntity.d.ts +1 -0
  68. package/dist/Domain/entity/MessageEntity.d.ts +1 -0
  69. package/dist/Domain/entity/NotificationTypes.d.ts +1 -0
  70. package/dist/Domain/entity/PrivateDialogEntity.d.ts +1 -0
  71. package/dist/Domain/entity/PublicDialogEntity.d.ts +1 -0
  72. package/dist/Domain/entity/UserEntity.d.ts +1 -0
  73. package/dist/Domain/exception/domain/DomainExecption.d.ts +1 -0
  74. package/dist/Domain/repository/IDialogsRepository.d.ts +1 -0
  75. package/dist/Domain/repository/IFileRepository.d.ts +1 -0
  76. package/dist/Domain/repository/IMessagesRepository.d.ts +1 -0
  77. package/dist/Domain/repository/IUsersRepository.d.ts +1 -0
  78. package/dist/Domain/repository/Pagination.d.ts +1 -0
  79. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +1 -0
  80. package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +1 -0
  81. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +1 -0
  82. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +1 -0
  83. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +1 -0
  84. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +1 -0
  85. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +1 -0
  86. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +1 -0
  87. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +1 -0
  88. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +1 -0
  89. package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +1 -0
  90. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +1 -0
  91. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +1 -0
  92. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +1 -0
  93. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +1 -0
  94. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +1 -0
  95. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts.map +1 -1
  96. package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +1 -0
  97. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +1 -0
  98. package/dist/Domain/use_cases/UploadFileUseCase.d.ts +1 -0
  99. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +1 -0
  100. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts.map +1 -1
  101. package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +1 -0
  102. package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +1 -0
  103. package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +1 -0
  104. package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +1 -0
  105. package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +1 -0
  106. package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +1 -0
  107. package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +1 -0
  108. package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +1 -0
  109. package/dist/Domain/use_cases/base/BaseUseCase.d.ts +1 -0
  110. package/dist/Domain/use_cases/base/IUseCase.d.ts +1 -0
  111. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +1 -0
  112. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +1 -0
  113. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +1 -0
  114. package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +1 -0
  115. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +1 -0
  116. package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +1 -0
  117. package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +1 -0
  118. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +1 -0
  119. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +2 -1
  120. package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +1 -0
  121. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +2 -1
  122. package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +1 -0
  123. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +1 -0
  124. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +1 -0
  125. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +1 -0
  126. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +1 -0
  127. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +1 -0
  128. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +1 -0
  129. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +1 -0
  130. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +1 -0
  131. package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +1 -0
  132. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +2 -1
  133. package/dist/Presentation/Views/Dialog/Dialog.d.ts +1 -1
  134. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +1 -0
  135. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +1 -1
  136. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +1 -0
  137. package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +1 -0
  138. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +1 -1
  139. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +1 -1
  140. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +1 -0
  141. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +1 -0
  142. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +1 -0
  143. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +1 -0
  144. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +1 -0
  145. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +1 -0
  146. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +1 -0
  147. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +1 -1
  148. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +1 -0
  149. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +1 -1
  150. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +1 -0
  151. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +1 -1
  152. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +1 -1
  153. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +1 -1
  154. package/dist/Presentation/Views/Dialog/Message/Message.d.ts +2 -1
  155. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +1 -0
  156. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +1 -0
  157. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +1 -0
  158. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +2 -1
  159. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +1 -0
  160. package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +1 -0
  161. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +1 -1
  162. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +2 -1
  163. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +1 -1
  164. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +1 -0
  165. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +1 -1
  166. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +1 -0
  167. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +1 -0
  168. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +1 -1
  169. package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +1 -0
  170. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +1 -1
  171. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +1 -0
  172. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +1 -0
  173. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +1 -0
  174. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +1 -1
  175. package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +1 -0
  176. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +1 -0
  177. package/dist/Presentation/Views/DialogList/DialogList.d.ts +1 -1
  178. package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +1 -0
  179. package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +1 -0
  180. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +1 -0
  181. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +1 -0
  182. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +1 -0
  183. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +1 -0
  184. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +1 -0
  185. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +1 -0
  186. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +1 -0
  187. package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +1 -0
  188. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +1 -0
  189. package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +1 -0
  190. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +1 -0
  191. package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +1 -0
  192. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +2 -1
  193. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +1 -0
  194. package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +1 -0
  195. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +1 -0
  196. package/dist/Presentation/components/Navbar.d.ts +1 -0
  197. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +1 -1
  198. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +1 -1
  199. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +1 -1
  200. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +1 -1
  201. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +1 -0
  202. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +1 -0
  203. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +1 -1
  204. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +1 -0
  205. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +1 -0
  206. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +1 -0
  207. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +1 -0
  208. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +1 -0
  209. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +1 -0
  210. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +1 -0
  211. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +1 -0
  212. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +1 -0
  213. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +1 -0
  214. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +1 -0
  215. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +1 -0
  216. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +1 -0
  217. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +1 -0
  218. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +1 -0
  219. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +1 -0
  220. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +1 -0
  221. package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +1 -0
  222. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +1 -0
  223. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +1 -0
  224. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +1 -0
  225. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +1 -0
  226. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +1 -0
  227. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +1 -0
  228. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +1 -0
  229. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +1 -0
  230. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +1 -0
  231. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +1 -0
  232. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +1 -0
  233. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +1 -0
  234. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +1 -0
  235. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +1 -0
  236. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +1 -0
  237. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +1 -0
  238. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +1 -0
  239. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +1 -0
  240. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +1 -0
  241. package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +1 -0
  242. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +1 -0
  243. package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +1 -0
  244. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +1 -0
  245. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +1 -0
  246. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +1 -0
  247. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +1 -0
  248. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +1 -0
  249. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +1 -0
  250. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +1 -0
  251. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +1 -0
  252. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +1 -0
  253. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +1 -0
  254. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +1 -0
  255. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +1 -0
  256. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +1 -0
  257. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +1 -0
  258. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +1 -0
  259. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +1 -0
  260. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +1 -0
  261. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +1 -0
  262. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +1 -0
  263. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +1 -0
  264. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +1 -0
  265. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +1 -0
  266. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +1 -0
  267. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +1 -0
  268. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +1 -0
  269. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +1 -0
  270. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +1 -0
  271. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +1 -0
  272. package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +1 -0
  273. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +1 -0
  274. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +1 -0
  275. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +1 -0
  276. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +1 -0
  277. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +1 -0
  278. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +1 -0
  279. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +1 -0
  280. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +1 -0
  281. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +1 -0
  282. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +1 -0
  283. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +1 -0
  284. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +1 -0
  285. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +1 -0
  286. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +1 -0
  287. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +1 -0
  288. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +1 -0
  289. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +1 -0
  290. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +1 -0
  291. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +1 -0
  292. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +1 -0
  293. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +1 -0
  294. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +1 -0
  295. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +1 -0
  296. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +1 -0
  297. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +1 -0
  298. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +1 -0
  299. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +1 -0
  300. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +1 -0
  301. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +1 -0
  302. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +1 -0
  303. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +1 -0
  304. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +1 -0
  305. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +1 -0
  306. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +1 -0
  307. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +1 -0
  308. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +1 -0
  309. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +1 -0
  310. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +1 -0
  311. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +1 -0
  312. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +1 -0
  313. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +1 -0
  314. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +1 -0
  315. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +1 -0
  316. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +1 -0
  317. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +1 -0
  318. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +1 -0
  319. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +1 -0
  320. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +1 -0
  321. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +1 -0
  322. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +1 -0
  323. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +1 -0
  324. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +1 -0
  325. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +1 -1
  326. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +1 -1
  327. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +1 -1
  328. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +1 -1
  329. package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +1 -0
  330. package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +1 -0
  331. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -0
  332. package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -0
  333. package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -0
  334. package/dist/Presentation/components/containers/SectionList/index.d.ts +1 -0
  335. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +1 -1
  336. package/dist/Presentation/icons/actions/index.d.ts +1 -0
  337. package/dist/Presentation/icons/contents/index.d.ts +1 -0
  338. package/dist/Presentation/icons/index.d.ts +1 -0
  339. package/dist/Presentation/icons/media/index.d.ts +1 -0
  340. package/dist/Presentation/icons/moderation/index.d.ts +1 -0
  341. package/dist/Presentation/icons/navigation/index.d.ts +1 -0
  342. package/dist/Presentation/icons/status/index.d.ts +1 -0
  343. package/dist/Presentation/icons/toggle/index.d.ts +1 -0
  344. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +1 -1
  345. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -0
  346. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +1 -1
  347. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +1 -1
  348. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +1 -0
  349. package/dist/Presentation/providers/ProviderProps.d.ts +1 -1
  350. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +1 -1
  351. package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +1 -0
  352. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +1 -0
  353. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +1 -0
  354. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +1 -0
  355. package/dist/Presentation/themes/DarkTheme.d.ts +1 -0
  356. package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +1 -0
  357. package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +1 -0
  358. package/dist/Presentation/themes/LightTheme.d.ts +1 -0
  359. package/dist/Presentation/themes/ThemeScheme.d.ts +1 -0
  360. package/dist/Presentation/themes/UiKitTheme.d.ts +1 -0
  361. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +1 -1
  362. package/dist/Presentation/ui-components/Badge/Badge.d.ts +1 -0
  363. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +1 -0
  364. package/dist/Presentation/ui-components/Button/Button.d.ts +1 -1
  365. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +1 -0
  366. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +1 -0
  367. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +1 -0
  368. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +1 -0
  369. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +1 -1
  370. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +1 -1
  371. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +1 -1
  372. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +1 -1
  373. package/dist/Presentation/ui-components/Header/Header.d.ts +1 -1
  374. package/dist/Presentation/ui-components/Loader/Loader.d.ts +1 -0
  375. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +1 -0
  376. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +1 -0
  377. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +1 -0
  378. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +1 -0
  379. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +1 -0
  380. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +1 -0
  381. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +1 -0
  382. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +1 -0
  383. package/dist/Presentation/ui-components/Message/Message.d.ts +1 -1
  384. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +1 -0
  385. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +1 -0
  386. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +1 -1
  387. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +1 -1
  388. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +1 -0
  389. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +1 -0
  390. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +1 -0
  391. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts.map +1 -1
  392. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +1 -0
  393. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +1 -0
  394. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +1 -1
  395. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +1 -0
  396. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +1 -0
  397. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +1 -1
  398. package/dist/Presentation/ui-components/TextField/TextField.d.ts +1 -1
  399. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +1 -0
  400. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +1 -1
  401. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +1 -0
  402. package/dist/Presentation/ui-components/index.d.ts +1 -0
  403. package/dist/QBconfig.d.ts +1 -0
  404. package/dist/hooks/useModal.d.ts +1 -0
  405. package/dist/hooks/useQuickBloxUIKit.d.ts +1 -1
  406. package/dist/index-ui.d.ts +1 -0
  407. package/dist/index-ui.js +43359 -58620
  408. package/dist/index.d.ts +1 -0
  409. package/dist/qb-api-calls/index.d.ts +1 -0
  410. package/dist/setupTests.d.ts +1 -0
  411. package/dist/utils/DateTimeFormatter.d.ts +1 -0
  412. package/dist/utils/formatFileSize.d.ts +1 -0
  413. package/dist/utils/parse.d.ts +1 -0
  414. package/dist/utils/utils.d.ts +1 -0
  415. package/package.json +14 -8
  416. package/src/Data/repository/ConnectionRepository.ts +3 -2
  417. package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +39 -22
  418. package/src/Domain/use_cases/SyncDialogsUseCase.ts +3 -3
  419. package/src/Domain/use_cases/UserTypingMessageUseCase.ts +4 -2
  420. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +24 -8
  421. package/storybook-static/161.77e7dbc5.iframe.bundle.js +2 -0
  422. package/storybook-static/217.cb8da73c.iframe.bundle.js +408 -0
  423. package/storybook-static/217.cb8da73c.iframe.bundle.js.map +1 -0
  424. package/storybook-static/263.f039edee.iframe.bundle.js +2 -0
  425. package/storybook-static/294.7ed84cb5.iframe.bundle.js +1 -0
  426. package/storybook-static/338.ed5286bb.iframe.bundle.js +2 -0
  427. package/storybook-static/363.fe646024.iframe.bundle.js +2 -0
  428. package/storybook-static/{363.f6fcc1b9.iframe.bundle.js.LICENSE.txt → 363.fe646024.iframe.bundle.js.LICENSE.txt} +0 -7
  429. package/storybook-static/364.fb3fc9b4.iframe.bundle.js +1 -0
  430. package/storybook-static/488.a47f0de8.iframe.bundle.js +1 -0
  431. package/storybook-static/559.fdf11e08.iframe.bundle.js +2 -0
  432. package/storybook-static/618.ab5566c8.iframe.bundle.js +1 -0
  433. package/storybook-static/844.5804474b.iframe.bundle.js +95 -0
  434. package/storybook-static/844.5804474b.iframe.bundle.js.map +1 -0
  435. package/storybook-static/936.ba75ae44.iframe.bundle.js +1 -0
  436. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.6977856e.iframe.bundle.js +2 -0
  437. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.d77c6500.iframe.bundle.js +2 -0
  438. package/storybook-static/Presentation-ui-components-Button-Button-stories.05f2f5b7.iframe.bundle.js +2 -0
  439. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.118df514.iframe.bundle.js +1 -0
  440. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e9d3dc6b.iframe.bundle.js +2 -0
  441. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.7d74bffa.iframe.bundle.js +2 -0
  442. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.d92e6904.iframe.bundle.js +2 -0
  443. package/storybook-static/Presentation-ui-components-Header-Header-stories.b9a00187.iframe.bundle.js +2 -0
  444. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.f484b131.iframe.bundle.js +2 -0
  445. package/storybook-static/Presentation-ui-components-Message-Message-stories.66867b7e.iframe.bundle.js +2 -0
  446. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.d72f098b.iframe.bundle.js +1 -0
  447. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.7d9e0991.iframe.bundle.js +1 -0
  448. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.1e6bd1cd.iframe.bundle.js +2 -0
  449. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.44c68c03.iframe.bundle.js +2 -0
  450. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.3e87329b.iframe.bundle.js +2 -0
  451. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.ec3e7d5f.iframe.bundle.js +2 -0
  452. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.2721621c.iframe.bundle.js +1 -0
  453. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.33b23eab.iframe.bundle.js +2 -0
  454. package/storybook-static/docs-Introduction-mdx.416f8bf9.iframe.bundle.js +1 -0
  455. package/storybook-static/docs-Styling-mdx.c119b271.iframe.bundle.js +1 -0
  456. package/storybook-static/iframe.html +5 -3
  457. package/storybook-static/main.bfaba8e3.iframe.bundle.js +1 -0
  458. package/storybook-static/project.json +1 -1
  459. package/storybook-static/runtime~main.b1ec3380.iframe.bundle.js +1 -0
  460. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +27 -27
  461. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +1 -1
  462. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +1 -1
  463. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +74 -71
  464. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +73 -70
  465. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +1 -1
  466. package/storybook-static/sb-addons/interactions-11/manager-bundle.js +6 -6
  467. package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +18 -18
  468. package/storybook-static/sb-manager/globals-runtime.js +10691 -11043
  469. package/storybook-static/sb-preview/runtime.js +238 -238
  470. package/dist/Presentation/components/Button.d.ts +0 -4
  471. package/dist/Presentation/components/TextInput.d.ts +0 -1
  472. package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +0 -8
  473. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +0 -9
  474. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +0 -6
  475. package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +0 -28
  476. package/dist/Presentation/ui-components/Header/Header.stories.d.ts +0 -9
  477. package/dist/Presentation/ui-components/Message/Message.stories.d.ts +0 -8
  478. package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +0 -8
  479. package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +0 -7
  480. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +0 -8
  481. package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +0 -6
  482. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +0 -86
  483. package/storybook-static/161.53da4e03.iframe.bundle.js +0 -2
  484. package/storybook-static/167.88fc69a9.iframe.bundle.js +0 -1
  485. package/storybook-static/217.f067a49f.iframe.bundle.js +0 -405
  486. package/storybook-static/217.f067a49f.iframe.bundle.js.map +0 -1
  487. package/storybook-static/294.b81cdbca.iframe.bundle.js +0 -1
  488. package/storybook-static/363.f6fcc1b9.iframe.bundle.js +0 -2
  489. package/storybook-static/364.988cd801.iframe.bundle.js +0 -1
  490. package/storybook-static/488.3cd3942e.iframe.bundle.js +0 -1
  491. package/storybook-static/559.9e64a6f5.iframe.bundle.js +0 -2
  492. package/storybook-static/735.6ee62079.iframe.bundle.js +0 -2
  493. package/storybook-static/844.be4346f2.iframe.bundle.js +0 -95
  494. package/storybook-static/844.be4346f2.iframe.bundle.js.map +0 -1
  495. package/storybook-static/936.8546c1d8.iframe.bundle.js +0 -1
  496. package/storybook-static/961.d47fc2bc.iframe.bundle.js +0 -2
  497. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js +0 -2
  498. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js +0 -2
  499. package/storybook-static/Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js +0 -2
  500. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.cd797979.iframe.bundle.js +0 -1
  501. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js +0 -2
  502. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.46997cb0.iframe.bundle.js +0 -2
  503. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js +0 -2
  504. package/storybook-static/Presentation-ui-components-Header-Header-stories.a4edfcc6.iframe.bundle.js +0 -2
  505. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js +0 -2
  506. package/storybook-static/Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js +0 -2
  507. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.2af0de55.iframe.bundle.js +0 -1
  508. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.b927d1e1.iframe.bundle.js +0 -1
  509. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js +0 -2
  510. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js +0 -2
  511. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js +0 -2
  512. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js +0 -2
  513. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.4f00432b.iframe.bundle.js +0 -1
  514. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js +0 -2
  515. package/storybook-static/docs-Introduction-mdx.5addfa61.iframe.bundle.js +0 -1
  516. package/storybook-static/docs-Styling-mdx.9f4235f1.iframe.bundle.js +0 -1
  517. package/storybook-static/main.59f682e8.iframe.bundle.js +0 -1
  518. package/storybook-static/runtime~main.26de4dfd.iframe.bundle.js +0 -1
  519. /package/storybook-static/{161.53da4e03.iframe.bundle.js.LICENSE.txt → 161.77e7dbc5.iframe.bundle.js.LICENSE.txt} +0 -0
  520. /package/storybook-static/{217.f067a49f.iframe.bundle.js.LICENSE.txt → 217.cb8da73c.iframe.bundle.js.LICENSE.txt} +0 -0
  521. /package/storybook-static/{961.d47fc2bc.iframe.bundle.js.LICENSE.txt → 263.f039edee.iframe.bundle.js.LICENSE.txt} +0 -0
  522. /package/storybook-static/{735.6ee62079.iframe.bundle.js.LICENSE.txt → 338.ed5286bb.iframe.bundle.js.LICENSE.txt} +0 -0
  523. /package/storybook-static/{559.9e64a6f5.iframe.bundle.js.LICENSE.txt → 559.fdf11e08.iframe.bundle.js.LICENSE.txt} +0 -0
  524. /package/storybook-static/{844.be4346f2.iframe.bundle.js.LICENSE.txt → 844.5804474b.iframe.bundle.js.LICENSE.txt} +0 -0
  525. /package/storybook-static/{Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Avatar-avatar-stories.6977856e.iframe.bundle.js.LICENSE.txt} +0 -0
  526. /package/storybook-static/{Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Badge-Badge-stories.d77c6500.iframe.bundle.js.LICENSE.txt} +0 -0
  527. /package/storybook-static/{Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Button-Button-stories.05f2f5b7.iframe.bundle.js.LICENSE.txt} +0 -0
  528. /package/storybook-static/{Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.e9d3dc6b.iframe.bundle.js.LICENSE.txt} +0 -0
  529. /package/storybook-static/{Presentation-ui-components-DialogWindow-DialogWindow-stories.46997cb0.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogWindow-DialogWindow-stories.7d74bffa.iframe.bundle.js.LICENSE.txt} +0 -0
  530. /package/storybook-static/{Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Dropdown-Dropdown-stories.d92e6904.iframe.bundle.js.LICENSE.txt} +0 -0
  531. /package/storybook-static/{Presentation-ui-components-Header-Header-stories.a4edfcc6.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Header-Header-stories.b9a00187.iframe.bundle.js.LICENSE.txt} +0 -0
  532. /package/storybook-static/{Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Loader-Loader-stories.f484b131.iframe.bundle.js.LICENSE.txt} +0 -0
  533. /package/storybook-static/{Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Message-Message-stories.66867b7e.iframe.bundle.js.LICENSE.txt} +0 -0
  534. /package/storybook-static/{Presentation-ui-components-Placeholder-Placeholder-stories.34dfadb1.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Placeholder-Placeholder-stories.1e6bd1cd.iframe.bundle.js.LICENSE.txt} +0 -0
  535. /package/storybook-static/{Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.9b4eff15.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.44c68c03.iframe.bundle.js.LICENSE.txt} +0 -0
  536. /package/storybook-static/{Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-SettingsItem-SettingsItem-stories.3e87329b.iframe.bundle.js.LICENSE.txt} +0 -0
  537. /package/storybook-static/{Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-TextField-TextField-stories.ec3e7d5f.iframe.bundle.js.LICENSE.txt} +0 -0
  538. /package/storybook-static/{Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-UserListItem-UserListItem-stories.33b23eab.iframe.bundle.js.LICENSE.txt} +0 -0
@@ -1,3 +1,3 @@
1
1
  try{
2
- (()=>{var me=Object.create;var J=Object.defineProperty;var he=Object.getOwnPropertyDescriptor;var fe=Object.getOwnPropertyNames;var ge=Object.getPrototypeOf,we=Object.prototype.hasOwnProperty;var _=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,a)=>(typeof require<"u"?require:t)[a]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var N=(e,t)=>()=>(e&&(t=e(e=0)),t);var be=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var ye=(e,t,a,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let c of fe(t))!we.call(e,c)&&c!==a&&J(e,c,{get:()=>t[c],enumerable:!(s=he(t,c))||s.enumerable});return e};var Se=(e,t,a)=>(a=e!=null?me(ge(e)):{},ye(t||!e||!e.__esModule?J(a,"default",{value:e,enumerable:!0}):a,e));var f=N(()=>{});var g=N(()=>{});var w=N(()=>{});var le=be((ce,Z)=>{f();g();w();(function(e){if(typeof ce=="object"&&typeof Z<"u")Z.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var t;typeof window<"u"||typeof window<"u"?t=window:typeof self<"u"?t=self:t=this,t.memoizerific=e()}})(function(){var e,t,a;return function s(c,b,p){function o(n,d){if(!b[n]){if(!c[n]){var r=typeof _=="function"&&_;if(!d&&r)return r(n,!0);if(i)return i(n,!0);var u=new Error("Cannot find module '"+n+"'");throw u.code="MODULE_NOT_FOUND",u}var I=b[n]={exports:{}};c[n][0].call(I.exports,function(h){var y=c[n][1][h];return o(y||h)},I,I.exports,s,c,b,p)}return b[n].exports}for(var i=typeof _=="function"&&_,m=0;m<p.length;m++)o(p[m]);return o}({1:[function(s,c,b){c.exports=function(p){if(typeof Map!="function"||p){var o=s("./similar");return new o}else return new Map}},{"./similar":2}],2:[function(s,c,b){function p(){return this.list=[],this.lastItem=void 0,this.size=0,this}p.prototype.get=function(o){var i;if(this.lastItem&&this.isEqual(this.lastItem.key,o))return this.lastItem.val;if(i=this.indexOf(o),i>=0)return this.lastItem=this.list[i],this.list[i].val},p.prototype.set=function(o,i){var m;return this.lastItem&&this.isEqual(this.lastItem.key,o)?(this.lastItem.val=i,this):(m=this.indexOf(o),m>=0?(this.lastItem=this.list[m],this.list[m].val=i,this):(this.lastItem={key:o,val:i},this.list.push(this.lastItem),this.size++,this))},p.prototype.delete=function(o){var i;if(this.lastItem&&this.isEqual(this.lastItem.key,o)&&(this.lastItem=void 0),i=this.indexOf(o),i>=0)return this.size--,this.list.splice(i,1)[0]},p.prototype.has=function(o){var i;return this.lastItem&&this.isEqual(this.lastItem.key,o)?!0:(i=this.indexOf(o),i>=0?(this.lastItem=this.list[i],!0):!1)},p.prototype.forEach=function(o,i){var m;for(m=0;m<this.size;m++)o.call(i||this,this.list[m].val,this.list[m].key,this)},p.prototype.indexOf=function(o){var i;for(i=0;i<this.size;i++)if(this.isEqual(this.list[i].key,o))return i;return-1},p.prototype.isEqual=function(o,i){return o===i||o!==o&&i!==i},c.exports=p},{}],3:[function(s,c,b){var p=s("map-or-similar");c.exports=function(n){var d=new p(!1),r=[];return function(u){var I=function(){var h=d,y,k,S=arguments.length-1,M=Array(S+1),A=!0,C;if((I.numArgs||I.numArgs===0)&&I.numArgs!==S+1)throw new Error("Memoizerific functions should always be called with the same number of arguments");for(C=0;C<S;C++){if(M[C]={cacheItem:h,arg:arguments[C]},h.has(arguments[C])){h=h.get(arguments[C]);continue}A=!1,y=new p(!1),h.set(arguments[C],y),h=y}return A&&(h.has(arguments[S])?k=h.get(arguments[S]):A=!1),A||(k=u.apply(null,arguments),h.set(arguments[S],k)),n>0&&(M[S]={cacheItem:h,arg:arguments[S]},A?o(r,M):r.push(M),r.length>n&&i(r.shift())),I.wasMemoized=A,I.numArgs=S+1,k};return I.limit=n,I.wasMemoized=!1,I.cache=d,I.lru=r,I}};function o(n,d){var r=n.length,u=d.length,I,h,y;for(h=0;h<r;h++){for(I=!0,y=0;y<u;y++)if(!m(n[h][y].arg,d[y].arg)){I=!1;break}if(I)break}n.push(n.splice(h,1)[0])}function i(n){var d=n.length,r=n[d-1],u,I;for(r.cacheItem.delete(r.arg),I=d-2;I>=0&&(r=n[I],u=r.cacheItem.get(r.arg),!u||!u.size);I--)r.cacheItem.delete(r.arg)}function m(n,d){return n===d||n!==n&&d!==d}},{"map-or-similar":1}]},{},[3])(3)})});f();g();w();f();g();w();f();g();w();f();g();w();var l=__REACT__,{Children:$e,Component:Je,Fragment:V,Profiler:Qe,PureComponent:Xe,StrictMode:et,Suspense:tt,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:ot,cloneElement:nt,createContext:rt,createElement:z,createFactory:it,createRef:at,forwardRef:ct,isValidElement:lt,lazy:st,memo:Q,startTransition:ut,unstable_act:It,useCallback:X,useContext:pt,useDebugValue:dt,useDeferredValue:mt,useEffect:O,useId:ht,useImperativeHandle:ft,useInsertionEffect:gt,useLayoutEffect:wt,useMemo:bt,useReducer:yt,useRef:ee,useState:H,useSyncExternalStore:St,useTransition:vt,version:Ct}=__REACT__;f();g();w();var kt=__STORYBOOK_API__,{ActiveTabs:At,Consumer:xt,ManagerContext:_t,Provider:Ot,RequestResponseError:Lt,addons:U,combineParameters:Bt,controlOrMetaKey:Pt,controlOrMetaSymbol:Mt,eventMatchesShortcut:Vt,eventToShortcut:Dt,experimental_MockUniversalStore:Nt,experimental_UniversalStore:zt,experimental_requestResponse:Ht,experimental_useUniversalStore:Ut,isMacLike:Gt,isShortcutTaken:Ft,keyToSymbol:qt,merge:Wt,mockChannel:Yt,optionOrAltSymbol:jt,shortcutMatchesShortcut:Kt,shortcutToHumanString:Zt,types:te,useAddonState:$t,useArgTypes:Jt,useArgs:Qt,useChannel:Xt,useGlobalTypes:eo,useGlobals:G,useParameter:F,useSharedState:to,useStoryPrepared:oo,useStorybookApi:oe,useStorybookState:no}=__STORYBOOK_API__;f();g();w();var lo=__STORYBOOK_COMPONENTS__,{A:so,ActionBar:uo,AddonPanel:Io,Badge:po,Bar:mo,Blockquote:ho,Button:fo,ClipboardCode:go,Code:wo,DL:bo,Div:yo,DocumentWrapper:So,EmptyTabContent:vo,ErrorFormatter:Co,FlexBar:Eo,Form:To,H1:Ro,H2:ko,H3:Ao,H4:xo,H5:_o,H6:Oo,HR:Lo,IconButton:L,IconButtonSkeleton:Bo,Icons:Po,Img:Mo,LI:Vo,Link:Do,ListItem:No,Loader:zo,Modal:Ho,OL:Uo,P:Go,Placeholder:Fo,Pre:qo,ProgressSpinner:Wo,ResetWrapper:Yo,ScrollArea:jo,Separator:Ko,Spaced:Zo,Span:$o,StorybookIcon:Jo,StorybookLogo:Qo,Symbols:Xo,SyntaxHighlighter:en,TT:tn,TabBar:on,TabButton:nn,TabWrapper:rn,Table:an,Tabs:cn,TabsState:ln,TooltipLinkList:q,TooltipMessage:sn,TooltipNote:un,UL:In,WithTooltip:W,WithTooltipPure:pn,Zoom:dn,codeCommon:mn,components:hn,createCopyToClipboardFunction:fn,getStoryHref:gn,icons:wn,interleaveSeparators:bn,nameSpaceClassNames:yn,resetComponents:Sn,withReset:vn}=__STORYBOOK_COMPONENTS__;f();g();w();var kn=__STORYBOOK_THEMING__,{CacheProvider:An,ClassNames:xn,Global:Y,ThemeProvider:_n,background:On,color:Ln,convert:Bn,create:Pn,createCache:Mn,createGlobal:Vn,createReset:Dn,css:Nn,darken:zn,ensure:Hn,ignoreSsrWarning:Un,isPropValid:Gn,jsx:Fn,keyframes:qn,lighten:Wn,styled:v,themes:Yn,typography:jn,useTheme:Kn,withTheme:Zn}=__STORYBOOK_THEMING__;f();g();w();var er=__STORYBOOK_ICONS__,{AccessibilityAltIcon:tr,AccessibilityIcon:or,AccessibilityIgnoredIcon:nr,AddIcon:rr,AdminIcon:ir,AlertAltIcon:ar,AlertIcon:cr,AlignLeftIcon:lr,AlignRightIcon:sr,AppleIcon:ur,ArrowBottomLeftIcon:Ir,ArrowBottomRightIcon:pr,ArrowDownIcon:dr,ArrowLeftIcon:mr,ArrowRightIcon:hr,ArrowSolidDownIcon:fr,ArrowSolidLeftIcon:gr,ArrowSolidRightIcon:wr,ArrowSolidUpIcon:br,ArrowTopLeftIcon:yr,ArrowTopRightIcon:Sr,ArrowUpIcon:vr,AzureDevOpsIcon:Cr,BackIcon:Er,BasketIcon:Tr,BatchAcceptIcon:Rr,BatchDenyIcon:kr,BeakerIcon:Ar,BellIcon:xr,BitbucketIcon:_r,BoldIcon:Or,BookIcon:Lr,BookmarkHollowIcon:Br,BookmarkIcon:Pr,BottomBarIcon:Mr,BottomBarToggleIcon:Vr,BoxIcon:Dr,BranchIcon:Nr,BrowserIcon:ne,ButtonIcon:zr,CPUIcon:Hr,CalendarIcon:Ur,CameraIcon:Gr,CameraStabilizeIcon:Fr,CategoryIcon:qr,CertificateIcon:Wr,ChangedIcon:Yr,ChatIcon:jr,CheckIcon:Kr,ChevronDownIcon:Zr,ChevronLeftIcon:$r,ChevronRightIcon:Jr,ChevronSmallDownIcon:Qr,ChevronSmallLeftIcon:Xr,ChevronSmallRightIcon:ei,ChevronSmallUpIcon:ti,ChevronUpIcon:oi,ChromaticIcon:ni,ChromeIcon:ri,CircleHollowIcon:ii,CircleIcon:ai,ClearIcon:ci,CloseAltIcon:li,CloseIcon:si,CloudHollowIcon:ui,CloudIcon:Ii,CogIcon:pi,CollapseIcon:di,CommandIcon:mi,CommentAddIcon:hi,CommentIcon:fi,CommentsIcon:gi,CommitIcon:wi,CompassIcon:bi,ComponentDrivenIcon:yi,ComponentIcon:Si,ContrastIcon:vi,ContrastIgnoredIcon:Ci,ControlsIcon:Ei,CopyIcon:Ti,CreditIcon:Ri,CrossIcon:ki,DashboardIcon:Ai,DatabaseIcon:xi,DeleteIcon:_i,DiamondIcon:Oi,DirectionIcon:Li,DiscordIcon:Bi,DocChartIcon:Pi,DocListIcon:Mi,DocumentIcon:Vi,DownloadIcon:Di,DragIcon:Ni,EditIcon:zi,EllipsisIcon:Hi,EmailIcon:Ui,ExpandAltIcon:Gi,ExpandIcon:Fi,EyeCloseIcon:qi,EyeIcon:Wi,FaceHappyIcon:Yi,FaceNeutralIcon:ji,FaceSadIcon:Ki,FacebookIcon:Zi,FailedIcon:$i,FastForwardIcon:Ji,FigmaIcon:Qi,FilterIcon:Xi,FlagIcon:ea,FolderIcon:ta,FormIcon:oa,GDriveIcon:na,GithubIcon:ra,GitlabIcon:ia,GlobeIcon:aa,GoogleIcon:ca,GraphBarIcon:la,GraphLineIcon:sa,GraphqlIcon:ua,GridAltIcon:Ia,GridIcon:pa,GrowIcon:j,HeartHollowIcon:da,HeartIcon:ma,HomeIcon:ha,HourglassIcon:fa,InfoIcon:ga,ItalicIcon:wa,JumpToIcon:ba,KeyIcon:ya,LightningIcon:Sa,LightningOffIcon:va,LinkBrokenIcon:Ca,LinkIcon:Ea,LinkedinIcon:Ta,LinuxIcon:Ra,ListOrderedIcon:ka,ListUnorderedIcon:Aa,LocationIcon:xa,LockIcon:_a,MarkdownIcon:Oa,MarkupIcon:La,MediumIcon:Ba,MemoryIcon:Pa,MenuIcon:Ma,MergeIcon:Va,MirrorIcon:Da,MobileIcon:re,MoonIcon:Na,NutIcon:za,OutboxIcon:Ha,OutlineIcon:Ua,PaintBrushIcon:Ga,PaperClipIcon:Fa,ParagraphIcon:qa,PassedIcon:Wa,PhoneIcon:Ya,PhotoDragIcon:ja,PhotoIcon:Ka,PhotoStabilizeIcon:Za,PinAltIcon:$a,PinIcon:Ja,PlayAllHollowIcon:Qa,PlayBackIcon:Xa,PlayHollowIcon:ec,PlayIcon:tc,PlayNextIcon:oc,PlusIcon:nc,PointerDefaultIcon:rc,PointerHandIcon:ic,PowerIcon:ac,PrintIcon:cc,ProceedIcon:lc,ProfileIcon:sc,PullRequestIcon:uc,QuestionIcon:Ic,RSSIcon:pc,RedirectIcon:dc,ReduxIcon:mc,RefreshIcon:ie,ReplyIcon:hc,RepoIcon:fc,RequestChangeIcon:gc,RewindIcon:wc,RulerIcon:bc,SaveIcon:yc,SearchIcon:Sc,ShareAltIcon:vc,ShareIcon:Cc,ShieldIcon:Ec,SideBySideIcon:Tc,SidebarAltIcon:Rc,SidebarAltToggleIcon:kc,SidebarIcon:Ac,SidebarToggleIcon:xc,SpeakerIcon:_c,StackedIcon:Oc,StarHollowIcon:Lc,StarIcon:Bc,StatusFailIcon:Pc,StatusIcon:Mc,StatusPassIcon:Vc,StatusWarnIcon:Dc,StickerIcon:Nc,StopAltHollowIcon:zc,StopAltIcon:Hc,StopIcon:Uc,StorybookIcon:Gc,StructureIcon:Fc,SubtractIcon:qc,SunIcon:Wc,SupportIcon:Yc,SweepIcon:jc,SwitchAltIcon:Kc,SyncIcon:Zc,TabletIcon:ae,ThumbsUpIcon:$c,TimeIcon:Jc,TimerIcon:Qc,TransferIcon:K,TrashIcon:Xc,TwitterIcon:el,TypeIcon:tl,UbuntuIcon:ol,UndoIcon:nl,UnfoldIcon:rl,UnlockIcon:il,UnpinIcon:al,UploadIcon:cl,UserAddIcon:ll,UserAltIcon:sl,UserIcon:ul,UsersIcon:Il,VSCodeIcon:pl,VerifiedIcon:dl,VideoIcon:ml,WandIcon:hl,WatchIcon:fl,WindowsIcon:gl,WrenchIcon:wl,XIcon:bl,YoutubeIcon:yl,ZoomIcon:Sl,ZoomOutIcon:vl,ZoomResetIcon:Cl,iconList:El}=__STORYBOOK_ICONS__;var $=Se(le()),B="storybook/viewport",x="viewport",Ie={mobile1:{name:"Small mobile",styles:{height:"568px",width:"320px"},type:"mobile"},mobile2:{name:"Large mobile",styles:{height:"896px",width:"414px"},type:"mobile"},tablet:{name:"Tablet",styles:{height:"1112px",width:"834px"},type:"tablet"}},P={name:"Reset viewport",styles:{height:"100%",width:"100%"},type:"desktop"},Ce={[x]:{value:void 0,isRotated:!1}},Ee={viewport:"reset",viewportRotated:!1},Te=globalThis.FEATURES?.viewportStoryGlobals?Ce:Ee,pe=(e,t)=>e.indexOf(t),Re=(e,t)=>{let a=pe(e,t);return a===e.length-1?e[0]:e[a+1]},ke=(e,t)=>{let a=pe(e,t);return a<1?e[e.length-1]:e[a-1]},de=async(e,t,a,s)=>{await e.setAddonShortcut(B,{label:"Previous viewport",defaultShortcut:["alt","shift","V"],actionName:"previous",action:()=>{a({viewport:ke(s,t)})}}),await e.setAddonShortcut(B,{label:"Next viewport",defaultShortcut:["alt","V"],actionName:"next",action:()=>{a({viewport:Re(s,t)})}}),await e.setAddonShortcut(B,{label:"Reset viewport",defaultShortcut:["alt","control","V"],actionName:"reset",action:()=>{a(Te)}})},Ae=v.div({display:"inline-flex",alignItems:"center"}),se=v.div(({theme:e})=>({display:"inline-block",textDecoration:"none",padding:10,fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,lineHeight:"1",height:40,border:"none",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",background:"transparent"})),xe=v(L)(()=>({display:"inline-flex",alignItems:"center"})),_e=v.div(({theme:e})=>({fontSize:e.typography.size.s2-1,marginLeft:10})),Oe={desktop:l.createElement(ne,null),mobile:l.createElement(re,null),tablet:l.createElement(ae,null),other:l.createElement(V,null)},Le=({api:e})=>{let t=F(x),[a,s,c]=G(),[b,p]=H(!1),{options:o=Ie,disable:i}=t||{},m=a?.[x]||{},n=m.value,d=m.isRotated,r=o[n]||P,u=b||r!==P,I=x in c,h=Object.keys(o).length;if(O(()=>{de(e,n,s,Object.keys(o))},[o,n,s,e]),r.styles===null||!o||h<1)return null;if(typeof r.styles=="function")return console.warn("Addon Viewport no longer supports dynamic styles using a function, use css calc() instead"),null;let y=d?r.styles.height:r.styles.width,k=d?r.styles.width:r.styles.height;return i?null:l.createElement(Be,{item:r,updateGlobals:s,viewportMap:o,viewportName:n,isRotated:d,setIsTooltipVisible:p,isLocked:I,isActive:u,width:y,height:k})},Be=l.memo(function(e){let{item:t,viewportMap:a,viewportName:s,isRotated:c,updateGlobals:b,setIsTooltipVisible:p,isLocked:o,isActive:i,width:m,height:n}=e,d=X(r=>b({[x]:r}),[b]);return l.createElement(V,null,l.createElement(W,{placement:"bottom",tooltip:({onHide:r})=>l.createElement(q,{links:[...length>0&&t!==P?[{id:"reset",title:"Reset viewport",icon:l.createElement(ie,null),onClick:()=>{d({value:void 0,isRotated:!1}),r()}}]:[],...Object.entries(a).map(([u,I])=>({id:u,title:I.name,icon:Oe[I.type],active:u===s,onClick:()=>{d({value:u,isRotated:!1}),r()}}))].flat()}),closeOnOutsideClick:!0,onVisibleChange:p},l.createElement(xe,{disabled:o,key:"viewport",title:"Change the size of the preview",active:i,onDoubleClick:()=>{d({value:void 0,isRotated:!1})}},l.createElement(j,null),t!==P?l.createElement(_e,null,t.name," ",c?"(L)":"(P)"):null)),l.createElement(Y,{styles:{'iframe[data-is-storybook="true"]':{width:m,height:n}}}),t!==P?l.createElement(Ae,null,l.createElement(se,{title:"Viewport width"},m.replace("px","")),o?"/":l.createElement(L,{key:"viewport-rotate",title:"Rotate viewport",onClick:()=>{d({value:s,isRotated:!c})}},l.createElement(K,null)),l.createElement(se,{title:"Viewport height"},n.replace("px",""))):null)}),Pe=(0,$.default)(50)(e=>[...Me,...Object.entries(e).map(([t,{name:a,...s}])=>({...s,id:t,title:a}))]),D={id:"reset",title:"Reset viewport",styles:null,type:"other"},Me=[D],Ve=(0,$.default)(50)((e,t,a,s)=>e.filter(c=>c.id!==D.id||t.id!==c.id).map(c=>({...c,onClick:()=>{a({viewport:c.id}),s()}}))),De=({width:e,height:t,...a})=>({...a,height:e,width:t}),Ne=v.div({display:"inline-flex",alignItems:"center"}),ue=v.div(({theme:e})=>({display:"inline-block",textDecoration:"none",padding:10,fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,lineHeight:"1",height:40,border:"none",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",background:"transparent"})),ze=v(L)(()=>({display:"inline-flex",alignItems:"center"})),He=v.div(({theme:e})=>({fontSize:e.typography.size.s2-1,marginLeft:10})),Ue=(e,t,a)=>{if(t===null)return;let s=typeof t=="function"?t(e):t;return a?De(s):s},Ge=Q(function(){let[e,t]=G(),{viewports:a=Ie,defaultOrientation:s,defaultViewport:c,disable:b}=F(x,{}),p=Pe(a),o=oe(),[i,m]=H(!1);c&&!p.find(u=>u.id===c)&&console.warn(`Cannot find "defaultViewport" of "${c}" in addon-viewport configs, please check the "viewports" setting in the configuration.`),O(()=>{de(o,e,t,Object.keys(a))},[a,e,e.viewport,t,o]),O(()=>{let u=s==="landscape";(c&&e.viewport!==c||s&&e.viewportRotated!==u)&&t({viewport:c,viewportRotated:u})},[s,c,t]);let n=p.find(u=>u.id===e.viewport)||p.find(u=>u.id===c)||p.find(u=>u.default)||D,d=ee(),r=Ue(d.current,n.styles,e.viewportRotated);return O(()=>{d.current=r},[n]),b||Object.entries(a).length===0?null:l.createElement(V,null,l.createElement(W,{placement:"top",tooltip:({onHide:u})=>l.createElement(q,{links:Ve(p,n,t,u)}),closeOnOutsideClick:!0,onVisibleChange:m},l.createElement(ze,{key:"viewport",title:"Change the size of the preview",active:i||!!r,onDoubleClick:()=>{t({viewport:D.id})}},l.createElement(j,null),r?l.createElement(He,null,e.viewportRotated?`${n.title} (L)`:`${n.title} (P)`):null)),r?l.createElement(Ne,null,l.createElement(Y,{styles:{'iframe[data-is-storybook="true"]':{...r||{width:"100%",height:"100%"}}}}),l.createElement(ue,{title:"Viewport width"},r.width.replace("px","")),l.createElement(L,{key:"viewport-rotate",title:"Rotate viewport",onClick:()=>{t({viewportRotated:!e.viewportRotated})}},l.createElement(K,null)),l.createElement(ue,{title:"Viewport height"},r.height.replace("px",""))):null)});U.register(B,e=>{U.add(B,{title:"viewport / media-queries",type:te.TOOL,match:({viewMode:t,tabId:a})=>t==="story"&&!a,render:()=>FEATURES?.viewportStoryGlobals?z(Le,{api:e}):z(Ge,null)})});})();
2
+ (()=>{var me=Object.create;var J=Object.defineProperty;var he=Object.getOwnPropertyDescriptor;var fe=Object.getOwnPropertyNames;var ge=Object.getPrototypeOf,we=Object.prototype.hasOwnProperty;var _=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,a)=>(typeof require<"u"?require:t)[a]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var N=(e,t)=>()=>(e&&(t=e(e=0)),t);var be=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var ye=(e,t,a,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let c of fe(t))!we.call(e,c)&&c!==a&&J(e,c,{get:()=>t[c],enumerable:!(s=he(t,c))||s.enumerable});return e};var Se=(e,t,a)=>(a=e!=null?me(ge(e)):{},ye(t||!e||!e.__esModule?J(a,"default",{value:e,enumerable:!0}):a,e));var f=N(()=>{});var g=N(()=>{});var w=N(()=>{});var le=be((ce,Z)=>{f();g();w();(function(e){if(typeof ce=="object"&&typeof Z<"u")Z.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var t;typeof window<"u"||typeof window<"u"?t=window:typeof self<"u"?t=self:t=this,t.memoizerific=e()}})(function(){var e,t,a;return(function s(c,b,p){function o(n,d){if(!b[n]){if(!c[n]){var r=typeof _=="function"&&_;if(!d&&r)return r(n,!0);if(i)return i(n,!0);var u=new Error("Cannot find module '"+n+"'");throw u.code="MODULE_NOT_FOUND",u}var I=b[n]={exports:{}};c[n][0].call(I.exports,function(h){var y=c[n][1][h];return o(y||h)},I,I.exports,s,c,b,p)}return b[n].exports}for(var i=typeof _=="function"&&_,m=0;m<p.length;m++)o(p[m]);return o})({1:[function(s,c,b){c.exports=function(p){if(typeof Map!="function"||p){var o=s("./similar");return new o}else return new Map}},{"./similar":2}],2:[function(s,c,b){function p(){return this.list=[],this.lastItem=void 0,this.size=0,this}p.prototype.get=function(o){var i;if(this.lastItem&&this.isEqual(this.lastItem.key,o))return this.lastItem.val;if(i=this.indexOf(o),i>=0)return this.lastItem=this.list[i],this.list[i].val},p.prototype.set=function(o,i){var m;return this.lastItem&&this.isEqual(this.lastItem.key,o)?(this.lastItem.val=i,this):(m=this.indexOf(o),m>=0?(this.lastItem=this.list[m],this.list[m].val=i,this):(this.lastItem={key:o,val:i},this.list.push(this.lastItem),this.size++,this))},p.prototype.delete=function(o){var i;if(this.lastItem&&this.isEqual(this.lastItem.key,o)&&(this.lastItem=void 0),i=this.indexOf(o),i>=0)return this.size--,this.list.splice(i,1)[0]},p.prototype.has=function(o){var i;return this.lastItem&&this.isEqual(this.lastItem.key,o)?!0:(i=this.indexOf(o),i>=0?(this.lastItem=this.list[i],!0):!1)},p.prototype.forEach=function(o,i){var m;for(m=0;m<this.size;m++)o.call(i||this,this.list[m].val,this.list[m].key,this)},p.prototype.indexOf=function(o){var i;for(i=0;i<this.size;i++)if(this.isEqual(this.list[i].key,o))return i;return-1},p.prototype.isEqual=function(o,i){return o===i||o!==o&&i!==i},c.exports=p},{}],3:[function(s,c,b){var p=s("map-or-similar");c.exports=function(n){var d=new p(!1),r=[];return function(u){var I=function(){var h=d,y,k,S=arguments.length-1,M=Array(S+1),A=!0,C;if((I.numArgs||I.numArgs===0)&&I.numArgs!==S+1)throw new Error("Memoizerific functions should always be called with the same number of arguments");for(C=0;C<S;C++){if(M[C]={cacheItem:h,arg:arguments[C]},h.has(arguments[C])){h=h.get(arguments[C]);continue}A=!1,y=new p(!1),h.set(arguments[C],y),h=y}return A&&(h.has(arguments[S])?k=h.get(arguments[S]):A=!1),A||(k=u.apply(null,arguments),h.set(arguments[S],k)),n>0&&(M[S]={cacheItem:h,arg:arguments[S]},A?o(r,M):r.push(M),r.length>n&&i(r.shift())),I.wasMemoized=A,I.numArgs=S+1,k};return I.limit=n,I.wasMemoized=!1,I.cache=d,I.lru=r,I}};function o(n,d){var r=n.length,u=d.length,I,h,y;for(h=0;h<r;h++){for(I=!0,y=0;y<u;y++)if(!m(n[h][y].arg,d[y].arg)){I=!1;break}if(I)break}n.push(n.splice(h,1)[0])}function i(n){var d=n.length,r=n[d-1],u,I;for(r.cacheItem.delete(r.arg),I=d-2;I>=0&&(r=n[I],u=r.cacheItem.get(r.arg),!u||!u.size);I--)r.cacheItem.delete(r.arg)}function m(n,d){return n===d||n!==n&&d!==d}},{"map-or-similar":1}]},{},[3])(3)})});f();g();w();f();g();w();f();g();w();f();g();w();var l=__REACT__,{Children:$e,Component:Je,Fragment:V,Profiler:Qe,PureComponent:Xe,StrictMode:et,Suspense:tt,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:ot,cloneElement:nt,createContext:rt,createElement:z,createFactory:it,createRef:at,forwardRef:ct,isValidElement:lt,lazy:st,memo:Q,startTransition:ut,unstable_act:It,useCallback:X,useContext:pt,useDebugValue:dt,useDeferredValue:mt,useEffect:O,useId:ht,useImperativeHandle:ft,useInsertionEffect:gt,useLayoutEffect:wt,useMemo:bt,useReducer:yt,useRef:ee,useState:H,useSyncExternalStore:St,useTransition:vt,version:Ct}=__REACT__;f();g();w();var kt=__STORYBOOK_API__,{ActiveTabs:At,Consumer:xt,ManagerContext:_t,Provider:Ot,RequestResponseError:Lt,addons:U,combineParameters:Bt,controlOrMetaKey:Pt,controlOrMetaSymbol:Mt,eventMatchesShortcut:Vt,eventToShortcut:Dt,experimental_MockUniversalStore:Nt,experimental_UniversalStore:zt,experimental_requestResponse:Ht,experimental_useUniversalStore:Ut,isMacLike:Gt,isShortcutTaken:Ft,keyToSymbol:qt,merge:Wt,mockChannel:Yt,optionOrAltSymbol:jt,shortcutMatchesShortcut:Kt,shortcutToHumanString:Zt,types:te,useAddonState:$t,useArgTypes:Jt,useArgs:Qt,useChannel:Xt,useGlobalTypes:eo,useGlobals:G,useParameter:F,useSharedState:to,useStoryPrepared:oo,useStorybookApi:oe,useStorybookState:no}=__STORYBOOK_API__;f();g();w();var lo=__STORYBOOK_COMPONENTS__,{A:so,ActionBar:uo,AddonPanel:Io,Badge:po,Bar:mo,Blockquote:ho,Button:fo,ClipboardCode:go,Code:wo,DL:bo,Div:yo,DocumentWrapper:So,EmptyTabContent:vo,ErrorFormatter:Co,FlexBar:Eo,Form:To,H1:Ro,H2:ko,H3:Ao,H4:xo,H5:_o,H6:Oo,HR:Lo,IconButton:L,IconButtonSkeleton:Bo,Icons:Po,Img:Mo,LI:Vo,Link:Do,ListItem:No,Loader:zo,Modal:Ho,OL:Uo,P:Go,Placeholder:Fo,Pre:qo,ProgressSpinner:Wo,ResetWrapper:Yo,ScrollArea:jo,Separator:Ko,Spaced:Zo,Span:$o,StorybookIcon:Jo,StorybookLogo:Qo,Symbols:Xo,SyntaxHighlighter:en,TT:tn,TabBar:on,TabButton:nn,TabWrapper:rn,Table:an,Tabs:cn,TabsState:ln,TooltipLinkList:q,TooltipMessage:sn,TooltipNote:un,UL:In,WithTooltip:W,WithTooltipPure:pn,Zoom:dn,codeCommon:mn,components:hn,createCopyToClipboardFunction:fn,getStoryHref:gn,icons:wn,interleaveSeparators:bn,nameSpaceClassNames:yn,resetComponents:Sn,withReset:vn}=__STORYBOOK_COMPONENTS__;f();g();w();var kn=__STORYBOOK_THEMING__,{CacheProvider:An,ClassNames:xn,Global:Y,ThemeProvider:_n,background:On,color:Ln,convert:Bn,create:Pn,createCache:Mn,createGlobal:Vn,createReset:Dn,css:Nn,darken:zn,ensure:Hn,ignoreSsrWarning:Un,isPropValid:Gn,jsx:Fn,keyframes:qn,lighten:Wn,styled:v,themes:Yn,typography:jn,useTheme:Kn,withTheme:Zn}=__STORYBOOK_THEMING__;f();g();w();var er=__STORYBOOK_ICONS__,{AccessibilityAltIcon:tr,AccessibilityIcon:or,AccessibilityIgnoredIcon:nr,AddIcon:rr,AdminIcon:ir,AlertAltIcon:ar,AlertIcon:cr,AlignLeftIcon:lr,AlignRightIcon:sr,AppleIcon:ur,ArrowBottomLeftIcon:Ir,ArrowBottomRightIcon:pr,ArrowDownIcon:dr,ArrowLeftIcon:mr,ArrowRightIcon:hr,ArrowSolidDownIcon:fr,ArrowSolidLeftIcon:gr,ArrowSolidRightIcon:wr,ArrowSolidUpIcon:br,ArrowTopLeftIcon:yr,ArrowTopRightIcon:Sr,ArrowUpIcon:vr,AzureDevOpsIcon:Cr,BackIcon:Er,BasketIcon:Tr,BatchAcceptIcon:Rr,BatchDenyIcon:kr,BeakerIcon:Ar,BellIcon:xr,BitbucketIcon:_r,BoldIcon:Or,BookIcon:Lr,BookmarkHollowIcon:Br,BookmarkIcon:Pr,BottomBarIcon:Mr,BottomBarToggleIcon:Vr,BoxIcon:Dr,BranchIcon:Nr,BrowserIcon:ne,ButtonIcon:zr,CPUIcon:Hr,CalendarIcon:Ur,CameraIcon:Gr,CameraStabilizeIcon:Fr,CategoryIcon:qr,CertificateIcon:Wr,ChangedIcon:Yr,ChatIcon:jr,CheckIcon:Kr,ChevronDownIcon:Zr,ChevronLeftIcon:$r,ChevronRightIcon:Jr,ChevronSmallDownIcon:Qr,ChevronSmallLeftIcon:Xr,ChevronSmallRightIcon:ei,ChevronSmallUpIcon:ti,ChevronUpIcon:oi,ChromaticIcon:ni,ChromeIcon:ri,CircleHollowIcon:ii,CircleIcon:ai,ClearIcon:ci,CloseAltIcon:li,CloseIcon:si,CloudHollowIcon:ui,CloudIcon:Ii,CogIcon:pi,CollapseIcon:di,CommandIcon:mi,CommentAddIcon:hi,CommentIcon:fi,CommentsIcon:gi,CommitIcon:wi,CompassIcon:bi,ComponentDrivenIcon:yi,ComponentIcon:Si,ContrastIcon:vi,ContrastIgnoredIcon:Ci,ControlsIcon:Ei,CopyIcon:Ti,CreditIcon:Ri,CrossIcon:ki,DashboardIcon:Ai,DatabaseIcon:xi,DeleteIcon:_i,DiamondIcon:Oi,DirectionIcon:Li,DiscordIcon:Bi,DocChartIcon:Pi,DocListIcon:Mi,DocumentIcon:Vi,DownloadIcon:Di,DragIcon:Ni,EditIcon:zi,EllipsisIcon:Hi,EmailIcon:Ui,ExpandAltIcon:Gi,ExpandIcon:Fi,EyeCloseIcon:qi,EyeIcon:Wi,FaceHappyIcon:Yi,FaceNeutralIcon:ji,FaceSadIcon:Ki,FacebookIcon:Zi,FailedIcon:$i,FastForwardIcon:Ji,FigmaIcon:Qi,FilterIcon:Xi,FlagIcon:ea,FolderIcon:ta,FormIcon:oa,GDriveIcon:na,GithubIcon:ra,GitlabIcon:ia,GlobeIcon:aa,GoogleIcon:ca,GraphBarIcon:la,GraphLineIcon:sa,GraphqlIcon:ua,GridAltIcon:Ia,GridIcon:pa,GrowIcon:j,HeartHollowIcon:da,HeartIcon:ma,HomeIcon:ha,HourglassIcon:fa,InfoIcon:ga,ItalicIcon:wa,JumpToIcon:ba,KeyIcon:ya,LightningIcon:Sa,LightningOffIcon:va,LinkBrokenIcon:Ca,LinkIcon:Ea,LinkedinIcon:Ta,LinuxIcon:Ra,ListOrderedIcon:ka,ListUnorderedIcon:Aa,LocationIcon:xa,LockIcon:_a,MarkdownIcon:Oa,MarkupIcon:La,MediumIcon:Ba,MemoryIcon:Pa,MenuIcon:Ma,MergeIcon:Va,MirrorIcon:Da,MobileIcon:re,MoonIcon:Na,NutIcon:za,OutboxIcon:Ha,OutlineIcon:Ua,PaintBrushIcon:Ga,PaperClipIcon:Fa,ParagraphIcon:qa,PassedIcon:Wa,PhoneIcon:Ya,PhotoDragIcon:ja,PhotoIcon:Ka,PhotoStabilizeIcon:Za,PinAltIcon:$a,PinIcon:Ja,PlayAllHollowIcon:Qa,PlayBackIcon:Xa,PlayHollowIcon:ec,PlayIcon:tc,PlayNextIcon:oc,PlusIcon:nc,PointerDefaultIcon:rc,PointerHandIcon:ic,PowerIcon:ac,PrintIcon:cc,ProceedIcon:lc,ProfileIcon:sc,PullRequestIcon:uc,QuestionIcon:Ic,RSSIcon:pc,RedirectIcon:dc,ReduxIcon:mc,RefreshIcon:ie,ReplyIcon:hc,RepoIcon:fc,RequestChangeIcon:gc,RewindIcon:wc,RulerIcon:bc,SaveIcon:yc,SearchIcon:Sc,ShareAltIcon:vc,ShareIcon:Cc,ShieldIcon:Ec,SideBySideIcon:Tc,SidebarAltIcon:Rc,SidebarAltToggleIcon:kc,SidebarIcon:Ac,SidebarToggleIcon:xc,SpeakerIcon:_c,StackedIcon:Oc,StarHollowIcon:Lc,StarIcon:Bc,StatusFailIcon:Pc,StatusIcon:Mc,StatusPassIcon:Vc,StatusWarnIcon:Dc,StickerIcon:Nc,StopAltHollowIcon:zc,StopAltIcon:Hc,StopIcon:Uc,StorybookIcon:Gc,StructureIcon:Fc,SubtractIcon:qc,SunIcon:Wc,SupportIcon:Yc,SweepIcon:jc,SwitchAltIcon:Kc,SyncIcon:Zc,TabletIcon:ae,ThumbsUpIcon:$c,TimeIcon:Jc,TimerIcon:Qc,TransferIcon:K,TrashIcon:Xc,TwitterIcon:el,TypeIcon:tl,UbuntuIcon:ol,UndoIcon:nl,UnfoldIcon:rl,UnlockIcon:il,UnpinIcon:al,UploadIcon:cl,UserAddIcon:ll,UserAltIcon:sl,UserIcon:ul,UsersIcon:Il,VSCodeIcon:pl,VerifiedIcon:dl,VideoIcon:ml,WandIcon:hl,WatchIcon:fl,WindowsIcon:gl,WrenchIcon:wl,XIcon:bl,YoutubeIcon:yl,ZoomIcon:Sl,ZoomOutIcon:vl,ZoomResetIcon:Cl,iconList:El}=__STORYBOOK_ICONS__;var $=Se(le()),B="storybook/viewport",x="viewport",Ie={mobile1:{name:"Small mobile",styles:{height:"568px",width:"320px"},type:"mobile"},mobile2:{name:"Large mobile",styles:{height:"896px",width:"414px"},type:"mobile"},tablet:{name:"Tablet",styles:{height:"1112px",width:"834px"},type:"tablet"}},P={name:"Reset viewport",styles:{height:"100%",width:"100%"},type:"desktop"},Ce={[x]:{value:void 0,isRotated:!1}},Ee={viewport:"reset",viewportRotated:!1},Te=globalThis.FEATURES?.viewportStoryGlobals?Ce:Ee,pe=(e,t)=>e.indexOf(t),Re=(e,t)=>{let a=pe(e,t);return a===e.length-1?e[0]:e[a+1]},ke=(e,t)=>{let a=pe(e,t);return a<1?e[e.length-1]:e[a-1]},de=async(e,t,a,s)=>{await e.setAddonShortcut(B,{label:"Previous viewport",defaultShortcut:["alt","shift","V"],actionName:"previous",action:()=>{a({viewport:ke(s,t)})}}),await e.setAddonShortcut(B,{label:"Next viewport",defaultShortcut:["alt","V"],actionName:"next",action:()=>{a({viewport:Re(s,t)})}}),await e.setAddonShortcut(B,{label:"Reset viewport",defaultShortcut:["alt","control","V"],actionName:"reset",action:()=>{a(Te)}})},Ae=v.div({display:"inline-flex",alignItems:"center"}),se=v.div(({theme:e})=>({display:"inline-block",textDecoration:"none",padding:10,fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,lineHeight:"1",height:40,border:"none",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",background:"transparent"})),xe=v(L)(()=>({display:"inline-flex",alignItems:"center"})),_e=v.div(({theme:e})=>({fontSize:e.typography.size.s2-1,marginLeft:10})),Oe={desktop:l.createElement(ne,null),mobile:l.createElement(re,null),tablet:l.createElement(ae,null),other:l.createElement(V,null)},Le=({api:e})=>{let t=F(x),[a,s,c]=G(),[b,p]=H(!1),{options:o=Ie,disable:i}=t||{},m=a?.[x]||{},n=m.value,d=m.isRotated,r=o[n]||P,u=b||r!==P,I=x in c,h=Object.keys(o).length;if(O(()=>{de(e,n,s,Object.keys(o))},[o,n,s,e]),r.styles===null||!o||h<1)return null;if(typeof r.styles=="function")return console.warn("Addon Viewport no longer supports dynamic styles using a function, use css calc() instead"),null;let y=d?r.styles.height:r.styles.width,k=d?r.styles.width:r.styles.height;return i?null:l.createElement(Be,{item:r,updateGlobals:s,viewportMap:o,viewportName:n,isRotated:d,setIsTooltipVisible:p,isLocked:I,isActive:u,width:y,height:k})},Be=l.memo(function(e){let{item:t,viewportMap:a,viewportName:s,isRotated:c,updateGlobals:b,setIsTooltipVisible:p,isLocked:o,isActive:i,width:m,height:n}=e,d=X(r=>b({[x]:r}),[b]);return l.createElement(V,null,l.createElement(W,{placement:"bottom",tooltip:({onHide:r})=>l.createElement(q,{links:[...length>0&&t!==P?[{id:"reset",title:"Reset viewport",icon:l.createElement(ie,null),onClick:()=>{d({value:void 0,isRotated:!1}),r()}}]:[],...Object.entries(a).map(([u,I])=>({id:u,title:I.name,icon:Oe[I.type],active:u===s,onClick:()=>{d({value:u,isRotated:!1}),r()}}))].flat()}),closeOnOutsideClick:!0,onVisibleChange:p},l.createElement(xe,{disabled:o,key:"viewport",title:"Change the size of the preview",active:i,onDoubleClick:()=>{d({value:void 0,isRotated:!1})}},l.createElement(j,null),t!==P?l.createElement(_e,null,t.name," ",c?"(L)":"(P)"):null)),l.createElement(Y,{styles:{'iframe[data-is-storybook="true"]':{width:m,height:n}}}),t!==P?l.createElement(Ae,null,l.createElement(se,{title:"Viewport width"},m.replace("px","")),o?"/":l.createElement(L,{key:"viewport-rotate",title:"Rotate viewport",onClick:()=>{d({value:s,isRotated:!c})}},l.createElement(K,null)),l.createElement(se,{title:"Viewport height"},n.replace("px",""))):null)}),Pe=(0,$.default)(50)(e=>[...Me,...Object.entries(e).map(([t,{name:a,...s}])=>({...s,id:t,title:a}))]),D={id:"reset",title:"Reset viewport",styles:null,type:"other"},Me=[D],Ve=(0,$.default)(50)((e,t,a,s)=>e.filter(c=>c.id!==D.id||t.id!==c.id).map(c=>({...c,onClick:()=>{a({viewport:c.id}),s()}}))),De=({width:e,height:t,...a})=>({...a,height:e,width:t}),Ne=v.div({display:"inline-flex",alignItems:"center"}),ue=v.div(({theme:e})=>({display:"inline-block",textDecoration:"none",padding:10,fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,lineHeight:"1",height:40,border:"none",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",background:"transparent"})),ze=v(L)(()=>({display:"inline-flex",alignItems:"center"})),He=v.div(({theme:e})=>({fontSize:e.typography.size.s2-1,marginLeft:10})),Ue=(e,t,a)=>{if(t===null)return;let s=typeof t=="function"?t(e):t;return a?De(s):s},Ge=Q(function(){let[e,t]=G(),{viewports:a=Ie,defaultOrientation:s,defaultViewport:c,disable:b}=F(x,{}),p=Pe(a),o=oe(),[i,m]=H(!1);c&&!p.find(u=>u.id===c)&&console.warn(`Cannot find "defaultViewport" of "${c}" in addon-viewport configs, please check the "viewports" setting in the configuration.`),O(()=>{de(o,e,t,Object.keys(a))},[a,e,e.viewport,t,o]),O(()=>{let u=s==="landscape";(c&&e.viewport!==c||s&&e.viewportRotated!==u)&&t({viewport:c,viewportRotated:u})},[s,c,t]);let n=p.find(u=>u.id===e.viewport)||p.find(u=>u.id===c)||p.find(u=>u.default)||D,d=ee(),r=Ue(d.current,n.styles,e.viewportRotated);return O(()=>{d.current=r},[n]),b||Object.entries(a).length===0?null:l.createElement(V,null,l.createElement(W,{placement:"top",tooltip:({onHide:u})=>l.createElement(q,{links:Ve(p,n,t,u)}),closeOnOutsideClick:!0,onVisibleChange:m},l.createElement(ze,{key:"viewport",title:"Change the size of the preview",active:i||!!r,onDoubleClick:()=>{t({viewport:D.id})}},l.createElement(j,null),r?l.createElement(He,null,e.viewportRotated?`${n.title} (L)`:`${n.title} (P)`):null)),r?l.createElement(Ne,null,l.createElement(Y,{styles:{'iframe[data-is-storybook="true"]':{...r||{width:"100%",height:"100%"}}}}),l.createElement(ue,{title:"Viewport width"},r.width.replace("px","")),l.createElement(L,{key:"viewport-rotate",title:"Rotate viewport",onClick:()=>{t({viewportRotated:!e.viewportRotated})}},l.createElement(K,null)),l.createElement(ue,{title:"Viewport height"},r.height.replace("px",""))):null)});U.register(B,e=>{U.add(B,{title:"viewport / media-queries",type:te.TOOL,match:({viewMode:t,tabId:a})=>t==="story"&&!a,render:()=>FEATURES?.viewportStoryGlobals?z(Le,{api:e}):z(Ge,null)})});})();
3
3
  }catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); }