@blokkli/editor 2.0.0-alpha.59 → 2.0.0-alpha.61

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 (324) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +28 -11
  3. package/dist/modules/agent/index.mjs +2 -5
  4. package/dist/modules/agent/runtime/app/features/agent/Container.vue +3 -3
  5. package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +15 -3
  6. package/dist/modules/agent/runtime/app/features/agent/index.vue +5 -1
  7. package/dist/modules/agent/runtime/app/features/agent/types.d.ts +2 -1
  8. package/dist/modules/agent/runtime/app/helpers/mutationResult.d.ts +38 -0
  9. package/dist/modules/agent/runtime/app/helpers/mutationResult.js +49 -0
  10. package/dist/modules/agent/runtime/app/prompts/fixReadability.js +3 -3
  11. package/dist/modules/agent/runtime/app/providers/agentProvider.d.ts +2 -1
  12. package/dist/modules/agent/runtime/app/providers/agentProvider.js +6 -6
  13. package/dist/modules/agent/runtime/app/providers/toolsProvider.js +3 -13
  14. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraphs/index.d.ts +25 -0
  15. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraphs/index.js +3 -2
  16. package/dist/modules/agent/runtime/app/tools/add_fragment/index.d.ts +22 -0
  17. package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +3 -2
  18. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.d.ts +24 -0
  19. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +3 -2
  20. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +32 -0
  21. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +6 -4
  22. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.d.ts +22 -0
  23. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +3 -2
  24. package/dist/modules/agent/runtime/app/tools/add_template/index.d.ts +22 -0
  25. package/dist/modules/agent/runtime/app/tools/add_template/index.js +5 -3
  26. package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +3 -3
  27. package/dist/modules/agent/runtime/app/tools/ask_question/index.js +7 -6
  28. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.d.vue.ts +29 -0
  29. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.vue +172 -0
  30. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/Component.vue.d.ts +29 -0
  31. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/index.d.ts +28 -0
  32. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/index.js +80 -0
  33. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.d.ts +17 -0
  34. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.js +2 -2
  35. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +16 -0
  36. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +10 -1
  37. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +3 -2
  38. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +16 -0
  39. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +3 -2
  40. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +16 -0
  41. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +3 -2
  42. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +22 -0
  43. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +5 -3
  44. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +31 -0
  45. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +7 -7
  46. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +7 -0
  47. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +2 -2
  48. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +10 -0
  49. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +3 -3
  50. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.d.ts +35 -0
  51. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +2 -2
  52. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +20 -0
  53. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +2 -2
  54. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +30 -0
  55. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +15 -11
  56. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +25 -0
  57. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +2 -2
  58. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +8 -0
  59. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +2 -2
  60. package/dist/modules/agent/runtime/app/tools/get_page_text/index.d.ts +8 -0
  61. package/dist/modules/agent/runtime/app/tools/get_page_text/index.js +65 -0
  62. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +81 -0
  63. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +20 -12
  64. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +14 -0
  65. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +2 -2
  66. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +38 -0
  67. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +7 -6
  68. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.d.ts +12 -0
  69. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +2 -2
  70. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.d.ts +16 -0
  71. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.js +62 -0
  72. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +9 -0
  73. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +2 -2
  74. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +16 -0
  75. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +3 -2
  76. package/dist/modules/agent/runtime/app/tools/helpers.d.ts +8 -2
  77. package/dist/modules/agent/runtime/app/tools/helpers.js +9 -9
  78. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +22 -0
  79. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +3 -2
  80. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +21 -0
  81. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +3 -2
  82. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +20 -0
  83. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +3 -2
  84. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +19 -0
  85. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +3 -2
  86. package/dist/modules/agent/runtime/app/tools/schemas.d.ts +25 -5
  87. package/dist/modules/agent/runtime/app/tools/schemas.js +37 -10
  88. package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +15 -0
  89. package/dist/modules/agent/runtime/app/tools/search_content/index.js +8 -7
  90. package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +5 -1
  91. package/dist/modules/agent/runtime/app/tools/search_media/index.js +3 -3
  92. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +16 -0
  93. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +2 -2
  94. package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +13 -0
  95. package/dist/modules/agent/runtime/app/tools/search_templates/index.js +2 -2
  96. package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +15 -0
  97. package/dist/modules/agent/runtime/app/tools/search_text/index.js +2 -2
  98. package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +1 -1
  99. package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +2 -2
  100. package/dist/modules/agent/runtime/app/tools/select_media/index.js +2 -2
  101. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +19 -0
  102. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +3 -2
  103. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +17 -0
  104. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +3 -2
  105. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +13 -4
  106. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +8 -7
  107. package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +17 -0
  108. package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +2 -2
  109. package/dist/modules/agent/runtime/app/types/index.d.ts +6 -9
  110. package/dist/modules/agent/runtime/app/types/index.js +4 -3
  111. package/dist/modules/agent/runtime/server/agent.js +1 -2
  112. package/dist/modules/agent/runtime/server/classes/Session/index.d.ts +2 -2
  113. package/dist/modules/agent/runtime/server/classes/Session/index.js +10 -5
  114. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +2 -1
  115. package/dist/modules/agent/runtime/shared/toolParams.d.ts +19 -0
  116. package/dist/modules/agent/runtime/shared/toolParams.js +6 -0
  117. package/dist/modules/agent/runtime/shared/toolResult.d.ts +4 -0
  118. package/dist/modules/agent/runtime/shared/toolResult.js +5 -0
  119. package/dist/modules/agent/runtime/shared/types.d.ts +23 -4
  120. package/dist/modules/agent/runtime/shared/types.js +6 -1
  121. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +4 -13
  122. package/dist/modules/drupal/graphql/features/notifications.graphql +39 -0
  123. package/dist/modules/drupal/index.mjs +6 -1
  124. package/dist/modules/drupal/runtime/adapter/index.js +38 -0
  125. package/dist/runtime/editor/components/Actions/ItemDropdown/Item.vue +0 -1
  126. package/dist/runtime/editor/components/Actions/ScrollArrow/index.d.vue.ts +13 -0
  127. package/dist/runtime/editor/components/Actions/ScrollArrow/index.vue +52 -0
  128. package/dist/runtime/editor/components/Actions/ScrollArrow/index.vue.d.ts +13 -0
  129. package/dist/runtime/editor/components/Actions/Title/index.vue +9 -8
  130. package/dist/runtime/editor/components/Actions/index.vue +47 -7
  131. package/dist/runtime/editor/components/Actions/useToolbarScroll.d.ts +25 -0
  132. package/dist/runtime/editor/components/Actions/useToolbarScroll.js +125 -0
  133. package/dist/runtime/editor/components/AddListItem/index.vue +0 -2
  134. package/dist/runtime/editor/components/AppMenu/MenuButton.vue +1 -3
  135. package/dist/runtime/editor/components/ArtboardTooltip/index.vue +4 -1
  136. package/dist/runtime/editor/components/Avatar/index.vue +0 -1
  137. package/dist/runtime/editor/components/BlockPreviewRenderer/index.d.vue.ts +1 -1
  138. package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +1 -1
  139. package/dist/runtime/editor/components/BundleSelector/index.vue +0 -4
  140. package/dist/runtime/editor/components/Dialog/index.d.vue.ts +2 -2
  141. package/dist/runtime/editor/components/Dialog/index.vue +1 -3
  142. package/dist/runtime/editor/components/Dialog/index.vue.d.ts +2 -2
  143. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.d.vue.ts +8 -0
  144. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue +12 -2
  145. package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue.d.ts +8 -0
  146. package/dist/runtime/editor/components/DiffApproval/Highlight/index.d.vue.ts +8 -0
  147. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +14 -2
  148. package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue.d.ts +8 -0
  149. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.d.vue.ts +2 -2
  150. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +0 -2
  151. package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue.d.ts +2 -2
  152. package/dist/runtime/editor/components/DiffApproval/index.vue +3 -2
  153. package/dist/runtime/editor/components/Dropdown/index.vue +0 -39
  154. package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +12 -2
  155. package/dist/runtime/editor/components/DropdownItem/index.vue +46 -2
  156. package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +12 -2
  157. package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +1 -1
  158. package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +1 -1
  159. package/dist/runtime/editor/components/Form/Datepicker/index.vue +0 -1
  160. package/dist/runtime/editor/components/Form/TextDark/index.vue +0 -1
  161. package/dist/runtime/editor/components/Form/Textarea/index.vue +0 -1
  162. package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +1 -0
  163. package/dist/runtime/editor/components/Form/Toggle/index.vue +9 -2
  164. package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +1 -0
  165. package/dist/runtime/editor/components/FormOverlay/index.vue +0 -1
  166. package/dist/runtime/editor/components/Icon/index.vue +0 -2
  167. package/dist/runtime/editor/components/Messages/Item/index.vue +4 -1
  168. package/dist/runtime/editor/components/Messages/index.vue +3 -0
  169. package/dist/runtime/editor/components/Panel/Sheet/index.vue +1 -1
  170. package/dist/runtime/editor/components/Popup/index.vue +0 -2
  171. package/dist/runtime/editor/components/RichText/Editor/index.d.vue.ts +1 -1
  172. package/dist/runtime/editor/components/RichText/Editor/index.vue.d.ts +1 -1
  173. package/dist/runtime/editor/components/ScheduleDate/index.vue +1 -3
  174. package/dist/runtime/editor/components/SearchOverlay/index.d.vue.ts +1 -1
  175. package/dist/runtime/editor/components/SearchOverlay/index.vue.d.ts +1 -1
  176. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.d.vue.ts +3 -0
  177. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.vue +74 -0
  178. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/Button/index.vue.d.ts +3 -0
  179. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.d.vue.ts +7 -0
  180. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.vue +16 -0
  181. package/dist/runtime/editor/components/Toolbar/ViewOptions/List/index.vue.d.ts +7 -0
  182. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.d.vue.ts +3 -0
  183. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.vue +57 -0
  184. package/dist/runtime/editor/components/Toolbar/ViewOptions/index.vue.d.ts +3 -0
  185. package/dist/runtime/editor/components/Toolbar/index.vue +3 -56
  186. package/dist/runtime/editor/components/ToolbarDropdown/index.d.vue.ts +21 -0
  187. package/dist/runtime/editor/components/ToolbarDropdown/index.vue +36 -0
  188. package/dist/runtime/editor/components/ToolbarDropdown/index.vue.d.ts +21 -0
  189. package/dist/runtime/editor/components/Tooltip/Context.vue +3 -1
  190. package/dist/runtime/editor/components/Tooltip/index.d.vue.ts +1 -1
  191. package/dist/runtime/editor/components/Tooltip/index.vue +4 -1
  192. package/dist/runtime/editor/components/Tooltip/index.vue.d.ts +1 -1
  193. package/dist/runtime/editor/components/index.d.ts +1 -0
  194. package/dist/runtime/editor/components/index.js +1 -0
  195. package/dist/runtime/editor/composables/defineViewOption.d.ts +5 -0
  196. package/dist/runtime/editor/composables/defineViewOption.js +10 -0
  197. package/dist/runtime/editor/composables/index.d.ts +3 -0
  198. package/dist/runtime/editor/composables/index.js +2 -0
  199. package/dist/runtime/editor/composables/useDismiss.d.ts +30 -0
  200. package/dist/runtime/editor/composables/useDismiss.js +43 -0
  201. package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +3 -3
  202. package/dist/runtime/editor/css/output.css +1 -1
  203. package/dist/runtime/editor/events/index.d.ts +23 -0
  204. package/dist/runtime/editor/features/add-list/Actions/index.vue +0 -1
  205. package/dist/runtime/editor/features/add-list/Blocks/index.vue +0 -1
  206. package/dist/runtime/editor/features/add-list/Help/Item.vue +2 -7
  207. package/dist/runtime/editor/features/add-list/Help/index.vue +1 -1
  208. package/dist/runtime/editor/features/add-list/index.vue +0 -2
  209. package/dist/runtime/editor/features/anchors/index.vue +11 -11
  210. package/dist/runtime/editor/features/anchors/types.d.ts +1 -0
  211. package/dist/runtime/editor/features/anchors/types.js +1 -0
  212. package/dist/runtime/editor/features/artboard/Renderer.vue +30 -28
  213. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +0 -3
  214. package/dist/runtime/editor/features/block-scheduler/index.vue +0 -1
  215. package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.vue +0 -4
  216. package/dist/runtime/editor/features/breadcrumbs/Crumb/index.vue +0 -5
  217. package/dist/runtime/editor/features/changelog/changelog.json +16 -0
  218. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +0 -3
  219. package/dist/runtime/editor/features/command-palette/Palette/index.vue +0 -1
  220. package/dist/runtime/editor/features/comments/AddForm/index.vue +0 -1
  221. package/dist/runtime/editor/features/comments/Comment/Actions/index.vue +0 -4
  222. package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +14 -0
  223. package/dist/runtime/editor/features/comments/Comment/index.vue +29 -8
  224. package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +14 -0
  225. package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +1 -1
  226. package/dist/runtime/editor/features/comments/CommentInput/index.vue +0 -3
  227. package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +1 -1
  228. package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.vue +0 -1
  229. package/dist/runtime/editor/features/comments/Sidebar/index.d.vue.ts +16 -0
  230. package/dist/runtime/editor/features/comments/Sidebar/index.vue +13 -8
  231. package/dist/runtime/editor/features/comments/Sidebar/index.vue.d.ts +16 -0
  232. package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.vue +0 -1
  233. package/dist/runtime/editor/features/comments/Thread/index.d.vue.ts +16 -0
  234. package/dist/runtime/editor/features/comments/Thread/index.vue +26 -6
  235. package/dist/runtime/editor/features/comments/Thread/index.vue.d.ts +16 -0
  236. package/dist/runtime/editor/features/comments/index.vue +28 -3
  237. package/dist/runtime/editor/features/delete/types.d.ts +1 -0
  238. package/dist/runtime/editor/features/delete/types.js +1 -0
  239. package/dist/runtime/editor/features/dev-mode/index.vue +17 -15
  240. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +1 -0
  241. package/dist/runtime/editor/features/duplicate/types.d.ts +1 -0
  242. package/dist/runtime/editor/features/duplicate/types.js +1 -0
  243. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +0 -2
  244. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +0 -1
  245. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +0 -5
  246. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +0 -5
  247. package/dist/runtime/editor/features/editable-mask/index.vue +21 -20
  248. package/dist/runtime/editor/features/entity-title/index.vue +0 -4
  249. package/dist/runtime/editor/features/fragments/Dialog/index.vue +0 -4
  250. package/dist/runtime/editor/features/grid/index.vue +16 -15
  251. package/dist/runtime/editor/features/grid/types.d.ts +1 -0
  252. package/dist/runtime/editor/features/grid/types.js +1 -0
  253. package/dist/runtime/editor/features/help/Dialog/index.d.vue.ts +7 -0
  254. package/dist/runtime/editor/features/help/Dialog/index.vue +57 -0
  255. package/dist/runtime/editor/features/help/Dialog/index.vue.d.ts +7 -0
  256. package/dist/runtime/editor/features/help/index.vue +52 -47
  257. package/dist/runtime/editor/features/history/List/index.vue +2 -9
  258. package/dist/runtime/editor/features/history/types.d.ts +1 -0
  259. package/dist/runtime/editor/features/history/types.js +1 -0
  260. package/dist/runtime/editor/features/notifications/Item/index.d.vue.ts +4 -0
  261. package/dist/runtime/editor/features/notifications/Item/index.vue +96 -0
  262. package/dist/runtime/editor/features/notifications/Item/index.vue.d.ts +4 -0
  263. package/dist/runtime/editor/features/notifications/List/index.d.vue.ts +11 -0
  264. package/dist/runtime/editor/features/notifications/List/index.vue +126 -0
  265. package/dist/runtime/editor/features/notifications/List/index.vue.d.ts +11 -0
  266. package/dist/runtime/editor/features/notifications/docs.md +12 -0
  267. package/dist/runtime/editor/features/notifications/index.d.vue.ts +3 -0
  268. package/dist/runtime/editor/features/notifications/index.vue +123 -0
  269. package/dist/runtime/editor/features/notifications/index.vue.d.ts +3 -0
  270. package/dist/runtime/editor/features/notifications/types.d.ts +132 -0
  271. package/dist/runtime/editor/features/notifications/types.js +20 -0
  272. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +6 -2
  273. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +14 -4
  274. package/dist/runtime/editor/features/options/Form/Color/index.vue +1 -1
  275. package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +0 -1
  276. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue +0 -1
  277. package/dist/runtime/editor/features/options/Form/Group.vue +3 -1
  278. package/dist/runtime/editor/features/options/Form/Item.vue +1 -2
  279. package/dist/runtime/editor/features/options/Form/Number/index.vue +9 -3
  280. package/dist/runtime/editor/features/options/Form/Radios/index.vue +3 -2
  281. package/dist/runtime/editor/features/options/Form/Range/index.vue +8 -2
  282. package/dist/runtime/editor/features/options/Form/Text/index.vue +6 -2
  283. package/dist/runtime/editor/features/options/index.vue +7 -1
  284. package/dist/runtime/editor/features/ownership/Banner/index.vue +3 -1
  285. package/dist/runtime/editor/features/ownership/types.d.ts +1 -0
  286. package/dist/runtime/editor/features/ownership/types.js +1 -0
  287. package/dist/runtime/editor/features/preview-grant/types.d.ts +1 -0
  288. package/dist/runtime/editor/features/preview-grant/types.js +1 -0
  289. package/dist/runtime/editor/features/proxy-view/index.vue +24 -21
  290. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +0 -2
  291. package/dist/runtime/editor/features/publish/Dialog/index.vue +1 -2
  292. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +0 -1
  293. package/dist/runtime/editor/features/revert/types.d.ts +1 -0
  294. package/dist/runtime/editor/features/revert/types.js +1 -0
  295. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +18 -8
  296. package/dist/runtime/editor/features/swap/types.d.ts +1 -0
  297. package/dist/runtime/editor/features/swap/types.js +1 -0
  298. package/dist/runtime/editor/features/translations/Banner/index.vue +4 -1
  299. package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue +4 -1
  300. package/dist/runtime/editor/features/translations/TranslateDialog/index.vue +7 -2
  301. package/dist/runtime/editor/plugins/BlockIndicator/index.vue +0 -2
  302. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +4 -36
  303. package/dist/runtime/editor/plugins/ItemAction/index.vue +0 -1
  304. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
  305. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
  306. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +2 -2
  307. package/dist/runtime/editor/plugins/Sidebar/index.vue +7 -50
  308. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +2 -2
  309. package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +8 -2
  310. package/dist/runtime/editor/plugins/ToolbarButton/index.vue +122 -28
  311. package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +8 -2
  312. package/dist/runtime/editor/plugins/index.d.ts +1 -2
  313. package/dist/runtime/editor/plugins/index.js +1 -3
  314. package/dist/runtime/editor/providers/fieldValue.js +11 -13
  315. package/dist/runtime/editor/providers/plugin.d.ts +12 -0
  316. package/dist/runtime/editor/providers/plugin.js +9 -0
  317. package/dist/runtime/editor/translations/de.json +53 -19
  318. package/dist/runtime/editor/translations/fr.json +16 -4
  319. package/dist/runtime/editor/translations/gsw_CH.json +53 -19
  320. package/dist/runtime/editor/translations/it.json +16 -4
  321. package/package.json +6 -6
  322. package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +0 -139
  323. package/dist/runtime/editor/plugins/ViewOption/index.vue +0 -99
  324. package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +0 -139
@@ -75,6 +75,13 @@
75
75
  "aiAgentAskQuestionOther": "Keine der Optionen",
76
76
  "aiAgentAskQuestionOtherPlaceholder": "Eigene Antwort eingeben",
77
77
  "aiAgentAskQuestionRunning": "Auf Antwort warten",
78
+ "aiAgentAutoTranslateAllApplied": "Alle @count Übersetzungen angewendet",
79
+ "aiAgentAutoTranslateAllRejected": "Alle Übersetzungen abgelehnt",
80
+ "aiAgentAutoTranslateFailed": "Übersetzungsanfrage fehlgeschlagen",
81
+ "aiAgentAutoTranslateNoFields": "Keine Textfelder zum Übersetzen",
82
+ "aiAgentAutoTranslateNoSource": "Keine Quellsprache verfügbar",
83
+ "aiAgentAutoTranslateRunning": "Automatisch übersetzen",
84
+ "aiAgentAutoTranslateSomeApplied": "@applied von @total Übersetzungen angewendet",
78
85
  "aiAgentAwaitingApproval": "Wartet auf Ihre Bestätigung",
79
86
  "aiAgentBatchRewriteAllApplied": "Alle @count Änderungen angewendet",
80
87
  "aiAgentBatchRewriteAllRejected": "Alle Änderungen abgelehnt",
@@ -94,6 +101,7 @@
94
101
  "aiAgentCreateChartDone": "Diagramm hinzugefügt",
95
102
  "aiAgentCreateChartRunning": "Diagramm wird erstellt",
96
103
  "aiAgentCreatePlan": "Plan: @label",
104
+ "aiAgentDelegateRewriteAllRejected": "Alle Änderungen abgelehnt",
97
105
  "aiAgentDelegateRewriteCancelled": "Umschreiben abgebrochen",
98
106
  "aiAgentDelegateRewriteNoChanges": "Keine Änderungen erkannt",
99
107
  "aiAgentDelegateRewriteRetrying": "@count Felder werden erneut versucht (Versuch @attempt)",
@@ -159,6 +167,10 @@
159
167
  "aiAgentGetMutationHistoryRunning": "Änderungsverlauf abrufen",
160
168
  "aiAgentGetPageStructureDone": "Seitenstruktur erhalten (@count Absätze)",
161
169
  "aiAgentGetPageStructureRunning": "Seitenstruktur wird geladen",
170
+ "aiAgentGetPageTextDone": "Seitentext gelesen",
171
+ "aiAgentGetPageTextRunning": "Seitentext lesen",
172
+ "aiAgentGetReferencedEntitiesDone": "@count verwandte Inhalte geladen",
173
+ "aiAgentGetReferencedEntitiesRunning": "Verwandte Inhalte laden",
162
174
  "aiAgentGetSelectedBlocksDone": "@count Blöcke ausgewählt",
163
175
  "aiAgentGetSelectedBlocksNone": "Keine Blöcke ausgewählt",
164
176
  "aiAgentGetSelectedBlocksRunning": "Ausgewählte Blöcke laden",
@@ -279,15 +291,9 @@
279
291
  "analyzerReadabiliyOkTitle": "Text könnte einfacher sein",
280
292
  "analyzerReadabiliyShorterSentences": "Verwenden Sie kürzere Sätze und einfachere Formulierungen.",
281
293
  "analyzerReadabiliyTitle": "Probleme bei Lesbarkeit",
282
- "anchorHide": "Anker-Links verstecken",
283
- "anchorShow": "Anker-Links anzeigen",
284
- "anchorToggle": "Anzeige von Anker-Links umschalten",
285
294
  "arrowLeft": "Pfeil links",
286
295
  "arrowRight": "Pfeil rechts",
287
296
  "artboard": "Vorschau",
288
- "artboardOverviewHide": "Übersicht verstecken",
289
- "artboardOverviewShow": "Übersicht anzeigen",
290
- "artboardOverviewToggle": "Übersicht umschalten",
291
297
  "artboardOverviewTourText": "Zeigt eine schematische Übersicht aller Inhalte an.",
292
298
  "artboardResetZoom": "Zoom zurücksetzen",
293
299
  "artboardScaleToFit": "An Höhe anpassen",
@@ -587,6 +593,24 @@
587
593
  "fatalErrorTitle": "blökkli funktioniert nicht mehr",
588
594
  "featureHelpShortcuts": "Tastenkombinationen",
589
595
  "featureHelpTitle": "Hilfe",
596
+ "feature_add-list_setting_hideDisabledBlocks_description": "Versteckt Blöcke aus der «Blockliste», wenn sie nirgendwo hinzugefügt werden können.",
597
+ "feature_add-list_setting_hideDisabledBlocks_label": "Blöcke verstecken, die nicht hinzugefügt werden können",
598
+ "feature_artboard_setting_momentum_description": "Verwendet sanftes Scrollen und Vergrössern der Vorschau.",
599
+ "feature_artboard_setting_momentum_label": "Sanftes Scrollen verwenden",
600
+ "feature_artboard_setting_persist_description": "Speichert und stellt die letzte Position und den Zoomfaktor der Vorschau wieder her.",
601
+ "feature_artboard_setting_persist_label": "Position und Zoom speichern",
602
+ "feature_artboard_setting_scrollSpeed_label": "Scrollgeschwindigkeit der Vorschau",
603
+ "feature_history_setting_useMouseButtons_description": "Wenn aktiviert, können die Vorwärts-/Rückwärtstasten der Maus zum Rückgängigmachen und Wiederherstellen verwendet werden.",
604
+ "feature_history_setting_useMouseButtons_label": "Maustasten für Rückgängig/Wiederherstellen verwenden",
605
+ "feature_import-existing_setting_showDialogWhenEmpty_description": "Zeigt den Importdialog beim öffnen von blökkli wenn die Seite leer ist.",
606
+ "feature_import-existing_setting_showDialogWhenEmpty_label": "Importdialog beim Start anzeigen",
607
+ "feature_publish_setting_closeAfterPublish_description": "Schliesst den Editor sofort nach erfolgreichem Veröffentlichen oder Speichern.",
608
+ "feature_publish_setting_closeAfterPublish_label": "Nach «Veröffentlichen» den Editor schliessen",
609
+ "feature_settings_setting_lowPerformanceMode_description": "Reduziert Animationen und Interaktivität auf ein Minimum für Geräte mit geringer Leistung.",
610
+ "feature_settings_setting_lowPerformanceMode_label": "Modus für niedrige Leistung aktivieren",
611
+ "feature_settings_setting_resetAllSettings_label": "Alle Einstellungen zurücksetzen",
612
+ "feature_settings_setting_useAnimations_description": "Animiert UI-Elemente wie Dialoge oder Panels sowie Interaktionen wie Drag-and-Drop oder Scrollen.",
613
+ "feature_settings_setting_useAnimations_label": "Animationen verwenden",
590
614
  "fieldIsRequired": "Feld darf nicht leer sein",
591
615
  "file": "Datei",
592
616
  "filter": "Filtern",
@@ -604,11 +628,8 @@
604
628
  "fragmentsPlaceDialogSearchPlaceholder": "Fragmente durchsuchen",
605
629
  "fragmentsPlaceDialogSubmitButton": "Ausgewähltes Fragment hinzufügen",
606
630
  "fragmentsPlaceDialogTitle": "Fragment hinzufügen",
607
- "gridHide": "Spalten verstecken",
608
- "gridShow": "Spalten anzeigen",
609
- "gridToggle": "Spalten anzeigen",
610
631
  "gridTourText": "Zeigt die Layout-Spalten als Overlay über die Seite an.",
611
- "helpTourText": "Zeigt eine Liste von verfügbaren Tastenkombinationen an.",
632
+ "helpMenuDescription": "Verfügbare Tastenkürzel anzeigen",
612
633
  "history": "Änderungsverlauf",
613
634
  "historyCurrentRevision": "Aktuelle Revision",
614
635
  "historyEmpty": "Es gibt noch keine Änderungen.",
@@ -629,8 +650,6 @@
629
650
  "importExistingSearchPlaceholder": "Seiten suchen",
630
651
  "importExistingSuccess": "Inhalte erfolgreich übernommen.",
631
652
  "inlineCode": "Inline-Code",
632
- "interactionLayerOff": "Interaktionsebenen anzeigen",
633
- "interactionLayersOn": "Interaktionsebenen ausblenden",
634
653
  "italic": "Kursiv",
635
654
  "keyboardSpace": "Leertaste",
636
655
  "libraryAddDescription": "Fügen Sie einen wiederverwendbaren Block aus der Bibliothek hinzu.",
@@ -655,9 +674,6 @@
655
674
  "loading": "Wird geladen",
656
675
  "manageSchedule": "Planung verwalten",
657
676
  "manageScheduling": "Planung verwalten",
658
- "maskHide": "Nicht-editierbare Bereiche verstecken",
659
- "maskShow": "Nicht-editierbare Bereiche anzeigen",
660
- "maskToggle": "Nicht-editierbare Bereiche anzeigen",
661
677
  "maskTourText": "Wechseln Sie zwischen Anzeigen und Verbergen nicht bearbeitbarer Teile der Seite.",
662
678
  "mediaLibrary": "Medienbibliothek",
663
679
  "mediaLibraryReplaceFailed": "Das Medienelement konnte nicht ersetzt werden.",
@@ -670,6 +686,13 @@
670
686
  "noEditPermission": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich.",
671
687
  "notSet": "Nicht gesetzt",
672
688
  "notSupported": "Nicht unterstützt",
689
+ "notifications": "Benachrichtigungen",
690
+ "notificationsEmpty": "Keine Benachrichtigungen.",
691
+ "notificationsLoadError": "Benachrichtigungen konnten nicht geladen werden.",
692
+ "notificationsLoadMore": "Mehr laden",
693
+ "notificationsMarkAllRead": "Alle als gelesen markieren",
694
+ "notificationsMarkAllReadError": "Benachrichtigungen konnten nicht als gelesen markiert werden.",
695
+ "notificationsTourText": "Zeigt Benachrichtigungen über Erwähnungen, gelöste Kommentare und andere Ereignisse.",
673
696
  "numberedList": "Nummerierte Liste",
674
697
  "optionBkVisibleLanguagesAll": "Alle Sprachen",
675
698
  "optionsCommand.selectCheckboxValue": "«@value» in «@option» auswählen",
@@ -697,9 +720,6 @@
697
720
  "previewQrCodeText": "Sie können den Link auch kopieren und teilen.",
698
721
  "previewWithSmartphone": "Vorschau (mit Smartphone)",
699
722
  "previewWithSmartphoneTourText": "Zeigt einen QR-Code an, um eine Vorschau der Änderungen mit Ihrem Smartphone zu öffnen.",
700
- "proxyViewHide": "Inhaltsvorschau anzeigen",
701
- "proxyViewShow": "Strukturierte Vorschau anzeigen",
702
- "proxyViewToggle": "Vorschau wechseln",
703
723
  "proxyViewTourText": "Stellt die Inhaltsblöcke in strukturierter Form dar.",
704
724
  "publish": "Veröffentlichen",
705
725
  "publishAlreadyScheduledDescription": "Diese Seite ist bereits zur Veröffentlichung geplant",
@@ -853,7 +873,6 @@
853
873
  "theme": "Farben",
854
874
  "themeTourText": "Ändern Sie das Theme und generieren Sie eine Theme-Datei.",
855
875
  "title": "Titel",
856
- "toggleInteractionLayers": "Interaktionsebenen umschalten",
857
876
  "touchBarCancelDragging": "Platzieren abbrechen",
858
877
  "touchBarFinishSelecting": "Mehrfachauswahl beenden",
859
878
  "tourDescription": "Entdecken Sie die Funktionen vom Editor.",
@@ -919,6 +938,21 @@
919
938
  "viewBannerReviewTitle": "Sie befinden sich im Review-Modus.",
920
939
  "viewBannerViewText": "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten.",
921
940
  "viewBannerViewTitle": "Sie befinden sich im Ansichtsmodus.",
941
+ "viewOptionAnchors": "Ankerlinks",
942
+ "viewOptionAnchorsDescription": "Hebt Blöcke mit einer Anker-ID hervor.",
943
+ "viewOptionArtboardOverview": "Übersicht",
944
+ "viewOptionArtboardOverviewDescription": "Zeigt eine Übersicht aller Inhaltsblöcke an.",
945
+ "viewOptionDisable": "«@option» deaktivieren",
946
+ "viewOptionEnable": "«@option» aktivieren",
947
+ "viewOptionGrid": "Raster",
948
+ "viewOptionGridDescription": "Zeigt ein Layoutraster über der Seite an.",
949
+ "viewOptionInteractionLayers": "Interaktionsebenen",
950
+ "viewOptionInteractionLayersDescription": "Blendet die Editor-Overlays aus, um die Seite in der finalen Darstellung anzuzeigen.",
951
+ "viewOptionNonEditableAreas": "Nur bearbeitbare Bereiche",
952
+ "viewOptionNonEditableAreasDescription": "Versteckt nicht bearbeitbare Teile der Seite.",
953
+ "viewOptionStructureView": "Strukturansicht",
954
+ "viewOptionStructureViewDescription": "Zeigt die Blöcke als strukturierte Übersicht anstelle der gerenderten Vorschau an.",
955
+ "viewOptions": "Darstellung",
922
956
  "whatsNew": "Neuigkeiten",
923
957
  "workspaceSearchPlaceholder": "Seiten durchsuchen"
924
958
  }
@@ -100,9 +100,16 @@
100
100
  "exitDescription": "Fermer l’éditeur sans publier",
101
101
  "failedToConvert": "L'élément n'a pas pu être converti.",
102
102
  "failedToTransform": "The action \"@name\" could not be executed.",
103
+ "feature_artboard_setting_momentum_label": "Utiliser le défilement fluide",
104
+ "feature_artboard_setting_persist_label": "Conserver la position et le zoom",
105
+ "feature_artboard_setting_scrollSpeed_label": "Vitesse de défilement de la zone de travail",
106
+ "feature_history_setting_useMouseButtons_label": "Utiliser les boutons de la souris pour annuler/rétablir",
107
+ "feature_import-existing_setting_showDialogWhenEmpty_label": "Afficher la boîte de dialogue d'importation au démarrage",
108
+ "feature_publish_setting_closeAfterPublish_label": "Fermer l'éditeur après publication",
109
+ "feature_settings_setting_lowPerformanceMode_label": "Activer le mode basse performance",
110
+ "feature_settings_setting_resetAllSettings_label": "Réinitialiser tous les paramètres",
111
+ "feature_settings_setting_useAnimations_label": "Utiliser les animations",
103
112
  "fieldIsRequired": "Ce champ est obligatoire",
104
- "gridHide": "Masquer la grille",
105
- "gridShow": "Afficher la grille",
106
113
  "history": "Historique",
107
114
  "historyCurrentRevision": "Révision actuelle",
108
115
  "historyShowMore": "@count autres à afficher",
@@ -116,9 +123,14 @@
116
123
  "libraryDialogLead": "En ajoutant un élément à la bibliothèque, vous pouvez l’utiliser sur plusieurs pages à la fois. Les modifications apportées à cet élément seront alors immédiatement publiées sur toutes les pages.",
117
124
  "libraryDialogTitleInputPlaceholder": "Ex. : Teaser campagne 2023",
118
125
  "libraryError": "L'élément n’a pas pu être rendu réutilisable.",
119
- "maskHide": "Masquer les champs de contenu",
120
- "maskShow": "Afficher les champs de contenu",
121
126
  "multipleItemsLabel": "Éléments",
127
+ "notifications": "Notifications",
128
+ "notificationsEmpty": "Aucune notification.",
129
+ "notificationsLoadError": "Échec du chargement des notifications.",
130
+ "notificationsLoadMore": "Charger plus",
131
+ "notificationsMarkAllRead": "Tout marquer comme lu",
132
+ "notificationsMarkAllReadError": "Échec du marquage des notifications comme lues.",
133
+ "notificationsTourText": "Affiche les notifications concernant les mentions, les commentaires résolus et d'autres événements.",
122
134
  "ownershipError": "Erreur lors de l’attribution",
123
135
  "ownershipNote": "Cette page est actuellement en cours de modification par @name. Les modifications ne peuvent être effectuées que par une personne à la fois.",
124
136
  "ownershipSuccess": "Vous en êtes maintenant le propriétaire.",
@@ -75,6 +75,13 @@
75
75
  "aiAgentAskQuestionOther": "Käis vo dene",
76
76
  "aiAgentAskQuestionOtherPlaceholder": "Schriib dini Antwort...",
77
77
  "aiAgentAskQuestionRunning": "Wartet uf Antwort...",
78
+ "aiAgentAutoTranslateAllApplied": "Alle @count Übersetzungen angewendet",
79
+ "aiAgentAutoTranslateAllRejected": "Alle Übersetzungen abgelehnt",
80
+ "aiAgentAutoTranslateFailed": "Übersetzungsanfrage fehlgeschlagen",
81
+ "aiAgentAutoTranslateNoFields": "Keine Textfelder zum Übersetzen",
82
+ "aiAgentAutoTranslateNoSource": "Keine Quellsprache verfügbar",
83
+ "aiAgentAutoTranslateRunning": "Automatisch übersetzen",
84
+ "aiAgentAutoTranslateSomeApplied": "@applied von @total Übersetzungen angewendet",
78
85
  "aiAgentAwaitingApproval": "Wartet uf dini Bestätigung...",
79
86
  "aiAgentBatchRewriteAllApplied": "Alli @count Änderige aagwändet",
80
87
  "aiAgentBatchRewriteAllRejected": "Alli Änderige abglähnt",
@@ -94,6 +101,7 @@
94
101
  "aiAgentCreateChartDone": "Diagramm drzuegfüegt",
95
102
  "aiAgentCreateChartRunning": "Diagramm würd erstellt...",
96
103
  "aiAgentCreatePlan": "Plan: @label",
104
+ "aiAgentDelegateRewriteAllRejected": "Alle Änderungen abgelehnt",
97
105
  "aiAgentDelegateRewriteCancelled": "Umschriibe abbroche",
98
106
  "aiAgentDelegateRewriteNoChanges": "Käi Änderige erkannt",
99
107
  "aiAgentDelegateRewriteRetrying": "@count Fälder wärde nämol probiert (Versuech @attempt)...",
@@ -159,6 +167,10 @@
159
167
  "aiAgentGetMutationHistoryRunning": "Änderigsverlauf würd gholt...",
160
168
  "aiAgentGetPageStructureDone": "Sittestruktur gholt (@count Blöck)",
161
169
  "aiAgentGetPageStructureRunning": "Sittestruktur würd gholt...",
170
+ "aiAgentGetPageTextDone": "Sittetext gläse",
171
+ "aiAgentGetPageTextRunning": "Sittetext würd gläse...",
172
+ "aiAgentGetReferencedEntitiesDone": "@count verwandti Inhalt glade",
173
+ "aiAgentGetReferencedEntitiesRunning": "Verwandti Inhalt wärde glade...",
162
174
  "aiAgentGetSelectedBlocksDone": "@count Block/Blöck usgwählt",
163
175
  "aiAgentGetSelectedBlocksNone": "Käi Blöck usgwählt",
164
176
  "aiAgentGetSelectedBlocksRunning": "Usgwählti Blöck wärde gholt...",
@@ -279,15 +291,9 @@
279
291
  "analyzerReadabiliyOkTitle": "Teggscht chönnt eifacher si",
280
292
  "analyzerReadabiliyShorterSentences": "Bruch chürzeri Sätz und eifacheri Formulierige.",
281
293
  "analyzerReadabiliyTitle": "Läsbarkeitsproblem im Teggscht",
282
- "anchorHide": "Anker-Links verstecke",
283
- "anchorShow": "Anker-Links aazeige",
284
- "anchorToggle": "Anker-Links umschalte",
285
294
  "arrowLeft": "Pfeil links",
286
295
  "arrowRight": "Pfeil rechts",
287
296
  "artboard": "Zeichenflächi",
288
- "artboardOverviewHide": "Übersicht verstecke",
289
- "artboardOverviewShow": "Übersicht aazeige",
290
- "artboardOverviewToggle": "Übersicht umschalte",
291
297
  "artboardOverviewTourText": "Zeigt e Übersicht über dini Inhält aa.",
292
298
  "artboardResetZoom": "Zoom zruggsetze",
293
299
  "artboardScaleToFit": "A d'Höchi aapasse",
@@ -587,6 +593,24 @@
587
593
  "fatalErrorTitle": "blökkli het ufghört z'funktioniere",
588
594
  "featureHelpShortcuts": "Taschtekombinatione",
589
595
  "featureHelpTitle": "Hilf",
596
+ "feature_add-list_setting_hideDisabledBlocks_description": "Versteckt Blöcke aus der «Blockliste», wenn sie nirgendwo hinzugefügt werden können.",
597
+ "feature_add-list_setting_hideDisabledBlocks_label": "Blöck verstecke wo nid chönne drzuegfüegt wärde",
598
+ "feature_artboard_setting_momentum_description": "Wendet sanfti Animatione aa bim Scrolle oder Zoome vo dr Zeichenflächi.",
599
+ "feature_artboard_setting_momentum_label": "Sanfts Scrolle verwände",
600
+ "feature_artboard_setting_persist_description": "Speichert und stellt die letzte Position und den Zoomfaktor der Vorschau wieder her.",
601
+ "feature_artboard_setting_persist_label": "Position und Zoom speichere",
602
+ "feature_artboard_setting_scrollSpeed_label": "Scrollgschwindigkeit vo dr Zeicheflächi",
603
+ "feature_history_setting_useMouseButtons_description": "Wenn aktiviert, können die Vorwärts-/Rückwärtstasten der Maus zum Rückgängigmachen und Wiederherstellen verwendet werden.",
604
+ "feature_history_setting_useMouseButtons_label": "Muustaschte für Rückgängig/Wiederhärstelle bruche",
605
+ "feature_import-existing_setting_showDialogWhenEmpty_description": "Zeigt dr Importdialog bim Start vo blökkli aa, wenn d'Sitte leer isch.",
606
+ "feature_import-existing_setting_showDialogWhenEmpty_label": "Importdialog bim Start aazeige wenn d'Sitte leer isch",
607
+ "feature_publish_setting_closeAfterPublish_description": "Schliesst dr Editor sofort noch em erfolgriche Publiziere oder Speichere.",
608
+ "feature_publish_setting_closeAfterPublish_label": "Editor noch em Publiziere schliesse",
609
+ "feature_settings_setting_lowPerformanceMode_description": "Reduziert Animationen und Interaktivität auf ein Minimum für Geräte mit geringer Leistung.",
610
+ "feature_settings_setting_lowPerformanceMode_label": "Energie-Sparmodus aktiviere",
611
+ "feature_settings_setting_resetAllSettings_label": "Alli Iistellige Zruggsetze",
612
+ "feature_settings_setting_useAnimations_description": "Animiert UI-Elemente wie Dialoge oder Panels sowie Interaktionen wie Drag-and-Drop oder Scrollen.",
613
+ "feature_settings_setting_useAnimations_label": "Animatione aazeige",
590
614
  "fieldIsRequired": "Das Fäld dörf nid leer sii",
591
615
  "file": "Datei",
592
616
  "filter": "Filtern",
@@ -604,11 +628,8 @@
604
628
  "fragmentsPlaceDialogSearchPlaceholder": "Fragmänt sueche",
605
629
  "fragmentsPlaceDialogSubmitButton": "Usgwählts Fragmänt drzuefüege",
606
630
  "fragmentsPlaceDialogTitle": "Fragmänt-Block drzuefüege",
607
- "gridHide": "Spalte verstecke",
608
- "gridShow": "Spalte aazeige",
609
- "gridToggle": "Spalte aazeige",
610
631
  "gridTourText": "Zeigt es Layout-Raster-Overlay über dr Sitte aa.",
611
- "helpTourText": "Zeigt e Lischt vo verfüegbare Shortcuts aa.",
632
+ "helpMenuDescription": "Verfügbare Tastenkürzel anzeigen",
612
633
  "history": "Änderige",
613
634
  "historyCurrentRevision": "Aktuelli Revision",
614
635
  "historyEmpty": "S'git no keini Änderige.",
@@ -629,8 +650,6 @@
629
650
  "importExistingSearchPlaceholder": "Seiten suchen",
630
651
  "importExistingSuccess": "Inhält erfolgriich importiert",
631
652
  "inlineCode": "Inline-Code",
632
- "interactionLayerOff": "Interaktionsebene aazeige",
633
- "interactionLayersOn": "Interaktionsebene usbländen",
634
653
  "italic": "Kursiv",
635
654
  "keyboardSpace": "Leertaste",
636
655
  "libraryAddDescription": "E wiederverwändbare Block us dr Block-Bibliothek drzuefüege.",
@@ -655,9 +674,6 @@
655
674
  "loading": "Wird geladen",
656
675
  "manageSchedule": "Planung verwalte...",
657
676
  "manageScheduling": "Planung verwalten",
658
- "maskHide": "Inhaltsfälder verstecke",
659
- "maskShow": "Inhaltsfelder aazeige",
660
- "maskToggle": "Inhaltsfelder aazeige",
661
677
  "maskTourText": "Wächsle zwüsche Aazeige oder Verstecke vo nid-bearbeitbare Teile vo dr Sitte.",
662
678
  "mediaLibrary": "Mediebibliothek",
663
679
  "mediaLibraryReplaceFailed": "Medie het nid chönne ersetzt wärde.",
@@ -670,6 +686,13 @@
670
686
  "noEditPermission": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich.",
671
687
  "notSet": "Nid gsetzt",
672
688
  "notSupported": "Nid unterstützt",
689
+ "notifications": "Benachrichtigunge",
690
+ "notificationsEmpty": "Kei Benachrichtigunge.",
691
+ "notificationsLoadError": "Benachrichtigunge chönd nöd glade wärde.",
692
+ "notificationsLoadMore": "Meh lade",
693
+ "notificationsMarkAllRead": "Alli als gläse markiere",
694
+ "notificationsMarkAllReadError": "Benachrichtigunge chönd nöd als gläse markiert wärde.",
695
+ "notificationsTourText": "Zeigt Benachrichtigunge über Erwähnige, glösti Kommentär und anderi Ereignis aa.",
673
696
  "numberedList": "Nummerierti Lischt",
674
697
  "optionBkVisibleLanguagesAll": "Alli Sproche",
675
698
  "optionsCommand.selectCheckboxValue": "«@value» in «@option» uswähle",
@@ -697,9 +720,6 @@
697
720
  "previewQrCodeText": "Dä Link chame au kopiere und teile.",
698
721
  "previewWithSmartphone": "Vorschau (mitem Smartphone)",
699
722
  "previewWithSmartphoneTourText": "Zeigt e QR-Code aa zum schnäll e Vorschau vo de Änderige mitem Smartphone z'öffne.",
700
- "proxyViewHide": "Inhaltsvorschau aazeige",
701
- "proxyViewShow": "Strukturaasicht aazeige",
702
- "proxyViewToggle": "Strukturaasicht umschalte",
703
723
  "proxyViewTourText": "Zeigt d'Inhaltblöck als strukturierti Aasicht aa.",
704
724
  "publish": "Veröffentlichen",
705
725
  "publishAlreadyScheduledDescription": "Die Sitte isch scho zur Veröffentlichig plant",
@@ -853,7 +873,6 @@
853
873
  "theme": "Farbe",
854
874
  "themeTourText": "Änderi d'Farbe vom Theme und generier e Theme-Datei.",
855
875
  "title": "Titel",
856
- "toggleInteractionLayers": "Interaktionsebene umschalte",
857
876
  "touchBarCancelDragging": "Platziere abbräche",
858
877
  "touchBarFinishSelecting": "Merfachuswahl beände",
859
878
  "tourDescription": "Entdeck d'Funktione vom Editor",
@@ -919,6 +938,21 @@
919
938
  "viewBannerReviewTitle": "Du bisch im Review-Modus.",
920
939
  "viewBannerViewText": "Du chasch Kommentär aaluege, aber kän Inhalt bearbeite.",
921
940
  "viewBannerViewTitle": "Du bisch im Aaluege-Modus.",
941
+ "viewOptionAnchors": "Ankerlinks",
942
+ "viewOptionAnchorsDescription": "Hebt Blöcke mit einer Anker-ID hervor.",
943
+ "viewOptionArtboardOverview": "Übersicht",
944
+ "viewOptionArtboardOverviewDescription": "Zeigt eine Übersicht aller Inhaltsblöcke an.",
945
+ "viewOptionDisable": "«@option» deaktivieren",
946
+ "viewOptionEnable": "«@option» aktivieren",
947
+ "viewOptionGrid": "Raster",
948
+ "viewOptionGridDescription": "Zeigt ein Layoutraster über der Seite an.",
949
+ "viewOptionInteractionLayers": "Interaktionsebene",
950
+ "viewOptionInteractionLayersDescription": "Blendet die Editor-Overlays aus, um die Seite in der finalen Darstellung anzuzeigen.",
951
+ "viewOptionNonEditableAreas": "Nid-bearbeitbari Beriich",
952
+ "viewOptionNonEditableAreasDescription": "Versteckt nicht bearbeitbare Teile der Seite.",
953
+ "viewOptionStructureView": "Strukturaasicht",
954
+ "viewOptionStructureViewDescription": "Zeigt die Blöcke als strukturierte Übersicht anstelle der gerenderten Vorschau an.",
955
+ "viewOptions": "Darstellung",
922
956
  "whatsNew": "Neuigkeiten",
923
957
  "workspaceSearchPlaceholder": "Seiten durchsuchen"
924
958
  }
@@ -100,9 +100,16 @@
100
100
  "exitDescription": "Chiudi l'editor senza pubblicare",
101
101
  "failedToConvert": "L'elemento non può essere convertito.",
102
102
  "failedToTransform": "The action \"@name\" could not be executed.",
103
+ "feature_artboard_setting_momentum_label": "Usa scorrimento fluido",
104
+ "feature_artboard_setting_persist_label": "Mantieni posizione e zoom",
105
+ "feature_artboard_setting_scrollSpeed_label": "Velocità di scorrimento dell'area di lavoro",
106
+ "feature_history_setting_useMouseButtons_label": "Usa i pulsanti del mouse per annulla/ripeti",
107
+ "feature_import-existing_setting_showDialogWhenEmpty_label": "Mostra finestra di dialogo di importazione all'avvio",
108
+ "feature_publish_setting_closeAfterPublish_label": "Chiudi editor dopo la pubblicazione",
109
+ "feature_settings_setting_lowPerformanceMode_label": "Abilita modalità basse prestazioni",
110
+ "feature_settings_setting_resetAllSettings_label": "Ripristina tutte le impostazioni",
111
+ "feature_settings_setting_useAnimations_label": "Usa animazioni",
103
112
  "fieldIsRequired": "Questo campo è obbligatorio",
104
- "gridHide": "Nascondi griglia",
105
- "gridShow": "Mostra griglia",
106
113
  "history": "Cronologia",
107
114
  "historyCurrentRevision": "Revisione attuale",
108
115
  "historyShowMore": "Mostra altre @count",
@@ -116,9 +123,14 @@
116
123
  "libraryDialogLead": "Aggiungendo un elemento alla biblioteca, puoi utilizzarlo su più pagine contemporaneamente. Le modifiche a questo elemento saranno pubblicate immediatamente su tutte le pagine.",
117
124
  "libraryDialogTitleInputPlaceholder": "es. Anteprima Campagna 2023",
118
125
  "libraryError": "L'elemento non può essere reso riutilizzabile.",
119
- "maskHide": "Nascondi campi di contenuto",
120
- "maskShow": "Mostra campi di contenuto",
121
126
  "multipleItemsLabel": "Elementi",
127
+ "notifications": "Notifiche",
128
+ "notificationsEmpty": "Nessuna notifica.",
129
+ "notificationsLoadError": "Impossibile caricare le notifiche.",
130
+ "notificationsLoadMore": "Carica altri",
131
+ "notificationsMarkAllRead": "Segna tutto come letto",
132
+ "notificationsMarkAllReadError": "Impossibile contrassegnare le notifiche come lette.",
133
+ "notificationsTourText": "Mostra le notifiche relative a menzioni, commenti risolti e altri eventi.",
122
134
  "ownershipError": "Errore nell'assegnazione",
123
135
  "ownershipNote": "Questa pagina è attualmente in lavorazione da @name. Le modifiche possono essere effettuate solo da una persona alla volta.",
124
136
  "ownershipSuccess": "Ora sei il proprietario.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blokkli/editor",
3
- "version": "2.0.0-alpha.59",
3
+ "version": "2.0.0-alpha.61",
4
4
  "description": "Interactive page building experience for Nuxt",
5
5
  "keywords": [
6
6
  "cms",
@@ -115,8 +115,9 @@
115
115
  "styles:build": "postcss ./css/index.css -o ./src/runtime/editor/css/output.css",
116
116
  "styles:watch": "postcss ./css/index.css -o ./src/runtime/editor/css/output.css --watch",
117
117
  "dev:build": "npm run changelog && npm run dev:prepare && nuxi generate playground",
118
- "dev:build-ssr": "npm run dev:prepare && nuxt build playground",
118
+ "dev:build-ssr": "PLAYGROUND_SSR_BUILD=true nuxt build playground",
119
119
  "dev:start": "npx serve playground/.output/public",
120
+ "dev:start-ssr": "cd playground && node -r dotenv/config ./.output/server/index.mjs",
120
121
  "dev:prepare": "PLAYGROUND_MODULE_BUILD=true nuxt-module-build build --stub && PLAYGROUND_MODULE_BUILD=true nuxt-module-build prepare && nuxi prepare playground",
121
122
  "dev:analyze": "npx nuxt analyze playground",
122
123
  "release": "npm run lint && npm run prepack && changelogen --release",
@@ -129,8 +130,7 @@
129
130
  "test:watch": "vitest watch --project unit --project e2e --no-file-parallelism",
130
131
  "test:unit": "vitest run --project unit",
131
132
  "test:unit:watch": "vitest watch --project unit",
132
- "test:e2e": "vitest run --project e2e --no-file-parallelism",
133
- "test:e2e:dev": "E2E_HOST=http://localhost:3000 vitest run --project e2e --no-file-parallelism",
133
+ "test:e2e": "vitest run --project e2e",
134
134
  "format": "prettier . --check",
135
135
  "format:fix": "prettier . --write",
136
136
  "docs:dev": "vitepress dev docs",
@@ -167,7 +167,7 @@
167
167
  },
168
168
  "devDependencies": {
169
169
  "@anthropic-ai/sdk": "^0.71.2",
170
- "@ckeditor/ckeditor5-vue": "^7.3.0",
170
+ "@ckeditor/ckeditor5-vue": "^8.0.0",
171
171
  "@nuxt/devtools": "^3.1.1",
172
172
  "@nuxt/eslint-config": "^1.12.1",
173
173
  "@nuxt/kit": "^4.4.4",
@@ -187,7 +187,7 @@
187
187
  "@vue/test-utils": "^2.4.6",
188
188
  "axe-core": "^4.11.0",
189
189
  "changelogen": "^0.6.2",
190
- "ckeditor5": "^47.3.0",
190
+ "ckeditor5": "^48.1.1",
191
191
  "commander": "^13.1.0",
192
192
  "deepl-node": "^1.25.0",
193
193
  "eslint": "^9.39.2",
@@ -1,139 +0,0 @@
1
- import type { BlokkliIcon } from '#blokkli-build/icons';
2
- declare const _default: typeof __VLS_export;
3
- export default _default;
4
- declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
5
- /**
6
- * Unique identifier for this view option.
7
- *
8
- * Used for storage key and event tracking.
9
- */
10
- id: string;
11
- /**
12
- * The label used in commands and tour.
13
- */
14
- label: string;
15
- /**
16
- * The tooltip text when the option is OFF.
17
- *
18
- * Should describe what happens when turned on.
19
- * @example 'Show grid'
20
- */
21
- titleOn: string;
22
- /**
23
- * The tooltip text when the option is ON.
24
- *
25
- * Should describe what happens when turned off.
26
- * @example 'Hide grid'
27
- */
28
- titleOff: string;
29
- /**
30
- * Whether the view option is only available in edit mode.
31
- *
32
- * If true, the option is hidden in preview mode.
33
- */
34
- editOnly?: boolean;
35
- /**
36
- * The key code to use for the keyboard shortcut.
37
- *
38
- * Automatically includes Meta modifier.
39
- * @example 'g' for Cmd+G / Ctrl+G
40
- */
41
- keyCode?: string;
42
- /**
43
- * The icon displayed in the button.
44
- */
45
- icon?: BlokkliIcon;
46
- /**
47
- * Optional text for the interactive tour.
48
- *
49
- * If provided, this option will be included in the editor tour.
50
- */
51
- tourText?: string;
52
- /**
53
- * Two-way binding for the active state.
54
- *
55
- * Can be used with v-model to track the option state.
56
- */
57
- modelValue?: boolean;
58
- /**
59
- * The weight, used for positioning the button.
60
- *
61
- * Lower weights appear first.
62
- */
63
- weight?: number | string;
64
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
65
- "update:modelValue": (data: boolean) => any;
66
- }, string, import("vue").PublicProps, Readonly<{
67
- /**
68
- * Unique identifier for this view option.
69
- *
70
- * Used for storage key and event tracking.
71
- */
72
- id: string;
73
- /**
74
- * The label used in commands and tour.
75
- */
76
- label: string;
77
- /**
78
- * The tooltip text when the option is OFF.
79
- *
80
- * Should describe what happens when turned on.
81
- * @example 'Show grid'
82
- */
83
- titleOn: string;
84
- /**
85
- * The tooltip text when the option is ON.
86
- *
87
- * Should describe what happens when turned off.
88
- * @example 'Hide grid'
89
- */
90
- titleOff: string;
91
- /**
92
- * Whether the view option is only available in edit mode.
93
- *
94
- * If true, the option is hidden in preview mode.
95
- */
96
- editOnly?: boolean;
97
- /**
98
- * The key code to use for the keyboard shortcut.
99
- *
100
- * Automatically includes Meta modifier.
101
- * @example 'g' for Cmd+G / Ctrl+G
102
- */
103
- keyCode?: string;
104
- /**
105
- * The icon displayed in the button.
106
- */
107
- icon?: BlokkliIcon;
108
- /**
109
- * Optional text for the interactive tour.
110
- *
111
- * If provided, this option will be included in the editor tour.
112
- */
113
- tourText?: string;
114
- /**
115
- * Two-way binding for the active state.
116
- *
117
- * Can be used with v-model to track the option state.
118
- */
119
- modelValue?: boolean;
120
- /**
121
- * The weight, used for positioning the button.
122
- *
123
- * Lower weights appear first.
124
- */
125
- weight?: number | string;
126
- }> & Readonly<{
127
- "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
128
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
129
- icon?: (props: {}) => any;
130
- } & {
131
- default?: (props: {
132
- isActive: any;
133
- }) => any;
134
- }>;
135
- type __VLS_WithSlots<T, S> = T & {
136
- new (): {
137
- $slots: S;
138
- };
139
- };