@blokkli/editor 2.0.0-alpha.45 → 2.0.0-alpha.47

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 (87) hide show
  1. package/dist/module.d.mts +2 -2
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +23 -1
  4. package/dist/modules/agent/index.d.mts +1 -1
  5. package/dist/modules/agent/runtime/app/helpers/validation.d.ts +13 -0
  6. package/dist/modules/agent/runtime/app/helpers/validation.js +22 -0
  7. package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.js +12 -0
  8. package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +12 -1
  9. package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +12 -0
  10. package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +10 -0
  11. package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +12 -0
  12. package/dist/modules/agent/runtime/app/tools/add_template/index.js +5 -0
  13. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +15 -0
  14. package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +12 -0
  15. package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +12 -0
  16. package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +16 -1
  17. package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +17 -0
  18. package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +11 -0
  19. package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +8 -0
  20. package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +10 -0
  21. package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +10 -0
  22. package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +15 -0
  23. package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +21 -1
  24. package/dist/modules/agent/runtime/app/types/index.d.ts +6 -6
  25. package/dist/modules/charts/index.d.mts +1 -1
  26. package/dist/modules/drupal/index.d.mts +1 -1
  27. package/dist/modules/drupal/index.mjs +2 -1
  28. package/dist/modules/drupal/runtime/adapter/index.js +15 -3
  29. package/dist/modules/table-of-contents/index.d.mts +1 -1
  30. package/dist/runtime/editor/components/Actions/index.vue +47 -2
  31. package/dist/runtime/editor/components/AnimationCanvas/index.vue +6 -3
  32. package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +8 -4
  33. package/dist/runtime/editor/components/BundleSelector/index.vue +111 -13
  34. package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +8 -4
  35. package/dist/runtime/editor/components/EditProvider.vue +2 -2
  36. package/dist/runtime/editor/components/FlexTextarea/index.vue +227 -11
  37. package/dist/runtime/editor/css/output.css +1 -1
  38. package/dist/runtime/editor/features/add-list/Blocks/index.vue +6 -3
  39. package/dist/runtime/editor/features/analyze/Renderer/index.vue +1 -1
  40. package/dist/runtime/editor/features/block-scheduler/index.vue +7 -1
  41. package/dist/runtime/editor/features/changelog/Dialog/index.d.vue.ts +7 -0
  42. package/dist/runtime/editor/features/changelog/Dialog/index.vue +43 -0
  43. package/dist/runtime/editor/features/changelog/Dialog/index.vue.d.ts +7 -0
  44. package/dist/runtime/editor/features/changelog/changelog.json +50 -0
  45. package/dist/runtime/editor/features/changelog/index.d.vue.ts +3 -0
  46. package/dist/runtime/editor/features/changelog/index.vue +56 -0
  47. package/dist/runtime/editor/features/changelog/index.vue.d.ts +3 -0
  48. package/dist/runtime/editor/features/clipboard/index.vue +6 -1
  49. package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +2 -2
  50. package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +2 -2
  51. package/dist/runtime/editor/features/delete/index.vue +17 -2
  52. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +12 -2
  53. package/dist/runtime/editor/features/dragging-overlay/index.vue +5 -2
  54. package/dist/runtime/editor/features/duplicate/index.vue +23 -7
  55. package/dist/runtime/editor/features/edit/index.vue +29 -8
  56. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +0 -1
  57. package/dist/runtime/editor/features/editable-field/index.vue +15 -1
  58. package/dist/runtime/editor/features/fragments/index.vue +5 -2
  59. package/dist/runtime/editor/features/hover/Renderer/index.vue +19 -6
  60. package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +5 -2
  61. package/dist/runtime/editor/features/library/index.vue +52 -8
  62. package/dist/runtime/editor/features/media-library/index.vue +7 -2
  63. package/dist/runtime/editor/features/multi-select/Renderer/index.vue +4 -1
  64. package/dist/runtime/editor/features/search/index.vue +7 -2
  65. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +1 -1
  66. package/dist/runtime/editor/features/selection/AddButtons/index.vue +26 -2
  67. package/dist/runtime/editor/features/selection/Renderer/index.vue +23 -5
  68. package/dist/runtime/editor/features/selection/Renderer/vertex.glsl +5 -2
  69. package/dist/runtime/editor/features/selection/index.vue +17 -5
  70. package/dist/runtime/editor/features/translations/index.vue +17 -11
  71. package/dist/runtime/editor/helpers/dropTargets/index.d.ts +1 -1
  72. package/dist/runtime/editor/helpers/dropTargets/index.js +2 -2
  73. package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +4 -1
  74. package/dist/runtime/editor/plugins/ItemAction/index.vue +9 -3
  75. package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +4 -1
  76. package/dist/runtime/editor/providers/permissions.d.ts +22 -1
  77. package/dist/runtime/editor/providers/permissions.js +99 -3
  78. package/dist/runtime/editor/providers/selection.d.ts +2 -1
  79. package/dist/runtime/editor/providers/selection.js +10 -5
  80. package/dist/runtime/editor/translations/de.json +109 -1
  81. package/dist/runtime/editor/translations/fr.json +109 -1
  82. package/dist/runtime/editor/translations/gsw_CH.json +109 -1
  83. package/dist/runtime/editor/translations/it.json +109 -1
  84. package/dist/runtime/editor/types/definitions.d.ts +2 -0
  85. package/dist/shared/{editor.BdBm1Z7C.d.mts → editor.BVregnEC.d.mts} +24 -0
  86. package/dist/types.d.mts +1 -1
  87. package/package.json +2 -1
@@ -1175,10 +1175,30 @@
1175
1175
  "source": "Bundle",
1176
1176
  "translation": ""
1177
1177
  },
1178
+ "bundleSelectorActionsLabel": {
1179
+ "source": "Actions",
1180
+ "translation": ""
1181
+ },
1182
+ "bundleSelectorFragmentsLabel": {
1183
+ "source": "Fragments",
1184
+ "translation": ""
1185
+ },
1178
1186
  "cancelSelection": {
1179
1187
  "source": "Cancel selection",
1180
1188
  "translation": "Uswahl abbräche"
1181
1189
  },
1190
+ "changelogDialogTitle": {
1191
+ "source": "What's New",
1192
+ "translation": ""
1193
+ },
1194
+ "changelogMenuDescription": {
1195
+ "source": "View recent changes and new features",
1196
+ "translation": ""
1197
+ },
1198
+ "changelogMenuTitle": {
1199
+ "source": "What's New",
1200
+ "translation": ""
1201
+ },
1182
1202
  "chartsAddColumn": {
1183
1203
  "source": "Add column",
1184
1204
  "translation": ""
@@ -1535,6 +1555,10 @@
1535
1555
  "source": "The block could not be deleted.",
1536
1556
  "translation": "S'Elemänt het nid chönne entfärnt wärde. "
1537
1557
  },
1558
+ "deleteNoPermission": {
1559
+ "source": "You do not have permission to delete this block.",
1560
+ "translation": ""
1561
+ },
1538
1562
  "diffAfter": {
1539
1563
  "source": "After",
1540
1564
  "translation": "Nochhär"
@@ -1599,10 +1623,26 @@
1599
1623
  "source": "The items could not be duplicated.",
1600
1624
  "translation": "D'Elemänt hän nid chönne dupliziert wärde. "
1601
1625
  },
1626
+ "duplicateFieldFull": {
1627
+ "source": "The field has reached its maximum number of blocks.",
1628
+ "translation": ""
1629
+ },
1630
+ "duplicateNoPermission": {
1631
+ "source": "You do not have permission to duplicate this block.",
1632
+ "translation": ""
1633
+ },
1634
+ "duplicateNotAllowed": {
1635
+ "source": "This block type is not allowed in this field.",
1636
+ "translation": ""
1637
+ },
1602
1638
  "edit": {
1603
- "source": "Edit...",
1639
+ "source": "Edit",
1604
1640
  "translation": "Bearbeite"
1605
1641
  },
1642
+ "editDisabledByDefinition": {
1643
+ "source": "Editing is disabled for this block type.",
1644
+ "translation": ""
1645
+ },
1606
1646
  "editFormBlockAdd": {
1607
1647
  "source": "Add @label",
1608
1648
  "translation": "@label drzuefüege"
@@ -1623,6 +1663,10 @@
1623
1663
  "source": "Translate \"@label\" (@language)",
1624
1664
  "translation": "\"@label\" übersetze (@language)"
1625
1665
  },
1666
+ "editFragmentNotEditable": {
1667
+ "source": "This fragment cannot be edited.",
1668
+ "translation": ""
1669
+ },
1626
1670
  "editIndicatorLabel": {
1627
1671
  "source": "Edit blocks",
1628
1672
  "translation": "Elemänt bearbeite"
@@ -1635,6 +1679,18 @@
1635
1679
  "source": "View changes",
1636
1680
  "translation": ""
1637
1681
  },
1682
+ "editLibraryNotAvailable": {
1683
+ "source": "This reusable block cannot be edited right now.",
1684
+ "translation": ""
1685
+ },
1686
+ "editNoLibraryPermission": {
1687
+ "source": "You do not have permission to edit library items.",
1688
+ "translation": ""
1689
+ },
1690
+ "editNoPermission": {
1691
+ "source": "You do not have permission to edit this block.",
1692
+ "translation": ""
1693
+ },
1638
1694
  "editableCommandEdit": {
1639
1695
  "source": "Edit field \"@name\"",
1640
1696
  "translation": "Fäld «@name» bearbeite"
@@ -1787,6 +1843,14 @@
1787
1843
  "source": "Breadcrumbs",
1788
1844
  "translation": ""
1789
1845
  },
1846
+ "feature_changelog_description": {
1847
+ "source": "Provides a menu button to display a changelog of what's new.",
1848
+ "translation": ""
1849
+ },
1850
+ "feature_changelog_label": {
1851
+ "source": "Changelog",
1852
+ "translation": ""
1853
+ },
1790
1854
  "feature_charts_description": {
1791
1855
  "source": "Add and edit interactive charts.",
1792
1856
  "translation": ""
@@ -2339,10 +2403,30 @@
2339
2403
  "source": "From library",
2340
2404
  "translation": "Us dr Bibliothek drzuefüege"
2341
2405
  },
2406
+ "libraryAddNoEditPermission": {
2407
+ "source": "You do not have permission to edit this block.",
2408
+ "translation": ""
2409
+ },
2410
+ "libraryAddNoPermission": {
2411
+ "source": "You do not have permission to create library items.",
2412
+ "translation": ""
2413
+ },
2414
+ "libraryAddNotAllowedInField": {
2415
+ "source": "Reusable blocks are not allowed in this field.",
2416
+ "translation": ""
2417
+ },
2418
+ "libraryAddNotSupported": {
2419
+ "source": "This block type cannot be made reusable.",
2420
+ "translation": ""
2421
+ },
2342
2422
  "libraryDetach": {
2343
2423
  "source": "Detach from library",
2344
2424
  "translation": "Von der Bibliothek loslöse"
2345
2425
  },
2426
+ "libraryDetachNoPermission": {
2427
+ "source": "You do not have permission to detach this block.",
2428
+ "translation": ""
2429
+ },
2346
2430
  "libraryDialogDescriptionLabel": {
2347
2431
  "source": "Description",
2348
2432
  "translation": "Beschriibig"
@@ -2795,6 +2879,14 @@
2795
2879
  "source": "See how your changes look like on smaller screens, such as smartphones. Click on the \"detach\" button to be able to select additional viewport sizes.",
2796
2880
  "translation": "Lueg wie dini Änderige uf chliinere Bildschirm usgsähn, wie z.B. Smartphones. Klick uf dr «Ablöse»-Button zum zusätzlichi Viewport-Grösse uswähle z'chönne."
2797
2881
  },
2882
+ "restrictedPermissionsAll": {
2883
+ "source": "Some actions are not available due to missing permissions.",
2884
+ "translation": ""
2885
+ },
2886
+ "restrictedPermissionsSome": {
2887
+ "source": "Some actions are restricted due to missing permissions.",
2888
+ "translation": ""
2889
+ },
2798
2890
  "revertDialogLead": {
2799
2891
  "source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
2800
2892
  "translation": "Alli Änderige wärde glöscht und dr jetzt publizierti Zuestand wird wider härgstellt. Die Aktion chame nid rückgängig mache. "
@@ -2827,6 +2919,10 @@
2827
2919
  "source": "The changes will be published on this date.",
2828
2920
  "translation": ""
2829
2921
  },
2922
+ "schedulerNotSupported": {
2923
+ "source": "Scheduling is not available for this block type.",
2924
+ "translation": ""
2925
+ },
2830
2926
  "searchBoxNoResultsFound": {
2831
2927
  "source": "No results found",
2832
2928
  "translation": "Keini Resultat gfunde"
@@ -3159,6 +3255,18 @@
3159
3255
  "source": "Preview",
3160
3256
  "translation": "Vorschau"
3161
3257
  },
3258
+ "translateEditDisabled": {
3259
+ "source": "Editing is disabled for this block type.",
3260
+ "translation": ""
3261
+ },
3262
+ "translateLibraryBlock": {
3263
+ "source": "Reusable blocks cannot be translated here.",
3264
+ "translation": ""
3265
+ },
3266
+ "translateNotTranslatable": {
3267
+ "source": "This block type is not translatable.",
3268
+ "translation": ""
3269
+ },
3162
3270
  "translationsBannerButton": {
3163
3271
  "source": "Edit source language instead",
3164
3272
  "translation": "Stattdässe Quellsproch bearbeite"
@@ -1175,10 +1175,30 @@
1175
1175
  "source": "Bundle",
1176
1176
  "translation": ""
1177
1177
  },
1178
+ "bundleSelectorActionsLabel": {
1179
+ "source": "Actions",
1180
+ "translation": ""
1181
+ },
1182
+ "bundleSelectorFragmentsLabel": {
1183
+ "source": "Fragments",
1184
+ "translation": ""
1185
+ },
1178
1186
  "cancelSelection": {
1179
1187
  "source": "Cancel selection",
1180
1188
  "translation": ""
1181
1189
  },
1190
+ "changelogDialogTitle": {
1191
+ "source": "What's New",
1192
+ "translation": ""
1193
+ },
1194
+ "changelogMenuDescription": {
1195
+ "source": "View recent changes and new features",
1196
+ "translation": ""
1197
+ },
1198
+ "changelogMenuTitle": {
1199
+ "source": "What's New",
1200
+ "translation": ""
1201
+ },
1182
1202
  "chartsAddColumn": {
1183
1203
  "source": "Add column",
1184
1204
  "translation": ""
@@ -1535,6 +1555,10 @@
1535
1555
  "source": "The block could not be deleted.",
1536
1556
  "translation": "L'elemento non può essere rimosso."
1537
1557
  },
1558
+ "deleteNoPermission": {
1559
+ "source": "You do not have permission to delete this block.",
1560
+ "translation": ""
1561
+ },
1538
1562
  "diffAfter": {
1539
1563
  "source": "After",
1540
1564
  "translation": ""
@@ -1599,10 +1623,26 @@
1599
1623
  "source": "The items could not be duplicated.",
1600
1624
  "translation": "Gli elementi non possono essere duplicati."
1601
1625
  },
1626
+ "duplicateFieldFull": {
1627
+ "source": "The field has reached its maximum number of blocks.",
1628
+ "translation": ""
1629
+ },
1630
+ "duplicateNoPermission": {
1631
+ "source": "You do not have permission to duplicate this block.",
1632
+ "translation": ""
1633
+ },
1634
+ "duplicateNotAllowed": {
1635
+ "source": "This block type is not allowed in this field.",
1636
+ "translation": ""
1637
+ },
1602
1638
  "edit": {
1603
- "source": "Edit...",
1639
+ "source": "Edit",
1604
1640
  "translation": "Modifica"
1605
1641
  },
1642
+ "editDisabledByDefinition": {
1643
+ "source": "Editing is disabled for this block type.",
1644
+ "translation": ""
1645
+ },
1606
1646
  "editFormBlockAdd": {
1607
1647
  "source": "Add @label",
1608
1648
  "translation": ""
@@ -1623,6 +1663,10 @@
1623
1663
  "source": "Translate \"@label\" (@language)",
1624
1664
  "translation": ""
1625
1665
  },
1666
+ "editFragmentNotEditable": {
1667
+ "source": "This fragment cannot be edited.",
1668
+ "translation": ""
1669
+ },
1626
1670
  "editIndicatorLabel": {
1627
1671
  "source": "Edit blocks",
1628
1672
  "translation": "Modifica elementi"
@@ -1635,6 +1679,18 @@
1635
1679
  "source": "View changes",
1636
1680
  "translation": ""
1637
1681
  },
1682
+ "editLibraryNotAvailable": {
1683
+ "source": "This reusable block cannot be edited right now.",
1684
+ "translation": ""
1685
+ },
1686
+ "editNoLibraryPermission": {
1687
+ "source": "You do not have permission to edit library items.",
1688
+ "translation": ""
1689
+ },
1690
+ "editNoPermission": {
1691
+ "source": "You do not have permission to edit this block.",
1692
+ "translation": ""
1693
+ },
1638
1694
  "editableCommandEdit": {
1639
1695
  "source": "Edit field \"@name\"",
1640
1696
  "translation": ""
@@ -1787,6 +1843,14 @@
1787
1843
  "source": "Breadcrumbs",
1788
1844
  "translation": ""
1789
1845
  },
1846
+ "feature_changelog_description": {
1847
+ "source": "Provides a menu button to display a changelog of what's new.",
1848
+ "translation": ""
1849
+ },
1850
+ "feature_changelog_label": {
1851
+ "source": "Changelog",
1852
+ "translation": ""
1853
+ },
1790
1854
  "feature_charts_description": {
1791
1855
  "source": "Add and edit interactive charts.",
1792
1856
  "translation": ""
@@ -2339,10 +2403,30 @@
2339
2403
  "source": "From library",
2340
2404
  "translation": ""
2341
2405
  },
2406
+ "libraryAddNoEditPermission": {
2407
+ "source": "You do not have permission to edit this block.",
2408
+ "translation": ""
2409
+ },
2410
+ "libraryAddNoPermission": {
2411
+ "source": "You do not have permission to create library items.",
2412
+ "translation": ""
2413
+ },
2414
+ "libraryAddNotAllowedInField": {
2415
+ "source": "Reusable blocks are not allowed in this field.",
2416
+ "translation": ""
2417
+ },
2418
+ "libraryAddNotSupported": {
2419
+ "source": "This block type cannot be made reusable.",
2420
+ "translation": ""
2421
+ },
2342
2422
  "libraryDetach": {
2343
2423
  "source": "Detach from library",
2344
2424
  "translation": ""
2345
2425
  },
2426
+ "libraryDetachNoPermission": {
2427
+ "source": "You do not have permission to detach this block.",
2428
+ "translation": ""
2429
+ },
2346
2430
  "libraryDialogDescriptionLabel": {
2347
2431
  "source": "Description",
2348
2432
  "translation": "Descrizione"
@@ -2795,6 +2879,14 @@
2795
2879
  "source": "See how your changes look like on smaller screens, such as smartphones. Click on the \"detach\" button to be able to select additional viewport sizes.",
2796
2880
  "translation": ""
2797
2881
  },
2882
+ "restrictedPermissionsAll": {
2883
+ "source": "Some actions are not available due to missing permissions.",
2884
+ "translation": ""
2885
+ },
2886
+ "restrictedPermissionsSome": {
2887
+ "source": "Some actions are restricted due to missing permissions.",
2888
+ "translation": ""
2889
+ },
2798
2890
  "revertDialogLead": {
2799
2891
  "source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
2800
2892
  "translation": "Questo eliminerà tutte le modifiche e ripristinerà lo stato attualmente pubblicato. Questa azione non può essere annullata."
@@ -2827,6 +2919,10 @@
2827
2919
  "source": "The changes will be published on this date.",
2828
2920
  "translation": ""
2829
2921
  },
2922
+ "schedulerNotSupported": {
2923
+ "source": "Scheduling is not available for this block type.",
2924
+ "translation": ""
2925
+ },
2830
2926
  "searchBoxNoResultsFound": {
2831
2927
  "source": "No results found",
2832
2928
  "translation": "Nessun risultato trovato"
@@ -3159,6 +3255,18 @@
3159
3255
  "source": "Preview",
3160
3256
  "translation": ""
3161
3257
  },
3258
+ "translateEditDisabled": {
3259
+ "source": "Editing is disabled for this block type.",
3260
+ "translation": ""
3261
+ },
3262
+ "translateLibraryBlock": {
3263
+ "source": "Reusable blocks cannot be translated here.",
3264
+ "translation": ""
3265
+ },
3266
+ "translateNotTranslatable": {
3267
+ "source": "This block type is not translatable.",
3268
+ "translation": ""
3269
+ },
3162
3270
  "translationsBannerButton": {
3163
3271
  "source": "Edit source language instead",
3164
3272
  "translation": ""
@@ -1,3 +1,4 @@
1
+ export type BlockPermission = 'add' | 'delete' | 'edit';
1
2
  export interface BlockBundleDefinition {
2
3
  id: string;
3
4
  label: string;
@@ -7,6 +8,7 @@ export interface BlockBundleDefinition {
7
8
  isTranslatable?: boolean;
8
9
  hasPublishOn?: boolean;
9
10
  hasUnpublishOn?: boolean;
11
+ permissions: BlockPermission[];
10
12
  }
11
13
  export type FieldConfig = {
12
14
  name: string;
@@ -235,6 +235,30 @@ type ModuleOptions = {
235
235
  * name including the extension.
236
236
  */
237
237
  schemaOptionsPath?: string;
238
+ /**
239
+ * Configure automatic text replacements when editing plaintext fields.
240
+ *
241
+ * Set to `true` to enable all replacements, `false` to disable all.
242
+ * Or pass an object to enable/disable individual replacements.
243
+ *
244
+ * Defaults to `true` (all replacements enabled).
245
+ */
246
+ textAutoReplace?: boolean | {
247
+ /**
248
+ * Replace straight double quotes ("...") with guillemets («...»).
249
+ *
250
+ * Only active when the interface language is 'de' or 'fr'.
251
+ */
252
+ quotes?: boolean;
253
+ /**
254
+ * Replace three consecutive dots (...) with an ellipsis character (…).
255
+ */
256
+ ellipsis?: boolean;
257
+ /**
258
+ * Replace two consecutive hyphens (--) with an en dash (–).
259
+ */
260
+ enDash?: boolean;
261
+ };
238
262
  /**
239
263
  * Override the feature settings.
240
264
  */
package/dist/types.d.mts CHANGED
@@ -4,6 +4,6 @@ declare module '@nuxt/schema' {
4
4
  interface NuxtHooks extends ModuleHooks {}
5
5
  }
6
6
 
7
- export { type ModuleHooks } from './shared/editor.BdBm1Z7C.mjs'
7
+ export { type ModuleHooks } from './shared/editor.BVregnEC.mjs'
8
8
 
9
9
  export { type ModuleOptions, default } from './module.mjs'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blokkli/editor",
3
- "version": "2.0.0-alpha.45",
3
+ "version": "2.0.0-alpha.47",
4
4
  "description": "Interactive page building experience for Nuxt",
5
5
  "keywords": [
6
6
  "cms",
@@ -88,6 +88,7 @@
88
88
  "dev:start": "npx serve playground/.output/public",
89
89
  "dev:prepare": "PLAYGROUND_MODULE_BUILD=true nuxt-module-build build --stub && PLAYGROUND_MODULE_BUILD=true nuxt-module-build prepare && nuxi prepare playground",
90
90
  "release": "npm run lint && npm run prepack && changelogen --release",
91
+ "changelog": "node ./scripts/changelog/index.cjs",
91
92
  "texts": "node ./scripts/texts/index.cjs",
92
93
  "material-icons": "node ./scripts/material-icons/index.cjs",
93
94
  "lint": "npx oxlint && eslint ./src",