@blokkli/editor 2.0.0-alpha.42 → 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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +4 -4
- package/dist/modules/agent/index.mjs +6 -2
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +28 -19
- package/dist/modules/agent/runtime/app/tools/check_readability/index.js +1 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +7 -3
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/helpers.js +5 -3
- package/dist/modules/agent/runtime/server/Session.d.ts +2 -0
- package/dist/modules/agent/runtime/server/Session.js +17 -0
- package/dist/modules/agent/runtime/server/agent.js +2 -1
- package/dist/modules/agent/runtime/shared/types.d.ts +1 -0
- package/dist/modules/agent/runtime/shared/types.js +2 -1
- package/dist/runtime/components/BlokkliProvider.vue +14 -13
- package/dist/runtime/editor/components/Actions/Interactions/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Actions/Interactions/index.vue +110 -0
- package/dist/runtime/editor/components/Actions/Interactions/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Actions/index.vue +34 -3
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +2 -10
- package/dist/runtime/editor/components/BundleSelector/index.vue +39 -11
- package/dist/runtime/editor/components/PreviewProvider.vue +1 -1
- package/dist/runtime/editor/components/Toolbar/index.vue +1 -2
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +1 -1
- package/dist/runtime/editor/composables/useStickyToolbar.js +25 -7
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/features/analyze/Main.d.vue.ts +6 -0
- package/dist/runtime/editor/features/analyze/Main.vue +26 -1
- package/dist/runtime/editor/features/analyze/Main.vue.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +2 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.vue +86 -15
- package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +2 -0
- package/dist/runtime/editor/features/analyze/analyzers/altText.d.ts +2 -0
- package/dist/runtime/editor/features/analyze/analyzers/altText.js +60 -0
- package/dist/runtime/editor/features/analyze/analyzers/headingStructure.d.ts +2 -0
- package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +141 -0
- package/dist/runtime/editor/features/analyze/analyzers/index.d.ts +5 -1
- package/dist/runtime/editor/features/analyze/analyzers/index.js +11 -1
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +50 -16
- package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +3 -2
- package/dist/runtime/editor/features/analyze/index.vue +12 -0
- package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.js +38 -22
- package/dist/runtime/editor/features/analyze/readability/types.d.ts +18 -3
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +110 -5
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +16 -1
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue +2 -1
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.d.vue.ts +8 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +135 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue.d.ts +8 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +187 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +23 -0
- package/dist/runtime/editor/features/hover/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/index.vue +7 -17
- package/dist/runtime/editor/features/options/index.vue +4 -3
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +7 -11
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +11 -13
- package/dist/runtime/editor/features/selection/Renderer/index.vue +2 -0
- package/dist/runtime/editor/features/translations/index.vue +1 -1
- package/dist/runtime/editor/helpers/draggable/index.d.ts +3 -0
- package/dist/runtime/editor/helpers/draggable/index.js +9 -0
- package/dist/runtime/editor/providers/analyze.js +1 -1
- package/dist/runtime/editor/providers/animation.js +1 -1
- package/dist/runtime/editor/providers/readability.js +16 -20
- package/dist/runtime/editor/providers/selection.d.ts +0 -4
- package/dist/runtime/editor/providers/selection.js +0 -2
- package/dist/runtime/editor/providers/ui.d.ts +16 -0
- package/dist/runtime/editor/providers/ui.js +5 -1
- package/dist/runtime/editor/translations/de.json +129 -1
- package/dist/runtime/editor/translations/fr.json +128 -0
- package/dist/runtime/editor/translations/gsw_CH.json +128 -0
- package/dist/runtime/editor/translations/it.json +128 -0
- package/package.json +1 -1
|
@@ -7,6 +7,22 @@
|
|
|
7
7
|
"source": "Further actions",
|
|
8
8
|
"translation": "Altre azioni"
|
|
9
9
|
},
|
|
10
|
+
"actionsMoveBlock": {
|
|
11
|
+
"source": "Move block",
|
|
12
|
+
"translation": ""
|
|
13
|
+
},
|
|
14
|
+
"actionsMoveBlocks": {
|
|
15
|
+
"source": "Move @count blocks",
|
|
16
|
+
"translation": ""
|
|
17
|
+
},
|
|
18
|
+
"actionsSelectPage": {
|
|
19
|
+
"source": "Select page",
|
|
20
|
+
"translation": ""
|
|
21
|
+
},
|
|
22
|
+
"actionsSelectParent": {
|
|
23
|
+
"source": "Select parent (@label)",
|
|
24
|
+
"translation": ""
|
|
25
|
+
},
|
|
10
26
|
"addBlockCommand.appendInField": {
|
|
11
27
|
"source": "Append \"@block\" in \"@field\"",
|
|
12
28
|
"translation": "Aggiungi «@block» in «@field»"
|
|
@@ -787,6 +803,30 @@
|
|
|
787
803
|
"source": "Allowed Blocks",
|
|
788
804
|
"translation": ""
|
|
789
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
|
+
},
|
|
790
830
|
"analyzeButtonLabel": {
|
|
791
831
|
"source": "Analyze Page",
|
|
792
832
|
"translation": ""
|
|
@@ -815,10 +855,70 @@
|
|
|
815
855
|
"source": "Click the button above to run the analysis.",
|
|
816
856
|
"translation": ""
|
|
817
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
|
+
},
|
|
818
914
|
"analyzeKeepVisible": {
|
|
819
915
|
"source": "Keep results visible",
|
|
820
916
|
"translation": ""
|
|
821
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
|
+
},
|
|
822
922
|
"analyzeLastRun": {
|
|
823
923
|
"source": "Last run: @time",
|
|
824
924
|
"translation": ""
|
|
@@ -867,6 +967,10 @@
|
|
|
867
967
|
"source": "Analyze the content of your page",
|
|
868
968
|
"translation": ""
|
|
869
969
|
},
|
|
970
|
+
"analyzerReadabiliyCouldBeSimpler": {
|
|
971
|
+
"source": "Could be simpler (@lang).",
|
|
972
|
+
"translation": "Potrebbe essere più semplice (@lang)."
|
|
973
|
+
},
|
|
870
974
|
"analyzerReadabiliyDescription": {
|
|
871
975
|
"source": "Avoid texts that are hard to read.",
|
|
872
976
|
"translation": ""
|
|
@@ -875,6 +979,14 @@
|
|
|
875
979
|
"source": "Hard to read (@lang).",
|
|
876
980
|
"translation": ""
|
|
877
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
|
+
},
|
|
878
990
|
"analyzerReadabiliyShorterSentences": {
|
|
879
991
|
"source": "Consider shorter sentences and simpler wording.",
|
|
880
992
|
"translation": ""
|
|
@@ -2655,6 +2767,22 @@
|
|
|
2655
2767
|
"source": "Will be scheduled",
|
|
2656
2768
|
"translation": ""
|
|
2657
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
|
+
},
|
|
2658
2786
|
"responsivePreviewCustomViewport": {
|
|
2659
2787
|
"source": "Custom",
|
|
2660
2788
|
"translation": ""
|