@blokkli/editor 2.0.0-alpha.43 → 2.0.0-alpha.44

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 (61) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +3 -4
  3. package/dist/modules/agent/runtime/app/composables/agentProvider.js +28 -19
  4. package/dist/modules/agent/runtime/app/tools/check_readability/index.js +1 -0
  5. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +2 -0
  6. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +7 -3
  7. package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +2 -0
  8. package/dist/modules/agent/runtime/app/tools/helpers.js +5 -3
  9. package/dist/modules/agent/runtime/server/Session.d.ts +2 -0
  10. package/dist/modules/agent/runtime/server/Session.js +17 -0
  11. package/dist/modules/agent/runtime/server/agent.js +2 -1
  12. package/dist/modules/agent/runtime/shared/types.d.ts +1 -0
  13. package/dist/modules/agent/runtime/shared/types.js +2 -1
  14. package/dist/runtime/components/BlokkliProvider.vue +14 -13
  15. package/dist/runtime/editor/components/Toolbar/index.vue +1 -2
  16. package/dist/runtime/editor/composables/useStickyToolbar.d.ts +1 -1
  17. package/dist/runtime/editor/composables/useStickyToolbar.js +25 -7
  18. package/dist/runtime/editor/css/output.css +1 -1
  19. package/dist/runtime/editor/features/analyze/Main.d.vue.ts +6 -0
  20. package/dist/runtime/editor/features/analyze/Main.vue +26 -1
  21. package/dist/runtime/editor/features/analyze/Main.vue.d.ts +6 -0
  22. package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +2 -0
  23. package/dist/runtime/editor/features/analyze/Renderer/index.vue +86 -15
  24. package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +2 -0
  25. package/dist/runtime/editor/features/analyze/analyzers/altText.d.ts +2 -0
  26. package/dist/runtime/editor/features/analyze/analyzers/altText.js +60 -0
  27. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.d.ts +2 -0
  28. package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +141 -0
  29. package/dist/runtime/editor/features/analyze/analyzers/index.d.ts +5 -1
  30. package/dist/runtime/editor/features/analyze/analyzers/index.js +11 -1
  31. package/dist/runtime/editor/features/analyze/analyzers/readability.js +50 -16
  32. package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +3 -2
  33. package/dist/runtime/editor/features/analyze/index.vue +12 -0
  34. package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.js +38 -22
  35. package/dist/runtime/editor/features/analyze/readability/types.d.ts +18 -3
  36. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +1 -0
  37. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +102 -2
  38. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +1 -0
  39. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +1 -0
  40. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +16 -1
  41. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +1 -0
  42. package/dist/runtime/editor/features/dragging-overlay/index.vue +2 -1
  43. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.d.vue.ts +8 -0
  44. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +135 -0
  45. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue.d.ts +8 -0
  46. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.d.vue.ts +7 -0
  47. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +187 -0
  48. package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue.d.ts +7 -0
  49. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +23 -0
  50. package/dist/runtime/editor/features/options/index.vue +4 -3
  51. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +7 -11
  52. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +11 -13
  53. package/dist/runtime/editor/features/selection/Renderer/index.vue +2 -0
  54. package/dist/runtime/editor/features/translations/index.vue +1 -1
  55. package/dist/runtime/editor/providers/analyze.js +1 -1
  56. package/dist/runtime/editor/providers/readability.js +16 -20
  57. package/dist/runtime/editor/translations/de.json +113 -1
  58. package/dist/runtime/editor/translations/fr.json +113 -1
  59. package/dist/runtime/editor/translations/gsw_CH.json +113 -1
  60. package/dist/runtime/editor/translations/it.json +113 -1
  61. package/package.json +1 -1
@@ -803,6 +803,30 @@
803
803
  "source": "Allowed Blocks",
804
804
  "translation": ""
805
805
  },
806
+ "analyzeAltTextLabel": {
807
+ "source": "Image Alt Texts",
808
+ "translation": ""
809
+ },
810
+ "analyzeAltTextMissing": {
811
+ "source": "Images without alt text",
812
+ "translation": ""
813
+ },
814
+ "analyzeAltTextMissingDescription": {
815
+ "source": "Images are missing alt text. Alt texts are important for accessibility and SEO.",
816
+ "translation": ""
817
+ },
818
+ "analyzeAltTextMissingNode": {
819
+ "source": "Image without alt text",
820
+ "translation": ""
821
+ },
822
+ "analyzeAltTextValid": {
823
+ "source": "Images with alt text",
824
+ "translation": ""
825
+ },
826
+ "analyzeAltTextValidDescription": {
827
+ "source": "Images have an alt text.",
828
+ "translation": ""
829
+ },
806
830
  "analyzeButtonLabel": {
807
831
  "source": "Analyze Page",
808
832
  "translation": ""
@@ -831,10 +855,70 @@
831
855
  "source": "Click the button above to run the analysis.",
832
856
  "translation": ""
833
857
  },
858
+ "analyzeHeadingHasH2": {
859
+ "source": "H2 headings present",
860
+ "translation": ""
861
+ },
862
+ "analyzeHeadingHasH2Description": {
863
+ "source": "The page contains H2 headings for a clear content structure.",
864
+ "translation": ""
865
+ },
866
+ "analyzeHeadingMultipleH1": {
867
+ "source": "Multiple H1 headings",
868
+ "translation": ""
869
+ },
870
+ "analyzeHeadingMultipleH1Description": {
871
+ "source": "The page contains multiple H1 headings. There should only be one H1 heading per page.",
872
+ "translation": ""
873
+ },
874
+ "analyzeHeadingNoH2": {
875
+ "source": "Missing H2 headings",
876
+ "translation": ""
877
+ },
878
+ "analyzeHeadingNoH2Description": {
879
+ "source": "The page contains no H2 headings. A clear heading structure is important for SEO and accessibility.",
880
+ "translation": ""
881
+ },
882
+ "analyzeHeadingNoH2Found": {
883
+ "source": "No H2 headings found",
884
+ "translation": ""
885
+ },
886
+ "analyzeHeadingNoSkippedLevels": {
887
+ "source": "No skipped heading levels",
888
+ "translation": ""
889
+ },
890
+ "analyzeHeadingNoSkippedLevelsDescription": {
891
+ "source": "The heading hierarchy does not skip any levels.",
892
+ "translation": ""
893
+ },
894
+ "analyzeHeadingSingleH1": {
895
+ "source": "Single H1 heading",
896
+ "translation": ""
897
+ },
898
+ "analyzeHeadingSingleH1Description": {
899
+ "source": "The page has exactly one H1 heading.",
900
+ "translation": ""
901
+ },
902
+ "analyzeHeadingSkippedLevels": {
903
+ "source": "Skipped heading levels",
904
+ "translation": ""
905
+ },
906
+ "analyzeHeadingSkippedLevelsDescription": {
907
+ "source": "Headings skip a level. The heading hierarchy should not skip levels (e.g. do not jump from H2 to H4).",
908
+ "translation": ""
909
+ },
910
+ "analyzeHeadingStructureLabel": {
911
+ "source": "Heading Structure",
912
+ "translation": ""
913
+ },
834
914
  "analyzeKeepVisible": {
835
915
  "source": "Keep results visible",
836
916
  "translation": ""
837
917
  },
918
+ "analyzeKeepVisibleDescription": {
919
+ "source": "When enabled, analysis results remain highlighted on the page even when the analyze panel is closed.",
920
+ "translation": "Lorsque activé, les résultats d'analyse restent surlignés sur la page même lorsque le panneau d'analyse est fermé."
921
+ },
838
922
  "analyzeLastRun": {
839
923
  "source": "Last run: @time",
840
924
  "translation": ""
@@ -883,6 +967,10 @@
883
967
  "source": "Analyze the content of your page",
884
968
  "translation": ""
885
969
  },
970
+ "analyzerReadabiliyCouldBeSimpler": {
971
+ "source": "Could be simpler (@lang).",
972
+ "translation": "Pourrait être plus simple (@lang)."
973
+ },
886
974
  "analyzerReadabiliyDescription": {
887
975
  "source": "Avoid texts that are hard to read.",
888
976
  "translation": ""
@@ -891,6 +979,14 @@
891
979
  "source": "Hard to read (@lang).",
892
980
  "translation": ""
893
981
  },
982
+ "analyzerReadabiliyOkDescription": {
983
+ "source": "Text that could be easier to read.",
984
+ "translation": "Texte qui pourrait être plus facile à lire."
985
+ },
986
+ "analyzerReadabiliyOkTitle": {
987
+ "source": "Text could be simpler",
988
+ "translation": "Le texte pourrait être plus simple"
989
+ },
894
990
  "analyzerReadabiliyShorterSentences": {
895
991
  "source": "Consider shorter sentences and simpler wording.",
896
992
  "translation": ""
@@ -1504,7 +1600,7 @@
1504
1600
  "translation": "Les éléments n'ont pas pu être dupliqués."
1505
1601
  },
1506
1602
  "edit": {
1507
- "source": "Edit",
1603
+ "source": "Edit...",
1508
1604
  "translation": "Modifier"
1509
1605
  },
1510
1606
  "editFormBlockAdd": {
@@ -2671,6 +2767,22 @@
2671
2767
  "source": "Will be scheduled",
2672
2768
  "translation": ""
2673
2769
  },
2770
+ "readabilityEntireText": {
2771
+ "source": "This score is calculated for the entire text.",
2772
+ "translation": ""
2773
+ },
2774
+ "readabilityTooShort": {
2775
+ "source": "Too short",
2776
+ "translation": "Trop court"
2777
+ },
2778
+ "readabilityTooShortTooltip": {
2779
+ "source": "Text needs at least @count words for readability analysis.",
2780
+ "translation": "Le texte nécessite au moins @count mots pour l'analyse de lisibilité."
2781
+ },
2782
+ "readabilityTooltipDescription": {
2783
+ "source": "@label measures how easy the text is to read.",
2784
+ "translation": "@label mesure la facilité de lecture du texte."
2785
+ },
2674
2786
  "responsivePreviewCustomViewport": {
2675
2787
  "source": "Custom",
2676
2788
  "translation": ""
@@ -803,6 +803,30 @@
803
803
  "source": "Allowed Blocks",
804
804
  "translation": ""
805
805
  },
806
+ "analyzeAltTextLabel": {
807
+ "source": "Image Alt Texts",
808
+ "translation": ""
809
+ },
810
+ "analyzeAltTextMissing": {
811
+ "source": "Images without alt text",
812
+ "translation": ""
813
+ },
814
+ "analyzeAltTextMissingDescription": {
815
+ "source": "Images are missing alt text. Alt texts are important for accessibility and SEO.",
816
+ "translation": ""
817
+ },
818
+ "analyzeAltTextMissingNode": {
819
+ "source": "Image without alt text",
820
+ "translation": ""
821
+ },
822
+ "analyzeAltTextValid": {
823
+ "source": "Images with alt text",
824
+ "translation": ""
825
+ },
826
+ "analyzeAltTextValidDescription": {
827
+ "source": "Images have an alt text.",
828
+ "translation": ""
829
+ },
806
830
  "analyzeButtonLabel": {
807
831
  "source": "Analyze Page",
808
832
  "translation": "Sitte analysiere"
@@ -831,10 +855,70 @@
831
855
  "source": "Click the button above to run the analysis.",
832
856
  "translation": ""
833
857
  },
858
+ "analyzeHeadingHasH2": {
859
+ "source": "H2 headings present",
860
+ "translation": ""
861
+ },
862
+ "analyzeHeadingHasH2Description": {
863
+ "source": "The page contains H2 headings for a clear content structure.",
864
+ "translation": ""
865
+ },
866
+ "analyzeHeadingMultipleH1": {
867
+ "source": "Multiple H1 headings",
868
+ "translation": ""
869
+ },
870
+ "analyzeHeadingMultipleH1Description": {
871
+ "source": "The page contains multiple H1 headings. There should only be one H1 heading per page.",
872
+ "translation": ""
873
+ },
874
+ "analyzeHeadingNoH2": {
875
+ "source": "Missing H2 headings",
876
+ "translation": ""
877
+ },
878
+ "analyzeHeadingNoH2Description": {
879
+ "source": "The page contains no H2 headings. A clear heading structure is important for SEO and accessibility.",
880
+ "translation": ""
881
+ },
882
+ "analyzeHeadingNoH2Found": {
883
+ "source": "No H2 headings found",
884
+ "translation": ""
885
+ },
886
+ "analyzeHeadingNoSkippedLevels": {
887
+ "source": "No skipped heading levels",
888
+ "translation": ""
889
+ },
890
+ "analyzeHeadingNoSkippedLevelsDescription": {
891
+ "source": "The heading hierarchy does not skip any levels.",
892
+ "translation": ""
893
+ },
894
+ "analyzeHeadingSingleH1": {
895
+ "source": "Single H1 heading",
896
+ "translation": ""
897
+ },
898
+ "analyzeHeadingSingleH1Description": {
899
+ "source": "The page has exactly one H1 heading.",
900
+ "translation": ""
901
+ },
902
+ "analyzeHeadingSkippedLevels": {
903
+ "source": "Skipped heading levels",
904
+ "translation": ""
905
+ },
906
+ "analyzeHeadingSkippedLevelsDescription": {
907
+ "source": "Headings skip a level. The heading hierarchy should not skip levels (e.g. do not jump from H2 to H4).",
908
+ "translation": ""
909
+ },
910
+ "analyzeHeadingStructureLabel": {
911
+ "source": "Heading Structure",
912
+ "translation": ""
913
+ },
834
914
  "analyzeKeepVisible": {
835
915
  "source": "Keep results visible",
836
916
  "translation": ""
837
917
  },
918
+ "analyzeKeepVisibleDescription": {
919
+ "source": "When enabled, analysis results remain highlighted on the page even when the analyze panel is closed.",
920
+ "translation": "Wenn aktiviert, bliibe d Analyseergebnis uf de Siite hervorghobe, au wenn s Analyse-Panel zuegmacht isch."
921
+ },
838
922
  "analyzeLastRun": {
839
923
  "source": "Last run: @time",
840
924
  "translation": "Zletscht usgfüehrt: @time"
@@ -883,6 +967,10 @@
883
967
  "source": "Analyze the content of your page",
884
968
  "translation": "Dr Inhalt vo dinere Sitte analysiere"
885
969
  },
970
+ "analyzerReadabiliyCouldBeSimpler": {
971
+ "source": "Could be simpler (@lang).",
972
+ "translation": "Chönnt eifacher si (@lang)."
973
+ },
886
974
  "analyzerReadabiliyDescription": {
887
975
  "source": "Avoid texts that are hard to read.",
888
976
  "translation": "Vermiid Teggscht wo schwär z'läse sin."
@@ -891,6 +979,14 @@
891
979
  "source": "Hard to read (@lang).",
892
980
  "translation": "Schwär z'läse (@lang)."
893
981
  },
982
+ "analyzerReadabiliyOkDescription": {
983
+ "source": "Text that could be easier to read.",
984
+ "translation": "Text, wo eifacher z läse chönnt si."
985
+ },
986
+ "analyzerReadabiliyOkTitle": {
987
+ "source": "Text could be simpler",
988
+ "translation": "Text chönnt eifacher si"
989
+ },
894
990
  "analyzerReadabiliyShorterSentences": {
895
991
  "source": "Consider shorter sentences and simpler wording.",
896
992
  "translation": "Bruch chürzeri Sätz und eifacheri Formulierige."
@@ -1504,7 +1600,7 @@
1504
1600
  "translation": "D'Elemänt hän nid chönne dupliziert wärde. "
1505
1601
  },
1506
1602
  "edit": {
1507
- "source": "Edit",
1603
+ "source": "Edit...",
1508
1604
  "translation": "Bearbeite"
1509
1605
  },
1510
1606
  "editFormBlockAdd": {
@@ -2671,6 +2767,22 @@
2671
2767
  "source": "Will be scheduled",
2672
2768
  "translation": ""
2673
2769
  },
2770
+ "readabilityEntireText": {
2771
+ "source": "This score is calculated for the entire text.",
2772
+ "translation": ""
2773
+ },
2774
+ "readabilityTooShort": {
2775
+ "source": "Too short",
2776
+ "translation": "Z churz"
2777
+ },
2778
+ "readabilityTooShortTooltip": {
2779
+ "source": "Text needs at least @count words for readability analysis.",
2780
+ "translation": "De Text bruucht mindestens @count Wörter für d Lesbarkeitsanalys."
2781
+ },
2782
+ "readabilityTooltipDescription": {
2783
+ "source": "@label measures how easy the text is to read.",
2784
+ "translation": "@label misst, wie eifach de Text z läse isch."
2785
+ },
2674
2786
  "responsivePreviewCustomViewport": {
2675
2787
  "source": "Custom",
2676
2788
  "translation": "Benutzerdefiniert"
@@ -803,6 +803,30 @@
803
803
  "source": "Allowed Blocks",
804
804
  "translation": ""
805
805
  },
806
+ "analyzeAltTextLabel": {
807
+ "source": "Image Alt Texts",
808
+ "translation": ""
809
+ },
810
+ "analyzeAltTextMissing": {
811
+ "source": "Images without alt text",
812
+ "translation": ""
813
+ },
814
+ "analyzeAltTextMissingDescription": {
815
+ "source": "Images are missing alt text. Alt texts are important for accessibility and SEO.",
816
+ "translation": ""
817
+ },
818
+ "analyzeAltTextMissingNode": {
819
+ "source": "Image without alt text",
820
+ "translation": ""
821
+ },
822
+ "analyzeAltTextValid": {
823
+ "source": "Images with alt text",
824
+ "translation": ""
825
+ },
826
+ "analyzeAltTextValidDescription": {
827
+ "source": "Images have an alt text.",
828
+ "translation": ""
829
+ },
806
830
  "analyzeButtonLabel": {
807
831
  "source": "Analyze Page",
808
832
  "translation": ""
@@ -831,10 +855,70 @@
831
855
  "source": "Click the button above to run the analysis.",
832
856
  "translation": ""
833
857
  },
858
+ "analyzeHeadingHasH2": {
859
+ "source": "H2 headings present",
860
+ "translation": ""
861
+ },
862
+ "analyzeHeadingHasH2Description": {
863
+ "source": "The page contains H2 headings for a clear content structure.",
864
+ "translation": ""
865
+ },
866
+ "analyzeHeadingMultipleH1": {
867
+ "source": "Multiple H1 headings",
868
+ "translation": ""
869
+ },
870
+ "analyzeHeadingMultipleH1Description": {
871
+ "source": "The page contains multiple H1 headings. There should only be one H1 heading per page.",
872
+ "translation": ""
873
+ },
874
+ "analyzeHeadingNoH2": {
875
+ "source": "Missing H2 headings",
876
+ "translation": ""
877
+ },
878
+ "analyzeHeadingNoH2Description": {
879
+ "source": "The page contains no H2 headings. A clear heading structure is important for SEO and accessibility.",
880
+ "translation": ""
881
+ },
882
+ "analyzeHeadingNoH2Found": {
883
+ "source": "No H2 headings found",
884
+ "translation": ""
885
+ },
886
+ "analyzeHeadingNoSkippedLevels": {
887
+ "source": "No skipped heading levels",
888
+ "translation": ""
889
+ },
890
+ "analyzeHeadingNoSkippedLevelsDescription": {
891
+ "source": "The heading hierarchy does not skip any levels.",
892
+ "translation": ""
893
+ },
894
+ "analyzeHeadingSingleH1": {
895
+ "source": "Single H1 heading",
896
+ "translation": ""
897
+ },
898
+ "analyzeHeadingSingleH1Description": {
899
+ "source": "The page has exactly one H1 heading.",
900
+ "translation": ""
901
+ },
902
+ "analyzeHeadingSkippedLevels": {
903
+ "source": "Skipped heading levels",
904
+ "translation": ""
905
+ },
906
+ "analyzeHeadingSkippedLevelsDescription": {
907
+ "source": "Headings skip a level. The heading hierarchy should not skip levels (e.g. do not jump from H2 to H4).",
908
+ "translation": ""
909
+ },
910
+ "analyzeHeadingStructureLabel": {
911
+ "source": "Heading Structure",
912
+ "translation": ""
913
+ },
834
914
  "analyzeKeepVisible": {
835
915
  "source": "Keep results visible",
836
916
  "translation": ""
837
917
  },
918
+ "analyzeKeepVisibleDescription": {
919
+ "source": "When enabled, analysis results remain highlighted on the page even when the analyze panel is closed.",
920
+ "translation": "Quando attivato, i risultati dell'analisi rimangono evidenziati sulla pagina anche quando il pannello di analisi è chiuso."
921
+ },
838
922
  "analyzeLastRun": {
839
923
  "source": "Last run: @time",
840
924
  "translation": ""
@@ -883,6 +967,10 @@
883
967
  "source": "Analyze the content of your page",
884
968
  "translation": ""
885
969
  },
970
+ "analyzerReadabiliyCouldBeSimpler": {
971
+ "source": "Could be simpler (@lang).",
972
+ "translation": "Potrebbe essere più semplice (@lang)."
973
+ },
886
974
  "analyzerReadabiliyDescription": {
887
975
  "source": "Avoid texts that are hard to read.",
888
976
  "translation": ""
@@ -891,6 +979,14 @@
891
979
  "source": "Hard to read (@lang).",
892
980
  "translation": ""
893
981
  },
982
+ "analyzerReadabiliyOkDescription": {
983
+ "source": "Text that could be easier to read.",
984
+ "translation": "Testo che potrebbe essere più facile da leggere."
985
+ },
986
+ "analyzerReadabiliyOkTitle": {
987
+ "source": "Text could be simpler",
988
+ "translation": "Il testo potrebbe essere più semplice"
989
+ },
894
990
  "analyzerReadabiliyShorterSentences": {
895
991
  "source": "Consider shorter sentences and simpler wording.",
896
992
  "translation": ""
@@ -1504,7 +1600,7 @@
1504
1600
  "translation": "Gli elementi non possono essere duplicati."
1505
1601
  },
1506
1602
  "edit": {
1507
- "source": "Edit",
1603
+ "source": "Edit...",
1508
1604
  "translation": "Modifica"
1509
1605
  },
1510
1606
  "editFormBlockAdd": {
@@ -2671,6 +2767,22 @@
2671
2767
  "source": "Will be scheduled",
2672
2768
  "translation": ""
2673
2769
  },
2770
+ "readabilityEntireText": {
2771
+ "source": "This score is calculated for the entire text.",
2772
+ "translation": ""
2773
+ },
2774
+ "readabilityTooShort": {
2775
+ "source": "Too short",
2776
+ "translation": "Troppo breve"
2777
+ },
2778
+ "readabilityTooShortTooltip": {
2779
+ "source": "Text needs at least @count words for readability analysis.",
2780
+ "translation": "Il testo necessita di almeno @count parole per l'analisi della leggibilità."
2781
+ },
2782
+ "readabilityTooltipDescription": {
2783
+ "source": "@label measures how easy the text is to read.",
2784
+ "translation": "@label misura quanto è facile leggere il testo."
2785
+ },
2674
2786
  "responsivePreviewCustomViewport": {
2675
2787
  "source": "Custom",
2676
2788
  "translation": ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blokkli/editor",
3
- "version": "2.0.0-alpha.43",
3
+ "version": "2.0.0-alpha.44",
4
4
  "description": "Interactive page building experience for Nuxt",
5
5
  "keywords": [
6
6
  "cms",