@blokkli/editor 2.0.0-alpha.60 → 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 (129) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  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/index.d.ts +10 -1
  29. package/dist/modules/agent/runtime/app/tools/auto_translate_paragraphs/index.js +4 -4
  30. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.d.ts +17 -0
  31. package/dist/modules/agent/runtime/app/tools/check_readability_for_texts/index.js +2 -2
  32. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +10 -1
  33. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +3 -2
  34. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +16 -0
  35. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +3 -2
  36. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +16 -0
  37. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +3 -2
  38. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +22 -0
  39. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +5 -3
  40. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +31 -0
  41. package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +7 -7
  42. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +7 -0
  43. package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +2 -2
  44. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +10 -0
  45. package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +2 -2
  46. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.d.ts +35 -0
  47. package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +2 -2
  48. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +20 -0
  49. package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +2 -2
  50. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +30 -0
  51. package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +7 -6
  52. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +25 -0
  53. package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +2 -2
  54. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +8 -0
  55. package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +2 -2
  56. package/dist/modules/agent/runtime/app/tools/get_page_text/index.d.ts +6 -0
  57. package/dist/modules/agent/runtime/app/tools/get_page_text/index.js +2 -2
  58. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +81 -0
  59. package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +20 -12
  60. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +14 -0
  61. package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +2 -2
  62. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +38 -0
  63. package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +7 -6
  64. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.d.ts +12 -0
  65. package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +2 -2
  66. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.d.ts +14 -0
  67. package/dist/modules/agent/runtime/app/tools/get_referenced_entities/index.js +2 -2
  68. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +9 -0
  69. package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +2 -2
  70. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +16 -0
  71. package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +3 -2
  72. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +22 -0
  73. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +3 -2
  74. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +21 -0
  75. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +3 -2
  76. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +20 -0
  77. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +3 -2
  78. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +19 -0
  79. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +3 -2
  80. package/dist/modules/agent/runtime/app/tools/schemas.d.ts +13 -5
  81. package/dist/modules/agent/runtime/app/tools/schemas.js +17 -10
  82. package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +15 -0
  83. package/dist/modules/agent/runtime/app/tools/search_content/index.js +8 -7
  84. package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +5 -1
  85. package/dist/modules/agent/runtime/app/tools/search_media/index.js +2 -2
  86. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +16 -0
  87. package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +2 -2
  88. package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +13 -0
  89. package/dist/modules/agent/runtime/app/tools/search_templates/index.js +2 -2
  90. package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +15 -0
  91. package/dist/modules/agent/runtime/app/tools/search_text/index.js +2 -2
  92. package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +2 -2
  93. package/dist/modules/agent/runtime/app/tools/select_media/index.js +2 -2
  94. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +19 -0
  95. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +3 -2
  96. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +17 -0
  97. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +3 -2
  98. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +13 -4
  99. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +8 -7
  100. package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +17 -0
  101. package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +2 -2
  102. package/dist/modules/agent/runtime/app/types/index.d.ts +6 -9
  103. package/dist/modules/agent/runtime/app/types/index.js +4 -3
  104. package/dist/modules/agent/runtime/server/agent.js +1 -1
  105. package/dist/modules/agent/runtime/server/classes/Session/index.d.ts +2 -2
  106. package/dist/modules/agent/runtime/server/classes/Session/index.js +6 -5
  107. package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +2 -1
  108. package/dist/modules/agent/runtime/shared/toolParams.d.ts +19 -0
  109. package/dist/modules/agent/runtime/shared/toolParams.js +6 -0
  110. package/dist/modules/agent/runtime/shared/types.d.ts +23 -4
  111. package/dist/modules/agent/runtime/shared/types.js +6 -1
  112. package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +4 -13
  113. package/dist/runtime/editor/components/Actions/Title/index.vue +7 -6
  114. package/dist/runtime/editor/components/DiffApproval/index.vue +2 -2
  115. package/dist/runtime/editor/components/Dropdown/index.vue +0 -39
  116. package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +12 -2
  117. package/dist/runtime/editor/components/DropdownItem/index.vue +46 -2
  118. package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +12 -2
  119. package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +1 -1
  120. package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +1 -1
  121. package/dist/runtime/editor/css/output.css +1 -1
  122. package/dist/runtime/editor/features/changelog/changelog.json +9 -1
  123. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
  124. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
  125. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +2 -2
  126. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +2 -2
  127. package/dist/runtime/editor/translations/de.json +2 -0
  128. package/dist/runtime/editor/translations/gsw_CH.json +9 -0
  129. package/package.json +3 -2
@@ -1,9 +1,17 @@
1
1
  [
2
+ {
3
+ "version": "2.0.0-alpha.61",
4
+ "date": "2026-06-03",
5
+ "body": {
6
+ "en": "<h3>Improvements</h3>\n<h4>The AI assistant sees your selection from the very first message</h4>\n<p>When you select a block and immediately ask the AI assistant something like\n&quot;Convert this into an accordion&quot;, it now knows right away what you mean.\nPreviously it often had to ask back or look up the selection in a separate\nstep.</p>\n<h4>The AI assistant handles nested blocks correctly</h4>\n<p>When the AI assistant creates a structure made of several blocks, it now\nreliably understands which blocks sit inside which. Previously it sometimes\nmisread its own additions and partially deleted what it had just created.</p>\n<h4>Other improvements</h4>\n<ul>\n<li>The list of changes that the AI assistant proposes for confirmation can now\nbe navigated entirely with the keyboard.</li>\n</ul>\n",
7
+ "de": "<h3>Verbesserungen</h3>\n<h4>KI-Assistent erkennt markierte Blöcke ab der ersten Nachricht</h4>\n<p>Wenn Sie einen Block markieren und dem KI-Assistenten direkt eine Anweisung wie\n«Wandle das in ein Akkordeon um» geben, weiss er sofort, was gemeint ist. Bisher\nmusste er häufig nachfragen oder die Auswahl in einem separaten Schritt\nnachlesen.</p>\n<h4>KI-Assistent ordnet verschachtelte Blöcke korrekt ein</h4>\n<p>Erstellt der KI-Assistent eine Struktur mit mehreren Blöcken, erkennt er nun\nzuverlässig, welche Blöcke ineinander liegen. Vorher kam es vor, dass er die\ngerade erstellte Struktur falsch interpretierte und teilweise wieder löschte.</p>\n<h4>Weitere Verbesserungen</h4>\n<ul>\n<li>Die Liste der Änderungen, die der KI-Assistent zur Bestätigung vorschlägt,\nlässt sich jetzt vollständig mit der Tastatur durchgehen.</li>\n</ul>\n"
8
+ }
9
+ },
2
10
  {
3
11
  "version": "2.0.0-alpha.60",
4
12
  "date": "2026-06-02",
5
13
  "body": {
6
- "en": "<h3>New Features</h3>\n<h4>Notifications</h4>\n<p>A new notifications button has been added to the toolbar. A small badge shows\nhow many unread notifications you have. Opening the dropdown reveals a list of\nrelevant events — for example, when you have been mentioned in a comment, when\na comment has been resolved or when an edit has been approved.</p>\n<p>Clicking a notification opens the related page directly in edit mode in a new\ntab — and for comment mentions, jumps straight to the relevant comment.</p>\n<p>All notifications can be marked as read with a single click.</p>\n<h4>The AI assistant understands page content better</h4>\n<p>The AI assistant can now read the complete page text — exactly what you see on\nthe page. This makes answers to questions like &quot;What is this page about?&quot;,\n&quot;Summarize this page&quot; or &quot;Write an intro that matches the content&quot; noticeably\nmore accurate.</p>\n<h3>Improvements</h3>\n<h4>View options in a dropdown</h4>\n<p>The view options (e.g. grid, anchor links, structure view) are now grouped into\na dropdown menu in the top toolbar.</p>\n<h4>Help in the app menu</h4>\n<p>The help dialog with the list of keyboard shortcuts has moved out of the right\nsidebar and into the main menu.</p>\n<h4>Other improvements</h4>\n<ul>\n<li>The toolbar with actions and options above a selected block can now be\nscrolled sideways when not all buttons fit.</li>\n<li>The preview thumbnails when the AI assistant picks media are larger.</li>\n</ul>\n<h3>Fixes</h3>\n<ul>\n<li>After applying or rejecting changes made by the AI assistant, page content\noccasionally appeared out of date — the display now updates reliably.</li>\n<li>Starting a new chat while confirming an AI action now cleanly cancels the\npending action and starts the new chat fresh.</li>\n</ul>\n",
14
+ "en": "<h3>New Features</h3>\n<h4>Notifications</h4>\n<p>A new notifications button has been added to the toolbar. A small badge shows\nhow many unread notifications you have. Opening the dropdown reveals a list of\nrelevant events — for example, when you have been mentioned in a comment, when a\ncomment has been resolved or when an edit has been approved.</p>\n<p>Clicking a notification opens the related page directly in edit mode in a new\ntab — and for comment mentions, jumps straight to the relevant comment.</p>\n<p>All notifications can be marked as read with a single click.</p>\n<h4>The AI assistant understands page content better</h4>\n<p>The AI assistant can now read the complete page text — exactly what you see on\nthe page. This makes answers to questions like &quot;What is this page about?&quot;,\n&quot;Summarize this page&quot; or &quot;Write an intro that matches the content&quot; noticeably\nmore accurate.</p>\n<h3>Improvements</h3>\n<h4>View options in a dropdown</h4>\n<p>The view options (e.g. grid, anchor links, structure view) are now grouped into\na dropdown menu in the top toolbar.</p>\n<h4>Help in the app menu</h4>\n<p>The help dialog with the list of keyboard shortcuts has moved out of the right\nsidebar and into the main menu.</p>\n<h4>Other improvements</h4>\n<ul>\n<li>The toolbar with actions and options above a selected block can now be\nscrolled sideways when not all buttons fit.</li>\n<li>The preview thumbnails when the AI assistant picks media are larger.</li>\n</ul>\n<h3>Fixes</h3>\n<ul>\n<li>After applying or rejecting changes made by the AI assistant, page content\noccasionally appeared out of date — the display now updates reliably.</li>\n<li>Starting a new chat while confirming an AI action now cleanly cancels the\npending action and starts the new chat fresh.</li>\n</ul>\n",
7
15
  "de": "<h3>Neue Funktionen</h3>\n<h4>Benachrichtigungen</h4>\n<p>In der Werkzeugleiste gibt es eine neue Schaltfläche für Benachrichtigungen.\nEine kleine Markierung zeigt an, wie viele ungelesene Benachrichtigungen\nvorhanden sind. Im aufklappbaren Bereich sehen Sie eine Liste mit allen\nrelevanten Ereignissen – zum Beispiel, wenn Sie in einem Kommentar erwähnt\nwurden, wenn ein Kommentar erledigt wurde oder wenn eine Bearbeitung freigegeben\nwurde.</p>\n<p>Ein Klick auf eine Benachrichtigung öffnet die zugehörige Seite direkt im\nBearbeitungsmodus in einem neuen Tab – und springt bei Kommentar-Erwähnungen\ndirekt zum richtigen Kommentar.</p>\n<p>Alle Benachrichtigungen lassen sich mit einem Klick als gelesen markieren.</p>\n<h4>KI-Assistent versteht den Seiteninhalt besser</h4>\n<p>Der KI-Assistent kann jetzt den kompletten Seitentext lesen – also genau das,\nwas Sie auch auf der Seite sehen. Dadurch werden Antworten auf Fragen wie «Worum\ngeht es auf dieser Seite?», «Fasse die Seite zusammen» oder «Schreibe eine\nEinleitung, die zum Inhalt passt» deutlich präziser.</p>\n<h3>Verbesserungen</h3>\n<h4>Darstellungsoptionen im Aufklappmenü</h4>\n<p>Die Darstellungsoptionen (z. B. Raster, Ankerlinks, Strukturansicht) sind neu in\neinem aufklappbaren Menü in der oberen Toolbar zusammengefasst.</p>\n<h4>Hilfe im App-Menü</h4>\n<p>Die Hilfe mit der Liste der Tastenkürzel ist nicht mehr in der rechten Sidebar,\nsondern direkt im Hauptmenü zu finden.</p>\n<h4>Weitere Verbesserungen</h4>\n<ul>\n<li>Die Werkzeugleiste mit den Aktionen und Optionen über einem ausgewählten Block\nlässt sich nun seitlich scrollen, wenn nicht alle Schaltflächen Platz haben.</li>\n<li>Die Vorschaubilder bei der Medienauswahl durch den KI-Assistenten sind grösser</li>\n</ul>\n<h3>Fehlerbehebungen</h3>\n<ul>\n<li>Nach dem Übernehmen oder Ablehnen von Änderungen durch den KI-Assistenten\nwurden Inhalte auf der Seite in manchen Fällen veraltet dargestellt – die\nAnzeige wird jetzt zuverlässig aktualisiert.</li>\n<li>Wird während der Bestätigung einer KI-Aktion ein neuer Chat gestartet, ist die\nlaufende Aktion korrekt abgebrochen und der neue Chat startet sauber.</li>\n</ul>\n"
8
16
  }
9
17
  },
@@ -34,8 +34,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
34
34
  width: number;
35
35
  height: number;
36
36
  };
37
- minWidth: number;
38
37
  minHeight: number;
38
+ minWidth: number;
39
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
40
40
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
41
41
  declare const _default: typeof __VLS_export;
@@ -34,8 +34,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
34
34
  width: number;
35
35
  height: number;
36
36
  };
37
- minWidth: number;
38
37
  minHeight: number;
38
+ minWidth: number;
39
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
40
40
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
41
41
  declare const _default: typeof __VLS_export;
@@ -200,9 +200,9 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
200
200
  width: number;
201
201
  height: number;
202
202
  };
203
- tourText: string;
204
- minWidth: number;
205
203
  minHeight: number;
204
+ minWidth: number;
205
+ tourText: string;
206
206
  region: SidebarRegion;
207
207
  tooltipTitle: string;
208
208
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -200,9 +200,9 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
200
200
  width: number;
201
201
  height: number;
202
202
  };
203
- tourText: string;
204
- minWidth: number;
205
203
  minHeight: number;
204
+ minWidth: number;
205
+ tourText: string;
206
206
  region: SidebarRegion;
207
207
  tooltipTitle: string;
208
208
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -101,6 +101,7 @@
101
101
  "aiAgentCreateChartDone": "Diagramm hinzugefügt",
102
102
  "aiAgentCreateChartRunning": "Diagramm wird erstellt",
103
103
  "aiAgentCreatePlan": "Plan: @label",
104
+ "aiAgentDelegateRewriteAllRejected": "Alle Änderungen abgelehnt",
104
105
  "aiAgentDelegateRewriteCancelled": "Umschreiben abgebrochen",
105
106
  "aiAgentDelegateRewriteNoChanges": "Keine Änderungen erkannt",
106
107
  "aiAgentDelegateRewriteRetrying": "@count Felder werden erneut versucht (Versuch @attempt)",
@@ -628,6 +629,7 @@
628
629
  "fragmentsPlaceDialogSubmitButton": "Ausgewähltes Fragment hinzufügen",
629
630
  "fragmentsPlaceDialogTitle": "Fragment hinzufügen",
630
631
  "gridTourText": "Zeigt die Layout-Spalten als Overlay über die Seite an.",
632
+ "helpMenuDescription": "Verfügbare Tastenkürzel anzeigen",
631
633
  "history": "Änderungsverlauf",
632
634
  "historyCurrentRevision": "Aktuelle Revision",
633
635
  "historyEmpty": "Es gibt noch keine Änderungen.",
@@ -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)...",
@@ -621,6 +629,7 @@
621
629
  "fragmentsPlaceDialogSubmitButton": "Usgwählts Fragmänt drzuefüege",
622
630
  "fragmentsPlaceDialogTitle": "Fragmänt-Block drzuefüege",
623
631
  "gridTourText": "Zeigt es Layout-Raster-Overlay über dr Sitte aa.",
632
+ "helpMenuDescription": "Verfügbare Tastenkürzel anzeigen",
624
633
  "history": "Änderige",
625
634
  "historyCurrentRevision": "Aktuelli Revision",
626
635
  "historyEmpty": "S'git no keini Änderige.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blokkli/editor",
3
- "version": "2.0.0-alpha.60",
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",