@blokkli/editor 2.0.0-alpha.23 → 2.0.0-alpha.25

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 (259) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +252 -92
  3. package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue.d.ts +38 -0
  4. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +1 -1
  5. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +15 -0
  6. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +6 -0
  7. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +28 -3
  8. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +6 -4
  9. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +11 -3
  10. package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +138 -3
  11. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +5 -1
  12. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +116 -0
  13. package/dist/runtime/blokkliPlugins/TourItem/index.vue +22 -13
  14. package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +22 -0
  15. package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +98 -0
  16. package/dist/runtime/blokkliPlugins/index.d.ts +1 -3
  17. package/dist/runtime/blokkliPlugins/index.js +0 -4
  18. package/dist/runtime/components/Blocks/NotImplemented/index.vue +24 -0
  19. package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +6 -0
  20. package/dist/runtime/components/BlokkliEditable.vue.d.ts +11 -0
  21. package/dist/runtime/components/BlokkliItem.vue +16 -3
  22. package/dist/runtime/components/BlokkliItem.vue.d.ts +2 -0
  23. package/dist/runtime/components/BlokkliProvider.vue.d.ts +1 -1
  24. package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +1 -1
  25. package/dist/runtime/components/Edit/Actions/index.vue +78 -73
  26. package/dist/runtime/components/Edit/AddListItem/index.vue +9 -35
  27. package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +6 -15
  28. package/dist/runtime/components/Edit/AppMenu/MenuButton.vue +39 -0
  29. package/dist/runtime/{blokkliPlugins/MenuButton/index.vue.d.ts → components/Edit/AppMenu/MenuButton.vue.d.ts} +0 -4
  30. package/dist/runtime/components/Edit/AppMenu/index.vue +62 -40
  31. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +6 -0
  32. package/dist/runtime/components/Edit/BlockProxy/index.vue +2 -2
  33. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +3 -0
  34. package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +4 -1
  35. package/dist/runtime/components/Edit/Dialog/index.vue +33 -47
  36. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +2 -0
  37. package/dist/runtime/components/Edit/DraggableList.vue +12 -9
  38. package/dist/runtime/components/Edit/EditIndicator.vue +11 -4
  39. package/dist/runtime/components/Edit/EditProvider.vue +75 -55
  40. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +1 -1
  41. package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue +53 -0
  42. package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue.d.ts +7 -0
  43. package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue +41 -0
  44. package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue.d.ts +5 -0
  45. package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue +13 -50
  46. package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue.d.ts +5 -0
  47. package/dist/runtime/components/Edit/Features/AddList/index.vue +76 -119
  48. package/dist/runtime/components/Edit/Features/Analyze/Icon.vue +85 -0
  49. package/dist/runtime/components/Edit/Features/Analyze/Icon.vue.d.ts +5 -0
  50. package/dist/runtime/components/Edit/Features/Analyze/Main.vue +288 -59
  51. package/dist/runtime/components/Edit/Features/Analyze/Main.vue.d.ts +8 -1
  52. package/dist/runtime/components/Edit/Features/Analyze/Renderer/fragment.glsl +25 -13
  53. package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue +114 -52
  54. package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue.d.ts +16 -2
  55. package/dist/runtime/components/Edit/Features/Analyze/Renderer/vertex.glsl +31 -11
  56. package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue +2 -0
  57. package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue.d.ts +8 -1
  58. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue +4 -4
  59. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue.d.ts +20 -2
  60. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue +11 -18
  61. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue.d.ts +10 -3
  62. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +46 -40
  63. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue.d.ts +10 -4
  64. package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue +8 -4
  65. package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.js +1 -0
  66. package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.d.ts +4 -3
  67. package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.js +2 -1
  68. package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.js +61 -20
  69. package/dist/runtime/components/Edit/Features/Analyze/analyzers/types.d.ts +15 -1
  70. package/dist/runtime/components/Edit/Features/Analyze/index.vue +23 -2
  71. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +22 -8
  72. package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +42 -21
  73. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue +10 -4
  74. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +2 -28
  75. package/dist/runtime/components/Edit/Features/Assistant/index.vue +18 -14
  76. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +11 -1
  77. package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +2 -2
  78. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +1 -1
  79. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +52 -18
  80. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +0 -2
  81. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +6 -4
  82. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +77 -27
  83. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +7 -4
  84. package/dist/runtime/components/Edit/Features/Comments/index.vue +2 -2
  85. package/dist/runtime/components/Edit/Features/Debug/Main.vue.d.ts +1 -1
  86. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +2 -2
  87. package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue.d.ts +1 -1
  88. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue +113 -0
  89. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue.d.ts +25 -0
  90. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +8 -97
  91. package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/fragment.glsl +2 -5
  92. package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue +38 -5
  93. package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/vertex.glsl +10 -1
  94. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +1 -2
  95. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +8 -2
  96. package/dist/runtime/components/Edit/Features/EditForm/index.vue +3 -9
  97. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +1 -1
  98. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +4 -3
  99. package/dist/runtime/components/Edit/Features/EditableField/index.vue +2 -2
  100. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +1 -1
  101. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +7 -2
  102. package/dist/runtime/components/Edit/Features/Exit/index.vue +12 -9
  103. package/dist/runtime/components/Edit/Features/Fragments/index.vue +27 -31
  104. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +1 -0
  105. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +25 -24
  106. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +4 -4
  107. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +9 -2
  108. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +13 -3
  109. package/dist/runtime/components/Edit/Features/Library/index.vue +26 -24
  110. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +3 -2
  111. package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue +1 -3
  112. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +1 -1
  113. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +3 -1
  114. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +10 -0
  115. package/dist/runtime/components/Edit/Features/Publish/index.vue +17 -15
  116. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +3 -2
  117. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +3 -2
  118. package/dist/runtime/components/Edit/Features/Revert/index.vue +24 -18
  119. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +8 -2
  120. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +12 -2
  121. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +11 -3
  122. package/dist/runtime/components/Edit/Features/Search/index.vue +1 -1
  123. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +128 -31
  124. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +6 -6
  125. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +3 -6
  126. package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue +1 -1
  127. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +1 -0
  128. package/dist/runtime/components/Edit/Features/Settings/index.vue +26 -18
  129. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +3 -3
  130. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +2 -2
  131. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +3 -3
  132. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +2 -2
  133. package/dist/runtime/components/Edit/Features/Tour/index.vue +12 -10
  134. package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +7 -1
  135. package/dist/runtime/components/Edit/Features/Transform/index.vue +1 -1
  136. package/dist/runtime/components/Edit/Features/Translations/index.vue +18 -17
  137. package/dist/runtime/components/Edit/Form/Textarea/index.vue +1 -1
  138. package/dist/runtime/components/Edit/FormOverlay/index.vue +13 -4
  139. package/dist/runtime/components/Edit/Indicators/index.vue +1 -1
  140. package/dist/runtime/components/Edit/InfoBox/index.vue +3 -2
  141. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +6 -1
  142. package/dist/runtime/components/Edit/ItemIconBox/index.vue +41 -0
  143. package/dist/runtime/components/Edit/{AddListItemIcon → ItemIconBox}/index.vue.d.ts +5 -5
  144. package/dist/runtime/components/Edit/Konami/Game/index.vue +0 -1
  145. package/dist/runtime/components/Edit/Konami/index.vue +3 -5
  146. package/dist/runtime/components/Edit/Messages/Item/index.vue +11 -2
  147. package/dist/runtime/components/Edit/Messages/index.vue +6 -1
  148. package/dist/runtime/components/Edit/Overlay/index.vue +70 -0
  149. package/dist/runtime/components/Edit/Overlay/index.vue.d.ts +2 -0
  150. package/dist/runtime/components/Edit/PreviewProvider.vue +3 -3
  151. package/dist/runtime/components/Edit/ScaleToFit/index.vue +4 -4
  152. package/dist/runtime/components/Edit/SystemRequirements/index.vue +36 -36
  153. package/dist/runtime/components/Edit/Toolbar/index.vue +47 -48
  154. package/dist/runtime/components/Edit/index.d.ts +2 -2
  155. package/dist/runtime/components/Edit/index.js +2 -2
  156. package/dist/runtime/composables/defineBlokkliFeature.d.ts +1 -1
  157. package/dist/runtime/composables/useBlokkli.d.ts +6 -1
  158. package/dist/runtime/composables/useBlokkli.js +4 -1
  159. package/dist/runtime/css/output.css +1 -1
  160. package/dist/runtime/helpers/composables/defineAddAction.d.ts +2 -0
  161. package/dist/runtime/helpers/composables/defineAddAction.js +10 -0
  162. package/dist/runtime/helpers/composables/defineElementStyle.d.ts +2 -0
  163. package/dist/runtime/helpers/composables/defineElementStyle.js +33 -0
  164. package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +1 -1
  165. package/dist/runtime/helpers/composables/defineItemDropdownAction.js +2 -2
  166. package/dist/runtime/helpers/composables/defineMenuButton.d.ts +2 -0
  167. package/dist/runtime/helpers/composables/defineMenuButton.js +10 -0
  168. package/dist/runtime/helpers/composables/defineRenderer.d.ts +1 -1
  169. package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +1 -1
  170. package/dist/runtime/helpers/composables/useBlockRegistration.d.ts +1 -1
  171. package/dist/runtime/helpers/composables/useBlockRegistration.js +12 -1
  172. package/dist/runtime/helpers/composables/useDebugLogger.d.ts +1 -1
  173. package/dist/runtime/helpers/composables/useDialog.d.ts +3 -0
  174. package/dist/runtime/helpers/composables/useDialog.js +16 -0
  175. package/dist/runtime/helpers/composables/useFocusTrap.d.ts +52 -0
  176. package/dist/runtime/helpers/composables/useFocusTrap.js +59 -0
  177. package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +1 -1
  178. package/dist/runtime/helpers/{useTransitionedValue.js → composables/useTransitionedValue.js} +1 -1
  179. package/dist/runtime/helpers/dropTargets/index.d.ts +1 -1
  180. package/dist/runtime/helpers/dropTargets/index.js +17 -3
  181. package/dist/runtime/helpers/imports/index.d.ts +2 -1
  182. package/dist/runtime/helpers/imports/index.js +10 -1
  183. package/dist/runtime/helpers/{animationProvider.d.ts → providers/animation.d.ts} +100 -7
  184. package/dist/runtime/helpers/{animationProvider.js → providers/animation.js} +21 -11
  185. package/dist/runtime/helpers/providers/blocks.d.ts +25 -3
  186. package/dist/runtime/helpers/providers/blocks.js +19 -0
  187. package/dist/runtime/helpers/providers/commands.d.ts +41 -0
  188. package/dist/runtime/helpers/{commandsProvider.js → providers/commands.js} +1 -1
  189. package/dist/runtime/helpers/providers/debug.d.ts +125 -0
  190. package/dist/runtime/helpers/{debugProvider.js → providers/debug.js} +2 -2
  191. package/dist/runtime/helpers/providers/definition.d.ts +87 -0
  192. package/dist/runtime/helpers/providers/directive.d.ts +88 -2
  193. package/dist/runtime/helpers/providers/directive.js +18 -2
  194. package/dist/runtime/helpers/providers/dom.d.ts +225 -0
  195. package/dist/runtime/helpers/{domProvider.js → providers/dom.js} +34 -76
  196. package/dist/runtime/helpers/providers/dropArea.d.ts +47 -0
  197. package/dist/runtime/helpers/{dropAreaProvider.js → providers/dropArea.js} +1 -1
  198. package/dist/runtime/helpers/providers/element.d.ts +58 -1
  199. package/dist/runtime/helpers/providers/features.d.ts +56 -0
  200. package/dist/runtime/helpers/{featuresProvider.js → providers/features.js} +1 -1
  201. package/dist/runtime/helpers/providers/fields.d.ts +19 -4
  202. package/dist/runtime/helpers/providers/fields.js +1 -1
  203. package/dist/runtime/helpers/providers/indicators.d.ts +44 -0
  204. package/dist/runtime/helpers/providers/keyboard.d.ts +76 -0
  205. package/dist/runtime/helpers/{keyboardProvider.js → providers/keyboard.js} +1 -8
  206. package/dist/runtime/helpers/providers/plugin.d.ts +81 -0
  207. package/dist/runtime/helpers/providers/plugin.js +64 -0
  208. package/dist/runtime/helpers/{selectionProvider.d.ts → providers/selection.d.ts} +4 -1
  209. package/dist/runtime/helpers/{selectionProvider.js → providers/selection.js} +1 -1
  210. package/dist/runtime/helpers/providers/state.d.ts +227 -0
  211. package/dist/runtime/helpers/{stateProvider.js → providers/state.js} +3 -3
  212. package/dist/runtime/helpers/providers/storage.d.ts +64 -0
  213. package/dist/runtime/helpers/{textProvider.d.ts → providers/texts.d.ts} +1 -1
  214. package/dist/runtime/helpers/providers/theme.d.ts +119 -0
  215. package/dist/runtime/helpers/{themeProvider.js → providers/theme.js} +3 -3
  216. package/dist/runtime/helpers/providers/tour.d.ts +49 -0
  217. package/dist/runtime/helpers/{tourProvider.js → providers/tour.js} +1 -1
  218. package/dist/runtime/helpers/providers/types.d.ts +170 -0
  219. package/dist/runtime/helpers/{typesProvider.js → providers/types.js} +45 -1
  220. package/dist/runtime/helpers/providers/ui.d.ts +339 -0
  221. package/dist/runtime/helpers/{uiProvider.js → providers/ui.js} +94 -86
  222. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +1 -1
  223. package/dist/runtime/helpers/symbols.d.ts +1 -0
  224. package/dist/runtime/helpers/symbols.js +3 -0
  225. package/dist/runtime/icons/click.svg +1 -0
  226. package/dist/runtime/types/blockOptions.d.ts +349 -0
  227. package/dist/runtime/types/index.d.ts +34 -31
  228. package/package.json +2 -2
  229. package/dist/runtime/blokkliPlugins/AddAction/index.vue +0 -96
  230. package/dist/runtime/blokkliPlugins/AddAction/index.vue.d.ts +0 -26
  231. package/dist/runtime/blokkliPlugins/MenuButton/index.vue +0 -68
  232. package/dist/runtime/components/Edit/AddListItemIcon/index.vue +0 -19
  233. package/dist/runtime/helpers/commandsProvider.d.ts +0 -9
  234. package/dist/runtime/helpers/debugProvider.d.ts +0 -33
  235. package/dist/runtime/helpers/definitionProvider.d.ts +0 -19
  236. package/dist/runtime/helpers/domProvider.d.ts +0 -90
  237. package/dist/runtime/helpers/dropAreaProvider.d.ts +0 -9
  238. package/dist/runtime/helpers/featuresProvider.d.ts +0 -17
  239. package/dist/runtime/helpers/indicatorsProvider.d.ts +0 -10
  240. package/dist/runtime/helpers/keyboardProvider.d.ts +0 -20
  241. package/dist/runtime/helpers/pluginProvider.d.ts +0 -26
  242. package/dist/runtime/helpers/pluginProvider.js +0 -62
  243. package/dist/runtime/helpers/stateProvider.d.ts +0 -47
  244. package/dist/runtime/helpers/storageProvider.d.ts +0 -17
  245. package/dist/runtime/helpers/themeProvider.d.ts +0 -30
  246. package/dist/runtime/helpers/tourProvider.d.ts +0 -11
  247. package/dist/runtime/helpers/typesProvider.d.ts +0 -36
  248. package/dist/runtime/helpers/uiProvider.d.ts +0 -60
  249. package/dist/runtime/types/blokkOptions.d.ts +0 -100
  250. /package/dist/runtime/helpers/{addElementClasses.d.ts → composables/addElementClasses.d.ts} +0 -0
  251. /package/dist/runtime/helpers/{addElementClasses.js → composables/addElementClasses.js} +0 -0
  252. /package/dist/runtime/helpers/{useTransitionedValue.d.ts → composables/useTransitionedValue.d.ts} +0 -0
  253. /package/dist/runtime/helpers/{broadcastProvider.d.ts → providers/broadcast.d.ts} +0 -0
  254. /package/dist/runtime/helpers/{broadcastProvider.js → providers/broadcast.js} +0 -0
  255. /package/dist/runtime/helpers/{definitionProvider.js → providers/definition.js} +0 -0
  256. /package/dist/runtime/helpers/{indicatorsProvider.js → providers/indicators.js} +0 -0
  257. /package/dist/runtime/helpers/{storageProvider.js → providers/storage.js} +0 -0
  258. /package/dist/runtime/helpers/{textProvider.js → providers/texts.js} +0 -0
  259. /package/dist/runtime/types/{blokkOptions.js → blockOptions.js} +0 -0
package/dist/module.mjs CHANGED
@@ -15,7 +15,7 @@ import fs from 'node:fs';
15
15
  import { defu, createDefu } from 'defu';
16
16
 
17
17
  const name = "@blokkli/editor";
18
- const version = "2.0.0-alpha.23";
18
+ const version = "2.0.0-alpha.25";
19
19
 
20
20
  function sortObjectKeys(obj) {
21
21
  if (Array.isArray(obj)) {
@@ -660,7 +660,7 @@ class ModuleHelper {
660
660
  ),
661
661
  TYPES_BLOKK_OPTIONS: relative(
662
662
  this.paths.blokkliBuildDir,
663
- this.resolvers.module.resolve("./runtime/types/blokkOptions.ts")
663
+ this.resolvers.module.resolve("./runtime/types/blockOptions.ts")
664
664
  )
665
665
  };
666
666
  const pattern = providedOptions.pattern || [];
@@ -1099,6 +1099,10 @@ const analyzeCategoryText$3 = {
1099
1099
  source: "Text",
1100
1100
  translation: "Texte"
1101
1101
  };
1102
+ const analyzeClickButton$3 = {
1103
+ source: "Click the button above to run the analysis.",
1104
+ translation: "Klicken Sie auf den Button oben um die Analyse auszuführen."
1105
+ };
1102
1106
  const analyzeLastRun$3 = {
1103
1107
  source: "Last run: @time",
1104
1108
  translation: "Zuletzt ausgeführt: @time"
@@ -1107,14 +1111,18 @@ const analyzeMoreLink$3 = {
1107
1111
  source: "More",
1108
1112
  translation: "Mehr"
1109
1113
  };
1114
+ const analyzeNotAvailableInStructureView$3 = {
1115
+ source: "Analyze is not available in structure view.",
1116
+ translation: "«Analysieren» ist in der strukturierten Vorschau nicht verfügbar."
1117
+ };
1118
+ const analyzeResultsOutdated$3 = {
1119
+ source: "Results are outdated. Click the button to update.",
1120
+ translation: "Resultate sind veraltet. Klicken Sie auf den Button um zu aktualisieren."
1121
+ };
1110
1122
  const analyzeSidebarTitle$3 = {
1111
1123
  source: "Analyze",
1112
1124
  translation: "Analysieren"
1113
1125
  };
1114
- const analyzeStaleMessage$3 = {
1115
- source: "The contents of the page have changed since last analyzing the page. Please run the analyzers again to get updated results.",
1116
- translation: "Die Seiteninhalte wurden seit der letzten Analyse geändert. Bitte führen Sie die Analyse erneut aus um aktuelle Resultate zu sehen."
1117
- };
1118
1126
  const analyzeStatusInapplicable$3 = {
1119
1127
  source: "Inapplicable",
1120
1128
  translation: "Nicht anwendbar"
@@ -1127,6 +1135,14 @@ const analyzeStatusPass$3 = {
1127
1135
  source: "Pass",
1128
1136
  translation: "Bestanden"
1129
1137
  };
1138
+ const analyzeStatusStale$3 = {
1139
+ source: "Stale",
1140
+ translation: "Veraltet"
1141
+ };
1142
+ const analyzeStatusUpToDate$3 = {
1143
+ source: "Up-to-date",
1144
+ translation: "Aktuell"
1145
+ };
1130
1146
  const analyzeStatusViolation$3 = {
1131
1147
  source: "Violation",
1132
1148
  translation: "Fehler"
@@ -1141,7 +1157,7 @@ const analyzerReadabiliyAverageSentenceLength$3 = {
1141
1157
  };
1142
1158
  const analyzerReadabiliyDescription$3 = {
1143
1159
  source: "Avoid texts that are hard to read.",
1144
- translation: "Vermeiden Sie Texts die schwer lesbar sind."
1160
+ translation: "Vermeiden Sie Texte die schwer lesbar sind."
1145
1161
  };
1146
1162
  const analyzerReadabiliyHardToRead$3 = {
1147
1163
  source: "Hard to read (@lang).",
@@ -1263,6 +1279,10 @@ const blockAddListTourTitle$3 = {
1263
1279
  source: "Favorite blocks",
1264
1280
  translation: "Favoriten-Blöcke"
1265
1281
  };
1282
+ const blockNotImplemented$3 = {
1283
+ source: "Missing component for block bundle <strong>@bundle</strong>.",
1284
+ translation: "Keine Komponente für Block-Typ <strong>@bundle</strong> gefunden."
1285
+ };
1266
1286
  const blockOption_bkHiddenGlobally_description$3 = {
1267
1287
  source: "Always hides the block.",
1268
1288
  translation: "Den Block immer verstecken."
@@ -1359,6 +1379,14 @@ const clipboardPasteErrorAllowedBundlesSingle$3 = {
1359
1379
  source: "Block type \"@types\" is not allowed here.",
1360
1380
  translation: "Der Block-Typ «@types» ist hier nicht erlaubt."
1361
1381
  };
1382
+ const clipboardPasteErrorAllowedFragmentsMultiple$3 = {
1383
+ source: "Fragments (@types) are not allowed here.",
1384
+ translation: ""
1385
+ };
1386
+ const clipboardPasteErrorAllowedFragmentsSingle$3 = {
1387
+ source: "Fragment \"@types\" is not allowed here.",
1388
+ translation: ""
1389
+ };
1362
1390
  const clipboardPasteErrorCardinality$3 = {
1363
1391
  source: "This field only allows up to @count blocks.",
1364
1392
  translation: "Dieses Feld erlaubt nur bis zu @count Blöcke."
@@ -2191,6 +2219,10 @@ const optionBkVisibleLanguagesAll$3 = {
2191
2219
  source: "All languages",
2192
2220
  translation: "Alle Sprachen"
2193
2221
  };
2222
+ const overlayDoubleClickInfo$3 = {
2223
+ source: "<strong>Double click</strong> to close overlay",
2224
+ translation: "<strong>Doppelklicken</strong> um Dialog zu schliessen"
2225
+ };
2194
2226
  const ownershipError$3 = {
2195
2227
  source: "Error in assigning",
2196
2228
  translation: "Fehler beim Zuweisen"
@@ -2679,10 +2711,14 @@ const transformDialogButtonApply$3 = {
2679
2711
  source: "Apply changes",
2680
2712
  translation: "Änderungen annehmen"
2681
2713
  };
2682
- const transformDialogButtonPreview$3 = {
2714
+ const transformDialogButtonNewSuggestion$3 = {
2683
2715
  source: "New suggestion",
2684
2716
  translation: "Neuer Vorschlag"
2685
2717
  };
2718
+ const transformDialogButtonPreview$3 = {
2719
+ source: "Preview",
2720
+ translation: "Vorschau"
2721
+ };
2686
2722
  const translationsBannerButton$3 = {
2687
2723
  source: "Edit source language instead",
2688
2724
  translation: "Originalsprache bearbeiten"
@@ -2776,13 +2812,17 @@ const de = {
2776
2812
  analyzeCategoryContent: analyzeCategoryContent$3,
2777
2813
  analyzeCategorySeo: analyzeCategorySeo$3,
2778
2814
  analyzeCategoryText: analyzeCategoryText$3,
2815
+ analyzeClickButton: analyzeClickButton$3,
2779
2816
  analyzeLastRun: analyzeLastRun$3,
2780
2817
  analyzeMoreLink: analyzeMoreLink$3,
2818
+ analyzeNotAvailableInStructureView: analyzeNotAvailableInStructureView$3,
2819
+ analyzeResultsOutdated: analyzeResultsOutdated$3,
2781
2820
  analyzeSidebarTitle: analyzeSidebarTitle$3,
2782
- analyzeStaleMessage: analyzeStaleMessage$3,
2783
2821
  analyzeStatusInapplicable: analyzeStatusInapplicable$3,
2784
2822
  analyzeStatusIncomplete: analyzeStatusIncomplete$3,
2785
2823
  analyzeStatusPass: analyzeStatusPass$3,
2824
+ analyzeStatusStale: analyzeStatusStale$3,
2825
+ analyzeStatusUpToDate: analyzeStatusUpToDate$3,
2786
2826
  analyzeStatusViolation: analyzeStatusViolation$3,
2787
2827
  analyzeTourText: analyzeTourText$3,
2788
2828
  analyzerReadabiliyAverageSentenceLength: analyzerReadabiliyAverageSentenceLength$3,
@@ -2817,6 +2857,7 @@ const de = {
2817
2857
  assistantPromptPlaceholder: assistantPromptPlaceholder$3,
2818
2858
  blockAddListTourText: blockAddListTourText$3,
2819
2859
  blockAddListTourTitle: blockAddListTourTitle$3,
2860
+ blockNotImplemented: blockNotImplemented$3,
2820
2861
  blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$3,
2821
2862
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$3,
2822
2863
  blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$3,
@@ -2841,6 +2882,8 @@ const de = {
2841
2882
  clipboardPasteError: clipboardPasteError$3,
2842
2883
  clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$3,
2843
2884
  clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$3,
2885
+ clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$3,
2886
+ clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$3,
2844
2887
  clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$3,
2845
2888
  clipboardPasteErrorOneField: clipboardPasteErrorOneField$3,
2846
2889
  clipboardPastePlaceholder: clipboardPastePlaceholder$3,
@@ -2938,22 +2981,6 @@ const de = {
2938
2981
  "feature_add-list_setting_hideDisabledBlocks_label": {
2939
2982
  source: "Hide blocks that can't be added",
2940
2983
  translation: ""
2941
- },
2942
- "feature_add-list_setting_orientation_label": {
2943
- source: "Add List",
2944
- translation: "Block-Leiste"
2945
- },
2946
- "feature_add-list_setting_orientation_option_horizontal": {
2947
- source: "Horizontal",
2948
- translation: "Horizontal"
2949
- },
2950
- "feature_add-list_setting_orientation_option_sidebar": {
2951
- source: "Sidebar",
2952
- translation: "Sidebar"
2953
- },
2954
- "feature_add-list_setting_orientation_option_vertical": {
2955
- source: "Vertical",
2956
- translation: "Vertikal"
2957
2984
  },
2958
2985
  feature_analyze_description: feature_analyze_description$3,
2959
2986
  feature_analyze_label: feature_analyze_label$3,
@@ -3229,6 +3256,7 @@ const de = {
3229
3256
  source: "Unselect \"@value\" in \"@option\"",
3230
3257
  translation: "«@value» in «@option» abwählen"
3231
3258
  },
3259
+ overlayDoubleClickInfo: overlayDoubleClickInfo$3,
3232
3260
  ownershipError: ownershipError$3,
3233
3261
  ownershipNote: ownershipNote$3,
3234
3262
  ownershipSuccess: ownershipSuccess$3,
@@ -3359,6 +3387,7 @@ const de = {
3359
3387
  tourPrev: tourPrev$3,
3360
3388
  tourStartButton: tourStartButton$3,
3361
3389
  transformDialogButtonApply: transformDialogButtonApply$3,
3390
+ transformDialogButtonNewSuggestion: transformDialogButtonNewSuggestion$3,
3362
3391
  transformDialogButtonPreview: transformDialogButtonPreview$3,
3363
3392
  translationsBannerButton: translationsBannerButton$3,
3364
3393
  translationsBannerText: translationsBannerText$3,
@@ -3457,6 +3486,10 @@ const analyzeCategoryText$2 = {
3457
3486
  source: "Text",
3458
3487
  translation: ""
3459
3488
  };
3489
+ const analyzeClickButton$2 = {
3490
+ source: "Click the button above to run the analysis.",
3491
+ translation: ""
3492
+ };
3460
3493
  const analyzeLastRun$2 = {
3461
3494
  source: "Last run: @time",
3462
3495
  translation: ""
@@ -3465,12 +3498,16 @@ const analyzeMoreLink$2 = {
3465
3498
  source: "More",
3466
3499
  translation: ""
3467
3500
  };
3468
- const analyzeSidebarTitle$2 = {
3469
- source: "Analyze",
3501
+ const analyzeNotAvailableInStructureView$2 = {
3502
+ source: "Analyze is not available in structure view.",
3503
+ translation: ""
3504
+ };
3505
+ const analyzeResultsOutdated$2 = {
3506
+ source: "Results are outdated. Click the button to update.",
3470
3507
  translation: ""
3471
3508
  };
3472
- const analyzeStaleMessage$2 = {
3473
- source: "The contents of the page have changed since last analyzing the page. Please run the analyzers again to get updated results.",
3509
+ const analyzeSidebarTitle$2 = {
3510
+ source: "Analyze",
3474
3511
  translation: ""
3475
3512
  };
3476
3513
  const analyzeStatusInapplicable$2 = {
@@ -3485,6 +3522,14 @@ const analyzeStatusPass$2 = {
3485
3522
  source: "Pass",
3486
3523
  translation: ""
3487
3524
  };
3525
+ const analyzeStatusStale$2 = {
3526
+ source: "Stale",
3527
+ translation: ""
3528
+ };
3529
+ const analyzeStatusUpToDate$2 = {
3530
+ source: "Up-to-date",
3531
+ translation: ""
3532
+ };
3488
3533
  const analyzeStatusViolation$2 = {
3489
3534
  source: "Violation",
3490
3535
  translation: ""
@@ -3621,6 +3666,10 @@ const blockAddListTourTitle$2 = {
3621
3666
  source: "Favorite blocks",
3622
3667
  translation: ""
3623
3668
  };
3669
+ const blockNotImplemented$2 = {
3670
+ source: "Missing component for block bundle <strong>@bundle</strong>.",
3671
+ translation: ""
3672
+ };
3624
3673
  const blockOption_bkHiddenGlobally_description$2 = {
3625
3674
  source: "Always hides the block.",
3626
3675
  translation: ""
@@ -3717,6 +3766,14 @@ const clipboardPasteErrorAllowedBundlesSingle$2 = {
3717
3766
  source: "Block type \"@types\" is not allowed here.",
3718
3767
  translation: ""
3719
3768
  };
3769
+ const clipboardPasteErrorAllowedFragmentsMultiple$2 = {
3770
+ source: "Fragments (@types) are not allowed here.",
3771
+ translation: ""
3772
+ };
3773
+ const clipboardPasteErrorAllowedFragmentsSingle$2 = {
3774
+ source: "Fragment \"@types\" is not allowed here.",
3775
+ translation: ""
3776
+ };
3720
3777
  const clipboardPasteErrorCardinality$2 = {
3721
3778
  source: "This field only allows up to @count blocks.",
3722
3779
  translation: ""
@@ -4549,6 +4606,10 @@ const optionBkVisibleLanguagesAll$2 = {
4549
4606
  source: "All languages",
4550
4607
  translation: ""
4551
4608
  };
4609
+ const overlayDoubleClickInfo$2 = {
4610
+ source: "<strong>Double click</strong> to close overlay",
4611
+ translation: ""
4612
+ };
4552
4613
  const ownershipError$2 = {
4553
4614
  source: "Error in assigning",
4554
4615
  translation: "Erreur lors de l’attribution"
@@ -5037,10 +5098,14 @@ const transformDialogButtonApply$2 = {
5037
5098
  source: "Apply changes",
5038
5099
  translation: ""
5039
5100
  };
5040
- const transformDialogButtonPreview$2 = {
5101
+ const transformDialogButtonNewSuggestion$2 = {
5041
5102
  source: "New suggestion",
5042
5103
  translation: ""
5043
5104
  };
5105
+ const transformDialogButtonPreview$2 = {
5106
+ source: "Preview",
5107
+ translation: ""
5108
+ };
5044
5109
  const translationsBannerButton$2 = {
5045
5110
  source: "Edit source language instead",
5046
5111
  translation: ""
@@ -5134,13 +5199,17 @@ const fr = {
5134
5199
  analyzeCategoryContent: analyzeCategoryContent$2,
5135
5200
  analyzeCategorySeo: analyzeCategorySeo$2,
5136
5201
  analyzeCategoryText: analyzeCategoryText$2,
5202
+ analyzeClickButton: analyzeClickButton$2,
5137
5203
  analyzeLastRun: analyzeLastRun$2,
5138
5204
  analyzeMoreLink: analyzeMoreLink$2,
5205
+ analyzeNotAvailableInStructureView: analyzeNotAvailableInStructureView$2,
5206
+ analyzeResultsOutdated: analyzeResultsOutdated$2,
5139
5207
  analyzeSidebarTitle: analyzeSidebarTitle$2,
5140
- analyzeStaleMessage: analyzeStaleMessage$2,
5141
5208
  analyzeStatusInapplicable: analyzeStatusInapplicable$2,
5142
5209
  analyzeStatusIncomplete: analyzeStatusIncomplete$2,
5143
5210
  analyzeStatusPass: analyzeStatusPass$2,
5211
+ analyzeStatusStale: analyzeStatusStale$2,
5212
+ analyzeStatusUpToDate: analyzeStatusUpToDate$2,
5144
5213
  analyzeStatusViolation: analyzeStatusViolation$2,
5145
5214
  analyzeTourText: analyzeTourText$2,
5146
5215
  analyzerReadabiliyAverageSentenceLength: analyzerReadabiliyAverageSentenceLength$2,
@@ -5175,6 +5244,7 @@ const fr = {
5175
5244
  assistantPromptPlaceholder: assistantPromptPlaceholder$2,
5176
5245
  blockAddListTourText: blockAddListTourText$2,
5177
5246
  blockAddListTourTitle: blockAddListTourTitle$2,
5247
+ blockNotImplemented: blockNotImplemented$2,
5178
5248
  blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$2,
5179
5249
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$2,
5180
5250
  blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$2,
@@ -5199,6 +5269,8 @@ const fr = {
5199
5269
  clipboardPasteError: clipboardPasteError$2,
5200
5270
  clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$2,
5201
5271
  clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$2,
5272
+ clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$2,
5273
+ clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$2,
5202
5274
  clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$2,
5203
5275
  clipboardPasteErrorOneField: clipboardPasteErrorOneField$2,
5204
5276
  clipboardPastePlaceholder: clipboardPastePlaceholder$2,
@@ -5296,22 +5368,6 @@ const fr = {
5296
5368
  "feature_add-list_setting_hideDisabledBlocks_label": {
5297
5369
  source: "Hide blocks that can't be added",
5298
5370
  translation: ""
5299
- },
5300
- "feature_add-list_setting_orientation_label": {
5301
- source: "Add List",
5302
- translation: "Liste d'ajout"
5303
- },
5304
- "feature_add-list_setting_orientation_option_horizontal": {
5305
- source: "Horizontal",
5306
- translation: "Horizontal"
5307
- },
5308
- "feature_add-list_setting_orientation_option_sidebar": {
5309
- source: "Sidebar",
5310
- translation: "Encadré"
5311
- },
5312
- "feature_add-list_setting_orientation_option_vertical": {
5313
- source: "Vertical",
5314
- translation: "Vertical"
5315
5371
  },
5316
5372
  feature_analyze_description: feature_analyze_description$2,
5317
5373
  feature_analyze_label: feature_analyze_label$2,
@@ -5587,6 +5643,7 @@ const fr = {
5587
5643
  source: "Unselect \"@value\" in \"@option\"",
5588
5644
  translation: ""
5589
5645
  },
5646
+ overlayDoubleClickInfo: overlayDoubleClickInfo$2,
5590
5647
  ownershipError: ownershipError$2,
5591
5648
  ownershipNote: ownershipNote$2,
5592
5649
  ownershipSuccess: ownershipSuccess$2,
@@ -5717,6 +5774,7 @@ const fr = {
5717
5774
  tourPrev: tourPrev$2,
5718
5775
  tourStartButton: tourStartButton$2,
5719
5776
  transformDialogButtonApply: transformDialogButtonApply$2,
5777
+ transformDialogButtonNewSuggestion: transformDialogButtonNewSuggestion$2,
5720
5778
  transformDialogButtonPreview: transformDialogButtonPreview$2,
5721
5779
  translationsBannerButton: translationsBannerButton$2,
5722
5780
  translationsBannerText: translationsBannerText$2,
@@ -5815,6 +5873,10 @@ const analyzeCategoryText$1 = {
5815
5873
  source: "Text",
5816
5874
  translation: ""
5817
5875
  };
5876
+ const analyzeClickButton$1 = {
5877
+ source: "Click the button above to run the analysis.",
5878
+ translation: ""
5879
+ };
5818
5880
  const analyzeLastRun$1 = {
5819
5881
  source: "Last run: @time",
5820
5882
  translation: ""
@@ -5823,12 +5885,16 @@ const analyzeMoreLink$1 = {
5823
5885
  source: "More",
5824
5886
  translation: ""
5825
5887
  };
5826
- const analyzeSidebarTitle$1 = {
5827
- source: "Analyze",
5888
+ const analyzeNotAvailableInStructureView$1 = {
5889
+ source: "Analyze is not available in structure view.",
5828
5890
  translation: ""
5829
5891
  };
5830
- const analyzeStaleMessage$1 = {
5831
- source: "The contents of the page have changed since last analyzing the page. Please run the analyzers again to get updated results.",
5892
+ const analyzeResultsOutdated$1 = {
5893
+ source: "Results are outdated. Click the button to update.",
5894
+ translation: ""
5895
+ };
5896
+ const analyzeSidebarTitle$1 = {
5897
+ source: "Analyze",
5832
5898
  translation: ""
5833
5899
  };
5834
5900
  const analyzeStatusInapplicable$1 = {
@@ -5843,6 +5909,14 @@ const analyzeStatusPass$1 = {
5843
5909
  source: "Pass",
5844
5910
  translation: ""
5845
5911
  };
5912
+ const analyzeStatusStale$1 = {
5913
+ source: "Stale",
5914
+ translation: ""
5915
+ };
5916
+ const analyzeStatusUpToDate$1 = {
5917
+ source: "Up-to-date",
5918
+ translation: ""
5919
+ };
5846
5920
  const analyzeStatusViolation$1 = {
5847
5921
  source: "Violation",
5848
5922
  translation: ""
@@ -5979,6 +6053,10 @@ const blockAddListTourTitle$1 = {
5979
6053
  source: "Favorite blocks",
5980
6054
  translation: ""
5981
6055
  };
6056
+ const blockNotImplemented$1 = {
6057
+ source: "Missing component for block bundle <strong>@bundle</strong>.",
6058
+ translation: ""
6059
+ };
5982
6060
  const blockOption_bkHiddenGlobally_description$1 = {
5983
6061
  source: "Always hides the block.",
5984
6062
  translation: ""
@@ -6075,6 +6153,14 @@ const clipboardPasteErrorAllowedBundlesSingle$1 = {
6075
6153
  source: "Block type \"@types\" is not allowed here.",
6076
6154
  translation: ""
6077
6155
  };
6156
+ const clipboardPasteErrorAllowedFragmentsMultiple$1 = {
6157
+ source: "Fragments (@types) are not allowed here.",
6158
+ translation: ""
6159
+ };
6160
+ const clipboardPasteErrorAllowedFragmentsSingle$1 = {
6161
+ source: "Fragment \"@types\" is not allowed here.",
6162
+ translation: ""
6163
+ };
6078
6164
  const clipboardPasteErrorCardinality$1 = {
6079
6165
  source: "This field only allows up to @count blocks.",
6080
6166
  translation: ""
@@ -6907,6 +6993,10 @@ const optionBkVisibleLanguagesAll$1 = {
6907
6993
  source: "All languages",
6908
6994
  translation: ""
6909
6995
  };
6996
+ const overlayDoubleClickInfo$1 = {
6997
+ source: "<strong>Double click</strong> to close overlay",
6998
+ translation: ""
6999
+ };
6910
7000
  const ownershipError$1 = {
6911
7001
  source: "Error in assigning",
6912
7002
  translation: "Errore nell'assegnazione"
@@ -7395,10 +7485,14 @@ const transformDialogButtonApply$1 = {
7395
7485
  source: "Apply changes",
7396
7486
  translation: ""
7397
7487
  };
7398
- const transformDialogButtonPreview$1 = {
7488
+ const transformDialogButtonNewSuggestion$1 = {
7399
7489
  source: "New suggestion",
7400
7490
  translation: ""
7401
7491
  };
7492
+ const transformDialogButtonPreview$1 = {
7493
+ source: "Preview",
7494
+ translation: ""
7495
+ };
7402
7496
  const translationsBannerButton$1 = {
7403
7497
  source: "Edit source language instead",
7404
7498
  translation: ""
@@ -7492,13 +7586,17 @@ const it = {
7492
7586
  analyzeCategoryContent: analyzeCategoryContent$1,
7493
7587
  analyzeCategorySeo: analyzeCategorySeo$1,
7494
7588
  analyzeCategoryText: analyzeCategoryText$1,
7589
+ analyzeClickButton: analyzeClickButton$1,
7495
7590
  analyzeLastRun: analyzeLastRun$1,
7496
7591
  analyzeMoreLink: analyzeMoreLink$1,
7592
+ analyzeNotAvailableInStructureView: analyzeNotAvailableInStructureView$1,
7593
+ analyzeResultsOutdated: analyzeResultsOutdated$1,
7497
7594
  analyzeSidebarTitle: analyzeSidebarTitle$1,
7498
- analyzeStaleMessage: analyzeStaleMessage$1,
7499
7595
  analyzeStatusInapplicable: analyzeStatusInapplicable$1,
7500
7596
  analyzeStatusIncomplete: analyzeStatusIncomplete$1,
7501
7597
  analyzeStatusPass: analyzeStatusPass$1,
7598
+ analyzeStatusStale: analyzeStatusStale$1,
7599
+ analyzeStatusUpToDate: analyzeStatusUpToDate$1,
7502
7600
  analyzeStatusViolation: analyzeStatusViolation$1,
7503
7601
  analyzeTourText: analyzeTourText$1,
7504
7602
  analyzerReadabiliyAverageSentenceLength: analyzerReadabiliyAverageSentenceLength$1,
@@ -7533,6 +7631,7 @@ const it = {
7533
7631
  assistantPromptPlaceholder: assistantPromptPlaceholder$1,
7534
7632
  blockAddListTourText: blockAddListTourText$1,
7535
7633
  blockAddListTourTitle: blockAddListTourTitle$1,
7634
+ blockNotImplemented: blockNotImplemented$1,
7536
7635
  blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$1,
7537
7636
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$1,
7538
7637
  blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$1,
@@ -7557,6 +7656,8 @@ const it = {
7557
7656
  clipboardPasteError: clipboardPasteError$1,
7558
7657
  clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$1,
7559
7658
  clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$1,
7659
+ clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$1,
7660
+ clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$1,
7560
7661
  clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$1,
7561
7662
  clipboardPasteErrorOneField: clipboardPasteErrorOneField$1,
7562
7663
  clipboardPastePlaceholder: clipboardPastePlaceholder$1,
@@ -7654,22 +7755,6 @@ const it = {
7654
7755
  "feature_add-list_setting_hideDisabledBlocks_label": {
7655
7756
  source: "Hide blocks that can't be added",
7656
7757
  translation: ""
7657
- },
7658
- "feature_add-list_setting_orientation_label": {
7659
- source: "Add List",
7660
- translation: "Elenco di aggiunta"
7661
- },
7662
- "feature_add-list_setting_orientation_option_horizontal": {
7663
- source: "Horizontal",
7664
- translation: "Orizzontale"
7665
- },
7666
- "feature_add-list_setting_orientation_option_sidebar": {
7667
- source: "Sidebar",
7668
- translation: "Barra laterale"
7669
- },
7670
- "feature_add-list_setting_orientation_option_vertical": {
7671
- source: "Vertical",
7672
- translation: "Verticale"
7673
7758
  },
7674
7759
  feature_analyze_description: feature_analyze_description$1,
7675
7760
  feature_analyze_label: feature_analyze_label$1,
@@ -7945,6 +8030,7 @@ const it = {
7945
8030
  source: "Unselect \"@value\" in \"@option\"",
7946
8031
  translation: ""
7947
8032
  },
8033
+ overlayDoubleClickInfo: overlayDoubleClickInfo$1,
7948
8034
  ownershipError: ownershipError$1,
7949
8035
  ownershipNote: ownershipNote$1,
7950
8036
  ownershipSuccess: ownershipSuccess$1,
@@ -8075,6 +8161,7 @@ const it = {
8075
8161
  tourPrev: tourPrev$1,
8076
8162
  tourStartButton: tourStartButton$1,
8077
8163
  transformDialogButtonApply: transformDialogButtonApply$1,
8164
+ transformDialogButtonNewSuggestion: transformDialogButtonNewSuggestion$1,
8078
8165
  transformDialogButtonPreview: transformDialogButtonPreview$1,
8079
8166
  translationsBannerButton: translationsBannerButton$1,
8080
8167
  translationsBannerText: translationsBannerText$1,
@@ -8173,6 +8260,10 @@ const analyzeCategoryText = {
8173
8260
  source: "Text",
8174
8261
  translation: "Teggscht"
8175
8262
  };
8263
+ const analyzeClickButton = {
8264
+ source: "Click the button above to run the analysis.",
8265
+ translation: ""
8266
+ };
8176
8267
  const analyzeLastRun = {
8177
8268
  source: "Last run: @time",
8178
8269
  translation: "Zletscht usgfüehrt: @time"
@@ -8181,14 +8272,18 @@ const analyzeMoreLink = {
8181
8272
  source: "More",
8182
8273
  translation: "Meh"
8183
8274
  };
8275
+ const analyzeNotAvailableInStructureView = {
8276
+ source: "Analyze is not available in structure view.",
8277
+ translation: ""
8278
+ };
8279
+ const analyzeResultsOutdated = {
8280
+ source: "Results are outdated. Click the button to update.",
8281
+ translation: ""
8282
+ };
8184
8283
  const analyzeSidebarTitle = {
8185
8284
  source: "Analyze",
8186
8285
  translation: "Analysiere"
8187
8286
  };
8188
- const analyzeStaleMessage = {
8189
- source: "The contents of the page have changed since last analyzing the page. Please run the analyzers again to get updated results.",
8190
- translation: "Dr Inhalt vo dr Sitte het sich gänderet sit dr letschte Analyse. Bitte füehr d'Analyse nomol uus zum aktualisierti Resultät z'übercho."
8191
- };
8192
8287
  const analyzeStatusInapplicable = {
8193
8288
  source: "Inapplicable",
8194
8289
  translation: "Nid zuetreffe"
@@ -8201,6 +8296,14 @@ const analyzeStatusPass = {
8201
8296
  source: "Pass",
8202
8297
  translation: "I Ornig"
8203
8298
  };
8299
+ const analyzeStatusStale = {
8300
+ source: "Stale",
8301
+ translation: ""
8302
+ };
8303
+ const analyzeStatusUpToDate = {
8304
+ source: "Up-to-date",
8305
+ translation: ""
8306
+ };
8204
8307
  const analyzeStatusViolation = {
8205
8308
  source: "Violation",
8206
8309
  translation: "Verstoss"
@@ -8337,6 +8440,10 @@ const blockAddListTourTitle = {
8337
8440
  source: "Favorite blocks",
8338
8441
  translation: "Lieblingsblöck"
8339
8442
  };
8443
+ const blockNotImplemented = {
8444
+ source: "Missing component for block bundle <strong>@bundle</strong>.",
8445
+ translation: ""
8446
+ };
8340
8447
  const blockOption_bkHiddenGlobally_description = {
8341
8448
  source: "Always hides the block.",
8342
8449
  translation: ""
@@ -8433,6 +8540,14 @@ const clipboardPasteErrorAllowedBundlesSingle = {
8433
8540
  source: "Block type \"@types\" is not allowed here.",
8434
8541
  translation: "Block-Typ «@types» isch do nid erlaubt."
8435
8542
  };
8543
+ const clipboardPasteErrorAllowedFragmentsMultiple = {
8544
+ source: "Fragments (@types) are not allowed here.",
8545
+ translation: ""
8546
+ };
8547
+ const clipboardPasteErrorAllowedFragmentsSingle = {
8548
+ source: "Fragment \"@types\" is not allowed here.",
8549
+ translation: ""
8550
+ };
8436
8551
  const clipboardPasteErrorCardinality = {
8437
8552
  source: "This field only allows up to @count blocks.",
8438
8553
  translation: "In däm Fäld sin maximal @count Blöck erlaubt."
@@ -9265,6 +9380,10 @@ const optionBkVisibleLanguagesAll = {
9265
9380
  source: "All languages",
9266
9381
  translation: "Alli Sproche"
9267
9382
  };
9383
+ const overlayDoubleClickInfo = {
9384
+ source: "<strong>Double click</strong> to close overlay",
9385
+ translation: ""
9386
+ };
9268
9387
  const ownershipError = {
9269
9388
  source: "Error in assigning",
9270
9389
  translation: "Fähler bim Zuewiise"
@@ -9753,8 +9872,12 @@ const transformDialogButtonApply = {
9753
9872
  source: "Apply changes",
9754
9873
  translation: "Aawände"
9755
9874
  };
9756
- const transformDialogButtonPreview = {
9875
+ const transformDialogButtonNewSuggestion = {
9757
9876
  source: "New suggestion",
9877
+ translation: ""
9878
+ };
9879
+ const transformDialogButtonPreview = {
9880
+ source: "Preview",
9758
9881
  translation: "Vorschau"
9759
9882
  };
9760
9883
  const translationsBannerButton = {
@@ -9850,13 +9973,17 @@ const gsw_CH = {
9850
9973
  analyzeCategoryContent: analyzeCategoryContent,
9851
9974
  analyzeCategorySeo: analyzeCategorySeo,
9852
9975
  analyzeCategoryText: analyzeCategoryText,
9976
+ analyzeClickButton: analyzeClickButton,
9853
9977
  analyzeLastRun: analyzeLastRun,
9854
9978
  analyzeMoreLink: analyzeMoreLink,
9979
+ analyzeNotAvailableInStructureView: analyzeNotAvailableInStructureView,
9980
+ analyzeResultsOutdated: analyzeResultsOutdated,
9855
9981
  analyzeSidebarTitle: analyzeSidebarTitle,
9856
- analyzeStaleMessage: analyzeStaleMessage,
9857
9982
  analyzeStatusInapplicable: analyzeStatusInapplicable,
9858
9983
  analyzeStatusIncomplete: analyzeStatusIncomplete,
9859
9984
  analyzeStatusPass: analyzeStatusPass,
9985
+ analyzeStatusStale: analyzeStatusStale,
9986
+ analyzeStatusUpToDate: analyzeStatusUpToDate,
9860
9987
  analyzeStatusViolation: analyzeStatusViolation,
9861
9988
  analyzeTourText: analyzeTourText,
9862
9989
  analyzerReadabiliyAverageSentenceLength: analyzerReadabiliyAverageSentenceLength,
@@ -9891,6 +10018,7 @@ const gsw_CH = {
9891
10018
  assistantPromptPlaceholder: assistantPromptPlaceholder,
9892
10019
  blockAddListTourText: blockAddListTourText,
9893
10020
  blockAddListTourTitle: blockAddListTourTitle,
10021
+ blockNotImplemented: blockNotImplemented,
9894
10022
  blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description,
9895
10023
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label,
9896
10024
  blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description,
@@ -9915,6 +10043,8 @@ const gsw_CH = {
9915
10043
  clipboardPasteError: clipboardPasteError,
9916
10044
  clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple,
9917
10045
  clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle,
10046
+ clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple,
10047
+ clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle,
9918
10048
  clipboardPasteErrorCardinality: clipboardPasteErrorCardinality,
9919
10049
  clipboardPasteErrorOneField: clipboardPasteErrorOneField,
9920
10050
  clipboardPastePlaceholder: clipboardPastePlaceholder,
@@ -10012,22 +10142,6 @@ const gsw_CH = {
10012
10142
  "feature_add-list_setting_hideDisabledBlocks_label": {
10013
10143
  source: "Hide blocks that can't be added",
10014
10144
  translation: ""
10015
- },
10016
- "feature_add-list_setting_orientation_label": {
10017
- source: "Add List",
10018
- translation: "Block-Leischte"
10019
- },
10020
- "feature_add-list_setting_orientation_option_horizontal": {
10021
- source: "Horizontal",
10022
- translation: "Horizontal"
10023
- },
10024
- "feature_add-list_setting_orientation_option_sidebar": {
10025
- source: "Sidebar",
10026
- translation: "Sitteleischte"
10027
- },
10028
- "feature_add-list_setting_orientation_option_vertical": {
10029
- source: "Vertical",
10030
- translation: "Vertikal"
10031
10145
  },
10032
10146
  feature_analyze_description: feature_analyze_description,
10033
10147
  feature_analyze_label: feature_analyze_label,
@@ -10303,6 +10417,7 @@ const gsw_CH = {
10303
10417
  source: "Unselect \"@value\" in \"@option\"",
10304
10418
  translation: "«@value» in «@option» abwähle"
10305
10419
  },
10420
+ overlayDoubleClickInfo: overlayDoubleClickInfo,
10306
10421
  ownershipError: ownershipError,
10307
10422
  ownershipNote: ownershipNote,
10308
10423
  ownershipSuccess: ownershipSuccess,
@@ -10433,6 +10548,7 @@ const gsw_CH = {
10433
10548
  tourPrev: tourPrev,
10434
10549
  tourStartButton: tourStartButton,
10435
10550
  transformDialogButtonApply: transformDialogButtonApply,
10551
+ transformDialogButtonNewSuggestion: transformDialogButtonNewSuggestion,
10436
10552
  transformDialogButtonPreview: transformDialogButtonPreview,
10437
10553
  translationsBannerButton: translationsBannerButton,
10438
10554
  translationsBannerText: translationsBannerText,
@@ -12057,6 +12173,49 @@ export declare const ${chunkName}: Record<string, { loadComponent: () => Promise
12057
12173
  });
12058
12174
  });
12059
12175
 
12176
+ const chunkEditing = defineCodeTemplate(
12177
+ "chunk-editing",
12178
+ (ctx) => {
12179
+ const imports = [];
12180
+ const map = /* @__PURE__ */ new Map();
12181
+ for (const file of ctx.blocks.files.values()) {
12182
+ if (!file.definition) {
12183
+ continue;
12184
+ }
12185
+ if (file.type === "provider") {
12186
+ continue;
12187
+ }
12188
+ if (!fs.existsSync(file.filePath)) {
12189
+ continue;
12190
+ }
12191
+ imports.push(`import ${file.identifier} from '${file.filePath}'`);
12192
+ file.variations.forEach((variation) => {
12193
+ map.set(variation, file.identifier);
12194
+ });
12195
+ }
12196
+ return `
12197
+ ${imports.sort().join("\n")}
12198
+
12199
+ ${toObject("allComponents", map)}
12200
+ `;
12201
+ },
12202
+ () => {
12203
+ return `
12204
+ import type { Component } from 'vue'
12205
+
12206
+ /**
12207
+ * A map of block import identifier and block component.
12208
+ *
12209
+ * This should ONLY be imported in editor code, since it imports ALL block components.
12210
+ */
12211
+ export declare const allComponents: Record<string, Component>
12212
+ `;
12213
+ },
12214
+ {
12215
+ dependencies: ["block-path", "block-content"]
12216
+ }
12217
+ );
12218
+
12060
12219
  const TEMPLATES = [
12061
12220
  icons,
12062
12221
  features,
@@ -12073,7 +12232,8 @@ const TEMPLATES = [
12073
12232
  defaultGlobalOptions,
12074
12233
  imports,
12075
12234
  optionsSchema,
12076
- chunkGroup
12235
+ chunkGroup,
12236
+ chunkEditing
12077
12237
  ];
12078
12238
 
12079
12239
  class CollectedFeatureFile extends CollectedFile {