@blokkli/editor 1.2.0 → 1.3.1

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 (63) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1678 -41
  3. package/dist/runtime/adapter/drupal/graphql/base.graphql +14 -3
  4. package/dist/runtime/adapter/drupal/graphql/comments.graphql +6 -1
  5. package/dist/runtime/adapter/drupal/graphql/transform.graphql +10 -2
  6. package/dist/runtime/adapter/drupal/graphqlMiddleware.js +26 -18
  7. package/dist/runtime/adapter/index.d.ts +6 -2
  8. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +4 -1
  9. package/dist/runtime/components/BlokkliField.vue +8 -2
  10. package/dist/runtime/components/Edit/Actions/index.vue +27 -6
  11. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +1 -0
  12. package/dist/runtime/components/Edit/DragInteractions/index.vue +7 -0
  13. package/dist/runtime/components/Edit/EditProvider.vue +23 -5
  14. package/dist/runtime/components/Edit/Features/Artboard/index.vue +4 -0
  15. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +1 -0
  16. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +3 -1
  17. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +14 -2
  18. package/dist/runtime/components/Edit/Features/Debug/index.vue +26 -4
  19. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +236 -0
  20. package/dist/runtime/components/Edit/Features/Diff/index.vue +37 -0
  21. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +14 -4
  22. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +3 -0
  23. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +8 -1
  24. package/dist/runtime/components/Edit/Features/EditableField/index.vue +11 -5
  25. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +1 -0
  26. package/dist/runtime/components/Edit/Features/History/index.vue +3 -1
  27. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +5 -2
  28. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +10 -3
  29. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +2 -0
  30. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +4 -1
  31. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +14 -1
  32. package/dist/runtime/components/Edit/Features/Preview/index.vue +2 -1
  33. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +2 -1
  34. package/dist/runtime/components/Edit/Features/Publish/index.vue +2 -0
  35. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +2 -1
  36. package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +78 -44
  37. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +8 -8
  38. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +6 -1
  39. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +23 -2
  40. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +71 -38
  41. package/dist/runtime/components/Edit/Features/Settings/index.vue +4 -0
  42. package/dist/runtime/components/Edit/Features/Transform/index.vue +5 -1
  43. package/dist/runtime/components/Edit/Features/Translations/index.vue +24 -2
  44. package/dist/runtime/components/Edit/Features/index.vue +4 -0
  45. package/dist/runtime/components/Edit/InfoBox/index.vue +14 -0
  46. package/dist/runtime/components/Edit/Messages/index.vue +10 -12
  47. package/dist/runtime/components/Edit/PreviewProvider.vue +9 -2
  48. package/dist/runtime/components/Edit/index.d.ts +2 -1
  49. package/dist/runtime/components/Edit/index.js +3 -1
  50. package/dist/runtime/constants/index.d.ts +1 -1
  51. package/dist/runtime/constants/index.js +1 -0
  52. package/dist/runtime/css/output.css +1 -1
  53. package/dist/runtime/helpers/animationProvider.js +2 -1
  54. package/dist/runtime/helpers/featuresProvider.d.ts +7 -14
  55. package/dist/runtime/helpers/featuresProvider.js +29 -1
  56. package/dist/runtime/helpers/stateProvider.d.ts +1 -0
  57. package/dist/runtime/helpers/stateProvider.js +23 -4
  58. package/dist/runtime/helpers/uiProvider.d.ts +5 -1
  59. package/dist/runtime/helpers/uiProvider.js +10 -2
  60. package/dist/runtime/icons/diff.svg +1 -0
  61. package/dist/runtime/icons/info.svg +1 -0
  62. package/dist/runtime/types/index.d.ts +59 -1
  63. package/package.json +2 -1
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "blokkli",
3
3
  "configKey": "blokkli",
4
- "version": "1.2.0",
4
+ "version": "1.3.1",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.12.0"
7
7
  },