@revenexx/editor 0.1.0

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 (2157) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/dist/global/constants/index.d.ts +7 -0
  4. package/dist/global/constants/index.js +11 -0
  5. package/dist/global/types/adapter.d.ts +6 -0
  6. package/dist/global/types/adapter.js +0 -0
  7. package/dist/global/types/blockOptions.d.ts +415 -0
  8. package/dist/global/types/blockOptions.js +0 -0
  9. package/dist/global/types/colorOptions.d.ts +20 -0
  10. package/dist/global/types/colorOptions.js +0 -0
  11. package/dist/global/types/definitions.d.ts +285 -0
  12. package/dist/global/types/definitions.js +0 -0
  13. package/dist/global/types/features.d.ts +87 -0
  14. package/dist/global/types/features.js +0 -0
  15. package/dist/global/types/theme.d.ts +34 -0
  16. package/dist/global/types/theme.js +0 -0
  17. package/dist/module.d.mts +13 -0
  18. package/dist/module.json +12 -0
  19. package/dist/module.mjs +4935 -0
  20. package/dist/modules/agent/index.d.mts +73 -0
  21. package/dist/modules/agent/index.mjs +785 -0
  22. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCode/index.d.vue.ts +6 -0
  23. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCode/index.vue +11 -0
  24. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCode/index.vue.d.ts +6 -0
  25. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCsv/index.d.vue.ts +6 -0
  26. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCsv/index.vue +56 -0
  27. package/dist/modules/agent/runtime/app/components/Attachment/PreviewCsv/index.vue.d.ts +6 -0
  28. package/dist/modules/agent/runtime/app/components/Attachment/PreviewHtml/index.d.vue.ts +6 -0
  29. package/dist/modules/agent/runtime/app/components/Attachment/PreviewHtml/index.vue +9 -0
  30. package/dist/modules/agent/runtime/app/components/Attachment/PreviewHtml/index.vue.d.ts +6 -0
  31. package/dist/modules/agent/runtime/app/components/Attachment/PreviewMarkdown/index.d.vue.ts +6 -0
  32. package/dist/modules/agent/runtime/app/components/Attachment/PreviewMarkdown/index.vue +10 -0
  33. package/dist/modules/agent/runtime/app/components/Attachment/PreviewMarkdown/index.vue.d.ts +6 -0
  34. package/dist/modules/agent/runtime/app/components/Attachment/index.d.vue.ts +13 -0
  35. package/dist/modules/agent/runtime/app/components/Attachment/index.vue +104 -0
  36. package/dist/modules/agent/runtime/app/components/Attachment/index.vue.d.ts +13 -0
  37. package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.d.vue.ts +7 -0
  38. package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.vue +40 -0
  39. package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.vue.d.ts +7 -0
  40. package/dist/modules/agent/runtime/app/components/Conversation/Item/Assistant/index.d.vue.ts +9 -0
  41. package/dist/modules/agent/runtime/app/components/Conversation/Item/Assistant/index.vue +33 -0
  42. package/dist/modules/agent/runtime/app/components/Conversation/Item/Assistant/index.vue.d.ts +9 -0
  43. package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.d.vue.ts +20 -0
  44. package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.vue +52 -0
  45. package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.vue.d.ts +20 -0
  46. package/dist/modules/agent/runtime/app/components/Conversation/Item/Error/index.d.vue.ts +15 -0
  47. package/dist/modules/agent/runtime/app/components/Conversation/Item/Error/index.vue +58 -0
  48. package/dist/modules/agent/runtime/app/components/Conversation/Item/Error/index.vue.d.ts +15 -0
  49. package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.d.vue.ts +11 -0
  50. package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.vue +29 -0
  51. package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.vue.d.ts +11 -0
  52. package/dist/modules/agent/runtime/app/components/Conversation/Item/ServerTool/index.d.vue.ts +11 -0
  53. package/dist/modules/agent/runtime/app/components/Conversation/Item/ServerTool/index.vue +61 -0
  54. package/dist/modules/agent/runtime/app/components/Conversation/Item/ServerTool/index.vue.d.ts +11 -0
  55. package/dist/modules/agent/runtime/app/components/Conversation/Item/Tool/index.d.vue.ts +16 -0
  56. package/dist/modules/agent/runtime/app/components/Conversation/Item/Tool/index.vue +36 -0
  57. package/dist/modules/agent/runtime/app/components/Conversation/Item/Tool/index.vue.d.ts +16 -0
  58. package/dist/modules/agent/runtime/app/components/Conversation/Item/Unknown/index.d.vue.ts +8 -0
  59. package/dist/modules/agent/runtime/app/components/Conversation/Item/Unknown/index.vue +14 -0
  60. package/dist/modules/agent/runtime/app/components/Conversation/Item/Unknown/index.vue.d.ts +8 -0
  61. package/dist/modules/agent/runtime/app/components/Conversation/Item/User/index.d.vue.ts +13 -0
  62. package/dist/modules/agent/runtime/app/components/Conversation/Item/User/index.vue +144 -0
  63. package/dist/modules/agent/runtime/app/components/Conversation/Item/User/index.vue.d.ts +13 -0
  64. package/dist/modules/agent/runtime/app/components/Conversation/Item/index.d.vue.ts +13 -0
  65. package/dist/modules/agent/runtime/app/components/Conversation/Item/index.vue +46 -0
  66. package/dist/modules/agent/runtime/app/components/Conversation/Item/index.vue.d.ts +13 -0
  67. package/dist/modules/agent/runtime/app/components/Conversation/Thinking/index.d.vue.ts +3 -0
  68. package/dist/modules/agent/runtime/app/components/Conversation/Thinking/index.vue +14 -0
  69. package/dist/modules/agent/runtime/app/components/Conversation/Thinking/index.vue.d.ts +3 -0
  70. package/dist/modules/agent/runtime/app/components/Conversation/index.d.vue.ts +16 -0
  71. package/dist/modules/agent/runtime/app/components/Conversation/index.vue +65 -0
  72. package/dist/modules/agent/runtime/app/components/Conversation/index.vue.d.ts +16 -0
  73. package/dist/modules/agent/runtime/app/components/FieldDiffDetails/index.d.vue.ts +21 -0
  74. package/dist/modules/agent/runtime/app/components/FieldDiffDetails/index.vue +38 -0
  75. package/dist/modules/agent/runtime/app/components/FieldDiffDetails/index.vue.d.ts +21 -0
  76. package/dist/modules/agent/runtime/app/components/Markdown/index.d.vue.ts +6 -0
  77. package/dist/modules/agent/runtime/app/components/Markdown/index.vue +14 -0
  78. package/dist/modules/agent/runtime/app/components/Markdown/index.vue.d.ts +6 -0
  79. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.d.ts +32 -0
  80. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.js +6 -0
  81. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.d.ts +47 -0
  82. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.js +3 -0
  83. package/dist/modules/agent/runtime/app/composables/index.d.ts +10 -0
  84. package/dist/modules/agent/runtime/app/composables/index.js +5 -0
  85. package/dist/modules/agent/runtime/app/composables/useAgent.d.ts +7 -0
  86. package/dist/modules/agent/runtime/app/composables/useAgent.js +14 -0
  87. package/dist/modules/agent/runtime/app/composables/useAgentFeedbackOptions.d.ts +11 -0
  88. package/dist/modules/agent/runtime/app/composables/useAgentFeedbackOptions.js +24 -0
  89. package/dist/modules/agent/runtime/app/composables/useAgentPaginatedQuery.d.ts +29 -0
  90. package/dist/modules/agent/runtime/app/composables/useAgentPaginatedQuery.js +30 -0
  91. package/dist/modules/agent/runtime/app/features/agent/Container.d.vue.ts +17 -0
  92. package/dist/modules/agent/runtime/app/features/agent/Container.vue +128 -0
  93. package/dist/modules/agent/runtime/app/features/agent/Container.vue.d.ts +17 -0
  94. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.d.vue.ts +13 -0
  95. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.vue +46 -0
  96. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.vue.d.ts +13 -0
  97. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/index.d.vue.ts +3 -0
  98. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/index.vue +74 -0
  99. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/index.vue.d.ts +3 -0
  100. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.d.vue.ts +11 -0
  101. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.vue +55 -0
  102. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.vue.d.ts +11 -0
  103. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.d.vue.ts +3 -0
  104. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.vue +116 -0
  105. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.vue.d.ts +3 -0
  106. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.d.vue.ts +7 -0
  107. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.vue +61 -0
  108. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.vue.d.ts +7 -0
  109. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.d.vue.ts +38 -0
  110. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.vue +137 -0
  111. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.vue.d.ts +38 -0
  112. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.d.vue.ts +7 -0
  113. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.vue +45 -0
  114. package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.vue.d.ts +7 -0
  115. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.d.vue.ts +15 -0
  116. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue +37 -0
  117. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue.d.ts +15 -0
  118. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.d.vue.ts +17 -0
  119. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue +195 -0
  120. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue.d.ts +17 -0
  121. package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.d.vue.ts +10 -0
  122. package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue +85 -0
  123. package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue.d.ts +10 -0
  124. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.d.vue.ts +8 -0
  125. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.vue +20 -0
  126. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.vue.d.ts +8 -0
  127. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.d.vue.ts +3 -0
  128. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.vue +3 -0
  129. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.vue.d.ts +3 -0
  130. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.d.vue.ts +7 -0
  131. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue +67 -0
  132. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue.d.ts +7 -0
  133. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.d.vue.ts +24 -0
  134. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +139 -0
  135. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue.d.ts +24 -0
  136. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.d.vue.ts +47 -0
  137. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +121 -0
  138. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue.d.ts +47 -0
  139. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.d.vue.ts +15 -0
  140. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue +47 -0
  141. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue.d.ts +15 -0
  142. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.d.vue.ts +14 -0
  143. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue +58 -0
  144. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue.d.ts +14 -0
  145. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +25 -0
  146. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +42 -0
  147. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +25 -0
  148. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/de.md +19 -0
  149. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/en.md +18 -0
  150. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.d.vue.ts +10 -0
  151. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue +75 -0
  152. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue.d.ts +10 -0
  153. package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +6 -0
  154. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +324 -0
  155. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +6 -0
  156. package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.d.vue.ts +7 -0
  157. package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.vue +54 -0
  158. package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.vue.d.ts +7 -0
  159. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.d.vue.ts +8 -0
  160. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue +150 -0
  161. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue.d.ts +8 -0
  162. package/dist/modules/agent/runtime/app/features/agent/index.d.vue.ts +3 -0
  163. package/dist/modules/agent/runtime/app/features/agent/index.vue +228 -0
  164. package/dist/modules/agent/runtime/app/features/agent/index.vue.d.ts +3 -0
  165. package/dist/modules/agent/runtime/app/features/agent/types.d.ts +147 -0
  166. package/dist/modules/agent/runtime/app/features/agent/types.js +0 -0
  167. package/dist/modules/agent/runtime/app/helpers/buildPageContext.d.ts +7 -0
  168. package/dist/modules/agent/runtime/app/helpers/buildPageContext.js +81 -0
  169. package/dist/modules/agent/runtime/app/helpers/historySignature.d.ts +14 -0
  170. package/dist/modules/agent/runtime/app/helpers/historySignature.js +13 -0
  171. package/dist/modules/agent/runtime/app/helpers/id.d.ts +6 -0
  172. package/dist/modules/agent/runtime/app/helpers/id.js +3 -0
  173. package/dist/modules/agent/runtime/app/helpers/index.d.ts +56 -0
  174. package/dist/modules/agent/runtime/app/helpers/index.js +68 -0
  175. package/dist/modules/agent/runtime/app/helpers/injections.d.ts +3 -0
  176. package/dist/modules/agent/runtime/app/helpers/injections.js +3 -0
  177. package/dist/modules/agent/runtime/app/helpers/linkifyBlockUuids.d.ts +11 -0
  178. package/dist/modules/agent/runtime/app/helpers/linkifyBlockUuids.js +47 -0
  179. package/dist/modules/agent/runtime/app/helpers/markdown.d.ts +7 -0
  180. package/dist/modules/agent/runtime/app/helpers/markdown.js +5 -0
  181. package/dist/modules/agent/runtime/app/helpers/mutationResult.d.ts +38 -0
  182. package/dist/modules/agent/runtime/app/helpers/mutationResult.js +49 -0
  183. package/dist/modules/agent/runtime/app/helpers/pageStructure.d.ts +5 -0
  184. package/dist/modules/agent/runtime/app/helpers/pageStructure.js +84 -0
  185. package/dist/modules/agent/runtime/app/helpers/parseConversationData.d.ts +27 -0
  186. package/dist/modules/agent/runtime/app/helpers/parseConversationData.js +42 -0
  187. package/dist/modules/agent/runtime/app/helpers/validation.d.ts +48 -0
  188. package/dist/modules/agent/runtime/app/helpers/validation.js +99 -0
  189. package/dist/modules/agent/runtime/app/prompts/fixReadability.d.ts +2 -0
  190. package/dist/modules/agent/runtime/app/prompts/fixReadability.js +57 -0
  191. package/dist/modules/agent/runtime/app/providers/agentProvider.d.ts +56 -0
  192. package/dist/modules/agent/runtime/app/providers/agentProvider.js +400 -0
  193. package/dist/modules/agent/runtime/app/providers/conversationProvider.d.ts +49 -0
  194. package/dist/modules/agent/runtime/app/providers/conversationProvider.js +234 -0
  195. package/dist/modules/agent/runtime/app/providers/planProvider.d.ts +15 -0
  196. package/dist/modules/agent/runtime/app/providers/planProvider.js +34 -0
  197. package/dist/modules/agent/runtime/app/providers/socketProvider.d.ts +17 -0
  198. package/dist/modules/agent/runtime/app/providers/socketProvider.js +110 -0
  199. package/dist/modules/agent/runtime/app/providers/toolsProvider.d.ts +44 -0
  200. package/dist/modules/agent/runtime/app/providers/toolsProvider.js +291 -0
  201. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraphs/index.d.ts +27 -0
  202. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraphs/index.js +79 -0
  203. package/dist/modules/agent/runtime/app/tools/add_fragment/index.d.ts +24 -0
  204. package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +91 -0
  205. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.d.ts +26 -0
  206. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +74 -0
  207. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +34 -0
  208. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +329 -0
  209. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.d.ts +24 -0
  210. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +85 -0
  211. package/dist/modules/agent/runtime/app/tools/add_template/index.d.ts +24 -0
  212. package/dist/modules/agent/runtime/app/tools/add_template/index.js +61 -0
  213. package/dist/modules/agent/runtime/app/tools/ask_question/Component.d.vue.ts +19 -0
  214. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue +129 -0
  215. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue.d.ts +19 -0
  216. package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +18 -0
  217. package/dist/modules/agent/runtime/app/tools/ask_question/index.js +64 -0
  218. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.d.vue.ts +51 -0
  219. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.vue +174 -0
  220. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.vue.d.ts +51 -0
  221. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/index.d.ts +43 -0
  222. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/index.js +80 -0
  223. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.d.ts +19 -0
  224. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.js +60 -0
  225. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +51 -0
  226. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +291 -0
  227. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +51 -0
  228. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +65 -0
  229. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +152 -0
  230. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/useFieldRewriteStream.d.ts +64 -0
  231. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/useFieldRewriteStream.js +502 -0
  232. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +18 -0
  233. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +61 -0
  234. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +18 -0
  235. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +62 -0
  236. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +24 -0
  237. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +157 -0
  238. package/dist/modules/agent/runtime/app/tools/fieldDiffApproval.d.ts +119 -0
  239. package/dist/modules/agent/runtime/app/tools/fieldDiffApproval.js +174 -0
  240. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +33 -0
  241. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +181 -0
  242. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +9 -0
  243. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +33 -0
  244. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +12 -0
  245. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +85 -0
  246. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.d.ts +37 -0
  247. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +181 -0
  248. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +22 -0
  249. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +109 -0
  250. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +32 -0
  251. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +189 -0
  252. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +27 -0
  253. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +104 -0
  254. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +10 -0
  255. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +116 -0
  256. package/dist/modules/agent/runtime/app/tools/get_page_text/index.d.ts +8 -0
  257. package/dist/modules/agent/runtime/app/tools/get_page_text/index.js +65 -0
  258. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +83 -0
  259. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +264 -0
  260. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +16 -0
  261. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +62 -0
  262. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +40 -0
  263. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +186 -0
  264. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.d.ts +14 -0
  265. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +71 -0
  266. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.d.ts +16 -0
  267. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.js +62 -0
  268. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +11 -0
  269. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +48 -0
  270. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +18 -0
  271. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +59 -0
  272. package/dist/modules/agent/runtime/app/tools/helpers.d.ts +93 -0
  273. package/dist/modules/agent/runtime/app/tools/helpers.js +277 -0
  274. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +24 -0
  275. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +116 -0
  276. package/dist/modules/agent/runtime/app/tools/readability.d.ts +45 -0
  277. package/dist/modules/agent/runtime/app/tools/readability.js +51 -0
  278. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +23 -0
  279. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +109 -0
  280. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +22 -0
  281. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +90 -0
  282. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +21 -0
  283. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +96 -0
  284. package/dist/modules/agent/runtime/app/tools/schemas.d.ts +137 -0
  285. package/dist/modules/agent/runtime/app/tools/schemas.js +139 -0
  286. package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +17 -0
  287. package/dist/modules/agent/runtime/app/tools/search_content/index.js +61 -0
  288. package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +18 -0
  289. package/dist/modules/agent/runtime/app/tools/search_media/index.js +60 -0
  290. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +18 -0
  291. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +76 -0
  292. package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +15 -0
  293. package/dist/modules/agent/runtime/app/tools/search_templates/index.js +53 -0
  294. package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +17 -0
  295. package/dist/modules/agent/runtime/app/tools/search_text/index.js +114 -0
  296. package/dist/modules/agent/runtime/app/tools/select_media/Component.d.vue.ts +29 -0
  297. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +84 -0
  298. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue.d.ts +29 -0
  299. package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +30 -0
  300. package/dist/modules/agent/runtime/app/tools/select_media/index.js +74 -0
  301. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +21 -0
  302. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +112 -0
  303. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +19 -0
  304. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +51 -0
  305. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.d.vue.ts +51 -0
  306. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue +198 -0
  307. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue.d.ts +51 -0
  308. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +70 -0
  309. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +138 -0
  310. package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +19 -0
  311. package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +52 -0
  312. package/dist/modules/agent/runtime/app/types/index.d.ts +551 -0
  313. package/dist/modules/agent/runtime/app/types/index.js +102 -0
  314. package/dist/modules/agent/runtime/server/agent.d.ts +2 -0
  315. package/dist/modules/agent/runtime/server/agent.js +154 -0
  316. package/dist/modules/agent/runtime/server/classes/ConversationHistory/index.d.ts +93 -0
  317. package/dist/modules/agent/runtime/server/classes/ConversationHistory/index.js +241 -0
  318. package/dist/modules/agent/runtime/server/classes/ConversationMessage/index.d.ts +102 -0
  319. package/dist/modules/agent/runtime/server/classes/ConversationMessage/index.js +156 -0
  320. package/dist/modules/agent/runtime/server/classes/FieldStreamParser/index.d.ts +85 -0
  321. package/dist/modules/agent/runtime/server/classes/FieldStreamParser/index.js +227 -0
  322. package/dist/modules/agent/runtime/server/classes/Session/index.d.ts +160 -0
  323. package/dist/modules/agent/runtime/server/classes/Session/index.js +983 -0
  324. package/dist/modules/agent/runtime/server/classes/SessionManager/index.d.ts +24 -0
  325. package/dist/modules/agent/runtime/server/classes/SessionManager/index.js +68 -0
  326. package/dist/modules/agent/runtime/server/classes/StreamAccumulator/index.d.ts +58 -0
  327. package/dist/modules/agent/runtime/server/classes/StreamAccumulator/index.js +72 -0
  328. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.d.ts +2 -0
  329. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.js +20 -0
  330. package/dist/modules/agent/runtime/server/default-skills/fixReadability.d.ts +2 -0
  331. package/dist/modules/agent/runtime/server/default-skills/fixReadability.js +50 -0
  332. package/dist/modules/agent/runtime/server/default-skills/pageReview.d.ts +2 -0
  333. package/dist/modules/agent/runtime/server/default-skills/pageReview.js +28 -0
  334. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.d.ts +2 -0
  335. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.js +21 -0
  336. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.d.ts +2 -0
  337. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.js +54 -0
  338. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.d.ts +2 -0
  339. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.js +39 -0
  340. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.d.ts +2 -0
  341. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.js +18 -0
  342. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.d.ts +2 -0
  343. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.js +18 -0
  344. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.d.ts +2 -0
  345. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.js +19 -0
  346. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.d.ts +2 -0
  347. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +23 -0
  348. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.d.ts +2 -0
  349. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.js +20 -0
  350. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.d.ts +2 -0
  351. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.js +15 -0
  352. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.d.ts +2 -0
  353. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.js +88 -0
  354. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.d.ts +2 -0
  355. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.js +37 -0
  356. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.d.ts +2 -0
  357. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.js +36 -0
  358. package/dist/modules/agent/runtime/server/default-system-prompts/security.d.ts +2 -0
  359. package/dist/modules/agent/runtime/server/default-system-prompts/security.js +27 -0
  360. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.d.ts +2 -0
  361. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.js +21 -0
  362. package/dist/modules/agent/runtime/server/fetch.d.ts +2 -0
  363. package/dist/modules/agent/runtime/server/fetch.js +127 -0
  364. package/dist/modules/agent/runtime/server/helpers/agentPrompt.d.ts +30 -0
  365. package/dist/modules/agent/runtime/server/helpers/agentPrompt.js +79 -0
  366. package/dist/modules/agent/runtime/server/helpers/errors.d.ts +10 -0
  367. package/dist/modules/agent/runtime/server/helpers/errors.js +63 -0
  368. package/dist/modules/agent/runtime/server/helpers/messages.d.ts +6 -0
  369. package/dist/modules/agent/runtime/server/helpers/messages.js +70 -0
  370. package/dist/modules/agent/runtime/server/helpers/models.d.ts +20 -0
  371. package/dist/modules/agent/runtime/server/helpers/models.js +15 -0
  372. package/dist/modules/agent/runtime/server/helpers/routing.d.ts +18 -0
  373. package/dist/modules/agent/runtime/server/helpers/routing.js +104 -0
  374. package/dist/modules/agent/runtime/server/helpers/security.d.ts +22 -0
  375. package/dist/modules/agent/runtime/server/helpers/security.js +44 -0
  376. package/dist/modules/agent/runtime/server/helpers/skills.d.ts +14 -0
  377. package/dist/modules/agent/runtime/server/helpers/skills.js +22 -0
  378. package/dist/modules/agent/runtime/server/helpers/socket.d.ts +4 -0
  379. package/dist/modules/agent/runtime/server/helpers/socket.js +3 -0
  380. package/dist/modules/agent/runtime/server/helpers/text.d.ts +5 -0
  381. package/dist/modules/agent/runtime/server/helpers/text.js +3 -0
  382. package/dist/modules/agent/runtime/server/providers/anthropic.d.ts +12 -0
  383. package/dist/modules/agent/runtime/server/providers/anthropic.js +151 -0
  384. package/dist/modules/agent/runtime/server/providers/openai.d.ts +12 -0
  385. package/dist/modules/agent/runtime/server/providers/openai.js +325 -0
  386. package/dist/modules/agent/runtime/server/providers/types.d.ts +81 -0
  387. package/dist/modules/agent/runtime/server/providers/types.js +0 -0
  388. package/dist/modules/agent/runtime/server/route.d.ts +2 -0
  389. package/dist/modules/agent/runtime/server/route.js +40 -0
  390. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.d.ts +3 -0
  391. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.js +94 -0
  392. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.d.ts +9 -0
  393. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.js +86 -0
  394. package/dist/modules/agent/runtime/server/server-tools/index.d.ts +102 -0
  395. package/dist/modules/agent/runtime/server/server-tools/index.js +30 -0
  396. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.d.ts +7 -0
  397. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.js +80 -0
  398. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.d.ts +7 -0
  399. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +40 -0
  400. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.d.ts +23 -0
  401. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.js +3 -0
  402. package/dist/modules/agent/runtime/server/skills/index.d.ts +2 -0
  403. package/dist/modules/agent/runtime/server/skills/index.js +1 -0
  404. package/dist/modules/agent/runtime/server/skills/types.d.ts +59 -0
  405. package/dist/modules/agent/runtime/server/skills/types.js +0 -0
  406. package/dist/modules/agent/runtime/server/stream.d.ts +2 -0
  407. package/dist/modules/agent/runtime/server/stream.js +167 -0
  408. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.d.ts +21 -0
  409. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.js +3 -0
  410. package/dist/modules/agent/runtime/server/system-prompts/helpers.d.ts +20 -0
  411. package/dist/modules/agent/runtime/server/system-prompts/helpers.js +41 -0
  412. package/dist/modules/agent/runtime/server/system-prompts/index.d.ts +2 -0
  413. package/dist/modules/agent/runtime/server/system-prompts/index.js +1 -0
  414. package/dist/modules/agent/runtime/server/system-prompts/types.d.ts +49 -0
  415. package/dist/modules/agent/runtime/server/system-prompts/types.js +0 -0
  416. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.d.ts +21 -0
  417. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.js +3 -0
  418. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.d.ts +26 -0
  419. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.js +84 -0
  420. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.d.ts +6 -0
  421. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.js +29 -0
  422. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.d.ts +5 -0
  423. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.js +14 -0
  424. package/dist/modules/agent/runtime/server/templates/definitions/translate.d.ts +5 -0
  425. package/dist/modules/agent/runtime/server/templates/definitions/translate.js +23 -0
  426. package/dist/modules/agent/runtime/server/templates/index.d.ts +37 -0
  427. package/dist/modules/agent/runtime/server/templates/index.js +25 -0
  428. package/dist/modules/agent/runtime/server/templates/types.d.ts +17 -0
  429. package/dist/modules/agent/runtime/server/templates/types.js +0 -0
  430. package/dist/modules/agent/runtime/server/templates/utils.d.ts +5 -0
  431. package/dist/modules/agent/runtime/server/templates/utils.js +69 -0
  432. package/dist/modules/agent/runtime/shared/placeholders.d.ts +4 -0
  433. package/dist/modules/agent/runtime/shared/placeholders.js +1 -0
  434. package/dist/modules/agent/runtime/shared/toolParams.d.ts +47 -0
  435. package/dist/modules/agent/runtime/shared/toolParams.js +33 -0
  436. package/dist/modules/agent/runtime/shared/toolResult.d.ts +98 -0
  437. package/dist/modules/agent/runtime/shared/toolResult.js +160 -0
  438. package/dist/modules/agent/runtime/shared/types.d.ts +549 -0
  439. package/dist/modules/agent/runtime/shared/types.js +193 -0
  440. package/dist/modules/charts/index.d.mts +21 -0
  441. package/dist/modules/charts/index.mjs +281 -0
  442. package/dist/modules/charts/runtime/blokkli/chart-types/advanced/definition.d.ts +5 -0
  443. package/dist/modules/charts/runtime/blokkli/chart-types/advanced/definition.js +26 -0
  444. package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.d.vue.ts +3 -0
  445. package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.vue +120 -0
  446. package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.vue.d.ts +3 -0
  447. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/definition.d.ts +6 -0
  448. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/definition.js +40 -0
  449. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.d.vue.ts +3 -0
  450. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.vue +41 -0
  451. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.vue.d.ts +3 -0
  452. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.d.vue.ts +3 -0
  453. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.vue +94 -0
  454. package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.vue.d.ts +3 -0
  455. package/dist/modules/charts/runtime/blokkli/chart-types/area/definition.d.ts +7 -0
  456. package/dist/modules/charts/runtime/blokkli/chart-types/area/definition.js +49 -0
  457. package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.d.vue.ts +3 -0
  458. package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.vue +56 -0
  459. package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.vue.d.ts +3 -0
  460. package/dist/modules/charts/runtime/blokkli/chart-types/area/render.d.vue.ts +3 -0
  461. package/dist/modules/charts/runtime/blokkli/chart-types/area/render.vue +99 -0
  462. package/dist/modules/charts/runtime/blokkli/chart-types/area/render.vue.d.ts +3 -0
  463. package/dist/modules/charts/runtime/blokkli/chart-types/bar/definition.d.ts +8 -0
  464. package/dist/modules/charts/runtime/blokkli/chart-types/bar/definition.js +57 -0
  465. package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.d.vue.ts +3 -0
  466. package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.vue +34 -0
  467. package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.vue.d.ts +3 -0
  468. package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.d.vue.ts +3 -0
  469. package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.vue +107 -0
  470. package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.vue.d.ts +3 -0
  471. package/dist/modules/charts/runtime/blokkli/chart-types/donut/definition.d.ts +7 -0
  472. package/dist/modules/charts/runtime/blokkli/chart-types/donut/definition.js +35 -0
  473. package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.d.vue.ts +3 -0
  474. package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.vue +35 -0
  475. package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.vue.d.ts +3 -0
  476. package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.d.vue.ts +3 -0
  477. package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.vue +87 -0
  478. package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.vue.d.ts +3 -0
  479. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/definition.d.ts +4 -0
  480. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/definition.js +29 -0
  481. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.d.vue.ts +3 -0
  482. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.vue +27 -0
  483. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.vue.d.ts +3 -0
  484. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.d.vue.ts +3 -0
  485. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.vue +113 -0
  486. package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.vue.d.ts +3 -0
  487. package/dist/modules/charts/runtime/blokkli/chart-types/line/definition.d.ts +7 -0
  488. package/dist/modules/charts/runtime/blokkli/chart-types/line/definition.js +49 -0
  489. package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.d.vue.ts +3 -0
  490. package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.vue +59 -0
  491. package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.vue.d.ts +3 -0
  492. package/dist/modules/charts/runtime/blokkli/chart-types/line/render.d.vue.ts +3 -0
  493. package/dist/modules/charts/runtime/blokkli/chart-types/line/render.vue +98 -0
  494. package/dist/modules/charts/runtime/blokkli/chart-types/line/render.vue.d.ts +3 -0
  495. package/dist/modules/charts/runtime/blokkli/chart-types/pie/definition.d.ts +6 -0
  496. package/dist/modules/charts/runtime/blokkli/chart-types/pie/definition.js +29 -0
  497. package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.d.vue.ts +3 -0
  498. package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.vue +20 -0
  499. package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.vue.d.ts +3 -0
  500. package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.d.vue.ts +3 -0
  501. package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.vue +71 -0
  502. package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.vue.d.ts +3 -0
  503. package/dist/modules/charts/runtime/blokkli/chart-types/radar/definition.d.ts +7 -0
  504. package/dist/modules/charts/runtime/blokkli/chart-types/radar/definition.js +45 -0
  505. package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.d.vue.ts +3 -0
  506. package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.vue +60 -0
  507. package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.vue.d.ts +3 -0
  508. package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.d.vue.ts +3 -0
  509. package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.vue +95 -0
  510. package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.vue.d.ts +3 -0
  511. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/definition.d.ts +6 -0
  512. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/definition.js +29 -0
  513. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.d.vue.ts +3 -0
  514. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.vue +32 -0
  515. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.vue.d.ts +3 -0
  516. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.d.vue.ts +3 -0
  517. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.vue +77 -0
  518. package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.vue.d.ts +3 -0
  519. package/dist/modules/charts/runtime/blokkli/skills/charts.d.ts +2 -0
  520. package/dist/modules/charts/runtime/blokkli/skills/charts.js +85 -0
  521. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.d.ts +148 -0
  522. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.js +190 -0
  523. package/dist/modules/charts/runtime/blokkli/tools/create_advanced_chart/index.d.ts +2 -0
  524. package/dist/modules/charts/runtime/blokkli/tools/create_advanced_chart/index.js +88 -0
  525. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.d.ts +2 -0
  526. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.js +97 -0
  527. package/dist/modules/charts/runtime/blokkli/tools/get_advanced_chart_config/index.d.ts +2 -0
  528. package/dist/modules/charts/runtime/blokkli/tools/get_advanced_chart_config/index.js +65 -0
  529. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.d.ts +2 -0
  530. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.js +94 -0
  531. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.d.ts +2 -0
  532. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.js +42 -0
  533. package/dist/modules/charts/runtime/blokkli/tools/update_advanced_chart/index.d.ts +2 -0
  534. package/dist/modules/charts/runtime/blokkli/tools/update_advanced_chart/index.js +73 -0
  535. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.d.ts +2 -0
  536. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.js +112 -0
  537. package/dist/modules/charts/runtime/chart-types/definition/index.d.ts +7 -0
  538. package/dist/modules/charts/runtime/chart-types/definition/index.js +3 -0
  539. package/dist/modules/charts/runtime/chart-types/definition/options/index.d.ts +43 -0
  540. package/dist/modules/charts/runtime/chart-types/definition/options/index.js +110 -0
  541. package/dist/modules/charts/runtime/chart-types/index.d.ts +21 -0
  542. package/dist/modules/charts/runtime/chart-types/index.js +25 -0
  543. package/dist/modules/charts/runtime/components/ChartRenderer/index.d.vue.ts +21 -0
  544. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +221 -0
  545. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue.d.ts +21 -0
  546. package/dist/modules/charts/runtime/components/index.d.ts +1 -0
  547. package/dist/modules/charts/runtime/components/index.js +1 -0
  548. package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.d.vue.ts +11 -0
  549. package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.vue +149 -0
  550. package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.vue.d.ts +11 -0
  551. package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.d.vue.ts +11 -0
  552. package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.vue +62 -0
  553. package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.vue.d.ts +11 -0
  554. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.d.vue.ts +14 -0
  555. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.vue +89 -0
  556. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.vue.d.ts +14 -0
  557. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.d.vue.ts +16 -0
  558. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue +90 -0
  559. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue.d.ts +16 -0
  560. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.d.vue.ts +7 -0
  561. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.vue +55 -0
  562. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.vue.d.ts +7 -0
  563. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.d.vue.ts +11 -0
  564. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.vue +24 -0
  565. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.vue.d.ts +11 -0
  566. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.d.vue.ts +11 -0
  567. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +56 -0
  568. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue.d.ts +11 -0
  569. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.d.vue.ts +10 -0
  570. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +14 -0
  571. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue.d.ts +10 -0
  572. package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.d.vue.ts +9 -0
  573. package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.vue +55 -0
  574. package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.vue.d.ts +9 -0
  575. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.d.vue.ts +16 -0
  576. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.vue +88 -0
  577. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.vue.d.ts +16 -0
  578. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.d.vue.ts +13 -0
  579. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.vue +111 -0
  580. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.vue.d.ts +13 -0
  581. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.d.vue.ts +14 -0
  582. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.vue +100 -0
  583. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.vue.d.ts +14 -0
  584. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.d.vue.ts +17 -0
  585. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.vue +152 -0
  586. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.vue.d.ts +17 -0
  587. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.d.vue.ts +14 -0
  588. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.vue +340 -0
  589. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.vue.d.ts +14 -0
  590. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/csvHelpers.d.ts +69 -0
  591. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/csvHelpers.js +368 -0
  592. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.d.vue.ts +8 -0
  593. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue +62 -0
  594. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue.d.ts +8 -0
  595. package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.d.vue.ts +16 -0
  596. package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.vue +80 -0
  597. package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.vue.d.ts +16 -0
  598. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.d.vue.ts +23 -0
  599. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue +235 -0
  600. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue.d.ts +23 -0
  601. package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.d.vue.ts +13 -0
  602. package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.vue +71 -0
  603. package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.vue.d.ts +13 -0
  604. package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.d.vue.ts +16 -0
  605. package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.vue +57 -0
  606. package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.vue.d.ts +16 -0
  607. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.d.vue.ts +9 -0
  608. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue +73 -0
  609. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue.d.ts +9 -0
  610. package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.d.vue.ts +21 -0
  611. package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.vue +120 -0
  612. package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.vue.d.ts +21 -0
  613. package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.d.vue.ts +18 -0
  614. package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.vue +65 -0
  615. package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.vue.d.ts +18 -0
  616. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.d.vue.ts +11 -0
  617. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue +51 -0
  618. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue.d.ts +11 -0
  619. package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.d.vue.ts +13 -0
  620. package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.vue +95 -0
  621. package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.vue.d.ts +13 -0
  622. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow/index.d.vue.ts +16 -0
  623. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow/index.vue +19 -0
  624. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow/index.vue.d.ts +16 -0
  625. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.d.vue.ts +17 -0
  626. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.vue +264 -0
  627. package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.vue.d.ts +17 -0
  628. package/dist/modules/charts/runtime/features/charts/Editor/index.d.vue.ts +13 -0
  629. package/dist/modules/charts/runtime/features/charts/Editor/index.vue +582 -0
  630. package/dist/modules/charts/runtime/features/charts/Editor/index.vue.d.ts +13 -0
  631. package/dist/modules/charts/runtime/features/charts/Editor/useChartDataSourcePreview.d.ts +6 -0
  632. package/dist/modules/charts/runtime/features/charts/Editor/useChartDataSourcePreview.js +17 -0
  633. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.d.ts +23 -0
  634. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.js +170 -0
  635. package/dist/modules/charts/runtime/helpers/adapterTypes.d.ts +38 -0
  636. package/dist/modules/charts/runtime/helpers/adapterTypes.js +1 -0
  637. package/dist/modules/charts/runtime/helpers/dateFormat.d.ts +20 -0
  638. package/dist/modules/charts/runtime/helpers/dateFormat.js +121 -0
  639. package/dist/modules/charts/runtime/helpers/echarts.d.ts +6 -0
  640. package/dist/modules/charts/runtime/helpers/echarts.js +5 -0
  641. package/dist/modules/charts/runtime/helpers/index.d.ts +30 -0
  642. package/dist/modules/charts/runtime/helpers/index.js +79 -0
  643. package/dist/modules/charts/runtime/helpers/nextCategoryValue.d.ts +19 -0
  644. package/dist/modules/charts/runtime/helpers/nextCategoryValue.js +160 -0
  645. package/dist/modules/charts/runtime/helpers/numberFormat.d.ts +13 -0
  646. package/dist/modules/charts/runtime/helpers/numberFormat.js +31 -0
  647. package/dist/modules/charts/runtime/helpers/previewInjection.d.ts +14 -0
  648. package/dist/modules/charts/runtime/helpers/previewInjection.js +3 -0
  649. package/dist/modules/charts/runtime/types.d.ts +256 -0
  650. package/dist/modules/charts/runtime/types.js +0 -0
  651. package/dist/modules/iframes/index.d.mts +32 -0
  652. package/dist/modules/iframes/index.mjs +52 -0
  653. package/dist/modules/iframes/runtime/components/BlokkliIframe/index.d.vue.ts +18 -0
  654. package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue +61 -0
  655. package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue.d.ts +18 -0
  656. package/dist/modules/iframes/runtime/components/index.d.ts +1 -0
  657. package/dist/modules/iframes/runtime/components/index.js +1 -0
  658. package/dist/modules/iframes/runtime/features/iframes/Editor/index.d.vue.ts +12 -0
  659. package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue +222 -0
  660. package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue.d.ts +12 -0
  661. package/dist/modules/iframes/runtime/types.d.ts +10 -0
  662. package/dist/modules/iframes/runtime/types.js +0 -0
  663. package/dist/modules/index.d.mts +8 -0
  664. package/dist/modules/index.mjs +10 -0
  665. package/dist/modules/readability/index.d.mts +12 -0
  666. package/dist/modules/readability/index.mjs +17 -0
  667. package/dist/modules/readability/runtime/adapter-extension.d.ts +2 -0
  668. package/dist/modules/readability/runtime/adapter-extension.js +5 -0
  669. package/dist/modules/readability/runtime/analyzers/builtin.d.ts +10 -0
  670. package/dist/modules/readability/runtime/analyzers/builtin.js +340 -0
  671. package/dist/modules/table-of-contents/index.d.mts +12 -0
  672. package/dist/modules/table-of-contents/index.mjs +24 -0
  673. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.d.vue.ts +44 -0
  674. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue +43 -0
  675. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue.d.ts +44 -0
  676. package/dist/modules/table-of-contents/runtime/types/index.d.ts +4 -0
  677. package/dist/modules/table-of-contents/runtime/types/index.js +0 -0
  678. package/dist/modules/tailwind/index.d.mts +5 -0
  679. package/dist/modules/tailwind/index.mjs +228 -0
  680. package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
  681. package/dist/runtime/components/Blocks/Fragment/index.vue +35 -0
  682. package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +7 -0
  683. package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
  684. package/dist/runtime/components/Blocks/FromLibrary/index.vue +45 -0
  685. package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +7 -0
  686. package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
  687. package/dist/runtime/components/Blocks/NotImplemented/index.vue +54 -0
  688. package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +7 -0
  689. package/dist/runtime/components/BlokkliEditable.d.vue.ts +34 -0
  690. package/dist/runtime/components/BlokkliEditable.vue +22 -0
  691. package/dist/runtime/components/BlokkliEditable.vue.d.ts +34 -0
  692. package/dist/runtime/components/BlokkliField.d.vue.ts +102 -0
  693. package/dist/runtime/components/BlokkliField.vue +170 -0
  694. package/dist/runtime/components/BlokkliField.vue.d.ts +102 -0
  695. package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
  696. package/dist/runtime/components/BlokkliItem.vue +107 -0
  697. package/dist/runtime/components/BlokkliItem.vue.d.ts +31 -0
  698. package/dist/runtime/components/BlokkliProvider.d.vue.ts +84 -0
  699. package/dist/runtime/components/BlokkliProvider.vue +173 -0
  700. package/dist/runtime/components/BlokkliProvider.vue.d.ts +84 -0
  701. package/dist/runtime/composables/defineBlokkli.d.ts +6 -0
  702. package/dist/runtime/composables/defineBlokkli.js +112 -0
  703. package/dist/runtime/composables/defineBlokkliFeature.d.ts +26 -0
  704. package/dist/runtime/composables/defineBlokkliFeature.js +63 -0
  705. package/dist/runtime/composables/defineBlokkliFragment.d.ts +3 -0
  706. package/dist/runtime/composables/defineBlokkliFragment.js +26 -0
  707. package/dist/runtime/composables/defineBlokkliProvider.d.ts +11 -0
  708. package/dist/runtime/composables/defineBlokkliProvider.js +44 -0
  709. package/dist/runtime/composables/useBlokkli.d.ts +13 -0
  710. package/dist/runtime/composables/useBlokkli.js +14 -0
  711. package/dist/runtime/composables/useBlokkliHelper.d.ts +20 -0
  712. package/dist/runtime/composables/useBlokkliHelper.js +91 -0
  713. package/dist/runtime/composables/useBlokkliRuntimeConfig.d.ts +50 -0
  714. package/dist/runtime/composables/useBlokkliRuntimeConfig.js +34 -0
  715. package/dist/runtime/editor/adapter/index.d.ts +186 -0
  716. package/dist/runtime/editor/adapter/index.js +6 -0
  717. package/dist/runtime/editor/components/Actions/Interactions/Button.d.vue.ts +9 -0
  718. package/dist/runtime/editor/components/Actions/Interactions/Button.vue +19 -0
  719. package/dist/runtime/editor/components/Actions/Interactions/Button.vue.d.ts +9 -0
  720. package/dist/runtime/editor/components/Actions/Interactions/index.d.vue.ts +3 -0
  721. package/dist/runtime/editor/components/Actions/Interactions/index.vue +106 -0
  722. package/dist/runtime/editor/components/Actions/Interactions/index.vue.d.ts +3 -0
  723. package/dist/runtime/editor/components/Actions/ItemDropdown/Item.d.vue.ts +7 -0
  724. package/dist/runtime/editor/components/Actions/ItemDropdown/Item.vue +49 -0
  725. package/dist/runtime/editor/components/Actions/ItemDropdown/Item.vue.d.ts +7 -0
  726. package/dist/runtime/editor/components/Actions/ItemDropdown/index.d.vue.ts +7 -0
  727. package/dist/runtime/editor/components/Actions/ItemDropdown/index.vue +52 -0
  728. package/dist/runtime/editor/components/Actions/ItemDropdown/index.vue.d.ts +7 -0
  729. package/dist/runtime/editor/components/Actions/ScrollArrow/index.d.vue.ts +13 -0
  730. package/dist/runtime/editor/components/Actions/ScrollArrow/index.vue +52 -0
  731. package/dist/runtime/editor/components/Actions/ScrollArrow/index.vue.d.ts +13 -0
  732. package/dist/runtime/editor/components/Actions/Title/index.d.vue.ts +3 -0
  733. package/dist/runtime/editor/components/Actions/Title/index.vue +296 -0
  734. package/dist/runtime/editor/components/Actions/Title/index.vue.d.ts +3 -0
  735. package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
  736. package/dist/runtime/editor/components/Actions/index.vue +143 -0
  737. package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
  738. package/dist/runtime/editor/components/Actions/useToolbarScroll.d.ts +25 -0
  739. package/dist/runtime/editor/components/Actions/useToolbarScroll.js +125 -0
  740. package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +31 -0
  741. package/dist/runtime/editor/components/AddListItem/index.vue +103 -0
  742. package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +31 -0
  743. package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
  744. package/dist/runtime/editor/components/AnimationCanvas/index.vue +534 -0
  745. package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
  746. package/dist/runtime/editor/components/AppMenu/Inner.d.vue.ts +7 -0
  747. package/dist/runtime/editor/components/AppMenu/Inner.vue +88 -0
  748. package/dist/runtime/editor/components/AppMenu/Inner.vue.d.ts +7 -0
  749. package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +24 -0
  750. package/dist/runtime/editor/components/AppMenu/MenuButton.vue +83 -0
  751. package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +24 -0
  752. package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
  753. package/dist/runtime/editor/components/AppMenu/index.vue +25 -0
  754. package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
  755. package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +40 -0
  756. package/dist/runtime/editor/components/ArtboardTooltip/index.vue +296 -0
  757. package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +40 -0
  758. package/dist/runtime/editor/components/Avatar/index.d.vue.ts +30 -0
  759. package/dist/runtime/editor/components/Avatar/index.vue +119 -0
  760. package/dist/runtime/editor/components/Avatar/index.vue.d.ts +30 -0
  761. package/dist/runtime/editor/components/Banner/Inner.d.vue.ts +30 -0
  762. package/dist/runtime/editor/components/Banner/Inner.vue +32 -0
  763. package/dist/runtime/editor/components/Banner/Inner.vue.d.ts +30 -0
  764. package/dist/runtime/editor/components/Banner/index.d.vue.ts +21 -0
  765. package/dist/runtime/editor/components/Banner/index.vue +44 -0
  766. package/dist/runtime/editor/components/Banner/index.vue.d.ts +21 -0
  767. package/dist/runtime/editor/components/BetaIndicator/index.d.vue.ts +6 -0
  768. package/dist/runtime/editor/components/BetaIndicator/index.vue +16 -0
  769. package/dist/runtime/editor/components/BetaIndicator/index.vue.d.ts +6 -0
  770. package/dist/runtime/editor/components/BlockPreviewItem/index.d.vue.ts +18 -0
  771. package/dist/runtime/editor/components/BlockPreviewItem/index.vue +133 -0
  772. package/dist/runtime/editor/components/BlockPreviewItem/index.vue.d.ts +18 -0
  773. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.d.vue.ts +13 -0
  774. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue +50 -0
  775. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue.d.ts +13 -0
  776. package/dist/runtime/editor/components/BlockPreviewRenderer/index.d.vue.ts +11 -0
  777. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +53 -0
  778. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +11 -0
  779. package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
  780. package/dist/runtime/editor/components/BlockProxy/index.vue +161 -0
  781. package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
  782. package/dist/runtime/editor/components/BlokkliEditableEdit.d.vue.ts +23 -0
  783. package/dist/runtime/editor/components/BlokkliEditableEdit.vue +95 -0
  784. package/dist/runtime/editor/components/BlokkliEditableEdit.vue.d.ts +23 -0
  785. package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
  786. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
  787. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
  788. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +16 -0
  789. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +227 -0
  790. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +16 -0
  791. package/dist/runtime/editor/components/BundleSelector/Group.d.vue.ts +12 -0
  792. package/dist/runtime/editor/components/BundleSelector/Group.vue +28 -0
  793. package/dist/runtime/editor/components/BundleSelector/Group.vue.d.ts +12 -0
  794. package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +23 -0
  795. package/dist/runtime/editor/components/BundleSelector/index.vue +287 -0
  796. package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +23 -0
  797. package/dist/runtime/editor/components/BundleSelector/types.d.ts +21 -0
  798. package/dist/runtime/editor/components/BundleSelector/types.js +0 -0
  799. package/dist/runtime/editor/components/Button/index.d.vue.ts +29 -0
  800. package/dist/runtime/editor/components/Button/index.vue +36 -0
  801. package/dist/runtime/editor/components/Button/index.vue.d.ts +29 -0
  802. package/dist/runtime/editor/components/ButtonAction/index.d.vue.ts +13 -0
  803. package/dist/runtime/editor/components/ButtonAction/index.vue +25 -0
  804. package/dist/runtime/editor/components/ButtonAction/index.vue.d.ts +13 -0
  805. package/dist/runtime/editor/components/ColorDropdown/index.d.vue.ts +26 -0
  806. package/dist/runtime/editor/components/ColorDropdown/index.vue +116 -0
  807. package/dist/runtime/editor/components/ColorDropdown/index.vue.d.ts +26 -0
  808. package/dist/runtime/editor/components/Dialog/index.d.vue.ts +60 -0
  809. package/dist/runtime/editor/components/Dialog/index.vue +319 -0
  810. package/dist/runtime/editor/components/Dialog/index.vue.d.ts +60 -0
  811. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.d.vue.ts +27 -0
  812. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue +170 -0
  813. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue.d.ts +27 -0
  814. package/dist/runtime/editor/components/DiffApproval/Highlight/index.d.vue.ts +31 -0
  815. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +76 -0
  816. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue.d.ts +31 -0
  817. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.d.vue.ts +43 -0
  818. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +183 -0
  819. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue.d.ts +43 -0
  820. package/dist/runtime/editor/components/DiffApproval/index.d.vue.ts +43 -0
  821. package/dist/runtime/editor/components/DiffApproval/index.vue +191 -0
  822. package/dist/runtime/editor/components/DiffApproval/index.vue.d.ts +43 -0
  823. package/dist/runtime/editor/components/DiffApproval/types.d.ts +39 -0
  824. package/dist/runtime/editor/components/DiffApproval/types.js +22 -0
  825. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.d.vue.ts +9 -0
  826. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue +31 -0
  827. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue.d.ts +9 -0
  828. package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +8 -0
  829. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +19 -0
  830. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +8 -0
  831. package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
  832. package/dist/runtime/editor/components/DiffViewer/State.vue +549 -0
  833. package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
  834. package/dist/runtime/editor/components/DonutChart/index.d.vue.ts +18 -0
  835. package/dist/runtime/editor/components/DonutChart/index.vue +97 -0
  836. package/dist/runtime/editor/components/DonutChart/index.vue.d.ts +18 -0
  837. package/dist/runtime/editor/components/DraggableList.d.vue.ts +31 -0
  838. package/dist/runtime/editor/components/DraggableList.vue +238 -0
  839. package/dist/runtime/editor/components/DraggableList.vue.d.ts +31 -0
  840. package/dist/runtime/editor/components/Dropdown/index.d.vue.ts +29 -0
  841. package/dist/runtime/editor/components/Dropdown/index.vue +214 -0
  842. package/dist/runtime/editor/components/Dropdown/index.vue.d.ts +29 -0
  843. package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +23 -0
  844. package/dist/runtime/editor/components/DropdownItem/index.vue +60 -0
  845. package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +23 -0
  846. package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
  847. package/dist/runtime/editor/components/EditIndicator.vue +220 -0
  848. package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
  849. package/dist/runtime/editor/components/EditProvider.d.vue.ts +38 -0
  850. package/dist/runtime/editor/components/EditProvider.vue +511 -0
  851. package/dist/runtime/editor/components/EditProvider.vue.d.ts +38 -0
  852. package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
  853. package/dist/runtime/editor/components/FeaturesRenderer/index.vue +77 -0
  854. package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
  855. package/dist/runtime/editor/components/FileDropHandler/index.d.vue.ts +23 -0
  856. package/dist/runtime/editor/components/FileDropHandler/index.vue +112 -0
  857. package/dist/runtime/editor/components/FileDropHandler/index.vue.d.ts +23 -0
  858. package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +36 -0
  859. package/dist/runtime/editor/components/FlexTextarea/index.vue +324 -0
  860. package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +36 -0
  861. package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
  862. package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
  863. package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
  864. package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
  865. package/dist/runtime/editor/components/Form/Datepicker/index.vue +200 -0
  866. package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
  867. package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
  868. package/dist/runtime/editor/components/Form/Group/index.vue +23 -0
  869. package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
  870. package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
  871. package/dist/runtime/editor/components/Form/Item/index.vue +5 -0
  872. package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
  873. package/dist/runtime/editor/components/Form/Number/index.d.vue.ts +36 -0
  874. package/dist/runtime/editor/components/Form/Number/index.vue +79 -0
  875. package/dist/runtime/editor/components/Form/Number/index.vue.d.ts +36 -0
  876. package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +23 -0
  877. package/dist/runtime/editor/components/Form/Radio/index.vue +34 -0
  878. package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +23 -0
  879. package/dist/runtime/editor/components/Form/RadioBox/index.d.vue.ts +33 -0
  880. package/dist/runtime/editor/components/Form/RadioBox/index.vue +40 -0
  881. package/dist/runtime/editor/components/Form/RadioBox/index.vue.d.ts +33 -0
  882. package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
  883. package/dist/runtime/editor/components/Form/RadioTabs/index.vue +92 -0
  884. package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
  885. package/dist/runtime/editor/components/Form/Search/index.d.vue.ts +88 -0
  886. package/dist/runtime/editor/components/Form/Search/index.vue +289 -0
  887. package/dist/runtime/editor/components/Form/Search/index.vue.d.ts +88 -0
  888. package/dist/runtime/editor/components/Form/Search/types.d.ts +19 -0
  889. package/dist/runtime/editor/components/Form/Search/types.js +0 -0
  890. package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
  891. package/dist/runtime/editor/components/Form/Select/index.vue +29 -0
  892. package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
  893. package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +31 -0
  894. package/dist/runtime/editor/components/Form/Text/index.vue +60 -0
  895. package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +31 -0
  896. package/dist/runtime/editor/components/Form/TextDark/index.d.vue.ts +24 -0
  897. package/dist/runtime/editor/components/Form/TextDark/index.vue +55 -0
  898. package/dist/runtime/editor/components/Form/TextDark/index.vue.d.ts +24 -0
  899. package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +24 -0
  900. package/dist/runtime/editor/components/Form/Textarea/index.vue +42 -0
  901. package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +24 -0
  902. package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +39 -0
  903. package/dist/runtime/editor/components/Form/Toggle/index.vue +87 -0
  904. package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +39 -0
  905. package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
  906. package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
  907. package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
  908. package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
  909. package/dist/runtime/editor/components/FormOverlay/index.vue +112 -0
  910. package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
  911. package/dist/runtime/editor/components/GrowOnly/index.d.vue.ts +10 -0
  912. package/dist/runtime/editor/components/GrowOnly/index.vue +34 -0
  913. package/dist/runtime/editor/components/GrowOnly/index.vue.d.ts +10 -0
  914. package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
  915. package/dist/runtime/editor/components/Highlight/index.vue +55 -0
  916. package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
  917. package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
  918. package/dist/runtime/editor/components/Icon/index.vue +45 -0
  919. package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
  920. package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
  921. package/dist/runtime/editor/components/Indicators/index.vue +221 -0
  922. package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
  923. package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +26 -0
  924. package/dist/runtime/editor/components/InfoBox/index.vue +33 -0
  925. package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +26 -0
  926. package/dist/runtime/editor/components/InlineActions/Button/index.d.vue.ts +19 -0
  927. package/dist/runtime/editor/components/InlineActions/Button/index.vue +27 -0
  928. package/dist/runtime/editor/components/InlineActions/Button/index.vue.d.ts +19 -0
  929. package/dist/runtime/editor/components/InlineActions/index.d.vue.ts +13 -0
  930. package/dist/runtime/editor/components/InlineActions/index.vue +5 -0
  931. package/dist/runtime/editor/components/InlineActions/index.vue.d.ts +13 -0
  932. package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +10 -0
  933. package/dist/runtime/editor/components/ItemIcon/index.vue +45 -0
  934. package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +10 -0
  935. package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
  936. package/dist/runtime/editor/components/ItemIconBox/index.vue +43 -0
  937. package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
  938. package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
  939. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
  940. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
  941. package/dist/runtime/editor/components/Konami/Game/blokkli.png +0 -0
  942. package/dist/runtime/editor/components/Konami/Game/charmap.d.ts +2 -0
  943. package/dist/runtime/editor/components/Konami/Game/charmap.js +168 -0
  944. package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
  945. package/dist/runtime/editor/components/Konami/Game/index.vue +862 -0
  946. package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
  947. package/dist/runtime/editor/components/Konami/Game/textRendering.d.ts +8 -0
  948. package/dist/runtime/editor/components/Konami/Game/textRendering.js +138 -0
  949. package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
  950. package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
  951. package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
  952. package/dist/runtime/editor/components/Konami/index.vue +44 -0
  953. package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
  954. package/dist/runtime/editor/components/Loading/index.d.vue.ts +12 -0
  955. package/dist/runtime/editor/components/Loading/index.vue +27 -0
  956. package/dist/runtime/editor/components/Loading/index.vue.d.ts +12 -0
  957. package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
  958. package/dist/runtime/editor/components/Messages/Item/index.vue +108 -0
  959. package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
  960. package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
  961. package/dist/runtime/editor/components/Messages/index.vue +166 -0
  962. package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
  963. package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +31 -0
  964. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +346 -0
  965. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +31 -0
  966. package/dist/runtime/editor/components/NotEditStateInfo/index.d.vue.ts +3 -0
  967. package/dist/runtime/editor/components/NotEditStateInfo/index.vue +19 -0
  968. package/dist/runtime/editor/components/NotEditStateInfo/index.vue.d.ts +3 -0
  969. package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
  970. package/dist/runtime/editor/components/Overlay/index.vue +131 -0
  971. package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
  972. package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
  973. package/dist/runtime/editor/components/Pagination/index.vue +54 -0
  974. package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
  975. package/dist/runtime/editor/components/Panel/Action/index.d.vue.ts +11 -0
  976. package/dist/runtime/editor/components/Panel/Action/index.vue +25 -0
  977. package/dist/runtime/editor/components/Panel/Action/index.vue.d.ts +11 -0
  978. package/dist/runtime/editor/components/Panel/AddButton/index.d.vue.ts +8 -0
  979. package/dist/runtime/editor/components/Panel/AddButton/index.vue +17 -0
  980. package/dist/runtime/editor/components/Panel/AddButton/index.vue.d.ts +8 -0
  981. package/dist/runtime/editor/components/Panel/Details/index.d.vue.ts +25 -0
  982. package/dist/runtime/editor/components/Panel/Details/index.vue +45 -0
  983. package/dist/runtime/editor/components/Panel/Details/index.vue.d.ts +25 -0
  984. package/dist/runtime/editor/components/Panel/Item/index.d.vue.ts +65 -0
  985. package/dist/runtime/editor/components/Panel/Item/index.vue +99 -0
  986. package/dist/runtime/editor/components/Panel/Item/index.vue.d.ts +65 -0
  987. package/dist/runtime/editor/components/Panel/Section/index.d.vue.ts +26 -0
  988. package/dist/runtime/editor/components/Panel/Section/index.vue +94 -0
  989. package/dist/runtime/editor/components/Panel/Section/index.vue.d.ts +26 -0
  990. package/dist/runtime/editor/components/Panel/Sheet/index.d.vue.ts +20 -0
  991. package/dist/runtime/editor/components/Panel/Sheet/index.vue +34 -0
  992. package/dist/runtime/editor/components/Panel/Sheet/index.vue.d.ts +20 -0
  993. package/dist/runtime/editor/components/Panel/Tabs/index.d.vue.ts +28 -0
  994. package/dist/runtime/editor/components/Panel/Tabs/index.vue +25 -0
  995. package/dist/runtime/editor/components/Panel/Tabs/index.vue.d.ts +28 -0
  996. package/dist/runtime/editor/components/Pill/index.d.vue.ts +28 -0
  997. package/dist/runtime/editor/components/Pill/index.vue +37 -0
  998. package/dist/runtime/editor/components/Pill/index.vue.d.ts +28 -0
  999. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
  1000. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
  1001. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
  1002. package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
  1003. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
  1004. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
  1005. package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
  1006. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +44 -0
  1007. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
  1008. package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
  1009. package/dist/runtime/editor/components/PluginConfigForm/index.vue +86 -0
  1010. package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
  1011. package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.d.vue.ts +15 -0
  1012. package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.vue +297 -0
  1013. package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.vue.d.ts +15 -0
  1014. package/dist/runtime/editor/components/PluginConfigFormInline/index.d.vue.ts +22 -0
  1015. package/dist/runtime/editor/components/PluginConfigFormInline/index.vue +135 -0
  1016. package/dist/runtime/editor/components/PluginConfigFormInline/index.vue.d.ts +22 -0
  1017. package/dist/runtime/editor/components/Popup/index.d.vue.ts +30 -0
  1018. package/dist/runtime/editor/components/Popup/index.vue +164 -0
  1019. package/dist/runtime/editor/components/Popup/index.vue.d.ts +30 -0
  1020. package/dist/runtime/editor/components/PopupHost/index.d.vue.ts +13 -0
  1021. package/dist/runtime/editor/components/PopupHost/index.vue +12 -0
  1022. package/dist/runtime/editor/components/PopupHost/index.vue.d.ts +13 -0
  1023. package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +33 -0
  1024. package/dist/runtime/editor/components/PreviewProvider.vue +205 -0
  1025. package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +33 -0
  1026. package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +17 -0
  1027. package/dist/runtime/editor/components/RelativeTime/index.vue +73 -0
  1028. package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +17 -0
  1029. package/dist/runtime/editor/components/Reorder/index.d.vue.ts +53 -0
  1030. package/dist/runtime/editor/components/Reorder/index.vue +123 -0
  1031. package/dist/runtime/editor/components/Reorder/index.vue.d.ts +53 -0
  1032. package/dist/runtime/editor/components/Resizable/index.d.vue.ts +22 -0
  1033. package/dist/runtime/editor/components/Resizable/index.vue +177 -0
  1034. package/dist/runtime/editor/components/Resizable/index.vue.d.ts +22 -0
  1035. package/dist/runtime/editor/components/ResizableEditorView/index.d.vue.ts +26 -0
  1036. package/dist/runtime/editor/components/ResizableEditorView/index.vue +76 -0
  1037. package/dist/runtime/editor/components/ResizableEditorView/index.vue.d.ts +26 -0
  1038. package/dist/runtime/editor/components/RichText/Editor/CleanTaskItem.d.ts +10 -0
  1039. package/dist/runtime/editor/components/RichText/Editor/CleanTaskItem.js +59 -0
  1040. package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.d.vue.ts +19 -0
  1041. package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.vue +67 -0
  1042. package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.vue.d.ts +19 -0
  1043. package/dist/runtime/editor/components/RichText/Editor/Panel/index.d.vue.ts +20 -0
  1044. package/dist/runtime/editor/components/RichText/Editor/Panel/index.vue +35 -0
  1045. package/dist/runtime/editor/components/RichText/Editor/Panel/index.vue.d.ts +20 -0
  1046. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.d.vue.ts +24 -0
  1047. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.vue +44 -0
  1048. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.vue.d.ts +24 -0
  1049. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.d.vue.ts +23 -0
  1050. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.vue +35 -0
  1051. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.vue.d.ts +23 -0
  1052. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.d.vue.ts +30 -0
  1053. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.vue +69 -0
  1054. package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.vue.d.ts +30 -0
  1055. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.d.vue.ts +18 -0
  1056. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.vue +31 -0
  1057. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.vue.d.ts +18 -0
  1058. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.d.vue.ts +3 -0
  1059. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.vue +13 -0
  1060. package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.vue.d.ts +3 -0
  1061. package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.d.vue.ts +13 -0
  1062. package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.vue +7 -0
  1063. package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.vue.d.ts +13 -0
  1064. package/dist/runtime/editor/components/RichText/Editor/index.d.vue.ts +31 -0
  1065. package/dist/runtime/editor/components/RichText/Editor/index.vue +386 -0
  1066. package/dist/runtime/editor/components/RichText/Editor/index.vue.d.ts +31 -0
  1067. package/dist/runtime/editor/components/RichText/Renderer/enrichRichContent.d.ts +12 -0
  1068. package/dist/runtime/editor/components/RichText/Renderer/enrichRichContent.js +42 -0
  1069. package/dist/runtime/editor/components/RichText/Renderer/index.d.vue.ts +23 -0
  1070. package/dist/runtime/editor/components/RichText/Renderer/index.vue +39 -0
  1071. package/dist/runtime/editor/components/RichText/Renderer/index.vue.d.ts +23 -0
  1072. package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
  1073. package/dist/runtime/editor/components/ScaleToFit/index.vue +96 -0
  1074. package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
  1075. package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
  1076. package/dist/runtime/editor/components/ScheduleDate/index.vue +138 -0
  1077. package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
  1078. package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
  1079. package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
  1080. package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
  1081. package/dist/runtime/editor/components/SearchOverlay/index.d.vue.ts +43 -0
  1082. package/dist/runtime/editor/components/SearchOverlay/index.vue +183 -0
  1083. package/dist/runtime/editor/components/SearchOverlay/index.vue.d.ts +43 -0
  1084. package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
  1085. package/dist/runtime/editor/components/ShortcutIndicator/index.vue +79 -0
  1086. package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
  1087. package/dist/runtime/editor/components/SidebarFloater/index.d.vue.ts +16 -0
  1088. package/dist/runtime/editor/components/SidebarFloater/index.vue +45 -0
  1089. package/dist/runtime/editor/components/SidebarFloater/index.vue.d.ts +16 -0
  1090. package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
  1091. package/dist/runtime/editor/components/Sortli/index.vue +81 -0
  1092. package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
  1093. package/dist/runtime/editor/components/StatusIcon/index.d.vue.ts +9 -0
  1094. package/dist/runtime/editor/components/StatusIcon/index.vue +86 -0
  1095. package/dist/runtime/editor/components/StatusIcon/index.vue.d.ts +9 -0
  1096. package/dist/runtime/editor/components/StatusIndicator/index.d.vue.ts +9 -0
  1097. package/dist/runtime/editor/components/StatusIndicator/index.vue +16 -0
  1098. package/dist/runtime/editor/components/StatusIndicator/index.vue.d.ts +9 -0
  1099. package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
  1100. package/dist/runtime/editor/components/SystemRequirements/index.vue +136 -0
  1101. package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
  1102. package/dist/runtime/editor/components/Tabs/index.d.vue.ts +31 -0
  1103. package/dist/runtime/editor/components/Tabs/index.vue +34 -0
  1104. package/dist/runtime/editor/components/Tabs/index.vue.d.ts +31 -0
  1105. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.d.vue.ts +3 -0
  1106. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.vue +74 -0
  1107. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.vue.d.ts +3 -0
  1108. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.d.vue.ts +7 -0
  1109. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.vue +16 -0
  1110. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.vue.d.ts +7 -0
  1111. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.d.vue.ts +3 -0
  1112. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.vue +57 -0
  1113. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.vue.d.ts +3 -0
  1114. package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
  1115. package/dist/runtime/editor/components/Toolbar/index.vue +364 -0
  1116. package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
  1117. package/dist/runtime/editor/components/ToolbarDropdown/index.d.vue.ts +21 -0
  1118. package/dist/runtime/editor/components/ToolbarDropdown/index.vue +36 -0
  1119. package/dist/runtime/editor/components/ToolbarDropdown/index.vue.d.ts +21 -0
  1120. package/dist/runtime/editor/components/Tooltip/Context.d.vue.ts +7 -0
  1121. package/dist/runtime/editor/components/Tooltip/Context.vue +15 -0
  1122. package/dist/runtime/editor/components/Tooltip/Context.vue.d.ts +7 -0
  1123. package/dist/runtime/editor/components/Tooltip/Status.d.vue.ts +8 -0
  1124. package/dist/runtime/editor/components/Tooltip/Status.vue +27 -0
  1125. package/dist/runtime/editor/components/Tooltip/Status.vue.d.ts +8 -0
  1126. package/dist/runtime/editor/components/Tooltip/index.d.vue.ts +27 -0
  1127. package/dist/runtime/editor/components/Tooltip/index.vue +53 -0
  1128. package/dist/runtime/editor/components/Tooltip/index.vue.d.ts +27 -0
  1129. package/dist/runtime/editor/components/Transition/Collapse/index.d.vue.ts +13 -0
  1130. package/dist/runtime/editor/components/Transition/Collapse/index.vue +20 -0
  1131. package/dist/runtime/editor/components/Transition/Collapse/index.vue.d.ts +13 -0
  1132. package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
  1133. package/dist/runtime/editor/components/Transition/Height.vue +96 -0
  1134. package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
  1135. package/dist/runtime/editor/components/Transition/List/index.d.vue.ts +21 -0
  1136. package/dist/runtime/editor/components/Transition/List/index.vue +31 -0
  1137. package/dist/runtime/editor/components/Transition/List/index.vue.d.ts +21 -0
  1138. package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
  1139. package/dist/runtime/editor/components/Transition/index.vue +43 -0
  1140. package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
  1141. package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
  1142. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
  1143. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
  1144. package/dist/runtime/editor/components/index.d.ts +72 -0
  1145. package/dist/runtime/editor/components/index.js +90 -0
  1146. package/dist/runtime/editor/composables/addElementClasses.d.ts +2 -0
  1147. package/dist/runtime/editor/composables/addElementClasses.js +24 -0
  1148. package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
  1149. package/dist/runtime/editor/composables/defineAddAction.js +10 -0
  1150. package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
  1151. package/dist/runtime/editor/composables/defineCommands.js +10 -0
  1152. package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
  1153. package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
  1154. package/dist/runtime/editor/composables/defineDropHandler.d.ts +3 -0
  1155. package/dist/runtime/editor/composables/defineDropHandler.js +10 -0
  1156. package/dist/runtime/editor/composables/defineEditorComponent.d.ts +126 -0
  1157. package/dist/runtime/editor/composables/defineEditorComponent.js +6 -0
  1158. package/dist/runtime/editor/composables/defineElementStyle.d.ts +2 -0
  1159. package/dist/runtime/editor/composables/defineElementStyle.js +33 -0
  1160. package/dist/runtime/editor/composables/defineHighlight.d.ts +2 -0
  1161. package/dist/runtime/editor/composables/defineHighlight.js +10 -0
  1162. package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
  1163. package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
  1164. package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
  1165. package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
  1166. package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
  1167. package/dist/runtime/editor/composables/defineRenderer.js +14 -0
  1168. package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
  1169. package/dist/runtime/editor/composables/defineShortcut.js +18 -0
  1170. package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
  1171. package/dist/runtime/editor/composables/defineTourItem.js +10 -0
  1172. package/dist/runtime/editor/composables/defineViewOption.d.ts +5 -0
  1173. package/dist/runtime/editor/composables/defineViewOption.js +10 -0
  1174. package/dist/runtime/editor/composables/index.d.ts +30 -0
  1175. package/dist/runtime/editor/composables/index.js +32 -0
  1176. package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
  1177. package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
  1178. package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
  1179. package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
  1180. package/dist/runtime/editor/composables/onElementResize.d.ts +3 -0
  1181. package/dist/runtime/editor/composables/onElementResize.js +36 -0
  1182. package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
  1183. package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
  1184. package/dist/runtime/editor/composables/useBlockRegistration.d.ts +5 -0
  1185. package/dist/runtime/editor/composables/useBlockRegistration.js +49 -0
  1186. package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
  1187. package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
  1188. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
  1189. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
  1190. package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
  1191. package/dist/runtime/editor/composables/useDialog.js +16 -0
  1192. package/dist/runtime/editor/composables/useDismiss.d.ts +30 -0
  1193. package/dist/runtime/editor/composables/useDismiss.js +43 -0
  1194. package/dist/runtime/editor/composables/useEditableFieldOverride.d.ts +26 -0
  1195. package/dist/runtime/editor/composables/useEditableFieldOverride.js +148 -0
  1196. package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
  1197. package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
  1198. package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +30 -0
  1199. package/dist/runtime/editor/composables/useGlobalBlokkliObject.js +42 -0
  1200. package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
  1201. package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
  1202. package/dist/runtime/editor/composables/useStickyToolbar.d.ts +25 -0
  1203. package/dist/runtime/editor/composables/useStickyToolbar.js +284 -0
  1204. package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
  1205. package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
  1206. package/dist/runtime/editor/css/output.css +1 -0
  1207. package/dist/runtime/editor/events/index.d.ts +338 -0
  1208. package/dist/runtime/editor/events/index.js +6 -0
  1209. package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +15 -0
  1210. package/dist/runtime/editor/features/add-list/Actions/Action.vue +60 -0
  1211. package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +15 -0
  1212. package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +16 -0
  1213. package/dist/runtime/editor/features/add-list/Actions/index.vue +64 -0
  1214. package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +16 -0
  1215. package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +21 -0
  1216. package/dist/runtime/editor/features/add-list/Blocks/index.vue +312 -0
  1217. package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +21 -0
  1218. package/dist/runtime/editor/features/add-list/Help/Item.d.vue.ts +12 -0
  1219. package/dist/runtime/editor/features/add-list/Help/Item.vue +195 -0
  1220. package/dist/runtime/editor/features/add-list/Help/Item.vue.d.ts +12 -0
  1221. package/dist/runtime/editor/features/add-list/Help/index.d.vue.ts +13 -0
  1222. package/dist/runtime/editor/features/add-list/Help/index.vue +279 -0
  1223. package/dist/runtime/editor/features/add-list/Help/index.vue.d.ts +13 -0
  1224. package/dist/runtime/editor/features/add-list/docs.md +4 -0
  1225. package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
  1226. package/dist/runtime/editor/features/add-list/index.vue +592 -0
  1227. package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
  1228. package/dist/runtime/editor/features/add-list/types.d.ts +24 -0
  1229. package/dist/runtime/editor/features/add-list/types.js +0 -0
  1230. package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
  1231. package/dist/runtime/editor/features/analyze/Icon.vue +85 -0
  1232. package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
  1233. package/dist/runtime/editor/features/analyze/Ignored/index.d.vue.ts +7 -0
  1234. package/dist/runtime/editor/features/analyze/Ignored/index.vue +19 -0
  1235. package/dist/runtime/editor/features/analyze/Ignored/index.vue.d.ts +7 -0
  1236. package/dist/runtime/editor/features/analyze/Main.d.vue.ts +24 -0
  1237. package/dist/runtime/editor/features/analyze/Main.vue +541 -0
  1238. package/dist/runtime/editor/features/analyze/Main.vue.d.ts +24 -0
  1239. package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +7 -0
  1240. package/dist/runtime/editor/features/analyze/Results/Results.vue +78 -0
  1241. package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +7 -0
  1242. package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +15 -0
  1243. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +57 -0
  1244. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +15 -0
  1245. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +8 -0
  1246. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +103 -0
  1247. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +8 -0
  1248. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +9 -0
  1249. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +170 -0
  1250. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +9 -0
  1251. package/dist/runtime/editor/features/analyze/Results/Section.d.vue.ts +10 -0
  1252. package/dist/runtime/editor/features/analyze/Results/Section.vue +42 -0
  1253. package/dist/runtime/editor/features/analyze/Results/Section.vue.d.ts +10 -0
  1254. package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
  1255. package/dist/runtime/editor/features/analyze/Results/Status.vue +24 -0
  1256. package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
  1257. package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
  1258. package/dist/runtime/editor/features/analyze/Summary/index.vue +88 -0
  1259. package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
  1260. package/dist/runtime/editor/features/analyze/analyzers/altText.d.ts +2 -0
  1261. package/dist/runtime/editor/features/analyze/analyzers/altText.js +62 -0
  1262. package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
  1263. package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
  1264. package/dist/runtime/editor/features/analyze/analyzers/defaults/validations.d.ts +10 -0
  1265. package/dist/runtime/editor/features/analyze/analyzers/defaults/validations.js +39 -0
  1266. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.d.ts +4 -0
  1267. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.js +5 -0
  1268. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.d.ts +2 -0
  1269. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +144 -0
  1270. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +42 -0
  1271. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.js +56 -0
  1272. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.d.ts +5 -0
  1273. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.js +98 -0
  1274. package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.d.ts +7 -0
  1275. package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.js +8 -0
  1276. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.d.ts +3 -0
  1277. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.js +13 -0
  1278. package/dist/runtime/editor/features/analyze/analyzers/index.d.ts +6 -0
  1279. package/dist/runtime/editor/features/analyze/analyzers/index.js +12 -0
  1280. package/dist/runtime/editor/features/analyze/analyzers/readability.d.ts +2 -0
  1281. package/dist/runtime/editor/features/analyze/analyzers/readability.js +129 -0
  1282. package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +98 -0
  1283. package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
  1284. package/dist/runtime/editor/features/analyze/helper.d.ts +5 -0
  1285. package/dist/runtime/editor/features/analyze/helper.js +28 -0
  1286. package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
  1287. package/dist/runtime/editor/features/analyze/index.vue +78 -0
  1288. package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
  1289. package/dist/runtime/editor/features/analyze/readability/adapterTypes.d.ts +9 -0
  1290. package/dist/runtime/editor/features/analyze/readability/adapterTypes.js +0 -0
  1291. package/dist/runtime/editor/features/analyze/readability/chunkHtml.d.ts +15 -0
  1292. package/dist/runtime/editor/features/analyze/readability/chunkHtml.js +97 -0
  1293. package/dist/runtime/editor/features/analyze/readability/types.d.ts +91 -0
  1294. package/dist/runtime/editor/features/analyze/readability/types.js +0 -0
  1295. package/dist/runtime/editor/features/analyze/types.d.ts +21 -0
  1296. package/dist/runtime/editor/features/analyze/types.js +0 -0
  1297. package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
  1298. package/dist/runtime/editor/features/anchors/Overlay/index.vue +63 -0
  1299. package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
  1300. package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
  1301. package/dist/runtime/editor/features/anchors/index.vue +36 -0
  1302. package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
  1303. package/dist/runtime/editor/features/anchors/types.d.ts +9 -0
  1304. package/dist/runtime/editor/features/anchors/types.js +1 -0
  1305. package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
  1306. package/dist/runtime/editor/features/artboard/Overview/index.vue +153 -0
  1307. package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
  1308. package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
  1309. package/dist/runtime/editor/features/artboard/Renderer.vue +454 -0
  1310. package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
  1311. package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
  1312. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +91 -0
  1313. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
  1314. package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
  1315. package/dist/runtime/editor/features/artboard/index.vue +92 -0
  1316. package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
  1317. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +32 -0
  1318. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +164 -0
  1319. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +32 -0
  1320. package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
  1321. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +246 -0
  1322. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
  1323. package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
  1324. package/dist/runtime/editor/features/block-scheduler/index.vue +104 -0
  1325. package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
  1326. package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
  1327. package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
  1328. package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.d.vue.ts +11 -0
  1329. package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.vue +184 -0
  1330. package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.vue.d.ts +11 -0
  1331. package/dist/runtime/editor/features/block-transfer/index.d.vue.ts +3 -0
  1332. package/dist/runtime/editor/features/block-transfer/index.vue +235 -0
  1333. package/dist/runtime/editor/features/block-transfer/index.vue.d.ts +3 -0
  1334. package/dist/runtime/editor/features/block-transfer/types.d.ts +101 -0
  1335. package/dist/runtime/editor/features/block-transfer/types.js +0 -0
  1336. package/dist/runtime/editor/features/breadcrumbs/Crumb/index.d.vue.ts +31 -0
  1337. package/dist/runtime/editor/features/breadcrumbs/Crumb/index.vue +100 -0
  1338. package/dist/runtime/editor/features/breadcrumbs/Crumb/index.vue.d.ts +31 -0
  1339. package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
  1340. package/dist/runtime/editor/features/breadcrumbs/index.vue +220 -0
  1341. package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
  1342. package/dist/runtime/editor/features/breadcrumbs/types.d.ts +17 -0
  1343. package/dist/runtime/editor/features/breadcrumbs/types.js +0 -0
  1344. package/dist/runtime/editor/features/changelog/Dialog/index.d.vue.ts +7 -0
  1345. package/dist/runtime/editor/features/changelog/Dialog/index.vue +44 -0
  1346. package/dist/runtime/editor/features/changelog/Dialog/index.vue.d.ts +7 -0
  1347. package/dist/runtime/editor/features/changelog/index.d.vue.ts +3 -0
  1348. package/dist/runtime/editor/features/changelog/index.vue +58 -0
  1349. package/dist/runtime/editor/features/changelog/index.vue.d.ts +3 -0
  1350. package/dist/runtime/editor/features/clipboard/DropElement/Video.d.vue.ts +8 -0
  1351. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue +50 -0
  1352. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue.d.ts +8 -0
  1353. package/dist/runtime/editor/features/clipboard/DropElement/helpers.d.ts +1 -0
  1354. package/dist/runtime/editor/features/clipboard/DropElement/helpers.js +14 -0
  1355. package/dist/runtime/editor/features/clipboard/DropElement/index.d.vue.ts +16 -0
  1356. package/dist/runtime/editor/features/clipboard/DropElement/index.vue +234 -0
  1357. package/dist/runtime/editor/features/clipboard/DropElement/index.vue.d.ts +16 -0
  1358. package/dist/runtime/editor/features/clipboard/docs.md +16 -0
  1359. package/dist/runtime/editor/features/clipboard/helpers.d.ts +15 -0
  1360. package/dist/runtime/editor/features/clipboard/helpers.js +62 -0
  1361. package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
  1362. package/dist/runtime/editor/features/clipboard/index.vue +727 -0
  1363. package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
  1364. package/dist/runtime/editor/features/clipboard/types.d.ts +126 -0
  1365. package/dist/runtime/editor/features/clipboard/types.js +0 -0
  1366. package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
  1367. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +44 -0
  1368. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
  1369. package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
  1370. package/dist/runtime/editor/features/command-palette/Palette/index.vue +136 -0
  1371. package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
  1372. package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
  1373. package/dist/runtime/editor/features/command-palette/index.vue +56 -0
  1374. package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
  1375. package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
  1376. package/dist/runtime/editor/features/command-palette/types.js +0 -0
  1377. package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
  1378. package/dist/runtime/editor/features/comments/AddForm/index.vue +54 -0
  1379. package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
  1380. package/dist/runtime/editor/features/comments/Comment/Actions/index.d.vue.ts +27 -0
  1381. package/dist/runtime/editor/features/comments/Comment/Actions/index.vue +89 -0
  1382. package/dist/runtime/editor/features/comments/Comment/Actions/index.vue.d.ts +27 -0
  1383. package/dist/runtime/editor/features/comments/Comment/EditForm/index.d.vue.ts +15 -0
  1384. package/dist/runtime/editor/features/comments/Comment/EditForm/index.vue +38 -0
  1385. package/dist/runtime/editor/features/comments/Comment/EditForm/index.vue.d.ts +15 -0
  1386. package/dist/runtime/editor/features/comments/Comment/Meta/index.d.vue.ts +12 -0
  1387. package/dist/runtime/editor/features/comments/Comment/Meta/index.vue +30 -0
  1388. package/dist/runtime/editor/features/comments/Comment/Meta/index.vue.d.ts +12 -0
  1389. package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +40 -0
  1390. package/dist/runtime/editor/features/comments/Comment/index.vue +150 -0
  1391. package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +40 -0
  1392. package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +30 -0
  1393. package/dist/runtime/editor/features/comments/CommentInput/index.vue +84 -0
  1394. package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +30 -0
  1395. package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +48 -0
  1396. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +132 -0
  1397. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +48 -0
  1398. package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +41 -0
  1399. package/dist/runtime/editor/features/comments/Overlay/index.vue +144 -0
  1400. package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +41 -0
  1401. package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.d.vue.ts +9 -0
  1402. package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.vue +57 -0
  1403. package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.vue.d.ts +9 -0
  1404. package/dist/runtime/editor/features/comments/Sidebar/index.d.vue.ts +66 -0
  1405. package/dist/runtime/editor/features/comments/Sidebar/index.vue +116 -0
  1406. package/dist/runtime/editor/features/comments/Sidebar/index.vue.d.ts +66 -0
  1407. package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.d.vue.ts +11 -0
  1408. package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.vue +57 -0
  1409. package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.vue.d.ts +11 -0
  1410. package/dist/runtime/editor/features/comments/Thread/index.d.vue.ts +60 -0
  1411. package/dist/runtime/editor/features/comments/Thread/index.vue +162 -0
  1412. package/dist/runtime/editor/features/comments/Thread/index.vue.d.ts +60 -0
  1413. package/dist/runtime/editor/features/comments/docs.md +13 -0
  1414. package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
  1415. package/dist/runtime/editor/features/comments/index.vue +202 -0
  1416. package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
  1417. package/dist/runtime/editor/features/comments/types.d.ts +66 -0
  1418. package/dist/runtime/editor/features/comments/types.js +0 -0
  1419. package/dist/runtime/editor/features/complex-options/index.d.vue.ts +3 -0
  1420. package/dist/runtime/editor/features/complex-options/index.vue +101 -0
  1421. package/dist/runtime/editor/features/complex-options/index.vue.d.ts +3 -0
  1422. package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
  1423. package/dist/runtime/editor/features/conversions/index.vue +84 -0
  1424. package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
  1425. package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
  1426. package/dist/runtime/editor/features/conversions/types.js +0 -0
  1427. package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
  1428. package/dist/runtime/editor/features/debug/DebugSection.vue +24 -0
  1429. package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
  1430. package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
  1431. package/dist/runtime/editor/features/debug/Main.vue +250 -0
  1432. package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
  1433. package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
  1434. package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
  1435. package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
  1436. package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
  1437. package/dist/runtime/editor/features/debug/Section/Features.vue +31 -0
  1438. package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
  1439. package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
  1440. package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
  1441. package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
  1442. package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
  1443. package/dist/runtime/editor/features/debug/Section/Keyboard.vue +17 -0
  1444. package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
  1445. package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
  1446. package/dist/runtime/editor/features/debug/Section/Logging.vue +69 -0
  1447. package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
  1448. package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
  1449. package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
  1450. package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
  1451. package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
  1452. package/dist/runtime/editor/features/debug/Section/Selection.vue +25 -0
  1453. package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
  1454. package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
  1455. package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
  1456. package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
  1457. package/dist/runtime/editor/features/debug/docs.md +3 -0
  1458. package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
  1459. package/dist/runtime/editor/features/debug/index.vue +35 -0
  1460. package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
  1461. package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
  1462. package/dist/runtime/editor/features/delete/index.vue +83 -0
  1463. package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
  1464. package/dist/runtime/editor/features/delete/types.d.ts +9 -0
  1465. package/dist/runtime/editor/features/delete/types.js +1 -0
  1466. package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
  1467. package/dist/runtime/editor/features/dev-mode/index.vue +177 -0
  1468. package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
  1469. package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
  1470. package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
  1471. package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
  1472. package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
  1473. package/dist/runtime/editor/features/diff/index.vue +39 -0
  1474. package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
  1475. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +27 -0
  1476. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +88 -0
  1477. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +27 -0
  1478. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +31 -0
  1479. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +518 -0
  1480. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +31 -0
  1481. package/dist/runtime/editor/features/dragging-overlay/Renderer/fragment.glsl +152 -0
  1482. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +31 -0
  1483. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +984 -0
  1484. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +31 -0
  1485. package/dist/runtime/editor/features/dragging-overlay/Renderer/vertex.glsl +183 -0
  1486. package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
  1487. package/dist/runtime/editor/features/dragging-overlay/index.vue +527 -0
  1488. package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
  1489. package/dist/runtime/editor/features/dragging-overlay/types.d.ts +28 -0
  1490. package/dist/runtime/editor/features/dragging-overlay/types.js +0 -0
  1491. package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.d.vue.ts +15 -0
  1492. package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.vue +549 -0
  1493. package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.vue.d.ts +15 -0
  1494. package/dist/runtime/editor/features/droppable-field-edit/index.d.vue.ts +3 -0
  1495. package/dist/runtime/editor/features/droppable-field-edit/index.vue +231 -0
  1496. package/dist/runtime/editor/features/droppable-field-edit/index.vue.d.ts +3 -0
  1497. package/dist/runtime/editor/features/droppable-field-edit/types.d.ts +70 -0
  1498. package/dist/runtime/editor/features/droppable-field-edit/types.js +0 -0
  1499. package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
  1500. package/dist/runtime/editor/features/duplicate/index.vue +121 -0
  1501. package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
  1502. package/dist/runtime/editor/features/duplicate/types.d.ts +9 -0
  1503. package/dist/runtime/editor/features/duplicate/types.js +1 -0
  1504. package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
  1505. package/dist/runtime/editor/features/edit/index.vue +155 -0
  1506. package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
  1507. package/dist/runtime/editor/features/edit/types.d.ts +9 -0
  1508. package/dist/runtime/editor/features/edit/types.js +0 -0
  1509. package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
  1510. package/dist/runtime/editor/features/edit-form/Frame/index.vue +87 -0
  1511. package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
  1512. package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
  1513. package/dist/runtime/editor/features/edit-form/index.vue +176 -0
  1514. package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
  1515. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
  1516. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue +35 -0
  1517. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
  1518. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +28 -0
  1519. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +158 -0
  1520. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +28 -0
  1521. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
  1522. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +70 -0
  1523. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
  1524. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.d.vue.ts +8 -0
  1525. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +209 -0
  1526. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue.d.ts +8 -0
  1527. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.d.vue.ts +7 -0
  1528. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +182 -0
  1529. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue.d.ts +7 -0
  1530. package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
  1531. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +611 -0
  1532. package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
  1533. package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
  1534. package/dist/runtime/editor/features/editable-field/index.vue +164 -0
  1535. package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
  1536. package/dist/runtime/editor/features/editable-field/types.d.ts +64 -0
  1537. package/dist/runtime/editor/features/editable-field/types.js +0 -0
  1538. package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
  1539. package/dist/runtime/editor/features/editable-mask/index.vue +49 -0
  1540. package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
  1541. package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
  1542. package/dist/runtime/editor/features/entity-title/index.vue +128 -0
  1543. package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
  1544. package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
  1545. package/dist/runtime/editor/features/exit/index.vue +38 -0
  1546. package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
  1547. package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
  1548. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +34 -0
  1549. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
  1550. package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
  1551. package/dist/runtime/editor/features/fragments/Dialog/index.vue +125 -0
  1552. package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
  1553. package/dist/runtime/editor/features/fragments/docs.md +101 -0
  1554. package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
  1555. package/dist/runtime/editor/features/fragments/index.vue +84 -0
  1556. package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
  1557. package/dist/runtime/editor/features/fragments/types.d.ts +15 -0
  1558. package/dist/runtime/editor/features/fragments/types.js +0 -0
  1559. package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
  1560. package/dist/runtime/editor/features/grid/index.vue +38 -0
  1561. package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
  1562. package/dist/runtime/editor/features/grid/types.d.ts +9 -0
  1563. package/dist/runtime/editor/features/grid/types.js +1 -0
  1564. package/dist/runtime/editor/features/help/Dialog/index.d.vue.ts +7 -0
  1565. package/dist/runtime/editor/features/help/Dialog/index.vue +57 -0
  1566. package/dist/runtime/editor/features/help/Dialog/index.vue.d.ts +7 -0
  1567. package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
  1568. package/dist/runtime/editor/features/help/Shortcuts/index.vue +119 -0
  1569. package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
  1570. package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
  1571. package/dist/runtime/editor/features/help/index.vue +75 -0
  1572. package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
  1573. package/dist/runtime/editor/features/highlights/Renderer/fragment.glsl +89 -0
  1574. package/dist/runtime/editor/features/highlights/Renderer/index.d.vue.ts +3 -0
  1575. package/dist/runtime/editor/features/highlights/Renderer/index.vue +402 -0
  1576. package/dist/runtime/editor/features/highlights/Renderer/index.vue.d.ts +3 -0
  1577. package/dist/runtime/editor/features/highlights/Renderer/vertex.glsl +87 -0
  1578. package/dist/runtime/editor/features/highlights/index.d.vue.ts +3 -0
  1579. package/dist/runtime/editor/features/highlights/index.vue +20 -0
  1580. package/dist/runtime/editor/features/highlights/index.vue.d.ts +3 -0
  1581. package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
  1582. package/dist/runtime/editor/features/history/List/index.vue +339 -0
  1583. package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
  1584. package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
  1585. package/dist/runtime/editor/features/history/index.vue +151 -0
  1586. package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
  1587. package/dist/runtime/editor/features/history/types.d.ts +13 -0
  1588. package/dist/runtime/editor/features/history/types.js +1 -0
  1589. package/dist/runtime/editor/features/hover/Renderer/fragment.glsl +141 -0
  1590. package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
  1591. package/dist/runtime/editor/features/hover/Renderer/index.vue +541 -0
  1592. package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
  1593. package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +160 -0
  1594. package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
  1595. package/dist/runtime/editor/features/hover/index.vue +28 -0
  1596. package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
  1597. package/dist/runtime/editor/features/import-existing/Dialog/Item.d.vue.ts +5 -0
  1598. package/dist/runtime/editor/features/import-existing/Dialog/Item.vue +42 -0
  1599. package/dist/runtime/editor/features/import-existing/Dialog/Item.vue.d.ts +5 -0
  1600. package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +19 -0
  1601. package/dist/runtime/editor/features/import-existing/Dialog/index.vue +190 -0
  1602. package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +19 -0
  1603. package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
  1604. package/dist/runtime/editor/features/import-existing/index.vue +93 -0
  1605. package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
  1606. package/dist/runtime/editor/features/import-existing/types.d.ts +12 -0
  1607. package/dist/runtime/editor/features/import-existing/types.js +0 -0
  1608. package/dist/runtime/editor/features/library/DialogBrowseLibrary/Item/index.d.vue.ts +10 -0
  1609. package/dist/runtime/editor/features/library/DialogBrowseLibrary/Item/index.vue +21 -0
  1610. package/dist/runtime/editor/features/library/DialogBrowseLibrary/Item/index.vue.d.ts +10 -0
  1611. package/dist/runtime/editor/features/library/DialogBrowseLibrary/index.d.vue.ts +13 -0
  1612. package/dist/runtime/editor/features/library/DialogBrowseLibrary/index.vue +143 -0
  1613. package/dist/runtime/editor/features/library/DialogBrowseLibrary/index.vue.d.ts +13 -0
  1614. package/dist/runtime/editor/features/library/DialogMakeReusable/index.d.vue.ts +13 -0
  1615. package/dist/runtime/editor/features/library/DialogMakeReusable/index.vue +81 -0
  1616. package/dist/runtime/editor/features/library/DialogMakeReusable/index.vue.d.ts +13 -0
  1617. package/dist/runtime/editor/features/library/docs.md +127 -0
  1618. package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
  1619. package/dist/runtime/editor/features/library/index.vue +279 -0
  1620. package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
  1621. package/dist/runtime/editor/features/library/types.d.ts +87 -0
  1622. package/dist/runtime/editor/features/library/types.js +0 -0
  1623. package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
  1624. package/dist/runtime/editor/features/media-library/Library/Item.vue +57 -0
  1625. package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
  1626. package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
  1627. package/dist/runtime/editor/features/media-library/Library/index.vue +187 -0
  1628. package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
  1629. package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
  1630. package/dist/runtime/editor/features/media-library/index.vue +426 -0
  1631. package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
  1632. package/dist/runtime/editor/features/media-library/types.d.ts +87 -0
  1633. package/dist/runtime/editor/features/media-library/types.js +0 -0
  1634. package/dist/runtime/editor/features/multi-select/Renderer/fragment.glsl +77 -0
  1635. package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
  1636. package/dist/runtime/editor/features/multi-select/Renderer/index.vue +301 -0
  1637. package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
  1638. package/dist/runtime/editor/features/multi-select/Renderer/vertex.glsl +207 -0
  1639. package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
  1640. package/dist/runtime/editor/features/multi-select/index.vue +71 -0
  1641. package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
  1642. package/dist/runtime/editor/features/notifications/Item/index.d.vue.ts +4 -0
  1643. package/dist/runtime/editor/features/notifications/Item/index.vue +96 -0
  1644. package/dist/runtime/editor/features/notifications/Item/index.vue.d.ts +4 -0
  1645. package/dist/runtime/editor/features/notifications/List/index.d.vue.ts +11 -0
  1646. package/dist/runtime/editor/features/notifications/List/index.vue +126 -0
  1647. package/dist/runtime/editor/features/notifications/List/index.vue.d.ts +11 -0
  1648. package/dist/runtime/editor/features/notifications/docs.md +12 -0
  1649. package/dist/runtime/editor/features/notifications/index.d.vue.ts +3 -0
  1650. package/dist/runtime/editor/features/notifications/index.vue +123 -0
  1651. package/dist/runtime/editor/features/notifications/index.vue.d.ts +3 -0
  1652. package/dist/runtime/editor/features/notifications/types.d.ts +132 -0
  1653. package/dist/runtime/editor/features/notifications/types.js +20 -0
  1654. package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
  1655. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +53 -0
  1656. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
  1657. package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
  1658. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +127 -0
  1659. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
  1660. package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
  1661. package/dist/runtime/editor/features/options/Form/Color/index.vue +35 -0
  1662. package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
  1663. package/dist/runtime/editor/features/options/Form/ComplexType/index.d.vue.ts +11 -0
  1664. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +40 -0
  1665. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue.d.ts +11 -0
  1666. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
  1667. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue +38 -0
  1668. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
  1669. package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
  1670. package/dist/runtime/editor/features/options/Form/Group.vue +25 -0
  1671. package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
  1672. package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +15 -0
  1673. package/dist/runtime/editor/features/options/Form/Item.vue +167 -0
  1674. package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +15 -0
  1675. package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +19 -0
  1676. package/dist/runtime/editor/features/options/Form/Number/index.vue +126 -0
  1677. package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +19 -0
  1678. package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +43 -0
  1679. package/dist/runtime/editor/features/options/Form/Radios/index.vue +146 -0
  1680. package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +43 -0
  1681. package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
  1682. package/dist/runtime/editor/features/options/Form/Range/index.vue +43 -0
  1683. package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
  1684. package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
  1685. package/dist/runtime/editor/features/options/Form/Text/index.vue +34 -0
  1686. package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
  1687. package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
  1688. package/dist/runtime/editor/features/options/Form/index.vue +357 -0
  1689. package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
  1690. package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
  1691. package/dist/runtime/editor/features/options/index.vue +831 -0
  1692. package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
  1693. package/dist/runtime/editor/features/options/types.d.ts +21 -0
  1694. package/dist/runtime/editor/features/options/types.js +0 -0
  1695. package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +10 -0
  1696. package/dist/runtime/editor/features/ownership/Banner/index.vue +47 -0
  1697. package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +10 -0
  1698. package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
  1699. package/dist/runtime/editor/features/ownership/index.vue +44 -0
  1700. package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
  1701. package/dist/runtime/editor/features/ownership/types.d.ts +14 -0
  1702. package/dist/runtime/editor/features/ownership/types.js +1 -0
  1703. package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
  1704. package/dist/runtime/editor/features/preview/index.vue +41 -0
  1705. package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
  1706. package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
  1707. package/dist/runtime/editor/features/preview-grant/QrCode/index.vue +38 -0
  1708. package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
  1709. package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
  1710. package/dist/runtime/editor/features/preview-grant/index.vue +78 -0
  1711. package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
  1712. package/dist/runtime/editor/features/preview-grant/types.d.ts +11 -0
  1713. package/dist/runtime/editor/features/preview-grant/types.js +1 -0
  1714. package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
  1715. package/dist/runtime/editor/features/proxy-view/index.vue +43 -0
  1716. package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
  1717. package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
  1718. package/dist/runtime/editor/features/publish/Dialog/Item.vue +187 -0
  1719. package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
  1720. package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
  1721. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +69 -0
  1722. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
  1723. package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
  1724. package/dist/runtime/editor/features/publish/Dialog/Summary.vue +94 -0
  1725. package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
  1726. package/dist/runtime/editor/features/publish/Dialog/Violations.d.vue.ts +12 -0
  1727. package/dist/runtime/editor/features/publish/Dialog/Violations.vue +117 -0
  1728. package/dist/runtime/editor/features/publish/Dialog/Violations.vue.d.ts +12 -0
  1729. package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
  1730. package/dist/runtime/editor/features/publish/Dialog/index.vue +627 -0
  1731. package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
  1732. package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
  1733. package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
  1734. package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
  1735. package/dist/runtime/editor/features/publish/index.vue +134 -0
  1736. package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
  1737. package/dist/runtime/editor/features/publish/types.d.ts +109 -0
  1738. package/dist/runtime/editor/features/publish/types.js +0 -0
  1739. package/dist/runtime/editor/features/referenced-entities/List/Item/index.d.vue.ts +4 -0
  1740. package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue +81 -0
  1741. package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue.d.ts +4 -0
  1742. package/dist/runtime/editor/features/referenced-entities/List/index.d.vue.ts +11 -0
  1743. package/dist/runtime/editor/features/referenced-entities/List/index.vue +78 -0
  1744. package/dist/runtime/editor/features/referenced-entities/List/index.vue.d.ts +11 -0
  1745. package/dist/runtime/editor/features/referenced-entities/index.d.vue.ts +3 -0
  1746. package/dist/runtime/editor/features/referenced-entities/index.vue +41 -0
  1747. package/dist/runtime/editor/features/referenced-entities/index.vue.d.ts +3 -0
  1748. package/dist/runtime/editor/features/referenced-entities/types.d.ts +13 -0
  1749. package/dist/runtime/editor/features/referenced-entities/types.js +0 -0
  1750. package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
  1751. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +247 -0
  1752. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
  1753. package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
  1754. package/dist/runtime/editor/features/responsive-preview/index.vue +195 -0
  1755. package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
  1756. package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
  1757. package/dist/runtime/editor/features/revert/index.vue +68 -0
  1758. package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
  1759. package/dist/runtime/editor/features/revert/types.d.ts +9 -0
  1760. package/dist/runtime/editor/features/revert/types.js +1 -0
  1761. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
  1762. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +163 -0
  1763. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
  1764. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
  1765. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +170 -0
  1766. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
  1767. package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
  1768. package/dist/runtime/editor/features/search/Overlay/index.vue +186 -0
  1769. package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
  1770. package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
  1771. package/dist/runtime/editor/features/search/index.vue +579 -0
  1772. package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
  1773. package/dist/runtime/editor/features/search/types.d.ts +88 -0
  1774. package/dist/runtime/editor/features/search/types.js +0 -0
  1775. package/dist/runtime/editor/features/selection/AddButtons/Renderer/fragment.glsl +108 -0
  1776. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +39 -0
  1777. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +651 -0
  1778. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +39 -0
  1779. package/dist/runtime/editor/features/selection/AddButtons/Renderer/vertex.glsl +119 -0
  1780. package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
  1781. package/dist/runtime/editor/features/selection/AddButtons/index.vue +494 -0
  1782. package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
  1783. package/dist/runtime/editor/features/selection/Renderer/fragment.glsl +147 -0
  1784. package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
  1785. package/dist/runtime/editor/features/selection/Renderer/index.vue +298 -0
  1786. package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
  1787. package/dist/runtime/editor/features/selection/Renderer/vertex.glsl +111 -0
  1788. package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
  1789. package/dist/runtime/editor/features/selection/index.vue +355 -0
  1790. package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
  1791. package/dist/runtime/editor/features/selection/types.d.ts +22 -0
  1792. package/dist/runtime/editor/features/selection/types.js +0 -0
  1793. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
  1794. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +149 -0
  1795. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
  1796. package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
  1797. package/dist/runtime/editor/features/settings/Dialog/index.vue +142 -0
  1798. package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
  1799. package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
  1800. package/dist/runtime/editor/features/settings/index.vue +88 -0
  1801. package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
  1802. package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
  1803. package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
  1804. package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
  1805. package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
  1806. package/dist/runtime/editor/features/structure/List/Item/index.vue +133 -0
  1807. package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
  1808. package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
  1809. package/dist/runtime/editor/features/structure/List/index.vue +46 -0
  1810. package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
  1811. package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
  1812. package/dist/runtime/editor/features/structure/index.vue +258 -0
  1813. package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
  1814. package/dist/runtime/editor/features/structure/types.d.ts +11 -0
  1815. package/dist/runtime/editor/features/structure/types.js +0 -0
  1816. package/dist/runtime/editor/features/swap/index.d.vue.ts +3 -0
  1817. package/dist/runtime/editor/features/swap/index.vue +57 -0
  1818. package/dist/runtime/editor/features/swap/index.vue.d.ts +3 -0
  1819. package/dist/runtime/editor/features/swap/types.d.ts +9 -0
  1820. package/dist/runtime/editor/features/swap/types.js +1 -0
  1821. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/Item/index.d.vue.ts +11 -0
  1822. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/Item/index.vue +20 -0
  1823. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/Item/index.vue.d.ts +11 -0
  1824. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/index.d.vue.ts +13 -0
  1825. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/index.vue +122 -0
  1826. package/dist/runtime/editor/features/templates/DialogBrowseTemplates/index.vue.d.ts +13 -0
  1827. package/dist/runtime/editor/features/templates/DialogCreateTemplate/index.d.vue.ts +12 -0
  1828. package/dist/runtime/editor/features/templates/DialogCreateTemplate/index.vue +116 -0
  1829. package/dist/runtime/editor/features/templates/DialogCreateTemplate/index.vue.d.ts +12 -0
  1830. package/dist/runtime/editor/features/templates/DialogManageTemplates/Item.d.vue.ts +8 -0
  1831. package/dist/runtime/editor/features/templates/DialogManageTemplates/Item.vue +152 -0
  1832. package/dist/runtime/editor/features/templates/DialogManageTemplates/Item.vue.d.ts +8 -0
  1833. package/dist/runtime/editor/features/templates/DialogManageTemplates/index.d.vue.ts +7 -0
  1834. package/dist/runtime/editor/features/templates/DialogManageTemplates/index.vue +117 -0
  1835. package/dist/runtime/editor/features/templates/DialogManageTemplates/index.vue.d.ts +7 -0
  1836. package/dist/runtime/editor/features/templates/index.d.vue.ts +3 -0
  1837. package/dist/runtime/editor/features/templates/index.vue +176 -0
  1838. package/dist/runtime/editor/features/templates/index.vue.d.ts +3 -0
  1839. package/dist/runtime/editor/features/templates/types.d.ts +66 -0
  1840. package/dist/runtime/editor/features/templates/types.js +0 -0
  1841. package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
  1842. package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
  1843. package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
  1844. package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
  1845. package/dist/runtime/editor/features/theme/GeneratedCode/index.vue +21 -0
  1846. package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
  1847. package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
  1848. package/dist/runtime/editor/features/theme/index.vue +186 -0
  1849. package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
  1850. package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
  1851. package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue +44 -0
  1852. package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
  1853. package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
  1854. package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
  1855. package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
  1856. package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
  1857. package/dist/runtime/editor/features/tour/Overlay/index.vue +389 -0
  1858. package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
  1859. package/dist/runtime/editor/features/tour/docs.md +0 -0
  1860. package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
  1861. package/dist/runtime/editor/features/tour/index.vue +58 -0
  1862. package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
  1863. package/dist/runtime/editor/features/tour/types.d.ts +6 -0
  1864. package/dist/runtime/editor/features/tour/types.js +0 -0
  1865. package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
  1866. package/dist/runtime/editor/features/transform/Dialog/index.vue +348 -0
  1867. package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
  1868. package/dist/runtime/editor/features/transform/docs.md +67 -0
  1869. package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
  1870. package/dist/runtime/editor/features/transform/index.vue +250 -0
  1871. package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
  1872. package/dist/runtime/editor/features/transform/types.d.ts +107 -0
  1873. package/dist/runtime/editor/features/transform/types.js +0 -0
  1874. package/dist/runtime/editor/features/translations/AutoTranslate/index.d.vue.ts +3 -0
  1875. package/dist/runtime/editor/features/translations/AutoTranslate/index.vue +138 -0
  1876. package/dist/runtime/editor/features/translations/AutoTranslate/index.vue.d.ts +3 -0
  1877. package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +20 -0
  1878. package/dist/runtime/editor/features/translations/Banner/index.vue +184 -0
  1879. package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +20 -0
  1880. package/dist/runtime/editor/features/translations/CsvDialog/Export/index.d.vue.ts +3 -0
  1881. package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue +284 -0
  1882. package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue.d.ts +3 -0
  1883. package/dist/runtime/editor/features/translations/CsvDialog/Import/index.d.vue.ts +10 -0
  1884. package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue +401 -0
  1885. package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue.d.ts +10 -0
  1886. package/dist/runtime/editor/features/translations/CsvDialog/csv.d.ts +22 -0
  1887. package/dist/runtime/editor/features/translations/CsvDialog/csv.js +50 -0
  1888. package/dist/runtime/editor/features/translations/CsvDialog/index.d.vue.ts +10 -0
  1889. package/dist/runtime/editor/features/translations/CsvDialog/index.vue +36 -0
  1890. package/dist/runtime/editor/features/translations/CsvDialog/index.vue.d.ts +10 -0
  1891. package/dist/runtime/editor/features/translations/CsvDialog/po.d.ts +7 -0
  1892. package/dist/runtime/editor/features/translations/CsvDialog/po.js +36 -0
  1893. package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.d.vue.ts +13 -0
  1894. package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.vue +49 -0
  1895. package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.vue.d.ts +13 -0
  1896. package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.d.vue.ts +12 -0
  1897. package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.vue +48 -0
  1898. package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.vue.d.ts +12 -0
  1899. package/dist/runtime/editor/features/translations/LanguageSwitcher/index.d.vue.ts +7 -0
  1900. package/dist/runtime/editor/features/translations/LanguageSwitcher/index.vue +64 -0
  1901. package/dist/runtime/editor/features/translations/LanguageSwitcher/index.vue.d.ts +7 -0
  1902. package/dist/runtime/editor/features/translations/LanguageSwitcher/types.d.ts +8 -0
  1903. package/dist/runtime/editor/features/translations/LanguageSwitcher/types.js +0 -0
  1904. package/dist/runtime/editor/features/translations/SelectionTable/index.d.vue.ts +24 -0
  1905. package/dist/runtime/editor/features/translations/SelectionTable/index.vue +66 -0
  1906. package/dist/runtime/editor/features/translations/SelectionTable/index.vue.d.ts +24 -0
  1907. package/dist/runtime/editor/features/translations/TranslateDialog/index.d.vue.ts +7 -0
  1908. package/dist/runtime/editor/features/translations/TranslateDialog/index.vue +316 -0
  1909. package/dist/runtime/editor/features/translations/TranslateDialog/index.vue.d.ts +7 -0
  1910. package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
  1911. package/dist/runtime/editor/features/translations/index.vue +278 -0
  1912. package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
  1913. package/dist/runtime/editor/features/translations/types.d.ts +63 -0
  1914. package/dist/runtime/editor/features/translations/types.js +0 -0
  1915. package/dist/runtime/editor/features/workspace/Overlay/Item.d.vue.ts +3 -0
  1916. package/dist/runtime/editor/features/workspace/Overlay/Item.vue +41 -0
  1917. package/dist/runtime/editor/features/workspace/Overlay/Item.vue.d.ts +3 -0
  1918. package/dist/runtime/editor/features/workspace/Overlay/index.d.vue.ts +7 -0
  1919. package/dist/runtime/editor/features/workspace/Overlay/index.vue +91 -0
  1920. package/dist/runtime/editor/features/workspace/Overlay/index.vue.d.ts +7 -0
  1921. package/dist/runtime/editor/features/workspace/index.d.vue.ts +3 -0
  1922. package/dist/runtime/editor/features/workspace/index.vue +50 -0
  1923. package/dist/runtime/editor/features/workspace/index.vue.d.ts +3 -0
  1924. package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
  1925. package/dist/runtime/editor/helpers/array/index.js +4 -0
  1926. package/dist/runtime/editor/helpers/bundles/index.d.ts +1 -0
  1927. package/dist/runtime/editor/helpers/bundles/index.js +8 -0
  1928. package/dist/runtime/editor/helpers/clipboardData/index.d.ts +11 -0
  1929. package/dist/runtime/editor/helpers/clipboardData/index.js +157 -0
  1930. package/dist/runtime/editor/helpers/color/index.d.ts +13 -0
  1931. package/dist/runtime/editor/helpers/color/index.js +62 -0
  1932. package/dist/runtime/editor/helpers/date/index.d.ts +1 -0
  1933. package/dist/runtime/editor/helpers/date/index.js +3 -0
  1934. package/dist/runtime/editor/helpers/diff/index.d.ts +110 -0
  1935. package/dist/runtime/editor/helpers/diff/index.js +492 -0
  1936. package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
  1937. package/dist/runtime/editor/helpers/dom/index.js +107 -0
  1938. package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
  1939. package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
  1940. package/dist/runtime/editor/helpers/draggable/index.d.ts +3 -0
  1941. package/dist/runtime/editor/helpers/draggable/index.js +9 -0
  1942. package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
  1943. package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
  1944. package/dist/runtime/editor/helpers/easing/index.d.ts +3 -0
  1945. package/dist/runtime/editor/helpers/easing/index.js +16 -0
  1946. package/dist/runtime/editor/helpers/edit-components/index.d.ts +2 -0
  1947. package/dist/runtime/editor/helpers/edit-components/index.js +10 -0
  1948. package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
  1949. package/dist/runtime/editor/helpers/geometry/index.js +191 -0
  1950. package/dist/runtime/editor/helpers/injections.d.ts +11 -0
  1951. package/dist/runtime/editor/helpers/injections.js +1 -0
  1952. package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
  1953. package/dist/runtime/editor/helpers/math/index.js +10 -0
  1954. package/dist/runtime/editor/helpers/options/index.d.ts +20 -0
  1955. package/dist/runtime/editor/helpers/options/index.js +71 -0
  1956. package/dist/runtime/editor/helpers/string/index.d.ts +8 -0
  1957. package/dist/runtime/editor/helpers/string/index.js +7 -0
  1958. package/dist/runtime/editor/helpers/swap.d.ts +13 -0
  1959. package/dist/runtime/editor/helpers/swap.js +31 -0
  1960. package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
  1961. package/dist/runtime/editor/helpers/uuid/index.js +18 -0
  1962. package/dist/runtime/editor/helpers/vue/index.d.ts +1 -0
  1963. package/dist/runtime/editor/helpers/vue/index.js +10 -0
  1964. package/dist/runtime/editor/helpers/webgl/index.d.ts +50 -0
  1965. package/dist/runtime/editor/helpers/webgl/index.js +346 -0
  1966. package/dist/runtime/editor/icons/svg/arrow-right-thin.svg +3 -0
  1967. package/dist/runtime/editor/icons/svg/artboard.svg +1 -0
  1968. package/dist/runtime/editor/icons/svg/dock-window.svg +1 -0
  1969. package/dist/runtime/editor/icons/svg/duplicate.svg +1 -0
  1970. package/dist/runtime/editor/icons/svg/ghost.svg +1 -0
  1971. package/dist/runtime/editor/icons/svg/loader.svg +1 -0
  1972. package/dist/runtime/editor/icons/svg/logo.svg +5 -0
  1973. package/dist/runtime/editor/icons/svg/reusable-detach.svg +7 -0
  1974. package/dist/runtime/editor/icons/svg/reusable.svg +1 -0
  1975. package/dist/runtime/editor/icons/svg/robot.svg +1 -0
  1976. package/dist/runtime/editor/icons/svg/spinner.svg +15 -0
  1977. package/dist/runtime/editor/icons/svg/star.svg +1 -0
  1978. package/dist/runtime/editor/icons/svg/stars.svg +5 -0
  1979. package/dist/runtime/editor/icons/svg/tiktok.svg +1 -0
  1980. package/dist/runtime/editor/icons/svg/unstar.svg +1 -0
  1981. package/dist/runtime/editor/icons/svg/vimeo.svg +3 -0
  1982. package/dist/runtime/editor/icons/svg/window-maximize.svg +1 -0
  1983. package/dist/runtime/editor/icons/svg/window-minimize.svg +1 -0
  1984. package/dist/runtime/editor/icons/svg/youtube.svg +3 -0
  1985. package/dist/runtime/editor/libraries/fzf.d.ts +3 -0
  1986. package/dist/runtime/editor/libraries/fzf.js +7 -0
  1987. package/dist/runtime/editor/libraries/twgl.d.ts +10 -0
  1988. package/dist/runtime/editor/libraries/twgl.js +14 -0
  1989. package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
  1990. package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
  1991. package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
  1992. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
  1993. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +58 -0
  1994. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
  1995. package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
  1996. package/dist/runtime/editor/plugins/ContextMenu/index.vue +43 -0
  1997. package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
  1998. package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
  1999. package/dist/runtime/editor/plugins/DebugOverlay/index.vue +28 -0
  2000. package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
  2001. package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +111 -0
  2002. package/dist/runtime/editor/plugins/ItemAction/index.vue +130 -0
  2003. package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +111 -0
  2004. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
  2005. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +303 -0
  2006. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
  2007. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +243 -0
  2008. package/dist/runtime/editor/plugins/Sidebar/index.vue +748 -0
  2009. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +243 -0
  2010. package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +100 -0
  2011. package/dist/runtime/editor/plugins/ToolbarButton/index.vue +201 -0
  2012. package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +100 -0
  2013. package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
  2014. package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
  2015. package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
  2016. package/dist/runtime/editor/plugins/index.d.ts +8 -0
  2017. package/dist/runtime/editor/plugins/index.js +16 -0
  2018. package/dist/runtime/editor/providers/adapters.d.ts +33 -0
  2019. package/dist/runtime/editor/providers/adapters.js +88 -0
  2020. package/dist/runtime/editor/providers/analyze.d.ts +44 -0
  2021. package/dist/runtime/editor/providers/analyze.js +84 -0
  2022. package/dist/runtime/editor/providers/animation.d.ts +203 -0
  2023. package/dist/runtime/editor/providers/animation.js +529 -0
  2024. package/dist/runtime/editor/providers/blocks.d.ts +32 -0
  2025. package/dist/runtime/editor/providers/blocks.js +114 -0
  2026. package/dist/runtime/editor/providers/broadcast.d.ts +15 -0
  2027. package/dist/runtime/editor/providers/broadcast.js +26 -0
  2028. package/dist/runtime/editor/providers/cache.d.ts +23 -0
  2029. package/dist/runtime/editor/providers/cache.js +29 -0
  2030. package/dist/runtime/editor/providers/commands.d.ts +41 -0
  2031. package/dist/runtime/editor/providers/commands.js +16 -0
  2032. package/dist/runtime/editor/providers/config.d.ts +10 -0
  2033. package/dist/runtime/editor/providers/config.js +49 -0
  2034. package/dist/runtime/editor/providers/debug.d.ts +126 -0
  2035. package/dist/runtime/editor/providers/debug.js +132 -0
  2036. package/dist/runtime/editor/providers/definition.d.ts +99 -0
  2037. package/dist/runtime/editor/providers/definition.js +134 -0
  2038. package/dist/runtime/editor/providers/directive.d.ts +160 -0
  2039. package/dist/runtime/editor/providers/directive.js +284 -0
  2040. package/dist/runtime/editor/providers/dom.d.ts +240 -0
  2041. package/dist/runtime/editor/providers/dom.js +540 -0
  2042. package/dist/runtime/editor/providers/dragdrop.d.ts +55 -0
  2043. package/dist/runtime/editor/providers/dragdrop.js +37 -0
  2044. package/dist/runtime/editor/providers/element.d.ts +63 -0
  2045. package/dist/runtime/editor/providers/element.js +35 -0
  2046. package/dist/runtime/editor/providers/features.d.ts +57 -0
  2047. package/dist/runtime/editor/providers/features.js +53 -0
  2048. package/dist/runtime/editor/providers/fieldValue.d.ts +82 -0
  2049. package/dist/runtime/editor/providers/fieldValue.js +150 -0
  2050. package/dist/runtime/editor/providers/fields.d.ts +41 -0
  2051. package/dist/runtime/editor/providers/fields.js +99 -0
  2052. package/dist/runtime/editor/providers/icons.d.ts +6 -0
  2053. package/dist/runtime/editor/providers/icons.js +16 -0
  2054. package/dist/runtime/editor/providers/indicators.d.ts +44 -0
  2055. package/dist/runtime/editor/providers/indicators.js +23 -0
  2056. package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
  2057. package/dist/runtime/editor/providers/keyboard.js +104 -0
  2058. package/dist/runtime/editor/providers/permissions.d.ts +27 -0
  2059. package/dist/runtime/editor/providers/permissions.js +105 -0
  2060. package/dist/runtime/editor/providers/plugin.d.ts +108 -0
  2061. package/dist/runtime/editor/providers/plugin.js +82 -0
  2062. package/dist/runtime/editor/providers/readability.d.ts +47 -0
  2063. package/dist/runtime/editor/providers/readability.js +110 -0
  2064. package/dist/runtime/editor/providers/selection.d.ts +89 -0
  2065. package/dist/runtime/editor/providers/selection.js +168 -0
  2066. package/dist/runtime/editor/providers/state.d.ts +262 -0
  2067. package/dist/runtime/editor/providers/state.js +420 -0
  2068. package/dist/runtime/editor/providers/storage.d.ts +64 -0
  2069. package/dist/runtime/editor/providers/storage.js +133 -0
  2070. package/dist/runtime/editor/providers/texts.d.ts +9 -0
  2071. package/dist/runtime/editor/providers/texts.js +53 -0
  2072. package/dist/runtime/editor/providers/theme.d.ts +119 -0
  2073. package/dist/runtime/editor/providers/theme.js +140 -0
  2074. package/dist/runtime/editor/providers/tour.d.ts +49 -0
  2075. package/dist/runtime/editor/providers/tour.js +19 -0
  2076. package/dist/runtime/editor/providers/types.d.ts +181 -0
  2077. package/dist/runtime/editor/providers/types.js +170 -0
  2078. package/dist/runtime/editor/providers/ui.d.ts +471 -0
  2079. package/dist/runtime/editor/providers/ui.js +506 -0
  2080. package/dist/runtime/editor/providers/user.d.ts +20 -0
  2081. package/dist/runtime/editor/providers/user.js +14 -0
  2082. package/dist/runtime/editor/providers/workspaces.d.ts +93 -0
  2083. package/dist/runtime/editor/providers/workspaces.js +76 -0
  2084. package/dist/runtime/editor/translations/de.json +961 -0
  2085. package/dist/runtime/editor/translations/fr.json +168 -0
  2086. package/dist/runtime/editor/translations/gsw_CH.json +961 -0
  2087. package/dist/runtime/editor/translations/it.json +168 -0
  2088. package/dist/runtime/editor/types/actions.d.ts +19 -0
  2089. package/dist/runtime/editor/types/actions.js +0 -0
  2090. package/dist/runtime/editor/types/app.d.ts +80 -0
  2091. package/dist/runtime/editor/types/app.js +0 -0
  2092. package/dist/runtime/editor/types/clipboard.d.ts +53 -0
  2093. package/dist/runtime/editor/types/clipboard.js +23 -0
  2094. package/dist/runtime/editor/types/definitions.d.ts +33 -0
  2095. package/dist/runtime/editor/types/definitions.js +0 -0
  2096. package/dist/runtime/editor/types/draggable.d.ts +10 -0
  2097. package/dist/runtime/editor/types/draggable.js +0 -0
  2098. package/dist/runtime/editor/types/features.d.ts +11 -0
  2099. package/dist/runtime/editor/types/features.js +0 -0
  2100. package/dist/runtime/editor/types/field.d.ts +60 -0
  2101. package/dist/runtime/editor/types/field.js +0 -0
  2102. package/dist/runtime/editor/types/geometry.d.ts +9 -0
  2103. package/dist/runtime/editor/types/geometry.js +0 -0
  2104. package/dist/runtime/editor/types/index.d.ts +1 -0
  2105. package/dist/runtime/editor/types/index.js +0 -0
  2106. package/dist/runtime/editor/types/permissions.d.ts +18 -0
  2107. package/dist/runtime/editor/types/permissions.js +0 -0
  2108. package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
  2109. package/dist/runtime/editor/types/pluginConfig.js +0 -0
  2110. package/dist/runtime/editor/types/selection.d.ts +6 -0
  2111. package/dist/runtime/editor/types/selection.js +0 -0
  2112. package/dist/runtime/editor/types/state.d.ts +93 -0
  2113. package/dist/runtime/editor/types/state.js +0 -0
  2114. package/dist/runtime/editor/types/style.d.ts +29 -0
  2115. package/dist/runtime/editor/types/style.js +0 -0
  2116. package/dist/runtime/editor/types/ui.d.ts +47 -0
  2117. package/dist/runtime/editor/types/ui.js +0 -0
  2118. package/dist/runtime/editor/types/user.d.ts +9 -0
  2119. package/dist/runtime/editor/types/user.js +0 -0
  2120. package/dist/runtime/helpers/colors.d.ts +39 -0
  2121. package/dist/runtime/helpers/colors.js +28 -0
  2122. package/dist/runtime/helpers/imports/index.d.ts +9 -0
  2123. package/dist/runtime/helpers/imports/index.js +62 -0
  2124. package/dist/runtime/helpers/index.d.ts +9 -0
  2125. package/dist/runtime/helpers/index.js +9 -0
  2126. package/dist/runtime/helpers/injections.d.ts +142 -0
  2127. package/dist/runtime/helpers/injections.js +78 -0
  2128. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +48 -0
  2129. package/dist/runtime/helpers/runtimeHelpers/index.js +209 -0
  2130. package/dist/runtime/helpers/tw.d.ts +15 -0
  2131. package/dist/runtime/helpers/tw.js +3 -0
  2132. package/dist/runtime/plugins/blokkliDirectives.d.ts +2 -0
  2133. package/dist/runtime/plugins/blokkliDirectives.js +109 -0
  2134. package/dist/runtime/public/_blokkli-assets/Inter.var.woff2 +0 -0
  2135. package/dist/runtime/public/_blokkli-assets/check.svg +6 -0
  2136. package/dist/runtime/public/_blokkli-assets/loader.svg +1 -0
  2137. package/dist/runtime/types/blockOptions.d.ts +4 -0
  2138. package/dist/runtime/types/blockOptions.js +0 -0
  2139. package/dist/runtime/types/colors.d.ts +11 -0
  2140. package/dist/runtime/types/colors.js +0 -0
  2141. package/dist/runtime/types/definitions.d.ts +138 -0
  2142. package/dist/runtime/types/definitions.js +0 -0
  2143. package/dist/runtime/types/directives.d.ts +1 -0
  2144. package/dist/runtime/types/directives.js +0 -0
  2145. package/dist/runtime/types/field.d.ts +27 -0
  2146. package/dist/runtime/types/field.js +0 -0
  2147. package/dist/runtime/types/index.d.ts +15 -0
  2148. package/dist/runtime/types/index.js +1 -0
  2149. package/dist/runtime/types/provider.d.ts +7 -0
  2150. package/dist/runtime/types/provider.js +0 -0
  2151. package/dist/runtime/types/vue.d.ts +1 -0
  2152. package/dist/runtime/types/vue.js +0 -0
  2153. package/dist/shared/editor.6D5vApr0.mjs +30 -0
  2154. package/dist/shared/editor.D28NbXr3.d.mts +664 -0
  2155. package/dist/shared/editor.Gu7mgJ5Q.mjs +320 -0
  2156. package/dist/types.d.mts +9 -0
  2157. package/package.json +298 -0
@@ -0,0 +1,983 @@
1
+ import { z } from "zod";
2
+ import { coerceStringifiedParams } from "../../../shared/toolParams.js";
3
+ import { ToolResult } from "../../../shared/toolResult.js";
4
+ import {
5
+ buildSystemPrompt,
6
+ buildSystemPromptEntries
7
+ } from "../../helpers/agentPrompt.js";
8
+ import { provider, models } from "#blokkli-build/agent-server";
9
+ import { send } from "../../helpers/socket.js";
10
+ import {
11
+ ConversationHistory
12
+ } from "../ConversationHistory/index.js";
13
+ import {
14
+ UserPromptMessage,
15
+ AssistantMessage,
16
+ ToolRelayMessage
17
+ } from "../ConversationMessage/index.js";
18
+ import { resolveSkills } from "../../helpers/skills.js";
19
+ import { classifyError } from "../../helpers/errors.js";
20
+ import { computeStateHash, verifyStateHash } from "../../helpers/security.js";
21
+ import { validateMessages } from "../../helpers/messages.js";
22
+ import { getDefaultModel, createUsageTurn } from "../../helpers/models.js";
23
+ import { buildDefinition, stripSchemaOverhead } from "../../server-tools/index.js";
24
+ import { StreamAccumulator } from "../StreamAccumulator/index.js";
25
+ import loadSkillTool from "../../server-tools/load_skills/index.js";
26
+ import loadToolsTool from "../../server-tools/load_tools/index.js";
27
+ import createPlanTool from "../../server-tools/create_plan/index.js";
28
+ import completePlanStepTool from "../../server-tools/complete_plan_step/index.js";
29
+ const serverTools = [
30
+ loadSkillTool,
31
+ loadToolsTool,
32
+ createPlanTool,
33
+ completePlanStepTool
34
+ ];
35
+ export class Session {
36
+ /** The single, immutable source of truth for the conversation. */
37
+ history = new ConversationHistory();
38
+ pendingToolCalls = /* @__PURE__ */ new Map();
39
+ abortController = null;
40
+ isProcessing = false;
41
+ /** Names of eager tools sent to the LLM on every turn */
42
+ toolNames = [];
43
+ /** Names of lazy tools held back until activated via load_tools */
44
+ lazyToolNames = [];
45
+ /** Names of lazy tools that have been activated via load_tools */
46
+ activatedLazyTools = /* @__PURE__ */ new Set();
47
+ /** Names of skills that have been loaded via load_skills */
48
+ loadedSkills = /* @__PURE__ */ new Set();
49
+ /** Page context received from client on init */
50
+ pageContext;
51
+ /** Current plan (null when no plan is active) */
52
+ plan = null;
53
+ /** Whether any real work (non-server tool calls) happened since the last plan step started */
54
+ planStepHasWork = false;
55
+ /** Pending plan approval promise resolver */
56
+ pendingPlanApproval = null;
57
+ /** Last generic tool definitions for transcript */
58
+ lastTools = [];
59
+ /** Last raw request payload for transcript (dev only) */
60
+ lastDebugPayload = null;
61
+ /** Bundled tool metadata map for server-side resolution */
62
+ bundledToolMap;
63
+ /** Cache for resolved JSON Schemas (Zod→JSON Schema is deterministic) */
64
+ jsonSchemaCache = /* @__PURE__ */ new Map();
65
+ constructor(toolDefinitions) {
66
+ this.bundledToolMap = new Map(toolDefinitions.map((t) => [t.name, t]));
67
+ }
68
+ /**
69
+ * Resolve a single tool name into a ClientToolDefinition.
70
+ * Resolves from bundled metadata. Caches the JSON Schema conversion.
71
+ */
72
+ resolveToolDefinition(name) {
73
+ const bundled = this.bundledToolMap.get(name);
74
+ if (!bundled) return void 0;
75
+ let inputSchema = this.jsonSchemaCache.get(name);
76
+ if (!inputSchema) {
77
+ inputSchema = stripSchemaOverhead(
78
+ z.toJSONSchema(bundled.paramsSchema)
79
+ );
80
+ this.jsonSchemaCache.set(name, inputSchema);
81
+ }
82
+ return {
83
+ name: bundled.name,
84
+ description: bundled.description,
85
+ input_schema: inputSchema,
86
+ ...bundled.lazy ? { lazy: true } : {},
87
+ category: bundled.category,
88
+ ...bundled.volatile ? { volatile: true } : {}
89
+ };
90
+ }
91
+ /**
92
+ * Resolve multiple tool names into ClientToolDefinition objects.
93
+ * Skips names that cannot be resolved.
94
+ */
95
+ resolveToolDefinitions(names) {
96
+ const result = [];
97
+ for (const name of names) {
98
+ const def = this.resolveToolDefinition(name);
99
+ if (def) {
100
+ result.push(def);
101
+ }
102
+ }
103
+ return result;
104
+ }
105
+ /**
106
+ * Look up name + description for a tool.
107
+ */
108
+ getToolSummary(name) {
109
+ const bundled = this.bundledToolMap.get(name);
110
+ if (!bundled) return void 0;
111
+ return { name: bundled.name, description: bundled.description };
112
+ }
113
+ // --------------------------------------------------------------------------
114
+ // Public methods
115
+ // --------------------------------------------------------------------------
116
+ init(toolNames, pageContext) {
117
+ this.toolNames = [];
118
+ this.lazyToolNames = [];
119
+ for (const name of toolNames) {
120
+ const bundled = this.bundledToolMap.get(name);
121
+ const isLazy = bundled?.lazy ?? false;
122
+ if (isLazy) {
123
+ this.lazyToolNames.push(name);
124
+ } else {
125
+ this.toolNames.push(name);
126
+ }
127
+ }
128
+ this.activatedLazyTools = /* @__PURE__ */ new Set();
129
+ this.loadedSkills = /* @__PURE__ */ new Set();
130
+ this.pageContext = pageContext;
131
+ }
132
+ start(peer, prompt, apiKey, authSecret, selectedBlocks, autoLoadTools, autoLoadSkills, preSeededResults, autoExecuteTools, rollbackToUserMessageIndex) {
133
+ if (this.isProcessing) {
134
+ send(peer, {
135
+ type: "error",
136
+ errorType: "bad_request",
137
+ message: "Agent is already processing a request"
138
+ });
139
+ return;
140
+ }
141
+ if (rollbackToUserMessageIndex !== void 0) {
142
+ try {
143
+ this.truncateAtUserMessage(rollbackToUserMessageIndex);
144
+ } catch (e) {
145
+ send(peer, {
146
+ type: "error",
147
+ errorType: "bad_request",
148
+ message: e instanceof Error ? e.message : "Rollback target out of range"
149
+ });
150
+ return;
151
+ }
152
+ }
153
+ this.isProcessing = true;
154
+ this.runAgentLoop(
155
+ peer,
156
+ prompt,
157
+ apiKey,
158
+ authSecret,
159
+ selectedBlocks,
160
+ autoLoadTools,
161
+ autoLoadSkills,
162
+ preSeededResults,
163
+ autoExecuteTools
164
+ );
165
+ }
166
+ /**
167
+ * Remove the Nth real user turn (0-based) and every message after it.
168
+ * "Real user turn" excludes tool-result relays. Throws if the index is
169
+ * out of range — typically because the target turn has been pruned away.
170
+ */
171
+ truncateAtUserMessage(targetIndex) {
172
+ this.history.truncateAtUserTurn(targetIndex);
173
+ this.lastTools = [];
174
+ this.lastDebugPayload = null;
175
+ for (const pending of this.pendingToolCalls.values()) {
176
+ pending.reject(new Error("Rollback cancelled pending tool call"));
177
+ }
178
+ this.pendingToolCalls.clear();
179
+ if (this.pendingPlanApproval) {
180
+ this.pendingPlanApproval.resolve(false);
181
+ this.pendingPlanApproval = null;
182
+ }
183
+ }
184
+ resolveToolResult(callId, result) {
185
+ const pending = this.pendingToolCalls.get(callId);
186
+ if (pending) {
187
+ pending.resolve(result);
188
+ }
189
+ }
190
+ cancel(peer) {
191
+ this.abortController?.abort();
192
+ for (const pending of this.pendingToolCalls.values()) {
193
+ pending.reject(new Error("Cancelled"));
194
+ }
195
+ this.pendingToolCalls.clear();
196
+ if (this.pendingPlanApproval) {
197
+ this.pendingPlanApproval.resolve(false);
198
+ this.pendingPlanApproval = null;
199
+ }
200
+ send(peer, { type: "done" });
201
+ }
202
+ acceptChanges(peer, authSecret) {
203
+ this.safePushUserMessage(`[System: Changes accepted and applied.]`);
204
+ send(peer, { type: "done", message: "Changes accepted" });
205
+ this.sendConversationState(peer, authSecret);
206
+ }
207
+ rejectChanges(peer, authSecret) {
208
+ this.safePushUserMessage(
209
+ `[System: Changes rejected. All pending changes have been reverted. The page is back to its previous state.]`
210
+ );
211
+ send(peer, { type: "done", message: "Changes rejected" });
212
+ this.sendConversationState(peer, authSecret);
213
+ }
214
+ approvePlan() {
215
+ if (this.pendingPlanApproval) {
216
+ this.pendingPlanApproval.resolve(true);
217
+ this.pendingPlanApproval = null;
218
+ }
219
+ }
220
+ rejectPlan() {
221
+ if (this.pendingPlanApproval) {
222
+ this.pendingPlanApproval.resolve(false);
223
+ this.pendingPlanApproval = null;
224
+ }
225
+ }
226
+ getTranscript(peer) {
227
+ send(peer, {
228
+ type: "transcript",
229
+ transcript: this.buildTranscript()
230
+ });
231
+ }
232
+ newConversation(peer, authSecret) {
233
+ this.abortController?.abort();
234
+ for (const pending of this.pendingToolCalls.values()) {
235
+ pending.reject(new Error("Cancelled"));
236
+ }
237
+ this.pendingToolCalls.clear();
238
+ this.history.clear();
239
+ this.lastTools = [];
240
+ this.lastDebugPayload = null;
241
+ this.activatedLazyTools.clear();
242
+ this.loadedSkills.clear();
243
+ this.plan = null;
244
+ if (this.pendingPlanApproval) {
245
+ this.pendingPlanApproval.resolve(false);
246
+ this.pendingPlanApproval = null;
247
+ }
248
+ send(peer, { type: "done" });
249
+ this.sendConversationState(peer, authSecret);
250
+ }
251
+ cleanup() {
252
+ this.abortController?.abort();
253
+ for (const pending of this.pendingToolCalls.values()) {
254
+ pending.reject(new Error("Session closed"));
255
+ }
256
+ this.pendingToolCalls.clear();
257
+ if (this.pendingPlanApproval) {
258
+ this.pendingPlanApproval.resolve(false);
259
+ this.pendingPlanApproval = null;
260
+ }
261
+ this.plan = null;
262
+ this.history.clear();
263
+ this.toolNames = [];
264
+ this.lazyToolNames = [];
265
+ this.activatedLazyTools.clear();
266
+ this.loadedSkills.clear();
267
+ this.pageContext = void 0;
268
+ }
269
+ /**
270
+ * Build a persistence snapshot and send it to the client.
271
+ */
272
+ sendConversationState(peer, authSecret) {
273
+ const state = this.getConversationStateForPersistence(authSecret);
274
+ send(peer, { type: "conversation_state", state });
275
+ }
276
+ /**
277
+ * Create an aggressively pruned snapshot of the current conversation
278
+ * for client-side persistence.
279
+ */
280
+ getConversationStateForPersistence(authSecret) {
281
+ const prunedMessages = this.history.projectForPersistence();
282
+ const activatedLazyTools = Array.from(this.activatedLazyTools);
283
+ const hash = computeStateHash(
284
+ prunedMessages,
285
+ activatedLazyTools,
286
+ authSecret
287
+ );
288
+ return {
289
+ messages: prunedMessages,
290
+ activatedLazyTools,
291
+ hash
292
+ };
293
+ }
294
+ /**
295
+ * Restore conversation state from a client-provided snapshot.
296
+ * Verifies HMAC integrity before loading.
297
+ */
298
+ restoreConversation(state, authSecret) {
299
+ if (!verifyStateHash(state, authSecret)) {
300
+ return { success: false, reason: "Invalid state hash" };
301
+ }
302
+ const issues = validateMessages(state.messages);
303
+ if (issues.length > 0) {
304
+ return { success: false, reason: "Invalid message structure" };
305
+ }
306
+ this.history.replaceAll(state.messages);
307
+ this.lastTools = [];
308
+ const validLazyToolNames = new Set(this.lazyToolNames);
309
+ this.activatedLazyTools = new Set(
310
+ state.activatedLazyTools.filter((name) => validLazyToolNames.has(name))
311
+ );
312
+ this.plan = null;
313
+ return { success: true };
314
+ }
315
+ // --------------------------------------------------------------------------
316
+ // Private methods
317
+ // --------------------------------------------------------------------------
318
+ /**
319
+ * Convert the server plan to a client-facing plan (strips descriptions).
320
+ */
321
+ toClientPlan() {
322
+ if (!this.plan) return null;
323
+ return {
324
+ title: this.plan.title,
325
+ steps: this.plan.steps.map(
326
+ (s) => ({
327
+ label: s.label,
328
+ status: s.status
329
+ })
330
+ )
331
+ };
332
+ }
333
+ /**
334
+ * Build an ActivePlanContext from the current plan state,
335
+ * or undefined if no plan step is in progress.
336
+ */
337
+ getActivePlanContext() {
338
+ const currentStep = this.plan?.steps.find((s) => s.status === "in_progress");
339
+ if (!this.plan || !currentStep) return void 0;
340
+ return {
341
+ title: this.plan.title,
342
+ totalSteps: this.plan.steps.length,
343
+ completedSteps: this.plan.steps.filter((s) => s.status === "completed").length,
344
+ currentStep: {
345
+ label: currentStep.label,
346
+ description: currentStep.description
347
+ },
348
+ remainingSteps: this.plan.steps.filter((s) => s.status === "pending").map((s) => s.label)
349
+ };
350
+ }
351
+ /**
352
+ * Wait for the user to approve or reject the plan.
353
+ */
354
+ waitForPlanApproval() {
355
+ return new Promise((resolve) => {
356
+ this.pendingPlanApproval = { resolve };
357
+ });
358
+ }
359
+ async runAgentLoop(peer, prompt, apiKey, authSecret, selectedBlocks, autoLoadTools, autoLoadSkills, preSeededResults, autoExecuteTools) {
360
+ if (this.toolNames.length === 0) {
361
+ this.isProcessing = false;
362
+ send(peer, {
363
+ type: "error",
364
+ errorType: "bad_request",
365
+ message: "No tools available. Client must send init message with tools first."
366
+ });
367
+ return;
368
+ }
369
+ if (!this.pageContext) {
370
+ this.isProcessing = false;
371
+ send(peer, {
372
+ type: "error",
373
+ errorType: "bad_request",
374
+ message: "No page context available. Client must send init message with pageContext first."
375
+ });
376
+ return;
377
+ }
378
+ const resolvedSkills = resolveSkills(this.pageContext);
379
+ if (autoLoadTools?.length) {
380
+ for (const name of autoLoadTools) {
381
+ if (this.lazyToolNames.includes(name) && !this.activatedLazyTools.has(name)) {
382
+ this.activatedLazyTools.add(name);
383
+ }
384
+ }
385
+ }
386
+ const autoLoadedSkillBlocks = [];
387
+ if (autoLoadSkills?.length) {
388
+ for (const skillName of autoLoadSkills) {
389
+ const skill = resolvedSkills.find((s) => s.name === skillName);
390
+ if (!skill || this.loadedSkills.has(skill.name)) continue;
391
+ this.loadedSkills.add(skill.name);
392
+ for (const toolName of skill.tools) {
393
+ if (this.lazyToolNames.includes(toolName) && !this.activatedLazyTools.has(toolName)) {
394
+ this.activatedLazyTools.add(toolName);
395
+ }
396
+ }
397
+ autoLoadedSkillBlocks.push({
398
+ type: "skill",
399
+ name: skill.name,
400
+ text: `# Skill: ${skill.name}
401
+
402
+ ${skill.content}`
403
+ });
404
+ }
405
+ }
406
+ const userParts = [];
407
+ if (selectedBlocks?.length) {
408
+ const formatted = selectedBlocks.map((b) => `${b.bundle} (${b.uuid})`).join(", ");
409
+ userParts.push(
410
+ selectedBlocks.length === 1 ? `[User has selected one block: ${formatted}]` : `[User has selected: ${formatted}]`
411
+ );
412
+ }
413
+ userParts.push(prompt);
414
+ const userMessage = autoLoadedSkillBlocks.length > 0 ? new UserPromptMessage([
415
+ ...autoLoadedSkillBlocks,
416
+ { type: "text", text: userParts.join("\n\n") }
417
+ ]) : new UserPromptMessage(userParts.join("\n\n"));
418
+ this.history.append(userMessage);
419
+ if (preSeededResults?.length) {
420
+ for (let i = 0; i < preSeededResults.length; i++) {
421
+ const preSeeded = preSeededResults[i];
422
+ const toolUseId = `preseed_${i}`;
423
+ this.pushToolExchange(
424
+ toolUseId,
425
+ preSeeded.toolName,
426
+ preSeeded.params,
427
+ ToolResult.fromWire(JSON.stringify(preSeeded.result))
428
+ );
429
+ }
430
+ }
431
+ let allAutoToolsSkipLlm = false;
432
+ if (autoExecuteTools?.length) {
433
+ let hasErrors = false;
434
+ let allSkip = true;
435
+ for (let i = 0; i < autoExecuteTools.length; i++) {
436
+ const autoTool = autoExecuteTools[i];
437
+ const callId = `auto_${i}`;
438
+ const toolUseId = `auto_tu_${i}`;
439
+ send(peer, {
440
+ type: "tool_call",
441
+ callId,
442
+ tool: autoTool.toolName,
443
+ params: autoTool.params
444
+ });
445
+ try {
446
+ const clientResult = await this.waitForToolResult(callId);
447
+ let result;
448
+ if (clientResult.error) {
449
+ hasErrors = true;
450
+ allSkip = false;
451
+ result = ToolResult.error(clientResult.error);
452
+ } else {
453
+ if (!clientResult.skipLlmResponse) {
454
+ allSkip = false;
455
+ }
456
+ result = ToolResult.fromClientResult(clientResult.result);
457
+ }
458
+ this.pushToolExchange(
459
+ toolUseId,
460
+ autoTool.toolName,
461
+ autoTool.params,
462
+ result
463
+ );
464
+ } catch {
465
+ hasErrors = true;
466
+ allSkip = false;
467
+ this.pushToolExchange(
468
+ toolUseId,
469
+ autoTool.toolName,
470
+ autoTool.params,
471
+ ToolResult.error("Auto-executed tool call was cancelled.")
472
+ );
473
+ }
474
+ }
475
+ allAutoToolsSkipLlm = allSkip && !hasErrors;
476
+ }
477
+ if (allAutoToolsSkipLlm) {
478
+ send(peer, { type: "done" });
479
+ this.sendConversationState(peer, authSecret);
480
+ this.isProcessing = false;
481
+ return;
482
+ }
483
+ this.abortController = new AbortController();
484
+ let toolCallCounter = 0;
485
+ let planRetryCount = 0;
486
+ let streamRetryCount = 0;
487
+ const MAX_STREAM_RETRIES = 1;
488
+ let lastToolCallKey = "";
489
+ let consecutiveIdenticalCalls = 0;
490
+ const MAX_IDENTICAL_CALLS = 2;
491
+ let consecutiveValidationFailures = 0;
492
+ const MAX_HIDDEN_VALIDATION_FAILURES = 2;
493
+ try {
494
+ while (true) {
495
+ if (this.abortController.signal.aborted) {
496
+ break;
497
+ }
498
+ send(peer, { type: "thinking" });
499
+ const accumulator = new StreamAccumulator();
500
+ const assistantContent = accumulator.blocks;
501
+ const toolResults = [];
502
+ const extraBlocks = [];
503
+ let messagesCommittedByPlanTool = false;
504
+ const eagerTools = this.resolveToolDefinitions(this.toolNames);
505
+ const activatedToolNames = this.lazyToolNames.filter(
506
+ (name) => this.activatedLazyTools.has(name)
507
+ );
508
+ const activatedTools = this.resolveToolDefinitions(activatedToolNames);
509
+ const unloadedLazyToolNames = this.lazyToolNames.filter(
510
+ (name) => !this.activatedLazyTools.has(name)
511
+ );
512
+ const unloadedLazyTools = unloadedLazyToolNames.map((name) => this.getToolSummary(name)).filter(
513
+ (s) => s !== void 0
514
+ );
515
+ const defCtx = {
516
+ resolvedSkills,
517
+ plan: this.plan,
518
+ unloadedLazyTools,
519
+ lazyToolNames: this.lazyToolNames
520
+ };
521
+ const serverToolDefs = serverTools.map((t) => buildDefinition(t, defCtx)).filter((d) => d !== null);
522
+ const allTools = [...serverToolDefs, ...eagerTools, ...activatedTools];
523
+ this.lastTools = allTools;
524
+ const lazyToolSummaries = this.lazyToolNames.filter((name) => !this.activatedLazyTools.has(name)).map((name) => this.getToolSummary(name)).filter(
525
+ (s) => s !== void 0
526
+ );
527
+ const systemPrompt = buildSystemPrompt(
528
+ this.pageContext,
529
+ resolvedSkills,
530
+ lazyToolSummaries,
531
+ this.getActivePlanContext(),
532
+ this.loadedSkills
533
+ );
534
+ const stream = provider.createStream(
535
+ {
536
+ apiKey,
537
+ model: getDefaultModel(models)?.name ?? ""
538
+ },
539
+ {
540
+ systemPrompt,
541
+ // Pure projection of the immutable history — recomputed each round
542
+ // from pristine canonical (applies the age + token-budget ceilings
543
+ // and eager volatile-staleness without ever mutating the source).
544
+ messages: this.history.projectForLlm(this.volatileLookup()),
545
+ tools: allTools,
546
+ maxTokens: 4096,
547
+ signal: this.abortController.signal
548
+ }
549
+ );
550
+ try {
551
+ for await (const event of stream) {
552
+ if (this.abortController?.signal.aborted) {
553
+ break;
554
+ }
555
+ switch (event.type) {
556
+ case "debug_request":
557
+ this.lastDebugPayload = event.payload;
558
+ break;
559
+ case "text_start":
560
+ accumulator.startText();
561
+ break;
562
+ case "text_delta": {
563
+ const transformed = accumulator.pushTextDelta(event.text);
564
+ if (transformed !== null) {
565
+ send(peer, { type: "text_delta", content: transformed });
566
+ }
567
+ break;
568
+ }
569
+ case "text_end":
570
+ accumulator.endText();
571
+ break;
572
+ case "tool_use_start":
573
+ accumulator.startToolUse(event.id, event.name);
574
+ break;
575
+ case "tool_use_delta":
576
+ accumulator.pushToolUseDelta(event.partial_json);
577
+ break;
578
+ case "tool_use_end": {
579
+ const finished = accumulator.finishToolUse();
580
+ if (finished) {
581
+ if (!finished.ok) {
582
+ toolResults.push({
583
+ type: "tool_result",
584
+ tool_use_id: finished.id,
585
+ content: JSON.stringify({
586
+ error: "Your tool call produced malformed JSON input. Please try again."
587
+ }),
588
+ is_error: true
589
+ });
590
+ break;
591
+ }
592
+ const { id: toolUseId, name: toolName, input } = finished;
593
+ const inputJson = finished.inputJson;
594
+ const callId = `tc_${toolCallCounter++}`;
595
+ const toolCallKey = toolName + ":" + inputJson;
596
+ if (toolCallKey === lastToolCallKey) {
597
+ consecutiveIdenticalCalls++;
598
+ } else {
599
+ lastToolCallKey = toolCallKey;
600
+ consecutiveIdenticalCalls = 1;
601
+ }
602
+ if (consecutiveIdenticalCalls > MAX_IDENTICAL_CALLS) {
603
+ toolResults.push({
604
+ type: "tool_result",
605
+ tool_use_id: toolUseId,
606
+ content: JSON.stringify({
607
+ error: `You have called "${toolName}" ${consecutiveIdenticalCalls} times in a row with identical parameters and received the same result each time. Stop repeating this call. Use the information you already have or try a different approach.`
608
+ }),
609
+ is_error: true
610
+ });
611
+ break;
612
+ }
613
+ const matchedServerTool = serverTools.find(
614
+ (t) => t.name === toolName
615
+ );
616
+ if (matchedServerTool) {
617
+ const dispatch = await this.dispatchServerTool(
618
+ matchedServerTool,
619
+ {
620
+ toolUseId,
621
+ input,
622
+ defCtx,
623
+ resolvedSkills,
624
+ peer,
625
+ assistantContent
626
+ }
627
+ );
628
+ toolResults.push(...dispatch.toolResults);
629
+ if (dispatch.extraBlocks) {
630
+ extraBlocks.push(...dispatch.extraBlocks);
631
+ }
632
+ if (dispatch.messagesCommitted) {
633
+ messagesCommittedByPlanTool = true;
634
+ }
635
+ break;
636
+ }
637
+ const validation = this.validateClientToolInput(
638
+ toolName,
639
+ input
640
+ );
641
+ if (!validation.ok && consecutiveValidationFailures < MAX_HIDDEN_VALIDATION_FAILURES) {
642
+ consecutiveValidationFailures++;
643
+ toolResults.push({
644
+ type: "tool_result",
645
+ tool_use_id: toolUseId,
646
+ content: JSON.stringify({ error: validation.error }),
647
+ is_error: true
648
+ });
649
+ break;
650
+ }
651
+ consecutiveValidationFailures = 0;
652
+ toolResults.push(
653
+ ...await this.dispatchClientTool({
654
+ toolUseId,
655
+ toolName,
656
+ callId,
657
+ input,
658
+ peer
659
+ })
660
+ );
661
+ }
662
+ break;
663
+ }
664
+ case "reasoning_summary":
665
+ assistantContent.push({
666
+ type: "reasoning",
667
+ id: event.id,
668
+ text: event.text,
669
+ encryptedContent: event.encryptedContent
670
+ });
671
+ break;
672
+ case "message_end": {
673
+ const usage = createUsageTurn(event, getDefaultModel(models));
674
+ if (usage) {
675
+ send(peer, { type: "usage", usage });
676
+ }
677
+ break;
678
+ }
679
+ case "error":
680
+ throw event.error;
681
+ }
682
+ }
683
+ } catch (streamError) {
684
+ const isApiError = typeof streamError.status === "number";
685
+ const isRetryable = !isApiError && toolResults.length === 0;
686
+ if (isRetryable && streamRetryCount < MAX_STREAM_RETRIES) {
687
+ streamRetryCount++;
688
+ console.warn(
689
+ `[blokkli agent] Transient stream error, retrying (attempt ${streamRetryCount}/${MAX_STREAM_RETRIES}):`,
690
+ streamError
691
+ );
692
+ continue;
693
+ }
694
+ if (isRetryable && this.history.peekLast() === userMessage) {
695
+ this.history.popLast();
696
+ console.error(
697
+ "[blokkli agent] Transient stream error, retries exhausted:",
698
+ streamError
699
+ );
700
+ const classified = classifyError(streamError);
701
+ send(peer, { type: "error", ...classified, retryable: true });
702
+ break;
703
+ }
704
+ throw streamError;
705
+ }
706
+ if (this.abortController?.signal.aborted) {
707
+ break;
708
+ }
709
+ if (messagesCommittedByPlanTool) {
710
+ this.planStepHasWork = false;
711
+ continue;
712
+ }
713
+ let assistantNames;
714
+ if (assistantContent.length) {
715
+ const assistant = new AssistantMessage([...assistantContent]);
716
+ assistantNames = assistant.toolUseNames();
717
+ this.history.append(assistant);
718
+ }
719
+ if (toolResults.length) {
720
+ const relay = ToolRelayMessage.fromWire({
721
+ role: "user",
722
+ content: [...toolResults, ...extraBlocks]
723
+ }).withResolvedNames((id) => assistantNames?.get(id));
724
+ this.history.append(relay);
725
+ planRetryCount = 0;
726
+ streamRetryCount = 0;
727
+ }
728
+ if (toolResults.length === 0) {
729
+ const hasActivePlan = this.plan && this.plan.steps.some((s) => s.status === "in_progress");
730
+ if (hasActivePlan && planRetryCount < 2) {
731
+ planRetryCount++;
732
+ this.safePushUserMessage("[Continue with the plan.]");
733
+ continue;
734
+ }
735
+ const finalMessage = assistantContent.filter(
736
+ (c) => c.type === "text"
737
+ ).map((t) => t.text).join("\n").trim();
738
+ send(peer, { type: "done", message: finalMessage || void 0 });
739
+ break;
740
+ }
741
+ }
742
+ } catch (error) {
743
+ if (error.name !== "AbortError" && !this.abortController?.signal.aborted) {
744
+ console.error("Agent loop error:", error);
745
+ const classified = classifyError(error);
746
+ send(peer, { type: "error", ...classified });
747
+ }
748
+ } finally {
749
+ this.isProcessing = false;
750
+ this.abortController = null;
751
+ this.sendConversationState(peer, authSecret);
752
+ }
753
+ }
754
+ waitForToolResult(callId) {
755
+ return new Promise((resolve, reject) => {
756
+ this.pendingToolCalls.set(callId, {
757
+ resolve: (result) => {
758
+ this.pendingToolCalls.delete(callId);
759
+ resolve(result);
760
+ },
761
+ reject: (error) => {
762
+ this.pendingToolCalls.delete(callId);
763
+ reject(error);
764
+ }
765
+ });
766
+ });
767
+ }
768
+ /**
769
+ * Build the context object passed to a server-side tool handler. `assistantContent`
770
+ * is the live block array for the current turn — `commitMessagesEarly` flushes and
771
+ * resets it in place, so it must be the same reference the stream loop appends to.
772
+ */
773
+ buildServerToolContext(args) {
774
+ const { toolUseId, peer, resolvedSkills, assistantContent } = args;
775
+ return {
776
+ toolUseId,
777
+ send: (msg) => send(peer, msg),
778
+ resolvedSkills,
779
+ lazyToolNames: this.lazyToolNames,
780
+ activatedLazyTools: this.activatedLazyTools,
781
+ loadedSkills: this.loadedSkills,
782
+ plan: this.plan,
783
+ setPlan: (p) => {
784
+ this.plan = p;
785
+ },
786
+ toClientPlan: () => this.toClientPlan(),
787
+ waitForPlanApproval: () => this.waitForPlanApproval(),
788
+ assistantContent,
789
+ commitMessagesEarly: (toolResult) => {
790
+ let names;
791
+ if (assistantContent.length) {
792
+ const assistant = new AssistantMessage([...assistantContent]);
793
+ names = assistant.toolUseNames();
794
+ this.history.append(assistant);
795
+ assistantContent.length = 0;
796
+ }
797
+ this.history.append(
798
+ ToolRelayMessage.fromWire({
799
+ role: "user",
800
+ content: [toolResult]
801
+ }).withResolvedNames((id) => names?.get(id))
802
+ );
803
+ },
804
+ updateLastToolResult: (id, content) => {
805
+ this.history.replaceLastResult(id, ToolResult.fromWire(content));
806
+ },
807
+ planStepHasWork: this.planStepHasWork,
808
+ markPlanStepWork: () => {
809
+ this.planStepHasWork = true;
810
+ },
811
+ resetPlanStepWork: () => {
812
+ this.planStepHasWork = false;
813
+ }
814
+ };
815
+ }
816
+ /**
817
+ * Dispatch a server-side tool: reject if unavailable, coerce + validate input,
818
+ * run the handler. Returns the blocks to merge into the turn's results.
819
+ */
820
+ async dispatchServerTool(tool, args) {
821
+ const { toolUseId, input, defCtx, resolvedSkills, peer, assistantContent } = args;
822
+ if (tool.isAvailable && !tool.isAvailable(defCtx)) {
823
+ return {
824
+ toolResults: [
825
+ {
826
+ type: "tool_result",
827
+ tool_use_id: toolUseId,
828
+ content: JSON.stringify({
829
+ error: "This tool is not available right now."
830
+ }),
831
+ is_error: true
832
+ }
833
+ ]
834
+ };
835
+ }
836
+ const handlerCtx = this.buildServerToolContext({
837
+ toolUseId,
838
+ peer,
839
+ resolvedSkills,
840
+ assistantContent
841
+ });
842
+ try {
843
+ const parsed = tool.inputSchema(defCtx).parse(coerceStringifiedParams(input));
844
+ const result = await tool.handle(handlerCtx, parsed);
845
+ return {
846
+ toolResults: result.toolResults,
847
+ extraBlocks: result.extraBlocks,
848
+ messagesCommitted: result.messagesCommitted
849
+ };
850
+ } catch (e) {
851
+ return {
852
+ toolResults: [
853
+ {
854
+ type: "tool_result",
855
+ tool_use_id: toolUseId,
856
+ content: JSON.stringify({
857
+ error: `Invalid input: ${e.message}`
858
+ }),
859
+ is_error: true
860
+ }
861
+ ]
862
+ };
863
+ }
864
+ }
865
+ /**
866
+ * Dispatch a client-side tool: send the call to the peer and await its result.
867
+ * An `agentMessage` on the result replaces the `label` in the payload fed back
868
+ * to the LLM (the label is UI-only). Returns the tool_result block(s).
869
+ */
870
+ /**
871
+ * Validate an LLM-generated client tool call against its Zod `paramsSchema`
872
+ * (the same schema the client parses with), server-side, before dispatching
873
+ * to the peer. Returns an error string on a schema failure so the caller can
874
+ * reject it silently. Unknown tools pass through (handled by normal dispatch).
875
+ */
876
+ validateClientToolInput(toolName, input) {
877
+ const bundled = this.bundledToolMap.get(toolName);
878
+ if (!bundled) return { ok: true };
879
+ const parsed = bundled.paramsSchema.safeParse(
880
+ coerceStringifiedParams(input)
881
+ );
882
+ if (parsed.success) return { ok: true };
883
+ return {
884
+ ok: false,
885
+ error: `Invalid input: ${z.prettifyError(parsed.error)}`
886
+ };
887
+ }
888
+ async dispatchClientTool(args) {
889
+ const { toolUseId, toolName, callId, input, peer } = args;
890
+ send(peer, {
891
+ type: "tool_call",
892
+ callId,
893
+ tool: toolName,
894
+ params: input
895
+ });
896
+ try {
897
+ const clientResult = await this.waitForToolResult(callId);
898
+ if (clientResult.error) {
899
+ return [
900
+ {
901
+ type: "tool_result",
902
+ tool_use_id: toolUseId,
903
+ content: JSON.stringify({ error: clientResult.error }),
904
+ is_error: true
905
+ }
906
+ ];
907
+ }
908
+ let resultForLLM = clientResult.result;
909
+ if (typeof resultForLLM === "object" && resultForLLM !== null && "agentMessage" in resultForLLM) {
910
+ const { agentMessage, ...rest } = resultForLLM;
911
+ resultForLLM = { ...rest, label: agentMessage };
912
+ }
913
+ this.planStepHasWork = true;
914
+ return [
915
+ {
916
+ type: "tool_result",
917
+ tool_use_id: toolUseId,
918
+ content: JSON.stringify(resultForLLM)
919
+ }
920
+ ];
921
+ } catch (error) {
922
+ return [
923
+ {
924
+ type: "tool_result",
925
+ tool_use_id: toolUseId,
926
+ content: JSON.stringify({ error: error.message }),
927
+ is_error: true
928
+ }
929
+ ];
930
+ }
931
+ }
932
+ /**
933
+ * Append a synthetic assistant `tool_use` + user `tool_result` message pair —
934
+ * the shape used to inject pre-seeded results and to record auto-executed tool
935
+ * calls before the LLM loop starts.
936
+ */
937
+ pushToolExchange(toolUseId, toolName, input, result) {
938
+ this.history.appendToolExchange(
939
+ new AssistantMessage([
940
+ { type: "tool_use", id: toolUseId, name: toolName, input }
941
+ ]),
942
+ new ToolRelayMessage([{ toolUseId, toolName, result }])
943
+ );
944
+ }
945
+ /**
946
+ * Safely push a user message, merging with the last message if it's also a
947
+ * user message — the LLM API rejects consecutive same-role messages.
948
+ */
949
+ safePushUserMessage(text) {
950
+ this.history.mergeOrAppendUserText(text);
951
+ }
952
+ /**
953
+ * Whether a tool's results go stale after a mutation — used by the live
954
+ * projection's eager volatile eviction. Volatility is a property of the tool
955
+ * definition, so it holds regardless of the current tool set.
956
+ */
957
+ volatileLookup() {
958
+ return (name) => !!(name && this.bundledToolMap.get(name)?.volatile);
959
+ }
960
+ buildTranscript() {
961
+ const system = this.pageContext ? buildSystemPromptEntries(
962
+ this.pageContext,
963
+ resolveSkills(this.pageContext),
964
+ this.lazyToolNames.map((name) => this.getToolSummary(name)).filter(
965
+ (s) => s !== void 0
966
+ ),
967
+ this.getActivePlanContext(),
968
+ this.loadedSkills
969
+ ) : [];
970
+ const messages = this.history.buildTranscriptMessages(this.volatileLookup());
971
+ const tools = this.lastTools.map((t) => ({
972
+ name: t.name,
973
+ description: t.description,
974
+ input_schema: t.input_schema
975
+ }));
976
+ return {
977
+ system,
978
+ messages,
979
+ tools,
980
+ ...this.lastDebugPayload ? { lastRequest: this.lastDebugPayload } : {}
981
+ };
982
+ }
983
+ }