@blokkli/editor 2.0.0-alpha.4 → 2.0.0-alpha.41

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 (2062) hide show
  1. package/dist/global/constants/index.d.ts +7 -0
  2. package/dist/global/constants/index.js +11 -0
  3. package/dist/global/types/adapter.d.ts +6 -0
  4. package/dist/global/types/blockOptions.d.ts +372 -0
  5. package/dist/global/types/definitions.d.ts +285 -0
  6. package/dist/global/types/features.d.ts +91 -0
  7. package/dist/global/types/theme.d.ts +34 -0
  8. package/dist/module.d.mts +8 -12
  9. package/dist/module.json +5 -5
  10. package/dist/module.mjs +1480 -5725
  11. package/dist/modules/agent/index.d.mts +72 -0
  12. package/dist/modules/agent/index.mjs +783 -0
  13. package/dist/modules/agent/runtime/app/composables/agentProvider.d.ts +61 -0
  14. package/dist/modules/agent/runtime/app/composables/agentProvider.js +1031 -0
  15. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.d.ts +32 -0
  16. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.js +6 -0
  17. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.d.ts +47 -0
  18. package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.js +3 -0
  19. package/dist/modules/agent/runtime/app/composables/index.d.ts +4 -0
  20. package/dist/modules/agent/runtime/app/composables/index.js +2 -0
  21. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.d.vue.ts +6 -0
  22. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.vue +9 -0
  23. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCode/index.vue.d.ts +6 -0
  24. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.d.vue.ts +6 -0
  25. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.vue +31 -0
  26. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.vue.d.ts +6 -0
  27. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.d.vue.ts +6 -0
  28. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.vue +12 -0
  29. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.vue.d.ts +6 -0
  30. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.d.vue.ts +6 -0
  31. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.vue +17 -0
  32. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.vue.d.ts +6 -0
  33. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.d.vue.ts +12 -0
  34. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue +92 -0
  35. package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue.d.ts +12 -0
  36. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.d.vue.ts +9 -0
  37. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue +38 -0
  38. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue.d.ts +9 -0
  39. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.d.vue.ts +14 -0
  40. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue +68 -0
  41. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue.d.ts +14 -0
  42. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.d.vue.ts +10 -0
  43. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue +74 -0
  44. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue.d.ts +10 -0
  45. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.d.vue.ts +16 -0
  46. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue +61 -0
  47. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue.d.ts +16 -0
  48. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.d.vue.ts +8 -0
  49. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue +17 -0
  50. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue.d.ts +8 -0
  51. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.d.vue.ts +11 -0
  52. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue +28 -0
  53. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue.d.ts +11 -0
  54. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.d.vue.ts +13 -0
  55. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue +46 -0
  56. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue.d.ts +13 -0
  57. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.d.vue.ts +3 -0
  58. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue +14 -0
  59. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue.d.ts +3 -0
  60. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.d.vue.ts +14 -0
  61. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue +49 -0
  62. package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue.d.ts +14 -0
  63. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.d.vue.ts +15 -0
  64. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue +50 -0
  65. package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue.d.ts +15 -0
  66. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.d.vue.ts +3 -0
  67. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue +161 -0
  68. package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue.d.ts +3 -0
  69. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.d.vue.ts +17 -0
  70. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue +230 -0
  71. package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue.d.ts +17 -0
  72. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.d.vue.ts +7 -0
  73. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue +67 -0
  74. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue.d.ts +7 -0
  75. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.d.vue.ts +24 -0
  76. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +90 -0
  77. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue.d.ts +24 -0
  78. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.d.vue.ts +47 -0
  79. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +115 -0
  80. package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue.d.ts +47 -0
  81. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.d.vue.ts +15 -0
  82. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue +47 -0
  83. package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue.d.ts +15 -0
  84. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.d.vue.ts +14 -0
  85. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue +55 -0
  86. package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue.d.ts +14 -0
  87. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +25 -0
  88. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +36 -0
  89. package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +25 -0
  90. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/de.md +19 -0
  91. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/en.md +18 -0
  92. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.d.vue.ts +10 -0
  93. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue +44 -0
  94. package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue.d.ts +10 -0
  95. package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +59 -0
  96. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +295 -0
  97. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +59 -0
  98. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.d.vue.ts +8 -0
  99. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue +171 -0
  100. package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue.d.ts +8 -0
  101. package/dist/modules/agent/runtime/app/features/agent/index.d.vue.ts +3 -0
  102. package/dist/modules/agent/runtime/app/features/agent/index.vue +244 -0
  103. package/dist/modules/agent/runtime/app/features/agent/index.vue.d.ts +3 -0
  104. package/dist/modules/agent/runtime/app/features/agent/types.d.ts +58 -0
  105. package/dist/modules/agent/runtime/app/features/agent/types.js +0 -0
  106. package/dist/modules/agent/runtime/app/helpers/index.d.ts +52 -0
  107. package/dist/modules/agent/runtime/app/helpers/index.js +64 -0
  108. package/dist/modules/agent/runtime/app/helpers/pageStructure.d.ts +5 -0
  109. package/dist/modules/agent/runtime/app/helpers/pageStructure.js +96 -0
  110. package/dist/modules/agent/runtime/app/helpers/validation.d.ts +35 -0
  111. package/dist/modules/agent/runtime/app/helpers/validation.js +77 -0
  112. package/dist/modules/agent/runtime/app/prompts/fixReadability.d.ts +2 -0
  113. package/dist/modules/agent/runtime/app/prompts/fixReadability.js +49 -0
  114. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.d.ts +2 -0
  115. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.js +65 -0
  116. package/dist/modules/agent/runtime/app/tools/add_fragment/index.d.ts +2 -0
  117. package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +79 -0
  118. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.d.ts +2 -0
  119. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +58 -0
  120. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +2 -0
  121. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +289 -0
  122. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.d.ts +2 -0
  123. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +72 -0
  124. package/dist/modules/agent/runtime/app/tools/add_template/index.d.ts +2 -0
  125. package/dist/modules/agent/runtime/app/tools/add_template/index.js +54 -0
  126. package/dist/modules/agent/runtime/app/tools/ask_question/Component.d.vue.ts +19 -0
  127. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue +119 -0
  128. package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue.d.ts +19 -0
  129. package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +18 -0
  130. package/dist/modules/agent/runtime/app/tools/ask_question/index.js +62 -0
  131. package/dist/modules/agent/runtime/app/tools/check_readability/index.d.ts +2 -0
  132. package/dist/modules/agent/runtime/app/tools/check_readability/index.js +65 -0
  133. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +46 -0
  134. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +740 -0
  135. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +46 -0
  136. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.d.vue.ts +6 -0
  137. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.vue +38 -0
  138. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Details/index.vue.d.ts +6 -0
  139. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +38 -0
  140. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +115 -0
  141. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +2 -0
  142. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +48 -0
  143. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +2 -0
  144. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +47 -0
  145. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +2 -0
  146. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +140 -0
  147. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +2 -0
  148. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +180 -0
  149. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +2 -0
  150. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +33 -0
  151. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +2 -0
  152. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +91 -0
  153. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.d.ts +2 -0
  154. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +177 -0
  155. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +2 -0
  156. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +109 -0
  157. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +2 -0
  158. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +189 -0
  159. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +2 -0
  160. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +102 -0
  161. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +2 -0
  162. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +114 -0
  163. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +2 -0
  164. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +270 -0
  165. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +2 -0
  166. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +65 -0
  167. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +2 -0
  168. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +181 -0
  169. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.d.ts +2 -0
  170. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +68 -0
  171. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +2 -0
  172. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +46 -0
  173. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +2 -0
  174. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +54 -0
  175. package/dist/modules/agent/runtime/app/tools/helpers.d.ts +81 -0
  176. package/dist/modules/agent/runtime/app/tools/helpers.js +250 -0
  177. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +2 -0
  178. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +66 -0
  179. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +2 -0
  180. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +96 -0
  181. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +2 -0
  182. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +80 -0
  183. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +2 -0
  184. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +85 -0
  185. package/dist/modules/agent/runtime/app/tools/schemas.d.ts +85 -0
  186. package/dist/modules/agent/runtime/app/tools/schemas.js +68 -0
  187. package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +2 -0
  188. package/dist/modules/agent/runtime/app/tools/search_content/index.js +58 -0
  189. package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +14 -0
  190. package/dist/modules/agent/runtime/app/tools/search_media/index.js +60 -0
  191. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +2 -0
  192. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +75 -0
  193. package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +2 -0
  194. package/dist/modules/agent/runtime/app/tools/search_templates/index.js +51 -0
  195. package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +2 -0
  196. package/dist/modules/agent/runtime/app/tools/search_text/index.js +114 -0
  197. package/dist/modules/agent/runtime/app/tools/select_media/Component.d.vue.ts +29 -0
  198. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +70 -0
  199. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue.d.ts +29 -0
  200. package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +30 -0
  201. package/dist/modules/agent/runtime/app/tools/select_media/index.js +74 -0
  202. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +2 -0
  203. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +106 -0
  204. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +2 -0
  205. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +74 -0
  206. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.d.vue.ts +38 -0
  207. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue +218 -0
  208. package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue.d.ts +38 -0
  209. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.d.vue.ts +6 -0
  210. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue +24 -0
  211. package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue.d.ts +6 -0
  212. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +25 -0
  213. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +85 -0
  214. package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +2 -0
  215. package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +52 -0
  216. package/dist/modules/agent/runtime/app/types/index.d.ts +447 -0
  217. package/dist/modules/agent/runtime/app/types/index.js +52 -0
  218. package/dist/modules/agent/runtime/server/Session.d.ts +126 -0
  219. package/dist/modules/agent/runtime/server/Session.js +993 -0
  220. package/dist/modules/agent/runtime/server/SessionManager.d.ts +24 -0
  221. package/dist/modules/agent/runtime/server/SessionManager.js +83 -0
  222. package/dist/modules/agent/runtime/server/agent.d.ts +2 -0
  223. package/dist/modules/agent/runtime/server/agent.js +153 -0
  224. package/dist/modules/agent/runtime/server/agentPrompt.d.ts +30 -0
  225. package/dist/modules/agent/runtime/server/agentPrompt.js +79 -0
  226. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.d.ts +2 -0
  227. package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.js +21 -0
  228. package/dist/modules/agent/runtime/server/default-skills/fixReadability.d.ts +2 -0
  229. package/dist/modules/agent/runtime/server/default-skills/fixReadability.js +50 -0
  230. package/dist/modules/agent/runtime/server/default-skills/pageReview.d.ts +2 -0
  231. package/dist/modules/agent/runtime/server/default-skills/pageReview.js +28 -0
  232. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.d.ts +2 -0
  233. package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.js +21 -0
  234. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.d.ts +2 -0
  235. package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.js +54 -0
  236. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.d.ts +2 -0
  237. package/dist/modules/agent/runtime/server/default-system-prompts/architecture.js +39 -0
  238. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.d.ts +2 -0
  239. package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.js +18 -0
  240. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.d.ts +2 -0
  241. package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.js +18 -0
  242. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.d.ts +2 -0
  243. package/dist/modules/agent/runtime/server/default-system-prompts/fragments.js +19 -0
  244. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.d.ts +2 -0
  245. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +21 -0
  246. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.d.ts +2 -0
  247. package/dist/modules/agent/runtime/server/default-system-prompts/interaction.js +20 -0
  248. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.d.ts +2 -0
  249. package/dist/modules/agent/runtime/server/default-system-prompts/introduction.js +15 -0
  250. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.d.ts +2 -0
  251. package/dist/modules/agent/runtime/server/default-system-prompts/page-context.js +88 -0
  252. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.d.ts +2 -0
  253. package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.js +37 -0
  254. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.d.ts +2 -0
  255. package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.js +36 -0
  256. package/dist/modules/agent/runtime/server/default-system-prompts/security.d.ts +2 -0
  257. package/dist/modules/agent/runtime/server/default-system-prompts/security.js +27 -0
  258. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.d.ts +2 -0
  259. package/dist/modules/agent/runtime/server/default-system-prompts/workflow.js +22 -0
  260. package/dist/modules/agent/runtime/server/fetch.d.ts +2 -0
  261. package/dist/modules/agent/runtime/server/fetch.js +127 -0
  262. package/dist/modules/agent/runtime/server/helpers.d.ts +77 -0
  263. package/dist/modules/agent/runtime/server/helpers.js +353 -0
  264. package/dist/modules/agent/runtime/server/providers/anthropic.d.ts +12 -0
  265. package/dist/modules/agent/runtime/server/providers/anthropic.js +132 -0
  266. package/dist/modules/agent/runtime/server/providers/openai.d.ts +12 -0
  267. package/dist/modules/agent/runtime/server/providers/openai.js +321 -0
  268. package/dist/modules/agent/runtime/server/providers/types.d.ts +81 -0
  269. package/dist/modules/agent/runtime/server/providers/types.js +0 -0
  270. package/dist/modules/agent/runtime/server/route.d.ts +2 -0
  271. package/dist/modules/agent/runtime/server/route.js +40 -0
  272. package/dist/modules/agent/runtime/server/routing.d.ts +18 -0
  273. package/dist/modules/agent/runtime/server/routing.js +111 -0
  274. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.d.ts +3 -0
  275. package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.js +94 -0
  276. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.d.ts +9 -0
  277. package/dist/modules/agent/runtime/server/server-tools/create_plan/index.js +86 -0
  278. package/dist/modules/agent/runtime/server/server-tools/index.d.ts +100 -0
  279. package/dist/modules/agent/runtime/server/server-tools/index.js +30 -0
  280. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.d.ts +7 -0
  281. package/dist/modules/agent/runtime/server/server-tools/load_skills/index.js +80 -0
  282. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.d.ts +7 -0
  283. package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +44 -0
  284. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.d.ts +23 -0
  285. package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.js +3 -0
  286. package/dist/modules/agent/runtime/server/skills/index.d.ts +2 -0
  287. package/dist/modules/agent/runtime/server/skills/index.js +1 -0
  288. package/dist/modules/agent/runtime/server/skills/types.d.ts +59 -0
  289. package/dist/modules/agent/runtime/server/skills/types.js +0 -0
  290. package/dist/modules/agent/runtime/server/stream.d.ts +2 -0
  291. package/dist/modules/agent/runtime/server/stream.js +190 -0
  292. package/dist/modules/agent/runtime/server/streamParser.d.ts +85 -0
  293. package/dist/modules/agent/runtime/server/streamParser.js +227 -0
  294. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.d.ts +21 -0
  295. package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.js +3 -0
  296. package/dist/modules/agent/runtime/server/system-prompts/helpers.d.ts +20 -0
  297. package/dist/modules/agent/runtime/server/system-prompts/helpers.js +41 -0
  298. package/dist/modules/agent/runtime/server/system-prompts/index.d.ts +2 -0
  299. package/dist/modules/agent/runtime/server/system-prompts/index.js +1 -0
  300. package/dist/modules/agent/runtime/server/system-prompts/types.d.ts +49 -0
  301. package/dist/modules/agent/runtime/server/system-prompts/types.js +0 -0
  302. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.d.ts +21 -0
  303. package/dist/modules/agent/runtime/server/templates/defineStreamTemplate.js +3 -0
  304. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.d.ts +26 -0
  305. package/dist/modules/agent/runtime/server/templates/definitions/fixReadability.js +84 -0
  306. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.d.ts +6 -0
  307. package/dist/modules/agent/runtime/server/templates/definitions/generateContent.js +29 -0
  308. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.d.ts +5 -0
  309. package/dist/modules/agent/runtime/server/templates/definitions/rewrite.js +14 -0
  310. package/dist/modules/agent/runtime/server/templates/definitions/translate.d.ts +5 -0
  311. package/dist/modules/agent/runtime/server/templates/definitions/translate.js +23 -0
  312. package/dist/modules/agent/runtime/server/templates/index.d.ts +37 -0
  313. package/dist/modules/agent/runtime/server/templates/index.js +25 -0
  314. package/dist/modules/agent/runtime/server/templates/types.d.ts +17 -0
  315. package/dist/modules/agent/runtime/server/templates/types.js +0 -0
  316. package/dist/modules/agent/runtime/server/templates/utils.d.ts +5 -0
  317. package/dist/modules/agent/runtime/server/templates/utils.js +69 -0
  318. package/dist/modules/agent/runtime/shared/placeholders.d.ts +4 -0
  319. package/dist/modules/agent/runtime/shared/placeholders.js +1 -0
  320. package/dist/modules/agent/runtime/shared/types.d.ts +531 -0
  321. package/dist/modules/agent/runtime/shared/types.js +180 -0
  322. package/dist/modules/charts/index.d.mts +35 -0
  323. package/dist/modules/charts/index.mjs +57 -0
  324. package/dist/modules/charts/runtime/blokkli/skills/charts.d.ts +2 -0
  325. package/dist/modules/charts/runtime/blokkli/skills/charts.js +51 -0
  326. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.d.ts +86 -0
  327. package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.js +136 -0
  328. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.d.ts +2 -0
  329. package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.js +93 -0
  330. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.d.ts +2 -0
  331. package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.js +66 -0
  332. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.d.ts +2 -0
  333. package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.js +40 -0
  334. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.d.ts +2 -0
  335. package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.js +89 -0
  336. package/dist/modules/charts/runtime/chartTypes/area.d.ts +7 -0
  337. package/dist/modules/charts/runtime/chartTypes/area.js +68 -0
  338. package/dist/modules/charts/runtime/chartTypes/bar.d.ts +8 -0
  339. package/dist/modules/charts/runtime/chartTypes/bar.js +76 -0
  340. package/dist/modules/charts/runtime/chartTypes/define.d.ts +2 -0
  341. package/dist/modules/charts/runtime/chartTypes/define.js +3 -0
  342. package/dist/modules/charts/runtime/chartTypes/donut.d.ts +6 -0
  343. package/dist/modules/charts/runtime/chartTypes/donut.js +45 -0
  344. package/dist/modules/charts/runtime/chartTypes/heatmap.d.ts +4 -0
  345. package/dist/modules/charts/runtime/chartTypes/heatmap.js +54 -0
  346. package/dist/modules/charts/runtime/chartTypes/index.d.ts +39 -0
  347. package/dist/modules/charts/runtime/chartTypes/index.js +47 -0
  348. package/dist/modules/charts/runtime/chartTypes/line.d.ts +7 -0
  349. package/dist/modules/charts/runtime/chartTypes/line.js +68 -0
  350. package/dist/modules/charts/runtime/chartTypes/pie.d.ts +5 -0
  351. package/dist/modules/charts/runtime/chartTypes/pie.js +28 -0
  352. package/dist/modules/charts/runtime/chartTypes/radar.d.ts +7 -0
  353. package/dist/modules/charts/runtime/chartTypes/radar.js +52 -0
  354. package/dist/modules/charts/runtime/chartTypes/radialBar.d.ts +6 -0
  355. package/dist/modules/charts/runtime/chartTypes/radialBar.js +44 -0
  356. package/dist/modules/charts/runtime/chartTypes/shared.d.ts +67 -0
  357. package/dist/modules/charts/runtime/chartTypes/shared.js +103 -0
  358. package/dist/modules/charts/runtime/chartTypes/types.d.ts +29 -0
  359. package/dist/modules/charts/runtime/chartTypes/types.js +0 -0
  360. package/dist/modules/charts/runtime/components/ChartRenderer/index.d.vue.ts +147 -0
  361. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +120 -0
  362. package/dist/modules/charts/runtime/components/ChartRenderer/index.vue.d.ts +147 -0
  363. package/dist/modules/charts/runtime/components/index.d.ts +1 -0
  364. package/dist/modules/charts/runtime/components/index.js +1 -0
  365. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.d.vue.ts +16 -0
  366. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue +97 -0
  367. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue.d.ts +16 -0
  368. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.d.vue.ts +11 -0
  369. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +34 -0
  370. package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue.d.ts +11 -0
  371. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.d.vue.ts +12 -0
  372. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +49 -0
  373. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue.d.ts +12 -0
  374. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.d.vue.ts +19 -0
  375. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue +89 -0
  376. package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue.d.ts +19 -0
  377. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.d.vue.ts +23 -0
  378. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue +224 -0
  379. package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue.d.ts +23 -0
  380. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.d.vue.ts +10 -0
  381. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue +61 -0
  382. package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue.d.ts +10 -0
  383. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.d.vue.ts +10 -0
  384. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue +45 -0
  385. package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue.d.ts +10 -0
  386. package/dist/modules/charts/runtime/features/charts/Editor/index.d.vue.ts +11 -0
  387. package/dist/modules/charts/runtime/features/charts/Editor/index.vue +249 -0
  388. package/dist/modules/charts/runtime/features/charts/Editor/index.vue.d.ts +11 -0
  389. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.d.ts +17 -0
  390. package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.js +90 -0
  391. package/dist/modules/charts/runtime/features/charts/index.d.vue.ts +3 -0
  392. package/dist/modules/charts/runtime/features/charts/index.vue +72 -0
  393. package/dist/modules/charts/runtime/features/charts/index.vue.d.ts +3 -0
  394. package/dist/modules/charts/runtime/helpers/index.d.ts +26 -0
  395. package/dist/modules/charts/runtime/helpers/index.js +80 -0
  396. package/dist/modules/charts/runtime/types.d.ts +33 -0
  397. package/dist/modules/charts/runtime/types.js +0 -0
  398. package/dist/modules/drupal/graphql/base/fragment.ParagraphsBlokkliConfigInput.graphql +31 -0
  399. package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +2 -1
  400. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +5 -0
  401. package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +4 -1
  402. package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +28 -12
  403. package/dist/modules/drupal/graphql/base/query.pbEntityConfig.graphql +5 -0
  404. package/dist/modules/drupal/graphql/features/agent.graphql +69 -0
  405. package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
  406. package/dist/modules/drupal/graphql/features/fragments.graphql +2 -0
  407. package/dist/modules/drupal/graphql/features/import-existing.graphql +9 -2
  408. package/dist/modules/drupal/graphql/features/library.graphql +9 -2
  409. package/dist/modules/drupal/graphql/features/media-library.graphql +6 -14
  410. package/dist/modules/drupal/graphql/features/publishNew.graphql +4 -4
  411. package/dist/modules/drupal/graphql/features/scheduler.graphql +31 -0
  412. package/dist/modules/drupal/graphql/features/search.graphql +5 -0
  413. package/dist/modules/drupal/graphql/features/templates.graphql +108 -0
  414. package/dist/modules/drupal/graphql/features/transform.graphql +9 -1
  415. package/dist/modules/drupal/graphql/features/transform_host.graphql +38 -0
  416. package/dist/modules/drupal/graphql/mutations/add_multiple.graphql +25 -0
  417. package/dist/modules/drupal/graphql/mutations/bulk_update_field_values.graphql +15 -0
  418. package/dist/modules/drupal/graphql/mutations/rearrange.graphql +23 -0
  419. package/dist/modules/drupal/graphql/mutations/replace_entity_reference.graphql +25 -0
  420. package/dist/modules/drupal/graphql/mutations/set_paragraph_schedule.graphql +15 -0
  421. package/dist/modules/drupal/graphql/mutations/swap.graphql +16 -0
  422. package/dist/modules/drupal/graphql/mutations/update_host_options.graphql +15 -0
  423. package/dist/modules/drupal/index.d.mts +22 -5
  424. package/dist/modules/drupal/index.mjs +134 -20
  425. package/dist/modules/drupal/runtime/adapter/index.d.ts +2 -1
  426. package/dist/modules/drupal/runtime/adapter/index.js +488 -61
  427. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.d.vue.ts +9 -0
  428. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue +26 -0
  429. package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue.d.ts +9 -0
  430. package/dist/modules/table-of-contents/index.d.mts +11 -0
  431. package/dist/modules/table-of-contents/index.mjs +24 -0
  432. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.d.vue.ts +44 -0
  433. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue +43 -0
  434. package/dist/modules/table-of-contents/runtime/components/BlokkliTableOfContents/index.vue.d.ts +44 -0
  435. package/dist/modules/table-of-contents/runtime/types/index.d.ts +4 -0
  436. package/dist/modules/table-of-contents/runtime/types/index.js +0 -0
  437. package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
  438. package/dist/runtime/components/Blocks/Fragment/index.vue +19 -4
  439. package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +2 -1
  440. package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
  441. package/dist/runtime/components/Blocks/FromLibrary/index.vue +10 -9
  442. package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +3 -2
  443. package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
  444. package/dist/runtime/components/Blocks/NotImplemented/index.vue +24 -0
  445. package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +7 -0
  446. package/dist/runtime/components/BlokkliEditable.d.vue.ts +33 -0
  447. package/dist/runtime/components/BlokkliEditable.vue +50 -18
  448. package/dist/runtime/components/BlokkliEditable.vue.d.ts +16 -3
  449. package/dist/runtime/components/BlokkliField.d.vue.ts +102 -0
  450. package/dist/runtime/components/BlokkliField.vue +42 -51
  451. package/dist/runtime/components/BlokkliField.vue.d.ts +73 -20
  452. package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
  453. package/dist/runtime/components/BlokkliItem.vue +72 -22
  454. package/dist/runtime/components/BlokkliItem.vue.d.ts +12 -7
  455. package/dist/runtime/components/BlokkliProvider.d.vue.ts +84 -0
  456. package/dist/runtime/components/BlokkliProvider.vue +76 -55
  457. package/dist/runtime/components/BlokkliProvider.vue.d.ts +60 -10
  458. package/dist/runtime/composables/defineBlokkli.d.ts +1 -1
  459. package/dist/runtime/composables/defineBlokkli.js +29 -21
  460. package/dist/runtime/composables/defineBlokkliFeature.d.ts +9 -10
  461. package/dist/runtime/composables/defineBlokkliFeature.js +4 -3
  462. package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
  463. package/dist/runtime/composables/defineBlokkliFragment.js +9 -5
  464. package/dist/runtime/composables/defineBlokkliProvider.d.ts +11 -0
  465. package/dist/runtime/composables/defineBlokkliProvider.js +44 -0
  466. package/dist/runtime/composables/useBlokkli.d.ts +7 -2
  467. package/dist/runtime/composables/useBlokkli.js +6 -3
  468. package/dist/runtime/composables/useBlokkliHelper.d.ts +20 -0
  469. package/dist/runtime/composables/useBlokkliHelper.js +91 -0
  470. package/dist/runtime/editor/adapter/index.d.ts +162 -0
  471. package/dist/runtime/editor/adapter/index.js +6 -0
  472. package/dist/runtime/editor/components/Actions/ItemDropdown.d.vue.ts +7 -0
  473. package/dist/runtime/editor/components/Actions/ItemDropdown.vue +71 -0
  474. package/dist/runtime/editor/components/Actions/ItemDropdown.vue.d.ts +7 -0
  475. package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
  476. package/dist/runtime/editor/components/Actions/index.vue +219 -0
  477. package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
  478. package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +31 -0
  479. package/dist/runtime/editor/components/AddListItem/index.vue +103 -0
  480. package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +31 -0
  481. package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
  482. package/dist/runtime/editor/components/AnimationCanvas/index.vue +501 -0
  483. package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
  484. package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +29 -0
  485. package/dist/runtime/editor/components/AppMenu/MenuButton.vue +39 -0
  486. package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +29 -0
  487. package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
  488. package/dist/runtime/editor/components/AppMenu/index.vue +85 -0
  489. package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
  490. package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +35 -0
  491. package/dist/runtime/editor/components/ArtboardTooltip/index.vue +90 -0
  492. package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +35 -0
  493. package/dist/runtime/editor/components/AutoHeight/index.d.vue.ts +16 -0
  494. package/dist/runtime/editor/components/AutoHeight/index.vue +32 -0
  495. package/dist/runtime/editor/components/AutoHeight/index.vue.d.ts +16 -0
  496. package/dist/runtime/editor/components/Banner/index.d.vue.ts +30 -0
  497. package/dist/runtime/editor/components/Banner/index.vue +53 -0
  498. package/dist/runtime/editor/components/Banner/index.vue.d.ts +30 -0
  499. package/dist/runtime/editor/components/BlockPreviewItem/index.d.vue.ts +18 -0
  500. package/dist/runtime/editor/components/BlockPreviewItem/index.vue +83 -0
  501. package/dist/runtime/editor/components/BlockPreviewItem/index.vue.d.ts +18 -0
  502. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.d.vue.ts +13 -0
  503. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue +50 -0
  504. package/dist/runtime/editor/components/BlockPreviewRenderer/Item.vue.d.ts +13 -0
  505. package/dist/runtime/editor/components/BlockPreviewRenderer/index.d.vue.ts +11 -0
  506. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +33 -0
  507. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +11 -0
  508. package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
  509. package/dist/runtime/editor/components/BlockProxy/index.vue +88 -0
  510. package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
  511. package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
  512. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
  513. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
  514. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +13 -0
  515. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +96 -0
  516. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +13 -0
  517. package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +19 -0
  518. package/dist/runtime/editor/components/BundleSelector/index.vue +190 -0
  519. package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +19 -0
  520. package/dist/runtime/editor/components/Dialog/index.d.vue.ts +49 -0
  521. package/dist/runtime/editor/components/Dialog/index.vue +134 -0
  522. package/dist/runtime/editor/components/Dialog/index.vue.d.ts +49 -0
  523. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.d.vue.ts +19 -0
  524. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue +106 -0
  525. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue.d.ts +19 -0
  526. package/dist/runtime/editor/components/DiffApproval/Highlight/index.d.vue.ts +22 -0
  527. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +50 -0
  528. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue.d.ts +22 -0
  529. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.d.vue.ts +24 -0
  530. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +113 -0
  531. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue.d.ts +24 -0
  532. package/dist/runtime/editor/components/DiffApproval/index.d.vue.ts +19 -0
  533. package/dist/runtime/editor/components/DiffApproval/index.vue +158 -0
  534. package/dist/runtime/editor/components/DiffApproval/index.vue.d.ts +19 -0
  535. package/dist/runtime/editor/components/DiffApproval/types.d.ts +7 -0
  536. package/dist/runtime/editor/components/DiffApproval/types.js +0 -0
  537. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.d.vue.ts +9 -0
  538. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue +31 -0
  539. package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue.d.ts +9 -0
  540. package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +7 -0
  541. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +15 -0
  542. package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +7 -0
  543. package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
  544. package/dist/runtime/editor/components/DiffViewer/State.vue +249 -0
  545. package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
  546. package/dist/runtime/editor/components/DraggableList.d.vue.ts +31 -0
  547. package/dist/runtime/editor/components/DraggableList.vue +148 -0
  548. package/dist/runtime/editor/components/DraggableList.vue.d.ts +31 -0
  549. package/dist/runtime/editor/components/Dropdown/index.d.vue.ts +27 -0
  550. package/dist/runtime/editor/components/Dropdown/index.vue +107 -0
  551. package/dist/runtime/editor/components/Dropdown/index.vue.d.ts +27 -0
  552. package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +13 -0
  553. package/dist/runtime/editor/components/DropdownItem/index.vue +16 -0
  554. package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +13 -0
  555. package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
  556. package/dist/runtime/editor/components/EditIndicator.vue +151 -0
  557. package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
  558. package/dist/runtime/editor/components/EditProvider.d.vue.ts +36 -0
  559. package/dist/runtime/editor/components/EditProvider.vue +430 -0
  560. package/dist/runtime/editor/components/EditProvider.vue.d.ts +36 -0
  561. package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
  562. package/dist/runtime/editor/components/FeaturesRenderer/index.vue +80 -0
  563. package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
  564. package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +36 -0
  565. package/dist/runtime/editor/components/FlexTextarea/index.vue +102 -0
  566. package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +36 -0
  567. package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
  568. package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
  569. package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
  570. package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
  571. package/dist/runtime/editor/components/Form/Datepicker/index.vue +198 -0
  572. package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
  573. package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
  574. package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
  575. package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
  576. package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
  577. package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +23 -0
  578. package/dist/runtime/editor/components/Form/Radio/index.vue +34 -0
  579. package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +23 -0
  580. package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
  581. package/dist/runtime/editor/components/Form/RadioTabs/index.vue +37 -0
  582. package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
  583. package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
  584. package/dist/runtime/editor/components/Form/Select/index.vue +29 -0
  585. package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
  586. package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +22 -0
  587. package/dist/runtime/editor/components/Form/Text/index.vue +46 -0
  588. package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +22 -0
  589. package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +22 -0
  590. package/dist/runtime/editor/components/Form/Textarea/index.vue +34 -0
  591. package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +22 -0
  592. package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +27 -0
  593. package/dist/runtime/editor/components/Form/Toggle/index.vue +26 -0
  594. package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +27 -0
  595. package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
  596. package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
  597. package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
  598. package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
  599. package/dist/runtime/editor/components/FormOverlay/index.vue +55 -0
  600. package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
  601. package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
  602. package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
  603. package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
  604. package/dist/runtime/editor/components/Icon/index.vue +35 -0
  605. package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
  606. package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
  607. package/dist/runtime/editor/components/Indicators/index.vue +133 -0
  608. package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
  609. package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +23 -0
  610. package/dist/runtime/editor/components/InfoBox/index.vue +19 -0
  611. package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +23 -0
  612. package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +10 -0
  613. package/dist/runtime/editor/components/ItemIcon/index.vue +45 -0
  614. package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +10 -0
  615. package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
  616. package/dist/runtime/editor/components/ItemIconBox/index.vue +43 -0
  617. package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
  618. package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
  619. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
  620. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
  621. package/dist/runtime/editor/components/Konami/Game/blokkli.png +0 -0
  622. package/dist/runtime/editor/components/Konami/Game/charmap.d.ts +2 -0
  623. package/dist/runtime/editor/components/Konami/Game/charmap.js +168 -0
  624. package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
  625. package/dist/runtime/editor/components/Konami/Game/index.vue +751 -0
  626. package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
  627. package/dist/runtime/editor/components/Konami/Game/textRendering.d.ts +8 -0
  628. package/dist/runtime/editor/components/Konami/Game/textRendering.js +138 -0
  629. package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
  630. package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
  631. package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
  632. package/dist/runtime/editor/components/Konami/index.vue +42 -0
  633. package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
  634. package/dist/runtime/editor/components/Loading/index.d.vue.ts +9 -0
  635. package/dist/runtime/editor/components/Loading/index.vue +22 -0
  636. package/dist/runtime/editor/components/Loading/index.vue.d.ts +9 -0
  637. package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
  638. package/dist/runtime/editor/components/Messages/Item/index.vue +105 -0
  639. package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
  640. package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
  641. package/dist/runtime/editor/components/Messages/index.vue +41 -0
  642. package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
  643. package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +29 -0
  644. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +278 -0
  645. package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +29 -0
  646. package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
  647. package/dist/runtime/editor/components/Overlay/index.vue +70 -0
  648. package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
  649. package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
  650. package/dist/runtime/editor/components/Pagination/index.vue +19 -0
  651. package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
  652. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
  653. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
  654. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
  655. package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
  656. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
  657. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
  658. package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
  659. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +43 -0
  660. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
  661. package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
  662. package/dist/runtime/editor/components/PluginConfigForm/index.vue +63 -0
  663. package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
  664. package/dist/runtime/editor/components/Popup/index.d.vue.ts +30 -0
  665. package/dist/runtime/editor/components/Popup/index.vue +82 -0
  666. package/dist/runtime/editor/components/Popup/index.vue.d.ts +30 -0
  667. package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +31 -0
  668. package/dist/runtime/editor/components/PreviewProvider.vue +177 -0
  669. package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +31 -0
  670. package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +17 -0
  671. package/dist/runtime/editor/components/RelativeTime/index.vue +73 -0
  672. package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +17 -0
  673. package/dist/runtime/editor/components/Resizable/index.d.vue.ts +14 -0
  674. package/dist/runtime/editor/components/Resizable/index.vue +83 -0
  675. package/dist/runtime/editor/components/Resizable/index.vue.d.ts +14 -0
  676. package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
  677. package/dist/runtime/editor/components/ScaleToFit/index.vue +70 -0
  678. package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
  679. package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
  680. package/dist/runtime/editor/components/ScheduleDate/index.vue +131 -0
  681. package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
  682. package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
  683. package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
  684. package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
  685. package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
  686. package/dist/runtime/editor/components/ShortcutIndicator/index.vue +79 -0
  687. package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
  688. package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
  689. package/dist/runtime/editor/components/Sortli/index.vue +81 -0
  690. package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
  691. package/dist/runtime/editor/components/StatusIcon/index.d.vue.ts +9 -0
  692. package/dist/runtime/editor/components/StatusIcon/index.vue +31 -0
  693. package/dist/runtime/editor/components/StatusIcon/index.vue.d.ts +9 -0
  694. package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
  695. package/dist/runtime/editor/components/SystemRequirements/index.vue +85 -0
  696. package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
  697. package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
  698. package/dist/runtime/editor/components/Toolbar/index.vue +190 -0
  699. package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
  700. package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
  701. package/dist/runtime/editor/components/Transition/Height.vue +96 -0
  702. package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
  703. package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
  704. package/dist/runtime/editor/components/Transition/index.vue +42 -0
  705. package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
  706. package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
  707. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
  708. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
  709. package/dist/runtime/editor/components/index.d.ts +49 -0
  710. package/dist/runtime/editor/components/index.js +98 -0
  711. package/dist/runtime/editor/composables/addElementClasses.d.ts +2 -0
  712. package/dist/runtime/editor/composables/addElementClasses.js +24 -0
  713. package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
  714. package/dist/runtime/editor/composables/defineAddAction.js +10 -0
  715. package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
  716. package/dist/runtime/editor/composables/defineCommands.js +10 -0
  717. package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
  718. package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
  719. package/dist/runtime/editor/composables/defineDropHandler.d.ts +3 -0
  720. package/dist/runtime/editor/composables/defineDropHandler.js +10 -0
  721. package/dist/runtime/editor/composables/defineElementStyle.d.ts +2 -0
  722. package/dist/runtime/editor/composables/defineElementStyle.js +33 -0
  723. package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
  724. package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
  725. package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
  726. package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
  727. package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
  728. package/dist/runtime/editor/composables/defineRenderer.js +9 -0
  729. package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
  730. package/dist/runtime/editor/composables/defineShortcut.js +18 -0
  731. package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
  732. package/dist/runtime/editor/composables/defineTourItem.js +10 -0
  733. package/dist/runtime/editor/composables/index.d.ts +25 -0
  734. package/dist/runtime/editor/composables/index.js +25 -0
  735. package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
  736. package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
  737. package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
  738. package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
  739. package/dist/runtime/editor/composables/onElementResize.d.ts +3 -0
  740. package/dist/runtime/editor/composables/onElementResize.js +36 -0
  741. package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
  742. package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
  743. package/dist/runtime/editor/composables/useBlockRegistration.d.ts +5 -0
  744. package/dist/runtime/editor/composables/useBlockRegistration.js +41 -0
  745. package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
  746. package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
  747. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
  748. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
  749. package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
  750. package/dist/runtime/editor/composables/useDialog.js +16 -0
  751. package/dist/runtime/editor/composables/useEditableFieldOverride.d.ts +26 -0
  752. package/dist/runtime/editor/composables/useEditableFieldOverride.js +135 -0
  753. package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
  754. package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
  755. package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +16 -0
  756. package/dist/runtime/editor/composables/useGlobalBlokkliObject.js +36 -0
  757. package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
  758. package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
  759. package/dist/runtime/editor/composables/useStickyToolbar.d.ts +24 -0
  760. package/dist/runtime/editor/composables/useStickyToolbar.js +250 -0
  761. package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
  762. package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
  763. package/dist/runtime/editor/css/output.css +1 -0
  764. package/dist/runtime/editor/events/index.d.ts +278 -0
  765. package/dist/runtime/editor/events/index.js +6 -0
  766. package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +15 -0
  767. package/dist/runtime/editor/features/add-list/Actions/Action.vue +60 -0
  768. package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +15 -0
  769. package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +16 -0
  770. package/dist/runtime/editor/features/add-list/Actions/index.vue +61 -0
  771. package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +16 -0
  772. package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +21 -0
  773. package/dist/runtime/editor/features/add-list/Blocks/index.vue +305 -0
  774. package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +21 -0
  775. package/dist/runtime/editor/features/add-list/Help/Item.d.vue.ts +12 -0
  776. package/dist/runtime/editor/features/add-list/Help/Item.vue +189 -0
  777. package/dist/runtime/editor/features/add-list/Help/Item.vue.d.ts +12 -0
  778. package/dist/runtime/editor/features/add-list/Help/index.d.vue.ts +13 -0
  779. package/dist/runtime/editor/features/add-list/Help/index.vue +127 -0
  780. package/dist/runtime/editor/features/add-list/Help/index.vue.d.ts +13 -0
  781. package/dist/runtime/editor/features/add-list/docs.md +4 -0
  782. package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
  783. package/dist/runtime/editor/features/add-list/index.vue +305 -0
  784. package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
  785. package/dist/runtime/editor/features/add-list/types.d.ts +24 -0
  786. package/dist/runtime/editor/features/add-list/types.js +0 -0
  787. package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
  788. package/dist/runtime/editor/features/analyze/Icon.vue +85 -0
  789. package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
  790. package/dist/runtime/editor/features/analyze/Main.d.vue.ts +17 -0
  791. package/dist/runtime/editor/features/analyze/Main.vue +372 -0
  792. package/dist/runtime/editor/features/analyze/Main.vue.d.ts +17 -0
  793. package/dist/runtime/editor/features/analyze/Renderer/fragment.glsl +74 -0
  794. package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +22 -0
  795. package/dist/runtime/editor/features/analyze/Renderer/index.vue +259 -0
  796. package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +22 -0
  797. package/dist/runtime/editor/features/analyze/Renderer/vertex.glsl +94 -0
  798. package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +15 -0
  799. package/dist/runtime/editor/features/analyze/Results/Results.vue +102 -0
  800. package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +15 -0
  801. package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +23 -0
  802. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +56 -0
  803. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +23 -0
  804. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +16 -0
  805. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +80 -0
  806. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +16 -0
  807. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +16 -0
  808. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +123 -0
  809. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +16 -0
  810. package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
  811. package/dist/runtime/editor/features/analyze/Results/Status.vue +18 -0
  812. package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
  813. package/dist/runtime/editor/features/analyze/Summary/Chart.d.vue.ts +18 -0
  814. package/dist/runtime/editor/features/analyze/Summary/Chart.vue +96 -0
  815. package/dist/runtime/editor/features/analyze/Summary/Chart.vue.d.ts +18 -0
  816. package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
  817. package/dist/runtime/editor/features/analyze/Summary/index.vue +77 -0
  818. package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
  819. package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
  820. package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
  821. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.d.ts +4 -0
  822. package/dist/runtime/editor/features/analyze/analyzers/defineAnalyzer.js +5 -0
  823. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +38 -0
  824. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.js +51 -0
  825. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.d.ts +5 -0
  826. package/dist/runtime/editor/features/analyze/analyzers/helpers/collectTextElements.js +98 -0
  827. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.d.ts +3 -0
  828. package/dist/runtime/editor/features/analyze/analyzers/helpers/normalizeArray.js +13 -0
  829. package/dist/runtime/editor/features/analyze/analyzers/index.d.ts +2 -0
  830. package/dist/runtime/editor/features/analyze/analyzers/index.js +2 -0
  831. package/dist/runtime/editor/features/analyze/analyzers/readability.d.ts +2 -0
  832. package/dist/runtime/editor/features/analyze/analyzers/readability.js +101 -0
  833. package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +77 -0
  834. package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
  835. package/dist/runtime/editor/features/analyze/helper.d.ts +5 -0
  836. package/dist/runtime/editor/features/analyze/helper.js +28 -0
  837. package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
  838. package/dist/runtime/editor/features/analyze/index.vue +60 -0
  839. package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
  840. package/dist/runtime/editor/features/analyze/readability/adapterTypes.d.ts +9 -0
  841. package/dist/runtime/editor/features/analyze/readability/adapterTypes.js +0 -0
  842. package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.d.ts +6 -0
  843. package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.js +200 -0
  844. package/dist/runtime/editor/features/analyze/readability/chunkHtml.d.ts +15 -0
  845. package/dist/runtime/editor/features/analyze/readability/chunkHtml.js +97 -0
  846. package/dist/runtime/editor/features/analyze/readability/types.d.ts +72 -0
  847. package/dist/runtime/editor/features/analyze/readability/types.js +0 -0
  848. package/dist/runtime/editor/features/analyze/types.d.ts +9 -0
  849. package/dist/runtime/editor/features/analyze/types.js +0 -0
  850. package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
  851. package/dist/runtime/editor/features/anchors/Overlay/index.vue +53 -0
  852. package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
  853. package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
  854. package/dist/runtime/editor/features/anchors/index.vue +32 -0
  855. package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
  856. package/dist/runtime/editor/features/anchors/types.d.ts +8 -0
  857. package/dist/runtime/editor/features/anchors/types.js +0 -0
  858. package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
  859. package/dist/runtime/editor/features/artboard/Overview/index.vue +122 -0
  860. package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
  861. package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
  862. package/dist/runtime/editor/features/artboard/Renderer.vue +369 -0
  863. package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
  864. package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
  865. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +48 -0
  866. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
  867. package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
  868. package/dist/runtime/editor/features/artboard/index.vue +92 -0
  869. package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
  870. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +7 -0
  871. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +7 -0
  872. package/dist/runtime/editor/features/assistant/Overlay/index.d.vue.ts +9 -0
  873. package/dist/runtime/editor/features/assistant/Overlay/index.vue +108 -0
  874. package/dist/runtime/editor/features/assistant/Overlay/index.vue.d.ts +9 -0
  875. package/dist/runtime/editor/features/assistant/docs.md +7 -0
  876. package/dist/runtime/editor/features/assistant/index.d.vue.ts +3 -0
  877. package/dist/runtime/editor/features/assistant/index.vue +66 -0
  878. package/dist/runtime/editor/features/assistant/index.vue.d.ts +3 -0
  879. package/dist/runtime/editor/features/assistant/types.d.ts +37 -0
  880. package/dist/runtime/editor/features/assistant/types.js +0 -0
  881. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +29 -0
  882. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +154 -0
  883. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +29 -0
  884. package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
  885. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +232 -0
  886. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
  887. package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
  888. package/dist/runtime/editor/features/block-scheduler/index.vue +96 -0
  889. package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
  890. package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
  891. package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
  892. package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
  893. package/dist/runtime/editor/features/breadcrumbs/index.vue +209 -0
  894. package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
  895. package/dist/runtime/editor/features/clipboard/DropElement/Video.d.vue.ts +8 -0
  896. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue +50 -0
  897. package/dist/runtime/editor/features/clipboard/DropElement/Video.vue.d.ts +8 -0
  898. package/dist/runtime/editor/features/clipboard/DropElement/helpers.d.ts +1 -0
  899. package/dist/runtime/editor/features/clipboard/DropElement/helpers.js +14 -0
  900. package/dist/runtime/editor/features/clipboard/DropElement/index.d.vue.ts +16 -0
  901. package/dist/runtime/editor/features/clipboard/DropElement/index.vue +97 -0
  902. package/dist/runtime/editor/features/clipboard/DropElement/index.vue.d.ts +16 -0
  903. package/dist/runtime/editor/features/clipboard/helpers.d.ts +15 -0
  904. package/dist/runtime/editor/features/clipboard/helpers.js +62 -0
  905. package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
  906. package/dist/runtime/editor/features/clipboard/index.vue +858 -0
  907. package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
  908. package/dist/runtime/editor/features/clipboard/types.d.ts +111 -0
  909. package/dist/runtime/editor/features/clipboard/types.js +0 -0
  910. package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
  911. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +49 -0
  912. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
  913. package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
  914. package/dist/runtime/editor/features/command-palette/Palette/index.vue +229 -0
  915. package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
  916. package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
  917. package/dist/runtime/editor/features/command-palette/index.vue +51 -0
  918. package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
  919. package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
  920. package/dist/runtime/editor/features/command-palette/types.js +0 -0
  921. package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
  922. package/dist/runtime/editor/features/comments/AddForm/index.vue +44 -0
  923. package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
  924. package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +24 -0
  925. package/dist/runtime/editor/features/comments/Comment/index.vue +45 -0
  926. package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +24 -0
  927. package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +15 -0
  928. package/dist/runtime/editor/features/comments/CommentInput/index.vue +29 -0
  929. package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +15 -0
  930. package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +21 -0
  931. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +94 -0
  932. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +21 -0
  933. package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +19 -0
  934. package/dist/runtime/editor/features/comments/Overlay/index.vue +113 -0
  935. package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +19 -0
  936. package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
  937. package/dist/runtime/editor/features/comments/index.vue +113 -0
  938. package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
  939. package/dist/runtime/editor/features/comments/types.d.ts +32 -0
  940. package/dist/runtime/editor/features/comments/types.js +0 -0
  941. package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
  942. package/dist/runtime/editor/features/conversions/index.vue +84 -0
  943. package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
  944. package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
  945. package/dist/runtime/editor/features/conversions/types.js +0 -0
  946. package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
  947. package/dist/runtime/editor/features/debug/DebugSection.vue +24 -0
  948. package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
  949. package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
  950. package/dist/runtime/editor/features/debug/Main.vue +80 -0
  951. package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
  952. package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
  953. package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
  954. package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
  955. package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
  956. package/dist/runtime/editor/features/debug/Section/Features.vue +34 -0
  957. package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
  958. package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
  959. package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
  960. package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
  961. package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
  962. package/dist/runtime/editor/features/debug/Section/Keyboard.vue +17 -0
  963. package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
  964. package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
  965. package/dist/runtime/editor/features/debug/Section/Logging.vue +66 -0
  966. package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
  967. package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
  968. package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
  969. package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
  970. package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
  971. package/dist/runtime/editor/features/debug/Section/Selection.vue +25 -0
  972. package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
  973. package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
  974. package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
  975. package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
  976. package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
  977. package/dist/runtime/editor/features/debug/index.vue +31 -0
  978. package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
  979. package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
  980. package/dist/runtime/editor/features/delete/index.vue +68 -0
  981. package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
  982. package/dist/runtime/editor/features/delete/types.d.ts +8 -0
  983. package/dist/runtime/editor/features/delete/types.js +0 -0
  984. package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
  985. package/dist/runtime/editor/features/dev-mode/index.vue +122 -0
  986. package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
  987. package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
  988. package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
  989. package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
  990. package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
  991. package/dist/runtime/editor/features/diff/index.vue +35 -0
  992. package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
  993. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +27 -0
  994. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +88 -0
  995. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +27 -0
  996. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +30 -0
  997. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +290 -0
  998. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +30 -0
  999. package/dist/runtime/editor/features/dragging-overlay/Renderer/fragment.glsl +152 -0
  1000. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +30 -0
  1001. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +909 -0
  1002. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +30 -0
  1003. package/dist/runtime/editor/features/dragging-overlay/Renderer/vertex.glsl +183 -0
  1004. package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
  1005. package/dist/runtime/editor/features/dragging-overlay/index.vue +345 -0
  1006. package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
  1007. package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
  1008. package/dist/runtime/editor/features/duplicate/index.vue +105 -0
  1009. package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
  1010. package/dist/runtime/editor/features/duplicate/types.d.ts +8 -0
  1011. package/dist/runtime/editor/features/duplicate/types.js +0 -0
  1012. package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
  1013. package/dist/runtime/editor/features/edit/index.vue +123 -0
  1014. package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
  1015. package/dist/runtime/editor/features/edit/types.d.ts +9 -0
  1016. package/dist/runtime/editor/features/edit/types.js +0 -0
  1017. package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
  1018. package/dist/runtime/editor/features/edit-form/Frame/index.vue +70 -0
  1019. package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
  1020. package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
  1021. package/dist/runtime/editor/features/edit-form/index.vue +176 -0
  1022. package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
  1023. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
  1024. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
  1025. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +19 -0
  1026. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +116 -0
  1027. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +19 -0
  1028. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
  1029. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +71 -0
  1030. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
  1031. package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
  1032. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +231 -0
  1033. package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
  1034. package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
  1035. package/dist/runtime/editor/features/editable-field/index.vue +150 -0
  1036. package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
  1037. package/dist/runtime/editor/features/editable-field/types.d.ts +64 -0
  1038. package/dist/runtime/editor/features/editable-field/types.js +0 -0
  1039. package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
  1040. package/dist/runtime/editor/features/editable-mask/index.vue +39 -0
  1041. package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
  1042. package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
  1043. package/dist/runtime/editor/features/entity-title/index.vue +136 -0
  1044. package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
  1045. package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
  1046. package/dist/runtime/editor/features/exit/index.vue +38 -0
  1047. package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
  1048. package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
  1049. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +34 -0
  1050. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
  1051. package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
  1052. package/dist/runtime/editor/features/fragments/Dialog/index.vue +122 -0
  1053. package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
  1054. package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
  1055. package/dist/runtime/editor/features/fragments/index.vue +76 -0
  1056. package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
  1057. package/dist/runtime/editor/features/fragments/types.d.ts +15 -0
  1058. package/dist/runtime/editor/features/fragments/types.js +0 -0
  1059. package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
  1060. package/dist/runtime/editor/features/grid/index.vue +37 -0
  1061. package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
  1062. package/dist/runtime/editor/features/grid/types.d.ts +8 -0
  1063. package/dist/runtime/editor/features/grid/types.js +0 -0
  1064. package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
  1065. package/dist/runtime/editor/features/help/Shortcuts/index.vue +60 -0
  1066. package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
  1067. package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
  1068. package/dist/runtime/editor/features/help/index.vue +49 -0
  1069. package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
  1070. package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
  1071. package/dist/runtime/editor/features/history/List/index.vue +128 -0
  1072. package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
  1073. package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
  1074. package/dist/runtime/editor/features/history/index.vue +151 -0
  1075. package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
  1076. package/dist/runtime/editor/features/history/types.d.ts +12 -0
  1077. package/dist/runtime/editor/features/history/types.js +0 -0
  1078. package/dist/runtime/editor/features/hover/Renderer/fragment.glsl +141 -0
  1079. package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
  1080. package/dist/runtime/editor/features/hover/Renderer/index.vue +475 -0
  1081. package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
  1082. package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +155 -0
  1083. package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
  1084. package/dist/runtime/editor/features/hover/index.vue +28 -0
  1085. package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
  1086. package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +15 -0
  1087. package/dist/runtime/editor/features/import-existing/Dialog/index.vue +117 -0
  1088. package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +15 -0
  1089. package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
  1090. package/dist/runtime/editor/features/import-existing/index.vue +80 -0
  1091. package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
  1092. package/dist/runtime/editor/features/import-existing/types.d.ts +23 -0
  1093. package/dist/runtime/editor/features/import-existing/types.js +0 -0
  1094. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.d.vue.ts +10 -0
  1095. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue +21 -0
  1096. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue.d.ts +10 -0
  1097. package/dist/runtime/editor/features/library/LibraryDialog/index.d.vue.ts +13 -0
  1098. package/dist/runtime/editor/features/library/LibraryDialog/index.vue +143 -0
  1099. package/dist/runtime/editor/features/library/LibraryDialog/index.vue.d.ts +13 -0
  1100. package/dist/runtime/editor/features/library/ReusableDialog/index.d.vue.ts +13 -0
  1101. package/dist/runtime/editor/features/library/ReusableDialog/index.vue +104 -0
  1102. package/dist/runtime/editor/features/library/ReusableDialog/index.vue.d.ts +13 -0
  1103. package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
  1104. package/dist/runtime/editor/features/library/index.vue +226 -0
  1105. package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
  1106. package/dist/runtime/editor/features/library/types.d.ts +87 -0
  1107. package/dist/runtime/editor/features/library/types.js +0 -0
  1108. package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
  1109. package/dist/runtime/editor/features/media-library/Library/Item.vue +57 -0
  1110. package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
  1111. package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
  1112. package/dist/runtime/editor/features/media-library/Library/index.vue +200 -0
  1113. package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
  1114. package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
  1115. package/dist/runtime/editor/features/media-library/index.vue +139 -0
  1116. package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
  1117. package/dist/runtime/editor/features/media-library/types.d.ts +85 -0
  1118. package/dist/runtime/editor/features/media-library/types.js +0 -0
  1119. package/dist/runtime/editor/features/multi-select/Renderer/fragment.glsl +77 -0
  1120. package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
  1121. package/dist/runtime/editor/features/multi-select/Renderer/index.vue +297 -0
  1122. package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
  1123. package/dist/runtime/editor/features/multi-select/Renderer/vertex.glsl +207 -0
  1124. package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
  1125. package/dist/runtime/editor/features/multi-select/index.vue +69 -0
  1126. package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
  1127. package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
  1128. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +46 -0
  1129. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
  1130. package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
  1131. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +112 -0
  1132. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
  1133. package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
  1134. package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
  1135. package/dist/runtime/editor/features/options/Form/ComplexType/index.d.vue.ts +11 -0
  1136. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +36 -0
  1137. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue.d.ts +11 -0
  1138. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
  1139. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
  1140. package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
  1141. package/dist/runtime/editor/features/options/Form/Group.vue +23 -0
  1142. package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
  1143. package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +15 -0
  1144. package/dist/runtime/editor/features/options/Form/Item.vue +160 -0
  1145. package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +15 -0
  1146. package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +22 -0
  1147. package/dist/runtime/editor/features/options/Form/Number/index.vue +54 -0
  1148. package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +22 -0
  1149. package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +37 -0
  1150. package/dist/runtime/editor/features/options/Form/Radios/index.vue +129 -0
  1151. package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +37 -0
  1152. package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
  1153. package/dist/runtime/editor/features/options/Form/Range/index.vue +37 -0
  1154. package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
  1155. package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
  1156. package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
  1157. package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
  1158. package/dist/runtime/editor/features/options/Form/index.vue +360 -0
  1159. package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
  1160. package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
  1161. package/dist/runtime/editor/features/options/index.vue +85 -0
  1162. package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
  1163. package/dist/runtime/editor/features/options/types.d.ts +21 -0
  1164. package/dist/runtime/editor/features/options/types.js +0 -0
  1165. package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +10 -0
  1166. package/dist/runtime/editor/features/ownership/Banner/index.vue +44 -0
  1167. package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +10 -0
  1168. package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
  1169. package/dist/runtime/editor/features/ownership/index.vue +44 -0
  1170. package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
  1171. package/dist/runtime/editor/features/ownership/types.d.ts +13 -0
  1172. package/dist/runtime/editor/features/ownership/types.js +0 -0
  1173. package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
  1174. package/dist/runtime/editor/features/preview/index.vue +41 -0
  1175. package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
  1176. package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
  1177. package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
  1178. package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
  1179. package/dist/runtime/editor/features/preview-grant/index.vue +71 -0
  1180. package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
  1181. package/dist/runtime/editor/features/preview-grant/types.d.ts +10 -0
  1182. package/dist/runtime/editor/features/preview-grant/types.js +0 -0
  1183. package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
  1184. package/dist/runtime/editor/features/proxy-view/index.vue +40 -0
  1185. package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
  1186. package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
  1187. package/dist/runtime/editor/features/publish/Dialog/Item.vue +145 -0
  1188. package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
  1189. package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
  1190. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +47 -0
  1191. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
  1192. package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
  1193. package/dist/runtime/editor/features/publish/Dialog/Summary.vue +83 -0
  1194. package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
  1195. package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
  1196. package/dist/runtime/editor/features/publish/Dialog/index.vue +579 -0
  1197. package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
  1198. package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
  1199. package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
  1200. package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
  1201. package/dist/runtime/editor/features/publish/index.vue +135 -0
  1202. package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
  1203. package/dist/runtime/editor/features/publish/types.d.ts +109 -0
  1204. package/dist/runtime/editor/features/publish/types.js +0 -0
  1205. package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
  1206. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +76 -0
  1207. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
  1208. package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
  1209. package/dist/runtime/editor/features/responsive-preview/index.vue +193 -0
  1210. package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
  1211. package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
  1212. package/dist/runtime/editor/features/revert/index.vue +68 -0
  1213. package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
  1214. package/dist/runtime/editor/features/revert/types.d.ts +8 -0
  1215. package/dist/runtime/editor/features/revert/types.js +0 -0
  1216. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
  1217. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +167 -0
  1218. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
  1219. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
  1220. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +172 -0
  1221. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
  1222. package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
  1223. package/dist/runtime/editor/features/search/Overlay/index.vue +186 -0
  1224. package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
  1225. package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
  1226. package/dist/runtime/editor/features/search/index.vue +161 -0
  1227. package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
  1228. package/dist/runtime/editor/features/search/types.d.ts +88 -0
  1229. package/dist/runtime/editor/features/search/types.js +0 -0
  1230. package/dist/runtime/editor/features/selection/AddButtons/Renderer/fragment.glsl +108 -0
  1231. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +39 -0
  1232. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +623 -0
  1233. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +39 -0
  1234. package/dist/runtime/editor/features/selection/AddButtons/Renderer/vertex.glsl +119 -0
  1235. package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
  1236. package/dist/runtime/editor/features/selection/AddButtons/index.vue +454 -0
  1237. package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
  1238. package/dist/runtime/editor/features/selection/Renderer/fragment.glsl +147 -0
  1239. package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
  1240. package/dist/runtime/editor/features/selection/Renderer/index.vue +283 -0
  1241. package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
  1242. package/dist/runtime/editor/features/selection/Renderer/vertex.glsl +108 -0
  1243. package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
  1244. package/dist/runtime/editor/features/selection/index.vue +308 -0
  1245. package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
  1246. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
  1247. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +126 -0
  1248. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
  1249. package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
  1250. package/dist/runtime/editor/features/settings/Dialog/index.vue +132 -0
  1251. package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
  1252. package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
  1253. package/dist/runtime/editor/features/settings/index.vue +80 -0
  1254. package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
  1255. package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
  1256. package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
  1257. package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
  1258. package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
  1259. package/dist/runtime/editor/features/structure/List/Item/index.vue +127 -0
  1260. package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
  1261. package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
  1262. package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
  1263. package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
  1264. package/dist/runtime/editor/features/structure/index.vue +99 -0
  1265. package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
  1266. package/dist/runtime/editor/features/structure/types.d.ts +11 -0
  1267. package/dist/runtime/editor/features/structure/types.js +0 -0
  1268. package/dist/runtime/editor/features/templates/CreateDialog/index.d.vue.ts +12 -0
  1269. package/dist/runtime/editor/features/templates/CreateDialog/index.vue +116 -0
  1270. package/dist/runtime/editor/features/templates/CreateDialog/index.vue.d.ts +12 -0
  1271. package/dist/runtime/editor/features/templates/Dialog/Item/index.d.vue.ts +11 -0
  1272. package/dist/runtime/editor/features/templates/Dialog/Item/index.vue +20 -0
  1273. package/dist/runtime/editor/features/templates/Dialog/Item/index.vue.d.ts +11 -0
  1274. package/dist/runtime/editor/features/templates/Dialog/index.d.vue.ts +13 -0
  1275. package/dist/runtime/editor/features/templates/Dialog/index.vue +122 -0
  1276. package/dist/runtime/editor/features/templates/Dialog/index.vue.d.ts +13 -0
  1277. package/dist/runtime/editor/features/templates/ManageDialog/Item.d.vue.ts +8 -0
  1278. package/dist/runtime/editor/features/templates/ManageDialog/Item.vue +147 -0
  1279. package/dist/runtime/editor/features/templates/ManageDialog/Item.vue.d.ts +8 -0
  1280. package/dist/runtime/editor/features/templates/ManageDialog/index.d.vue.ts +7 -0
  1281. package/dist/runtime/editor/features/templates/ManageDialog/index.vue +107 -0
  1282. package/dist/runtime/editor/features/templates/ManageDialog/index.vue.d.ts +7 -0
  1283. package/dist/runtime/editor/features/templates/index.d.vue.ts +3 -0
  1284. package/dist/runtime/editor/features/templates/index.vue +166 -0
  1285. package/dist/runtime/editor/features/templates/index.vue.d.ts +3 -0
  1286. package/dist/runtime/editor/features/templates/types.d.ts +66 -0
  1287. package/dist/runtime/editor/features/templates/types.js +0 -0
  1288. package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
  1289. package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
  1290. package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
  1291. package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
  1292. package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
  1293. package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
  1294. package/dist/runtime/editor/features/theme/index.vue +109 -0
  1295. package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
  1296. package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
  1297. package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
  1298. package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
  1299. package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
  1300. package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
  1301. package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
  1302. package/dist/runtime/editor/features/tour/Overlay/index.vue +218 -0
  1303. package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
  1304. package/dist/runtime/editor/features/tour/docs.md +0 -0
  1305. package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
  1306. package/dist/runtime/editor/features/tour/index.vue +54 -0
  1307. package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
  1308. package/dist/runtime/editor/features/tour/types.d.ts +6 -0
  1309. package/dist/runtime/editor/features/tour/types.js +0 -0
  1310. package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
  1311. package/dist/runtime/editor/features/transform/Dialog/index.vue +226 -0
  1312. package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
  1313. package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
  1314. package/dist/runtime/editor/features/transform/index.vue +250 -0
  1315. package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
  1316. package/dist/runtime/editor/features/transform/types.d.ts +107 -0
  1317. package/dist/runtime/editor/features/transform/types.js +0 -0
  1318. package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +7 -0
  1319. package/dist/runtime/editor/features/translations/Banner/index.vue +48 -0
  1320. package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +7 -0
  1321. package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
  1322. package/dist/runtime/editor/features/translations/index.vue +211 -0
  1323. package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
  1324. package/dist/runtime/editor/features/translations/types.d.ts +16 -0
  1325. package/dist/runtime/editor/features/translations/types.js +0 -0
  1326. package/dist/runtime/editor/features/validations/Overlay/Item.d.vue.ts +7 -0
  1327. package/dist/runtime/editor/features/validations/Overlay/Item.vue +36 -0
  1328. package/dist/runtime/editor/features/validations/Overlay/Item.vue.d.ts +7 -0
  1329. package/dist/runtime/editor/features/validations/Overlay/index.d.vue.ts +7 -0
  1330. package/dist/runtime/editor/features/validations/Overlay/index.vue +42 -0
  1331. package/dist/runtime/editor/features/validations/Overlay/index.vue.d.ts +7 -0
  1332. package/dist/runtime/editor/features/validations/SidebarItem/index.d.vue.ts +10 -0
  1333. package/dist/runtime/editor/features/validations/SidebarItem/index.vue +41 -0
  1334. package/dist/runtime/editor/features/validations/SidebarItem/index.vue.d.ts +10 -0
  1335. package/dist/runtime/editor/features/validations/index.d.vue.ts +3 -0
  1336. package/dist/runtime/editor/features/validations/index.vue +69 -0
  1337. package/dist/runtime/editor/features/validations/index.vue.d.ts +3 -0
  1338. package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
  1339. package/dist/runtime/editor/helpers/array/index.js +4 -0
  1340. package/dist/runtime/editor/helpers/bundles/index.d.ts +1 -0
  1341. package/dist/runtime/editor/helpers/bundles/index.js +8 -0
  1342. package/dist/runtime/editor/helpers/clipboardData/index.d.ts +11 -0
  1343. package/dist/runtime/editor/helpers/clipboardData/index.js +157 -0
  1344. package/dist/runtime/editor/helpers/color/index.d.ts +6 -0
  1345. package/dist/runtime/editor/helpers/color/index.js +48 -0
  1346. package/dist/runtime/editor/helpers/date/index.d.ts +1 -0
  1347. package/dist/runtime/editor/helpers/date/index.js +3 -0
  1348. package/dist/runtime/editor/helpers/diff/index.d.ts +11 -0
  1349. package/dist/runtime/editor/helpers/diff/index.js +227 -0
  1350. package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
  1351. package/dist/runtime/editor/helpers/dom/index.js +107 -0
  1352. package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
  1353. package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
  1354. package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
  1355. package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
  1356. package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
  1357. package/dist/runtime/editor/helpers/geometry/index.js +191 -0
  1358. package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
  1359. package/dist/runtime/editor/helpers/math/index.js +10 -0
  1360. package/dist/runtime/editor/helpers/options/index.d.ts +20 -0
  1361. package/dist/runtime/editor/helpers/options/index.js +65 -0
  1362. package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
  1363. package/dist/runtime/editor/helpers/uuid/index.js +18 -0
  1364. package/dist/runtime/editor/helpers/vue/index.d.ts +1 -0
  1365. package/dist/runtime/editor/helpers/vue/index.js +10 -0
  1366. package/dist/runtime/editor/helpers/webgl/index.d.ts +49 -0
  1367. package/dist/runtime/editor/helpers/webgl/index.js +347 -0
  1368. package/dist/runtime/editor/icons/svg/dock-window.svg +1 -0
  1369. package/dist/runtime/editor/icons/svg/duplicate.svg +1 -0
  1370. package/dist/runtime/editor/icons/svg/reusable.svg +1 -0
  1371. package/dist/runtime/editor/icons/svg/stars.svg +5 -0
  1372. package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
  1373. package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
  1374. package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
  1375. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
  1376. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +75 -0
  1377. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
  1378. package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
  1379. package/dist/runtime/editor/plugins/ContextMenu/index.vue +39 -0
  1380. package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
  1381. package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
  1382. package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
  1383. package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +85 -0
  1384. package/dist/runtime/editor/plugins/ItemAction/index.vue +93 -0
  1385. package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +85 -0
  1386. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
  1387. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +284 -0
  1388. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
  1389. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +241 -0
  1390. package/dist/runtime/editor/plugins/Sidebar/index.vue +281 -0
  1391. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +241 -0
  1392. package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +165 -0
  1393. package/dist/runtime/editor/plugins/ToolbarButton/index.vue +91 -0
  1394. package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +165 -0
  1395. package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
  1396. package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
  1397. package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
  1398. package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +139 -0
  1399. package/dist/runtime/editor/plugins/ViewOption/index.vue +98 -0
  1400. package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +139 -0
  1401. package/dist/runtime/editor/plugins/index.d.ts +9 -0
  1402. package/dist/runtime/editor/plugins/index.js +18 -0
  1403. package/dist/runtime/editor/providers/adapters.d.ts +33 -0
  1404. package/dist/runtime/editor/providers/adapters.js +88 -0
  1405. package/dist/runtime/editor/providers/analyze.d.ts +44 -0
  1406. package/dist/runtime/editor/providers/analyze.js +81 -0
  1407. package/dist/runtime/editor/providers/animation.d.ts +208 -0
  1408. package/dist/runtime/editor/providers/animation.js +527 -0
  1409. package/dist/runtime/editor/providers/blocks.d.ts +32 -0
  1410. package/dist/runtime/editor/providers/blocks.js +113 -0
  1411. package/dist/runtime/editor/providers/commands.d.ts +41 -0
  1412. package/dist/runtime/editor/providers/commands.js +16 -0
  1413. package/dist/runtime/editor/providers/debug.d.ts +126 -0
  1414. package/dist/runtime/editor/providers/debug.js +132 -0
  1415. package/dist/runtime/editor/providers/definition.d.ts +99 -0
  1416. package/dist/runtime/editor/providers/definition.js +134 -0
  1417. package/dist/runtime/editor/providers/directive.d.ts +116 -0
  1418. package/dist/runtime/editor/providers/directive.js +242 -0
  1419. package/dist/runtime/editor/providers/dom.d.ts +240 -0
  1420. package/dist/runtime/editor/providers/dom.js +540 -0
  1421. package/dist/runtime/editor/providers/dragdrop.d.ts +55 -0
  1422. package/dist/runtime/editor/providers/dragdrop.js +37 -0
  1423. package/dist/runtime/editor/providers/element.d.ts +63 -0
  1424. package/dist/runtime/editor/providers/element.js +35 -0
  1425. package/dist/runtime/editor/providers/features.d.ts +57 -0
  1426. package/dist/runtime/editor/providers/features.js +53 -0
  1427. package/dist/runtime/editor/providers/fieldValue.d.ts +54 -0
  1428. package/dist/runtime/editor/providers/fieldValue.js +126 -0
  1429. package/dist/runtime/editor/providers/fieldValueAdapterTypes.d.ts +13 -0
  1430. package/dist/runtime/editor/providers/fieldValueAdapterTypes.js +0 -0
  1431. package/dist/runtime/editor/providers/fields.d.ts +41 -0
  1432. package/dist/runtime/editor/providers/fields.js +99 -0
  1433. package/dist/runtime/editor/providers/icons.d.ts +6 -0
  1434. package/dist/runtime/editor/providers/icons.js +16 -0
  1435. package/dist/runtime/editor/providers/indicators.d.ts +44 -0
  1436. package/dist/runtime/editor/providers/indicators.js +23 -0
  1437. package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
  1438. package/dist/runtime/editor/providers/keyboard.js +98 -0
  1439. package/dist/runtime/editor/providers/permissions.d.ts +6 -0
  1440. package/dist/runtime/editor/providers/permissions.js +9 -0
  1441. package/dist/runtime/editor/providers/plugin.d.ts +82 -0
  1442. package/dist/runtime/editor/providers/plugin.js +64 -0
  1443. package/dist/runtime/editor/providers/readability.d.ts +23 -0
  1444. package/dist/runtime/editor/providers/readability.js +130 -0
  1445. package/dist/runtime/editor/providers/selection.d.ts +84 -0
  1446. package/dist/runtime/editor/providers/selection.js +159 -0
  1447. package/dist/runtime/editor/providers/state.d.ts +264 -0
  1448. package/dist/runtime/editor/providers/state.js +427 -0
  1449. package/dist/runtime/editor/providers/storage.d.ts +64 -0
  1450. package/dist/runtime/editor/providers/storage.js +133 -0
  1451. package/dist/runtime/editor/providers/texts.js +43 -0
  1452. package/dist/runtime/editor/providers/theme.d.ts +119 -0
  1453. package/dist/runtime/editor/providers/theme.js +140 -0
  1454. package/dist/runtime/editor/providers/tour.d.ts +49 -0
  1455. package/dist/runtime/editor/providers/tour.js +19 -0
  1456. package/dist/runtime/editor/providers/types.d.ts +181 -0
  1457. package/dist/runtime/editor/providers/types.js +170 -0
  1458. package/dist/runtime/editor/providers/ui.d.ts +403 -0
  1459. package/dist/runtime/editor/providers/ui.js +457 -0
  1460. package/dist/runtime/editor/translations/de.json +3094 -0
  1461. package/dist/runtime/editor/translations/fr.json +3094 -0
  1462. package/dist/runtime/editor/translations/gsw_CH.json +3094 -0
  1463. package/dist/runtime/editor/translations/it.json +3094 -0
  1464. package/dist/runtime/editor/types/actions.d.ts +19 -0
  1465. package/dist/runtime/editor/types/actions.js +0 -0
  1466. package/dist/runtime/editor/types/app.d.ts +72 -0
  1467. package/dist/runtime/editor/types/app.js +0 -0
  1468. package/dist/runtime/editor/types/definitions.d.ts +23 -0
  1469. package/dist/runtime/editor/types/definitions.js +0 -0
  1470. package/dist/runtime/editor/types/draggable.d.ts +10 -0
  1471. package/dist/runtime/editor/types/draggable.js +0 -0
  1472. package/dist/runtime/editor/types/features.d.ts +11 -0
  1473. package/dist/runtime/editor/types/features.js +0 -0
  1474. package/dist/runtime/editor/types/field.d.ts +59 -0
  1475. package/dist/runtime/editor/types/field.js +0 -0
  1476. package/dist/runtime/editor/types/geometry.d.ts +9 -0
  1477. package/dist/runtime/editor/types/geometry.js +0 -0
  1478. package/dist/runtime/editor/types/index.d.ts +1 -0
  1479. package/dist/runtime/editor/types/index.js +0 -0
  1480. package/dist/runtime/editor/types/permissions.d.ts +17 -0
  1481. package/dist/runtime/editor/types/permissions.js +0 -0
  1482. package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
  1483. package/dist/runtime/editor/types/pluginConfig.js +0 -0
  1484. package/dist/runtime/editor/types/selection.d.ts +6 -0
  1485. package/dist/runtime/editor/types/selection.js +0 -0
  1486. package/dist/runtime/editor/types/state.d.ts +76 -0
  1487. package/dist/runtime/editor/types/state.js +0 -0
  1488. package/dist/runtime/editor/types/style.d.ts +29 -0
  1489. package/dist/runtime/editor/types/style.js +0 -0
  1490. package/dist/runtime/editor/types/ui.d.ts +44 -0
  1491. package/dist/runtime/editor/types/ui.js +0 -0
  1492. package/dist/runtime/helpers/imports/index.d.ts +9 -1
  1493. package/dist/runtime/helpers/imports/index.js +24 -6
  1494. package/dist/runtime/helpers/index.d.ts +0 -80
  1495. package/dist/runtime/helpers/index.js +0 -470
  1496. package/dist/runtime/helpers/injections.d.ts +136 -0
  1497. package/dist/runtime/helpers/injections.js +75 -0
  1498. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +3 -2
  1499. package/dist/runtime/helpers/runtimeHelpers/index.js +77 -19
  1500. package/dist/runtime/plugins/blokkliDirectives.d.ts +2 -0
  1501. package/dist/runtime/plugins/blokkliDirectives.js +109 -0
  1502. package/dist/runtime/types/blockOptions.d.ts +4 -0
  1503. package/dist/runtime/types/blockOptions.js +0 -0
  1504. package/dist/runtime/types/definitions.d.ts +131 -0
  1505. package/dist/runtime/types/definitions.js +0 -0
  1506. package/dist/runtime/types/directives.d.ts +1 -0
  1507. package/dist/runtime/types/directives.js +0 -0
  1508. package/dist/runtime/types/field.d.ts +26 -0
  1509. package/dist/runtime/types/field.js +0 -0
  1510. package/dist/runtime/types/index.d.ts +7 -1177
  1511. package/dist/runtime/types/provider.d.ts +7 -0
  1512. package/dist/runtime/types/provider.js +0 -0
  1513. package/dist/runtime/types/vue.d.ts +1 -0
  1514. package/dist/runtime/types/vue.js +0 -0
  1515. package/dist/shared/editor.6D5vApr0.mjs +30 -0
  1516. package/dist/shared/editor.9vf8ZnOp.mjs +288 -0
  1517. package/dist/shared/editor.BdBm1Z7C.d.mts +590 -0
  1518. package/dist/shared/editor.CGf7C_0M.mjs +10 -0
  1519. package/dist/types.d.mts +8 -0
  1520. package/package.json +158 -66
  1521. package/dist/runtime/adapter/index.d.ts +0 -406
  1522. package/dist/runtime/adapter/index.js +0 -3
  1523. package/dist/runtime/blokkliPlugins/AddAction/index.vue +0 -72
  1524. package/dist/runtime/blokkliPlugins/AddAction/index.vue.d.ts +0 -26
  1525. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +0 -69
  1526. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +0 -12
  1527. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +0 -38
  1528. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +0 -37
  1529. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +0 -21
  1530. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +0 -56
  1531. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +0 -41
  1532. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +0 -86
  1533. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +0 -83
  1534. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +0 -38
  1535. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +0 -17
  1536. package/dist/runtime/blokkliPlugins/MenuButton/index.vue +0 -66
  1537. package/dist/runtime/blokkliPlugins/MenuButton/index.vue.d.ts +0 -32
  1538. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +0 -271
  1539. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +0 -91
  1540. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +0 -239
  1541. package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +0 -85
  1542. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +0 -85
  1543. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +0 -48
  1544. package/dist/runtime/blokkliPlugins/TourItem/index.vue +0 -36
  1545. package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +0 -20
  1546. package/dist/runtime/blokkliPlugins/ViewOption/index.vue +0 -94
  1547. package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +0 -39
  1548. package/dist/runtime/blokkliPlugins/index.d.ts +0 -12
  1549. package/dist/runtime/blokkliPlugins/index.js +0 -24
  1550. package/dist/runtime/components/Blocks/Fragment/icon.svg +0 -1
  1551. package/dist/runtime/components/Edit/Actions/index.vue +0 -241
  1552. package/dist/runtime/components/Edit/Actions/index.vue.d.ts +0 -2
  1553. package/dist/runtime/components/Edit/AddListItem/index.vue +0 -95
  1554. package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +0 -28
  1555. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +0 -87
  1556. package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +0 -2
  1557. package/dist/runtime/components/Edit/AppMenu/index.vue +0 -57
  1558. package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +0 -2
  1559. package/dist/runtime/components/Edit/BlockProxy/index.vue +0 -92
  1560. package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +0 -10
  1561. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +0 -60
  1562. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +0 -23
  1563. package/dist/runtime/components/Edit/Dialog/index.vue +0 -140
  1564. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +0 -44
  1565. package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -364
  1566. package/dist/runtime/components/Edit/DragInteractions/index.vue.d.ts +0 -2
  1567. package/dist/runtime/components/Edit/DraggableList.vue +0 -189
  1568. package/dist/runtime/components/Edit/DraggableList.vue.d.ts +0 -27
  1569. package/dist/runtime/components/Edit/EditIndicator.vue +0 -70
  1570. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +0 -11
  1571. package/dist/runtime/components/Edit/EditProvider.vue +0 -237
  1572. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +0 -26
  1573. package/dist/runtime/components/Edit/Features/AddList/docs.md +0 -4
  1574. package/dist/runtime/components/Edit/Features/AddList/index.vue +0 -181
  1575. package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +0 -2
  1576. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +0 -93
  1577. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +0 -6
  1578. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue +0 -42
  1579. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +0 -7
  1580. package/dist/runtime/components/Edit/Features/Artboard/index.vue +0 -299
  1581. package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +0 -2
  1582. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -6
  1583. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +0 -134
  1584. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +0 -8
  1585. package/dist/runtime/components/Edit/Features/Assistant/docs.md +0 -7
  1586. package/dist/runtime/components/Edit/Features/Assistant/index.vue +0 -59
  1587. package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +0 -2
  1588. package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +0 -15
  1589. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +0 -371
  1590. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue.d.ts +0 -2
  1591. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue +0 -60
  1592. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +0 -3
  1593. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +0 -54
  1594. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +0 -3
  1595. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +0 -61
  1596. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +0 -10
  1597. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +0 -434
  1598. package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +0 -2
  1599. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +0 -51
  1600. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue.d.ts +0 -22
  1601. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +0 -248
  1602. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +0 -6
  1603. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +0 -46
  1604. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +0 -2
  1605. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +0 -29
  1606. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +0 -8
  1607. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +0 -45
  1608. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +0 -23
  1609. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +0 -88
  1610. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +0 -19
  1611. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +0 -103
  1612. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +0 -18
  1613. package/dist/runtime/components/Edit/Features/Comments/index.vue +0 -99
  1614. package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +0 -2
  1615. package/dist/runtime/components/Edit/Features/Conversions/index.vue +0 -82
  1616. package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +0 -2
  1617. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +0 -69
  1618. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +0 -2
  1619. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +0 -84
  1620. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +0 -2
  1621. package/dist/runtime/components/Edit/Features/Debug/index.vue +0 -186
  1622. package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +0 -2
  1623. package/dist/runtime/components/Edit/Features/Delete/index.vue +0 -66
  1624. package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +0 -2
  1625. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +0 -197
  1626. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +0 -2
  1627. package/dist/runtime/components/Edit/Features/Diff/index.vue +0 -35
  1628. package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +0 -2
  1629. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +0 -307
  1630. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +0 -27
  1631. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +0 -90
  1632. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +0 -713
  1633. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue.d.ts +0 -156
  1634. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +0 -77
  1635. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +0 -310
  1636. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +0 -2
  1637. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +0 -93
  1638. package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +0 -2
  1639. package/dist/runtime/components/Edit/Features/Edit/index.vue +0 -82
  1640. package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +0 -2
  1641. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +0 -64
  1642. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +0 -11
  1643. package/dist/runtime/components/Edit/Features/EditForm/index.vue +0 -181
  1644. package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +0 -2
  1645. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +0 -12
  1646. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +0 -52
  1647. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +0 -16
  1648. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +0 -70
  1649. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +0 -16
  1650. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -295
  1651. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +0 -15
  1652. package/dist/runtime/components/Edit/Features/EditableField/index.vue +0 -145
  1653. package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +0 -2
  1654. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +0 -56
  1655. package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +0 -2
  1656. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +0 -100
  1657. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +0 -2
  1658. package/dist/runtime/components/Edit/Features/Exit/index.vue +0 -35
  1659. package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +0 -2
  1660. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +0 -22
  1661. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue.d.ts +0 -2
  1662. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +0 -41
  1663. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue.d.ts +0 -2
  1664. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +0 -61
  1665. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +0 -8
  1666. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +0 -120
  1667. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +0 -12
  1668. package/dist/runtime/components/Edit/Features/Fragments/index.vue +0 -76
  1669. package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +0 -2
  1670. package/dist/runtime/components/Edit/Features/Grid/index.vue +0 -37
  1671. package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +0 -2
  1672. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +0 -60
  1673. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +0 -2
  1674. package/dist/runtime/components/Edit/Features/Help/index.vue +0 -49
  1675. package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +0 -2
  1676. package/dist/runtime/components/Edit/Features/History/List/index.vue +0 -128
  1677. package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +0 -5
  1678. package/dist/runtime/components/Edit/Features/History/index.vue +0 -123
  1679. package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +0 -2
  1680. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +0 -122
  1681. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +0 -14
  1682. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +0 -79
  1683. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +0 -2
  1684. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -168
  1685. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +0 -13
  1686. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +0 -71
  1687. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +0 -9
  1688. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +0 -156
  1689. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +0 -12
  1690. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +0 -85
  1691. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +0 -12
  1692. package/dist/runtime/components/Edit/Features/Library/index.vue +0 -175
  1693. package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +0 -2
  1694. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +0 -40
  1695. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +0 -19
  1696. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +0 -173
  1697. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -6
  1698. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +0 -149
  1699. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +0 -2
  1700. package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +0 -57
  1701. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/fragment.glsl +0 -90
  1702. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +0 -229
  1703. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue.d.ts +0 -12
  1704. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/vertex.glsl +0 -182
  1705. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +0 -64
  1706. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +0 -2
  1707. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +0 -45
  1708. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +0 -14
  1709. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +0 -112
  1710. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +0 -24
  1711. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +0 -12
  1712. package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +0 -20
  1713. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +0 -23
  1714. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +0 -29
  1715. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +0 -175
  1716. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -14
  1717. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +0 -64
  1718. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +0 -21
  1719. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +0 -111
  1720. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +0 -30
  1721. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue +0 -37
  1722. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +0 -18
  1723. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +0 -17
  1724. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +0 -337
  1725. package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +0 -9
  1726. package/dist/runtime/components/Edit/Features/Options/index.vue +0 -60
  1727. package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +0 -2
  1728. package/dist/runtime/components/Edit/Features/Ownership/index.vue +0 -50
  1729. package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +0 -2
  1730. package/dist/runtime/components/Edit/Features/Preview/index.vue +0 -41
  1731. package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +0 -2
  1732. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +0 -5
  1733. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +0 -69
  1734. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +0 -2
  1735. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +0 -36
  1736. package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +0 -2
  1737. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +0 -118
  1738. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +0 -18
  1739. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +0 -251
  1740. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +0 -19
  1741. package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +0 -7
  1742. package/dist/runtime/components/Edit/Features/Publish/index.vue +0 -116
  1743. package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +0 -2
  1744. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +0 -75
  1745. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +0 -27
  1746. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +0 -192
  1747. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +0 -2
  1748. package/dist/runtime/components/Edit/Features/Revert/index.vue +0 -63
  1749. package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +0 -2
  1750. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +0 -144
  1751. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +0 -17
  1752. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +0 -161
  1753. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +0 -18
  1754. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +0 -175
  1755. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +0 -12
  1756. package/dist/runtime/components/Edit/Features/Search/index.vue +0 -72
  1757. package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +0 -2
  1758. package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +0 -133
  1759. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +0 -108
  1760. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +0 -9
  1761. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +0 -90
  1762. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +0 -42
  1763. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue.d.ts +0 -5
  1764. package/dist/runtime/components/Edit/Features/Selection/index.vue +0 -209
  1765. package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +0 -2
  1766. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +0 -131
  1767. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +0 -9
  1768. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +0 -129
  1769. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +0 -6
  1770. package/dist/runtime/components/Edit/Features/Settings/index.vue +0 -84
  1771. package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +0 -2
  1772. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +0 -145
  1773. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +0 -15
  1774. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +0 -121
  1775. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +0 -12
  1776. package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +0 -12
  1777. package/dist/runtime/components/Edit/Features/Structure/index.vue +0 -75
  1778. package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +0 -2
  1779. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +0 -60
  1780. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +0 -7
  1781. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +0 -2
  1782. package/dist/runtime/components/Edit/Features/Theme/index.vue +0 -108
  1783. package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +0 -2
  1784. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +0 -12
  1785. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +0 -39
  1786. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +0 -2
  1787. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +0 -215
  1788. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +0 -6
  1789. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +0 -34
  1790. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +0 -8
  1791. package/dist/runtime/components/Edit/Features/Tour/index.vue +0 -42
  1792. package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +0 -2
  1793. package/dist/runtime/components/Edit/Features/Transform/index.vue +0 -141
  1794. package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +0 -2
  1795. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +0 -42
  1796. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +0 -6
  1797. package/dist/runtime/components/Edit/Features/Translations/index.vue +0 -214
  1798. package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +0 -2
  1799. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +0 -36
  1800. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +0 -6
  1801. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +0 -42
  1802. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +0 -6
  1803. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +0 -42
  1804. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +0 -9
  1805. package/dist/runtime/components/Edit/Features/Validations/index.vue +0 -64
  1806. package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +0 -2
  1807. package/dist/runtime/components/Edit/Features/index.vue +0 -52
  1808. package/dist/runtime/components/Edit/Features/index.vue.d.ts +0 -6
  1809. package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +0 -20
  1810. package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +0 -14
  1811. package/dist/runtime/components/Edit/Form/Textarea/index.vue +0 -27
  1812. package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +0 -16
  1813. package/dist/runtime/components/Edit/Form/Toggle/index.vue +0 -21
  1814. package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +0 -14
  1815. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +0 -28
  1816. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +0 -18
  1817. package/dist/runtime/components/Edit/FormOverlay/index.vue +0 -46
  1818. package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +0 -25
  1819. package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +0 -20
  1820. package/dist/runtime/components/Edit/Icon/index.vue +0 -18
  1821. package/dist/runtime/components/Edit/Icon/index.vue.d.ts +0 -7
  1822. package/dist/runtime/components/Edit/InfoBox/index.vue +0 -13
  1823. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +0 -5
  1824. package/dist/runtime/components/Edit/ItemIcon/index.vue +0 -27
  1825. package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +0 -6
  1826. package/dist/runtime/components/Edit/Loading/index.vue +0 -18
  1827. package/dist/runtime/components/Edit/Loading/index.vue.d.ts +0 -6
  1828. package/dist/runtime/components/Edit/Messages/Item/index.vue +0 -96
  1829. package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +0 -11
  1830. package/dist/runtime/components/Edit/Messages/index.vue +0 -31
  1831. package/dist/runtime/components/Edit/Messages/index.vue.d.ts +0 -2
  1832. package/dist/runtime/components/Edit/Pagination/index.vue +0 -19
  1833. package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +0 -12
  1834. package/dist/runtime/components/Edit/PreviewProvider.vue +0 -177
  1835. package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +0 -24
  1836. package/dist/runtime/components/Edit/RelativeTime/index.vue +0 -31
  1837. package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +0 -15
  1838. package/dist/runtime/components/Edit/Resizable/index.vue +0 -80
  1839. package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +0 -13
  1840. package/dist/runtime/components/Edit/ScaleToFit/index.vue +0 -70
  1841. package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +0 -15
  1842. package/dist/runtime/components/Edit/ScrollBoundary/index.vue +0 -23
  1843. package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +0 -23
  1844. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +0 -78
  1845. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +0 -20
  1846. package/dist/runtime/components/Edit/Sortli/index.vue +0 -83
  1847. package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +0 -14
  1848. package/dist/runtime/components/Edit/SystemRequirements/index.vue +0 -77
  1849. package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +0 -2
  1850. package/dist/runtime/components/Edit/Toolbar/index.vue +0 -91
  1851. package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +0 -6
  1852. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +0 -53
  1853. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +0 -20
  1854. package/dist/runtime/components/Edit/index.d.ts +0 -21
  1855. package/dist/runtime/components/Edit/index.js +0 -42
  1856. package/dist/runtime/constants/index.d.ts +0 -4
  1857. package/dist/runtime/constants/index.js +0 -8
  1858. package/dist/runtime/css/output.css +0 -1
  1859. package/dist/runtime/helpers/DragStyle/index.d.ts +0 -12
  1860. package/dist/runtime/helpers/DragStyle/index.js +0 -86
  1861. package/dist/runtime/helpers/animationProvider.d.ts +0 -25
  1862. package/dist/runtime/helpers/animationProvider.js +0 -123
  1863. package/dist/runtime/helpers/commandsProvider.d.ts +0 -9
  1864. package/dist/runtime/helpers/commandsProvider.js +0 -16
  1865. package/dist/runtime/helpers/composables/defineCommands.d.ts +0 -2
  1866. package/dist/runtime/helpers/composables/defineCommands.js +0 -10
  1867. package/dist/runtime/helpers/composables/defineDropAreas.d.ts +0 -2
  1868. package/dist/runtime/helpers/composables/defineDropAreas.js +0 -10
  1869. package/dist/runtime/helpers/composables/defineShortcut.d.ts +0 -2
  1870. package/dist/runtime/helpers/composables/defineShortcut.js +0 -19
  1871. package/dist/runtime/helpers/composables/defineTourItem.d.ts +0 -2
  1872. package/dist/runtime/helpers/composables/defineTourItem.js +0 -10
  1873. package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +0 -2
  1874. package/dist/runtime/helpers/composables/onBlokkliEvent.js +0 -10
  1875. package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +0 -2
  1876. package/dist/runtime/helpers/composables/onBroadcastEvent.js +0 -10
  1877. package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +0 -1
  1878. package/dist/runtime/helpers/composables/useAnimationFrame.js +0 -14
  1879. package/dist/runtime/helpers/composables/useDebugLogger.d.ts +0 -2
  1880. package/dist/runtime/helpers/composables/useDebugLogger.js +0 -5
  1881. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +0 -5
  1882. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +0 -26
  1883. package/dist/runtime/helpers/debugProvider.d.ts +0 -23
  1884. package/dist/runtime/helpers/debugProvider.js +0 -65
  1885. package/dist/runtime/helpers/definitionProvider.d.ts +0 -18
  1886. package/dist/runtime/helpers/definitionProvider.js +0 -96
  1887. package/dist/runtime/helpers/dom/index.d.ts +0 -5
  1888. package/dist/runtime/helpers/dom/index.js +0 -37
  1889. package/dist/runtime/helpers/domProvider.d.ts +0 -49
  1890. package/dist/runtime/helpers/domProvider.js +0 -467
  1891. package/dist/runtime/helpers/dropAreaProvider.d.ts +0 -9
  1892. package/dist/runtime/helpers/dropAreaProvider.js +0 -22
  1893. package/dist/runtime/helpers/eventBus.d.ts +0 -3
  1894. package/dist/runtime/helpers/eventBus.js +0 -5
  1895. package/dist/runtime/helpers/featuresProvider.d.ts +0 -17
  1896. package/dist/runtime/helpers/featuresProvider.js +0 -53
  1897. package/dist/runtime/helpers/frameEventBus.d.ts +0 -9
  1898. package/dist/runtime/helpers/frameEventBus.js +0 -2
  1899. package/dist/runtime/helpers/keyboardProvider.d.ts +0 -18
  1900. package/dist/runtime/helpers/keyboardProvider.js +0 -90
  1901. package/dist/runtime/helpers/selectionProvider.d.ts +0 -63
  1902. package/dist/runtime/helpers/selectionProvider.js +0 -154
  1903. package/dist/runtime/helpers/stateProvider.d.ts +0 -37
  1904. package/dist/runtime/helpers/stateProvider.js +0 -253
  1905. package/dist/runtime/helpers/storageProvider.d.ts +0 -15
  1906. package/dist/runtime/helpers/storageProvider.js +0 -61
  1907. package/dist/runtime/helpers/symbols.d.ts +0 -23
  1908. package/dist/runtime/helpers/symbols.js +0 -25
  1909. package/dist/runtime/helpers/textProvider.js +0 -20
  1910. package/dist/runtime/helpers/themeProvider.d.ts +0 -27
  1911. package/dist/runtime/helpers/themeProvider.js +0 -127
  1912. package/dist/runtime/helpers/tourProvider.d.ts +0 -11
  1913. package/dist/runtime/helpers/tourProvider.js +0 -19
  1914. package/dist/runtime/helpers/transform.d.ts +0 -2
  1915. package/dist/runtime/helpers/transform.js +0 -17
  1916. package/dist/runtime/helpers/typesProvider.d.ts +0 -36
  1917. package/dist/runtime/helpers/typesProvider.js +0 -138
  1918. package/dist/runtime/helpers/uiProvider.d.ts +0 -41
  1919. package/dist/runtime/helpers/uiProvider.js +0 -298
  1920. package/dist/runtime/helpers/webgl/index.d.ts +0 -37
  1921. package/dist/runtime/helpers/webgl/index.js +0 -165
  1922. package/dist/runtime/icons/alert.svg +0 -6
  1923. package/dist/runtime/icons/area.svg +0 -5
  1924. package/dist/runtime/icons/arrow-down.svg +0 -1
  1925. package/dist/runtime/icons/arrow-left.svg +0 -1
  1926. package/dist/runtime/icons/arrow-right.svg +0 -1
  1927. package/dist/runtime/icons/arrow-up.svg +0 -1
  1928. package/dist/runtime/icons/artboard-disabled.svg +0 -9
  1929. package/dist/runtime/icons/artboard-enabled.svg +0 -29
  1930. package/dist/runtime/icons/bug.svg +0 -1
  1931. package/dist/runtime/icons/button-pointer.svg +0 -1
  1932. package/dist/runtime/icons/caret.svg +0 -12
  1933. package/dist/runtime/icons/cellphone.svg +0 -1
  1934. package/dist/runtime/icons/chat-question.svg +0 -1
  1935. package/dist/runtime/icons/check.svg +0 -1
  1936. package/dist/runtime/icons/checkbox.svg +0 -5
  1937. package/dist/runtime/icons/checks.svg +0 -1
  1938. package/dist/runtime/icons/chevron-left.svg +0 -1
  1939. package/dist/runtime/icons/chevron-right.svg +0 -1
  1940. package/dist/runtime/icons/clipboard.svg +0 -5
  1941. package/dist/runtime/icons/close.svg +0 -5
  1942. package/dist/runtime/icons/cog.svg +0 -5
  1943. package/dist/runtime/icons/command.svg +0 -1
  1944. package/dist/runtime/icons/comment.svg +0 -5
  1945. package/dist/runtime/icons/comment_add.svg +0 -5
  1946. package/dist/runtime/icons/convert.svg +0 -1
  1947. package/dist/runtime/icons/cursor-move.svg +0 -1
  1948. package/dist/runtime/icons/dead.svg +0 -1
  1949. package/dist/runtime/icons/delete.svg +0 -8
  1950. package/dist/runtime/icons/diff.svg +0 -1
  1951. package/dist/runtime/icons/drag.svg +0 -1
  1952. package/dist/runtime/icons/duplicate.svg +0 -12
  1953. package/dist/runtime/icons/edit.svg +0 -8
  1954. package/dist/runtime/icons/exit.svg +0 -6
  1955. package/dist/runtime/icons/expand.svg +0 -1
  1956. package/dist/runtime/icons/eye.svg +0 -1
  1957. package/dist/runtime/icons/file.svg +0 -1
  1958. package/dist/runtime/icons/form.svg +0 -1
  1959. package/dist/runtime/icons/fragment.svg +0 -1
  1960. package/dist/runtime/icons/grid.svg +0 -13
  1961. package/dist/runtime/icons/group.svg +0 -5
  1962. package/dist/runtime/icons/help.svg +0 -1
  1963. package/dist/runtime/icons/history.svg +0 -1
  1964. package/dist/runtime/icons/image.svg +0 -1
  1965. package/dist/runtime/icons/import.svg +0 -5
  1966. package/dist/runtime/icons/info.svg +0 -1
  1967. package/dist/runtime/icons/laptop.svg +0 -1
  1968. package/dist/runtime/icons/list-view-grid.svg +0 -1
  1969. package/dist/runtime/icons/list-view-horizontal.svg +0 -1
  1970. package/dist/runtime/icons/magnifier.svg +0 -5
  1971. package/dist/runtime/icons/menu.svg +0 -1
  1972. package/dist/runtime/icons/minus.svg +0 -1
  1973. package/dist/runtime/icons/monitor.svg +0 -1
  1974. package/dist/runtime/icons/multi-select.svg +0 -1
  1975. package/dist/runtime/icons/multimedia.svg +0 -1
  1976. package/dist/runtime/icons/opacity.svg +0 -5
  1977. package/dist/runtime/icons/open_in_new.svg +0 -3
  1978. package/dist/runtime/icons/palette.svg +0 -1
  1979. package/dist/runtime/icons/plus-box.svg +0 -1
  1980. package/dist/runtime/icons/plus.svg +0 -1
  1981. package/dist/runtime/icons/preview.svg +0 -5
  1982. package/dist/runtime/icons/publish.svg +0 -12
  1983. package/dist/runtime/icons/puzzle.svg +0 -1
  1984. package/dist/runtime/icons/qrcode.svg +0 -5
  1985. package/dist/runtime/icons/question.svg +0 -5
  1986. package/dist/runtime/icons/redo.svg +0 -12
  1987. package/dist/runtime/icons/resize.svg +0 -1
  1988. package/dist/runtime/icons/reusable.svg +0 -5
  1989. package/dist/runtime/icons/revert.svg +0 -5
  1990. package/dist/runtime/icons/rotate-phone.svg +0 -1
  1991. package/dist/runtime/icons/sad.svg +0 -1
  1992. package/dist/runtime/icons/save.svg +0 -1
  1993. package/dist/runtime/icons/script.svg +0 -1
  1994. package/dist/runtime/icons/scrolltotop.svg +0 -6
  1995. package/dist/runtime/icons/search.svg +0 -1
  1996. package/dist/runtime/icons/selection.svg +0 -5
  1997. package/dist/runtime/icons/swap-horizontal.svg +0 -1
  1998. package/dist/runtime/icons/tablet.svg +0 -1
  1999. package/dist/runtime/icons/textbox.svg +0 -1
  2000. package/dist/runtime/icons/texturebox.svg +0 -5
  2001. package/dist/runtime/icons/title.svg +0 -1
  2002. package/dist/runtime/icons/tools.svg +0 -1
  2003. package/dist/runtime/icons/translate.svg +0 -5
  2004. package/dist/runtime/icons/tree.svg +0 -5
  2005. package/dist/runtime/icons/tutor.svg +0 -1
  2006. package/dist/runtime/icons/ui-list-horizontal.svg +0 -19
  2007. package/dist/runtime/icons/ui-list-sidebar.svg +0 -21
  2008. package/dist/runtime/icons/ui-list-vertical.svg +0 -9
  2009. package/dist/runtime/icons/undo.svg +0 -12
  2010. package/dist/runtime/icons/upload.svg +0 -1
  2011. package/dist/runtime/icons/user.svg +0 -1
  2012. package/dist/runtime/icons/video-outline.svg +0 -1
  2013. package/dist/runtime/plugins/blokkliEditable.d.ts +0 -2
  2014. package/dist/runtime/plugins/blokkliEditable.js +0 -31
  2015. package/dist/runtime/types/blokkOptions.d.ts +0 -92
  2016. package/dist/runtime/types/theme.d.ts +0 -33
  2017. package/dist/shared/editor.gz_ac6uT.d.mts +0 -431
  2018. /package/dist/{runtime/components/Edit/Features/MediaLibrary/types.js → global/types/adapter.js} +0 -0
  2019. /package/dist/{runtime/components/Edit/Features/Publish/Dialog/types.js → global/types/blockOptions.js} +0 -0
  2020. /package/dist/{runtime/components/Edit/Features/Tour/docs.md → global/types/definitions.js} +0 -0
  2021. /package/dist/{runtime/types/blokkOptions.js → global/types/features.js} +0 -0
  2022. /package/dist/{runtime → global}/types/theme.js +0 -0
  2023. /package/dist/runtime/{components/Edit → editor/components}/Form/Group/index.vue +0 -0
  2024. /package/dist/runtime/{components/Edit → editor/components}/Form/Item/index.vue +0 -0
  2025. /package/dist/runtime/{components/Edit → editor/components}/Highlight/index.vue +0 -0
  2026. /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/Overlay/ResultMarkup/index.vue +0 -0
  2027. /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/docs.md +0 -0
  2028. /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/docs.md +0 -0
  2029. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/docs.md +0 -0
  2030. /package/dist/runtime/{components/Edit/Features/EditableField → editor/features/editable-field}/Overlay/Contenteditable/index.vue +0 -0
  2031. /package/dist/runtime/{components/Edit/Features/Fragments → editor/features/fragments}/docs.md +0 -0
  2032. /package/dist/runtime/{components/Edit/Features/Library → editor/features/library}/docs.md +0 -0
  2033. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Color/index.vue +0 -0
  2034. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/DateTimeLocal/index.vue +0 -0
  2035. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Text/index.vue +0 -0
  2036. /package/dist/runtime/{components/Edit/Features/PreviewGrant → editor/features/preview-grant}/QrCode/index.vue +0 -0
  2037. /package/dist/runtime/{components/Edit/Features/Structure → editor/features/structure}/List/index.vue +0 -0
  2038. /package/dist/runtime/{components/Edit/Features/Theme → editor/features/theme}/GeneratedCode/index.vue +0 -0
  2039. /package/dist/runtime/{components/Edit/Features/TouchActionBar → editor/features/touch-action-bar}/Bar/index.vue +0 -0
  2040. /package/dist/runtime/{components/Edit/Features/Transform → editor/features/transform}/docs.md +0 -0
  2041. /package/dist/runtime/{helpers/easing.d.ts → editor/helpers/easing/index.d.ts} +0 -0
  2042. /package/dist/runtime/{helpers/easing.js → editor/helpers/easing/index.js} +0 -0
  2043. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.d.ts +0 -0
  2044. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.js +0 -0
  2045. /package/dist/runtime/{icons → editor/icons/svg}/arrow-right-thin.svg +0 -0
  2046. /package/dist/runtime/{icons → editor/icons/svg}/artboard.svg +0 -0
  2047. /package/dist/runtime/{icons → editor/icons/svg}/loader.svg +0 -0
  2048. /package/dist/runtime/{icons → editor/icons/svg}/logo.svg +0 -0
  2049. /package/dist/runtime/{icons/detach.svg → editor/icons/svg/reusable-detach.svg} +0 -0
  2050. /package/dist/runtime/{icons → editor/icons/svg}/robot.svg +0 -0
  2051. /package/dist/runtime/{icons → editor/icons/svg}/spinner.svg +0 -0
  2052. /package/dist/runtime/{icons → editor/icons/svg}/star.svg +0 -0
  2053. /package/dist/runtime/{icons → editor/icons/svg}/tiktok.svg +0 -0
  2054. /package/dist/runtime/{icons → editor/icons/svg}/unstar.svg +0 -0
  2055. /package/dist/runtime/{icons → editor/icons/svg}/vimeo.svg +0 -0
  2056. /package/dist/runtime/{icons → editor/icons/svg}/window-maximize.svg +0 -0
  2057. /package/dist/runtime/{icons → editor/icons/svg}/window-minimize.svg +0 -0
  2058. /package/dist/runtime/{icons → editor/icons/svg}/youtube.svg +0 -0
  2059. /package/dist/runtime/{blokkliPlugins → editor/plugins}/DebugOverlay/index.vue +0 -0
  2060. /package/dist/runtime/{helpers/broadcastProvider.d.ts → editor/providers/broadcast.d.ts} +0 -0
  2061. /package/dist/runtime/{helpers/broadcastProvider.js → editor/providers/broadcast.js} +0 -0
  2062. /package/dist/runtime/{helpers/textProvider.d.ts → editor/providers/texts.d.ts} +0 -0
@@ -0,0 +1,3094 @@
1
+ {
2
+ "actions": {
3
+ "source": "Actions",
4
+ "translation": ""
5
+ },
6
+ "actionsDropdownToolip": {
7
+ "source": "Further actions",
8
+ "translation": "Altre azioni"
9
+ },
10
+ "addBlockCommand.appendInField": {
11
+ "source": "Append \"@block\" in \"@field\"",
12
+ "translation": "Aggiungi «@block» in «@field»"
13
+ },
14
+ "addBlockCommand.appendRoot": {
15
+ "source": "Append \"@block\"",
16
+ "translation": "Aggiungi «@block»"
17
+ },
18
+ "addBlockCommand.insertInField": {
19
+ "source": "Insert \"@block\" into \"@field\"",
20
+ "translation": "Inserisci «@block» in «@field»"
21
+ },
22
+ "addButtonAfterBundle": {
23
+ "source": "Add after...",
24
+ "translation": "Aggiungi dopo..."
25
+ },
26
+ "addButtonBeforeBundle": {
27
+ "source": "Add before...",
28
+ "translation": "Aggiungi prima..."
29
+ },
30
+ "addButtonBundleAfter": {
31
+ "source": "Add \"@bundle\" after",
32
+ "translation": "Aggiungi «@bundle» dopo"
33
+ },
34
+ "addButtonBundleBefore": {
35
+ "source": "Add \"@bundle\" before",
36
+ "translation": "Aggiungi «@bundle» prima"
37
+ },
38
+ "addButtonBundleInsideField": {
39
+ "source": "Add \"@bundle\" inside @parentBundle » @fieldLabel",
40
+ "translation": "Aggiungi «@bundle» in @parentBundle » @fieldLabel"
41
+ },
42
+ "addButtonBundleToField": {
43
+ "source": "Add \"@bundle\" to @fieldLabel",
44
+ "translation": ""
45
+ },
46
+ "addButtonInsideField": {
47
+ "source": "Add inside @parentBundle » @fieldLabel...",
48
+ "translation": "Aggiungi in @parentBundle » @fieldLabel..."
49
+ },
50
+ "addButtonToField": {
51
+ "source": "Add to @fieldLabel...",
52
+ "translation": ""
53
+ },
54
+ "addCommentHeader": {
55
+ "source": "Add Comment",
56
+ "translation": ""
57
+ },
58
+ "addCommentToItem": {
59
+ "source": "Add Comment...",
60
+ "translation": "Commenta"
61
+ },
62
+ "addListItemFavoriteAdd": {
63
+ "source": "Add to favorites",
64
+ "translation": "Aggiungi ai preferiti"
65
+ },
66
+ "addListItemFavoriteRemove": {
67
+ "source": "Remove from favorites",
68
+ "translation": "Rimuovi dai preferiti"
69
+ },
70
+ "addListSidebarTitle": {
71
+ "source": "Add blocks",
72
+ "translation": "Aggiungi blocchi"
73
+ },
74
+ "addListTourText": {
75
+ "source": "<p>This shows the list of available blocks that can be placed. Add a block by dragging the icon into the page.</p><p>When an existing block is selected, some blocks may be greyed out. This indicates which blocks can be placed inside or after the selected block.</p>",
76
+ "translation": ""
77
+ },
78
+ "agentPromptReadabilityLabel": {
79
+ "source": "Fix readability...",
80
+ "translation": ""
81
+ },
82
+ "agentPromptReadabilityPrompt": {
83
+ "source": "The readability issues have already been analyzed and the fix has been applied. Do not call any more tools. Just very briefly confirm that you are done.",
84
+ "translation": ""
85
+ },
86
+ "agentPromptReadabilityUserPrompt": {
87
+ "source": "Fix the readability of the selected paragraphs.",
88
+ "translation": ""
89
+ },
90
+ "agentSidebarTooltipLabel": {
91
+ "source": "@name (AI-Assistant)",
92
+ "translation": ""
93
+ },
94
+ "aiAgentAddBlockDone": {
95
+ "source": "Added @bundle",
96
+ "translation": ""
97
+ },
98
+ "aiAgentAddBlocksDone": {
99
+ "source": "Added @count blocks",
100
+ "translation": ""
101
+ },
102
+ "aiAgentAddBlocksRunning": {
103
+ "source": "Adding blocks...",
104
+ "translation": ""
105
+ },
106
+ "aiAgentAddContentSearchBlockDone": {
107
+ "source": "Added @bundle with content ID @id",
108
+ "translation": ""
109
+ },
110
+ "aiAgentAddContentSearchBlockRunning": {
111
+ "source": "Adding content paragraph...",
112
+ "translation": ""
113
+ },
114
+ "aiAgentAddFragmentDone": {
115
+ "source": "Added fragment \"@label\"",
116
+ "translation": ""
117
+ },
118
+ "aiAgentAddFragmentRunning": {
119
+ "source": "Adding fragment...",
120
+ "translation": ""
121
+ },
122
+ "aiAgentAddLibraryItemDone": {
123
+ "source": "Added reusable block",
124
+ "translation": ""
125
+ },
126
+ "aiAgentAddLibraryItemRunning": {
127
+ "source": "Adding reusable block...",
128
+ "translation": ""
129
+ },
130
+ "aiAgentAddMediaBlockDone": {
131
+ "source": "Added @bundle with media ID @id",
132
+ "translation": ""
133
+ },
134
+ "aiAgentAddMediaBlockRunning": {
135
+ "source": "Adding media block...",
136
+ "translation": ""
137
+ },
138
+ "aiAgentAddTemplateDone": {
139
+ "source": "Added template",
140
+ "translation": ""
141
+ },
142
+ "aiAgentAddTemplateRunning": {
143
+ "source": "Adding template...",
144
+ "translation": ""
145
+ },
146
+ "aiAgentAlwaysApprove": {
147
+ "source": "Always",
148
+ "translation": ""
149
+ },
150
+ "aiAgentAnalyzeContentDone": {
151
+ "source": "Analyzed @count results",
152
+ "translation": "@count risultati analizzati"
153
+ },
154
+ "aiAgentAnalyzeContentRunning": {
155
+ "source": "Analyzing content...",
156
+ "translation": "Analisi del contenuto..."
157
+ },
158
+ "aiAgentApprovalAccept": {
159
+ "source": "Accept",
160
+ "translation": ""
161
+ },
162
+ "aiAgentApprovalAccepted": {
163
+ "source": "Accepted",
164
+ "translation": ""
165
+ },
166
+ "aiAgentApprovalHint": {
167
+ "source": "Review changes and accept or reject them individually. Tab/Arrow keys: navigate, Space/Enter: accept/reject.",
168
+ "translation": ""
169
+ },
170
+ "aiAgentApprovalNextChange": {
171
+ "source": "Next change",
172
+ "translation": ""
173
+ },
174
+ "aiAgentApprovalPrevChange": {
175
+ "source": "Previous change",
176
+ "translation": ""
177
+ },
178
+ "aiAgentApprovalRejected": {
179
+ "source": "Rejected",
180
+ "translation": ""
181
+ },
182
+ "aiAgentApprovalToggle": {
183
+ "source": "Toggle approval",
184
+ "translation": ""
185
+ },
186
+ "aiAgentApprove": {
187
+ "source": "Approve",
188
+ "translation": ""
189
+ },
190
+ "aiAgentApprovePlan": {
191
+ "source": "Accept plan",
192
+ "translation": ""
193
+ },
194
+ "aiAgentAskQuestionOther": {
195
+ "source": "None of the above",
196
+ "translation": ""
197
+ },
198
+ "aiAgentAskQuestionOtherPlaceholder": {
199
+ "source": "Type your answer...",
200
+ "translation": ""
201
+ },
202
+ "aiAgentAskQuestionRunning": {
203
+ "source": "Waiting for answer...",
204
+ "translation": ""
205
+ },
206
+ "aiAgentAwaitingApproval": {
207
+ "source": "Awaiting your approval...",
208
+ "translation": ""
209
+ },
210
+ "aiAgentBatchRewriteAllApplied": {
211
+ "source": "All @count changes applied",
212
+ "translation": ""
213
+ },
214
+ "aiAgentBatchRewriteAllRejected": {
215
+ "source": "All changes rejected",
216
+ "translation": ""
217
+ },
218
+ "aiAgentBatchRewriteApply": {
219
+ "source": "Apply @count of @total",
220
+ "translation": ""
221
+ },
222
+ "aiAgentBatchRewriteReasonPlaceholder": {
223
+ "source": "Reason for rejection (optional)",
224
+ "translation": ""
225
+ },
226
+ "aiAgentBatchRewriteSomeApplied": {
227
+ "source": "@applied of @total changes applied",
228
+ "translation": ""
229
+ },
230
+ "aiAgentBatchRewriteTextRunning": {
231
+ "source": "Rewriting multiple texts...",
232
+ "translation": ""
233
+ },
234
+ "aiAgentBlockNotFound": {
235
+ "source": "Block not found",
236
+ "translation": ""
237
+ },
238
+ "aiAgentCancelled": {
239
+ "source": "Cancelled",
240
+ "translation": ""
241
+ },
242
+ "aiAgentCheckReadabilityDone": {
243
+ "source": "Checked readability for @count texts",
244
+ "translation": ""
245
+ },
246
+ "aiAgentCheckReadabilityRunning": {
247
+ "source": "Checking readability...",
248
+ "translation": ""
249
+ },
250
+ "aiAgentCompletePlanStep": {
251
+ "source": "Completed: @label",
252
+ "translation": ""
253
+ },
254
+ "aiAgentConfirm": {
255
+ "source": "Confirm",
256
+ "translation": ""
257
+ },
258
+ "aiAgentConnecting": {
259
+ "source": "Connecting...",
260
+ "translation": ""
261
+ },
262
+ "aiAgentCreateChartDone": {
263
+ "source": "Added chart",
264
+ "translation": ""
265
+ },
266
+ "aiAgentCreateChartRunning": {
267
+ "source": "Creating chart...",
268
+ "translation": ""
269
+ },
270
+ "aiAgentCreatePlan": {
271
+ "source": "Plan: @label",
272
+ "translation": ""
273
+ },
274
+ "aiAgentDelegateRewriteCancelled": {
275
+ "source": "Rewriting cancelled",
276
+ "translation": ""
277
+ },
278
+ "aiAgentDelegateRewriteChecking": {
279
+ "source": "Checking readability...",
280
+ "translation": ""
281
+ },
282
+ "aiAgentDelegateRewriteError": {
283
+ "source": "Rewriting failed",
284
+ "translation": ""
285
+ },
286
+ "aiAgentDelegateRewriteFailed": {
287
+ "source": "Rewriting failed",
288
+ "translation": ""
289
+ },
290
+ "aiAgentDelegateRewriteNoChanges": {
291
+ "source": "No changes detected",
292
+ "translation": ""
293
+ },
294
+ "aiAgentDelegateRewriteRetrying": {
295
+ "source": "Retrying @count fields (attempt @attempt)...",
296
+ "translation": ""
297
+ },
298
+ "aiAgentDelegateRewriteRunning": {
299
+ "source": "Rewriting texts...",
300
+ "translation": ""
301
+ },
302
+ "aiAgentDelegateRewriteStreaming": {
303
+ "source": "Rewriting @count fields...",
304
+ "translation": ""
305
+ },
306
+ "aiAgentDeleteBlockDone": {
307
+ "source": "Deleted @bundle",
308
+ "translation": ""
309
+ },
310
+ "aiAgentDeleteBlocksDone": {
311
+ "source": "Deleted @count blocks",
312
+ "translation": ""
313
+ },
314
+ "aiAgentDeleteBlocksRunning": {
315
+ "source": "Deleting blocks...",
316
+ "translation": ""
317
+ },
318
+ "aiAgentDeleteConversation": {
319
+ "source": "Delete conversation",
320
+ "translation": ""
321
+ },
322
+ "aiAgentDetachLibraryBlockDone": {
323
+ "source": "Detached library block",
324
+ "translation": ""
325
+ },
326
+ "aiAgentDetachLibraryBlockRunning": {
327
+ "source": "Detaching library block...",
328
+ "translation": ""
329
+ },
330
+ "aiAgentDetachLibraryBlocksDone": {
331
+ "source": "Detached @count library blocks",
332
+ "translation": ""
333
+ },
334
+ "aiAgentDisconnected": {
335
+ "source": "Connection lost. Reconnecting...",
336
+ "translation": ""
337
+ },
338
+ "aiAgentDropFiles": {
339
+ "source": "Drop files to attach",
340
+ "translation": ""
341
+ },
342
+ "aiAgentDuplicateBlockDone": {
343
+ "source": "Duplicated @bundle",
344
+ "translation": ""
345
+ },
346
+ "aiAgentDuplicateBlockToFieldDone": {
347
+ "source": "Duplicated @bundle to @field",
348
+ "translation": ""
349
+ },
350
+ "aiAgentDuplicateBlocksDone": {
351
+ "source": "Duplicated @count blocks",
352
+ "translation": ""
353
+ },
354
+ "aiAgentDuplicateBlocksRunning": {
355
+ "source": "Duplicating blocks...",
356
+ "translation": ""
357
+ },
358
+ "aiAgentDuplicateBlocksToFieldDone": {
359
+ "source": "Duplicated @count blocks to @field",
360
+ "translation": ""
361
+ },
362
+ "aiAgentErrorAuthentication": {
363
+ "source": "API authentication failed. Please check your API key.",
364
+ "translation": ""
365
+ },
366
+ "aiAgentErrorBadRequest": {
367
+ "source": "The request to the AI service was invalid.",
368
+ "translation": ""
369
+ },
370
+ "aiAgentErrorConnection": {
371
+ "source": "Could not connect to the AI service. Please check your network connection.",
372
+ "translation": ""
373
+ },
374
+ "aiAgentErrorNotFound": {
375
+ "source": "The configured AI model was not found. Please check the configuration.",
376
+ "translation": ""
377
+ },
378
+ "aiAgentErrorOverloaded": {
379
+ "source": "The AI service is currently overloaded. Please try again in a moment.",
380
+ "translation": ""
381
+ },
382
+ "aiAgentErrorRateLimit": {
383
+ "source": "Rate limit exceeded. Please wait a moment before trying again.",
384
+ "translation": ""
385
+ },
386
+ "aiAgentErrorUnauthorized": {
387
+ "source": "Authentication failed. Please reload the page and try again.",
388
+ "translation": ""
389
+ },
390
+ "aiAgentErrorUnknown": {
391
+ "source": "An unexpected error occurred.",
392
+ "translation": ""
393
+ },
394
+ "aiAgentExpandButton": {
395
+ "source": "Show more",
396
+ "translation": ""
397
+ },
398
+ "aiAgentFindBlocksDone": {
399
+ "source": "Found @count blocks",
400
+ "translation": ""
401
+ },
402
+ "aiAgentFindBlocksRunning": {
403
+ "source": "Finding blocks...",
404
+ "translation": ""
405
+ },
406
+ "aiAgentGetAllFragments": {
407
+ "source": "Get all fragments",
408
+ "translation": ""
409
+ },
410
+ "aiAgentGetAllFragmentsDone": {
411
+ "source": "Got all fragments",
412
+ "translation": ""
413
+ },
414
+ "aiAgentGetAllPageContentDone": {
415
+ "source": "Got content from @count blocks",
416
+ "translation": ""
417
+ },
418
+ "aiAgentGetAllPageContentRunning": {
419
+ "source": "Getting all page content...",
420
+ "translation": ""
421
+ },
422
+ "aiAgentGetBlockContextDone": {
423
+ "source": "Got context for @bundle",
424
+ "translation": ""
425
+ },
426
+ "aiAgentGetBlockContextRunning": {
427
+ "source": "Getting block context...",
428
+ "translation": ""
429
+ },
430
+ "aiAgentGetBlockOptionsDone": {
431
+ "source": "Got options of @bundle",
432
+ "translation": ""
433
+ },
434
+ "aiAgentGetBlockOptionsMultipleDone": {
435
+ "source": "Got options of @count blocks",
436
+ "translation": ""
437
+ },
438
+ "aiAgentGetBlockOptionsRunning": {
439
+ "source": "Getting block options...",
440
+ "translation": ""
441
+ },
442
+ "aiAgentGetBlocksInViewportDone": {
443
+ "source": "Got @count blocks in viewport",
444
+ "translation": ""
445
+ },
446
+ "aiAgentGetBlocksInViewportRunning": {
447
+ "source": "Getting blocks in viewport...",
448
+ "translation": ""
449
+ },
450
+ "aiAgentGetBundleInfoDone": {
451
+ "source": "Got bundle info for @field",
452
+ "translation": ""
453
+ },
454
+ "aiAgentGetBundleInfoRunning": {
455
+ "source": "Getting bundle info...",
456
+ "translation": ""
457
+ },
458
+ "aiAgentGetChartDataDone": {
459
+ "source": "Got chart data",
460
+ "translation": ""
461
+ },
462
+ "aiAgentGetChartDataRunning": {
463
+ "source": "Getting chart data...",
464
+ "translation": ""
465
+ },
466
+ "aiAgentGetChartTypeOptionsRunning": {
467
+ "source": "Getting chart options...",
468
+ "translation": ""
469
+ },
470
+ "aiAgentGetChildBlocks": {
471
+ "source": "Get child blocks",
472
+ "translation": ""
473
+ },
474
+ "aiAgentGetChildBlocksDone": {
475
+ "source": "Got children of @bundle",
476
+ "translation": ""
477
+ },
478
+ "aiAgentGetChildBlocksNone": {
479
+ "source": "@bundle has no child fields",
480
+ "translation": ""
481
+ },
482
+ "aiAgentGetContentFieldsDone": {
483
+ "source": "Got content fields of @bundle block",
484
+ "translation": ""
485
+ },
486
+ "aiAgentGetContentFieldsMultipleDone": {
487
+ "source": "Got content fields of @count blocks",
488
+ "translation": ""
489
+ },
490
+ "aiAgentGetContentFieldsRunning": {
491
+ "source": "Getting content fields...",
492
+ "translation": ""
493
+ },
494
+ "aiAgentGetEntityContentFieldsDone": {
495
+ "source": "Got content fields of page entity",
496
+ "translation": ""
497
+ },
498
+ "aiAgentGetMutationHistoryDone": {
499
+ "source": "Got mutation history",
500
+ "translation": ""
501
+ },
502
+ "aiAgentGetMutationHistoryRunning": {
503
+ "source": "Getting mutation history...",
504
+ "translation": ""
505
+ },
506
+ "aiAgentGetPageStructureDone": {
507
+ "source": "Got page structure (@count paragraphs)",
508
+ "translation": ""
509
+ },
510
+ "aiAgentGetPageStructureRunning": {
511
+ "source": "Getting page structure...",
512
+ "translation": ""
513
+ },
514
+ "aiAgentGetSelectedBlocksDone": {
515
+ "source": "@count block(s) selected",
516
+ "translation": ""
517
+ },
518
+ "aiAgentGetSelectedBlocksNone": {
519
+ "source": "No blocks selected",
520
+ "translation": ""
521
+ },
522
+ "aiAgentGetSelectedBlocksRunning": {
523
+ "source": "Getting selected blocks...",
524
+ "translation": ""
525
+ },
526
+ "aiAgentGoToHistoryIndexRunning": {
527
+ "source": "Navigating history...",
528
+ "translation": ""
529
+ },
530
+ "aiAgentIntroPopup": {
531
+ "source": "Need help editing? @name is your AI assistant — it can add, move, and update blocks and much more. Give it a try!",
532
+ "translation": ""
533
+ },
534
+ "aiAgentIntroPopupCta": {
535
+ "source": "Get started",
536
+ "translation": ""
537
+ },
538
+ "aiAgentLoadSkill": {
539
+ "source": "Using skill \"@label\"",
540
+ "translation": ""
541
+ },
542
+ "aiAgentLoadTools": {
543
+ "source": "@count tools loaded",
544
+ "translation": ""
545
+ },
546
+ "aiAgentMoveBlockDone": {
547
+ "source": "Moved @bundle",
548
+ "translation": ""
549
+ },
550
+ "aiAgentMoveBlocksDone": {
551
+ "source": "Moved @count blocks",
552
+ "translation": ""
553
+ },
554
+ "aiAgentMoveBlocksRunning": {
555
+ "source": "Moving blocks...",
556
+ "translation": ""
557
+ },
558
+ "aiAgentNewConversation": {
559
+ "source": "Start new conversation",
560
+ "translation": ""
561
+ },
562
+ "aiAgentNoConversations": {
563
+ "source": "No past conversations.",
564
+ "translation": ""
565
+ },
566
+ "aiAgentPastConversations": {
567
+ "source": "Past conversations",
568
+ "translation": ""
569
+ },
570
+ "aiAgentPastedText": {
571
+ "source": "Pasted text",
572
+ "translation": "Testo incollato"
573
+ },
574
+ "aiAgentPlaceholder": {
575
+ "source": "What should we work on?",
576
+ "translation": ""
577
+ },
578
+ "aiAgentPlaceholderReply": {
579
+ "source": "Reply...",
580
+ "translation": "Rispondi..."
581
+ },
582
+ "aiAgentPlanCompleted": {
583
+ "source": "Plan completed: @label",
584
+ "translation": ""
585
+ },
586
+ "aiAgentPopupTitle": {
587
+ "source": "AI-Assistant",
588
+ "translation": ""
589
+ },
590
+ "aiAgentProcessing": {
591
+ "source": "Processing...",
592
+ "translation": ""
593
+ },
594
+ "aiAgentRearrangeBlocksDone": {
595
+ "source": "Rearranged @count blocks",
596
+ "translation": ""
597
+ },
598
+ "aiAgentRearrangeBlocksRunning": {
599
+ "source": "Rearranging blocks...",
600
+ "translation": ""
601
+ },
602
+ "aiAgentRedoDone": {
603
+ "source": "Redid @count changes",
604
+ "translation": ""
605
+ },
606
+ "aiAgentReject": {
607
+ "source": "Reject",
608
+ "translation": ""
609
+ },
610
+ "aiAgentRemoveAttachment": {
611
+ "source": "Remove attachment",
612
+ "translation": "Rimuovi allegato"
613
+ },
614
+ "aiAgentReplaceContentSearchItemDone": {
615
+ "source": "Replaced content reference on @field",
616
+ "translation": ""
617
+ },
618
+ "aiAgentReplaceContentSearchItemRunning": {
619
+ "source": "Replacing content reference...",
620
+ "translation": ""
621
+ },
622
+ "aiAgentReplaceMediaDone": {
623
+ "source": "Replaced media on @field",
624
+ "translation": ""
625
+ },
626
+ "aiAgentReplaceMediaRunning": {
627
+ "source": "Replacing media...",
628
+ "translation": ""
629
+ },
630
+ "aiAgentRetry": {
631
+ "source": "Retry",
632
+ "translation": ""
633
+ },
634
+ "aiAgentSearchContentRunning": {
635
+ "source": "Searching content...",
636
+ "translation": ""
637
+ },
638
+ "aiAgentSearchLibraryDone": {
639
+ "source": "Searched library",
640
+ "translation": ""
641
+ },
642
+ "aiAgentSearchLibraryRunning": {
643
+ "source": "Searching reusable blocks...",
644
+ "translation": ""
645
+ },
646
+ "aiAgentSearchMediaAllDone": {
647
+ "source": "Searched all media",
648
+ "translation": ""
649
+ },
650
+ "aiAgentSearchMediaDone": {
651
+ "source": "Searched media for '@query'",
652
+ "translation": ""
653
+ },
654
+ "aiAgentSearchMediaRunning": {
655
+ "source": "Searching media...",
656
+ "translation": ""
657
+ },
658
+ "aiAgentSearchTemplatesAllDone": {
659
+ "source": "Searched all templates",
660
+ "translation": ""
661
+ },
662
+ "aiAgentSearchTemplatesDone": {
663
+ "source": "Searched templates for '@query'",
664
+ "translation": ""
665
+ },
666
+ "aiAgentSearchTemplatesRunning": {
667
+ "source": "Searching templates...",
668
+ "translation": ""
669
+ },
670
+ "aiAgentSearchTextDone": {
671
+ "source": "Found @count blocks matching '@query'",
672
+ "translation": ""
673
+ },
674
+ "aiAgentSearchTextError": {
675
+ "source": "Invalid regex pattern",
676
+ "translation": ""
677
+ },
678
+ "aiAgentSearchTextRunning": {
679
+ "source": "Searching text...",
680
+ "translation": ""
681
+ },
682
+ "aiAgentSelectMediaRunning": {
683
+ "source": "Selecting media...",
684
+ "translation": ""
685
+ },
686
+ "aiAgentSetBlockOptionsRunning": {
687
+ "source": "Setting block options...",
688
+ "translation": ""
689
+ },
690
+ "aiAgentShowTranscript": {
691
+ "source": "Show transcript...",
692
+ "translation": ""
693
+ },
694
+ "aiAgentSwapBlocksDone": {
695
+ "source": "Swapped @bundleA and @bundleB",
696
+ "translation": ""
697
+ },
698
+ "aiAgentSwapBlocksRunning": {
699
+ "source": "Swapping blocks...",
700
+ "translation": ""
701
+ },
702
+ "aiAgentThinking": {
703
+ "source": "Thinking...",
704
+ "translation": ""
705
+ },
706
+ "aiAgentTokensCached": {
707
+ "source": "Reused input tokens (cheaper)",
708
+ "translation": "Token di input riutilizzati (più economici)"
709
+ },
710
+ "aiAgentTokensCachedLabel": {
711
+ "source": "Cached",
712
+ "translation": "Cache"
713
+ },
714
+ "aiAgentTokensCost": {
715
+ "source": "Estimated cost for this conversation",
716
+ "translation": "Costo stimato per questa conversazione"
717
+ },
718
+ "aiAgentTokensCostLabel": {
719
+ "source": "Cost",
720
+ "translation": "Costo"
721
+ },
722
+ "aiAgentTokensInput": {
723
+ "source": "Tokens used to send context to the AI",
724
+ "translation": "Token utilizzati per inviare il contesto all'IA"
725
+ },
726
+ "aiAgentTokensInputLabel": {
727
+ "source": "Input",
728
+ "translation": "Input"
729
+ },
730
+ "aiAgentTokensOutput": {
731
+ "source": "Tokens generated by the AI in responses",
732
+ "translation": "Token generati dall'IA nelle risposte"
733
+ },
734
+ "aiAgentTokensOutputLabel": {
735
+ "source": "Output",
736
+ "translation": "Output"
737
+ },
738
+ "aiAgentTourText": {
739
+ "source": "Chat with an AI assistant to edit page content.",
740
+ "translation": ""
741
+ },
742
+ "aiAgentUndoDone": {
743
+ "source": "Undid @count changes",
744
+ "translation": ""
745
+ },
746
+ "aiAgentUnknownMessage": {
747
+ "source": "Unknown message type",
748
+ "translation": ""
749
+ },
750
+ "aiAgentUpdateChartDone": {
751
+ "source": "Updated chart",
752
+ "translation": ""
753
+ },
754
+ "aiAgentUpdateChartRunning": {
755
+ "source": "Updating chart...",
756
+ "translation": ""
757
+ },
758
+ "aiAgentUpdateOptionsOnBlockDone": {
759
+ "source": "Updated @count option(s) on block",
760
+ "translation": ""
761
+ },
762
+ "aiAgentUpdateOptionsOnBlocksDone": {
763
+ "source": "Updated @count option(s) on @blockCount blocks",
764
+ "translation": ""
765
+ },
766
+ "aiAgentViewAttachment": {
767
+ "source": "View attachment",
768
+ "translation": ""
769
+ },
770
+ "aiAgentWebFetchDone": {
771
+ "source": "Fetched '@title'",
772
+ "translation": ""
773
+ },
774
+ "aiAgentWebFetchRunning": {
775
+ "source": "Fetching web page...",
776
+ "translation": ""
777
+ },
778
+ "aiAgentWelcomeDisclaimer": {
779
+ "source": "@agent can make mistakes! Always check the output. <strong>Do not enter sensitive information.</strong>",
780
+ "translation": ""
781
+ },
782
+ "all": {
783
+ "source": "All",
784
+ "translation": ""
785
+ },
786
+ "allowedBlocks": {
787
+ "source": "Allowed Blocks",
788
+ "translation": ""
789
+ },
790
+ "analyzeButtonLabel": {
791
+ "source": "Analyze Page",
792
+ "translation": ""
793
+ },
794
+ "analyzeCategory": {
795
+ "source": "Category",
796
+ "translation": ""
797
+ },
798
+ "analyzeCategoryAccessibility": {
799
+ "source": "Accessibility",
800
+ "translation": ""
801
+ },
802
+ "analyzeCategoryContent": {
803
+ "source": "Content",
804
+ "translation": ""
805
+ },
806
+ "analyzeCategorySeo": {
807
+ "source": "SEO",
808
+ "translation": ""
809
+ },
810
+ "analyzeCategoryText": {
811
+ "source": "Text",
812
+ "translation": ""
813
+ },
814
+ "analyzeClickButton": {
815
+ "source": "Click the button above to run the analysis.",
816
+ "translation": ""
817
+ },
818
+ "analyzeKeepVisible": {
819
+ "source": "Keep results visible",
820
+ "translation": ""
821
+ },
822
+ "analyzeLastRun": {
823
+ "source": "Last run: @time",
824
+ "translation": ""
825
+ },
826
+ "analyzeMoreLink": {
827
+ "source": "More",
828
+ "translation": ""
829
+ },
830
+ "analyzeNotAvailableInStructureView": {
831
+ "source": "Analyze is not available in structure view.",
832
+ "translation": ""
833
+ },
834
+ "analyzeResultsOutdated": {
835
+ "source": "Results are outdated. Click the button to update.",
836
+ "translation": ""
837
+ },
838
+ "analyzeSidebarTitle": {
839
+ "source": "Analyze",
840
+ "translation": ""
841
+ },
842
+ "analyzeStatusInapplicable": {
843
+ "source": "Inapplicable",
844
+ "translation": ""
845
+ },
846
+ "analyzeStatusIncomplete": {
847
+ "source": "Incomplete",
848
+ "translation": ""
849
+ },
850
+ "analyzeStatusPass": {
851
+ "source": "Pass",
852
+ "translation": ""
853
+ },
854
+ "analyzeStatusStale": {
855
+ "source": "Stale",
856
+ "translation": ""
857
+ },
858
+ "analyzeStatusUpToDate": {
859
+ "source": "Up-to-date",
860
+ "translation": ""
861
+ },
862
+ "analyzeStatusViolation": {
863
+ "source": "Violation",
864
+ "translation": ""
865
+ },
866
+ "analyzeTourText": {
867
+ "source": "Analyze the content of your page",
868
+ "translation": ""
869
+ },
870
+ "analyzerReadabiliyDescription": {
871
+ "source": "Avoid texts that are hard to read.",
872
+ "translation": ""
873
+ },
874
+ "analyzerReadabiliyHardToRead": {
875
+ "source": "Hard to read (@lang).",
876
+ "translation": ""
877
+ },
878
+ "analyzerReadabiliyShorterSentences": {
879
+ "source": "Consider shorter sentences and simpler wording.",
880
+ "translation": ""
881
+ },
882
+ "analyzerReadabiliyTitle": {
883
+ "source": "Text readability issues",
884
+ "translation": ""
885
+ },
886
+ "anchorHide": {
887
+ "source": "Hide anchor links",
888
+ "translation": ""
889
+ },
890
+ "anchorShow": {
891
+ "source": "Show anchor links",
892
+ "translation": ""
893
+ },
894
+ "anchorToggle": {
895
+ "source": "Toggle anchor links",
896
+ "translation": ""
897
+ },
898
+ "artboard": {
899
+ "source": "Artboard",
900
+ "translation": ""
901
+ },
902
+ "artboardOverviewHide": {
903
+ "source": "Hide overview",
904
+ "translation": ""
905
+ },
906
+ "artboardOverviewShow": {
907
+ "source": "Show overview",
908
+ "translation": ""
909
+ },
910
+ "artboardOverviewToggle": {
911
+ "source": "Toggle overview",
912
+ "translation": ""
913
+ },
914
+ "artboardOverviewTourText": {
915
+ "source": "Displays a top level overview of your content.",
916
+ "translation": ""
917
+ },
918
+ "artboardResetZoom": {
919
+ "source": "Reset zoom",
920
+ "translation": ""
921
+ },
922
+ "artboardScaleToFit": {
923
+ "source": "Scale to fit",
924
+ "translation": ""
925
+ },
926
+ "artboardScrollDown": {
927
+ "source": "Scroll down",
928
+ "translation": ""
929
+ },
930
+ "artboardScrollOnePageDown": {
931
+ "source": "Scroll one page down",
932
+ "translation": ""
933
+ },
934
+ "artboardScrollOnePageUp": {
935
+ "source": "Scroll one page up",
936
+ "translation": ""
937
+ },
938
+ "artboardScrollToEnd": {
939
+ "source": "Scroll to end",
940
+ "translation": ""
941
+ },
942
+ "artboardScrollToTop": {
943
+ "source": "Scroll to top",
944
+ "translation": ""
945
+ },
946
+ "artboardScrollUp": {
947
+ "source": "Scroll up",
948
+ "translation": ""
949
+ },
950
+ "artboardToolbarButtonTourText": {
951
+ "source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
952
+ "translation": ""
953
+ },
954
+ "assistantAddAction": {
955
+ "source": "Add with AI Assistant",
956
+ "translation": ""
957
+ },
958
+ "assistantAddActionDescription": {
959
+ "source": "Add content using an AI assistant.",
960
+ "translation": ""
961
+ },
962
+ "assistantAddResultError": {
963
+ "source": "Failed to add block from assistant.",
964
+ "translation": ""
965
+ },
966
+ "assistantDialogLead": {
967
+ "source": "Please enter what you'd like the assistant to generate.",
968
+ "translation": ""
969
+ },
970
+ "assistantDialogSubmit": {
971
+ "source": "Create blocks",
972
+ "translation": ""
973
+ },
974
+ "assistantDialogTitle": {
975
+ "source": "Generate content with AI assistant",
976
+ "translation": ""
977
+ },
978
+ "assistantPromptLabel": {
979
+ "source": "Prompt",
980
+ "translation": ""
981
+ },
982
+ "assistantPromptPlaceholder": {
983
+ "source": "Generate content for a page about how taxes work in Switzerland",
984
+ "translation": ""
985
+ },
986
+ "availableBlocks": {
987
+ "source": "Available blocks",
988
+ "translation": ""
989
+ },
990
+ "availableFragments": {
991
+ "source": "Available fragments",
992
+ "translation": ""
993
+ },
994
+ "blockAddListTourText": {
995
+ "source": "Right-click on a block to add or remove them from your favorites. Favorites are highlighted and always displayed at the top of the list.",
996
+ "translation": ""
997
+ },
998
+ "blockAddListTourTitle": {
999
+ "source": "Favorite blocks",
1000
+ "translation": ""
1001
+ },
1002
+ "blockNotImplemented": {
1003
+ "source": "Missing component for block bundle <strong>@bundle</strong>.",
1004
+ "translation": ""
1005
+ },
1006
+ "blockOption_bkHiddenGlobally_description": {
1007
+ "source": "Always hides the block.",
1008
+ "translation": ""
1009
+ },
1010
+ "blockOption_bkHiddenGlobally_label": {
1011
+ "source": "Hide globally",
1012
+ "translation": ""
1013
+ },
1014
+ "blockOption_bkVisibleLanguages_description": {
1015
+ "source": "Only show on specific languages.",
1016
+ "translation": ""
1017
+ },
1018
+ "blockOption_bkVisibleLanguages_label": {
1019
+ "source": "Visible languages",
1020
+ "translation": ""
1021
+ },
1022
+ "blockSchedulerChangesPreview": {
1023
+ "source": "Changes to be applied",
1024
+ "translation": ""
1025
+ },
1026
+ "blockSchedulerDialogLead": {
1027
+ "source": "Schedule automatic publishing and unpublishing dates for the selected blocks.",
1028
+ "translation": ""
1029
+ },
1030
+ "blockSchedulerDialogPublishOn": {
1031
+ "source": "Publish on",
1032
+ "translation": ""
1033
+ },
1034
+ "blockSchedulerDialogSubmit": {
1035
+ "source": "Save schedule",
1036
+ "translation": ""
1037
+ },
1038
+ "blockSchedulerDialogTitle": {
1039
+ "source": "Manage scheduling",
1040
+ "translation": ""
1041
+ },
1042
+ "blockSchedulerDialogUnpublishOn": {
1043
+ "source": "Unpublish on",
1044
+ "translation": ""
1045
+ },
1046
+ "blockSchedulerMixedDates": {
1047
+ "source": "Selected blocks have different dates: @dates",
1048
+ "translation": ""
1049
+ },
1050
+ "blockSchedulerNoChanges": {
1051
+ "source": "No changes to be applied.",
1052
+ "translation": ""
1053
+ },
1054
+ "blockSchedulerOverride": {
1055
+ "source": "Set date for all",
1056
+ "translation": ""
1057
+ },
1058
+ "blockSchedulerSuccessMessage": {
1059
+ "source": "Successfully updated schedule dates.",
1060
+ "translation": ""
1061
+ },
1062
+ "bundle": {
1063
+ "source": "Bundle",
1064
+ "translation": ""
1065
+ },
1066
+ "cancelSelection": {
1067
+ "source": "Cancel selection",
1068
+ "translation": ""
1069
+ },
1070
+ "chartsAddColumn": {
1071
+ "source": "Add column",
1072
+ "translation": ""
1073
+ },
1074
+ "chartsAddFootnote": {
1075
+ "source": "Add footnote",
1076
+ "translation": ""
1077
+ },
1078
+ "chartsAddRow": {
1079
+ "source": "Add row",
1080
+ "translation": ""
1081
+ },
1082
+ "chartsAreaCurved": {
1083
+ "source": "Smooth curves",
1084
+ "translation": "Curve morbide"
1085
+ },
1086
+ "chartsAreaMarkers": {
1087
+ "source": "Show markers",
1088
+ "translation": "Mostra marcatori"
1089
+ },
1090
+ "chartsAutoUpdate": {
1091
+ "source": "Auto-update",
1092
+ "translation": ""
1093
+ },
1094
+ "chartsBarHorizontal": {
1095
+ "source": "Horizontal",
1096
+ "translation": "Orizzontale"
1097
+ },
1098
+ "chartsBarStacked": {
1099
+ "source": "Stacked",
1100
+ "translation": "Impilato"
1101
+ },
1102
+ "chartsBorderRadius": {
1103
+ "source": "Corner radius",
1104
+ "translation": "Raggio angoli"
1105
+ },
1106
+ "chartsBorderRadiusLarge": {
1107
+ "source": "Large",
1108
+ "translation": "Grande"
1109
+ },
1110
+ "chartsBorderRadiusNone": {
1111
+ "source": "None",
1112
+ "translation": "Nessuno"
1113
+ },
1114
+ "chartsBorderRadiusSmall": {
1115
+ "source": "Small",
1116
+ "translation": "Piccolo"
1117
+ },
1118
+ "chartsData": {
1119
+ "source": "Data",
1120
+ "translation": ""
1121
+ },
1122
+ "chartsDataLabels": {
1123
+ "source": "Data labels",
1124
+ "translation": "Etichette dati"
1125
+ },
1126
+ "chartsDonutShowLabels": {
1127
+ "source": "Show labels",
1128
+ "translation": "Mostra etichette"
1129
+ },
1130
+ "chartsDonutShowTotal": {
1131
+ "source": "Show total",
1132
+ "translation": "Mostra totale"
1133
+ },
1134
+ "chartsEditButton": {
1135
+ "source": "Edit chart...",
1136
+ "translation": ""
1137
+ },
1138
+ "chartsEditorSaveError": {
1139
+ "source": "The chart could not be saved.",
1140
+ "translation": ""
1141
+ },
1142
+ "chartsEditorTitle": {
1143
+ "source": "Edit chart",
1144
+ "translation": ""
1145
+ },
1146
+ "chartsFootnotes": {
1147
+ "source": "Footnotes",
1148
+ "translation": ""
1149
+ },
1150
+ "chartsGridLines": {
1151
+ "source": "Grid lines",
1152
+ "translation": "Linee griglia"
1153
+ },
1154
+ "chartsImportCsv": {
1155
+ "source": "Import CSV",
1156
+ "translation": ""
1157
+ },
1158
+ "chartsLegendPosition": {
1159
+ "source": "Legend position",
1160
+ "translation": "Posizione legenda"
1161
+ },
1162
+ "chartsLineCurved": {
1163
+ "source": "Smooth curves",
1164
+ "translation": "Curve morbide"
1165
+ },
1166
+ "chartsLineMarkers": {
1167
+ "source": "Show markers",
1168
+ "translation": "Mostra marcatori"
1169
+ },
1170
+ "chartsOpacityLight": {
1171
+ "source": "Light",
1172
+ "translation": "Leggero"
1173
+ },
1174
+ "chartsOpacitySolid": {
1175
+ "source": "Solid",
1176
+ "translation": "Solido"
1177
+ },
1178
+ "chartsOpacityTransparent": {
1179
+ "source": "Transparent",
1180
+ "translation": "Trasparente"
1181
+ },
1182
+ "chartsOptionGroupDisplay": {
1183
+ "source": "Display",
1184
+ "translation": ""
1185
+ },
1186
+ "chartsOptionGroupLabels": {
1187
+ "source": "Labels",
1188
+ "translation": ""
1189
+ },
1190
+ "chartsPieShowLabels": {
1191
+ "source": "Show labels",
1192
+ "translation": "Mostra etichette"
1193
+ },
1194
+ "chartsPositionBottom": {
1195
+ "source": "Bottom",
1196
+ "translation": "In basso"
1197
+ },
1198
+ "chartsPositionRight": {
1199
+ "source": "Right",
1200
+ "translation": "A destra"
1201
+ },
1202
+ "chartsPositionTop": {
1203
+ "source": "Top",
1204
+ "translation": "In alto"
1205
+ },
1206
+ "chartsPreview": {
1207
+ "source": "Preview",
1208
+ "translation": ""
1209
+ },
1210
+ "chartsRadarFillOpacity": {
1211
+ "source": "Fill opacity",
1212
+ "translation": "Opacità riempimento"
1213
+ },
1214
+ "chartsRadarMarkers": {
1215
+ "source": "Show markers",
1216
+ "translation": "Mostra marcatori"
1217
+ },
1218
+ "chartsRadialBarShowLabels": {
1219
+ "source": "Show labels",
1220
+ "translation": "Mostra etichette"
1221
+ },
1222
+ "chartsRadialBarShowTotal": {
1223
+ "source": "Show total",
1224
+ "translation": "Mostra totale"
1225
+ },
1226
+ "chartsRefreshPreview": {
1227
+ "source": "Refresh Preview",
1228
+ "translation": ""
1229
+ },
1230
+ "chartsRotationAuto": {
1231
+ "source": "Auto",
1232
+ "translation": "Automatico"
1233
+ },
1234
+ "chartsStrokeMedium": {
1235
+ "source": "Medium",
1236
+ "translation": "Medio"
1237
+ },
1238
+ "chartsStrokeThick": {
1239
+ "source": "Thick",
1240
+ "translation": "Spesso"
1241
+ },
1242
+ "chartsStrokeThin": {
1243
+ "source": "Thin",
1244
+ "translation": "Sottile"
1245
+ },
1246
+ "chartsStrokeWidth": {
1247
+ "source": "Line thickness",
1248
+ "translation": "Spessore linea"
1249
+ },
1250
+ "chartsTitle": {
1251
+ "source": "Title",
1252
+ "translation": ""
1253
+ },
1254
+ "chartsTypeArea": {
1255
+ "source": "Area",
1256
+ "translation": ""
1257
+ },
1258
+ "chartsTypeBar": {
1259
+ "source": "Bar",
1260
+ "translation": ""
1261
+ },
1262
+ "chartsTypeDonut": {
1263
+ "source": "Donut",
1264
+ "translation": ""
1265
+ },
1266
+ "chartsTypeHeatmap": {
1267
+ "source": "Heatmap",
1268
+ "translation": "Mappa di calore"
1269
+ },
1270
+ "chartsTypeLine": {
1271
+ "source": "Line",
1272
+ "translation": ""
1273
+ },
1274
+ "chartsTypePie": {
1275
+ "source": "Pie",
1276
+ "translation": ""
1277
+ },
1278
+ "chartsTypeRadar": {
1279
+ "source": "Radar",
1280
+ "translation": "Radar"
1281
+ },
1282
+ "chartsTypeRadialBar": {
1283
+ "source": "Radial Bar",
1284
+ "translation": "Barra radiale"
1285
+ },
1286
+ "chartsXAxisRotation": {
1287
+ "source": "Label rotation",
1288
+ "translation": "Rotazione etichette"
1289
+ },
1290
+ "clearInput": {
1291
+ "source": "Clear input",
1292
+ "translation": ""
1293
+ },
1294
+ "clipboardCopyShortcutHelp": {
1295
+ "source": "Copy selected blocks",
1296
+ "translation": ""
1297
+ },
1298
+ "clipboardNoCommonBundle": {
1299
+ "source": "No common block type for these files.",
1300
+ "translation": ""
1301
+ },
1302
+ "clipboardPasteDescription": {
1303
+ "source": "Paste blocks from clipboard",
1304
+ "translation": ""
1305
+ },
1306
+ "clipboardPasteError": {
1307
+ "source": "Failed to paste:",
1308
+ "translation": ""
1309
+ },
1310
+ "clipboardPasteShortcutHelp": {
1311
+ "source": "Paste text, image or copied blocks",
1312
+ "translation": ""
1313
+ },
1314
+ "clipboardTypeFile": {
1315
+ "source": "File",
1316
+ "translation": ""
1317
+ },
1318
+ "clipboardTypeImage": {
1319
+ "source": "Image",
1320
+ "translation": ""
1321
+ },
1322
+ "clipboardTypeText": {
1323
+ "source": "Text",
1324
+ "translation": ""
1325
+ },
1326
+ "clipboardTypeVideo": {
1327
+ "source": "Video",
1328
+ "translation": ""
1329
+ },
1330
+ "clipboardUnsupportedFileType": {
1331
+ "source": "This file type is not supported.",
1332
+ "translation": ""
1333
+ },
1334
+ "close": {
1335
+ "source": "Close",
1336
+ "translation": "Chiudi"
1337
+ },
1338
+ "commandGroup.action": {
1339
+ "source": "Actions",
1340
+ "translation": ""
1341
+ },
1342
+ "commandGroup.add": {
1343
+ "source": "Add new",
1344
+ "translation": ""
1345
+ },
1346
+ "commandGroup.misc": {
1347
+ "source": "Miscellaneous",
1348
+ "translation": ""
1349
+ },
1350
+ "commandGroup.selection": {
1351
+ "source": "Selection",
1352
+ "translation": ""
1353
+ },
1354
+ "commandGroup.ui": {
1355
+ "source": "Interface",
1356
+ "translation": ""
1357
+ },
1358
+ "commandPalette.inputPlaceholder": {
1359
+ "source": "Search commands...",
1360
+ "translation": ""
1361
+ },
1362
+ "commandPaletteOpen": {
1363
+ "source": "Open Command Palette",
1364
+ "translation": ""
1365
+ },
1366
+ "commandPaletteTourText": {
1367
+ "source": "Easily perform actions using your keyboard by launching the command palette. Most of the features available using clicks is also available in the command palette.",
1368
+ "translation": ""
1369
+ },
1370
+ "commentAdd": {
1371
+ "source": "Add comment",
1372
+ "translation": ""
1373
+ },
1374
+ "commentBodyPlaceholder": {
1375
+ "source": "Add reply",
1376
+ "translation": ""
1377
+ },
1378
+ "commentSave": {
1379
+ "source": "Submit comment",
1380
+ "translation": "Salva commento"
1381
+ },
1382
+ "comments": {
1383
+ "source": "Comments",
1384
+ "translation": "Commenti"
1385
+ },
1386
+ "commentsMarkAsResolved": {
1387
+ "source": "Resolve",
1388
+ "translation": ""
1389
+ },
1390
+ "commentsTourText": {
1391
+ "source": "Shows all comments for the current page.",
1392
+ "translation": ""
1393
+ },
1394
+ "conversionsConvertTo": {
1395
+ "source": "Convert to: @bundle",
1396
+ "translation": ""
1397
+ },
1398
+ "copiedToClipboardMessage": {
1399
+ "source": "\"@text\" has been copied to your clipboard",
1400
+ "translation": ""
1401
+ },
1402
+ "copy": {
1403
+ "source": "Copy",
1404
+ "translation": ""
1405
+ },
1406
+ "created": {
1407
+ "source": "Created",
1408
+ "translation": ""
1409
+ },
1410
+ "createdBy": {
1411
+ "source": "Created by",
1412
+ "translation": ""
1413
+ },
1414
+ "dateUpdated": {
1415
+ "source": "Updated",
1416
+ "translation": ""
1417
+ },
1418
+ "deleteButton": {
1419
+ "source": "Delete",
1420
+ "translation": "Elimina"
1421
+ },
1422
+ "deleteError": {
1423
+ "source": "The block could not be deleted.",
1424
+ "translation": "L'elemento non può essere rimosso."
1425
+ },
1426
+ "diffAfter": {
1427
+ "source": "After",
1428
+ "translation": ""
1429
+ },
1430
+ "diffBefore": {
1431
+ "source": "Before",
1432
+ "translation": ""
1433
+ },
1434
+ "diffModeAfter": {
1435
+ "source": "After",
1436
+ "translation": ""
1437
+ },
1438
+ "diffModeInline": {
1439
+ "source": "Inline",
1440
+ "translation": ""
1441
+ },
1442
+ "diffModeLabel": {
1443
+ "source": "Display",
1444
+ "translation": ""
1445
+ },
1446
+ "diffModeSideBySide": {
1447
+ "source": "Both",
1448
+ "translation": ""
1449
+ },
1450
+ "diffSidebarTitle": {
1451
+ "source": "Changes",
1452
+ "translation": ""
1453
+ },
1454
+ "diffSidebarTourText": {
1455
+ "source": "Displays all the changes made during editing.",
1456
+ "translation": ""
1457
+ },
1458
+ "diffStatusAdded": {
1459
+ "source": "Added",
1460
+ "translation": ""
1461
+ },
1462
+ "diffStatusDeleted": {
1463
+ "source": "Deleted",
1464
+ "translation": ""
1465
+ },
1466
+ "diffStatusEdited": {
1467
+ "source": "Edited",
1468
+ "translation": ""
1469
+ },
1470
+ "diffStatusUnchanged": {
1471
+ "source": "Unchanged",
1472
+ "translation": ""
1473
+ },
1474
+ "downloadLogsButton": {
1475
+ "source": "Download Logs",
1476
+ "translation": ""
1477
+ },
1478
+ "draggingOverlaySelectBundle": {
1479
+ "source": "Select block type to create",
1480
+ "translation": ""
1481
+ },
1482
+ "duplicate": {
1483
+ "source": "Duplicate",
1484
+ "translation": "Duplica"
1485
+ },
1486
+ "duplicateError": {
1487
+ "source": "The items could not be duplicated.",
1488
+ "translation": "Gli elementi non possono essere duplicati."
1489
+ },
1490
+ "edit": {
1491
+ "source": "Edit...",
1492
+ "translation": "Modifica"
1493
+ },
1494
+ "editFormBlockAdd": {
1495
+ "source": "Add @label",
1496
+ "translation": ""
1497
+ },
1498
+ "editFormBlockEdit": {
1499
+ "source": "Edit @label",
1500
+ "translation": ""
1501
+ },
1502
+ "editFormBlockTranslate": {
1503
+ "source": "Translate @label (@language)",
1504
+ "translation": ""
1505
+ },
1506
+ "editFormEntityEdit": {
1507
+ "source": "Edit @label",
1508
+ "translation": ""
1509
+ },
1510
+ "editFormEntityTranslate": {
1511
+ "source": "Translate \"@label\" (@language)",
1512
+ "translation": ""
1513
+ },
1514
+ "editIndicatorLabel": {
1515
+ "source": "Edit blocks",
1516
+ "translation": "Modifica elementi"
1517
+ },
1518
+ "editIndicatorLabelReview": {
1519
+ "source": "Review changes",
1520
+ "translation": ""
1521
+ },
1522
+ "editIndicatorLabelView": {
1523
+ "source": "View changes",
1524
+ "translation": ""
1525
+ },
1526
+ "editableCommandEdit": {
1527
+ "source": "Edit field \"@name\"",
1528
+ "translation": ""
1529
+ },
1530
+ "editableFieldDiscard": {
1531
+ "source": "Discard",
1532
+ "translation": ""
1533
+ },
1534
+ "entityTitleTourText": {
1535
+ "source": "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
1536
+ "translation": ""
1537
+ },
1538
+ "entityTitleTourTitle": {
1539
+ "source": "Page",
1540
+ "translation": ""
1541
+ },
1542
+ "errorCapturedMessage": {
1543
+ "source": "Error in \"@label\": @errorMessage",
1544
+ "translation": ""
1545
+ },
1546
+ "errorCapturedMessageDisabled": {
1547
+ "source": "\"@label\" has errored more than 3 times. The feature will be disabled.",
1548
+ "translation": ""
1549
+ },
1550
+ "exitDescription": {
1551
+ "source": "Close editor without publishing",
1552
+ "translation": "Chiudi l'editor senza pubblicare"
1553
+ },
1554
+ "exitTitle": {
1555
+ "source": "Close",
1556
+ "translation": "Chiudi"
1557
+ },
1558
+ "failedToConvert": {
1559
+ "source": "The block could not be converted.",
1560
+ "translation": "L'elemento non può essere convertito."
1561
+ },
1562
+ "failedToTransform": {
1563
+ "source": "The action \"@name\" could not be executed.",
1564
+ "translation": "The action \"@name\" could not be executed."
1565
+ },
1566
+ "fatalErrorButton": {
1567
+ "source": "Continue anyway...",
1568
+ "translation": ""
1569
+ },
1570
+ "fatalErrorText": {
1571
+ "source": "Unfortunately blökkli has encountered a fatal error which prevents it from working normally. You may be able to continue using it, but things may not work as expected.",
1572
+ "translation": ""
1573
+ },
1574
+ "fatalErrorTitle": {
1575
+ "source": "blökkli has stopped working",
1576
+ "translation": ""
1577
+ },
1578
+ "featureHelpShortcuts": {
1579
+ "source": "Shortcuts",
1580
+ "translation": ""
1581
+ },
1582
+ "featureHelpTitle": {
1583
+ "source": "Help",
1584
+ "translation": ""
1585
+ },
1586
+ "feature_add-list_description": {
1587
+ "source": "Provides the container to render a list of blocks to add or add actions.",
1588
+ "translation": "Fornisce il contenitore per visualizzare un elenco di blocchi da aggiungere o azioni."
1589
+ },
1590
+ "feature_add-list_label": {
1591
+ "source": "Add List",
1592
+ "translation": "Elenco di aggiunta"
1593
+ },
1594
+ "feature_add-list_setting_hideDisabledBlocks_description": {
1595
+ "source": "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
1596
+ "translation": ""
1597
+ },
1598
+ "feature_add-list_setting_hideDisabledBlocks_label": {
1599
+ "source": "Hide blocks that can't be added",
1600
+ "translation": ""
1601
+ },
1602
+ "feature_agent_description": {
1603
+ "source": "Chat with an AI assistant to edit page content.",
1604
+ "translation": ""
1605
+ },
1606
+ "feature_agent_label": {
1607
+ "source": "AI Agent",
1608
+ "translation": ""
1609
+ },
1610
+ "feature_analyze_description": {
1611
+ "source": "Analyze blocks and page for SEO, accessibility, etc.",
1612
+ "translation": "Analizza i blocchi e la pagina per SEO, accessibilità, ecc."
1613
+ },
1614
+ "feature_analyze_label": {
1615
+ "source": "Analyze",
1616
+ "translation": "Analizza"
1617
+ },
1618
+ "feature_anchors_description": {
1619
+ "source": "Displays indicators for blocks with anchor IDs",
1620
+ "translation": "Visualizza indicatori per blocchi con ID di ancoraggio"
1621
+ },
1622
+ "feature_anchors_label": {
1623
+ "source": "Anchors",
1624
+ "translation": "Ancoraggi"
1625
+ },
1626
+ "feature_artboard_description": {
1627
+ "source": "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
1628
+ "translation": "Avvolge l'intera pagina in un'area di lavoro che può essere ingrandita e spostata con il mouse."
1629
+ },
1630
+ "feature_artboard_label": {
1631
+ "source": "Artboard",
1632
+ "translation": "Area di lavoro"
1633
+ },
1634
+ "feature_artboard_setting_momentum_description": {
1635
+ "source": "Applies smooth animations when scrolling or zooming the artboard.",
1636
+ "translation": "Applica animazioni fluide durante lo scorrimento o lo zoom dell'area di lavoro."
1637
+ },
1638
+ "feature_artboard_setting_momentum_label": {
1639
+ "source": "Use smooth scrolling",
1640
+ "translation": "Usa scorrimento fluido"
1641
+ },
1642
+ "feature_artboard_setting_persist_description": {
1643
+ "source": "Stores and restores the last position and zoom factor of the artboard.",
1644
+ "translation": "Memorizza e ripristina l'ultima posizione e il fattore di zoom dell'area di lavoro."
1645
+ },
1646
+ "feature_artboard_setting_persist_label": {
1647
+ "source": "Persist position and zoom",
1648
+ "translation": "Mantieni posizione e zoom"
1649
+ },
1650
+ "feature_artboard_setting_scrollSpeed_label": {
1651
+ "source": "Artboard scroll speed",
1652
+ "translation": "Velocità di scorrimento dell'area di lavoro"
1653
+ },
1654
+ "feature_assistant_description": {
1655
+ "source": "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
1656
+ "translation": "Fornisce un'azione dinamica per aggiungere uno o più blocchi generati da un assistente IA."
1657
+ },
1658
+ "feature_assistant_label": {
1659
+ "source": "Assistant",
1660
+ "translation": "Assistente"
1661
+ },
1662
+ "feature_block-scheduler_description": {
1663
+ "source": "Adds support for scheduling blocks.",
1664
+ "translation": ""
1665
+ },
1666
+ "feature_block-scheduler_label": {
1667
+ "source": "Block Scheduler",
1668
+ "translation": ""
1669
+ },
1670
+ "feature_breadcrumbs_description": {
1671
+ "source": "Provides a breadcrumb of the selection.",
1672
+ "translation": ""
1673
+ },
1674
+ "feature_breadcrumbs_label": {
1675
+ "source": "Breadcrumbs",
1676
+ "translation": ""
1677
+ },
1678
+ "feature_charts_description": {
1679
+ "source": "Add and edit interactive charts.",
1680
+ "translation": ""
1681
+ },
1682
+ "feature_charts_label": {
1683
+ "source": "Charts",
1684
+ "translation": ""
1685
+ },
1686
+ "feature_clipboard_description": {
1687
+ "source": "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
1688
+ "translation": "Fornisce l'integrazione degli appunti per copiare/incollare blocchi esistenti o incollare contenuti supportati come testo o immagini."
1689
+ },
1690
+ "feature_clipboard_label": {
1691
+ "source": "Clipboard",
1692
+ "translation": "Appunti"
1693
+ },
1694
+ "feature_command-palette_description": {
1695
+ "source": "Provides a command palette with search to access most UI features with a keyboard.",
1696
+ "translation": "Fornisce una tavolozza di comandi con ricerca per accedere alla maggior parte delle funzionalità dell'interfaccia con la tastiera."
1697
+ },
1698
+ "feature_command-palette_label": {
1699
+ "source": "Command Palette",
1700
+ "translation": "Tavolozza di comandi"
1701
+ },
1702
+ "feature_comments_description": {
1703
+ "source": "Provides comment functionality for blocks.",
1704
+ "translation": "Fornisce la funzionalità di commento per i blocchi."
1705
+ },
1706
+ "feature_comments_label": {
1707
+ "source": "Comments",
1708
+ "translation": "Commenti"
1709
+ },
1710
+ "feature_conversions_description": {
1711
+ "source": "Provides block actions to convert one or more blocks to a different bundle.",
1712
+ "translation": "Fornisce azioni di blocco per convertire uno o più blocchi in un tipo diverso."
1713
+ },
1714
+ "feature_conversions_label": {
1715
+ "source": "Conversions",
1716
+ "translation": "Conversioni"
1717
+ },
1718
+ "feature_debug_description": {
1719
+ "source": "Provides debugging functionality.",
1720
+ "translation": "Fornisce la funzionalità di debug."
1721
+ },
1722
+ "feature_debug_label": {
1723
+ "source": "Debug",
1724
+ "translation": "Debug"
1725
+ },
1726
+ "feature_delete_description": {
1727
+ "source": "Provides an action to delete one or more blocks.",
1728
+ "translation": "Fornisce un'azione per eliminare uno o più blocchi."
1729
+ },
1730
+ "feature_delete_label": {
1731
+ "source": "Delete",
1732
+ "translation": "Elimina"
1733
+ },
1734
+ "feature_dev-mode_description": {
1735
+ "source": "Feature enabled in development mode.",
1736
+ "translation": ""
1737
+ },
1738
+ "feature_dev-mode_label": {
1739
+ "source": "Dev Mode",
1740
+ "translation": ""
1741
+ },
1742
+ "feature_diff_description": {
1743
+ "source": "Displays a diff of all changes in the edit state.",
1744
+ "translation": "Visualizza un differenziale di tutte le modifiche nello stato di modifica."
1745
+ },
1746
+ "feature_diff_label": {
1747
+ "source": "Diff",
1748
+ "translation": "Differenze"
1749
+ },
1750
+ "feature_dragging-overlay_description": {
1751
+ "source": "Renders an overlay when dragging or placing a block.",
1752
+ "translation": "Visualizza una sovrapposizione durante il trascinamento o il posizionamento di un blocco."
1753
+ },
1754
+ "feature_dragging-overlay_label": {
1755
+ "source": "Dragging Overlay",
1756
+ "translation": "Sovrapposizione di trascinamento"
1757
+ },
1758
+ "feature_duplicate_description": {
1759
+ "source": "Provides an action to duplicate one or more blocks in place.",
1760
+ "translation": "Fornisce un'azione per duplicare uno o più blocchi sul posto."
1761
+ },
1762
+ "feature_duplicate_label": {
1763
+ "source": "Duplicate",
1764
+ "translation": "Duplica"
1765
+ },
1766
+ "feature_edit-form_description": {
1767
+ "source": "Listens to edit events and renders an iframe containing the edit form.",
1768
+ "translation": "Ascolta gli eventi di modifica e visualizza un iframe contenente il modulo di modifica."
1769
+ },
1770
+ "feature_edit-form_label": {
1771
+ "source": "Edit Form",
1772
+ "translation": "Modulo di modifica"
1773
+ },
1774
+ "feature_edit_description": {
1775
+ "source": "Provides an action to edit a block.",
1776
+ "translation": "Fornisce un'azione per modificare un blocco."
1777
+ },
1778
+ "feature_edit_label": {
1779
+ "source": "Edit",
1780
+ "translation": "Modifica"
1781
+ },
1782
+ "feature_editable-field_description": {
1783
+ "source": "Implements a form overlay to edit a single field of a block.",
1784
+ "translation": "Implementa una sovrapposizione di modulo per modificare un singolo campo di un blocco."
1785
+ },
1786
+ "feature_editable-field_label": {
1787
+ "source": "Editable Field",
1788
+ "translation": "Campo modificabile"
1789
+ },
1790
+ "feature_editable-mask_description": {
1791
+ "source": "Provides a view option to hide non-editable parts of the page.",
1792
+ "translation": "Fornisce un'opzione di visualizzazione per nascondere le parti non modificabili della pagina."
1793
+ },
1794
+ "feature_editable-mask_label": {
1795
+ "source": "Editable Mask",
1796
+ "translation": "Maschera modificabile"
1797
+ },
1798
+ "feature_entity-title_description": {
1799
+ "source": "Renders the title and status of the page entity.",
1800
+ "translation": "Visualizza il titolo e lo stato dell'entità della pagina."
1801
+ },
1802
+ "feature_entity-title_label": {
1803
+ "source": "Entity Title",
1804
+ "translation": "Titolo dell'entità"
1805
+ },
1806
+ "feature_exit_description": {
1807
+ "source": "Provides a menu button to exit the editor without saving.",
1808
+ "translation": "Fornisce un pulsante di menu per uscire dall'editor senza salvare."
1809
+ },
1810
+ "feature_exit_label": {
1811
+ "source": "Exit",
1812
+ "translation": "Esci"
1813
+ },
1814
+ "feature_fragments_description": {
1815
+ "source": "Provides way to add content fragments defined by the frontend.",
1816
+ "translation": "Consente di aggiungere frammenti di contenuto definiti dal frontend."
1817
+ },
1818
+ "feature_fragments_label": {
1819
+ "source": "Fragments",
1820
+ "translation": "Frammenti"
1821
+ },
1822
+ "feature_grid_description": {
1823
+ "source": "Provides a view option to render a grid.",
1824
+ "translation": "Fornisce un'opzione di visualizzazione per visualizzare una griglia."
1825
+ },
1826
+ "feature_grid_label": {
1827
+ "source": "Grid",
1828
+ "translation": "Griglia"
1829
+ },
1830
+ "feature_help_description": {
1831
+ "source": "Provides a sidebar pane with helpful information on how to use blokkli.",
1832
+ "translation": "Fornisce un pannello della barra laterale con informazioni utili su come utilizzare blökkli."
1833
+ },
1834
+ "feature_help_label": {
1835
+ "source": "Help",
1836
+ "translation": "Aiuto"
1837
+ },
1838
+ "feature_history_description": {
1839
+ "source": "Implements support for history features (undo, redo, list of mutations).",
1840
+ "translation": "Implementa il supporto per le funzionalità di cronologia (annulla, ripeti, elenco delle mutazioni)."
1841
+ },
1842
+ "feature_history_label": {
1843
+ "source": "History",
1844
+ "translation": "Cronologia"
1845
+ },
1846
+ "feature_history_setting_useMouseButtons_description": {
1847
+ "source": "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
1848
+ "translation": "Quando abilitato, è possibile utilizzare i pulsanti indietro/avanti del mouse per annullare e ripetere."
1849
+ },
1850
+ "feature_history_setting_useMouseButtons_label": {
1851
+ "source": "Use mouse buttons for undo/redo",
1852
+ "translation": "Usa i pulsanti del mouse per annulla/ripeti"
1853
+ },
1854
+ "feature_hover_description": {
1855
+ "source": "Renders a border around blocks that are currently being hovered.",
1856
+ "translation": ""
1857
+ },
1858
+ "feature_hover_label": {
1859
+ "source": "Hover",
1860
+ "translation": ""
1861
+ },
1862
+ "feature_import-existing_description": {
1863
+ "source": "Implements a menu action that renders a dialog to import blocks from another entity.",
1864
+ "translation": "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità."
1865
+ },
1866
+ "feature_import-existing_label": {
1867
+ "source": "Import existing content",
1868
+ "translation": "Importa contenuto esistente"
1869
+ },
1870
+ "feature_import-existing_setting_showDialogWhenEmpty_description": {
1871
+ "source": "Displays the import dialog when starting blökkli if the page is empty.",
1872
+ "translation": "Visualizza la finestra di dialogo di importazione all'avvio di blökkli se la pagina è vuota."
1873
+ },
1874
+ "feature_import-existing_setting_showDialogWhenEmpty_label": {
1875
+ "source": "Show import dialog at start",
1876
+ "translation": "Mostra finestra di dialogo di importazione all'avvio"
1877
+ },
1878
+ "feature_library_description": {
1879
+ "source": "Implements support for a block library to manage reusable blocks.",
1880
+ "translation": "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili."
1881
+ },
1882
+ "feature_library_label": {
1883
+ "source": "Library",
1884
+ "translation": "Biblioteca"
1885
+ },
1886
+ "feature_media-library_description": {
1887
+ "source": "Implements a media library to easily drag and drop media like images or videos.",
1888
+ "translation": "Implementa una biblioteca multimediale per trascinare e rilasciare facilmente media come immagini o video."
1889
+ },
1890
+ "feature_media-library_label": {
1891
+ "source": "Media Library",
1892
+ "translation": "Biblioteca multimediale"
1893
+ },
1894
+ "feature_multi-select_description": {
1895
+ "source": "Implements support for selecting multiple blocks using a select rectangle.",
1896
+ "translation": "Implementa il supporto per la selezione di più blocchi utilizzando un rettangolo di selezione."
1897
+ },
1898
+ "feature_multi-select_label": {
1899
+ "source": "Multiselect",
1900
+ "translation": "Selezione multipla"
1901
+ },
1902
+ "feature_options_description": {
1903
+ "source": "Renders the options form for one or more blocks.",
1904
+ "translation": "Visualizza il modulo delle opzioni per uno o più blocchi."
1905
+ },
1906
+ "feature_options_label": {
1907
+ "source": "Options",
1908
+ "translation": "Opzioni"
1909
+ },
1910
+ "feature_ownership_description": {
1911
+ "source": "Renders a large button to take ownership of the current edit state.",
1912
+ "translation": "Visualizza un grande pulsante per prendere la proprietà dello stato di modifica corrente."
1913
+ },
1914
+ "feature_ownership_label": {
1915
+ "source": "Ownership",
1916
+ "translation": "Proprietà"
1917
+ },
1918
+ "feature_preview-grant_description": {
1919
+ "source": "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
1920
+ "translation": "Fornisce un pulsante per aprire una finestra di dialogo con un codice QR per visualizzare l'anteprima della pagina su uno smartphone."
1921
+ },
1922
+ "feature_preview-grant_label": {
1923
+ "source": "Preview Grant",
1924
+ "translation": "Accesso all'anteprima"
1925
+ },
1926
+ "feature_preview_description": {
1927
+ "source": "Provides a button to open a preview in a new window.",
1928
+ "translation": "Fornisce un pulsante per aprire un'anteprima in una nuova finestra."
1929
+ },
1930
+ "feature_preview_label": {
1931
+ "source": "Preview",
1932
+ "translation": "Anteprima"
1933
+ },
1934
+ "feature_proxy_view_description": {
1935
+ "source": "Displays the blocks as a structure in the preview.",
1936
+ "translation": "Visualizza i blocchi come struttura nell'anteprima."
1937
+ },
1938
+ "feature_proxy_view_label": {
1939
+ "source": "Proxy View",
1940
+ "translation": "Vista strutturata"
1941
+ },
1942
+ "feature_publish_description": {
1943
+ "source": "Provides a menu button to publish the changes of the current entity.",
1944
+ "translation": "Fornisce un pulsante di menu per pubblicare le modifiche dell'entità corrente."
1945
+ },
1946
+ "feature_publish_label": {
1947
+ "source": "Publish",
1948
+ "translation": "Pubblica"
1949
+ },
1950
+ "feature_publish_setting_closeAfterPublish_description": {
1951
+ "source": "Immediately closes the editor after successfully publishing or saving.",
1952
+ "translation": "Chiude immediatamente l'editor dopo una pubblicazione o un salvataggio riusciti."
1953
+ },
1954
+ "feature_publish_setting_closeAfterPublish_label": {
1955
+ "source": "Close editor after publishing",
1956
+ "translation": "Chiudi editor dopo la pubblicazione"
1957
+ },
1958
+ "feature_responsive-preview_description": {
1959
+ "source": "Provides a responsive preview of the current edit state in an iframe.",
1960
+ "translation": "Fornisce un'anteprima responsive dello stato di modifica corrente in un iframe."
1961
+ },
1962
+ "feature_responsive-preview_label": {
1963
+ "source": "Responsive Preview",
1964
+ "translation": "Anteprima responsive"
1965
+ },
1966
+ "feature_revert_description": {
1967
+ "source": "Provides a menu button to revert all changes done on the current entity.",
1968
+ "translation": "Fornisce un pulsante di menu per annullare tutte le modifiche effettuate sull'entità corrente."
1969
+ },
1970
+ "feature_revert_label": {
1971
+ "source": "Revert",
1972
+ "translation": "Annulla"
1973
+ },
1974
+ "feature_search_description": {
1975
+ "source": "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
1976
+ "translation": "Fornisce una sovrapposizione con scorciatoia per cercare blocchi nella pagina corrente o contenuto esistente da aggiungere come blocchi."
1977
+ },
1978
+ "feature_search_label": {
1979
+ "source": "Search",
1980
+ "translation": "Cerca"
1981
+ },
1982
+ "feature_selection_description": {
1983
+ "source": "Renders an overlay that highlights the selected blocks.",
1984
+ "translation": "Visualizza una sovrapposizione che evidenzia i blocchi selezionati."
1985
+ },
1986
+ "feature_selection_label": {
1987
+ "source": "Selection",
1988
+ "translation": "Selezione"
1989
+ },
1990
+ "feature_settings_description": {
1991
+ "source": "Provides a menu button to display a settings dialog.",
1992
+ "translation": "Fornisce un pulsante di menu per visualizzare una finestra di dialogo delle impostazioni."
1993
+ },
1994
+ "feature_settings_label": {
1995
+ "source": "Settings",
1996
+ "translation": "Impostazioni"
1997
+ },
1998
+ "feature_settings_setting_lowPerformanceMode_description": {
1999
+ "source": "Reduces the animations and interactivity to a minimum for devices with low performance.",
2000
+ "translation": "Riduce le animazioni e l'interattività al minimo per dispositivi con prestazioni basse."
2001
+ },
2002
+ "feature_settings_setting_lowPerformanceMode_label": {
2003
+ "source": "Enable low performance mode",
2004
+ "translation": "Abilita modalità basse prestazioni"
2005
+ },
2006
+ "feature_settings_setting_resetAllSettings_label": {
2007
+ "source": "Reset all settings",
2008
+ "translation": "Ripristina tutte le impostazioni"
2009
+ },
2010
+ "feature_settings_setting_useAnimations_description": {
2011
+ "source": "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
2012
+ "translation": "Anima elementi dell'interfaccia come finestre di dialogo o cassetti, o interazioni come trascina e rilascia o modifiche di scorrimento."
2013
+ },
2014
+ "feature_settings_setting_useAnimations_label": {
2015
+ "source": "Use animations",
2016
+ "translation": "Usa animazioni"
2017
+ },
2018
+ "feature_structure_description": {
2019
+ "source": "Provides a sidebar button to render a structured list of all blocks on the current page.",
2020
+ "translation": "Fornisce un pulsante della barra laterale per visualizzare un elenco strutturato di tutti i blocchi nella pagina corrente."
2021
+ },
2022
+ "feature_structure_label": {
2023
+ "source": "Structure",
2024
+ "translation": "Struttura"
2025
+ },
2026
+ "feature_templates_description": {
2027
+ "source": "Add blocks from templates.",
2028
+ "translation": ""
2029
+ },
2030
+ "feature_templates_label": {
2031
+ "source": "Templates",
2032
+ "translation": ""
2033
+ },
2034
+ "feature_theme_description": {
2035
+ "source": "Implements a theme editor.",
2036
+ "translation": "Implementa un editor di temi."
2037
+ },
2038
+ "feature_theme_label": {
2039
+ "source": "Theme",
2040
+ "translation": "Tema"
2041
+ },
2042
+ "feature_touch-action-bar_description": {
2043
+ "source": "Renders a button on touch devices to cancel touch actions.",
2044
+ "translation": "Visualizza un pulsante sui dispositivi touch per annullare le azioni touch."
2045
+ },
2046
+ "feature_touch-action-bar_label": {
2047
+ "source": "Touch Action Bar",
2048
+ "translation": "Barra delle azioni touch"
2049
+ },
2050
+ "feature_tour_description": {
2051
+ "source": "Provides a tour overlay to get to know the editor.",
2052
+ "translation": "Fornisce una sovrapposizione di tour per conoscere l'editor."
2053
+ },
2054
+ "feature_tour_label": {
2055
+ "source": "Tour",
2056
+ "translation": "Tour"
2057
+ },
2058
+ "feature_transform_description": {
2059
+ "source": "Provides integration for block transform plugins.",
2060
+ "translation": "Fornisce l'integrazione per i plugin di trasformazione dei blocchi."
2061
+ },
2062
+ "feature_transform_label": {
2063
+ "source": "Transform",
2064
+ "translation": "Trasforma"
2065
+ },
2066
+ "feature_translations_description": {
2067
+ "source": "Adds support for block translations.",
2068
+ "translation": "Aggiunge il supporto per le traduzioni dei blocchi."
2069
+ },
2070
+ "feature_translations_label": {
2071
+ "source": "Translations",
2072
+ "translation": "Traduzioni"
2073
+ },
2074
+ "feature_validations_description": {
2075
+ "source": "Provides a sidebar pane to render validations.",
2076
+ "translation": "Fornisce un pannello della barra laterale per visualizzare le validazioni."
2077
+ },
2078
+ "feature_validations_label": {
2079
+ "source": "Validations",
2080
+ "translation": "Validazioni"
2081
+ },
2082
+ "fieldIsRequired": {
2083
+ "source": "This field is required",
2084
+ "translation": "Questo campo è obbligatorio"
2085
+ },
2086
+ "fragmentsAddFragmentAction": {
2087
+ "source": "Fragment",
2088
+ "translation": ""
2089
+ },
2090
+ "fragmentsAddFragmentDescription": {
2091
+ "source": "<p>Drag the icon into the page to add a fragment block.</p><p>Fragments are reusable blocks that always render the same content.</p>",
2092
+ "translation": ""
2093
+ },
2094
+ "fragmentsPlaceDialogLead": {
2095
+ "source": "Select a block fragment to add to the page.",
2096
+ "translation": ""
2097
+ },
2098
+ "fragmentsPlaceDialogSearchLabel": {
2099
+ "source": "Filter fragments",
2100
+ "translation": ""
2101
+ },
2102
+ "fragmentsPlaceDialogSearchPlaceholder": {
2103
+ "source": "Search fragments",
2104
+ "translation": ""
2105
+ },
2106
+ "fragmentsPlaceDialogSubmitButton": {
2107
+ "source": "Add selected fragment",
2108
+ "translation": ""
2109
+ },
2110
+ "fragmentsPlaceDialogTitle": {
2111
+ "source": "Add fragment block",
2112
+ "translation": ""
2113
+ },
2114
+ "gridHide": {
2115
+ "source": "Hide grid",
2116
+ "translation": "Nascondi griglia"
2117
+ },
2118
+ "gridShow": {
2119
+ "source": "Show grid",
2120
+ "translation": "Mostra griglia"
2121
+ },
2122
+ "gridToggle": {
2123
+ "source": "Toggle grid",
2124
+ "translation": ""
2125
+ },
2126
+ "gridTourText": {
2127
+ "source": "Display a layout grid overlay on top of the page.",
2128
+ "translation": ""
2129
+ },
2130
+ "helpTourText": {
2131
+ "source": "Shows a list of available shortcuts.",
2132
+ "translation": ""
2133
+ },
2134
+ "history": {
2135
+ "source": "History",
2136
+ "translation": "Cronologia"
2137
+ },
2138
+ "historyCurrentRevision": {
2139
+ "source": "Current revision",
2140
+ "translation": "Revisione attuale"
2141
+ },
2142
+ "historyEmpty": {
2143
+ "source": "There are now changes yet.",
2144
+ "translation": ""
2145
+ },
2146
+ "historyRedo": {
2147
+ "source": "Redo",
2148
+ "translation": ""
2149
+ },
2150
+ "historyRedoTourText": {
2151
+ "source": "Redo the previous change.",
2152
+ "translation": ""
2153
+ },
2154
+ "historyShowMore": {
2155
+ "source": "Show @count more",
2156
+ "translation": "Mostra altre @count"
2157
+ },
2158
+ "historyTourText": {
2159
+ "source": "See a list of all changes made so far and switch back and forth between changes.",
2160
+ "translation": ""
2161
+ },
2162
+ "historyUndo": {
2163
+ "source": "Undo",
2164
+ "translation": ""
2165
+ },
2166
+ "historyUndoTourText": {
2167
+ "source": "Undo the last change.",
2168
+ "translation": ""
2169
+ },
2170
+ "importExistingDescription": {
2171
+ "source": "Import from an existing page",
2172
+ "translation": "Importa da una pagina esistente"
2173
+ },
2174
+ "importExistingDialogLead": {
2175
+ "source": "Import content from an existing page. The items will be added to the end of the list. This action can be undone.",
2176
+ "translation": "Importa contenuti da una pagina esistente. Gli elementi verranno aggiunti alla fine della lista. Questa azione può essere annullata."
2177
+ },
2178
+ "importExistingDialogSubmit": {
2179
+ "source": "Import content",
2180
+ "translation": "Importa contenuti"
2181
+ },
2182
+ "importExistingDialogTitle": {
2183
+ "source": "Import from existing page",
2184
+ "translation": "Importa da una pagina esistente"
2185
+ },
2186
+ "importExistingError": {
2187
+ "source": "Content could not be imported.",
2188
+ "translation": "I contenuti non possono essere importati."
2189
+ },
2190
+ "importExistingFieldsLabel": {
2191
+ "source": "Which content would you like to import?",
2192
+ "translation": "Quali contenuti vuoi importare?"
2193
+ },
2194
+ "importExistingPagesTitle": {
2195
+ "source": "Select page",
2196
+ "translation": ""
2197
+ },
2198
+ "importExistingSuccess": {
2199
+ "source": "Content imported successfully.",
2200
+ "translation": "Contenuti importati con successo."
2201
+ },
2202
+ "importExistingTitle": {
2203
+ "source": "Import...",
2204
+ "translation": "Importa..."
2205
+ },
2206
+ "interactionLayerOff": {
2207
+ "source": "Show interaction layers",
2208
+ "translation": ""
2209
+ },
2210
+ "interactionLayersOn": {
2211
+ "source": "Hide interaction layers",
2212
+ "translation": ""
2213
+ },
2214
+ "keyboardSpace": {
2215
+ "source": "Space",
2216
+ "translation": ""
2217
+ },
2218
+ "libraryAdd": {
2219
+ "source": "Add to library...",
2220
+ "translation": "Aggiungi alla biblioteca"
2221
+ },
2222
+ "libraryAddDescription": {
2223
+ "source": "<p>Add a reusable block from the block library. Changes to that block will become visible on all pages.</p>",
2224
+ "translation": ""
2225
+ },
2226
+ "libraryAddFromLibrary": {
2227
+ "source": "From library",
2228
+ "translation": ""
2229
+ },
2230
+ "libraryDetach": {
2231
+ "source": "Detach from library",
2232
+ "translation": ""
2233
+ },
2234
+ "libraryDialogDescriptionLabel": {
2235
+ "source": "Description",
2236
+ "translation": "Descrizione"
2237
+ },
2238
+ "libraryDialogLead": {
2239
+ "source": "When you add an item to the library, you can use it on multiple pages at the same time. Changes to this item are then immediately published on all pages.",
2240
+ "translation": "Aggiungendo un elemento alla biblioteca, puoi utilizzarlo su più pagine contemporaneamente. Le modifiche a questo elemento saranno pubblicate immediatamente su tutte le pagine."
2241
+ },
2242
+ "libraryDialogReusableInfo": {
2243
+ "source": "The library item will be available for placement on other pages once this page has been published.",
2244
+ "translation": ""
2245
+ },
2246
+ "libraryDialogSubmit": {
2247
+ "source": "Add to library",
2248
+ "translation": "Aggiungi alla biblioteca"
2249
+ },
2250
+ "libraryDialogTitle": {
2251
+ "source": "Add to library",
2252
+ "translation": "Aggiungi alla biblioteca"
2253
+ },
2254
+ "libraryDialogTitleInputPlaceholder": {
2255
+ "source": "e.g. Teaser Campaign 2024",
2256
+ "translation": "es. Anteprima Campagna 2023"
2257
+ },
2258
+ "libraryError": {
2259
+ "source": "Failed to add block to library.",
2260
+ "translation": "L'elemento non può essere reso riutilizzabile."
2261
+ },
2262
+ "libraryItemEditOverlayBack": {
2263
+ "source": "Back to page",
2264
+ "translation": ""
2265
+ },
2266
+ "libraryItemEditOverlayBackWithPage": {
2267
+ "source": "Back to \"@label\"",
2268
+ "translation": ""
2269
+ },
2270
+ "libraryItemEditOverlayTitle": {
2271
+ "source": "Edit reusable block",
2272
+ "translation": ""
2273
+ },
2274
+ "libraryPlaceBundleSelectLabel": {
2275
+ "source": "Bundle",
2276
+ "translation": ""
2277
+ },
2278
+ "libraryPlaceDialogLead": {
2279
+ "source": "Select a reusable block from the library to add it to your layout. You can detach the block later.",
2280
+ "translation": ""
2281
+ },
2282
+ "libraryPlaceDialogSubmit": {
2283
+ "source": "Add reusable block",
2284
+ "translation": ""
2285
+ },
2286
+ "libraryPlaceDialogTitle": {
2287
+ "source": "Add block from library",
2288
+ "translation": ""
2289
+ },
2290
+ "libraryPreviewLabel": {
2291
+ "source": "Preview",
2292
+ "translation": "Anteprima"
2293
+ },
2294
+ "manageSchedule": {
2295
+ "source": "Manage schedule...",
2296
+ "translation": ""
2297
+ },
2298
+ "maskHide": {
2299
+ "source": "Hide non-editable areas",
2300
+ "translation": "Nascondi campi di contenuto"
2301
+ },
2302
+ "maskShow": {
2303
+ "source": "Show non-editable areas",
2304
+ "translation": "Mostra campi di contenuto"
2305
+ },
2306
+ "maskToggle": {
2307
+ "source": "Toggle non-editable areas",
2308
+ "translation": ""
2309
+ },
2310
+ "maskTourText": {
2311
+ "source": "Toggle between showing or hiding non-editable parts of the page.",
2312
+ "translation": ""
2313
+ },
2314
+ "mediaLibrary": {
2315
+ "source": "Media Library",
2316
+ "translation": ""
2317
+ },
2318
+ "mediaLibraryReplaceFailed": {
2319
+ "source": "Failed to replace media.",
2320
+ "translation": ""
2321
+ },
2322
+ "mediaLibraryReplaceMedia": {
2323
+ "source": "Replace @field",
2324
+ "translation": ""
2325
+ },
2326
+ "mediaLibraryTourText": {
2327
+ "source": "Search for media like images and drag and drop them into the page.",
2328
+ "translation": ""
2329
+ },
2330
+ "mediaSelectConfirm": {
2331
+ "source": "Use selected",
2332
+ "translation": ""
2333
+ },
2334
+ "mediaSelectTitle": {
2335
+ "source": "Select a media item",
2336
+ "translation": ""
2337
+ },
2338
+ "multipleItemsLabel": {
2339
+ "source": "Items",
2340
+ "translation": "Elementi"
2341
+ },
2342
+ "nameDescription": {
2343
+ "source": "Name / Description",
2344
+ "translation": ""
2345
+ },
2346
+ "notSet": {
2347
+ "source": "Not set",
2348
+ "translation": ""
2349
+ },
2350
+ "notSupported": {
2351
+ "source": "Not supported",
2352
+ "translation": ""
2353
+ },
2354
+ "optionBkVisibleLanguagesAll": {
2355
+ "source": "All languages",
2356
+ "translation": ""
2357
+ },
2358
+ "optionsCommand.selectCheckboxValue": {
2359
+ "source": "Select \"@value\" in \"@option\"",
2360
+ "translation": ""
2361
+ },
2362
+ "optionsCommand.setOption": {
2363
+ "source": "Set option \"@option\" to \"@value\"",
2364
+ "translation": ""
2365
+ },
2366
+ "optionsCommand.unselectCheckboxValue": {
2367
+ "source": "Unselect \"@value\" in \"@option\"",
2368
+ "translation": ""
2369
+ },
2370
+ "overlayDoubleClickInfo": {
2371
+ "source": "<strong>Double click</strong> to close overlay",
2372
+ "translation": ""
2373
+ },
2374
+ "ownershipError": {
2375
+ "source": "Error in assigning",
2376
+ "translation": "Errore nell'assegnazione"
2377
+ },
2378
+ "ownershipNote": {
2379
+ "source": "This page is currently being edited by @name. Changes can only be made by one person at a time.",
2380
+ "translation": "Questa pagina è attualmente in lavorazione da @name. Le modifiche possono essere effettuate solo da una persona alla volta."
2381
+ },
2382
+ "ownershipSuccess": {
2383
+ "source": "You are now the owner.",
2384
+ "translation": "Ora sei il proprietario."
2385
+ },
2386
+ "ownershipTakeOwnership": {
2387
+ "source": "Assign to me",
2388
+ "translation": "Assegna a me"
2389
+ },
2390
+ "pageIsNotPublished": {
2391
+ "source": "Page is not published",
2392
+ "translation": "Pagina non pubblicata"
2393
+ },
2394
+ "pageIsPublished": {
2395
+ "source": "Page is published",
2396
+ "translation": "Pagina pubblicata"
2397
+ },
2398
+ "pageIsPublishedWithPendingChanges": {
2399
+ "source": "Page is published (changes pending)",
2400
+ "translation": "Pagina pubblicata (modifiche in attesa)"
2401
+ },
2402
+ "paste": {
2403
+ "source": "Paste",
2404
+ "translation": ""
2405
+ },
2406
+ "previewDialogLead": {
2407
+ "source": "Scan the QR code with your smartphone to open the preview.",
2408
+ "translation": "Scansiona il codice QR con il tuo smartphone per aprire l'anteprima."
2409
+ },
2410
+ "previewDialogTitle": {
2411
+ "source": "Preview with smartphone",
2412
+ "translation": "Anteprima con smartphone"
2413
+ },
2414
+ "previewNewWindow": {
2415
+ "source": "Preview (new window)",
2416
+ "translation": "Anteprima (nuova finestra)"
2417
+ },
2418
+ "previewNewWindowTourText": {
2419
+ "source": "Opens a preview of the current changes in a new window.",
2420
+ "translation": ""
2421
+ },
2422
+ "previewQrCodeText": {
2423
+ "source": "You can also copy the link and share it.",
2424
+ "translation": ""
2425
+ },
2426
+ "previewWithSmartphone": {
2427
+ "source": "Preview (with smartphone)",
2428
+ "translation": "Anteprima (con smartphone)"
2429
+ },
2430
+ "previewWithSmartphoneTourText": {
2431
+ "source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
2432
+ "translation": ""
2433
+ },
2434
+ "proxyViewHide": {
2435
+ "source": "Show content preview",
2436
+ "translation": ""
2437
+ },
2438
+ "proxyViewShow": {
2439
+ "source": "Show structure view",
2440
+ "translation": ""
2441
+ },
2442
+ "proxyViewToggle": {
2443
+ "source": "Toggle structure view",
2444
+ "translation": ""
2445
+ },
2446
+ "proxyViewTourText": {
2447
+ "source": "Displays the content blocks as a structured view.",
2448
+ "translation": ""
2449
+ },
2450
+ "publishAlreadyScheduledDescription": {
2451
+ "source": "This page is already scheduled for publishing",
2452
+ "translation": ""
2453
+ },
2454
+ "publishAndCloseLabel": {
2455
+ "source": "Publish & Close",
2456
+ "translation": ""
2457
+ },
2458
+ "publishAndCloseLabelUnpublished": {
2459
+ "source": "Save & Close",
2460
+ "translation": ""
2461
+ },
2462
+ "publishCurrentPage": {
2463
+ "source": "Current page",
2464
+ "translation": ""
2465
+ },
2466
+ "publishCurrentlyPublished": {
2467
+ "source": "Page is published",
2468
+ "translation": ""
2469
+ },
2470
+ "publishCurrentlyUnpublished": {
2471
+ "source": "Page is unpublished",
2472
+ "translation": ""
2473
+ },
2474
+ "publishDescription": {
2475
+ "source": "Publish all changes.",
2476
+ "translation": "Rendi pubbliche tutte le modifiche"
2477
+ },
2478
+ "publishDescriptionScheduled": {
2479
+ "source": "View or change the scheduled publication",
2480
+ "translation": ""
2481
+ },
2482
+ "publishDescriptionUnpublished": {
2483
+ "source": "Save all changes while keeping page unpublished",
2484
+ "translation": ""
2485
+ },
2486
+ "publishDialogTitle": {
2487
+ "source": "Publish changes",
2488
+ "translation": ""
2489
+ },
2490
+ "publishError": {
2491
+ "source": "Changes could not be published.",
2492
+ "translation": "Le modifiche non possono essere pubblicate."
2493
+ },
2494
+ "publishLabel": {
2495
+ "source": "Publish",
2496
+ "translation": "Pubblica"
2497
+ },
2498
+ "publishLabelUnpublished": {
2499
+ "source": "Save",
2500
+ "translation": ""
2501
+ },
2502
+ "publishManageSchedule": {
2503
+ "source": "Manage scheduling",
2504
+ "translation": ""
2505
+ },
2506
+ "publishMode": {
2507
+ "source": "Publish mode",
2508
+ "translation": ""
2509
+ },
2510
+ "publishModeImmediateDescription": {
2511
+ "source": "Publish changes immediately",
2512
+ "translation": ""
2513
+ },
2514
+ "publishModeImmediateTitle": {
2515
+ "source": "Publish",
2516
+ "translation": ""
2517
+ },
2518
+ "publishModeSaveDescription": {
2519
+ "source": "Save changes without publishing",
2520
+ "translation": ""
2521
+ },
2522
+ "publishModeSaveTitle": {
2523
+ "source": "Save",
2524
+ "translation": ""
2525
+ },
2526
+ "publishModeScheduledDescription": {
2527
+ "source": "Schedule changes for publishing",
2528
+ "translation": ""
2529
+ },
2530
+ "publishModeScheduledTitle": {
2531
+ "source": "Schedule",
2532
+ "translation": ""
2533
+ },
2534
+ "publishName": {
2535
+ "source": "Name",
2536
+ "translation": ""
2537
+ },
2538
+ "publishPublicationScheduled": {
2539
+ "source": "Publication scheduled",
2540
+ "translation": ""
2541
+ },
2542
+ "publishPublishContent": {
2543
+ "source": "Publish content",
2544
+ "translation": ""
2545
+ },
2546
+ "publishPublishContents": {
2547
+ "source": "Publish @count contents",
2548
+ "translation": ""
2549
+ },
2550
+ "publishRemainsPublished": {
2551
+ "source": "Remains published",
2552
+ "translation": ""
2553
+ },
2554
+ "publishRemainsUnpublished": {
2555
+ "source": "Remains unpublished",
2556
+ "translation": ""
2557
+ },
2558
+ "publishRemoveSchedule": {
2559
+ "source": "Remove schedule",
2560
+ "translation": ""
2561
+ },
2562
+ "publishResultPublishChangesNowPublished": {
2563
+ "source": "Changes are published, page is now published",
2564
+ "translation": ""
2565
+ },
2566
+ "publishResultPublishChangesRemainPublished": {
2567
+ "source": "Changes are published, page remains published",
2568
+ "translation": ""
2569
+ },
2570
+ "publishResultSaveChanges": {
2571
+ "source": "Changes are saved, page remains unpublished",
2572
+ "translation": ""
2573
+ },
2574
+ "publishResultScheduledChanges": {
2575
+ "source": "Changes will be published on @date",
2576
+ "translation": ""
2577
+ },
2578
+ "publishResultScheduledPage": {
2579
+ "source": "Page will be published on @date",
2580
+ "translation": ""
2581
+ },
2582
+ "publishRevisionLogMessage": {
2583
+ "source": "Change description",
2584
+ "translation": "Descrizione delle modifiche"
2585
+ },
2586
+ "publishRevisionLogMessageDescription": {
2587
+ "source": "Briefly describe the changes made",
2588
+ "translation": ""
2589
+ },
2590
+ "publishSaveContent": {
2591
+ "source": "Save content",
2592
+ "translation": ""
2593
+ },
2594
+ "publishSaveContents": {
2595
+ "source": "Save @count contents",
2596
+ "translation": ""
2597
+ },
2598
+ "publishScheduleDate": {
2599
+ "source": "Publication date",
2600
+ "translation": ""
2601
+ },
2602
+ "publishScheduleDateTooSoon": {
2603
+ "source": "The scheduled date must be at least 2 minutes in the future",
2604
+ "translation": ""
2605
+ },
2606
+ "publishSchedulePublication": {
2607
+ "source": "Schedule publication",
2608
+ "translation": ""
2609
+ },
2610
+ "publishSchedulePublications": {
2611
+ "source": "Schedule @count publications",
2612
+ "translation": ""
2613
+ },
2614
+ "publishScheduleSuccess": {
2615
+ "source": "Publication scheduled for @date",
2616
+ "translation": ""
2617
+ },
2618
+ "publishScheduledBlockPlural": {
2619
+ "source": "@count blocks are scheduled to be published on @date",
2620
+ "translation": ""
2621
+ },
2622
+ "publishScheduledBlockSingular": {
2623
+ "source": "1 block is scheduled to be published on @date",
2624
+ "translation": ""
2625
+ },
2626
+ "publishScheduledInfo": {
2627
+ "source": "You can still make changes until the scheduled publication date.",
2628
+ "translation": ""
2629
+ },
2630
+ "publishStatus": {
2631
+ "source": "Status",
2632
+ "translation": ""
2633
+ },
2634
+ "publishSuccess": {
2635
+ "source": "Changes published successfully.",
2636
+ "translation": "Modifiche pubblicate con successo."
2637
+ },
2638
+ "publishSuccessfullyPublished": {
2639
+ "source": "Successfully published",
2640
+ "translation": ""
2641
+ },
2642
+ "publishSuccessfullySaved": {
2643
+ "source": "Successfully saved",
2644
+ "translation": ""
2645
+ },
2646
+ "publishSummary": {
2647
+ "source": "Summary",
2648
+ "translation": ""
2649
+ },
2650
+ "publishWillBePublished": {
2651
+ "source": "Will be published",
2652
+ "translation": ""
2653
+ },
2654
+ "publishWillBeScheduled": {
2655
+ "source": "Will be scheduled",
2656
+ "translation": ""
2657
+ },
2658
+ "responsivePreviewCustomViewport": {
2659
+ "source": "Custom",
2660
+ "translation": ""
2661
+ },
2662
+ "responsivePreviewTitle": {
2663
+ "source": "Responsive Preview",
2664
+ "translation": ""
2665
+ },
2666
+ "responsivePreviewTourText": {
2667
+ "source": "See how your changes look like on smaller screens, such as smartphones. Click on the \"detach\" button to be able to select additional viewport sizes.",
2668
+ "translation": ""
2669
+ },
2670
+ "revertDialogLead": {
2671
+ "source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
2672
+ "translation": "Questo eliminerà tutte le modifiche e ripristinerà lo stato attualmente pubblicato. Questa azione non può essere annullata."
2673
+ },
2674
+ "revertDialogSubmit": {
2675
+ "source": "Discard changes",
2676
+ "translation": "Scarta modifiche"
2677
+ },
2678
+ "revertDialogTitle": {
2679
+ "source": "Irrevocably discard changes",
2680
+ "translation": "Scarta irrevocabilmente le modifiche"
2681
+ },
2682
+ "revertError": {
2683
+ "source": "Changes could not be discarded.",
2684
+ "translation": "Le modifiche non possono essere scartate."
2685
+ },
2686
+ "revertMenuDescription": {
2687
+ "source": "Restore currently published state",
2688
+ "translation": "Ripristina lo stato attualmente pubblicato"
2689
+ },
2690
+ "revertMenuTitle": {
2691
+ "source": "Discard...",
2692
+ "translation": "Annulla..."
2693
+ },
2694
+ "revertSuccess": {
2695
+ "source": "All changes have been discarded.",
2696
+ "translation": "Tutte le modifiche sono state scartate."
2697
+ },
2698
+ "scheduledFor": {
2699
+ "source": "The changes will be published on this date.",
2700
+ "translation": ""
2701
+ },
2702
+ "searchBoxNoResultsFound": {
2703
+ "source": "No results found",
2704
+ "translation": "Nessun risultato trovato"
2705
+ },
2706
+ "searchBoxOnThisPage": {
2707
+ "source": "On this page",
2708
+ "translation": "Su questa pagina"
2709
+ },
2710
+ "searchBoxPlaceholder": {
2711
+ "source": "Enter search term",
2712
+ "translation": "Inserisci un termine di ricerca"
2713
+ },
2714
+ "searchContentReplace": {
2715
+ "source": "Replace @field",
2716
+ "translation": ""
2717
+ },
2718
+ "searchContentReplaceFailed": {
2719
+ "source": "Failed to replace content.",
2720
+ "translation": ""
2721
+ },
2722
+ "searchToolbarLabel": {
2723
+ "source": "Search content",
2724
+ "translation": "Cerca contenuti"
2725
+ },
2726
+ "searchTourText": {
2727
+ "source": "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
2728
+ "translation": ""
2729
+ },
2730
+ "selectAllBlocks": {
2731
+ "source": "Select all blocks",
2732
+ "translation": ""
2733
+ },
2734
+ "selectAllOfBundle": {
2735
+ "source": "Select all \"@bundle\" blocks",
2736
+ "translation": ""
2737
+ },
2738
+ "selectedIsNew": {
2739
+ "source": "New",
2740
+ "translation": ""
2741
+ },
2742
+ "settingsAdvanced": {
2743
+ "source": "Advanced",
2744
+ "translation": ""
2745
+ },
2746
+ "settingsAppearance": {
2747
+ "source": "Appearance",
2748
+ "translation": ""
2749
+ },
2750
+ "settingsArtboard": {
2751
+ "source": "Artboard",
2752
+ "translation": ""
2753
+ },
2754
+ "settingsBehaviour": {
2755
+ "source": "Behaviour",
2756
+ "translation": "Comportamento"
2757
+ },
2758
+ "settingsBeta": {
2759
+ "source": "New Features",
2760
+ "translation": ""
2761
+ },
2762
+ "settingsDialogTitle": {
2763
+ "source": "Change settings",
2764
+ "translation": "Impostazioni"
2765
+ },
2766
+ "settingsMenuDescription": {
2767
+ "source": "Personal settings for the editor",
2768
+ "translation": "Impostazioni personali per l'editor"
2769
+ },
2770
+ "settingsMenuTitle": {
2771
+ "source": "Settings",
2772
+ "translation": "Impostazioni"
2773
+ },
2774
+ "shortcutGroupBlocks": {
2775
+ "source": "Blocks",
2776
+ "translation": ""
2777
+ },
2778
+ "shortcutGroupGeneral": {
2779
+ "source": "General",
2780
+ "translation": ""
2781
+ },
2782
+ "shortcutGroupUi": {
2783
+ "source": "UI",
2784
+ "translation": ""
2785
+ },
2786
+ "sidebar.hide": {
2787
+ "source": "Hide @title",
2788
+ "translation": ""
2789
+ },
2790
+ "sidebar.show": {
2791
+ "source": "Show @title",
2792
+ "translation": ""
2793
+ },
2794
+ "singleComment": {
2795
+ "source": "comment",
2796
+ "translation": ""
2797
+ },
2798
+ "stateUnavailableText": {
2799
+ "source": "This could be due to missing permissions or a temporary problem. Please try again later.",
2800
+ "translation": ""
2801
+ },
2802
+ "stateUnavailableTitle": {
2803
+ "source": "The edit state could not be loaded.",
2804
+ "translation": ""
2805
+ },
2806
+ "structureToolbarLabel": {
2807
+ "source": "Structure",
2808
+ "translation": "Struttura"
2809
+ },
2810
+ "structureTourText": {
2811
+ "source": "Shows a structured list of all blocks on the current page. Click on any block to quickly jump to it.",
2812
+ "translation": ""
2813
+ },
2814
+ "systemRequirementsDialogButton": {
2815
+ "source": "Continue anyway",
2816
+ "translation": ""
2817
+ },
2818
+ "systemRequirementsDialogLead": {
2819
+ "source": "blökkli has detected that your browser does not meet one or more system requirements. For the best experience, please use a browser that supports all the listed requirements.",
2820
+ "translation": ""
2821
+ },
2822
+ "systemRequirementsDialogText": {
2823
+ "source": "blökkli has been tested and optimized for the latest versions of Chrome, Firefox, Edge, and Safari. Features like WebGL are well supported, but they may sometimes be disabled for performance or security reasons.",
2824
+ "translation": ""
2825
+ },
2826
+ "systemRequirementsDialogTitle": {
2827
+ "source": "System Requirements",
2828
+ "translation": ""
2829
+ },
2830
+ "systemRequirementsWebglText": {
2831
+ "source": "blökkli uses WebGL for fast rendering of UI elements such as selected blocks and drag-and-drop indicators. If WebGL is not supported, Blökkli will resort to fallback rendering, which is slower and lacks full feature support.",
2832
+ "translation": ""
2833
+ },
2834
+ "templatesAddTemplate": {
2835
+ "source": "Template",
2836
+ "translation": ""
2837
+ },
2838
+ "templatesAddTemplateDescription": {
2839
+ "source": "<p>Drag the icon into the page to add blocks from a template.</p><p>Templates are copied to your page and can be changed without affecting other pages.</p>",
2840
+ "translation": ""
2841
+ },
2842
+ "templatesCanNotBeDefault": {
2843
+ "source": "Only single blocks can be made default.",
2844
+ "translation": ""
2845
+ },
2846
+ "templatesCreate": {
2847
+ "source": "Create template...",
2848
+ "translation": ""
2849
+ },
2850
+ "templatesCreateDialogDefaultDescription": {
2851
+ "source": "If set, this template is used automatically when adding a new block of this type.",
2852
+ "translation": ""
2853
+ },
2854
+ "templatesCreateDialogDefaultLabel": {
2855
+ "source": "Use as default",
2856
+ "translation": ""
2857
+ },
2858
+ "templatesCreateDialogDescriptionLabel": {
2859
+ "source": "Description",
2860
+ "translation": ""
2861
+ },
2862
+ "templatesCreateDialogDescriptionPlaceholder": {
2863
+ "source": "Optional description of the template",
2864
+ "translation": ""
2865
+ },
2866
+ "templatesCreateDialogLabelLabel": {
2867
+ "source": "Name",
2868
+ "translation": ""
2869
+ },
2870
+ "templatesCreateDialogLabelPlaceholder": {
2871
+ "source": "e.g. Hero Section",
2872
+ "translation": ""
2873
+ },
2874
+ "templatesCreateDialogLead": {
2875
+ "source": "Create a reusable template from the selected blocks. Templates can be added to any page.",
2876
+ "translation": ""
2877
+ },
2878
+ "templatesCreateDialogPreviewLabel": {
2879
+ "source": "Preview",
2880
+ "translation": ""
2881
+ },
2882
+ "templatesCreateDialogSubmit": {
2883
+ "source": "Create template",
2884
+ "translation": ""
2885
+ },
2886
+ "templatesCreateDialogTitle": {
2887
+ "source": "Create template",
2888
+ "translation": ""
2889
+ },
2890
+ "templatesCreateError": {
2891
+ "source": "Failed to create template.",
2892
+ "translation": ""
2893
+ },
2894
+ "templatesDefaultPill": {
2895
+ "source": "Default",
2896
+ "translation": ""
2897
+ },
2898
+ "templatesDefaultPillDescription": {
2899
+ "source": "This template is used when new blocks of this type are created.",
2900
+ "translation": ""
2901
+ },
2902
+ "templatesDeleteError": {
2903
+ "source": "Failed to delete template.",
2904
+ "translation": ""
2905
+ },
2906
+ "templatesDeleteSuccess": {
2907
+ "source": "Template deleted successfully.",
2908
+ "translation": ""
2909
+ },
2910
+ "templatesEditOverlayTitle": {
2911
+ "source": "Edit template",
2912
+ "translation": ""
2913
+ },
2914
+ "templatesManageDialogCancelDelete": {
2915
+ "source": "Cancel",
2916
+ "translation": ""
2917
+ },
2918
+ "templatesManageDialogConfirmDelete": {
2919
+ "source": "Delete",
2920
+ "translation": ""
2921
+ },
2922
+ "templatesManageDialogDelete": {
2923
+ "source": "Delete",
2924
+ "translation": ""
2925
+ },
2926
+ "templatesManageDialogEdit": {
2927
+ "source": "Edit",
2928
+ "translation": ""
2929
+ },
2930
+ "templatesManageDialogLead": {
2931
+ "source": "View, edit and delete your block templates.",
2932
+ "translation": ""
2933
+ },
2934
+ "templatesManageDialogNoResults": {
2935
+ "source": "No templates found.",
2936
+ "translation": ""
2937
+ },
2938
+ "templatesManageDialogTitle": {
2939
+ "source": "Manage templates",
2940
+ "translation": ""
2941
+ },
2942
+ "templatesMenuDescription": {
2943
+ "source": "Edit and delete block templates",
2944
+ "translation": ""
2945
+ },
2946
+ "templatesMenuLabel": {
2947
+ "source": "Templates...",
2948
+ "translation": ""
2949
+ },
2950
+ "templatesMissingDefaultPermissions": {
2951
+ "source": "Missing permission to create default templates.",
2952
+ "translation": ""
2953
+ },
2954
+ "templatesNoResults": {
2955
+ "source": "No templates available for this field.",
2956
+ "translation": ""
2957
+ },
2958
+ "templatesPlaceDialogDescription": {
2959
+ "source": "Templates create copies of blocks that can be edited freely on this page without affecting other pages.",
2960
+ "translation": ""
2961
+ },
2962
+ "templatesPlaceDialogSubmitButton": {
2963
+ "source": "Add template blocks",
2964
+ "translation": ""
2965
+ },
2966
+ "templatesPlaceDialogTitle": {
2967
+ "source": "Add blocks from template",
2968
+ "translation": ""
2969
+ },
2970
+ "templatesSuccessMessage": {
2971
+ "source": "Successfully created template \"@label\"",
2972
+ "translation": ""
2973
+ },
2974
+ "textareaNewLineHint": {
2975
+ "source": "Shift + Enter for new line",
2976
+ "translation": ""
2977
+ },
2978
+ "theme": {
2979
+ "source": "Theme",
2980
+ "translation": ""
2981
+ },
2982
+ "themeTourText": {
2983
+ "source": "Change the colors of the theme and generate a theme file.",
2984
+ "translation": ""
2985
+ },
2986
+ "toggleInteractionLayers": {
2987
+ "source": "Toggle interaction layers",
2988
+ "translation": ""
2989
+ },
2990
+ "touchBarCancelDragging": {
2991
+ "source": "Cancel dragging",
2992
+ "translation": ""
2993
+ },
2994
+ "touchBarFinishSelecting": {
2995
+ "source": "Finish selecting",
2996
+ "translation": ""
2997
+ },
2998
+ "tourDescription": {
2999
+ "source": "Explore the features of the editor",
3000
+ "translation": ""
3001
+ },
3002
+ "tourIntro": {
3003
+ "source": "Explore the most important features of the editor and learn how to get started using blökkli.",
3004
+ "translation": ""
3005
+ },
3006
+ "tourLabel": {
3007
+ "source": "Take a tour",
3008
+ "translation": ""
3009
+ },
3010
+ "tourNext": {
3011
+ "source": "Next",
3012
+ "translation": ""
3013
+ },
3014
+ "tourPrev": {
3015
+ "source": "Previous",
3016
+ "translation": ""
3017
+ },
3018
+ "tourStartButton": {
3019
+ "source": "Start the tour",
3020
+ "translation": ""
3021
+ },
3022
+ "transformDialogButtonApply": {
3023
+ "source": "Apply changes",
3024
+ "translation": ""
3025
+ },
3026
+ "transformDialogButtonNewSuggestion": {
3027
+ "source": "New suggestion",
3028
+ "translation": ""
3029
+ },
3030
+ "transformDialogButtonPreview": {
3031
+ "source": "Preview",
3032
+ "translation": ""
3033
+ },
3034
+ "translationsBannerButton": {
3035
+ "source": "Edit source language instead",
3036
+ "translation": ""
3037
+ },
3038
+ "translationsBannerText": {
3039
+ "source": "You are currently editing the <strong>@language</strong> translation. Some features like adding, moving or deleting blocks are not available.",
3040
+ "translation": ""
3041
+ },
3042
+ "translationsBatchTranslateMenuDescription": {
3043
+ "source": "Translate all blocks",
3044
+ "translation": "Traduci tutti gli elementi"
3045
+ },
3046
+ "translationsBatchTranslateMenuTitle": {
3047
+ "source": "Translate...",
3048
+ "translation": "Traduci..."
3049
+ },
3050
+ "translationsItemAction": {
3051
+ "source": "Translate",
3052
+ "translation": "Traduci..."
3053
+ },
3054
+ "translationsTourText": {
3055
+ "source": "Quickly switch between available translations. A greyed out language indicates the content is not yet translated. Clicking on it opens the form to create a new translation for this language.",
3056
+ "translation": ""
3057
+ },
3058
+ "translationsTourTitle": {
3059
+ "source": "Translations",
3060
+ "translation": ""
3061
+ },
3062
+ "unexpectedMutationError": {
3063
+ "source": "An unexpected error happened.",
3064
+ "translation": ""
3065
+ },
3066
+ "validationsNoneFound": {
3067
+ "source": "No validation errors found.",
3068
+ "translation": "Nessun errore di validazione trovato."
3069
+ },
3070
+ "validationsToolbarLabel": {
3071
+ "source": "Validations",
3072
+ "translation": "Validazioni"
3073
+ },
3074
+ "validationsTourText": {
3075
+ "source": "See validation errors for content or structure on the current page.",
3076
+ "translation": ""
3077
+ },
3078
+ "viewBannerReviewText": {
3079
+ "source": "You can view and add comments but cannot edit content.",
3080
+ "translation": ""
3081
+ },
3082
+ "viewBannerReviewTitle": {
3083
+ "source": "You are in review mode.",
3084
+ "translation": ""
3085
+ },
3086
+ "viewBannerViewText": {
3087
+ "source": "You can view comments but cannot edit content.",
3088
+ "translation": ""
3089
+ },
3090
+ "viewBannerViewTitle": {
3091
+ "source": "You are in view-only mode.",
3092
+ "translation": ""
3093
+ }
3094
+ }