@blokkli/editor 2.0.0-alpha.5 → 2.0.0-alpha.50

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 (2103) hide show
  1. package/dist/chunks/tailwindConfig.mjs +222 -0
  2. package/dist/global/constants/index.d.ts +7 -0
  3. package/dist/global/constants/index.js +11 -0
  4. package/dist/global/types/adapter.d.ts +6 -0
  5. package/dist/global/types/blockOptions.d.ts +372 -0
  6. package/dist/global/types/definitions.d.ts +285 -0
  7. package/dist/global/types/features.d.ts +91 -0
  8. package/dist/global/types/theme.d.ts +34 -0
  9. package/dist/module.d.mts +8 -12
  10. package/dist/module.json +5 -5
  11. package/dist/module.mjs +1625 -5702
  12. package/dist/modules/agent/index.d.mts +72 -0
  13. package/dist/modules/agent/index.mjs +764 -0
  14. package/dist/modules/agent/runtime/app/composables/agentProvider.d.ts +61 -0
  15. package/dist/modules/agent/runtime/app/composables/agentProvider.js +1040 -0
  16. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.d.ts +32 -0
  17. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.js +6 -0
  18. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.d.ts +47 -0
  19. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.js +3 -0
  20. package/dist/modules/agent/runtime/app/composables/index.d.ts +4 -0
  21. package/dist/modules/agent/runtime/app/composables/index.js +2 -0
  22. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.d.vue.ts +6 -0
  23. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.vue +9 -0
  24. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.vue.d.ts +6 -0
  25. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.d.vue.ts +6 -0
  26. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.vue +31 -0
  27. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.vue.d.ts +6 -0
  28. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.d.vue.ts +6 -0
  29. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.vue +12 -0
  30. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.vue.d.ts +6 -0
  31. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.d.vue.ts +6 -0
  32. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.vue +17 -0
  33. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.vue.d.ts +6 -0
  34. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.d.vue.ts +12 -0
  35. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue +92 -0
  36. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue.d.ts +12 -0
  37. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.d.vue.ts +9 -0
  38. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue +38 -0
  39. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue.d.ts +9 -0
  40. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.d.vue.ts +14 -0
  41. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue +68 -0
  42. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue.d.ts +14 -0
  43. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.d.vue.ts +10 -0
  44. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue +74 -0
  45. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue.d.ts +10 -0
  46. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.d.vue.ts +16 -0
  47. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue +61 -0
  48. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue.d.ts +16 -0
  49. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.d.vue.ts +8 -0
  50. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue +17 -0
  51. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue.d.ts +8 -0
  52. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.d.vue.ts +11 -0
  53. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue +28 -0
  54. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue.d.ts +11 -0
  55. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.d.vue.ts +13 -0
  56. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue +46 -0
  57. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue.d.ts +13 -0
  58. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.d.vue.ts +3 -0
  59. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue +14 -0
  60. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue.d.ts +3 -0
  61. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.d.vue.ts +14 -0
  62. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue +49 -0
  63. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue.d.ts +14 -0
  64. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.d.vue.ts +15 -0
  65. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue +50 -0
  66. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue.d.ts +15 -0
  67. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.d.vue.ts +3 -0
  68. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue +161 -0
  69. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue.d.ts +3 -0
  70. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.d.vue.ts +17 -0
  71. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue +230 -0
  72. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue.d.ts +17 -0
  73. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.d.vue.ts +7 -0
  74. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue +67 -0
  75. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue.d.ts +7 -0
  76. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.d.vue.ts +24 -0
  77. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +90 -0
  78. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue.d.ts +24 -0
  79. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.d.vue.ts +47 -0
  80. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +115 -0
  81. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue.d.ts +47 -0
  82. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.d.vue.ts +15 -0
  83. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue +47 -0
  84. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue.d.ts +15 -0
  85. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.d.vue.ts +14 -0
  86. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue +55 -0
  87. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue.d.ts +14 -0
  88. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +25 -0
  89. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +36 -0
  90. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +25 -0
  91. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/de.md +19 -0
  92. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/en.md +18 -0
  93. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.d.vue.ts +10 -0
  94. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue +44 -0
  95. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue.d.ts +10 -0
  96. package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +59 -0
  97. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +295 -0
  98. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +59 -0
  99. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.d.vue.ts +8 -0
  100. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue +171 -0
  101. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue.d.ts +8 -0
  102. package/dist/modules/agent/runtime/app/features/agent/index.d.vue.ts +3 -0
  103. package/dist/modules/agent/runtime/app/features/agent/index.vue +244 -0
  104. package/dist/modules/agent/runtime/app/features/agent/index.vue.d.ts +3 -0
  105. package/dist/modules/agent/runtime/app/features/agent/types.d.ts +54 -0
  106. package/dist/modules/agent/runtime/app/features/agent/types.js +0 -0
  107. package/dist/modules/agent/runtime/app/helpers/index.d.ts +52 -0
  108. package/dist/modules/agent/runtime/app/helpers/index.js +64 -0
  109. package/dist/modules/agent/runtime/app/helpers/pageStructure.d.ts +5 -0
  110. package/dist/modules/agent/runtime/app/helpers/pageStructure.js +96 -0
  111. package/dist/modules/agent/runtime/app/helpers/validation.d.ts +48 -0
  112. package/dist/modules/agent/runtime/app/helpers/validation.js +99 -0
  113. package/dist/modules/agent/runtime/app/prompts/fixReadability.d.ts +2 -0
  114. package/dist/modules/agent/runtime/app/prompts/fixReadability.js +49 -0
  115. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.d.ts +2 -0
  116. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.js +77 -0
  117. package/dist/modules/agent/runtime/app/tools/add_fragment/index.d.ts +2 -0
  118. package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +90 -0
  119. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.d.ts +2 -0
  120. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +70 -0
  121. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +2 -0
  122. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +318 -0
  123. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.d.ts +2 -0
  124. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +84 -0
  125. package/dist/modules/agent/runtime/app/tools/add_template/index.d.ts +2 -0
  126. package/dist/modules/agent/runtime/app/tools/add_template/index.js +59 -0
  127. package/dist/modules/agent/runtime/app/tools/ask_question/Component.d.vue.ts +19 -0
  128. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue +119 -0
  129. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue.d.ts +19 -0
  130. package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +18 -0
  131. package/dist/modules/agent/runtime/app/tools/ask_question/index.js +62 -0
  132. package/dist/modules/agent/runtime/app/tools/check_readability/index.d.ts +2 -0
  133. package/dist/modules/agent/runtime/app/tools/check_readability/index.js +66 -0
  134. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +48 -0
  135. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +744 -0
  136. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +48 -0
  137. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.d.vue.ts +6 -0
  138. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.vue +38 -0
  139. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.vue.d.ts +6 -0
  140. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +38 -0
  141. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +130 -0
  142. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +2 -0
  143. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +60 -0
  144. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +2 -0
  145. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +59 -0
  146. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +2 -0
  147. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +155 -0
  148. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +2 -0
  149. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +180 -0
  150. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +2 -0
  151. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +33 -0
  152. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +2 -0
  153. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +91 -0
  154. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.d.ts +2 -0
  155. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +182 -0
  156. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +2 -0
  157. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +109 -0
  158. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +2 -0
  159. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +189 -0
  160. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +2 -0
  161. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +102 -0
  162. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +2 -0
  163. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +114 -0
  164. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +2 -0
  165. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +270 -0
  166. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +2 -0
  167. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +65 -0
  168. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +2 -0
  169. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +181 -0
  170. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.d.ts +2 -0
  171. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +68 -0
  172. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +2 -0
  173. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +46 -0
  174. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +2 -0
  175. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +54 -0
  176. package/dist/modules/agent/runtime/app/tools/helpers.d.ts +81 -0
  177. package/dist/modules/agent/runtime/app/tools/helpers.js +252 -0
  178. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +2 -0
  179. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +83 -0
  180. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +2 -0
  181. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +107 -0
  182. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +2 -0
  183. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +88 -0
  184. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +2 -0
  185. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +95 -0
  186. package/dist/modules/agent/runtime/app/tools/schemas.d.ts +85 -0
  187. package/dist/modules/agent/runtime/app/tools/schemas.js +68 -0
  188. package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +2 -0
  189. package/dist/modules/agent/runtime/app/tools/search_content/index.js +58 -0
  190. package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +14 -0
  191. package/dist/modules/agent/runtime/app/tools/search_media/index.js +60 -0
  192. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +2 -0
  193. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +75 -0
  194. package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +2 -0
  195. package/dist/modules/agent/runtime/app/tools/search_templates/index.js +51 -0
  196. package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +2 -0
  197. package/dist/modules/agent/runtime/app/tools/search_text/index.js +114 -0
  198. package/dist/modules/agent/runtime/app/tools/select_media/Component.d.vue.ts +29 -0
  199. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +70 -0
  200. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue.d.ts +29 -0
  201. package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +30 -0
  202. package/dist/modules/agent/runtime/app/tools/select_media/index.js +74 -0
  203. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +2 -0
  204. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +116 -0
  205. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +2 -0
  206. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +50 -0
  207. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.d.vue.ts +38 -0
  208. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue +218 -0
  209. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue.d.ts +38 -0
  210. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.d.vue.ts +6 -0
  211. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue +24 -0
  212. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue.d.ts +6 -0
  213. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +25 -0
  214. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +105 -0
  215. package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +2 -0
  216. package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +52 -0
  217. package/dist/modules/agent/runtime/app/types/index.d.ts +447 -0
  218. package/dist/modules/agent/runtime/app/types/index.js +52 -0
  219. package/dist/modules/agent/runtime/server/Session.d.ts +128 -0
  220. package/dist/modules/agent/runtime/server/Session.js +1010 -0
  221. package/dist/modules/agent/runtime/server/SessionManager.d.ts +24 -0
  222. package/dist/modules/agent/runtime/server/SessionManager.js +83 -0
  223. package/dist/modules/agent/runtime/server/agent.d.ts +2 -0
  224. package/dist/modules/agent/runtime/server/agent.js +154 -0
  225. package/dist/modules/agent/runtime/server/agentPrompt.d.ts +30 -0
  226. package/dist/modules/agent/runtime/server/agentPrompt.js +79 -0
  227. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.d.ts +2 -0
  228. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.js +21 -0
  229. package/dist/modules/agent/runtime/server/default-skills/fixReadability.d.ts +2 -0
  230. package/dist/modules/agent/runtime/server/default-skills/fixReadability.js +50 -0
  231. package/dist/modules/agent/runtime/server/default-skills/pageReview.d.ts +2 -0
  232. package/dist/modules/agent/runtime/server/default-skills/pageReview.js +28 -0
  233. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.d.ts +2 -0
  234. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.js +21 -0
  235. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.d.ts +2 -0
  236. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.js +54 -0
  237. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.d.ts +2 -0
  238. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.js +39 -0
  239. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.d.ts +2 -0
  240. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.js +18 -0
  241. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.d.ts +2 -0
  242. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.js +18 -0
  243. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.d.ts +2 -0
  244. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.js +19 -0
  245. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.d.ts +2 -0
  246. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +21 -0
  247. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.d.ts +2 -0
  248. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.js +20 -0
  249. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.d.ts +2 -0
  250. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.js +15 -0
  251. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.d.ts +2 -0
  252. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.js +88 -0
  253. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.d.ts +2 -0
  254. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.js +37 -0
  255. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.d.ts +2 -0
  256. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.js +36 -0
  257. package/dist/modules/agent/runtime/server/default-system-prompts/security.d.ts +2 -0
  258. package/dist/modules/agent/runtime/server/default-system-prompts/security.js +27 -0
  259. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.d.ts +2 -0
  260. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.js +22 -0
  261. package/dist/modules/agent/runtime/server/fetch.d.ts +2 -0
  262. package/dist/modules/agent/runtime/server/fetch.js +127 -0
  263. package/dist/modules/agent/runtime/server/helpers.d.ts +77 -0
  264. package/dist/modules/agent/runtime/server/helpers.js +353 -0
  265. package/dist/modules/agent/runtime/server/providers/anthropic.d.ts +12 -0
  266. package/dist/modules/agent/runtime/server/providers/anthropic.js +132 -0
  267. package/dist/modules/agent/runtime/server/providers/openai.d.ts +12 -0
  268. package/dist/modules/agent/runtime/server/providers/openai.js +321 -0
  269. package/dist/modules/agent/runtime/server/providers/types.d.ts +81 -0
  270. package/dist/modules/agent/runtime/server/providers/types.js +0 -0
  271. package/dist/modules/agent/runtime/server/route.d.ts +2 -0
  272. package/dist/modules/agent/runtime/server/route.js +40 -0
  273. package/dist/modules/agent/runtime/server/routing.d.ts +18 -0
  274. package/dist/modules/agent/runtime/server/routing.js +111 -0
  275. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.d.ts +3 -0
  276. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.js +94 -0
  277. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.d.ts +9 -0
  278. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.js +86 -0
  279. package/dist/modules/agent/runtime/server/server-tools/index.d.ts +100 -0
  280. package/dist/modules/agent/runtime/server/server-tools/index.js +30 -0
  281. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.d.ts +7 -0
  282. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.js +80 -0
  283. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.d.ts +7 -0
  284. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +44 -0
  285. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.d.ts +23 -0
  286. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.js +3 -0
  287. package/dist/modules/agent/runtime/server/skills/index.d.ts +2 -0
  288. package/dist/modules/agent/runtime/server/skills/index.js +1 -0
  289. package/dist/modules/agent/runtime/server/skills/types.d.ts +59 -0
  290. package/dist/modules/agent/runtime/server/skills/types.js +0 -0
  291. package/dist/modules/agent/runtime/server/stream.d.ts +2 -0
  292. package/dist/modules/agent/runtime/server/stream.js +190 -0
  293. package/dist/modules/agent/runtime/server/streamParser.d.ts +85 -0
  294. package/dist/modules/agent/runtime/server/streamParser.js +227 -0
  295. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.d.ts +21 -0
  296. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.js +3 -0
  297. package/dist/modules/agent/runtime/server/system-prompts/helpers.d.ts +20 -0
  298. package/dist/modules/agent/runtime/server/system-prompts/helpers.js +41 -0
  299. package/dist/modules/agent/runtime/server/system-prompts/index.d.ts +2 -0
  300. package/dist/modules/agent/runtime/server/system-prompts/index.js +1 -0
  301. package/dist/modules/agent/runtime/server/system-prompts/types.d.ts +49 -0
  302. package/dist/modules/agent/runtime/server/system-prompts/types.js +0 -0
  303. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.d.ts +21 -0
  304. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.js +3 -0
  305. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.d.ts +26 -0
  306. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.js +84 -0
  307. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.d.ts +6 -0
  308. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.js +29 -0
  309. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.d.ts +5 -0
  310. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.js +14 -0
  311. package/dist/modules/agent/runtime/server/templates/definitions/translate.d.ts +5 -0
  312. package/dist/modules/agent/runtime/server/templates/definitions/translate.js +23 -0
  313. package/dist/modules/agent/runtime/server/templates/index.d.ts +37 -0
  314. package/dist/modules/agent/runtime/server/templates/index.js +25 -0
  315. package/dist/modules/agent/runtime/server/templates/types.d.ts +17 -0
  316. package/dist/modules/agent/runtime/server/templates/types.js +0 -0
  317. package/dist/modules/agent/runtime/server/templates/utils.d.ts +5 -0
  318. package/dist/modules/agent/runtime/server/templates/utils.js +69 -0
  319. package/dist/modules/agent/runtime/shared/placeholders.d.ts +4 -0
  320. package/dist/modules/agent/runtime/shared/placeholders.js +1 -0
  321. package/dist/modules/agent/runtime/shared/types.d.ts +532 -0
  322. package/dist/modules/agent/runtime/shared/types.js +181 -0
  323. package/dist/modules/charts/index.d.mts +35 -0
  324. package/dist/modules/charts/index.mjs +57 -0
  325. package/dist/modules/charts/runtime/blokkli/skills/charts.d.ts +2 -0
  326. package/dist/modules/charts/runtime/blokkli/skills/charts.js +51 -0
  327. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.d.ts +86 -0
  328. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.js +136 -0
  329. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.d.ts +2 -0
  330. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.js +93 -0
  331. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.d.ts +2 -0
  332. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.js +66 -0
  333. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.d.ts +2 -0
  334. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.js +40 -0
  335. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.d.ts +2 -0
  336. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.js +89 -0
  337. package/dist/modules/charts/runtime/chartTypes/area.d.ts +7 -0
  338. package/dist/modules/charts/runtime/chartTypes/area.js +68 -0
  339. package/dist/modules/charts/runtime/chartTypes/bar.d.ts +8 -0
  340. package/dist/modules/charts/runtime/chartTypes/bar.js +76 -0
  341. package/dist/modules/charts/runtime/chartTypes/define.d.ts +2 -0
  342. package/dist/modules/charts/runtime/chartTypes/define.js +3 -0
  343. package/dist/modules/charts/runtime/chartTypes/donut.d.ts +6 -0
  344. package/dist/modules/charts/runtime/chartTypes/donut.js +45 -0
  345. package/dist/modules/charts/runtime/chartTypes/heatmap.d.ts +4 -0
  346. package/dist/modules/charts/runtime/chartTypes/heatmap.js +54 -0
  347. package/dist/modules/charts/runtime/chartTypes/index.d.ts +39 -0
  348. package/dist/modules/charts/runtime/chartTypes/index.js +47 -0
  349. package/dist/modules/charts/runtime/chartTypes/line.d.ts +7 -0
  350. package/dist/modules/charts/runtime/chartTypes/line.js +68 -0
  351. package/dist/modules/charts/runtime/chartTypes/pie.d.ts +5 -0
  352. package/dist/modules/charts/runtime/chartTypes/pie.js +28 -0
  353. package/dist/modules/charts/runtime/chartTypes/radar.d.ts +7 -0
  354. package/dist/modules/charts/runtime/chartTypes/radar.js +52 -0
  355. package/dist/modules/charts/runtime/chartTypes/radialBar.d.ts +6 -0
  356. package/dist/modules/charts/runtime/chartTypes/radialBar.js +44 -0
  357. package/dist/modules/charts/runtime/chartTypes/shared.d.ts +67 -0
  358. package/dist/modules/charts/runtime/chartTypes/shared.js +103 -0
  359. package/dist/modules/charts/runtime/chartTypes/types.d.ts +29 -0
  360. package/dist/modules/charts/runtime/chartTypes/types.js +0 -0
  361. package/dist/modules/charts/runtime/components/ChartRenderer/index.d.vue.ts +147 -0
  362. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +120 -0
  363. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue.d.ts +147 -0
  364. package/dist/modules/charts/runtime/components/index.d.ts +1 -0
  365. package/dist/modules/charts/runtime/components/index.js +1 -0
  366. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.d.vue.ts +16 -0
  367. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue +97 -0
  368. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue.d.ts +16 -0
  369. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.d.vue.ts +11 -0
  370. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +34 -0
  371. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue.d.ts +11 -0
  372. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.d.vue.ts +12 -0
  373. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +49 -0
  374. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue.d.ts +12 -0
  375. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.d.vue.ts +19 -0
  376. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue +89 -0
  377. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue.d.ts +19 -0
  378. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.d.vue.ts +23 -0
  379. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue +224 -0
  380. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue.d.ts +23 -0
  381. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.d.vue.ts +10 -0
  382. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue +61 -0
  383. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue.d.ts +10 -0
  384. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.d.vue.ts +10 -0
  385. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue +45 -0
  386. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue.d.ts +10 -0
  387. package/dist/modules/charts/runtime/features/charts/Editor/index.d.vue.ts +12 -0
  388. package/dist/modules/charts/runtime/features/charts/Editor/index.vue +246 -0
  389. package/dist/modules/charts/runtime/features/charts/Editor/index.vue.d.ts +12 -0
  390. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.d.ts +17 -0
  391. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.js +90 -0
  392. package/dist/modules/charts/runtime/helpers/index.d.ts +26 -0
  393. package/dist/modules/charts/runtime/helpers/index.js +80 -0
  394. package/dist/modules/charts/runtime/types.d.ts +33 -0
  395. package/dist/modules/charts/runtime/types.js +0 -0
  396. package/dist/modules/drupal/graphql/base/fragment.ParagraphsBlokkliConfigInput.graphql +31 -0
  397. package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +2 -1
  398. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +5 -0
  399. package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +4 -1
  400. package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +28 -12
  401. package/dist/modules/drupal/graphql/base/query.pbEntityConfig.graphql +5 -0
  402. package/dist/modules/drupal/graphql/features/agent.graphql +69 -0
  403. package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
  404. package/dist/modules/drupal/graphql/features/fragments.graphql +2 -0
  405. package/dist/modules/drupal/graphql/features/import-existing.graphql +9 -2
  406. package/dist/modules/drupal/graphql/features/library.graphql +9 -2
  407. package/dist/modules/drupal/graphql/features/media-library.graphql +6 -14
  408. package/dist/modules/drupal/graphql/features/publishNew.graphql +4 -4
  409. package/dist/modules/drupal/graphql/features/scheduler.graphql +31 -0
  410. package/dist/modules/drupal/graphql/features/search.graphql +5 -0
  411. package/dist/modules/drupal/graphql/features/templates.graphql +108 -0
  412. package/dist/modules/drupal/graphql/features/transform.graphql +9 -1
  413. package/dist/modules/drupal/graphql/features/transform_host.graphql +38 -0
  414. package/dist/modules/drupal/graphql/mutations/add_file.graphql +2 -0
  415. package/dist/modules/drupal/graphql/mutations/add_image.graphql +2 -0
  416. package/dist/modules/drupal/graphql/mutations/add_multiple.graphql +25 -0
  417. package/dist/modules/drupal/graphql/mutations/add_video_remote.graphql +2 -0
  418. package/dist/modules/drupal/graphql/mutations/bulk_update_field_values.graphql +15 -0
  419. package/dist/modules/drupal/graphql/mutations/rearrange.graphql +23 -0
  420. package/dist/modules/drupal/graphql/mutations/replace_entity_reference.graphql +25 -0
  421. package/dist/modules/drupal/graphql/mutations/set_paragraph_schedule.graphql +15 -0
  422. package/dist/modules/drupal/graphql/mutations/swap.graphql +16 -0
  423. package/dist/modules/drupal/graphql/mutations/update_host_options.graphql +15 -0
  424. package/dist/modules/drupal/index.d.mts +22 -5
  425. package/dist/modules/drupal/index.mjs +135 -20
  426. package/dist/modules/drupal/runtime/adapter/index.d.ts +2 -1
  427. package/dist/modules/drupal/runtime/adapter/index.js +508 -66
  428. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.d.vue.ts +9 -0
  429. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue +26 -0
  430. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue.d.ts +9 -0
  431. package/dist/modules/index.d.mts +7 -0
  432. package/dist/modules/index.mjs +10 -0
  433. package/dist/modules/table-of-contents/index.d.mts +11 -0
  434. package/dist/modules/table-of-contents/index.mjs +24 -0
  435. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.d.vue.ts +44 -0
  436. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue +43 -0
  437. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue.d.ts +44 -0
  438. package/dist/modules/table-of-contents/runtime/types/index.d.ts +4 -0
  439. package/dist/modules/table-of-contents/runtime/types/index.js +0 -0
  440. package/dist/modules/tailwind/index.d.mts +5 -0
  441. package/dist/modules/tailwind/index.mjs +2 -0
  442. package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
  443. package/dist/runtime/components/Blocks/Fragment/index.vue +19 -4
  444. package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +2 -1
  445. package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
  446. package/dist/runtime/components/Blocks/FromLibrary/index.vue +10 -9
  447. package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +3 -2
  448. package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
  449. package/dist/runtime/components/Blocks/NotImplemented/index.vue +24 -0
  450. package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +7 -0
  451. package/dist/runtime/components/BlokkliEditable.d.vue.ts +33 -0
  452. package/dist/runtime/components/BlokkliEditable.vue +50 -18
  453. package/dist/runtime/components/BlokkliEditable.vue.d.ts +16 -3
  454. package/dist/runtime/components/BlokkliField.d.vue.ts +102 -0
  455. package/dist/runtime/components/BlokkliField.vue +42 -51
  456. package/dist/runtime/components/BlokkliField.vue.d.ts +73 -20
  457. package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
  458. package/dist/runtime/components/BlokkliItem.vue +70 -23
  459. package/dist/runtime/components/BlokkliItem.vue.d.ts +12 -7
  460. package/dist/runtime/components/BlokkliProvider.d.vue.ts +84 -0
  461. package/dist/runtime/components/BlokkliProvider.vue +97 -73
  462. package/dist/runtime/components/BlokkliProvider.vue.d.ts +60 -10
  463. package/dist/runtime/composables/defineBlokkli.d.ts +1 -1
  464. package/dist/runtime/composables/defineBlokkli.js +28 -23
  465. package/dist/runtime/composables/defineBlokkliFeature.d.ts +9 -10
  466. package/dist/runtime/composables/defineBlokkliFeature.js +4 -3
  467. package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
  468. package/dist/runtime/composables/defineBlokkliFragment.js +2 -5
  469. package/dist/runtime/composables/defineBlokkliProvider.d.ts +11 -0
  470. package/dist/runtime/composables/defineBlokkliProvider.js +44 -0
  471. package/dist/runtime/composables/useBlokkli.d.ts +7 -2
  472. package/dist/runtime/composables/useBlokkli.js +6 -3
  473. package/dist/runtime/composables/useBlokkliHelper.d.ts +20 -0
  474. package/dist/runtime/composables/useBlokkliHelper.js +91 -0
  475. package/dist/runtime/editor/adapter/index.d.ts +162 -0
  476. package/dist/runtime/editor/adapter/index.js +6 -0
  477. package/dist/runtime/editor/components/Actions/Interactions/index.d.vue.ts +3 -0
  478. package/dist/runtime/editor/components/Actions/Interactions/index.vue +110 -0
  479. package/dist/runtime/editor/components/Actions/Interactions/index.vue.d.ts +3 -0
  480. package/dist/runtime/editor/components/Actions/ItemDropdown.d.vue.ts +7 -0
  481. package/dist/runtime/editor/components/Actions/ItemDropdown.vue +71 -0
  482. package/dist/runtime/editor/components/Actions/ItemDropdown.vue.d.ts +7 -0
  483. package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
  484. package/dist/runtime/editor/components/Actions/index.vue +295 -0
  485. package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
  486. package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +31 -0
  487. package/dist/runtime/editor/components/AddListItem/index.vue +103 -0
  488. package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +31 -0
  489. package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
  490. package/dist/runtime/editor/components/AnimationCanvas/index.vue +496 -0
  491. package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
  492. package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +29 -0
  493. package/dist/runtime/editor/components/AppMenu/MenuButton.vue +39 -0
  494. package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +29 -0
  495. package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
  496. package/dist/runtime/editor/components/AppMenu/index.vue +85 -0
  497. package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
  498. package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +35 -0
  499. package/dist/runtime/editor/components/ArtboardTooltip/index.vue +90 -0
  500. package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +35 -0
  501. package/dist/runtime/editor/components/AutoHeight/index.d.vue.ts +16 -0
  502. package/dist/runtime/editor/components/AutoHeight/index.vue +32 -0
  503. package/dist/runtime/editor/components/AutoHeight/index.vue.d.ts +16 -0
  504. package/dist/runtime/editor/components/Banner/index.d.vue.ts +30 -0
  505. package/dist/runtime/editor/components/Banner/index.vue +53 -0
  506. package/dist/runtime/editor/components/Banner/index.vue.d.ts +30 -0
  507. package/dist/runtime/editor/components/BlockPreviewItem/index.d.vue.ts +18 -0
  508. package/dist/runtime/editor/components/BlockPreviewItem/index.vue +83 -0
  509. package/dist/runtime/editor/components/BlockPreviewItem/index.vue.d.ts +18 -0
  510. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.d.vue.ts +13 -0
  511. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue +50 -0
  512. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue.d.ts +13 -0
  513. package/dist/runtime/editor/components/BlockPreviewRenderer/index.d.vue.ts +11 -0
  514. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +33 -0
  515. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +11 -0
  516. package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
  517. package/dist/runtime/editor/components/BlockProxy/index.vue +88 -0
  518. package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
  519. package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
  520. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
  521. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
  522. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +13 -0
  523. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +96 -0
  524. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +13 -0
  525. package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +23 -0
  526. package/dist/runtime/editor/components/BundleSelector/index.vue +316 -0
  527. package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +23 -0
  528. package/dist/runtime/editor/components/Dialog/index.d.vue.ts +49 -0
  529. package/dist/runtime/editor/components/Dialog/index.vue +134 -0
  530. package/dist/runtime/editor/components/Dialog/index.vue.d.ts +49 -0
  531. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.d.vue.ts +19 -0
  532. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue +106 -0
  533. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue.d.ts +19 -0
  534. package/dist/runtime/editor/components/DiffApproval/Highlight/index.d.vue.ts +22 -0
  535. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +50 -0
  536. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue.d.ts +22 -0
  537. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.d.vue.ts +24 -0
  538. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +113 -0
  539. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue.d.ts +24 -0
  540. package/dist/runtime/editor/components/DiffApproval/index.d.vue.ts +19 -0
  541. package/dist/runtime/editor/components/DiffApproval/index.vue +158 -0
  542. package/dist/runtime/editor/components/DiffApproval/index.vue.d.ts +19 -0
  543. package/dist/runtime/editor/components/DiffApproval/types.d.ts +7 -0
  544. package/dist/runtime/editor/components/DiffApproval/types.js +0 -0
  545. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.d.vue.ts +9 -0
  546. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue +31 -0
  547. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue.d.ts +9 -0
  548. package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +7 -0
  549. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +15 -0
  550. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +7 -0
  551. package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
  552. package/dist/runtime/editor/components/DiffViewer/State.vue +249 -0
  553. package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
  554. package/dist/runtime/editor/components/DraggableList.d.vue.ts +31 -0
  555. package/dist/runtime/editor/components/DraggableList.vue +148 -0
  556. package/dist/runtime/editor/components/DraggableList.vue.d.ts +31 -0
  557. package/dist/runtime/editor/components/Dropdown/index.d.vue.ts +27 -0
  558. package/dist/runtime/editor/components/Dropdown/index.vue +107 -0
  559. package/dist/runtime/editor/components/Dropdown/index.vue.d.ts +27 -0
  560. package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +13 -0
  561. package/dist/runtime/editor/components/DropdownItem/index.vue +16 -0
  562. package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +13 -0
  563. package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
  564. package/dist/runtime/editor/components/EditIndicator.vue +151 -0
  565. package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
  566. package/dist/runtime/editor/components/EditProvider.d.vue.ts +36 -0
  567. package/dist/runtime/editor/components/EditProvider.vue +431 -0
  568. package/dist/runtime/editor/components/EditProvider.vue.d.ts +36 -0
  569. package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
  570. package/dist/runtime/editor/components/FeaturesRenderer/index.vue +80 -0
  571. package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
  572. package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +36 -0
  573. package/dist/runtime/editor/components/FlexTextarea/index.vue +318 -0
  574. package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +36 -0
  575. package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
  576. package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
  577. package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
  578. package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
  579. package/dist/runtime/editor/components/Form/Datepicker/index.vue +198 -0
  580. package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
  581. package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
  582. package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
  583. package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
  584. package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
  585. package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +23 -0
  586. package/dist/runtime/editor/components/Form/Radio/index.vue +34 -0
  587. package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +23 -0
  588. package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
  589. package/dist/runtime/editor/components/Form/RadioTabs/index.vue +37 -0
  590. package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
  591. package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
  592. package/dist/runtime/editor/components/Form/Select/index.vue +29 -0
  593. package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
  594. package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +22 -0
  595. package/dist/runtime/editor/components/Form/Text/index.vue +46 -0
  596. package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +22 -0
  597. package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +22 -0
  598. package/dist/runtime/editor/components/Form/Textarea/index.vue +34 -0
  599. package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +22 -0
  600. package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +27 -0
  601. package/dist/runtime/editor/components/Form/Toggle/index.vue +26 -0
  602. package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +27 -0
  603. package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
  604. package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
  605. package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
  606. package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
  607. package/dist/runtime/editor/components/FormOverlay/index.vue +55 -0
  608. package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
  609. package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
  610. package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
  611. package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
  612. package/dist/runtime/editor/components/Icon/index.vue +35 -0
  613. package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
  614. package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
  615. package/dist/runtime/editor/components/Indicators/index.vue +133 -0
  616. package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
  617. package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +23 -0
  618. package/dist/runtime/editor/components/InfoBox/index.vue +19 -0
  619. package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +23 -0
  620. package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +10 -0
  621. package/dist/runtime/editor/components/ItemIcon/index.vue +45 -0
  622. package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +10 -0
  623. package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
  624. package/dist/runtime/editor/components/ItemIconBox/index.vue +43 -0
  625. package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
  626. package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
  627. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
  628. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
  629. package/dist/runtime/editor/components/Konami/Game/blokkli.png +0 -0
  630. package/dist/runtime/editor/components/Konami/Game/charmap.d.ts +2 -0
  631. package/dist/runtime/editor/components/Konami/Game/charmap.js +168 -0
  632. package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
  633. package/dist/runtime/editor/components/Konami/Game/index.vue +751 -0
  634. package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
  635. package/dist/runtime/editor/components/Konami/Game/textRendering.d.ts +8 -0
  636. package/dist/runtime/editor/components/Konami/Game/textRendering.js +138 -0
  637. package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
  638. package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
  639. package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
  640. package/dist/runtime/editor/components/Konami/index.vue +42 -0
  641. package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
  642. package/dist/runtime/editor/components/Loading/index.d.vue.ts +9 -0
  643. package/dist/runtime/editor/components/Loading/index.vue +22 -0
  644. package/dist/runtime/editor/components/Loading/index.vue.d.ts +9 -0
  645. package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
  646. package/dist/runtime/editor/components/Messages/Item/index.vue +105 -0
  647. package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
  648. package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
  649. package/dist/runtime/editor/components/Messages/index.vue +41 -0
  650. package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
  651. package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +29 -0
  652. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +278 -0
  653. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +29 -0
  654. package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
  655. package/dist/runtime/editor/components/Overlay/index.vue +70 -0
  656. package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
  657. package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
  658. package/dist/runtime/editor/components/Pagination/index.vue +19 -0
  659. package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
  660. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
  661. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
  662. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
  663. package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
  664. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
  665. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
  666. package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
  667. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +43 -0
  668. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
  669. package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
  670. package/dist/runtime/editor/components/PluginConfigForm/index.vue +63 -0
  671. package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
  672. package/dist/runtime/editor/components/Popup/index.d.vue.ts +30 -0
  673. package/dist/runtime/editor/components/Popup/index.vue +82 -0
  674. package/dist/runtime/editor/components/Popup/index.vue.d.ts +30 -0
  675. package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +31 -0
  676. package/dist/runtime/editor/components/PreviewProvider.vue +187 -0
  677. package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +31 -0
  678. package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +17 -0
  679. package/dist/runtime/editor/components/RelativeTime/index.vue +73 -0
  680. package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +17 -0
  681. package/dist/runtime/editor/components/Resizable/index.d.vue.ts +14 -0
  682. package/dist/runtime/editor/components/Resizable/index.vue +83 -0
  683. package/dist/runtime/editor/components/Resizable/index.vue.d.ts +14 -0
  684. package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
  685. package/dist/runtime/editor/components/ScaleToFit/index.vue +70 -0
  686. package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
  687. package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
  688. package/dist/runtime/editor/components/ScheduleDate/index.vue +131 -0
  689. package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
  690. package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
  691. package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
  692. package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
  693. package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
  694. package/dist/runtime/editor/components/ShortcutIndicator/index.vue +79 -0
  695. package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
  696. package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
  697. package/dist/runtime/editor/components/Sortli/index.vue +81 -0
  698. package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
  699. package/dist/runtime/editor/components/StatusIcon/index.d.vue.ts +9 -0
  700. package/dist/runtime/editor/components/StatusIcon/index.vue +31 -0
  701. package/dist/runtime/editor/components/StatusIcon/index.vue.d.ts +9 -0
  702. package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
  703. package/dist/runtime/editor/components/SystemRequirements/index.vue +85 -0
  704. package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
  705. package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
  706. package/dist/runtime/editor/components/Toolbar/index.vue +189 -0
  707. package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
  708. package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
  709. package/dist/runtime/editor/components/Transition/Height.vue +96 -0
  710. package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
  711. package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
  712. package/dist/runtime/editor/components/Transition/index.vue +42 -0
  713. package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
  714. package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
  715. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
  716. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
  717. package/dist/runtime/editor/components/index.d.ts +49 -0
  718. package/dist/runtime/editor/components/index.js +98 -0
  719. package/dist/runtime/editor/composables/addElementClasses.d.ts +2 -0
  720. package/dist/runtime/editor/composables/addElementClasses.js +24 -0
  721. package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
  722. package/dist/runtime/editor/composables/defineAddAction.js +10 -0
  723. package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
  724. package/dist/runtime/editor/composables/defineCommands.js +10 -0
  725. package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
  726. package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
  727. package/dist/runtime/editor/composables/defineDropHandler.d.ts +3 -0
  728. package/dist/runtime/editor/composables/defineDropHandler.js +10 -0
  729. package/dist/runtime/editor/composables/defineElementStyle.d.ts +2 -0
  730. package/dist/runtime/editor/composables/defineElementStyle.js +33 -0
  731. package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
  732. package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
  733. package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
  734. package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
  735. package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
  736. package/dist/runtime/editor/composables/defineRenderer.js +9 -0
  737. package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
  738. package/dist/runtime/editor/composables/defineShortcut.js +18 -0
  739. package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
  740. package/dist/runtime/editor/composables/defineTourItem.js +10 -0
  741. package/dist/runtime/editor/composables/index.d.ts +25 -0
  742. package/dist/runtime/editor/composables/index.js +25 -0
  743. package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
  744. package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
  745. package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
  746. package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
  747. package/dist/runtime/editor/composables/onElementResize.d.ts +3 -0
  748. package/dist/runtime/editor/composables/onElementResize.js +36 -0
  749. package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
  750. package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
  751. package/dist/runtime/editor/composables/useBlockRegistration.d.ts +5 -0
  752. package/dist/runtime/editor/composables/useBlockRegistration.js +41 -0
  753. package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
  754. package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
  755. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
  756. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
  757. package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
  758. package/dist/runtime/editor/composables/useDialog.js +16 -0
  759. package/dist/runtime/editor/composables/useEditableFieldOverride.d.ts +26 -0
  760. package/dist/runtime/editor/composables/useEditableFieldOverride.js +140 -0
  761. package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
  762. package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
  763. package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +16 -0
  764. package/dist/runtime/editor/composables/useGlobalBlokkliObject.js +36 -0
  765. package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
  766. package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
  767. package/dist/runtime/editor/composables/useStickyToolbar.d.ts +24 -0
  768. package/dist/runtime/editor/composables/useStickyToolbar.js +268 -0
  769. package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
  770. package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
  771. package/dist/runtime/editor/css/output.css +1 -0
  772. package/dist/runtime/editor/events/index.d.ts +278 -0
  773. package/dist/runtime/editor/events/index.js +6 -0
  774. package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +15 -0
  775. package/dist/runtime/editor/features/add-list/Actions/Action.vue +60 -0
  776. package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +15 -0
  777. package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +16 -0
  778. package/dist/runtime/editor/features/add-list/Actions/index.vue +61 -0
  779. package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +16 -0
  780. package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +21 -0
  781. package/dist/runtime/editor/features/add-list/Blocks/index.vue +308 -0
  782. package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +21 -0
  783. package/dist/runtime/editor/features/add-list/Help/Item.d.vue.ts +12 -0
  784. package/dist/runtime/editor/features/add-list/Help/Item.vue +189 -0
  785. package/dist/runtime/editor/features/add-list/Help/Item.vue.d.ts +12 -0
  786. package/dist/runtime/editor/features/add-list/Help/index.d.vue.ts +13 -0
  787. package/dist/runtime/editor/features/add-list/Help/index.vue +127 -0
  788. package/dist/runtime/editor/features/add-list/Help/index.vue.d.ts +13 -0
  789. package/dist/runtime/editor/features/add-list/docs.md +4 -0
  790. package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
  791. package/dist/runtime/editor/features/add-list/index.vue +305 -0
  792. package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
  793. package/dist/runtime/editor/features/add-list/types.d.ts +24 -0
  794. package/dist/runtime/editor/features/add-list/types.js +0 -0
  795. package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
  796. package/dist/runtime/editor/features/analyze/Icon.vue +85 -0
  797. package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
  798. package/dist/runtime/editor/features/analyze/Main.d.vue.ts +23 -0
  799. package/dist/runtime/editor/features/analyze/Main.vue +397 -0
  800. package/dist/runtime/editor/features/analyze/Main.vue.d.ts +23 -0
  801. package/dist/runtime/editor/features/analyze/Renderer/fragment.glsl +74 -0
  802. package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +24 -0
  803. package/dist/runtime/editor/features/analyze/Renderer/index.vue +330 -0
  804. package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +24 -0
  805. package/dist/runtime/editor/features/analyze/Renderer/vertex.glsl +94 -0
  806. package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +15 -0
  807. package/dist/runtime/editor/features/analyze/Results/Results.vue +102 -0
  808. package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +15 -0
  809. package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +23 -0
  810. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +56 -0
  811. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +23 -0
  812. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +16 -0
  813. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +80 -0
  814. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +16 -0
  815. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +16 -0
  816. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +123 -0
  817. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +16 -0
  818. package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
  819. package/dist/runtime/editor/features/analyze/Results/Status.vue +18 -0
  820. package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
  821. package/dist/runtime/editor/features/analyze/Summary/Chart.d.vue.ts +18 -0
  822. package/dist/runtime/editor/features/analyze/Summary/Chart.vue +96 -0
  823. package/dist/runtime/editor/features/analyze/Summary/Chart.vue.d.ts +18 -0
  824. package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
  825. package/dist/runtime/editor/features/analyze/Summary/index.vue +77 -0
  826. package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
  827. package/dist/runtime/editor/features/analyze/analyzers/altText.d.ts +2 -0
  828. package/dist/runtime/editor/features/analyze/analyzers/altText.js +60 -0
  829. package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
  830. package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
  831. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.d.ts +4 -0
  832. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.js +5 -0
  833. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.d.ts +2 -0
  834. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +141 -0
  835. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +38 -0
  836. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.js +51 -0
  837. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.d.ts +5 -0
  838. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.js +98 -0
  839. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.d.ts +3 -0
  840. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.js +13 -0
  841. package/dist/runtime/editor/features/analyze/analyzers/index.d.ts +6 -0
  842. package/dist/runtime/editor/features/analyze/analyzers/index.js +12 -0
  843. package/dist/runtime/editor/features/analyze/analyzers/readability.d.ts +2 -0
  844. package/dist/runtime/editor/features/analyze/analyzers/readability.js +135 -0
  845. package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +78 -0
  846. package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
  847. package/dist/runtime/editor/features/analyze/helper.d.ts +5 -0
  848. package/dist/runtime/editor/features/analyze/helper.js +28 -0
  849. package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
  850. package/dist/runtime/editor/features/analyze/index.vue +72 -0
  851. package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
  852. package/dist/runtime/editor/features/analyze/readability/adapterTypes.d.ts +9 -0
  853. package/dist/runtime/editor/features/analyze/readability/adapterTypes.js +0 -0
  854. package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.d.ts +6 -0
  855. package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.js +216 -0
  856. package/dist/runtime/editor/features/analyze/readability/chunkHtml.d.ts +15 -0
  857. package/dist/runtime/editor/features/analyze/readability/chunkHtml.js +97 -0
  858. package/dist/runtime/editor/features/analyze/readability/types.d.ts +87 -0
  859. package/dist/runtime/editor/features/analyze/readability/types.js +0 -0
  860. package/dist/runtime/editor/features/analyze/types.d.ts +9 -0
  861. package/dist/runtime/editor/features/analyze/types.js +0 -0
  862. package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
  863. package/dist/runtime/editor/features/anchors/Overlay/index.vue +71 -0
  864. package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
  865. package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
  866. package/dist/runtime/editor/features/anchors/index.vue +32 -0
  867. package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
  868. package/dist/runtime/editor/features/anchors/types.d.ts +8 -0
  869. package/dist/runtime/editor/features/anchors/types.js +0 -0
  870. package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
  871. package/dist/runtime/editor/features/artboard/Overview/index.vue +122 -0
  872. package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
  873. package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
  874. package/dist/runtime/editor/features/artboard/Renderer.vue +369 -0
  875. package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
  876. package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
  877. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +48 -0
  878. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
  879. package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
  880. package/dist/runtime/editor/features/artboard/index.vue +92 -0
  881. package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
  882. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +7 -0
  883. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +7 -0
  884. package/dist/runtime/editor/features/assistant/Overlay/index.d.vue.ts +9 -0
  885. package/dist/runtime/editor/features/assistant/Overlay/index.vue +108 -0
  886. package/dist/runtime/editor/features/assistant/Overlay/index.vue.d.ts +9 -0
  887. package/dist/runtime/editor/features/assistant/docs.md +7 -0
  888. package/dist/runtime/editor/features/assistant/index.d.vue.ts +3 -0
  889. package/dist/runtime/editor/features/assistant/index.vue +66 -0
  890. package/dist/runtime/editor/features/assistant/index.vue.d.ts +3 -0
  891. package/dist/runtime/editor/features/assistant/types.d.ts +37 -0
  892. package/dist/runtime/editor/features/assistant/types.js +0 -0
  893. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +29 -0
  894. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +154 -0
  895. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +29 -0
  896. package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
  897. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +232 -0
  898. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
  899. package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
  900. package/dist/runtime/editor/features/block-scheduler/index.vue +102 -0
  901. package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
  902. package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
  903. package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
  904. package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
  905. package/dist/runtime/editor/features/breadcrumbs/index.vue +209 -0
  906. package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
  907. package/dist/runtime/editor/features/changelog/Dialog/index.d.vue.ts +7 -0
  908. package/dist/runtime/editor/features/changelog/Dialog/index.vue +43 -0
  909. package/dist/runtime/editor/features/changelog/Dialog/index.vue.d.ts +7 -0
  910. package/dist/runtime/editor/features/changelog/changelog.json +66 -0
  911. package/dist/runtime/editor/features/changelog/index.d.vue.ts +3 -0
  912. package/dist/runtime/editor/features/changelog/index.vue +56 -0
  913. package/dist/runtime/editor/features/changelog/index.vue.d.ts +3 -0
  914. package/dist/runtime/editor/features/clipboard/DropElement/Video.d.vue.ts +8 -0
  915. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue +50 -0
  916. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue.d.ts +8 -0
  917. package/dist/runtime/editor/features/clipboard/DropElement/helpers.d.ts +1 -0
  918. package/dist/runtime/editor/features/clipboard/DropElement/helpers.js +14 -0
  919. package/dist/runtime/editor/features/clipboard/DropElement/index.d.vue.ts +16 -0
  920. package/dist/runtime/editor/features/clipboard/DropElement/index.vue +97 -0
  921. package/dist/runtime/editor/features/clipboard/DropElement/index.vue.d.ts +16 -0
  922. package/dist/runtime/editor/features/clipboard/helpers.d.ts +15 -0
  923. package/dist/runtime/editor/features/clipboard/helpers.js +62 -0
  924. package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
  925. package/dist/runtime/editor/features/clipboard/index.vue +840 -0
  926. package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
  927. package/dist/runtime/editor/features/clipboard/types.d.ts +117 -0
  928. package/dist/runtime/editor/features/clipboard/types.js +0 -0
  929. package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
  930. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +49 -0
  931. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
  932. package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
  933. package/dist/runtime/editor/features/command-palette/Palette/index.vue +229 -0
  934. package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
  935. package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
  936. package/dist/runtime/editor/features/command-palette/index.vue +51 -0
  937. package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
  938. package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
  939. package/dist/runtime/editor/features/command-palette/types.js +0 -0
  940. package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
  941. package/dist/runtime/editor/features/comments/AddForm/index.vue +44 -0
  942. package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
  943. package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +24 -0
  944. package/dist/runtime/editor/features/comments/Comment/index.vue +45 -0
  945. package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +24 -0
  946. package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +15 -0
  947. package/dist/runtime/editor/features/comments/CommentInput/index.vue +29 -0
  948. package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +15 -0
  949. package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +21 -0
  950. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +94 -0
  951. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +21 -0
  952. package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +19 -0
  953. package/dist/runtime/editor/features/comments/Overlay/index.vue +113 -0
  954. package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +19 -0
  955. package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
  956. package/dist/runtime/editor/features/comments/index.vue +113 -0
  957. package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
  958. package/dist/runtime/editor/features/comments/types.d.ts +32 -0
  959. package/dist/runtime/editor/features/comments/types.js +0 -0
  960. package/dist/runtime/editor/features/complex-options/index.d.vue.ts +3 -0
  961. package/dist/runtime/editor/features/complex-options/index.vue +98 -0
  962. package/dist/runtime/editor/features/complex-options/index.vue.d.ts +3 -0
  963. package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
  964. package/dist/runtime/editor/features/conversions/index.vue +84 -0
  965. package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
  966. package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
  967. package/dist/runtime/editor/features/conversions/types.js +0 -0
  968. package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
  969. package/dist/runtime/editor/features/debug/DebugSection.vue +24 -0
  970. package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
  971. package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
  972. package/dist/runtime/editor/features/debug/Main.vue +80 -0
  973. package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
  974. package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
  975. package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
  976. package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
  977. package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
  978. package/dist/runtime/editor/features/debug/Section/Features.vue +34 -0
  979. package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
  980. package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
  981. package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
  982. package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
  983. package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
  984. package/dist/runtime/editor/features/debug/Section/Keyboard.vue +17 -0
  985. package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
  986. package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
  987. package/dist/runtime/editor/features/debug/Section/Logging.vue +66 -0
  988. package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
  989. package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
  990. package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
  991. package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
  992. package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
  993. package/dist/runtime/editor/features/debug/Section/Selection.vue +25 -0
  994. package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
  995. package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
  996. package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
  997. package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
  998. package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
  999. package/dist/runtime/editor/features/debug/index.vue +31 -0
  1000. package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
  1001. package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
  1002. package/dist/runtime/editor/features/delete/index.vue +83 -0
  1003. package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
  1004. package/dist/runtime/editor/features/delete/types.d.ts +8 -0
  1005. package/dist/runtime/editor/features/delete/types.js +0 -0
  1006. package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
  1007. package/dist/runtime/editor/features/dev-mode/index.vue +122 -0
  1008. package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
  1009. package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
  1010. package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
  1011. package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
  1012. package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
  1013. package/dist/runtime/editor/features/diff/index.vue +35 -0
  1014. package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
  1015. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +27 -0
  1016. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +88 -0
  1017. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +27 -0
  1018. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +31 -0
  1019. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +395 -0
  1020. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +31 -0
  1021. package/dist/runtime/editor/features/dragging-overlay/Renderer/fragment.glsl +152 -0
  1022. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +31 -0
  1023. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +934 -0
  1024. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +31 -0
  1025. package/dist/runtime/editor/features/dragging-overlay/Renderer/vertex.glsl +183 -0
  1026. package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
  1027. package/dist/runtime/editor/features/dragging-overlay/index.vue +366 -0
  1028. package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
  1029. package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
  1030. package/dist/runtime/editor/features/duplicate/index.vue +121 -0
  1031. package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
  1032. package/dist/runtime/editor/features/duplicate/types.d.ts +8 -0
  1033. package/dist/runtime/editor/features/duplicate/types.js +0 -0
  1034. package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
  1035. package/dist/runtime/editor/features/edit/index.vue +160 -0
  1036. package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
  1037. package/dist/runtime/editor/features/edit/types.d.ts +9 -0
  1038. package/dist/runtime/editor/features/edit/types.js +0 -0
  1039. package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
  1040. package/dist/runtime/editor/features/edit-form/Frame/index.vue +70 -0
  1041. package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
  1042. package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
  1043. package/dist/runtime/editor/features/edit-form/index.vue +176 -0
  1044. package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
  1045. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
  1046. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
  1047. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +19 -0
  1048. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +116 -0
  1049. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +19 -0
  1050. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
  1051. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +70 -0
  1052. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
  1053. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.d.vue.ts +8 -0
  1054. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +135 -0
  1055. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue.d.ts +8 -0
  1056. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.d.vue.ts +7 -0
  1057. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +187 -0
  1058. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue.d.ts +7 -0
  1059. package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
  1060. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +254 -0
  1061. package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
  1062. package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
  1063. package/dist/runtime/editor/features/editable-field/index.vue +164 -0
  1064. package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
  1065. package/dist/runtime/editor/features/editable-field/types.d.ts +64 -0
  1066. package/dist/runtime/editor/features/editable-field/types.js +0 -0
  1067. package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
  1068. package/dist/runtime/editor/features/editable-mask/index.vue +39 -0
  1069. package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
  1070. package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
  1071. package/dist/runtime/editor/features/entity-title/index.vue +136 -0
  1072. package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
  1073. package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
  1074. package/dist/runtime/editor/features/exit/index.vue +38 -0
  1075. package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
  1076. package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
  1077. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +34 -0
  1078. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
  1079. package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
  1080. package/dist/runtime/editor/features/fragments/Dialog/index.vue +122 -0
  1081. package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
  1082. package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
  1083. package/dist/runtime/editor/features/fragments/index.vue +79 -0
  1084. package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
  1085. package/dist/runtime/editor/features/fragments/types.d.ts +15 -0
  1086. package/dist/runtime/editor/features/fragments/types.js +0 -0
  1087. package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
  1088. package/dist/runtime/editor/features/grid/index.vue +37 -0
  1089. package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
  1090. package/dist/runtime/editor/features/grid/types.d.ts +8 -0
  1091. package/dist/runtime/editor/features/grid/types.js +0 -0
  1092. package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
  1093. package/dist/runtime/editor/features/help/Shortcuts/index.vue +60 -0
  1094. package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
  1095. package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
  1096. package/dist/runtime/editor/features/help/index.vue +49 -0
  1097. package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
  1098. package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
  1099. package/dist/runtime/editor/features/history/List/index.vue +128 -0
  1100. package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
  1101. package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
  1102. package/dist/runtime/editor/features/history/index.vue +151 -0
  1103. package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
  1104. package/dist/runtime/editor/features/history/types.d.ts +12 -0
  1105. package/dist/runtime/editor/features/history/types.js +0 -0
  1106. package/dist/runtime/editor/features/hover/Renderer/fragment.glsl +141 -0
  1107. package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
  1108. package/dist/runtime/editor/features/hover/Renderer/index.vue +488 -0
  1109. package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
  1110. package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +158 -0
  1111. package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
  1112. package/dist/runtime/editor/features/hover/index.vue +28 -0
  1113. package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
  1114. package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +15 -0
  1115. package/dist/runtime/editor/features/import-existing/Dialog/index.vue +117 -0
  1116. package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +15 -0
  1117. package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
  1118. package/dist/runtime/editor/features/import-existing/index.vue +80 -0
  1119. package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
  1120. package/dist/runtime/editor/features/import-existing/types.d.ts +23 -0
  1121. package/dist/runtime/editor/features/import-existing/types.js +0 -0
  1122. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.d.vue.ts +10 -0
  1123. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue +21 -0
  1124. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue.d.ts +10 -0
  1125. package/dist/runtime/editor/features/library/LibraryDialog/index.d.vue.ts +13 -0
  1126. package/dist/runtime/editor/features/library/LibraryDialog/index.vue +143 -0
  1127. package/dist/runtime/editor/features/library/LibraryDialog/index.vue.d.ts +13 -0
  1128. package/dist/runtime/editor/features/library/ReusableDialog/index.d.vue.ts +13 -0
  1129. package/dist/runtime/editor/features/library/ReusableDialog/index.vue +104 -0
  1130. package/dist/runtime/editor/features/library/ReusableDialog/index.vue.d.ts +13 -0
  1131. package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
  1132. package/dist/runtime/editor/features/library/index.vue +270 -0
  1133. package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
  1134. package/dist/runtime/editor/features/library/types.d.ts +87 -0
  1135. package/dist/runtime/editor/features/library/types.js +0 -0
  1136. package/dist/runtime/editor/features/media-library/Library/FilterSelect/index.d.vue.ts +15 -0
  1137. package/dist/runtime/editor/features/media-library/Library/FilterSelect/index.vue +168 -0
  1138. package/dist/runtime/editor/features/media-library/Library/FilterSelect/index.vue.d.ts +15 -0
  1139. package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
  1140. package/dist/runtime/editor/features/media-library/Library/Item.vue +57 -0
  1141. package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
  1142. package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
  1143. package/dist/runtime/editor/features/media-library/Library/index.vue +205 -0
  1144. package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
  1145. package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
  1146. package/dist/runtime/editor/features/media-library/index.vue +144 -0
  1147. package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
  1148. package/dist/runtime/editor/features/media-library/types.d.ts +85 -0
  1149. package/dist/runtime/editor/features/media-library/types.js +0 -0
  1150. package/dist/runtime/editor/features/multi-select/Renderer/fragment.glsl +77 -0
  1151. package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
  1152. package/dist/runtime/editor/features/multi-select/Renderer/index.vue +300 -0
  1153. package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
  1154. package/dist/runtime/editor/features/multi-select/Renderer/vertex.glsl +207 -0
  1155. package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
  1156. package/dist/runtime/editor/features/multi-select/index.vue +69 -0
  1157. package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
  1158. package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
  1159. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +46 -0
  1160. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
  1161. package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
  1162. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +112 -0
  1163. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
  1164. package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
  1165. package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
  1166. package/dist/runtime/editor/features/options/Form/ComplexType/index.d.vue.ts +11 -0
  1167. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +36 -0
  1168. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue.d.ts +11 -0
  1169. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
  1170. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
  1171. package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
  1172. package/dist/runtime/editor/features/options/Form/Group.vue +23 -0
  1173. package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
  1174. package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +15 -0
  1175. package/dist/runtime/editor/features/options/Form/Item.vue +160 -0
  1176. package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +15 -0
  1177. package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +22 -0
  1178. package/dist/runtime/editor/features/options/Form/Number/index.vue +54 -0
  1179. package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +22 -0
  1180. package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +37 -0
  1181. package/dist/runtime/editor/features/options/Form/Radios/index.vue +129 -0
  1182. package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +37 -0
  1183. package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
  1184. package/dist/runtime/editor/features/options/Form/Range/index.vue +37 -0
  1185. package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
  1186. package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
  1187. package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
  1188. package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
  1189. package/dist/runtime/editor/features/options/Form/index.vue +350 -0
  1190. package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
  1191. package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
  1192. package/dist/runtime/editor/features/options/index.vue +86 -0
  1193. package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
  1194. package/dist/runtime/editor/features/options/types.d.ts +21 -0
  1195. package/dist/runtime/editor/features/options/types.js +0 -0
  1196. package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +10 -0
  1197. package/dist/runtime/editor/features/ownership/Banner/index.vue +44 -0
  1198. package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +10 -0
  1199. package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
  1200. package/dist/runtime/editor/features/ownership/index.vue +44 -0
  1201. package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
  1202. package/dist/runtime/editor/features/ownership/types.d.ts +13 -0
  1203. package/dist/runtime/editor/features/ownership/types.js +0 -0
  1204. package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
  1205. package/dist/runtime/editor/features/preview/index.vue +41 -0
  1206. package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
  1207. package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
  1208. package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
  1209. package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
  1210. package/dist/runtime/editor/features/preview-grant/index.vue +71 -0
  1211. package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
  1212. package/dist/runtime/editor/features/preview-grant/types.d.ts +10 -0
  1213. package/dist/runtime/editor/features/preview-grant/types.js +0 -0
  1214. package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
  1215. package/dist/runtime/editor/features/proxy-view/index.vue +40 -0
  1216. package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
  1217. package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
  1218. package/dist/runtime/editor/features/publish/Dialog/Item.vue +145 -0
  1219. package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
  1220. package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
  1221. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +47 -0
  1222. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
  1223. package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
  1224. package/dist/runtime/editor/features/publish/Dialog/Summary.vue +83 -0
  1225. package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
  1226. package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
  1227. package/dist/runtime/editor/features/publish/Dialog/index.vue +579 -0
  1228. package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
  1229. package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
  1230. package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
  1231. package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
  1232. package/dist/runtime/editor/features/publish/index.vue +135 -0
  1233. package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
  1234. package/dist/runtime/editor/features/publish/types.d.ts +109 -0
  1235. package/dist/runtime/editor/features/publish/types.js +0 -0
  1236. package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
  1237. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +76 -0
  1238. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
  1239. package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
  1240. package/dist/runtime/editor/features/responsive-preview/index.vue +193 -0
  1241. package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
  1242. package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
  1243. package/dist/runtime/editor/features/revert/index.vue +68 -0
  1244. package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
  1245. package/dist/runtime/editor/features/revert/types.d.ts +8 -0
  1246. package/dist/runtime/editor/features/revert/types.js +0 -0
  1247. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
  1248. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +163 -0
  1249. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
  1250. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
  1251. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +170 -0
  1252. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
  1253. package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
  1254. package/dist/runtime/editor/features/search/Overlay/index.vue +186 -0
  1255. package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
  1256. package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
  1257. package/dist/runtime/editor/features/search/index.vue +166 -0
  1258. package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
  1259. package/dist/runtime/editor/features/search/types.d.ts +88 -0
  1260. package/dist/runtime/editor/features/search/types.js +0 -0
  1261. package/dist/runtime/editor/features/selection/AddButtons/Renderer/fragment.glsl +108 -0
  1262. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +39 -0
  1263. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +623 -0
  1264. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +39 -0
  1265. package/dist/runtime/editor/features/selection/AddButtons/Renderer/vertex.glsl +119 -0
  1266. package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
  1267. package/dist/runtime/editor/features/selection/AddButtons/index.vue +478 -0
  1268. package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
  1269. package/dist/runtime/editor/features/selection/Renderer/fragment.glsl +147 -0
  1270. package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
  1271. package/dist/runtime/editor/features/selection/Renderer/index.vue +303 -0
  1272. package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
  1273. package/dist/runtime/editor/features/selection/Renderer/vertex.glsl +111 -0
  1274. package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
  1275. package/dist/runtime/editor/features/selection/index.vue +320 -0
  1276. package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
  1277. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
  1278. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +126 -0
  1279. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
  1280. package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
  1281. package/dist/runtime/editor/features/settings/Dialog/index.vue +132 -0
  1282. package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
  1283. package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
  1284. package/dist/runtime/editor/features/settings/index.vue +80 -0
  1285. package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
  1286. package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
  1287. package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
  1288. package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
  1289. package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
  1290. package/dist/runtime/editor/features/structure/List/Item/index.vue +127 -0
  1291. package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
  1292. package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
  1293. package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
  1294. package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
  1295. package/dist/runtime/editor/features/structure/index.vue +99 -0
  1296. package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
  1297. package/dist/runtime/editor/features/structure/types.d.ts +11 -0
  1298. package/dist/runtime/editor/features/structure/types.js +0 -0
  1299. package/dist/runtime/editor/features/swap/index.d.vue.ts +3 -0
  1300. package/dist/runtime/editor/features/swap/index.vue +57 -0
  1301. package/dist/runtime/editor/features/swap/index.vue.d.ts +3 -0
  1302. package/dist/runtime/editor/features/swap/types.d.ts +8 -0
  1303. package/dist/runtime/editor/features/swap/types.js +0 -0
  1304. package/dist/runtime/editor/features/templates/CreateDialog/index.d.vue.ts +12 -0
  1305. package/dist/runtime/editor/features/templates/CreateDialog/index.vue +116 -0
  1306. package/dist/runtime/editor/features/templates/CreateDialog/index.vue.d.ts +12 -0
  1307. package/dist/runtime/editor/features/templates/Dialog/Item/index.d.vue.ts +11 -0
  1308. package/dist/runtime/editor/features/templates/Dialog/Item/index.vue +20 -0
  1309. package/dist/runtime/editor/features/templates/Dialog/Item/index.vue.d.ts +11 -0
  1310. package/dist/runtime/editor/features/templates/Dialog/index.d.vue.ts +13 -0
  1311. package/dist/runtime/editor/features/templates/Dialog/index.vue +122 -0
  1312. package/dist/runtime/editor/features/templates/Dialog/index.vue.d.ts +13 -0
  1313. package/dist/runtime/editor/features/templates/ManageDialog/Item.d.vue.ts +8 -0
  1314. package/dist/runtime/editor/features/templates/ManageDialog/Item.vue +147 -0
  1315. package/dist/runtime/editor/features/templates/ManageDialog/Item.vue.d.ts +8 -0
  1316. package/dist/runtime/editor/features/templates/ManageDialog/index.d.vue.ts +7 -0
  1317. package/dist/runtime/editor/features/templates/ManageDialog/index.vue +107 -0
  1318. package/dist/runtime/editor/features/templates/ManageDialog/index.vue.d.ts +7 -0
  1319. package/dist/runtime/editor/features/templates/index.d.vue.ts +3 -0
  1320. package/dist/runtime/editor/features/templates/index.vue +166 -0
  1321. package/dist/runtime/editor/features/templates/index.vue.d.ts +3 -0
  1322. package/dist/runtime/editor/features/templates/types.d.ts +66 -0
  1323. package/dist/runtime/editor/features/templates/types.js +0 -0
  1324. package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
  1325. package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
  1326. package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
  1327. package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
  1328. package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
  1329. package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
  1330. package/dist/runtime/editor/features/theme/index.vue +109 -0
  1331. package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
  1332. package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
  1333. package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
  1334. package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
  1335. package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
  1336. package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
  1337. package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
  1338. package/dist/runtime/editor/features/tour/Overlay/index.vue +218 -0
  1339. package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
  1340. package/dist/runtime/editor/features/tour/docs.md +0 -0
  1341. package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
  1342. package/dist/runtime/editor/features/tour/index.vue +54 -0
  1343. package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
  1344. package/dist/runtime/editor/features/tour/types.d.ts +6 -0
  1345. package/dist/runtime/editor/features/tour/types.js +0 -0
  1346. package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
  1347. package/dist/runtime/editor/features/transform/Dialog/index.vue +226 -0
  1348. package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
  1349. package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
  1350. package/dist/runtime/editor/features/transform/index.vue +250 -0
  1351. package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
  1352. package/dist/runtime/editor/features/transform/types.d.ts +107 -0
  1353. package/dist/runtime/editor/features/transform/types.js +0 -0
  1354. package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +7 -0
  1355. package/dist/runtime/editor/features/translations/Banner/index.vue +48 -0
  1356. package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +7 -0
  1357. package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
  1358. package/dist/runtime/editor/features/translations/index.vue +217 -0
  1359. package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
  1360. package/dist/runtime/editor/features/translations/types.d.ts +16 -0
  1361. package/dist/runtime/editor/features/translations/types.js +0 -0
  1362. package/dist/runtime/editor/features/validations/Overlay/Item.d.vue.ts +7 -0
  1363. package/dist/runtime/editor/features/validations/Overlay/Item.vue +36 -0
  1364. package/dist/runtime/editor/features/validations/Overlay/Item.vue.d.ts +7 -0
  1365. package/dist/runtime/editor/features/validations/Overlay/index.d.vue.ts +7 -0
  1366. package/dist/runtime/editor/features/validations/Overlay/index.vue +42 -0
  1367. package/dist/runtime/editor/features/validations/Overlay/index.vue.d.ts +7 -0
  1368. package/dist/runtime/editor/features/validations/SidebarItem/index.d.vue.ts +10 -0
  1369. package/dist/runtime/editor/features/validations/SidebarItem/index.vue +41 -0
  1370. package/dist/runtime/editor/features/validations/SidebarItem/index.vue.d.ts +10 -0
  1371. package/dist/runtime/editor/features/validations/index.d.vue.ts +3 -0
  1372. package/dist/runtime/editor/features/validations/index.vue +69 -0
  1373. package/dist/runtime/editor/features/validations/index.vue.d.ts +3 -0
  1374. package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
  1375. package/dist/runtime/editor/helpers/array/index.js +4 -0
  1376. package/dist/runtime/editor/helpers/bundles/index.d.ts +1 -0
  1377. package/dist/runtime/editor/helpers/bundles/index.js +8 -0
  1378. package/dist/runtime/editor/helpers/clipboardData/index.d.ts +11 -0
  1379. package/dist/runtime/editor/helpers/clipboardData/index.js +157 -0
  1380. package/dist/runtime/editor/helpers/color/index.d.ts +6 -0
  1381. package/dist/runtime/editor/helpers/color/index.js +48 -0
  1382. package/dist/runtime/editor/helpers/date/index.d.ts +1 -0
  1383. package/dist/runtime/editor/helpers/date/index.js +3 -0
  1384. package/dist/runtime/editor/helpers/diff/index.d.ts +11 -0
  1385. package/dist/runtime/editor/helpers/diff/index.js +227 -0
  1386. package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
  1387. package/dist/runtime/editor/helpers/dom/index.js +107 -0
  1388. package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
  1389. package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
  1390. package/dist/runtime/editor/helpers/draggable/index.d.ts +3 -0
  1391. package/dist/runtime/editor/helpers/draggable/index.js +9 -0
  1392. package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
  1393. package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
  1394. package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
  1395. package/dist/runtime/editor/helpers/geometry/index.js +191 -0
  1396. package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
  1397. package/dist/runtime/editor/helpers/math/index.js +10 -0
  1398. package/dist/runtime/editor/helpers/options/index.d.ts +20 -0
  1399. package/dist/runtime/editor/helpers/options/index.js +65 -0
  1400. package/dist/runtime/editor/helpers/swap.d.ts +13 -0
  1401. package/dist/runtime/editor/helpers/swap.js +31 -0
  1402. package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
  1403. package/dist/runtime/editor/helpers/uuid/index.js +18 -0
  1404. package/dist/runtime/editor/helpers/vue/index.d.ts +1 -0
  1405. package/dist/runtime/editor/helpers/vue/index.js +10 -0
  1406. package/dist/runtime/editor/helpers/webgl/index.d.ts +49 -0
  1407. package/dist/runtime/editor/helpers/webgl/index.js +347 -0
  1408. package/dist/runtime/editor/icons/svg/dock-window.svg +1 -0
  1409. package/dist/runtime/editor/icons/svg/duplicate.svg +1 -0
  1410. package/dist/runtime/editor/icons/svg/reusable.svg +1 -0
  1411. package/dist/runtime/editor/icons/svg/stars.svg +5 -0
  1412. package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
  1413. package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
  1414. package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
  1415. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
  1416. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +75 -0
  1417. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
  1418. package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
  1419. package/dist/runtime/editor/plugins/ContextMenu/index.vue +39 -0
  1420. package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
  1421. package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
  1422. package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
  1423. package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +94 -0
  1424. package/dist/runtime/editor/plugins/ItemAction/index.vue +101 -0
  1425. package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +94 -0
  1426. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
  1427. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +284 -0
  1428. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
  1429. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +241 -0
  1430. package/dist/runtime/editor/plugins/Sidebar/index.vue +281 -0
  1431. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +241 -0
  1432. package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +165 -0
  1433. package/dist/runtime/editor/plugins/ToolbarButton/index.vue +91 -0
  1434. package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +165 -0
  1435. package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
  1436. package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
  1437. package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
  1438. package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +139 -0
  1439. package/dist/runtime/editor/plugins/ViewOption/index.vue +98 -0
  1440. package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +139 -0
  1441. package/dist/runtime/editor/plugins/index.d.ts +9 -0
  1442. package/dist/runtime/editor/plugins/index.js +18 -0
  1443. package/dist/runtime/editor/providers/adapters.d.ts +33 -0
  1444. package/dist/runtime/editor/providers/adapters.js +88 -0
  1445. package/dist/runtime/editor/providers/analyze.d.ts +44 -0
  1446. package/dist/runtime/editor/providers/analyze.js +81 -0
  1447. package/dist/runtime/editor/providers/animation.d.ts +208 -0
  1448. package/dist/runtime/editor/providers/animation.js +527 -0
  1449. package/dist/runtime/editor/providers/blocks.d.ts +32 -0
  1450. package/dist/runtime/editor/providers/blocks.js +113 -0
  1451. package/dist/runtime/editor/providers/commands.d.ts +41 -0
  1452. package/dist/runtime/editor/providers/commands.js +16 -0
  1453. package/dist/runtime/editor/providers/debug.d.ts +126 -0
  1454. package/dist/runtime/editor/providers/debug.js +132 -0
  1455. package/dist/runtime/editor/providers/definition.d.ts +99 -0
  1456. package/dist/runtime/editor/providers/definition.js +134 -0
  1457. package/dist/runtime/editor/providers/directive.d.ts +116 -0
  1458. package/dist/runtime/editor/providers/directive.js +242 -0
  1459. package/dist/runtime/editor/providers/dom.d.ts +240 -0
  1460. package/dist/runtime/editor/providers/dom.js +540 -0
  1461. package/dist/runtime/editor/providers/dragdrop.d.ts +55 -0
  1462. package/dist/runtime/editor/providers/dragdrop.js +37 -0
  1463. package/dist/runtime/editor/providers/element.d.ts +63 -0
  1464. package/dist/runtime/editor/providers/element.js +35 -0
  1465. package/dist/runtime/editor/providers/features.d.ts +57 -0
  1466. package/dist/runtime/editor/providers/features.js +53 -0
  1467. package/dist/runtime/editor/providers/fieldValue.d.ts +55 -0
  1468. package/dist/runtime/editor/providers/fieldValue.js +131 -0
  1469. package/dist/runtime/editor/providers/fieldValueAdapterTypes.d.ts +13 -0
  1470. package/dist/runtime/editor/providers/fieldValueAdapterTypes.js +0 -0
  1471. package/dist/runtime/editor/providers/fields.d.ts +41 -0
  1472. package/dist/runtime/editor/providers/fields.js +99 -0
  1473. package/dist/runtime/editor/providers/icons.d.ts +6 -0
  1474. package/dist/runtime/editor/providers/icons.js +16 -0
  1475. package/dist/runtime/editor/providers/indicators.d.ts +44 -0
  1476. package/dist/runtime/editor/providers/indicators.js +23 -0
  1477. package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
  1478. package/dist/runtime/editor/providers/keyboard.js +101 -0
  1479. package/dist/runtime/editor/providers/permissions.d.ts +27 -0
  1480. package/dist/runtime/editor/providers/permissions.js +105 -0
  1481. package/dist/runtime/editor/providers/plugin.d.ts +82 -0
  1482. package/dist/runtime/editor/providers/plugin.js +64 -0
  1483. package/dist/runtime/editor/providers/readability.d.ts +23 -0
  1484. package/dist/runtime/editor/providers/readability.js +126 -0
  1485. package/dist/runtime/editor/providers/selection.d.ts +81 -0
  1486. package/dist/runtime/editor/providers/selection.js +162 -0
  1487. package/dist/runtime/editor/providers/state.d.ts +264 -0
  1488. package/dist/runtime/editor/providers/state.js +427 -0
  1489. package/dist/runtime/editor/providers/storage.d.ts +64 -0
  1490. package/dist/runtime/editor/providers/storage.js +133 -0
  1491. package/dist/runtime/editor/providers/texts.js +43 -0
  1492. package/dist/runtime/editor/providers/theme.d.ts +119 -0
  1493. package/dist/runtime/editor/providers/theme.js +140 -0
  1494. package/dist/runtime/editor/providers/tour.d.ts +49 -0
  1495. package/dist/runtime/editor/providers/tour.js +19 -0
  1496. package/dist/runtime/editor/providers/types.d.ts +181 -0
  1497. package/dist/runtime/editor/providers/types.js +170 -0
  1498. package/dist/runtime/editor/providers/ui.d.ts +419 -0
  1499. package/dist/runtime/editor/providers/ui.js +461 -0
  1500. package/dist/runtime/editor/translations/de.json +3358 -0
  1501. package/dist/runtime/editor/translations/fr.json +3358 -0
  1502. package/dist/runtime/editor/translations/gsw_CH.json +3358 -0
  1503. package/dist/runtime/editor/translations/it.json +3358 -0
  1504. package/dist/runtime/editor/types/actions.d.ts +19 -0
  1505. package/dist/runtime/editor/types/actions.js +0 -0
  1506. package/dist/runtime/editor/types/app.d.ts +72 -0
  1507. package/dist/runtime/editor/types/app.js +0 -0
  1508. package/dist/runtime/editor/types/definitions.d.ts +25 -0
  1509. package/dist/runtime/editor/types/definitions.js +0 -0
  1510. package/dist/runtime/editor/types/draggable.d.ts +10 -0
  1511. package/dist/runtime/editor/types/draggable.js +0 -0
  1512. package/dist/runtime/editor/types/features.d.ts +11 -0
  1513. package/dist/runtime/editor/types/features.js +0 -0
  1514. package/dist/runtime/editor/types/field.d.ts +59 -0
  1515. package/dist/runtime/editor/types/field.js +0 -0
  1516. package/dist/runtime/editor/types/geometry.d.ts +9 -0
  1517. package/dist/runtime/editor/types/geometry.js +0 -0
  1518. package/dist/runtime/editor/types/index.d.ts +1 -0
  1519. package/dist/runtime/editor/types/index.js +0 -0
  1520. package/dist/runtime/editor/types/permissions.d.ts +17 -0
  1521. package/dist/runtime/editor/types/permissions.js +0 -0
  1522. package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
  1523. package/dist/runtime/editor/types/pluginConfig.js +0 -0
  1524. package/dist/runtime/editor/types/selection.d.ts +6 -0
  1525. package/dist/runtime/editor/types/selection.js +0 -0
  1526. package/dist/runtime/editor/types/state.d.ts +76 -0
  1527. package/dist/runtime/editor/types/state.js +0 -0
  1528. package/dist/runtime/editor/types/style.d.ts +29 -0
  1529. package/dist/runtime/editor/types/style.js +0 -0
  1530. package/dist/runtime/editor/types/ui.d.ts +44 -0
  1531. package/dist/runtime/editor/types/ui.js +0 -0
  1532. package/dist/runtime/helpers/imports/index.d.ts +9 -1
  1533. package/dist/runtime/helpers/imports/index.js +24 -6
  1534. package/dist/runtime/helpers/index.d.ts +0 -80
  1535. package/dist/runtime/helpers/index.js +0 -470
  1536. package/dist/runtime/helpers/injections.d.ts +136 -0
  1537. package/dist/runtime/helpers/injections.js +75 -0
  1538. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +3 -2
  1539. package/dist/runtime/helpers/runtimeHelpers/index.js +77 -19
  1540. package/dist/runtime/plugins/blokkliDirectives.d.ts +2 -0
  1541. package/dist/runtime/plugins/blokkliDirectives.js +109 -0
  1542. package/dist/runtime/types/blockOptions.d.ts +4 -0
  1543. package/dist/runtime/types/blockOptions.js +0 -0
  1544. package/dist/runtime/types/definitions.d.ts +131 -0
  1545. package/dist/runtime/types/definitions.js +0 -0
  1546. package/dist/runtime/types/directives.d.ts +1 -0
  1547. package/dist/runtime/types/directives.js +0 -0
  1548. package/dist/runtime/types/field.d.ts +26 -0
  1549. package/dist/runtime/types/field.js +0 -0
  1550. package/dist/runtime/types/index.d.ts +7 -1178
  1551. package/dist/runtime/types/provider.d.ts +7 -0
  1552. package/dist/runtime/types/provider.js +0 -0
  1553. package/dist/runtime/types/vue.d.ts +1 -0
  1554. package/dist/runtime/types/vue.js +0 -0
  1555. package/dist/shared/editor.6D5vApr0.mjs +30 -0
  1556. package/dist/shared/editor.9vf8ZnOp.mjs +288 -0
  1557. package/dist/shared/editor.DsGJIlGn.d.mts +631 -0
  1558. package/dist/types.d.mts +8 -0
  1559. package/package.json +194 -66
  1560. package/dist/runtime/adapter/index.d.ts +0 -406
  1561. package/dist/runtime/adapter/index.js +0 -3
  1562. package/dist/runtime/blokkliPlugins/AddAction/index.vue +0 -72
  1563. package/dist/runtime/blokkliPlugins/AddAction/index.vue.d.ts +0 -26
  1564. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +0 -69
  1565. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +0 -12
  1566. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +0 -38
  1567. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +0 -37
  1568. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +0 -21
  1569. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +0 -56
  1570. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +0 -41
  1571. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +0 -86
  1572. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +0 -83
  1573. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +0 -38
  1574. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +0 -17
  1575. package/dist/runtime/blokkliPlugins/MenuButton/index.vue +0 -66
  1576. package/dist/runtime/blokkliPlugins/MenuButton/index.vue.d.ts +0 -32
  1577. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +0 -271
  1578. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +0 -91
  1579. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +0 -239
  1580. package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +0 -85
  1581. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +0 -85
  1582. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +0 -48
  1583. package/dist/runtime/blokkliPlugins/TourItem/index.vue +0 -36
  1584. package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +0 -20
  1585. package/dist/runtime/blokkliPlugins/ViewOption/index.vue +0 -94
  1586. package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +0 -39
  1587. package/dist/runtime/blokkliPlugins/index.d.ts +0 -12
  1588. package/dist/runtime/blokkliPlugins/index.js +0 -24
  1589. package/dist/runtime/components/Blocks/Fragment/icon.svg +0 -1
  1590. package/dist/runtime/components/Edit/Actions/index.vue +0 -244
  1591. package/dist/runtime/components/Edit/Actions/index.vue.d.ts +0 -2
  1592. package/dist/runtime/components/Edit/AddListItem/index.vue +0 -95
  1593. package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +0 -28
  1594. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +0 -87
  1595. package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +0 -2
  1596. package/dist/runtime/components/Edit/AppMenu/index.vue +0 -57
  1597. package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +0 -2
  1598. package/dist/runtime/components/Edit/BlockProxy/index.vue +0 -94
  1599. package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +0 -10
  1600. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +0 -60
  1601. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +0 -23
  1602. package/dist/runtime/components/Edit/Dialog/index.vue +0 -140
  1603. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +0 -44
  1604. package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -364
  1605. package/dist/runtime/components/Edit/DragInteractions/index.vue.d.ts +0 -2
  1606. package/dist/runtime/components/Edit/DraggableList.vue +0 -189
  1607. package/dist/runtime/components/Edit/DraggableList.vue.d.ts +0 -27
  1608. package/dist/runtime/components/Edit/EditIndicator.vue +0 -70
  1609. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +0 -11
  1610. package/dist/runtime/components/Edit/EditProvider.vue +0 -239
  1611. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +0 -26
  1612. package/dist/runtime/components/Edit/Features/AddList/docs.md +0 -4
  1613. package/dist/runtime/components/Edit/Features/AddList/index.vue +0 -181
  1614. package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +0 -2
  1615. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +0 -93
  1616. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +0 -6
  1617. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue +0 -42
  1618. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +0 -7
  1619. package/dist/runtime/components/Edit/Features/Artboard/index.vue +0 -299
  1620. package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +0 -2
  1621. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -6
  1622. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +0 -134
  1623. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +0 -8
  1624. package/dist/runtime/components/Edit/Features/Assistant/docs.md +0 -7
  1625. package/dist/runtime/components/Edit/Features/Assistant/index.vue +0 -59
  1626. package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +0 -2
  1627. package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +0 -15
  1628. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +0 -371
  1629. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue.d.ts +0 -2
  1630. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue +0 -60
  1631. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +0 -3
  1632. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +0 -54
  1633. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +0 -3
  1634. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +0 -61
  1635. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +0 -10
  1636. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +0 -434
  1637. package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +0 -2
  1638. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +0 -51
  1639. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue.d.ts +0 -22
  1640. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +0 -248
  1641. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +0 -6
  1642. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +0 -46
  1643. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +0 -2
  1644. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +0 -29
  1645. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +0 -8
  1646. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +0 -45
  1647. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +0 -23
  1648. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +0 -88
  1649. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +0 -19
  1650. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +0 -103
  1651. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +0 -18
  1652. package/dist/runtime/components/Edit/Features/Comments/index.vue +0 -99
  1653. package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +0 -2
  1654. package/dist/runtime/components/Edit/Features/Conversions/index.vue +0 -82
  1655. package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +0 -2
  1656. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +0 -69
  1657. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +0 -2
  1658. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +0 -84
  1659. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +0 -2
  1660. package/dist/runtime/components/Edit/Features/Debug/index.vue +0 -186
  1661. package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +0 -2
  1662. package/dist/runtime/components/Edit/Features/Delete/index.vue +0 -66
  1663. package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +0 -2
  1664. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +0 -197
  1665. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +0 -2
  1666. package/dist/runtime/components/Edit/Features/Diff/index.vue +0 -35
  1667. package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +0 -2
  1668. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +0 -307
  1669. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +0 -27
  1670. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +0 -90
  1671. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +0 -713
  1672. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue.d.ts +0 -156
  1673. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +0 -77
  1674. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +0 -310
  1675. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +0 -2
  1676. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +0 -93
  1677. package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +0 -2
  1678. package/dist/runtime/components/Edit/Features/Edit/index.vue +0 -82
  1679. package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +0 -2
  1680. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +0 -64
  1681. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +0 -11
  1682. package/dist/runtime/components/Edit/Features/EditForm/index.vue +0 -181
  1683. package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +0 -2
  1684. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +0 -12
  1685. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +0 -52
  1686. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +0 -16
  1687. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +0 -70
  1688. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +0 -16
  1689. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -295
  1690. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +0 -15
  1691. package/dist/runtime/components/Edit/Features/EditableField/index.vue +0 -145
  1692. package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +0 -2
  1693. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +0 -56
  1694. package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +0 -2
  1695. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +0 -100
  1696. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +0 -2
  1697. package/dist/runtime/components/Edit/Features/Exit/index.vue +0 -35
  1698. package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +0 -2
  1699. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +0 -22
  1700. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue.d.ts +0 -2
  1701. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +0 -41
  1702. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue.d.ts +0 -2
  1703. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +0 -61
  1704. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +0 -8
  1705. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +0 -120
  1706. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +0 -12
  1707. package/dist/runtime/components/Edit/Features/Fragments/index.vue +0 -76
  1708. package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +0 -2
  1709. package/dist/runtime/components/Edit/Features/Grid/index.vue +0 -37
  1710. package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +0 -2
  1711. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +0 -60
  1712. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +0 -2
  1713. package/dist/runtime/components/Edit/Features/Help/index.vue +0 -49
  1714. package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +0 -2
  1715. package/dist/runtime/components/Edit/Features/History/List/index.vue +0 -128
  1716. package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +0 -5
  1717. package/dist/runtime/components/Edit/Features/History/index.vue +0 -123
  1718. package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +0 -2
  1719. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +0 -122
  1720. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +0 -14
  1721. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +0 -79
  1722. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +0 -2
  1723. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -168
  1724. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +0 -13
  1725. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +0 -71
  1726. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +0 -9
  1727. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +0 -156
  1728. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +0 -12
  1729. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +0 -85
  1730. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +0 -12
  1731. package/dist/runtime/components/Edit/Features/Library/index.vue +0 -175
  1732. package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +0 -2
  1733. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +0 -40
  1734. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +0 -19
  1735. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +0 -173
  1736. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -6
  1737. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +0 -149
  1738. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +0 -2
  1739. package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +0 -57
  1740. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/fragment.glsl +0 -90
  1741. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +0 -229
  1742. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue.d.ts +0 -12
  1743. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/vertex.glsl +0 -182
  1744. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +0 -64
  1745. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +0 -2
  1746. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +0 -45
  1747. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +0 -14
  1748. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +0 -112
  1749. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +0 -24
  1750. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +0 -12
  1751. package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +0 -20
  1752. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +0 -23
  1753. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +0 -29
  1754. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +0 -175
  1755. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -14
  1756. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +0 -64
  1757. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +0 -21
  1758. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +0 -111
  1759. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +0 -30
  1760. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue +0 -37
  1761. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +0 -18
  1762. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +0 -17
  1763. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +0 -337
  1764. package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +0 -9
  1765. package/dist/runtime/components/Edit/Features/Options/index.vue +0 -60
  1766. package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +0 -2
  1767. package/dist/runtime/components/Edit/Features/Ownership/index.vue +0 -50
  1768. package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +0 -2
  1769. package/dist/runtime/components/Edit/Features/Preview/index.vue +0 -41
  1770. package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +0 -2
  1771. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +0 -5
  1772. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +0 -69
  1773. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +0 -2
  1774. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +0 -36
  1775. package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +0 -2
  1776. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +0 -118
  1777. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +0 -18
  1778. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +0 -251
  1779. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +0 -19
  1780. package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +0 -7
  1781. package/dist/runtime/components/Edit/Features/Publish/index.vue +0 -116
  1782. package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +0 -2
  1783. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +0 -75
  1784. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +0 -27
  1785. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +0 -192
  1786. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +0 -2
  1787. package/dist/runtime/components/Edit/Features/Revert/index.vue +0 -63
  1788. package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +0 -2
  1789. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +0 -144
  1790. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +0 -17
  1791. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +0 -161
  1792. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +0 -18
  1793. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +0 -175
  1794. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +0 -12
  1795. package/dist/runtime/components/Edit/Features/Search/index.vue +0 -72
  1796. package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +0 -2
  1797. package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +0 -133
  1798. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +0 -108
  1799. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +0 -9
  1800. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +0 -90
  1801. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +0 -42
  1802. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue.d.ts +0 -5
  1803. package/dist/runtime/components/Edit/Features/Selection/index.vue +0 -209
  1804. package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +0 -2
  1805. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +0 -131
  1806. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +0 -9
  1807. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +0 -129
  1808. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +0 -6
  1809. package/dist/runtime/components/Edit/Features/Settings/index.vue +0 -84
  1810. package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +0 -2
  1811. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +0 -145
  1812. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +0 -15
  1813. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +0 -121
  1814. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +0 -12
  1815. package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +0 -12
  1816. package/dist/runtime/components/Edit/Features/Structure/index.vue +0 -75
  1817. package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +0 -2
  1818. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +0 -60
  1819. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +0 -7
  1820. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +0 -2
  1821. package/dist/runtime/components/Edit/Features/Theme/index.vue +0 -108
  1822. package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +0 -2
  1823. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +0 -12
  1824. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +0 -39
  1825. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +0 -2
  1826. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +0 -215
  1827. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +0 -6
  1828. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +0 -34
  1829. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +0 -8
  1830. package/dist/runtime/components/Edit/Features/Tour/index.vue +0 -42
  1831. package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +0 -2
  1832. package/dist/runtime/components/Edit/Features/Transform/index.vue +0 -141
  1833. package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +0 -2
  1834. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +0 -42
  1835. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +0 -6
  1836. package/dist/runtime/components/Edit/Features/Translations/index.vue +0 -214
  1837. package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +0 -2
  1838. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +0 -36
  1839. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +0 -6
  1840. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +0 -42
  1841. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +0 -6
  1842. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +0 -42
  1843. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +0 -9
  1844. package/dist/runtime/components/Edit/Features/Validations/index.vue +0 -64
  1845. package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +0 -2
  1846. package/dist/runtime/components/Edit/Features/index.vue +0 -52
  1847. package/dist/runtime/components/Edit/Features/index.vue.d.ts +0 -6
  1848. package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +0 -20
  1849. package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +0 -14
  1850. package/dist/runtime/components/Edit/Form/Textarea/index.vue +0 -27
  1851. package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +0 -16
  1852. package/dist/runtime/components/Edit/Form/Toggle/index.vue +0 -21
  1853. package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +0 -14
  1854. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +0 -28
  1855. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +0 -18
  1856. package/dist/runtime/components/Edit/FormOverlay/index.vue +0 -46
  1857. package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +0 -25
  1858. package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +0 -20
  1859. package/dist/runtime/components/Edit/Icon/index.vue +0 -18
  1860. package/dist/runtime/components/Edit/Icon/index.vue.d.ts +0 -7
  1861. package/dist/runtime/components/Edit/InfoBox/index.vue +0 -13
  1862. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +0 -5
  1863. package/dist/runtime/components/Edit/ItemIcon/index.vue +0 -27
  1864. package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +0 -6
  1865. package/dist/runtime/components/Edit/Loading/index.vue +0 -18
  1866. package/dist/runtime/components/Edit/Loading/index.vue.d.ts +0 -6
  1867. package/dist/runtime/components/Edit/Messages/Item/index.vue +0 -96
  1868. package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +0 -11
  1869. package/dist/runtime/components/Edit/Messages/index.vue +0 -31
  1870. package/dist/runtime/components/Edit/Messages/index.vue.d.ts +0 -2
  1871. package/dist/runtime/components/Edit/Pagination/index.vue +0 -19
  1872. package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +0 -12
  1873. package/dist/runtime/components/Edit/PreviewProvider.vue +0 -177
  1874. package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +0 -24
  1875. package/dist/runtime/components/Edit/RelativeTime/index.vue +0 -31
  1876. package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +0 -15
  1877. package/dist/runtime/components/Edit/Resizable/index.vue +0 -80
  1878. package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +0 -13
  1879. package/dist/runtime/components/Edit/ScaleToFit/index.vue +0 -70
  1880. package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +0 -15
  1881. package/dist/runtime/components/Edit/ScrollBoundary/index.vue +0 -23
  1882. package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +0 -23
  1883. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +0 -78
  1884. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +0 -20
  1885. package/dist/runtime/components/Edit/Sortli/index.vue +0 -83
  1886. package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +0 -14
  1887. package/dist/runtime/components/Edit/SystemRequirements/index.vue +0 -77
  1888. package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +0 -2
  1889. package/dist/runtime/components/Edit/Toolbar/index.vue +0 -91
  1890. package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +0 -6
  1891. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +0 -53
  1892. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +0 -20
  1893. package/dist/runtime/components/Edit/index.d.ts +0 -21
  1894. package/dist/runtime/components/Edit/index.js +0 -42
  1895. package/dist/runtime/constants/index.d.ts +0 -4
  1896. package/dist/runtime/constants/index.js +0 -8
  1897. package/dist/runtime/css/output.css +0 -1
  1898. package/dist/runtime/helpers/DragStyle/index.d.ts +0 -12
  1899. package/dist/runtime/helpers/DragStyle/index.js +0 -86
  1900. package/dist/runtime/helpers/animationProvider.d.ts +0 -25
  1901. package/dist/runtime/helpers/animationProvider.js +0 -123
  1902. package/dist/runtime/helpers/commandsProvider.d.ts +0 -9
  1903. package/dist/runtime/helpers/commandsProvider.js +0 -16
  1904. package/dist/runtime/helpers/composables/defineCommands.d.ts +0 -2
  1905. package/dist/runtime/helpers/composables/defineCommands.js +0 -10
  1906. package/dist/runtime/helpers/composables/defineDropAreas.d.ts +0 -2
  1907. package/dist/runtime/helpers/composables/defineDropAreas.js +0 -10
  1908. package/dist/runtime/helpers/composables/defineShortcut.d.ts +0 -2
  1909. package/dist/runtime/helpers/composables/defineShortcut.js +0 -19
  1910. package/dist/runtime/helpers/composables/defineTourItem.d.ts +0 -2
  1911. package/dist/runtime/helpers/composables/defineTourItem.js +0 -10
  1912. package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +0 -2
  1913. package/dist/runtime/helpers/composables/onBlokkliEvent.js +0 -10
  1914. package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +0 -2
  1915. package/dist/runtime/helpers/composables/onBroadcastEvent.js +0 -10
  1916. package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +0 -1
  1917. package/dist/runtime/helpers/composables/useAnimationFrame.js +0 -14
  1918. package/dist/runtime/helpers/composables/useBlockRegistration.d.ts +0 -5
  1919. package/dist/runtime/helpers/composables/useBlockRegistration.js +0 -23
  1920. package/dist/runtime/helpers/composables/useDebugLogger.d.ts +0 -2
  1921. package/dist/runtime/helpers/composables/useDebugLogger.js +0 -5
  1922. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +0 -5
  1923. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +0 -26
  1924. package/dist/runtime/helpers/debugProvider.d.ts +0 -23
  1925. package/dist/runtime/helpers/debugProvider.js +0 -65
  1926. package/dist/runtime/helpers/definitionProvider.d.ts +0 -18
  1927. package/dist/runtime/helpers/definitionProvider.js +0 -96
  1928. package/dist/runtime/helpers/dom/index.d.ts +0 -5
  1929. package/dist/runtime/helpers/dom/index.js +0 -37
  1930. package/dist/runtime/helpers/domProvider.d.ts +0 -51
  1931. package/dist/runtime/helpers/domProvider.js +0 -452
  1932. package/dist/runtime/helpers/dropAreaProvider.d.ts +0 -9
  1933. package/dist/runtime/helpers/dropAreaProvider.js +0 -22
  1934. package/dist/runtime/helpers/eventBus.d.ts +0 -3
  1935. package/dist/runtime/helpers/eventBus.js +0 -5
  1936. package/dist/runtime/helpers/featuresProvider.d.ts +0 -17
  1937. package/dist/runtime/helpers/featuresProvider.js +0 -53
  1938. package/dist/runtime/helpers/frameEventBus.d.ts +0 -9
  1939. package/dist/runtime/helpers/frameEventBus.js +0 -2
  1940. package/dist/runtime/helpers/keyboardProvider.d.ts +0 -18
  1941. package/dist/runtime/helpers/keyboardProvider.js +0 -90
  1942. package/dist/runtime/helpers/selectionProvider.d.ts +0 -63
  1943. package/dist/runtime/helpers/selectionProvider.js +0 -154
  1944. package/dist/runtime/helpers/stateProvider.d.ts +0 -37
  1945. package/dist/runtime/helpers/stateProvider.js +0 -253
  1946. package/dist/runtime/helpers/storageProvider.d.ts +0 -15
  1947. package/dist/runtime/helpers/storageProvider.js +0 -61
  1948. package/dist/runtime/helpers/symbols.d.ts +0 -23
  1949. package/dist/runtime/helpers/symbols.js +0 -25
  1950. package/dist/runtime/helpers/textProvider.js +0 -20
  1951. package/dist/runtime/helpers/themeProvider.d.ts +0 -27
  1952. package/dist/runtime/helpers/themeProvider.js +0 -127
  1953. package/dist/runtime/helpers/tourProvider.d.ts +0 -11
  1954. package/dist/runtime/helpers/tourProvider.js +0 -19
  1955. package/dist/runtime/helpers/transform.d.ts +0 -2
  1956. package/dist/runtime/helpers/transform.js +0 -17
  1957. package/dist/runtime/helpers/typesProvider.d.ts +0 -36
  1958. package/dist/runtime/helpers/typesProvider.js +0 -138
  1959. package/dist/runtime/helpers/uiProvider.d.ts +0 -41
  1960. package/dist/runtime/helpers/uiProvider.js +0 -298
  1961. package/dist/runtime/helpers/webgl/index.d.ts +0 -37
  1962. package/dist/runtime/helpers/webgl/index.js +0 -165
  1963. package/dist/runtime/icons/alert.svg +0 -6
  1964. package/dist/runtime/icons/area.svg +0 -5
  1965. package/dist/runtime/icons/arrow-down.svg +0 -1
  1966. package/dist/runtime/icons/arrow-left.svg +0 -1
  1967. package/dist/runtime/icons/arrow-right.svg +0 -1
  1968. package/dist/runtime/icons/arrow-up.svg +0 -1
  1969. package/dist/runtime/icons/artboard-disabled.svg +0 -9
  1970. package/dist/runtime/icons/artboard-enabled.svg +0 -29
  1971. package/dist/runtime/icons/bug.svg +0 -1
  1972. package/dist/runtime/icons/button-pointer.svg +0 -1
  1973. package/dist/runtime/icons/caret.svg +0 -12
  1974. package/dist/runtime/icons/cellphone.svg +0 -1
  1975. package/dist/runtime/icons/chat-question.svg +0 -1
  1976. package/dist/runtime/icons/check.svg +0 -1
  1977. package/dist/runtime/icons/checkbox.svg +0 -5
  1978. package/dist/runtime/icons/checks.svg +0 -1
  1979. package/dist/runtime/icons/chevron-left.svg +0 -1
  1980. package/dist/runtime/icons/chevron-right.svg +0 -1
  1981. package/dist/runtime/icons/clipboard.svg +0 -5
  1982. package/dist/runtime/icons/close.svg +0 -5
  1983. package/dist/runtime/icons/cog.svg +0 -5
  1984. package/dist/runtime/icons/command.svg +0 -1
  1985. package/dist/runtime/icons/comment.svg +0 -5
  1986. package/dist/runtime/icons/comment_add.svg +0 -5
  1987. package/dist/runtime/icons/convert.svg +0 -1
  1988. package/dist/runtime/icons/cursor-move.svg +0 -1
  1989. package/dist/runtime/icons/dead.svg +0 -1
  1990. package/dist/runtime/icons/delete.svg +0 -8
  1991. package/dist/runtime/icons/diff.svg +0 -1
  1992. package/dist/runtime/icons/drag.svg +0 -1
  1993. package/dist/runtime/icons/duplicate.svg +0 -12
  1994. package/dist/runtime/icons/edit.svg +0 -8
  1995. package/dist/runtime/icons/exit.svg +0 -6
  1996. package/dist/runtime/icons/expand.svg +0 -1
  1997. package/dist/runtime/icons/eye.svg +0 -1
  1998. package/dist/runtime/icons/file.svg +0 -1
  1999. package/dist/runtime/icons/form.svg +0 -1
  2000. package/dist/runtime/icons/fragment.svg +0 -1
  2001. package/dist/runtime/icons/grid.svg +0 -13
  2002. package/dist/runtime/icons/group.svg +0 -5
  2003. package/dist/runtime/icons/help.svg +0 -1
  2004. package/dist/runtime/icons/history.svg +0 -1
  2005. package/dist/runtime/icons/image.svg +0 -1
  2006. package/dist/runtime/icons/import.svg +0 -5
  2007. package/dist/runtime/icons/info.svg +0 -1
  2008. package/dist/runtime/icons/laptop.svg +0 -1
  2009. package/dist/runtime/icons/list-view-grid.svg +0 -1
  2010. package/dist/runtime/icons/list-view-horizontal.svg +0 -1
  2011. package/dist/runtime/icons/magnifier.svg +0 -5
  2012. package/dist/runtime/icons/menu.svg +0 -1
  2013. package/dist/runtime/icons/minus.svg +0 -1
  2014. package/dist/runtime/icons/monitor.svg +0 -1
  2015. package/dist/runtime/icons/multi-select.svg +0 -1
  2016. package/dist/runtime/icons/multimedia.svg +0 -1
  2017. package/dist/runtime/icons/opacity.svg +0 -5
  2018. package/dist/runtime/icons/open_in_new.svg +0 -3
  2019. package/dist/runtime/icons/palette.svg +0 -1
  2020. package/dist/runtime/icons/plus-box.svg +0 -1
  2021. package/dist/runtime/icons/plus.svg +0 -1
  2022. package/dist/runtime/icons/preview.svg +0 -5
  2023. package/dist/runtime/icons/publish.svg +0 -12
  2024. package/dist/runtime/icons/puzzle.svg +0 -1
  2025. package/dist/runtime/icons/qrcode.svg +0 -5
  2026. package/dist/runtime/icons/question.svg +0 -5
  2027. package/dist/runtime/icons/redo.svg +0 -12
  2028. package/dist/runtime/icons/resize.svg +0 -1
  2029. package/dist/runtime/icons/reusable.svg +0 -5
  2030. package/dist/runtime/icons/revert.svg +0 -5
  2031. package/dist/runtime/icons/rotate-phone.svg +0 -1
  2032. package/dist/runtime/icons/sad.svg +0 -1
  2033. package/dist/runtime/icons/save.svg +0 -1
  2034. package/dist/runtime/icons/script.svg +0 -1
  2035. package/dist/runtime/icons/scrolltotop.svg +0 -6
  2036. package/dist/runtime/icons/search.svg +0 -1
  2037. package/dist/runtime/icons/selection.svg +0 -5
  2038. package/dist/runtime/icons/swap-horizontal.svg +0 -1
  2039. package/dist/runtime/icons/tablet.svg +0 -1
  2040. package/dist/runtime/icons/textbox.svg +0 -1
  2041. package/dist/runtime/icons/texturebox.svg +0 -5
  2042. package/dist/runtime/icons/title.svg +0 -1
  2043. package/dist/runtime/icons/tools.svg +0 -1
  2044. package/dist/runtime/icons/translate.svg +0 -5
  2045. package/dist/runtime/icons/tree.svg +0 -5
  2046. package/dist/runtime/icons/tutor.svg +0 -1
  2047. package/dist/runtime/icons/ui-list-horizontal.svg +0 -19
  2048. package/dist/runtime/icons/ui-list-sidebar.svg +0 -21
  2049. package/dist/runtime/icons/ui-list-vertical.svg +0 -9
  2050. package/dist/runtime/icons/undo.svg +0 -12
  2051. package/dist/runtime/icons/upload.svg +0 -1
  2052. package/dist/runtime/icons/user.svg +0 -1
  2053. package/dist/runtime/icons/video-outline.svg +0 -1
  2054. package/dist/runtime/plugins/blokkliEditable.d.ts +0 -2
  2055. package/dist/runtime/plugins/blokkliEditable.js +0 -31
  2056. package/dist/runtime/types/blokkOptions.d.ts +0 -92
  2057. package/dist/runtime/types/theme.d.ts +0 -33
  2058. package/dist/shared/editor.gz_ac6uT.d.mts +0 -431
  2059. /package/dist/{runtime/components/Edit/Features/MediaLibrary/types.js → global/types/adapter.js} +0 -0
  2060. /package/dist/{runtime/components/Edit/Features/Publish/Dialog/types.js → global/types/blockOptions.js} +0 -0
  2061. /package/dist/{runtime/components/Edit/Features/Tour/docs.md → global/types/definitions.js} +0 -0
  2062. /package/dist/{runtime/types/blokkOptions.js → global/types/features.js} +0 -0
  2063. /package/dist/{runtime → global}/types/theme.js +0 -0
  2064. /package/dist/runtime/{components/Edit → editor/components}/Form/Group/index.vue +0 -0
  2065. /package/dist/runtime/{components/Edit → editor/components}/Form/Item/index.vue +0 -0
  2066. /package/dist/runtime/{components/Edit → editor/components}/Highlight/index.vue +0 -0
  2067. /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/Overlay/ResultMarkup/index.vue +0 -0
  2068. /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/docs.md +0 -0
  2069. /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/docs.md +0 -0
  2070. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/docs.md +0 -0
  2071. /package/dist/runtime/{components/Edit/Features/EditableField → editor/features/editable-field}/Overlay/Contenteditable/index.vue +0 -0
  2072. /package/dist/runtime/{components/Edit/Features/Fragments → editor/features/fragments}/docs.md +0 -0
  2073. /package/dist/runtime/{components/Edit/Features/Library → editor/features/library}/docs.md +0 -0
  2074. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Color/index.vue +0 -0
  2075. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/DateTimeLocal/index.vue +0 -0
  2076. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Text/index.vue +0 -0
  2077. /package/dist/runtime/{components/Edit/Features/PreviewGrant → editor/features/preview-grant}/QrCode/index.vue +0 -0
  2078. /package/dist/runtime/{components/Edit/Features/Structure → editor/features/structure}/List/index.vue +0 -0
  2079. /package/dist/runtime/{components/Edit/Features/Theme → editor/features/theme}/GeneratedCode/index.vue +0 -0
  2080. /package/dist/runtime/{components/Edit/Features/TouchActionBar → editor/features/touch-action-bar}/Bar/index.vue +0 -0
  2081. /package/dist/runtime/{components/Edit/Features/Transform → editor/features/transform}/docs.md +0 -0
  2082. /package/dist/runtime/{helpers/easing.d.ts → editor/helpers/easing/index.d.ts} +0 -0
  2083. /package/dist/runtime/{helpers/easing.js → editor/helpers/easing/index.js} +0 -0
  2084. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.d.ts +0 -0
  2085. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.js +0 -0
  2086. /package/dist/runtime/{icons → editor/icons/svg}/arrow-right-thin.svg +0 -0
  2087. /package/dist/runtime/{icons → editor/icons/svg}/artboard.svg +0 -0
  2088. /package/dist/runtime/{icons → editor/icons/svg}/loader.svg +0 -0
  2089. /package/dist/runtime/{icons → editor/icons/svg}/logo.svg +0 -0
  2090. /package/dist/runtime/{icons/detach.svg → editor/icons/svg/reusable-detach.svg} +0 -0
  2091. /package/dist/runtime/{icons → editor/icons/svg}/robot.svg +0 -0
  2092. /package/dist/runtime/{icons → editor/icons/svg}/spinner.svg +0 -0
  2093. /package/dist/runtime/{icons → editor/icons/svg}/star.svg +0 -0
  2094. /package/dist/runtime/{icons → editor/icons/svg}/tiktok.svg +0 -0
  2095. /package/dist/runtime/{icons → editor/icons/svg}/unstar.svg +0 -0
  2096. /package/dist/runtime/{icons → editor/icons/svg}/vimeo.svg +0 -0
  2097. /package/dist/runtime/{icons → editor/icons/svg}/window-maximize.svg +0 -0
  2098. /package/dist/runtime/{icons → editor/icons/svg}/window-minimize.svg +0 -0
  2099. /package/dist/runtime/{icons → editor/icons/svg}/youtube.svg +0 -0
  2100. /package/dist/runtime/{blokkliPlugins → editor/plugins}/DebugOverlay/index.vue +0 -0
  2101. /package/dist/runtime/{helpers/broadcastProvider.d.ts → editor/providers/broadcast.d.ts} +0 -0
  2102. /package/dist/runtime/{helpers/broadcastProvider.js → editor/providers/broadcast.js} +0 -0
  2103. /package/dist/runtime/{helpers/textProvider.d.ts → editor/providers/texts.d.ts} +0 -0
@@ -1,479 +1,9 @@
1
- import { easeOutSine } from "./easing.js";
2
- import { useRuntimeConfig } from "#imports";
3
1
  export function falsy(value) {
4
2
  return value !== null && value !== void 0;
5
3
  }
6
- export function buildDraggableItem(element) {
7
- if (!(element instanceof HTMLElement)) {
8
- return;
9
- }
10
- const itemEntityType = useRuntimeConfig().public.blokkli.itemEntityType;
11
- const dataset = element.dataset;
12
- if (dataset.elementType === "existing") {
13
- const uuid = dataset.uuid;
14
- const itemBundle = dataset.itemBundle;
15
- const entityType = dataset.entityType;
16
- const hostType = dataset.hostType;
17
- const hostUuid = dataset.hostUuid;
18
- const hostBundle = dataset.hostBundle;
19
- const hostFieldName = dataset.hostFieldName;
20
- const reusableBundle = dataset.reusableBundle;
21
- const hostFieldListType = dataset.hostFieldListType;
22
- const libraryItemUuid = dataset.bkLibraryItemUuid;
23
- const isNew = dataset.isNew === "true";
24
- const parentBlockBundle = hostType === itemEntityType ? hostBundle : void 0;
25
- if (uuid && hostType && hostUuid && hostFieldName && itemBundle && hostBundle && entityType && hostFieldListType) {
26
- const libraryLabel = dataset.bkLibraryLabel;
27
- const editTitle = libraryLabel || "";
28
- return {
29
- itemType: "existing",
30
- element: () => document.querySelector(`[data-uuid="${uuid}"]`),
31
- itemBundle,
32
- entityType,
33
- isNested: hostType === itemEntityType,
34
- uuid,
35
- hostType,
36
- hostBundle,
37
- hostUuid,
38
- hostFieldName,
39
- hostFieldListType,
40
- reusableBundle,
41
- libraryItemUuid,
42
- editTitle: editTitle || void 0,
43
- isNew,
44
- parentBlockBundle
45
- };
46
- }
47
- } else if (dataset.elementType === "new") {
48
- const itemBundle = dataset.itemBundle;
49
- if (itemBundle) {
50
- return {
51
- itemType: "new",
52
- element: () => document.querySelector(
53
- `[data-sortli-id="${itemBundle}"]`
54
- ),
55
- itemBundle
56
- };
57
- }
58
- } else if (dataset.elementType === "action") {
59
- const actionType = dataset.actionType;
60
- const itemBundle = dataset.itemBundle;
61
- if (actionType) {
62
- return {
63
- itemType: "action",
64
- actionType,
65
- itemBundle,
66
- element: () => document.querySelector(
67
- `[data-element-type="action"][data-sortli-id="${actionType}"]`
68
- )
69
- };
70
- }
71
- } else if (dataset.elementType === "clipboard") {
72
- const additional = dataset.clipboardAdditional;
73
- const itemBundle = dataset.itemBundle;
74
- const clipboardId = dataset.clipboardId;
75
- const id = dataset.sortliId;
76
- if (itemBundle && clipboardId) {
77
- return {
78
- itemType: "clipboard",
79
- element: () => document.querySelector(`[data-sortli-id="${id}"]`),
80
- itemBundle,
81
- additional,
82
- clipboardId
83
- };
84
- }
85
- } else if (dataset.elementType === "media_library") {
86
- const mediaId = dataset.mediaId;
87
- const itemBundle = dataset.itemBundle;
88
- const mediaBundle = dataset.mediaBundle;
89
- if (mediaId && itemBundle && mediaBundle) {
90
- return {
91
- itemType: "media_library",
92
- mediaId,
93
- itemBundle,
94
- mediaBundle,
95
- element: () => document.querySelector(
96
- `[data-element-type="media_library"][data-media-id="${mediaId}"]`
97
- )
98
- };
99
- }
100
- } else if (dataset.elementType === "search_content") {
101
- const searchItemData = dataset.searchItem;
102
- const id = dataset.sortliId;
103
- if (searchItemData && id) {
104
- const searchItem = JSON.parse(searchItemData);
105
- return {
106
- itemType: "search_content",
107
- element: () => document.querySelector(`[data-sortli-id="${id}"]`),
108
- itemBundle: searchItem.targetBundles[0],
109
- searchItem
110
- };
111
- }
112
- }
113
- }
114
- export function findElement(uuid) {
115
- const el = document.querySelector(
116
- `[data-uuid="${uuid}"]:not(.bk-sortli-leave-from)`
117
- );
118
- if (el instanceof HTMLElement) {
119
- return el;
120
- }
121
- }
122
4
  export function onlyUnique(value, index, self) {
123
5
  return self.indexOf(value) === index;
124
6
  }
125
- export function getRelativeTimeString(date, lang = navigator.language) {
126
- const timeMs = typeof date === "number" ? date : date.getTime();
127
- const deltaSeconds = Math.round((timeMs - Date.now()) / 1e3);
128
- const cutoffs = [
129
- 60,
130
- 3600,
131
- 86400,
132
- 86400 * 7,
133
- 86400 * 30,
134
- 86400 * 365,
135
- Infinity
136
- ];
137
- const units = [
138
- "second",
139
- "minute",
140
- "hour",
141
- "day",
142
- "week",
143
- "month",
144
- "year"
145
- ];
146
- const unitIndex = cutoffs.findIndex(
147
- (cutoff) => cutoff > Math.abs(deltaSeconds)
148
- );
149
- const divisor = unitIndex ? cutoffs[unitIndex - 1] : 1;
150
- const rtf = new Intl.RelativeTimeFormat(lang, { numeric: "auto" });
151
- return rtf.format(Math.floor(deltaSeconds / divisor), units[unitIndex]);
152
- }
153
- export function modulo(n, m) {
154
- return (n % m + m) % m;
155
- }
156
- export function getBounds(rects) {
157
- if (!rects.length) {
158
- return;
159
- }
160
- const firstRect = rects[0];
161
- let minX = firstRect.x;
162
- let minY = firstRect.y;
163
- let maxX = minX + firstRect.width;
164
- let maxY = minY + firstRect.height;
165
- for (const rect of rects.slice(1)) {
166
- minX = Math.min(minX, rect.x);
167
- minY = Math.min(minY, rect.y);
168
- maxX = Math.max(maxX, rect.x + rect.width);
169
- maxY = Math.max(maxY, rect.y + rect.height);
170
- }
171
- return {
172
- x: minX,
173
- y: minY,
174
- width: maxX - minX,
175
- height: maxY - minY
176
- };
177
- }
178
- export function intersects(a, b) {
179
- return a.x < b.x + b.width && a.x + a.width > b.x && a.y < b.y + b.height && a.y + a.height > b.y;
180
- }
181
- export function isInsideRect(x, y, rect) {
182
- return x > rect.x && x < rect.x + rect.width && y > rect.y && y < rect.y + rect.height;
183
- }
184
- export function calculateIntersection(rectA, rectB) {
185
- if (!intersects(rectA, rectB)) {
186
- return 0;
187
- }
188
- const xOverlap = Math.max(
189
- 0,
190
- Math.min(rectA.x + rectA.width, rectB.x + rectB.width) - Math.max(rectA.x, rectB.x)
191
- );
192
- const yOverlap = Math.max(
193
- 0,
194
- Math.min(rectA.y + rectA.height, rectB.y + rectB.height) - Math.max(rectA.y, rectB.y)
195
- );
196
- const intersectionArea = xOverlap * yOverlap;
197
- const rectAArea = rectA.width * rectA.height;
198
- return intersectionArea / rectAArea;
199
- }
200
- export function findClosestRectangle(x, y, rects) {
201
- let closestRect = rects[0];
202
- if (!closestRect) {
203
- throw new Error("Need at least one rect.");
204
- }
205
- let minDistance = distanceToClosestRectangleEdge(x, y, closestRect);
206
- for (let i = 1; i < rects.length; i++) {
207
- const rect = rects[i];
208
- const distance = distanceToClosestRectangleEdge(x, y, rect);
209
- if (distance < minDistance) {
210
- closestRect = rect;
211
- minDistance = distance;
212
- }
213
- }
214
- return closestRect;
215
- }
216
- export function distanceToRectangle(x, y, rect) {
217
- const minX = rect.x;
218
- const minY = rect.y;
219
- const maxX = rect.x + rect.width;
220
- const maxY = rect.y + rect.height;
221
- const dx = Math.max(minX - x, 0, x - maxX);
222
- const dy = Math.max(minY - y, 0, y - maxY);
223
- return Math.sqrt(dx * dx + dy * dy);
224
- }
225
- export function distanceToClosestRectangleEdge(x, y, rect) {
226
- if (isInsideRect(x, y, rect)) {
227
- return 0;
228
- }
229
- const minX = rect.x;
230
- const minY = rect.y;
231
- const maxX = rect.x + rect.width;
232
- const maxY = rect.y + rect.height;
233
- const dx = Math.max(minX - x, 0, x - maxX);
234
- const dy = Math.max(minY - y, 0, y - maxY);
235
- return Math.sqrt(dx * dx + dy * dy);
236
- }
237
- export function getDistance(a, b) {
238
- const dx = a.x - b.x;
239
- const dy = a.y - b.y;
240
- return Math.sqrt(dx * dx + dy * dy);
241
- }
242
- export const parseColorString = (color) => {
243
- const rgbaRegex = /^rgba?\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})(?:,\s*(0|1|0?\.\d+))?\)$/;
244
- const match = color.match(rgbaRegex);
245
- if (!match) {
246
- return;
247
- }
248
- const r = Number.parseInt(match[1]);
249
- const g = Number.parseInt(match[2]);
250
- const b = Number.parseInt(match[3]);
251
- const a = match[4] !== void 0 ? Number.parseFloat(match[4]) : 1;
252
- if ([r, g, b, a].some((val) => Number.isNaN(val))) {
253
- throw new Error("Invalid color values");
254
- }
255
- if (r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) {
256
- return;
257
- }
258
- return [r, g, b];
259
- };
260
- export const realBackgroundColor = (el) => {
261
- const transparent = "rgba(0, 0, 0, 0)";
262
- if (!el) return transparent;
263
- const bg = getComputedStyle(el).backgroundColor;
264
- if (bg === transparent || bg === "transparent") {
265
- return realBackgroundColor(el.parentElement);
266
- }
267
- return bg;
268
- };
269
- export const lerp = (s, e, t) => s * (1 - t) + e * t;
270
- export const calculateCenterPosition = (blockingRects, viewport, widthToPlace) => {
271
- const viewportCenterX = (viewport.x + viewport.width) / 2;
272
- const blockingThreshold = viewport.width / 7;
273
- const x = blockingRects.reduce((acc, rect) => {
274
- if (rect.x < viewportCenterX && viewportCenterX - rect.x > blockingThreshold && rect.x + rect.width > acc) {
275
- return rect.x + rect.width;
276
- }
277
- return acc;
278
- }, viewport.x);
279
- const width = blockingRects.reduce((acc, rect) => {
280
- if (rect.x > viewportCenterX && rect.x - viewportCenterX > blockingThreshold && rect.x < acc) {
281
- return rect.x;
282
- }
283
- return acc;
284
- }, viewport.width + viewport.x);
285
- return (x + width) / 2 - widthToPlace / 2;
286
- };
287
- export function getContrastRatio(color1, color2) {
288
- const luminance1 = getLuminance(color1);
289
- const luminance2 = getLuminance(color2);
290
- const lighter = Math.max(luminance1, luminance2);
291
- const darker = Math.min(luminance1, luminance2);
292
- return (lighter + 0.05) / (darker + 0.05);
293
- }
294
- function getLuminance(color) {
295
- const [r, g, b] = color.map((val) => {
296
- val /= 255;
297
- return val <= 0.03928 ? val / 12.92 : Math.pow((val + 0.055) / 1.055, 2.4);
298
- });
299
- return 0.2126 * r + 0.7152 * g + 0.0722 * b;
300
- }
301
- export function findHighestContrastColor(colors, backgroundColor = [255, 255, 255]) {
302
- let maxContrast = 0;
303
- let maxContrastColor = colors[0];
304
- for (const color of colors) {
305
- const contrast = getContrastRatio(color, backgroundColor);
306
- if (contrast > maxContrast) {
307
- maxContrast = contrast;
308
- maxContrastColor = color;
309
- }
310
- }
311
- return maxContrastColor;
312
- }
313
- export const rgbaToString = (color, alpha = 1) => `rgba(${[...color, alpha].join(", ")})`;
314
- export const getNumericStyleValue = (str, fallback = 0) => {
315
- const v = str.replace("px", "");
316
- const num = Number.parseFloat(v);
317
- if (Number.isNaN(num) || num === 0) {
318
- return fallback;
319
- }
320
- return num;
321
- };
322
- export function findIdealRectPosition(blockingRects, rectToPlace, viewport, maxOverlap = 60) {
323
- let targetX = rectToPlace.x;
324
- for (const blockingRect of blockingRects) {
325
- if (intersects(rectToPlace, blockingRect)) {
326
- const a = Math.abs(rectToPlace.y + rectToPlace.height - blockingRect.y);
327
- const b = Math.abs(blockingRect.y + blockingRect.height - rectToPlace.y);
328
- const verticalOverlap = Math.min(a, b);
329
- const smoothingFactor = easeOutSine(
330
- Math.min(verticalOverlap, maxOverlap) / maxOverlap
331
- );
332
- if (rectToPlace.x + rectToPlace.width / 2 > blockingRect.x + blockingRect.width / 2) {
333
- targetX = blockingRect.x + blockingRect.width;
334
- } else {
335
- targetX = blockingRect.x - rectToPlace.width;
336
- }
337
- targetX = rectToPlace.x + smoothingFactor * (targetX - rectToPlace.x);
338
- break;
339
- }
340
- }
341
- return {
342
- x: Math.min(
343
- Math.max(targetX, viewport.x),
344
- viewport.x + viewport.width - rectToPlace.width
345
- ),
346
- y: Math.min(
347
- Math.max(viewport.y, rectToPlace.y),
348
- viewport.height + viewport.y - rectToPlace.height
349
- )
350
- };
351
- }
352
- export const findClosestBlock = (el) => {
353
- if (!(el instanceof Element)) {
354
- return;
355
- }
356
- const closest = el.closest('[data-element-type="existing"]');
357
- if (!closest) {
358
- return;
359
- }
360
- const item = buildDraggableItem(closest);
361
- if (item?.itemType !== "existing") {
362
- return;
363
- }
364
- return item;
365
- };
366
- export const findClosestEntityContext = (el) => {
367
- const provider = el.closest('[data-blokkli-provider-active="true"]');
368
- if (!(provider instanceof HTMLElement)) {
369
- return;
370
- }
371
- const uuid = provider.dataset.providerUuid;
372
- const type = provider.dataset.providerEntityType;
373
- const bundle = provider.dataset.providerEntityBundle;
374
- if (uuid && type && bundle) {
375
- return {
376
- uuid,
377
- type,
378
- bundle
379
- };
380
- }
381
- };
382
- export const findParentContext = (el) => {
383
- const block = findClosestBlock(el);
384
- if (block) {
385
- return block;
386
- }
387
- return findClosestEntityContext(el);
388
- };
389
- export const mapDroppableField = (el) => {
390
- if (!(el instanceof HTMLElement)) {
391
- throw new TypeError(
392
- `v-blokkli-droppable directive is only allowed on elements of type HTMLElement.`
393
- );
394
- }
395
- const fieldName = el.dataset.blokkliDroppableField;
396
- if (!fieldName) {
397
- throw new Error(`Missing field name in v-blokkli-droppable directive.`);
398
- }
399
- const host = findParentContext(el);
400
- if (!host) {
401
- throw new Error(
402
- `Failed to locate parent context for v-blokkli-droppable field with name "${fieldName}". Make sure the element is always rendered inside a block component or inside a <BlokkliProvider>.`
403
- );
404
- }
405
- return {
406
- element: el,
407
- host,
408
- fieldName
409
- };
410
- };
411
- export const originatesFromEditable = (e) => {
412
- if (e.target instanceof HTMLElement) {
413
- const el = e.target.closest("[data-blokkli-editable-field]");
414
- if (el instanceof HTMLElement) {
415
- return el;
416
- }
417
- }
418
- };
419
- export const getOriginatingDroppableElement = (e) => {
420
- if (e.target instanceof HTMLElement) {
421
- const el = e.target.closest("[data-blokkli-droppable-field]");
422
- if (el instanceof HTMLElement) {
423
- return el;
424
- }
425
- }
426
- };
427
- export const originatesFromTextInput = (e) => e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement;
428
7
  export function getFieldKey(uuid, fieldName) {
429
8
  return uuid + ":" + fieldName;
430
9
  }
431
- export function getInteractionCoordinates(e) {
432
- if ("touches" in e) {
433
- const touch = e.touches[0] || e.changedTouches[0];
434
- return {
435
- x: touch.clientX,
436
- y: touch.clientY
437
- };
438
- }
439
- return {
440
- x: e.clientX,
441
- y: e.clientY
442
- };
443
- }
444
- export function toShaderColor(rgba) {
445
- return rgba.map((v) => v / 255);
446
- }
447
- export function generateUUID() {
448
- try {
449
- return crypto.randomUUID();
450
- } catch {
451
- }
452
- let d = (/* @__PURE__ */ new Date()).getTime(), d2 = typeof performance !== "undefined" && performance.now && performance.now() * 1e3 || 0;
453
- return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
454
- let r = Math.random() * 16;
455
- if (d > 0) {
456
- r = (d + r) % 16 | 0;
457
- d = Math.floor(d / 16);
458
- } else {
459
- r = (d2 + r) % 16 | 0;
460
- d2 = Math.floor(d2 / 16);
461
- }
462
- return (c == "x" ? r : r & 7 | 8).toString(16);
463
- });
464
- }
465
- export function buildAttributesForLibraryItem(props) {
466
- return {
467
- "data-reusable-bundle": props.block?.bundle,
468
- "data-reusable-uuid": props.block?.uuid,
469
- "data-bk-library-label": props.label,
470
- "data-bk-library-item-uuid": props.uuid,
471
- "data-blokkli-is-reusable": "true"
472
- };
473
- }
474
- export function asValidNumber(v, defaultValue) {
475
- if (typeof v === "number" && !Number.isNaN(v)) {
476
- return v;
477
- }
478
- return defaultValue;
479
- }
@@ -0,0 +1,136 @@
1
+ import type { InjectionKey, ComputedRef, Component } from 'vue';
2
+ import type { EntityContext } from './../types/index.js';
3
+ import type { DebugLogger } from '#blokkli/editor/providers/debug';
4
+ import type { FieldListItemTyped, ValidFieldListTypes, ValidProviderTypes } from '#blokkli-build/generated-types';
5
+ import type DraggableListComponent from '../editor/components/DraggableList.vue.js';
6
+ import type { BlokkliApp } from '#blokkli/editor/types/app';
7
+ import type { MutatedField, MutatedItemProps, MutatedOptions } from '#blokkli/editor/types/state';
8
+ import type { DefineBlokkliContext } from '#blokkli/types/definitions';
9
+ import type { InjectedBlokkliItem } from '#blokkli/types/field';
10
+ import type { Eventbus } from '#blokkli/editor/events';
11
+ import type { DomProvider } from '#blokkli/editor/providers/dom';
12
+ import type { DefinitionProvider } from '#blokkli/editor/providers/definition';
13
+ import type { BlokkliProviderEntityContext } from '#blokkli/types/provider';
14
+ type ItemEditContext = {
15
+ eventBus: Eventbus;
16
+ mutatedOptions: MutatedOptions;
17
+ dom?: DomProvider;
18
+ definitions: DefinitionProvider;
19
+ useBlockRegistration?: (dom: DomProvider, uuid: string) => void;
20
+ };
21
+ export declare const INJECT_APP: InjectionKey<BlokkliApp>;
22
+ /**
23
+ * The reduced edit context.
24
+ */
25
+ export declare const INJECT_EDIT_CONTEXT: InjectionKey<ItemEditContext | null>;
26
+ /**
27
+ * Whether we're currently editing (within the editor).
28
+ */
29
+ export declare const INJECT_IS_EDITING: InjectionKey<boolean>;
30
+ /**
31
+ * Whether the block is rendered within another block (nested).
32
+ */
33
+ export declare const INJECT_IS_NESTED: InjectionKey<boolean>;
34
+ /**
35
+ * The current nesting level, starting at 0.
36
+ */
37
+ export declare const INJECT_NESTING_LEVEL: InjectionKey<number>;
38
+ /**
39
+ * The z-index of the parent field, used to resolve overlapping blocks at the
40
+ * same nesting level. Higher values take priority.
41
+ */
42
+ export declare const INJECT_FIELD_Z_INDEX: InjectionKey<number>;
43
+ /**
44
+ * Whether we're currently in preview mode.
45
+ */
46
+ export declare const INJECT_IS_PREVIEW: InjectionKey<ComputedRef<boolean>>;
47
+ /**
48
+ * Whether the block is rendered inside a from_library block.
49
+ */
50
+ export declare const INJECT_IS_IN_REUSABLE: InjectionKey<boolean>;
51
+ /**
52
+ * The options provided by the from_library block.
53
+ */
54
+ export declare const INJECT_REUSABLE_OPTIONS: InjectionKey<ComputedRef<Record<string, string | number | boolean | string[] | undefined>>>;
55
+ /**
56
+ * The UUID of the parent from_library block.
57
+ */
58
+ export declare const INJECT_REUSABLE_UUID: InjectionKey<string>;
59
+ /**
60
+ * The field list type of the parent field.
61
+ */
62
+ export declare const INJECT_FIELD_LIST_TYPE: InjectionKey<ComputedRef<ValidFieldListTypes>>;
63
+ /**
64
+ * The field list items of the containing block.
65
+ */
66
+ export declare const INJECT_FIELD_LIST_BLOCKS: InjectionKey<ComputedRef<FieldListItemTyped[]>>;
67
+ /**
68
+ * Whether the parent field is rendering in proxy mode.
69
+ */
70
+ export declare const INJECT_FIELD_PROXY_MODE: InjectionKey<boolean>;
71
+ /**
72
+ * Whether the parent field is rendering in proxy mode.
73
+ *
74
+ * @todo: This is probably the ssame as INJECT_FIELD_PROXY_MODE.
75
+ */
76
+ export declare const INJECT_FIELD_USES_PROXY: InjectionKey<boolean>;
77
+ /**
78
+ * Whether the global proxy mode setting is enabled in the editor.
79
+ */
80
+ export declare const INJECT_GLOBAL_PROXY_MODE: InjectionKey<ComputedRef<boolean>>;
81
+ /**
82
+ * The blocks of the root field.
83
+ */
84
+ export declare const INJECT_PROVIDER_BLOCKS: InjectionKey<ComputedRef<FieldListItemTyped[]>>;
85
+ /**
86
+ * The item data provided by BlokkliItem.
87
+ */
88
+ export declare const INJECT_BLOCK_ITEM: InjectionKey<ComputedRef<InjectedBlokkliItem>>;
89
+ /**
90
+ * The mutated fields map provided in the editor.
91
+ *
92
+ * This is a reactive property with an objected keyed by field list key.
93
+ */
94
+ export declare const INJECT_MUTATED_FIELDS_MAP: InjectionKey<Record<string, MutatedField | undefined>>;
95
+ /**
96
+ * The current "entity context".
97
+ *
98
+ * For blocks rendered directly within the first BlokkliField inside BlokkliProvider, the entity is the provider.
99
+ * For nested blocks, the entity context will be the block that contains nested blocks.
100
+ */
101
+ export declare const INJECT_ENTITY_CONTEXT: InjectionKey<EntityContext>;
102
+ /**
103
+ * The current provider type.
104
+ */
105
+ export declare const INJECT_PROVIDER_TYPE: InjectionKey<ValidProviderTypes>;
106
+ /**
107
+ * The entity context of the provider.
108
+ */
109
+ export declare const INJECT_PROVIDER_CONTEXT: InjectionKey<ComputedRef<BlokkliProviderEntityContext>>;
110
+ /**
111
+ * The defineBlokkli context of the "blokkli_fragment" block.
112
+ */
113
+ export declare const INJECT_FRAGMENT_CONTEXT: InjectionKey<DefineBlokkliContext<any, any>>;
114
+ /**
115
+ * The unique key of the current provider.
116
+ */
117
+ export declare const INJECT_PROVIDER_KEY: InjectionKey<string>;
118
+ /**
119
+ * The DraggableList component used during editing.
120
+ */
121
+ export declare const INJECT_EDIT_FIELD_LIST_COMPONENT: InjectionKey<typeof DraggableListComponent>;
122
+ /**
123
+ * The reactive item props override object, used to override props values (during editing).
124
+ */
125
+ export declare const INJECT_ITEM_PROPS_OVERRIDE: InjectionKey<MutatedItemProps>;
126
+ /**
127
+ * The debug logger instance.
128
+ */
129
+ export declare const INJECT_EDIT_LOGGER: InjectionKey<DebugLogger>;
130
+ /**
131
+ * An object containing block item component keys as properties and the Vue component as values.
132
+ *
133
+ * Used to prevent async loading of components in the editor.
134
+ */
135
+ export declare const INJECT_ALL_COMPONENTS_CHUNK: InjectionKey<Record<string, Component>>;
136
+ export {};
@@ -0,0 +1,75 @@
1
+ export const INJECT_APP = Symbol("blokkli_app");
2
+ export const INJECT_EDIT_CONTEXT = Symbol(
3
+ "blokkli_edit_context"
4
+ );
5
+ export const INJECT_IS_EDITING = Symbol(
6
+ "blokkli_is_editing"
7
+ );
8
+ export const INJECT_IS_NESTED = Symbol(
9
+ "blokkli_is_nested"
10
+ );
11
+ export const INJECT_NESTING_LEVEL = Symbol(
12
+ "blokkli_nesting_level"
13
+ );
14
+ export const INJECT_FIELD_Z_INDEX = Symbol(
15
+ "blokkli_field_z_index"
16
+ );
17
+ export const INJECT_IS_PREVIEW = Symbol("blokkli_is_preview");
18
+ export const INJECT_IS_IN_REUSABLE = Symbol(
19
+ "blokkli_is_in_reusable"
20
+ );
21
+ export const INJECT_REUSABLE_OPTIONS = Symbol(
22
+ "blokkli_from_library_options"
23
+ );
24
+ export const INJECT_REUSABLE_UUID = Symbol(
25
+ "blokkli_from_library_uuid"
26
+ );
27
+ export const INJECT_FIELD_LIST_TYPE = Symbol(
28
+ "blokkli_field_list_type"
29
+ );
30
+ export const INJECT_FIELD_LIST_BLOCKS = Symbol(
31
+ "blokkli_field_list_blocks"
32
+ );
33
+ export const INJECT_FIELD_PROXY_MODE = Symbol(
34
+ "blokkli_field_proxy_mode"
35
+ );
36
+ export const INJECT_FIELD_USES_PROXY = Symbol(
37
+ "blokkli_field_uses_proxy"
38
+ );
39
+ export const INJECT_GLOBAL_PROXY_MODE = Symbol(
40
+ "blokkli_global_proxy_mode"
41
+ );
42
+ export const INJECT_PROVIDER_BLOCKS = Symbol(
43
+ "blokkli_provider_blocks"
44
+ );
45
+ export const INJECT_BLOCK_ITEM = Symbol("blokkli_block_item");
46
+ export const INJECT_MUTATED_FIELDS_MAP = Symbol(
47
+ "blokkli_mutated_fields_map"
48
+ );
49
+ export const INJECT_ENTITY_CONTEXT = Symbol(
50
+ "blokkli_entity_context"
51
+ );
52
+ export const INJECT_PROVIDER_TYPE = Symbol(
53
+ "blokkli_provider_type"
54
+ );
55
+ export const INJECT_PROVIDER_CONTEXT = Symbol(
56
+ "blokkli_provider_context"
57
+ );
58
+ export const INJECT_FRAGMENT_CONTEXT = Symbol(
59
+ "blokkli_fragment_context"
60
+ );
61
+ export const INJECT_PROVIDER_KEY = Symbol(
62
+ "blokkli_provider_key"
63
+ );
64
+ export const INJECT_EDIT_FIELD_LIST_COMPONENT = Symbol(
65
+ "blokkli_edit_field_list_component"
66
+ );
67
+ export const INJECT_ITEM_PROPS_OVERRIDE = Symbol(
68
+ "blokkli_edit_item_props_override"
69
+ );
70
+ export const INJECT_EDIT_LOGGER = Symbol(
71
+ "blokkli_edit_logger"
72
+ );
73
+ export const INJECT_ALL_COMPONENTS_CHUNK = Symbol(
74
+ "blokkli_all_components_chunk"
75
+ );
@@ -1,9 +1,10 @@
1
1
  /**
2
2
  * This file should contain all helpers that are meant for runtime functionality, such as defineBlokkli composable or <BlokkliProvider>.
3
3
  */
4
- import { type RuntimeBlockOptionArray, type RuntimeBlockOptions } from '#blokkli-build/runtime-options';
4
+ import { type RuntimeBlockOptions } from '#blokkli-build/runtime-options';
5
5
  import type { FieldListItemTyped } from '#blokkli-build/generated-types';
6
- import type { BlockOptionDefinition } from '#blokkli/types/blokkOptions';
6
+ import type { BlockOptionDefinition } from '#blokkli/types/blockOptions';
7
+ import type { RuntimeBlockOptionArray } from '../../../global/types/blockOptions.js';
7
8
  import type { FieldListItem } from '#blokkli/types';
8
9
  /**
9
10
  * Map all kinds of truthy values for a checkbox.