@mobilon-dev/chotto 0.3.30 → 0.3.31

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 (321) hide show
  1. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  2. package/dist/chotto.css +1 -1
  3. package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js +7 -0
  4. package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue2.js +106 -0
  5. package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +46 -0
  6. package/dist/components/1_atoms/EmbedPreview/EmbedPreview.vue.js +7 -0
  7. package/dist/components/1_atoms/EmbedPreview/EmbedPreview.vue2.js +39 -0
  8. package/dist/components/1_atoms/LinkPreview/LinkPreview.vue.js +7 -0
  9. package/dist/components/1_atoms/LinkPreview/LinkPreview.vue2.js +32 -0
  10. package/dist/components/1_atoms/Tooltip/Tooltip.vue.js +7 -0
  11. package/dist/components/1_atoms/Tooltip/Tooltip.vue2.js +77 -0
  12. package/dist/components/1_icons/AvatarIcon.vue.js +42 -0
  13. package/dist/components/1_icons/CheckIcon.vue.js +28 -0
  14. package/dist/components/1_icons/CloseButtonIcon.vue.js +21 -0
  15. package/dist/components/1_icons/ContactCRMIcon.vue.js +21 -0
  16. package/dist/components/1_icons/MenuIcon.vue.js +21 -0
  17. package/dist/components/1_icons/SearchIcon.vue.js +28 -0
  18. package/dist/components/1_icons/SettingsIcon.vue.js +18 -0
  19. package/dist/components/1_icons/TelegramIcon.vue.js +32 -0
  20. package/dist/components/1_icons/WhatsAppIcon.vue.js +32 -0
  21. package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +307 -0
  22. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationActions.js +83 -0
  23. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationAttributes.js +60 -0
  24. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationChannels.js +70 -0
  25. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationDialogSync.js +36 -0
  26. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationMenu.js +37 -0
  27. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationSubMenu.js +69 -0
  28. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelMaxIcon.vue.js +18 -0
  29. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelPhoneIcon.vue.js +23 -0
  30. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSMSIcon.vue.js +21 -0
  31. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSubmenuMaxIcon.vue.js +34 -0
  32. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSubmenuPhoneIcon.vue.js +32 -0
  33. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSubmenuSMSIcon.vue.js +21 -0
  34. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSubmenuTelegramIcon.vue.js +18 -0
  35. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelSubmenuWhatsAppIcon.vue.js +32 -0
  36. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelTelegramIcon.vue.js +32 -0
  37. package/dist/components/2_blocks/CommunicationPanel/icons/CommunicationPanelWhatsAppIcon.vue.js +18 -0
  38. package/dist/components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js +7 -0
  39. package/dist/components/2_blocks/FeedFoundItem/FeedFoundItem.vue2.js +61 -0
  40. package/dist/components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js +7 -0
  41. package/dist/components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue2.js +58 -0
  42. package/dist/components/2_blocks/FeedSearch/FeedSearch.vue.js +7 -0
  43. package/dist/components/2_blocks/FeedSearch/FeedSearch.vue2.js +68 -0
  44. package/dist/components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue.js +7 -0
  45. package/dist/components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue2.js +70 -0
  46. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js +106 -0
  47. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.js +18 -0
  48. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js +105 -0
  49. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.js +25 -0
  50. package/dist/components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js +98 -0
  51. package/dist/components/2_chatinput_elements/FilePreview/FilePreview.vue.js +7 -0
  52. package/dist/components/2_chatinput_elements/FilePreview/FilePreview.vue2.js +157 -0
  53. package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue.js +7 -0
  54. package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +105 -0
  55. package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.js +21 -0
  56. package/dist/components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.js +66 -0
  57. package/dist/components/2_chatinput_elements/TemplateSelector/TemplateSelector.vue.js +206 -0
  58. package/dist/components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue.js +7 -0
  59. package/dist/components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue2.js +210 -0
  60. package/dist/components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue.js +7 -0
  61. package/dist/components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue2.js +126 -0
  62. package/dist/components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue.js +7 -0
  63. package/dist/components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue2.js +38 -0
  64. package/dist/components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue.js +7 -0
  65. package/dist/components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue2.js +41 -0
  66. package/dist/components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js +281 -0
  67. package/dist/components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js +49 -0
  68. package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +7 -0
  69. package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +193 -0
  70. package/dist/components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js +37 -0
  71. package/dist/components/2_elements/AudioRecorder/AudioRecorder.vue.js +7 -0
  72. package/dist/components/2_elements/AudioRecorder/AudioRecorder.vue2.js +116 -0
  73. package/dist/components/2_elements/ChannelSelector/ChannelSelector.vue.js +73 -0
  74. package/dist/components/2_elements/ChatInfo/ChatInfo.vue.js +93 -0
  75. package/dist/components/2_elements/ChatPanel/ChatPanel.vue.js +47 -0
  76. package/dist/components/2_elements/ContactInfo/ContactInfo.vue.js +158 -0
  77. package/dist/components/2_elements/ThemeMode/ThemeMode.vue.js +49 -0
  78. package/dist/components/2_elements/UserProfile/UserProfile.vue.js +39 -0
  79. package/dist/components/2_elements/VideoRecorder/VideoRecorder.vue.js +7 -0
  80. package/dist/components/2_elements/VideoRecorder/VideoRecorder.vue2.js +94 -0
  81. package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue.js +7 -0
  82. package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue2.js +380 -0
  83. package/dist/components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js +7 -0
  84. package/dist/components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue2.js +57 -0
  85. package/dist/components/2_feed_elements/CallMessage/CallMessage.vue.js +7 -0
  86. package/dist/components/2_feed_elements/CallMessage/CallMessage.vue2.js +476 -0
  87. package/dist/components/2_feed_elements/CallMessage/icons/IncomingCallIcon.vue.js +26 -0
  88. package/dist/components/2_feed_elements/CallMessage/icons/IncomingCallIcon.vue2.js +4 -0
  89. package/dist/components/2_feed_elements/CallMessage/icons/OutgoingCallIcon.vue.js +26 -0
  90. package/dist/components/2_feed_elements/CallMessage/icons/OutgoingCallIcon.vue2.js +4 -0
  91. package/dist/components/2_feed_elements/DateMessage/DateMessage.vue.js +7 -0
  92. package/dist/components/2_feed_elements/DateMessage/DateMessage.vue2.js +20 -0
  93. package/dist/components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js +7 -0
  94. package/dist/components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue2.js +18 -0
  95. package/dist/components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js +7 -0
  96. package/dist/components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue2.js +42 -0
  97. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +7 -0
  98. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +204 -0
  99. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +7 -0
  100. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +266 -0
  101. package/dist/components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js +7 -0
  102. package/dist/components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue2.js +46 -0
  103. package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue.js +7 -0
  104. package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue2.js +161 -0
  105. package/dist/components/2_feed_elements/MessageReactions/composables/usePositioning.js +104 -0
  106. package/dist/components/2_feed_elements/MessageReactions/composables/useReactions.js +30 -0
  107. package/dist/components/2_feed_elements/MessageReactions/composables/useReactionsPanel.js +90 -0
  108. package/dist/components/2_feed_elements/MessageReactions/composables/useReactionsState.js +32 -0
  109. package/dist/components/2_feed_elements/MessageReactions/utils/quickReactions.js +17 -0
  110. package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js +73 -0
  111. package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue2.js +4 -0
  112. package/dist/components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js +7 -0
  113. package/dist/components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue2.js +39 -0
  114. package/dist/components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js +7 -0
  115. package/dist/components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue2.js +35 -0
  116. package/dist/components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js +7 -0
  117. package/dist/components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue2.js +46 -0
  118. package/dist/components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js +7 -0
  119. package/dist/components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue2.js +71 -0
  120. package/dist/components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js +7 -0
  121. package/dist/components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue2.js +119 -0
  122. package/dist/components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js +7 -0
  123. package/dist/components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue2.js +27 -0
  124. package/dist/components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js +7 -0
  125. package/dist/components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue2.js +75 -0
  126. package/dist/components/2_feed_elements/SplashScreen/SplashScreen.vue.js +7 -0
  127. package/dist/components/2_feed_elements/SplashScreen/SplashScreen.vue2.js +23 -0
  128. package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue.js +7 -0
  129. package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue2.js +258 -0
  130. package/dist/components/2_feed_elements/StickerMessage/libs/tgs-player/lottie-player.esm.js +6469 -0
  131. package/dist/components/2_feed_elements/StickerMessage/libs/tgs-player/tgs-player.esm.js +7216 -0
  132. package/dist/components/2_feed_elements/StickerMessage/utils/stickerUtils.js +10 -0
  133. package/dist/components/2_feed_elements/StickerMessage/utils/suppress-lit-warning.js +21 -0
  134. package/dist/components/2_feed_elements/SystemMessage/SystemMessage.vue.js +7 -0
  135. package/dist/components/2_feed_elements/SystemMessage/SystemMessage.vue2.js +18 -0
  136. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +7 -0
  137. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +174 -0
  138. package/dist/components/2_feed_elements/TypingMessage/TypingMessage.vue.js +7 -0
  139. package/dist/components/2_feed_elements/TypingMessage/TypingMessage.vue2.js +32 -0
  140. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +7 -0
  141. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +286 -0
  142. package/dist/{CreateChat-C4y1ddK_.js → components/2_modals/CreateChat/CreateChat.vue.js} +8 -7
  143. package/dist/components/2_modals/CreateChat/CreateChat.vue2.js +1 -0
  144. package/dist/{CreateChat2-Oy9JaaRC.js → components/2_modals/CreateChat2/CreateChat2.vue.js} +4 -3
  145. package/dist/{CreateDialog-DacwclUe.js → components/2_modals/CreateDialog/CreateDialog.vue.js} +12 -11
  146. package/dist/components/2_modals/Modal/Modal.vue.js +69 -0
  147. package/dist/components/2_modals/ModalFullscreen/ModalFullscreen.vue.js +46 -0
  148. package/dist/components/2_modals/ModalNoFooter/ModalNoFooter.vue.js +43 -0
  149. package/dist/components/2_modals/ModalVideoRecorder/ModalVideoRecorder.vue.js +7 -0
  150. package/dist/{ModalVideoRecorder-BkPr4JP7.js → components/2_modals/ModalVideoRecorder/ModalVideoRecorder.vue2.js} +48 -49
  151. package/dist/components/2_modals/SelectUser/SelectUser.vue.js +63 -0
  152. package/dist/{SelectUser2-kaPAmxhi.js → components/2_modals/SelectUser2/SelectUser2.vue.js} +4 -3
  153. package/dist/components/3_compounds/ChatInput/ChatInput.vue.js +7 -0
  154. package/dist/components/3_compounds/ChatInput/ChatInput.vue2.js +192 -0
  155. package/dist/components/3_compounds/ChatInput/icons/SendIcon.vue.js +35 -0
  156. package/dist/components/3_compounds/ChatInput/icons/SendIcon.vue2.js +4 -0
  157. package/dist/components/3_compounds/ChatList/ChatList.vue.js +186 -0
  158. package/dist/components/3_compounds/ChatList/ChatListHeader.vue.js +27 -0
  159. package/dist/components/3_compounds/ChatList/composables/useChatListActions.js +16 -0
  160. package/dist/components/3_compounds/ChatList/composables/useChatListFilter.js +27 -0
  161. package/dist/components/3_compounds/ChatList/composables/useChatListScroll.js +47 -0
  162. package/dist/components/3_compounds/ChatList/composables/useChatListSelection.js +28 -0
  163. package/dist/components/3_compounds/Feed/Feed.vue.js +7 -0
  164. package/dist/components/3_compounds/Feed/Feed.vue2.js +295 -0
  165. package/dist/components/3_compounds/Feed/assets/chat-background.svg.js +7 -0
  166. package/dist/components/3_compounds/Feed/composables/useFeedButton.js +17 -0
  167. package/dist/components/3_compounds/Feed/composables/useFeedComponents.js +29 -0
  168. package/dist/components/3_compounds/Feed/composables/useFeedGrouping.js +15 -0
  169. package/dist/components/3_compounds/Feed/composables/useFeedKeyboard.js +15 -0
  170. package/dist/components/3_compounds/Feed/composables/useFeedLoadMore.js +62 -0
  171. package/dist/components/3_compounds/Feed/composables/useFeedMessageVisibility.js +33 -0
  172. package/dist/components/3_compounds/Feed/composables/useFeedReply.js +42 -0
  173. package/dist/components/3_compounds/Feed/composables/useFeedScroll.js +63 -0
  174. package/dist/components/3_compounds/Feed/composables/useFeedScrollTo.js +18 -0
  175. package/dist/components/3_compounds/Feed/composables/useStickyDate.js +61 -0
  176. package/dist/components/3_compounds/Feed/functions/throttle.js +11 -0
  177. package/dist/components/3_compounds/SideBar/SideBar.vue.js +190 -0
  178. package/dist/components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js +63 -0
  179. package/dist/components/4_layouts/BaseLayout/BaseLayout.vue.js +18 -0
  180. package/dist/components/4_layouts/ChatWrapper/ChatWrapper.vue.js +7 -0
  181. package/dist/components/4_layouts/ChatWrapper/ChatWrapper.vue2.js +53 -0
  182. package/dist/components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js +21 -0
  183. package/dist/components/4_layouts/FeedLayout/FeedLayout.vue.js +15 -0
  184. package/dist/components/5_containers/BaseContainer/BaseContainer.vue.js +33 -0
  185. package/dist/components/5_containers/FloatContainer/FloatContainer.vue.js +104 -0
  186. package/dist/functions/createReactionHandlers.js +19 -0
  187. package/dist/functions/formatTimestamp.js +8 -0
  188. package/dist/functions/getChannelAccentColor.js +30 -0
  189. package/dist/functions/getMessageClass.js +6 -0
  190. package/dist/functions/getStatusMessage.js +42 -0
  191. package/dist/functions/insertDaySeparators.js +24 -0
  192. package/dist/functions/parseMarkdown.js +18 -0
  193. package/dist/functions/playNotificationAudio.js +13 -0
  194. package/dist/functions/sortByTimestamp.js +4 -0
  195. package/dist/hooks/messages/useChannelAccentColor.js +29 -0
  196. package/dist/hooks/messages/useMessageActions.js +28 -0
  197. package/dist/hooks/messages/useMessageLinks.js +48 -0
  198. package/dist/hooks/messages/useSubtextTooltip.js +12 -0
  199. package/dist/hooks/modals/useCreateChat.js +19 -0
  200. package/dist/hooks/modals/useCreateChat2.js +16 -0
  201. package/dist/hooks/modals/useCreateDialog.js +20 -0
  202. package/dist/hooks/modals/useModal.js +41 -0
  203. package/dist/hooks/modals/useModalSelectUser2.js +20 -0
  204. package/dist/hooks/modals/useVideoRecorder.js +14 -0
  205. package/dist/hooks/uploadFile/generatePreview.js +20 -0
  206. package/dist/hooks/uploadFile/getTypeFileByMime.js +7 -0
  207. package/dist/hooks/uploadFile/uploadFile.js +28 -0
  208. package/dist/hooks/useDelayDebouncedRef.js +18 -0
  209. package/dist/hooks/useImmediateDebouncedRef.js +18 -0
  210. package/dist/hooks/useMessageDraft.js +87 -0
  211. package/dist/hooks/useSearchModel.js +11 -0
  212. package/dist/hooks/useTheme.js +11 -0
  213. package/dist/hooks/validators/chats/chatValidator.js +79 -0
  214. package/dist/hooks/validators/chats/useChatValidator.js +82 -0
  215. package/dist/hooks/validators/messages/messageValidator.js +84 -0
  216. package/dist/hooks/validators/messages/useMessageValidator.js +82 -0
  217. package/dist/hooks/validators/sidebar/sidebarValidator.js +47 -0
  218. package/dist/hooks/validators/sidebar/useSidebarValidator.js +82 -0
  219. package/dist/hooks/validators/useValidation.js +94 -0
  220. package/dist/index.js +239 -0
  221. package/dist/locale/en.js +22 -0
  222. package/dist/locale/ru.js +22 -0
  223. package/dist/locale/useLocale.js +34 -0
  224. package/dist/node_modules/entities/lib/esm/decode.js +278 -0
  225. package/dist/node_modules/entities/lib/esm/decode_codepoint.js +46 -0
  226. package/dist/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  227. package/dist/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  228. package/dist/node_modules/linkify-it/index.js +187 -0
  229. package/dist/node_modules/linkify-it/lib/re.js +19 -0
  230. package/dist/node_modules/linkify-string/dist/linkify-string.js +41 -0
  231. package/dist/node_modules/linkifyjs/dist/linkify.js +679 -0
  232. package/dist/node_modules/markdown-it/lib/common/html_blocks.js +67 -0
  233. package/dist/node_modules/markdown-it/lib/common/html_re.js +5 -0
  234. package/dist/node_modules/markdown-it/lib/common/utils.js +169 -0
  235. package/dist/node_modules/markdown-it/lib/helpers/index.js +8 -0
  236. package/dist/node_modules/markdown-it/lib/helpers/parse_link_destination.js +44 -0
  237. package/dist/node_modules/markdown-it/lib/helpers/parse_link_label.js +21 -0
  238. package/dist/node_modules/markdown-it/lib/helpers/parse_link_title.js +37 -0
  239. package/dist/node_modules/markdown-it/lib/index.js +112 -0
  240. package/dist/node_modules/markdown-it/lib/parser_block.js +63 -0
  241. package/dist/node_modules/markdown-it/lib/parser_core.js +34 -0
  242. package/dist/node_modules/markdown-it/lib/parser_inline.js +96 -0
  243. package/dist/node_modules/markdown-it/lib/presets/commonmark.js +78 -0
  244. package/dist/node_modules/markdown-it/lib/presets/default.js +40 -0
  245. package/dist/node_modules/markdown-it/lib/presets/zero.js +59 -0
  246. package/dist/node_modules/markdown-it/lib/renderer.js +127 -0
  247. package/dist/node_modules/markdown-it/lib/ruler.js +95 -0
  248. package/dist/node_modules/markdown-it/lib/rules_block/blockquote.js +59 -0
  249. package/dist/node_modules/markdown-it/lib/rules_block/code.js +23 -0
  250. package/dist/node_modules/markdown-it/lib/rules_block/fence.js +30 -0
  251. package/dist/node_modules/markdown-it/lib/rules_block/heading.js +28 -0
  252. package/dist/node_modules/markdown-it/lib/rules_block/hr.js +27 -0
  253. package/dist/node_modules/markdown-it/lib/rules_block/html_block.js +37 -0
  254. package/dist/node_modules/markdown-it/lib/rules_block/lheading.js +43 -0
  255. package/dist/node_modules/markdown-it/lib/rules_block/list.js +110 -0
  256. package/dist/node_modules/markdown-it/lib/rules_block/paragraph.js +25 -0
  257. package/dist/node_modules/markdown-it/lib/rules_block/reference.js +95 -0
  258. package/dist/node_modules/markdown-it/lib/rules_block/state_block.js +84 -0
  259. package/dist/node_modules/markdown-it/lib/rules_block/table.js +99 -0
  260. package/dist/node_modules/markdown-it/lib/rules_core/block.js +7 -0
  261. package/dist/node_modules/markdown-it/lib/rules_core/inline.js +10 -0
  262. package/dist/node_modules/markdown-it/lib/rules_core/linkify.js +57 -0
  263. package/dist/node_modules/markdown-it/lib/rules_core/normalize.js +9 -0
  264. package/dist/node_modules/markdown-it/lib/rules_core/replacements.js +31 -0
  265. package/dist/node_modules/markdown-it/lib/rules_core/smartquotes.js +80 -0
  266. package/dist/node_modules/markdown-it/lib/rules_core/state_core.js +8 -0
  267. package/dist/node_modules/markdown-it/lib/rules_core/text_join.js +16 -0
  268. package/dist/node_modules/markdown-it/lib/rules_inline/autolink.js +46 -0
  269. package/dist/node_modules/markdown-it/lib/rules_inline/backticks.js +31 -0
  270. package/dist/node_modules/markdown-it/lib/rules_inline/balance_pairs.js +34 -0
  271. package/dist/node_modules/markdown-it/lib/rules_inline/emphasis.js +57 -0
  272. package/dist/node_modules/markdown-it/lib/rules_inline/entity.js +33 -0
  273. package/dist/node_modules/markdown-it/lib/rules_inline/escape.js +32 -0
  274. package/dist/node_modules/markdown-it/lib/rules_inline/fragments_join.js +10 -0
  275. package/dist/node_modules/markdown-it/lib/rules_inline/html_inline.js +32 -0
  276. package/dist/node_modules/markdown-it/lib/rules_inline/image.js +48 -0
  277. package/dist/node_modules/markdown-it/lib/rules_inline/link.js +40 -0
  278. package/dist/node_modules/markdown-it/lib/rules_inline/linkify.js +28 -0
  279. package/dist/node_modules/markdown-it/lib/rules_inline/newline.js +23 -0
  280. package/dist/node_modules/markdown-it/lib/rules_inline/state_inline.js +27 -0
  281. package/dist/node_modules/markdown-it/lib/rules_inline/strikethrough.js +54 -0
  282. package/dist/node_modules/markdown-it/lib/rules_inline/text.js +39 -0
  283. package/dist/node_modules/markdown-it/lib/token.js +31 -0
  284. package/dist/node_modules/mdurl/index.js +10 -0
  285. package/dist/node_modules/mdurl/lib/decode.js +61 -0
  286. package/dist/node_modules/mdurl/lib/encode.js +48 -0
  287. package/dist/node_modules/mdurl/lib/format.js +7 -0
  288. package/dist/node_modules/mdurl/lib/parse.js +74 -0
  289. package/dist/node_modules/punycode.js/punycode.es6.js +139 -0
  290. package/dist/node_modules/uc.micro/categories/Cc/regex.js +4 -0
  291. package/dist/node_modules/uc.micro/categories/Cf/regex.js +4 -0
  292. package/dist/node_modules/uc.micro/categories/P/regex.js +4 -0
  293. package/dist/node_modules/uc.micro/categories/S/regex.js +4 -0
  294. package/dist/node_modules/uc.micro/categories/Z/regex.js +4 -0
  295. package/dist/node_modules/uc.micro/index.js +14 -0
  296. package/dist/node_modules/uc.micro/properties/Any/regex.js +4 -0
  297. package/dist/node_modules/vue3-emoji-picker-ru/dist/emoji-picker.es.js +16471 -0
  298. package/dist/types/components/1_icons/AvatarIcon.vue.d.ts +1 -1
  299. package/dist/types/components/2_blocks/FeedSearch/FeedSearch.vue.d.ts +2 -2
  300. package/dist/types/components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.d.ts +2 -2
  301. package/dist/types/components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.d.ts +2 -2
  302. package/dist/types/components/2_feed_elements/AudioMessage/AudioMessage.vue.d.ts +2 -2
  303. package/dist/types/components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.d.ts +2 -2
  304. package/dist/types/components/2_feed_elements/CallMessage/CallMessage.vue.d.ts +2 -2
  305. package/dist/types/components/2_feed_elements/FileMessage/FileMessage.vue.d.ts +2 -2
  306. package/dist/types/components/2_feed_elements/ImageMessage/ImageMessage.vue.d.ts +2 -2
  307. package/dist/types/components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.d.ts +1 -3
  308. package/dist/types/components/2_feed_elements/StickerMessage/StickerMessage.vue.d.ts +3 -5
  309. package/dist/types/components/2_feed_elements/StickerMessage/utils/stickerUtils.d.ts +19 -0
  310. package/dist/types/components/2_feed_elements/TextMessage/TextMessage.vue.d.ts +2 -2
  311. package/dist/types/components/2_feed_elements/VideoMessage/VideoMessage.vue.d.ts +2 -2
  312. package/dist/types/components/2_modals/CreateDialog/CreateDialog.vue.d.ts +2 -2
  313. package/dist/types/components/2_modals/CreateDialog/stories/CreateDialog.stories.d.ts +2 -2
  314. package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +1 -1
  315. package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +2 -2
  316. package/dist/types/main.d.ts +1 -1
  317. package/package.json +5 -5
  318. package/dist/index-BzAEsq7j.js +0 -43508
  319. package/dist/vuessages.es.js +0 -123
  320. package/dist/vuessages.umd.js +0 -624
  321. /package/dist/types/{utils → components/2_feed_elements/StickerMessage/utils}/suppress-lit-warning.d.ts +0 -0
@@ -0,0 +1,679 @@
1
+ const Re = "aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2", Ce = "ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2", Bt = "numeric", Kt = "ascii", Ft = "alpha", W = "asciinumeric", F = "alphanumeric", Wt = "domain", ce = "emoji", pe = "scheme", Se = "slashscheme", vt = "whitespace";
2
+ function Oe(t, n) {
3
+ return t in n || (n[t] = []), n[t];
4
+ }
5
+ function j(t, n, e) {
6
+ n[Bt] && (n[W] = !0, n[F] = !0), n[Kt] && (n[W] = !0, n[Ft] = !0), n[W] && (n[F] = !0), n[Ft] && (n[F] = !0), n[F] && (n[Wt] = !0), n[ce] && (n[Wt] = !0);
7
+ for (const s in n) {
8
+ const i = Oe(s, e);
9
+ i.indexOf(t) < 0 && i.push(t);
10
+ }
11
+ }
12
+ function ye(t, n) {
13
+ const e = {};
14
+ for (const s in n)
15
+ n[s].indexOf(t) >= 0 && (e[s] = !0);
16
+ return e;
17
+ }
18
+ function p(t = null) {
19
+ this.j = {}, this.jr = [], this.jd = null, this.t = t;
20
+ }
21
+ p.groups = {};
22
+ p.prototype = {
23
+ accepts() {
24
+ return !!this.t;
25
+ },
26
+ /**
27
+ * Follow an existing transition from the given input to the next state.
28
+ * Does not mutate.
29
+ * @param {string} input character or token type to transition on
30
+ * @returns {?State<T>} the next state, if any
31
+ */
32
+ go(t) {
33
+ const n = this, e = n.j[t];
34
+ if (e)
35
+ return e;
36
+ for (let s = 0; s < n.jr.length; s++) {
37
+ const i = n.jr[s][0], r = n.jr[s][1];
38
+ if (r && i.test(t))
39
+ return r;
40
+ }
41
+ return n.jd;
42
+ },
43
+ /**
44
+ * Whether the state has a transition for the given input. Set the second
45
+ * argument to true to only look for an exact match (and not a default or
46
+ * regular-expression-based transition)
47
+ * @param {string} input
48
+ * @param {boolean} exactOnly
49
+ */
50
+ has(t, n = !1) {
51
+ return n ? t in this.j : !!this.go(t);
52
+ },
53
+ /**
54
+ * Short for "transition all"; create a transition from the array of items
55
+ * in the given list to the same final resulting state.
56
+ * @param {string | string[]} inputs Group of inputs to transition on
57
+ * @param {Transition<T> | State<T>} [next] Transition options
58
+ * @param {Flags} [flags] Collections flags to add token to
59
+ * @param {Collections<T>} [groups] Master list of token groups
60
+ */
61
+ ta(t, n, e, s) {
62
+ for (let i = 0; i < t.length; i++)
63
+ this.tt(t[i], n, e, s);
64
+ },
65
+ /**
66
+ * Short for "take regexp transition"; defines a transition for this state
67
+ * when it encounters a token which matches the given regular expression
68
+ * @param {RegExp} regexp Regular expression transition (populate first)
69
+ * @param {T | State<T>} [next] Transition options
70
+ * @param {Flags} [flags] Collections flags to add token to
71
+ * @param {Collections<T>} [groups] Master list of token groups
72
+ * @returns {State<T>} taken after the given input
73
+ */
74
+ tr(t, n, e, s) {
75
+ s = s || p.groups;
76
+ let i;
77
+ return n && n.j ? i = n : (i = new p(n), e && s && j(n, e, s)), this.jr.push([t, i]), i;
78
+ },
79
+ /**
80
+ * Short for "take transitions", will take as many sequential transitions as
81
+ * the length of the given input and returns the
82
+ * resulting final state.
83
+ * @param {string | string[]} input
84
+ * @param {T | State<T>} [next] Transition options
85
+ * @param {Flags} [flags] Collections flags to add token to
86
+ * @param {Collections<T>} [groups] Master list of token groups
87
+ * @returns {State<T>} taken after the given input
88
+ */
89
+ ts(t, n, e, s) {
90
+ let i = this;
91
+ const r = t.length;
92
+ if (!r)
93
+ return i;
94
+ for (let a = 0; a < r - 1; a++)
95
+ i = i.tt(t[a]);
96
+ return i.tt(t[r - 1], n, e, s);
97
+ },
98
+ /**
99
+ * Short for "take transition", this is a method for building/working with
100
+ * state machines.
101
+ *
102
+ * If a state already exists for the given input, returns it.
103
+ *
104
+ * If a token is specified, that state will emit that token when reached by
105
+ * the linkify engine.
106
+ *
107
+ * If no state exists, it will be initialized with some default transitions
108
+ * that resemble existing default transitions.
109
+ *
110
+ * If a state is given for the second argument, that state will be
111
+ * transitioned to on the given input regardless of what that input
112
+ * previously did.
113
+ *
114
+ * Specify a token group flags to define groups that this token belongs to.
115
+ * The token will be added to corresponding entires in the given groups
116
+ * object.
117
+ *
118
+ * @param {string} input character, token type to transition on
119
+ * @param {T | State<T>} [next] Transition options
120
+ * @param {Flags} [flags] Collections flags to add token to
121
+ * @param {Collections<T>} [groups] Master list of groups
122
+ * @returns {State<T>} taken after the given input
123
+ */
124
+ tt(t, n, e, s) {
125
+ s = s || p.groups;
126
+ const i = this;
127
+ if (n && n.j)
128
+ return i.j[t] = n, n;
129
+ const r = n;
130
+ let a, l = i.go(t);
131
+ if (l ? (a = new p(), Object.assign(a.j, l.j), a.jr.push.apply(a.jr, l.jr), a.jd = l.jd, a.t = l.t) : a = new p(), r) {
132
+ if (s)
133
+ if (a.t && typeof a.t == "string") {
134
+ const h = Object.assign(ye(a.t, s), e);
135
+ j(r, h, s);
136
+ } else e && j(r, e, s);
137
+ a.t = r;
138
+ }
139
+ return i.j[t] = a, a;
140
+ }
141
+ };
142
+ const c = (t, n, e, s, i) => t.ta(n, e, s, i), E = (t, n, e, s, i) => t.tr(n, e, s, i), ne = (t, n, e, s, i) => t.ts(n, e, s, i), o = (t, n, e, s, i) => t.tt(n, e, s, i), I = "WORD", zt = "UWORD", le = "ASCIINUMERICAL", ue = "ALPHANUMERICAL", J = "LOCALHOST", Gt = "TLD", Qt = "UTLD", tt = "SCHEME", U = "SLASH_SCHEME", _t = "NUM", qt = "WS", Jt = "NL", z = "OPENBRACE", G = "CLOSEBRACE", et = "OPENBRACKET", nt = "CLOSEBRACKET", st = "OPENPAREN", it = "CLOSEPAREN", ot = "OPENANGLEBRACKET", rt = "CLOSEANGLEBRACKET", at = "FULLWIDTHLEFTPAREN", ct = "FULLWIDTHRIGHTPAREN", lt = "LEFTCORNERBRACKET", ut = "RIGHTCORNERBRACKET", ht = "LEFTWHITECORNERBRACKET", dt = "RIGHTWHITECORNERBRACKET", Et = "FULLWIDTHLESSTHAN", mt = "FULLWIDTHGREATERTHAN", gt = "AMPERSAND", ft = "APOSTROPHE", At = "ASTERISK", v = "AT", Tt = "BACKSLASH", Lt = "BACKTICK", Rt = "CARET", w = "COLON", Yt = "COMMA", Ct = "DOLLAR", y = "DOT", pt = "EQUALS", $t = "EXCLAMATION", O = "HYPHEN", Q = "PERCENT", St = "PIPE", Ot = "PLUS", yt = "POUND", q = "QUERY", Xt = "QUOTE", he = "FULLWIDTHMIDDLEDOT", Vt = "SEMI", b = "SLASH", _ = "TILDE", bt = "UNDERSCORE", de = "EMOJI", kt = "SYM";
143
+ var Ee = /* @__PURE__ */ Object.freeze({
144
+ __proto__: null,
145
+ ALPHANUMERICAL: ue,
146
+ AMPERSAND: gt,
147
+ APOSTROPHE: ft,
148
+ ASCIINUMERICAL: le,
149
+ ASTERISK: At,
150
+ AT: v,
151
+ BACKSLASH: Tt,
152
+ BACKTICK: Lt,
153
+ CARET: Rt,
154
+ CLOSEANGLEBRACKET: rt,
155
+ CLOSEBRACE: G,
156
+ CLOSEBRACKET: nt,
157
+ CLOSEPAREN: it,
158
+ COLON: w,
159
+ COMMA: Yt,
160
+ DOLLAR: Ct,
161
+ DOT: y,
162
+ EMOJI: de,
163
+ EQUALS: pt,
164
+ EXCLAMATION: $t,
165
+ FULLWIDTHGREATERTHAN: mt,
166
+ FULLWIDTHLEFTPAREN: at,
167
+ FULLWIDTHLESSTHAN: Et,
168
+ FULLWIDTHMIDDLEDOT: he,
169
+ FULLWIDTHRIGHTPAREN: ct,
170
+ HYPHEN: O,
171
+ LEFTCORNERBRACKET: lt,
172
+ LEFTWHITECORNERBRACKET: ht,
173
+ LOCALHOST: J,
174
+ NL: Jt,
175
+ NUM: _t,
176
+ OPENANGLEBRACKET: ot,
177
+ OPENBRACE: z,
178
+ OPENBRACKET: et,
179
+ OPENPAREN: st,
180
+ PERCENT: Q,
181
+ PIPE: St,
182
+ PLUS: Ot,
183
+ POUND: yt,
184
+ QUERY: q,
185
+ QUOTE: Xt,
186
+ RIGHTCORNERBRACKET: ut,
187
+ RIGHTWHITECORNERBRACKET: dt,
188
+ SCHEME: tt,
189
+ SEMI: Vt,
190
+ SLASH: b,
191
+ SLASH_SCHEME: U,
192
+ SYM: kt,
193
+ TILDE: _,
194
+ TLD: Gt,
195
+ UNDERSCORE: bt,
196
+ UTLD: Qt,
197
+ UWORD: zt,
198
+ WORD: I,
199
+ WS: qt
200
+ });
201
+ const k = /[a-z]/, K = new RegExp("\\p{L}", "u"), wt = new RegExp("\\p{Emoji}", "u"), N = /\d/, jt = /\s/, se = "\r", xt = `
202
+ `, be = "️", ke = "‍", Ut = "";
203
+ let X = null, V = null;
204
+ function Ne(t = []) {
205
+ const n = {};
206
+ p.groups = n;
207
+ const e = new p();
208
+ X == null && (X = ie(Re)), V == null && (V = ie(Ce)), o(e, "'", ft), o(e, "{", z), o(e, "}", G), o(e, "[", et), o(e, "]", nt), o(e, "(", st), o(e, ")", it), o(e, "<", ot), o(e, ">", rt), o(e, "(", at), o(e, ")", ct), o(e, "「", lt), o(e, "」", ut), o(e, "『", ht), o(e, "』", dt), o(e, "<", Et), o(e, ">", mt), o(e, "&", gt), o(e, "*", At), o(e, "@", v), o(e, "`", Lt), o(e, "^", Rt), o(e, ":", w), o(e, ",", Yt), o(e, "$", Ct), o(e, ".", y), o(e, "=", pt), o(e, "!", $t), o(e, "-", O), o(e, "%", Q), o(e, "|", St), o(e, "+", Ot), o(e, "#", yt), o(e, "?", q), o(e, '"', Xt), o(e, "/", b), o(e, ";", Vt), o(e, "~", _), o(e, "_", bt), o(e, "\\", Tt), o(e, "・", he);
209
+ const s = E(e, N, _t, {
210
+ [Bt]: !0
211
+ });
212
+ E(s, N, s);
213
+ const i = E(s, k, le, {
214
+ [W]: !0
215
+ }), r = E(s, K, ue, {
216
+ [F]: !0
217
+ }), a = E(e, k, I, {
218
+ [Kt]: !0
219
+ });
220
+ E(a, N, i), E(a, k, a), E(i, N, i), E(i, k, i);
221
+ const l = E(e, K, zt, {
222
+ [Ft]: !0
223
+ });
224
+ E(l, k), E(l, N, r), E(l, K, l), E(r, N, r), E(r, k), E(r, K, r);
225
+ const h = o(e, xt, Jt, {
226
+ [vt]: !0
227
+ }), m = o(e, se, qt, {
228
+ [vt]: !0
229
+ }), d = E(e, jt, qt, {
230
+ [vt]: !0
231
+ });
232
+ o(e, Ut, d), o(m, xt, h), o(m, Ut, d), E(m, jt, d), o(d, se), o(d, xt), E(d, jt, d), o(d, Ut, d);
233
+ const u = E(e, wt, de, {
234
+ [ce]: !0
235
+ });
236
+ o(u, "#"), E(u, wt, u), o(u, be, u);
237
+ const g = o(u, ke);
238
+ o(g, "#"), E(g, wt, u);
239
+ const f = [[k, a], [N, i]], H = [[k, null], [K, l], [N, r]];
240
+ for (let A = 0; A < X.length; A++)
241
+ P(e, X[A], Gt, I, f);
242
+ for (let A = 0; A < V.length; A++)
243
+ P(e, V[A], Qt, zt, H);
244
+ j(Gt, {
245
+ tld: !0,
246
+ ascii: !0
247
+ }, n), j(Qt, {
248
+ utld: !0,
249
+ alpha: !0
250
+ }, n), P(e, "file", tt, I, f), P(e, "mailto", tt, I, f), P(e, "http", U, I, f), P(e, "https", U, I, f), P(e, "ftp", U, I, f), P(e, "ftps", U, I, f), j(tt, {
251
+ scheme: !0,
252
+ ascii: !0
253
+ }, n), j(U, {
254
+ slashscheme: !0,
255
+ ascii: !0
256
+ }, n), t = t.sort((A, C) => A[0] > C[0] ? 1 : -1);
257
+ for (let A = 0; A < t.length; A++) {
258
+ const C = t[A][0], T = t[A][1] ? {
259
+ [pe]: !0
260
+ } : {
261
+ [Se]: !0
262
+ };
263
+ C.indexOf("-") >= 0 ? T[Wt] = !0 : k.test(C) ? N.test(C) ? T[W] = !0 : T[Kt] = !0 : T[Bt] = !0, ne(e, C, C, T);
264
+ }
265
+ return ne(e, "localhost", J, {
266
+ ascii: !0
267
+ }), e.jd = new p(kt), {
268
+ start: e,
269
+ tokens: Object.assign({
270
+ groups: n
271
+ }, Ee)
272
+ };
273
+ }
274
+ function me(t, n) {
275
+ const e = Ie(n.replace(/[A-Z]/g, (l) => l.toLowerCase())), s = e.length, i = [];
276
+ let r = 0, a = 0;
277
+ for (; a < s; ) {
278
+ let l = t, h = null, m = 0, d = null, u = -1, g = -1;
279
+ for (; a < s && (h = l.go(e[a])); )
280
+ l = h, l.accepts() ? (u = 0, g = 0, d = l) : u >= 0 && (u += e[a].length, g++), m += e[a].length, r += e[a].length, a++;
281
+ r -= u, a -= g, m -= u, i.push({
282
+ t: d.t,
283
+ // token type/name
284
+ v: n.slice(r - m, r),
285
+ // string value
286
+ s: r - m,
287
+ // start index
288
+ e: r
289
+ // end index (excluding)
290
+ });
291
+ }
292
+ return i;
293
+ }
294
+ function Ie(t) {
295
+ const n = [], e = t.length;
296
+ let s = 0;
297
+ for (; s < e; ) {
298
+ let i = t.charCodeAt(s), r, a = i < 55296 || i > 56319 || s + 1 === e || (r = t.charCodeAt(s + 1)) < 56320 || r > 57343 ? t[s] : t.slice(s, s + 2);
299
+ n.push(a), s += a.length;
300
+ }
301
+ return n;
302
+ }
303
+ function P(t, n, e, s, i) {
304
+ let r;
305
+ const a = n.length;
306
+ for (let l = 0; l < a - 1; l++) {
307
+ const h = n[l];
308
+ t.j[h] ? r = t.j[h] : (r = new p(s), r.jr = i.slice(), t.j[h] = r), t = r;
309
+ }
310
+ return r = new p(e), r.jr = i.slice(), t.j[n[a - 1]] = r, r;
311
+ }
312
+ function ie(t) {
313
+ const n = [], e = [];
314
+ let s = 0, i = "0123456789";
315
+ for (; s < t.length; ) {
316
+ let r = 0;
317
+ for (; i.indexOf(t[s + r]) >= 0; )
318
+ r++;
319
+ if (r > 0) {
320
+ n.push(e.join(""));
321
+ for (let a = parseInt(t.substring(s, s + r), 10); a > 0; a--)
322
+ e.pop();
323
+ s += r;
324
+ } else
325
+ e.push(t[s]), s++;
326
+ }
327
+ return n;
328
+ }
329
+ const Y = {
330
+ defaultProtocol: "http",
331
+ events: null,
332
+ format: oe,
333
+ formatHref: oe,
334
+ nl2br: !1,
335
+ tagName: "a",
336
+ target: null,
337
+ rel: null,
338
+ validate: !0,
339
+ truncate: 1 / 0,
340
+ className: null,
341
+ attributes: null,
342
+ ignoreTags: [],
343
+ render: null
344
+ };
345
+ function ge(t, n = null) {
346
+ let e = Object.assign({}, Y);
347
+ t && (e = Object.assign(e, t instanceof ge ? t.o : t));
348
+ const s = e.ignoreTags, i = [];
349
+ for (let r = 0; r < s.length; r++)
350
+ i.push(s[r].toUpperCase());
351
+ this.o = e, n && (this.defaultRender = n), this.ignoreTags = i;
352
+ }
353
+ ge.prototype = {
354
+ o: Y,
355
+ /**
356
+ * @type string[]
357
+ */
358
+ ignoreTags: [],
359
+ /**
360
+ * @param {IntermediateRepresentation} ir
361
+ * @returns {any}
362
+ */
363
+ defaultRender(t) {
364
+ return t;
365
+ },
366
+ /**
367
+ * Returns true or false based on whether a token should be displayed as a
368
+ * link based on the user options.
369
+ * @param {MultiToken} token
370
+ * @returns {boolean}
371
+ */
372
+ check(t) {
373
+ return this.get("validate", t.toString(), t);
374
+ },
375
+ // Private methods
376
+ /**
377
+ * Resolve an option's value based on the value of the option and the given
378
+ * params. If operator and token are specified and the target option is
379
+ * callable, automatically calls the function with the given argument.
380
+ * @template {keyof Opts} K
381
+ * @param {K} key Name of option to use
382
+ * @param {string} [operator] will be passed to the target option if it's a
383
+ * function. If not specified, RAW function value gets returned
384
+ * @param {MultiToken} [token] The token from linkify.tokenize
385
+ * @returns {Opts[K] | any}
386
+ */
387
+ get(t, n, e) {
388
+ const s = n != null;
389
+ let i = this.o[t];
390
+ return i && (typeof i == "object" ? (i = e.t in i ? i[e.t] : Y[t], typeof i == "function" && s && (i = i(n, e))) : typeof i == "function" && s && (i = i(n, e.t, e)), i);
391
+ },
392
+ /**
393
+ * @template {keyof Opts} L
394
+ * @param {L} key Name of options object to use
395
+ * @param {string} [operator]
396
+ * @param {MultiToken} [token]
397
+ * @returns {Opts[L] | any}
398
+ */
399
+ getObj(t, n, e) {
400
+ let s = this.o[t];
401
+ return typeof s == "function" && n != null && (s = s(n, e.t, e)), s;
402
+ },
403
+ /**
404
+ * Convert the given token to a rendered element that may be added to the
405
+ * calling-interface's DOM
406
+ * @param {MultiToken} token Token to render to an HTML element
407
+ * @returns {any} Render result; e.g., HTML string, DOM element, React
408
+ * Component, etc.
409
+ */
410
+ render(t) {
411
+ const n = t.render(this);
412
+ return (this.get("render", null, t) || this.defaultRender)(n, t.t, t);
413
+ }
414
+ };
415
+ function oe(t) {
416
+ return t;
417
+ }
418
+ function fe(t, n) {
419
+ this.t = "token", this.v = t, this.tk = n;
420
+ }
421
+ fe.prototype = {
422
+ isLink: !1,
423
+ /**
424
+ * Return the string this token represents.
425
+ * @return {string}
426
+ */
427
+ toString() {
428
+ return this.v;
429
+ },
430
+ /**
431
+ * What should the value for this token be in the `href` HTML attribute?
432
+ * Returns the `.toString` value by default.
433
+ * @param {string} [scheme]
434
+ * @return {string}
435
+ */
436
+ toHref(t) {
437
+ return this.toString();
438
+ },
439
+ /**
440
+ * @param {Options} options Formatting options
441
+ * @returns {string}
442
+ */
443
+ toFormattedString(t) {
444
+ const n = this.toString(), e = t.get("truncate", n, this), s = t.get("format", n, this);
445
+ return e && s.length > e ? s.substring(0, e) + "…" : s;
446
+ },
447
+ /**
448
+ *
449
+ * @param {Options} options
450
+ * @returns {string}
451
+ */
452
+ toFormattedHref(t) {
453
+ return t.get("formatHref", this.toHref(t.get("defaultProtocol")), this);
454
+ },
455
+ /**
456
+ * The start index of this token in the original input string
457
+ * @returns {number}
458
+ */
459
+ startIndex() {
460
+ return this.tk[0].s;
461
+ },
462
+ /**
463
+ * The end index of this token in the original input string (up to this
464
+ * index but not including it)
465
+ * @returns {number}
466
+ */
467
+ endIndex() {
468
+ return this.tk[this.tk.length - 1].e;
469
+ },
470
+ /**
471
+ Returns an object of relevant values for this token, which includes keys
472
+ * type - Kind of token ('url', 'email', etc.)
473
+ * value - Original text
474
+ * href - The value that should be added to the anchor tag's href
475
+ attribute
476
+ @method toObject
477
+ @param {string} [protocol] `'http'` by default
478
+ */
479
+ toObject(t = Y.defaultProtocol) {
480
+ return {
481
+ type: this.t,
482
+ value: this.toString(),
483
+ isLink: this.isLink,
484
+ href: this.toHref(t),
485
+ start: this.startIndex(),
486
+ end: this.endIndex()
487
+ };
488
+ },
489
+ /**
490
+ *
491
+ * @param {Options} options Formatting option
492
+ */
493
+ toFormattedObject(t) {
494
+ return {
495
+ type: this.t,
496
+ value: this.toFormattedString(t),
497
+ isLink: this.isLink,
498
+ href: this.toFormattedHref(t),
499
+ start: this.startIndex(),
500
+ end: this.endIndex()
501
+ };
502
+ },
503
+ /**
504
+ * Whether this token should be rendered as a link according to the given options
505
+ * @param {Options} options
506
+ * @returns {boolean}
507
+ */
508
+ validate(t) {
509
+ return t.get("validate", this.toString(), this);
510
+ },
511
+ /**
512
+ * Return an object that represents how this link should be rendered.
513
+ * @param {Options} options Formattinng options
514
+ */
515
+ render(t) {
516
+ const n = this, e = this.toHref(t.get("defaultProtocol")), s = t.get("formatHref", e, this), i = t.get("tagName", e, n), r = this.toFormattedString(t), a = {}, l = t.get("className", e, n), h = t.get("target", e, n), m = t.get("rel", e, n), d = t.getObj("attributes", e, n), u = t.getObj("events", e, n);
517
+ return a.href = s, l && (a.class = l), h && (a.target = h), m && (a.rel = m), d && Object.assign(a, d), {
518
+ tagName: i,
519
+ attributes: a,
520
+ content: r,
521
+ eventListeners: u
522
+ };
523
+ }
524
+ };
525
+ function Nt(t, n) {
526
+ class e extends fe {
527
+ constructor(i, r) {
528
+ super(i, r), this.t = t;
529
+ }
530
+ }
531
+ for (const s in n)
532
+ e.prototype[s] = n[s];
533
+ return e.t = t, e;
534
+ }
535
+ const re = Nt("email", {
536
+ isLink: !0,
537
+ toHref() {
538
+ return "mailto:" + this.toString();
539
+ }
540
+ }), ae = Nt("text"), He = Nt("nl"), Z = Nt("url", {
541
+ isLink: !0,
542
+ /**
543
+ Lowercases relevant parts of the domain and adds the protocol if
544
+ required. Note that this will not escape unsafe HTML characters in the
545
+ URL.
546
+ @param {string} [scheme] default scheme (e.g., 'https')
547
+ @return {string} the full href
548
+ */
549
+ toHref(t = Y.defaultProtocol) {
550
+ return this.hasProtocol() ? this.v : `${t}://${this.v}`;
551
+ },
552
+ /**
553
+ * Check whether this URL token has a protocol
554
+ * @return {boolean}
555
+ */
556
+ hasProtocol() {
557
+ const t = this.tk;
558
+ return t.length >= 2 && t[0].t !== J && t[1].t === w;
559
+ }
560
+ }), S = (t) => new p(t);
561
+ function De({
562
+ groups: t
563
+ }) {
564
+ const n = t.domain.concat([gt, At, v, Tt, Lt, Rt, Ct, pt, O, _t, Q, St, Ot, yt, b, kt, _, bt]), e = [ft, w, Yt, y, $t, Q, q, Xt, Vt, ot, rt, z, G, nt, et, st, it, at, ct, lt, ut, ht, dt, Et, mt], s = [gt, ft, At, Tt, Lt, Rt, Ct, pt, O, z, G, Q, St, Ot, yt, q, b, kt, _, bt], i = S(), r = o(i, _);
565
+ c(r, s, r), c(r, t.domain, r);
566
+ const a = S(), l = S(), h = S();
567
+ c(i, t.domain, a), c(i, t.scheme, l), c(i, t.slashscheme, h), c(a, s, r), c(a, t.domain, a);
568
+ const m = o(a, v);
569
+ o(r, v, m), o(l, v, m), o(h, v, m);
570
+ const d = o(r, y);
571
+ c(d, s, r), c(d, t.domain, r);
572
+ const u = S();
573
+ c(m, t.domain, u), c(u, t.domain, u);
574
+ const g = o(u, y);
575
+ c(g, t.domain, u);
576
+ const f = S(re);
577
+ c(g, t.tld, f), c(g, t.utld, f), o(m, J, f);
578
+ const H = o(u, O);
579
+ o(H, O, H), c(H, t.domain, u), c(f, t.domain, u), o(f, y, g), o(f, O, H);
580
+ const A = o(f, w);
581
+ c(A, t.numeric, re);
582
+ const C = o(a, O), D = o(a, y);
583
+ o(C, O, C), c(C, t.domain, a), c(D, s, r), c(D, t.domain, a);
584
+ const T = S(Z);
585
+ c(D, t.tld, T), c(D, t.utld, T), c(T, t.domain, a), c(T, s, r), o(T, y, D), o(T, O, C), o(T, v, m);
586
+ const Ae = o(T, w), Zt = S(Z);
587
+ c(Ae, t.numeric, Zt);
588
+ const L = S(Z), M = S();
589
+ c(L, n, L), c(L, e, M), c(M, n, L), c(M, e, M), o(T, b, L), o(Zt, b, L);
590
+ const It = o(l, w), Te = o(h, w), Le = o(Te, b), Ht = o(Le, b);
591
+ c(l, t.domain, a), o(l, y, D), o(l, O, C), c(h, t.domain, a), o(h, y, D), o(h, O, C), c(It, t.domain, L), o(It, b, L), o(It, q, L), c(Ht, t.domain, L), c(Ht, n, L), o(Ht, b, L);
592
+ const te = [
593
+ [z, G],
594
+ // {}
595
+ [et, nt],
596
+ // []
597
+ [st, it],
598
+ // ()
599
+ [ot, rt],
600
+ // <>
601
+ [at, ct],
602
+ // ()
603
+ [lt, ut],
604
+ // 「」
605
+ [ht, dt],
606
+ // 『』
607
+ [Et, mt]
608
+ // <>
609
+ ];
610
+ for (let Dt = 0; Dt < te.length; Dt++) {
611
+ const [ee, Pt] = te[Dt], $ = o(L, ee);
612
+ o(M, ee, $), o($, Pt, L);
613
+ const x = S(Z);
614
+ c($, n, x);
615
+ const B = S();
616
+ c($, e), c(x, n, x), c(x, e, B), c(B, n, x), c(B, e, B), o(x, Pt, L), o(B, Pt, L);
617
+ }
618
+ return o(i, J, T), o(i, Jt, He), {
619
+ start: i,
620
+ tokens: Ee
621
+ };
622
+ }
623
+ function Pe(t, n, e) {
624
+ let s = e.length, i = 0, r = [], a = [];
625
+ for (; i < s; ) {
626
+ let l = t, h = null, m = null, d = 0, u = null, g = -1;
627
+ for (; i < s && !(h = l.go(e[i].t)); )
628
+ a.push(e[i++]);
629
+ for (; i < s && (m = h || l.go(e[i].t)); )
630
+ h = null, l = m, l.accepts() ? (g = 0, u = l) : g >= 0 && g++, i++, d++;
631
+ if (g < 0)
632
+ i -= d, i < s && (a.push(e[i]), i++);
633
+ else {
634
+ a.length > 0 && (r.push(Mt(ae, n, a)), a = []), i -= g, d -= g;
635
+ const f = u.t, H = e.slice(i - d, i);
636
+ r.push(Mt(f, n, H));
637
+ }
638
+ }
639
+ return a.length > 0 && r.push(Mt(ae, n, a)), r;
640
+ }
641
+ function Mt(t, n, e) {
642
+ const s = e[0].s, i = e[e.length - 1].e, r = n.slice(s, i);
643
+ return new t(r, e);
644
+ }
645
+ const R = {
646
+ scanner: null,
647
+ parser: null,
648
+ tokenQueue: [],
649
+ pluginQueue: [],
650
+ customSchemes: [],
651
+ initialized: !1
652
+ };
653
+ function ve() {
654
+ R.scanner = Ne(R.customSchemes);
655
+ for (let t = 0; t < R.tokenQueue.length; t++)
656
+ R.tokenQueue[t][1]({
657
+ scanner: R.scanner
658
+ });
659
+ R.parser = De(R.scanner.tokens);
660
+ for (let t = 0; t < R.pluginQueue.length; t++)
661
+ R.pluginQueue[t][1]({
662
+ scanner: R.scanner,
663
+ parser: R.parser
664
+ });
665
+ return R.initialized = !0, R;
666
+ }
667
+ function we(t) {
668
+ return R.initialized || ve(), Pe(R.parser.start, t, me(R.scanner.start, t));
669
+ }
670
+ we.scan = me;
671
+ export {
672
+ fe as MultiToken,
673
+ ge as Options,
674
+ p as State,
675
+ Nt as createTokenClass,
676
+ ve as init,
677
+ Ie as stringToArray,
678
+ we as tokenize
679
+ };