@blokkli/editor 2.0.0-alpha.58 → 2.0.0-alpha.59
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/global/types/blockOptions.d.ts +36 -9
- package/dist/global/types/colorOptions.d.ts +4 -0
- package/dist/module.d.mts +3 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +349 -166
- package/dist/modules/agent/index.d.mts +2 -1
- package/dist/modules/agent/index.mjs +14 -7
- package/dist/modules/agent/runtime/app/components/Attachment/PreviewCode/index.vue +11 -0
- package/dist/modules/agent/runtime/app/components/Attachment/PreviewCsv/index.vue +56 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel/Attachment/PreviewCode → components/Attachment/PreviewHtml}/index.vue +1 -1
- package/dist/modules/agent/runtime/app/components/Attachment/PreviewMarkdown/index.vue +10 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/index.d.vue.ts +1 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/index.vue +22 -10
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/index.vue.d.ts +1 -0
- package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.vue +40 -0
- package/dist/modules/agent/runtime/app/components/Conversation/InlineFeedback/index.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/Assistant/index.vue +24 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.d.vue.ts +20 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.vue +52 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/Bubble/Tool/index.vue.d.ts +20 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Error/index.d.vue.ts +2 -1
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Error/index.vue +4 -14
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Error/index.vue.d.ts +2 -1
- package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.d.vue.ts +11 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.vue +29 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/ErrorBubble/index.vue.d.ts +11 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/ServerTool/index.d.vue.ts +2 -1
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/ServerTool/index.vue +10 -23
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/ServerTool/index.vue.d.ts +2 -1
- package/dist/modules/agent/runtime/app/components/Conversation/Item/Tool/index.vue +36 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Unknown/index.vue +2 -5
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/User/index.d.vue.ts +2 -0
- package/dist/modules/agent/runtime/app/components/Conversation/Item/User/index.vue +144 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/User/index.vue.d.ts +2 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Thinking/index.vue +3 -3
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/index.d.vue.ts +2 -0
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/index.vue +27 -11
- package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/index.vue.d.ts +2 -0
- package/dist/modules/agent/runtime/app/{tools/delegate_text_rewrite/Details → components/FieldDiffDetails}/index.d.vue.ts +15 -0
- package/dist/modules/agent/runtime/app/{tools/delegate_text_rewrite/Details → components/FieldDiffDetails}/index.vue.d.ts +15 -0
- package/dist/modules/agent/runtime/app/components/Markdown/index.d.vue.ts +6 -0
- package/dist/modules/agent/runtime/app/components/Markdown/index.vue +14 -0
- package/dist/modules/agent/runtime/app/components/Markdown/index.vue.d.ts +6 -0
- package/dist/modules/agent/runtime/app/composables/index.d.ts +5 -1
- package/dist/modules/agent/runtime/app/composables/index.js +2 -0
- package/dist/modules/agent/runtime/app/composables/useAgent.d.ts +2 -1
- package/dist/modules/agent/runtime/app/composables/useAgent.js +5 -2
- package/dist/modules/agent/runtime/app/composables/useAgentFeedbackOptions.d.ts +11 -0
- package/dist/modules/agent/runtime/app/composables/useAgentFeedbackOptions.js +24 -0
- package/dist/modules/agent/runtime/app/composables/useAgentPaginatedQuery.d.ts +29 -0
- package/dist/modules/agent/runtime/app/composables/useAgentPaginatedQuery.js +30 -0
- package/dist/modules/agent/runtime/app/features/agent/Container.d.vue.ts +0 -2
- package/dist/modules/agent/runtime/app/features/agent/Container.vue +39 -101
- package/dist/modules/agent/runtime/app/features/agent/Container.vue.d.ts +0 -2
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.d.vue.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.vue +46 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/Item.vue.d.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/ConversationsTab/index.vue +74 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.d.vue.ts +11 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.vue +55 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/Item.vue.d.ts +11 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.d.vue.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.vue +116 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/RatingsTab/index.vue.d.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.vue +61 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/ConversationDetail.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.d.vue.ts +38 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.vue +137 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/SplitView/index.vue.d.ts +38 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.vue +45 -0
- package/dist/modules/agent/runtime/app/features/agent/ConversationsAdmin/index.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.d.vue.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue +23 -36
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue.d.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue +11 -28
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.d.vue.ts +8 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.vue +20 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Item.vue.d.ts +8 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.d.vue.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.vue +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/Separator.vue.d.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue +31 -31
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +55 -9
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +12 -6
- package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue +13 -10
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +3 -3
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +18 -16
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +3 -3
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue +44 -13
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +1 -61
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +145 -142
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +1 -61
- package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.vue +41 -0
- package/dist/modules/agent/runtime/app/features/agent/Transcript/MessageContent.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Transcript/index.vue +83 -122
- package/dist/modules/agent/runtime/app/features/agent/index.vue +101 -4
- package/dist/modules/agent/runtime/app/features/agent/types.d.ts +85 -18
- package/dist/modules/agent/runtime/app/helpers/historySignature.d.ts +14 -0
- package/dist/modules/agent/runtime/app/helpers/historySignature.js +13 -0
- package/dist/modules/agent/runtime/app/helpers/id.d.ts +6 -0
- package/dist/modules/agent/runtime/app/helpers/id.js +3 -0
- package/dist/modules/agent/runtime/app/helpers/index.d.ts +0 -14
- package/dist/modules/agent/runtime/app/helpers/index.js +1 -19
- package/dist/modules/agent/runtime/app/helpers/markdown.d.ts +7 -0
- package/dist/modules/agent/runtime/app/helpers/markdown.js +5 -0
- package/dist/modules/agent/runtime/app/helpers/pageStructure.js +7 -19
- package/dist/modules/agent/runtime/app/helpers/parseConversationData.d.ts +27 -0
- package/dist/modules/agent/runtime/app/helpers/parseConversationData.js +42 -0
- package/dist/modules/agent/runtime/app/prompts/fixReadability.js +5 -4
- package/dist/modules/agent/runtime/app/providers/agentProvider.d.ts +24 -2
- package/dist/modules/agent/runtime/app/providers/agentProvider.js +138 -53
- package/dist/modules/agent/runtime/app/providers/conversationProvider.d.ts +9 -10
- package/dist/modules/agent/runtime/app/providers/conversationProvider.js +10 -39
- package/dist/modules/agent/runtime/app/providers/toolsProvider.js +43 -40
- package/dist/modules/agent/runtime/app/tools/{add_content_search_paragraph → add_content_search_paragraphs}/index.js +3 -2
- package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +2 -2
- package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +4 -2
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +37 -28
- package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +10 -10
- package/dist/modules/agent/runtime/app/tools/add_template/index.js +2 -2
- package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue +25 -15
- package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +1 -1
- package/dist/modules/agent/runtime/app/tools/ask_question/index.js +5 -4
- package/dist/modules/agent/runtime/app/tools/{check_readability → check_readability_for_texts}/index.js +16 -23
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.d.vue.ts +4 -23
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +80 -594
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue.d.ts +4 -23
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +18 -17
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +56 -47
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/useFieldRewriteStream.d.ts +64 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/useFieldRewriteStream.js +502 -0
- package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +2 -2
- package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +4 -2
- package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +8 -8
- package/dist/modules/agent/runtime/app/tools/fieldDiffApproval.d.ts +49 -0
- package/dist/modules/agent/runtime/app/tools/fieldDiffApproval.js +64 -0
- package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +14 -13
- package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +12 -18
- package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +21 -22
- package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +20 -24
- package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +5 -3
- package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +3 -1
- package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +35 -49
- package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +8 -11
- package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +8 -4
- package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +4 -2
- package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +3 -1
- package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +6 -2
- package/dist/modules/agent/runtime/app/tools/helpers.d.ts +28 -22
- package/dist/modules/agent/runtime/app/tools/helpers.js +64 -39
- package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +36 -4
- package/dist/modules/agent/runtime/app/tools/readability.d.ts +45 -0
- package/dist/modules/agent/runtime/app/tools/readability.js +51 -0
- package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +8 -7
- package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +2 -1
- package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +1 -1
- package/dist/modules/agent/runtime/app/tools/schemas.d.ts +22 -0
- package/dist/modules/agent/runtime/app/tools/schemas.js +27 -0
- package/dist/modules/agent/runtime/app/tools/search_content/index.js +3 -1
- package/dist/modules/agent/runtime/app/tools/search_media/index.js +1 -1
- package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +11 -10
- package/dist/modules/agent/runtime/app/tools/search_templates/index.js +3 -1
- package/dist/modules/agent/runtime/app/tools/search_text/index.js +2 -2
- package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +22 -8
- package/dist/modules/agent/runtime/app/tools/select_media/index.js +1 -1
- package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +9 -14
- package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +9 -9
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.d.vue.ts +6 -15
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue +48 -92
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Component.vue.d.ts +6 -15
- package/dist/modules/agent/runtime/app/tools/update_text_fields/index.d.ts +34 -13
- package/dist/modules/agent/runtime/app/tools/update_text_fields/index.js +84 -52
- package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +1 -1
- package/dist/modules/agent/runtime/app/types/index.d.ts +55 -7
- package/dist/modules/agent/runtime/app/types/index.js +55 -8
- package/dist/modules/agent/runtime/server/agent.js +4 -3
- package/dist/modules/agent/runtime/server/classes/ConversationHistory/index.d.ts +93 -0
- package/dist/modules/agent/runtime/server/classes/ConversationHistory/index.js +241 -0
- package/dist/modules/agent/runtime/server/classes/ConversationMessage/index.d.ts +102 -0
- package/dist/modules/agent/runtime/server/classes/ConversationMessage/index.js +156 -0
- package/dist/modules/agent/runtime/server/{Session.d.ts → classes/Session/index.d.ts} +46 -14
- package/dist/modules/agent/runtime/server/{Session.js → classes/Session/index.js} +350 -382
- package/dist/modules/agent/runtime/server/{SessionManager.d.ts → classes/SessionManager/index.d.ts} +2 -2
- package/dist/modules/agent/runtime/server/{SessionManager.js → classes/SessionManager/index.js} +4 -19
- package/dist/modules/agent/runtime/server/classes/StreamAccumulator/index.d.ts +58 -0
- package/dist/modules/agent/runtime/server/classes/StreamAccumulator/index.js +72 -0
- package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.js +0 -1
- package/dist/modules/agent/runtime/server/default-skills/fixReadability.js +1 -1
- package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.js +8 -8
- package/dist/modules/agent/runtime/server/default-system-prompts/introduction.js +1 -1
- package/dist/modules/agent/runtime/server/default-system-prompts/workflow.js +0 -1
- package/dist/modules/agent/runtime/server/{agentPrompt.d.ts → helpers/agentPrompt.d.ts} +3 -3
- package/dist/modules/agent/runtime/server/helpers/errors.d.ts +10 -0
- package/dist/modules/agent/runtime/server/helpers/errors.js +63 -0
- package/dist/modules/agent/runtime/server/helpers/messages.d.ts +6 -0
- package/dist/modules/agent/runtime/server/helpers/messages.js +70 -0
- package/dist/modules/agent/runtime/server/helpers/models.d.ts +20 -0
- package/dist/modules/agent/runtime/server/helpers/models.js +15 -0
- package/dist/modules/agent/runtime/server/{routing.d.ts → helpers/routing.d.ts} +2 -2
- package/dist/modules/agent/runtime/server/{routing.js → helpers/routing.js} +2 -9
- package/dist/modules/agent/runtime/server/helpers/security.d.ts +22 -0
- package/dist/modules/agent/runtime/server/helpers/security.js +44 -0
- package/dist/modules/agent/runtime/server/helpers/skills.d.ts +14 -0
- package/dist/modules/agent/runtime/server/helpers/skills.js +22 -0
- package/dist/modules/agent/runtime/server/helpers/socket.d.ts +4 -0
- package/dist/modules/agent/runtime/server/helpers/socket.js +3 -0
- package/dist/modules/agent/runtime/server/helpers/text.d.ts +5 -0
- package/dist/modules/agent/runtime/server/helpers/text.js +3 -0
- package/dist/modules/agent/runtime/server/providers/anthropic.js +22 -3
- package/dist/modules/agent/runtime/server/providers/openai.js +4 -0
- package/dist/modules/agent/runtime/server/route.js +2 -2
- package/dist/modules/agent/runtime/server/server-tools/index.d.ts +2 -0
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +1 -5
- package/dist/modules/agent/runtime/server/stream.js +6 -29
- package/dist/modules/agent/runtime/shared/toolParams.d.ts +28 -0
- package/dist/modules/agent/runtime/shared/toolParams.js +27 -0
- package/dist/modules/agent/runtime/shared/toolResult.d.ts +94 -0
- package/dist/modules/agent/runtime/shared/toolResult.js +155 -0
- package/dist/modules/agent/runtime/shared/types.d.ts +1 -3
- package/dist/modules/agent/runtime/shared/types.js +8 -1
- package/dist/modules/charts/index.d.mts +3 -17
- package/dist/modules/charts/index.mjs +241 -16
- package/dist/modules/charts/runtime/blokkli/chart-types/advanced/definition.d.ts +5 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/advanced/definition.js +26 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.vue +120 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/advanced/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/definition.d.ts +6 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/definition.js +40 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.vue +41 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.vue +94 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/agePyramid/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/definition.d.ts +7 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/definition.js +49 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.vue +56 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/render.vue +99 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/area/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/{chartTypes/bar.d.ts → blokkli/chart-types/bar/definition.d.ts} +3 -3
- package/dist/modules/charts/runtime/{chartTypes/bar.js → blokkli/chart-types/bar/definition.js} +12 -31
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.vue +34 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.vue +107 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/bar/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/definition.d.ts +7 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/definition.js +35 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.vue +35 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.vue +87 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/donut/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/{chartTypes/heatmap.d.ts → blokkli/chart-types/heatmap/definition.d.ts} +3 -3
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/definition.js +29 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.vue +27 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.vue +113 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/heatmap/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/definition.d.ts +7 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/definition.js +49 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.vue +59 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/render.vue +98 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/line/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/definition.d.ts +6 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/definition.js +29 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.vue +20 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.vue +71 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/pie/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/definition.d.ts +7 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/definition.js +45 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.vue +60 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.vue +95 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radar/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/definition.d.ts +6 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/definition.js +29 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.vue +32 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/illustration.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.d.vue.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.vue +77 -0
- package/dist/modules/charts/runtime/blokkli/chart-types/radialBar/render.vue.d.ts +3 -0
- package/dist/modules/charts/runtime/blokkli/skills/charts.js +36 -2
- package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.d.ts +81 -19
- package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.js +79 -32
- package/dist/modules/charts/runtime/blokkli/tools/create_advanced_chart/index.d.ts +2 -0
- package/dist/modules/charts/runtime/blokkli/tools/create_advanced_chart/index.js +88 -0
- package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.js +8 -4
- package/dist/modules/charts/runtime/blokkli/tools/get_advanced_chart_config/index.d.ts +2 -0
- package/dist/modules/charts/runtime/blokkli/tools/get_advanced_chart_config/index.js +65 -0
- package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.js +36 -8
- package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.js +4 -2
- package/dist/modules/charts/runtime/blokkli/tools/update_advanced_chart/index.d.ts +2 -0
- package/dist/modules/charts/runtime/blokkli/tools/update_advanced_chart/index.js +73 -0
- package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.js +43 -20
- package/dist/modules/charts/runtime/chart-types/definition/index.d.ts +7 -0
- package/dist/modules/charts/runtime/chart-types/definition/index.js +3 -0
- package/dist/modules/charts/runtime/chart-types/definition/options/index.d.ts +43 -0
- package/dist/modules/charts/runtime/{chartTypes/shared.js → chart-types/definition/options/index.js} +30 -23
- package/dist/modules/charts/runtime/chart-types/index.d.ts +21 -0
- package/dist/modules/charts/runtime/chart-types/index.js +25 -0
- package/dist/modules/charts/runtime/components/ChartRenderer/index.d.vue.ts +19 -145
- package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +193 -99
- package/dist/modules/charts/runtime/components/ChartRenderer/index.vue.d.ts +19 -145
- package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.d.vue.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.vue +149 -0
- package/dist/modules/charts/runtime/features/charts/Editor/AdvancedConfigPanel/index.vue.d.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.d.vue.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.vue +62 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CategoryColorOverridesPanel/index.vue.d.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.d.vue.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.vue +89 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/Field.vue.d.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.d.vue.ts +3 -3
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue +45 -52
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue.d.ts +3 -3
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.d.vue.ts +7 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.vue +55 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeCard.vue.d.ts +7 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.d.vue.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.vue +24 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/TypeGrid.vue.d.ts +11 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.d.vue.ts +2 -2
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +48 -26
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue.d.ts +2 -2
- package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.d.vue.ts +0 -2
- package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +64 -20
- package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue.d.ts +0 -2
- package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.d.vue.ts +9 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.vue +55 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvExport/index.vue.d.ts +9 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.d.vue.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.vue +88 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FilterEditor/index.vue.d.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.d.vue.ts +13 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.vue +111 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/FiltersSection/index.vue.d.ts +13 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.d.vue.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.vue +100 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/GroupBySection/index.vue.d.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.d.vue.ts +17 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.vue +152 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/OutputPreviewTable/index.vue.d.ts +17 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.d.vue.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.vue +340 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/PreviewDialog.vue.d.ts +14 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/csvHelpers.d.ts +69 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/csvHelpers.js +368 -0
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.d.vue.ts +6 -17
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue +37 -64
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue.d.ts +6 -17
- package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.d.vue.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.vue +80 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DataSourcePicker/index.vue.d.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.d.vue.ts +3 -3
- package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue +29 -18
- package/dist/modules/charts/runtime/features/charts/Editor/DataTable/index.vue.d.ts +3 -3
- package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.d.vue.ts +13 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.vue +71 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DateFormatEditor/index.vue.d.ts +13 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.d.vue.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.vue +57 -0
- package/dist/modules/charts/runtime/features/charts/Editor/DynamicPreviewStatus/index.vue.d.ts +16 -0
- package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.d.vue.ts +4 -5
- package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue +63 -51
- package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue.d.ts +4 -5
- package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.d.vue.ts +21 -0
- package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.vue +120 -0
- package/dist/modules/charts/runtime/features/charts/Editor/NumberFormatEditor/index.vue.d.ts +21 -0
- package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.d.vue.ts +18 -0
- package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.vue +65 -0
- package/dist/modules/charts/runtime/features/charts/Editor/OrphanOverridesWarning/index.vue.d.ts +18 -0
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.d.vue.ts +2 -1
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue +8 -2
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue.d.ts +2 -1
- package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.d.vue.ts +13 -0
- package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.vue +95 -0
- package/dist/modules/charts/runtime/features/charts/Editor/SeriesOverridesPanel/index.vue.d.ts +13 -0
- package/dist/{runtime/editor/components/AutoHeight → modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow}/index.d.vue.ts +1 -1
- package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow/index.vue +19 -0
- package/dist/{runtime/editor/components/AutoHeight → modules/charts/runtime/features/charts/Editor/TranslationsEditor/TranslationRow}/index.vue.d.ts +1 -1
- package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.d.vue.ts +17 -0
- package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.vue +264 -0
- package/dist/modules/charts/runtime/features/charts/Editor/TranslationsEditor/index.vue.d.ts +17 -0
- package/dist/modules/charts/runtime/features/charts/Editor/index.d.vue.ts +1 -0
- package/dist/modules/charts/runtime/features/charts/Editor/index.vue +477 -141
- package/dist/modules/charts/runtime/features/charts/Editor/index.vue.d.ts +1 -0
- package/dist/modules/charts/runtime/features/charts/Editor/useChartDataSourcePreview.d.ts +6 -0
- package/dist/modules/charts/runtime/features/charts/Editor/useChartDataSourcePreview.js +17 -0
- package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.d.ts +8 -2
- package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.js +85 -5
- package/dist/modules/charts/runtime/helpers/adapterTypes.d.ts +38 -0
- package/dist/modules/charts/runtime/helpers/adapterTypes.js +1 -0
- package/dist/modules/charts/runtime/helpers/dateFormat.d.ts +20 -0
- package/dist/modules/charts/runtime/helpers/dateFormat.js +121 -0
- package/dist/modules/charts/runtime/helpers/echarts.d.ts +6 -0
- package/dist/modules/charts/runtime/helpers/echarts.js +5 -0
- package/dist/modules/charts/runtime/helpers/index.d.ts +17 -14
- package/dist/modules/charts/runtime/helpers/index.js +24 -27
- package/dist/modules/charts/runtime/helpers/nextCategoryValue.d.ts +19 -0
- package/dist/modules/charts/runtime/helpers/nextCategoryValue.js +160 -0
- package/dist/modules/charts/runtime/helpers/numberFormat.d.ts +13 -0
- package/dist/modules/charts/runtime/helpers/numberFormat.js +31 -0
- package/dist/modules/charts/runtime/helpers/previewInjection.d.ts +14 -0
- package/dist/modules/charts/runtime/helpers/previewInjection.js +3 -0
- package/dist/modules/charts/runtime/types.d.ts +238 -15
- package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliMutationItem.graphql +23 -0
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +12 -3
- package/dist/modules/drupal/graphql/base/query.pbUsers.graphql +10 -0
- package/dist/modules/drupal/graphql/features/agent.graphql +75 -23
- package/dist/modules/drupal/graphql/features/block-transfer.graphql +42 -0
- package/dist/modules/drupal/graphql/features/comments.graphql +81 -11
- package/dist/modules/drupal/index.d.mts +2 -1
- package/dist/modules/drupal/index.mjs +8 -0
- package/dist/modules/drupal/runtime/adapter/index.js +221 -34
- package/dist/modules/iframes/index.d.mts +2 -1
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue +4 -2
- package/dist/modules/index.d.mts +2 -1
- package/dist/modules/readability/index.d.mts +2 -1
- package/dist/modules/table-of-contents/index.d.mts +2 -1
- package/dist/modules/tailwind/index.d.mts +2 -2
- package/dist/modules/tailwind/index.mjs +228 -2
- package/dist/runtime/components/Blocks/NotImplemented/index.vue +24 -51
- package/dist/runtime/components/BlokkliItem.vue +3 -31
- package/dist/runtime/editor/adapter/index.d.ts +16 -0
- package/dist/runtime/editor/components/Actions/Interactions/Button.d.vue.ts +9 -0
- package/dist/runtime/editor/components/Actions/Interactions/Button.vue +19 -0
- package/dist/runtime/editor/components/Actions/Interactions/Button.vue.d.ts +9 -0
- package/dist/runtime/editor/components/Actions/Interactions/index.vue +24 -88
- package/dist/runtime/editor/components/Actions/ItemDropdown/Item.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown/Item.vue +50 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown/Item.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown/index.vue +4 -22
- package/dist/runtime/editor/components/Actions/Title/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Actions/Title/index.vue +295 -0
- package/dist/runtime/editor/components/Actions/Title/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Actions/index.vue +24 -779
- package/dist/runtime/editor/components/AddListItem/index.vue +2 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +4 -2
- package/dist/runtime/editor/components/AppMenu/Inner.vue +12 -7
- package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +4 -9
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue +56 -194
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +4 -9
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +120 -145
- package/dist/runtime/editor/components/Avatar/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Avatar/index.vue +120 -0
- package/dist/runtime/editor/components/Avatar/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Banner/Inner.vue +1 -1
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/Banner/index.vue +21 -18
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue +35 -41
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +13 -19
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/BlockProxy/index.vue +56 -130
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +117 -48
- package/dist/runtime/editor/components/BundleSelector/Group.d.vue.ts +12 -0
- package/dist/runtime/editor/components/BundleSelector/Group.vue +28 -0
- package/dist/runtime/editor/components/BundleSelector/Group.vue.d.ts +12 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue +31 -211
- package/dist/runtime/editor/components/BundleSelector/types.d.ts +21 -0
- package/dist/runtime/editor/components/BundleSelector/types.js +0 -0
- package/dist/runtime/editor/components/Button/index.d.vue.ts +29 -0
- package/dist/runtime/editor/components/Button/index.vue +36 -0
- package/dist/runtime/editor/components/Button/index.vue.d.ts +29 -0
- package/dist/runtime/editor/components/ButtonAction/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/ButtonAction/index.vue +25 -0
- package/dist/runtime/editor/components/ButtonAction/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +11 -2
- package/dist/runtime/editor/components/Dialog/index.vue +164 -241
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +11 -2
- package/dist/runtime/editor/components/DiffApproval/Highlight/Item.d.vue.ts +6 -0
- package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue +28 -19
- package/dist/runtime/editor/components/DiffApproval/Highlight/Item.vue.d.ts +6 -0
- package/dist/runtime/editor/components/DiffApproval/Highlight/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +7 -119
- package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/DiffApproval/Toolbar/index.d.vue.ts +11 -2
- package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +115 -248
- package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue.d.ts +11 -2
- package/dist/runtime/editor/components/DiffApproval/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/DiffApproval/index.vue +6 -1
- package/dist/runtime/editor/components/DiffApproval/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/DiffViewer/DiffDisplay/index.vue +1 -1
- package/dist/runtime/editor/components/DiffViewer/State.vue +294 -297
- package/dist/runtime/editor/{features/analyze/Summary/Chart.d.vue.ts → components/DonutChart/index.d.vue.ts} +4 -4
- package/dist/runtime/editor/{features/analyze/Summary/Chart.vue → components/DonutChart/index.vue} +4 -3
- package/dist/runtime/editor/{features/analyze/Summary/Chart.vue.d.ts → components/DonutChart/index.vue.d.ts} +4 -4
- package/dist/runtime/editor/components/DraggableList.vue +71 -84
- package/dist/runtime/editor/components/Dropdown/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/Dropdown/index.vue +91 -89
- package/dist/runtime/editor/components/Dropdown/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/EditIndicator.d.vue.ts +0 -1
- package/dist/runtime/editor/components/EditIndicator.vue +105 -37
- package/dist/runtime/editor/components/EditIndicator.vue.d.ts +0 -1
- package/dist/runtime/editor/components/EditProvider.vue +29 -35
- package/dist/runtime/editor/components/FileDropHandler/index.vue +24 -20
- package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/FlexTextarea/index.vue +8 -4
- package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue +2 -2
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/Form/Datepicker/index.vue +29 -175
- package/dist/runtime/editor/components/Form/Number/index.d.vue.ts +36 -0
- package/dist/runtime/editor/components/Form/Number/index.vue +79 -0
- package/dist/runtime/editor/components/Form/Number/index.vue.d.ts +36 -0
- package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/Form/Radio/index.vue +2 -2
- package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/Form/RadioBox/index.d.vue.ts +33 -0
- package/dist/runtime/editor/components/Form/RadioBox/index.vue +40 -0
- package/dist/runtime/editor/components/Form/RadioBox/index.vue.d.ts +33 -0
- package/dist/runtime/editor/components/Form/RadioTabs/index.vue +55 -0
- package/dist/runtime/editor/components/Form/Search/index.d.vue.ts +88 -0
- package/dist/runtime/editor/components/Form/Search/index.vue +289 -0
- package/dist/runtime/editor/components/Form/Search/index.vue.d.ts +88 -0
- package/dist/runtime/editor/components/Form/Search/types.d.ts +19 -0
- package/dist/runtime/editor/components/Form/Search/types.js +0 -0
- package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +6 -2
- package/dist/runtime/editor/components/Form/Text/index.vue +12 -4
- package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +6 -2
- package/dist/runtime/editor/components/Form/TextDark/index.d.vue.ts +24 -0
- package/dist/runtime/editor/components/Form/TextDark/index.vue +56 -0
- package/dist/runtime/editor/components/Form/TextDark/index.vue.d.ts +24 -0
- package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +2 -0
- package/dist/runtime/editor/components/Form/Textarea/index.vue +13 -4
- package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +2 -0
- package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +12 -1
- package/dist/runtime/editor/components/Form/Toggle/index.vue +66 -216
- package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +12 -1
- package/dist/runtime/editor/components/FormOverlay/index.vue +17 -25
- package/dist/runtime/editor/components/Icon/index.vue +9 -3
- package/dist/runtime/editor/components/Indicators/index.vue +74 -147
- package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +7 -4
- package/dist/runtime/editor/components/InfoBox/index.vue +18 -69
- package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +7 -4
- package/dist/runtime/editor/components/InlineActions/Button/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/InlineActions/Button/index.vue +27 -0
- package/dist/runtime/editor/components/InlineActions/Button/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/InlineActions/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/InlineActions/index.vue +5 -0
- package/dist/runtime/editor/components/InlineActions/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue +56 -65
- package/dist/runtime/editor/components/Messages/Item/index.vue +1 -1
- package/dist/runtime/editor/components/Messages/index.vue +65 -74
- package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +2 -1
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +43 -209
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +2 -1
- package/dist/runtime/editor/components/Overlay/index.vue +52 -75
- package/dist/runtime/editor/components/Pagination/index.vue +18 -24
- package/dist/runtime/editor/components/Panel/Action/index.d.vue.ts +11 -0
- package/dist/runtime/editor/components/Panel/Action/index.vue +25 -0
- package/dist/runtime/editor/components/Panel/Action/index.vue.d.ts +11 -0
- package/dist/runtime/editor/components/Panel/AddButton/index.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Panel/AddButton/index.vue +17 -0
- package/dist/runtime/editor/components/Panel/AddButton/index.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Panel/Details/index.d.vue.ts +25 -0
- package/dist/runtime/editor/components/Panel/Details/index.vue +45 -0
- package/dist/runtime/editor/components/Panel/Details/index.vue.d.ts +25 -0
- package/dist/runtime/editor/components/Panel/Item/index.d.vue.ts +65 -0
- package/dist/runtime/editor/components/Panel/Item/index.vue +99 -0
- package/dist/runtime/editor/components/Panel/Item/index.vue.d.ts +65 -0
- package/dist/runtime/editor/components/Panel/Section/index.d.vue.ts +26 -0
- package/dist/runtime/editor/components/Panel/Section/index.vue +94 -0
- package/dist/runtime/editor/components/Panel/Section/index.vue.d.ts +26 -0
- package/dist/runtime/editor/components/Panel/Sheet/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/Panel/Sheet/index.vue +34 -0
- package/dist/runtime/editor/components/Panel/Sheet/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/Panel/Tabs/index.d.vue.ts +28 -0
- package/dist/runtime/editor/components/Panel/Tabs/index.vue +25 -0
- package/dist/runtime/editor/components/Panel/Tabs/index.vue.d.ts +28 -0
- package/dist/runtime/editor/components/Pill/index.d.vue.ts +28 -0
- package/dist/runtime/editor/components/Pill/index.vue +37 -0
- package/dist/runtime/editor/components/Pill/index.vue.d.ts +28 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +15 -16
- package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.vue +116 -248
- package/dist/runtime/editor/components/PluginConfigFormInline/index.vue +43 -58
- package/dist/runtime/editor/components/Popup/index.vue +56 -47
- package/dist/runtime/editor/components/PreviewProvider.vue +3 -3
- package/dist/runtime/editor/components/Reorder/index.d.vue.ts +53 -0
- package/dist/runtime/editor/components/Reorder/index.vue +123 -0
- package/dist/runtime/editor/components/Reorder/index.vue.d.ts +53 -0
- package/dist/runtime/editor/components/Resizable/index.d.vue.ts +10 -2
- package/dist/runtime/editor/components/Resizable/index.vue +84 -79
- package/dist/runtime/editor/components/Resizable/index.vue.d.ts +10 -2
- package/dist/runtime/editor/components/ResizableEditorView/index.d.vue.ts +26 -0
- package/dist/runtime/editor/components/ResizableEditorView/index.vue +76 -0
- package/dist/runtime/editor/components/ResizableEditorView/index.vue.d.ts +26 -0
- package/dist/runtime/editor/components/RichText/Editor/CleanTaskItem.d.ts +10 -0
- package/dist/runtime/editor/components/RichText/Editor/CleanTaskItem.js +59 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.vue +67 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/Link/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/index.vue +35 -0
- package/dist/runtime/editor/components/RichText/Editor/Panel/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.d.vue.ts +24 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.vue +44 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Emojis.vue.d.ts +24 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.d.vue.ts +23 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.vue +35 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/Mentions.vue.d.ts +23 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.vue +69 -0
- package/dist/runtime/editor/components/RichText/Editor/SuggestionList/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.d.vue.ts +18 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.vue +31 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Button/index.vue.d.ts +18 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.vue +13 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/Group/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.vue +7 -0
- package/dist/runtime/editor/components/RichText/Editor/Toolbar/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/RichText/Editor/index.d.vue.ts +31 -0
- package/dist/runtime/editor/components/RichText/Editor/index.vue +386 -0
- package/dist/runtime/editor/components/RichText/Editor/index.vue.d.ts +31 -0
- package/dist/runtime/editor/components/RichText/Renderer/enrichRichContent.d.ts +12 -0
- package/dist/runtime/editor/components/RichText/Renderer/enrichRichContent.js +42 -0
- package/dist/runtime/editor/components/RichText/Renderer/index.d.vue.ts +23 -0
- package/dist/runtime/editor/components/RichText/Renderer/index.vue +39 -0
- package/dist/runtime/editor/components/RichText/Renderer/index.vue.d.ts +23 -0
- package/dist/runtime/editor/components/ScaleToFit/index.vue +18 -21
- package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +2 -2
- package/dist/runtime/editor/components/ScheduleDate/index.vue +21 -12
- package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +2 -2
- package/dist/runtime/editor/components/SearchOverlay/index.d.vue.ts +3 -3
- package/dist/runtime/editor/components/SearchOverlay/index.vue +31 -112
- package/dist/runtime/editor/components/SearchOverlay/index.vue.d.ts +3 -3
- package/dist/runtime/editor/components/SidebarFloater/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/SidebarFloater/index.vue +45 -0
- package/dist/runtime/editor/components/SidebarFloater/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/StatusIcon/index.vue +42 -91
- package/dist/runtime/editor/components/SystemRequirements/index.vue +40 -46
- package/dist/runtime/editor/components/Tabs/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/Tabs/index.vue +5 -3
- package/dist/runtime/editor/components/Tabs/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/Toolbar/index.vue +155 -138
- package/dist/runtime/editor/components/Tooltip/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/Tooltip/index.vue +15 -5
- package/dist/runtime/editor/components/Tooltip/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/Transition/Collapse/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/Transition/Collapse/index.vue +20 -0
- package/dist/runtime/editor/components/Transition/Collapse/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/Transition/List/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/Transition/List/index.vue +31 -0
- package/dist/runtime/editor/components/Transition/List/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/Transition/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/Transition/index.vue +2 -1
- package/dist/runtime/editor/components/Transition/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/index.d.ts +11 -2
- package/dist/runtime/editor/components/index.js +10 -4
- package/dist/runtime/editor/composables/defineEditorComponent.d.ts +126 -0
- package/dist/runtime/editor/composables/defineEditorComponent.js +6 -0
- package/dist/runtime/editor/composables/index.d.ts +1 -0
- package/dist/runtime/editor/composables/index.js +4 -0
- package/dist/runtime/editor/composables/useDialog.d.ts +1 -1
- package/dist/runtime/editor/composables/useDialog.js +2 -2
- package/dist/runtime/editor/composables/useEditableFieldOverride.js +16 -8
- package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +17 -3
- package/dist/runtime/editor/composables/useGlobalBlokkliObject.js +6 -0
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +22 -2
- package/dist/runtime/editor/features/add-list/Actions/index.vue +5 -1
- package/dist/runtime/editor/features/add-list/Blocks/index.vue +6 -1
- package/dist/runtime/editor/features/add-list/Help/Item.vue +16 -5
- package/dist/runtime/editor/features/add-list/Help/index.vue +127 -168
- package/dist/runtime/editor/features/add-list/index.vue +171 -324
- package/dist/runtime/editor/features/analyze/Ignored/index.vue +6 -22
- package/dist/runtime/editor/features/analyze/Main.vue +49 -43
- package/dist/runtime/editor/features/analyze/Results/Results.vue +6 -28
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +19 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +23 -6
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +2 -4
- package/dist/runtime/editor/features/analyze/Results/Section.d.vue.ts +10 -0
- package/dist/runtime/editor/features/analyze/Results/Section.vue +42 -0
- package/dist/runtime/editor/features/analyze/Results/Section.vue.d.ts +10 -0
- package/dist/runtime/editor/features/analyze/Results/Status.vue +12 -6
- package/dist/runtime/editor/features/analyze/Summary/index.vue +19 -8
- package/dist/runtime/editor/features/analyze/index.vue +3 -454
- package/dist/runtime/editor/features/anchors/Overlay/index.vue +3 -11
- package/dist/runtime/editor/features/artboard/Overview/index.vue +6 -8
- package/dist/runtime/editor/features/artboard/Renderer.vue +40 -28
- package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +22 -63
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +38 -25
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +21 -85
- package/dist/runtime/editor/features/block-scheduler/index.vue +9 -65
- package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.vue +188 -0
- package/dist/runtime/editor/features/block-transfer/SummaryDialog/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/block-transfer/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/block-transfer/index.vue +235 -0
- package/dist/runtime/editor/features/block-transfer/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/block-transfer/types.d.ts +101 -0
- package/dist/runtime/editor/features/block-transfer/types.js +0 -0
- package/dist/runtime/editor/features/breadcrumbs/Crumb/index.d.vue.ts +31 -0
- package/dist/runtime/editor/features/breadcrumbs/Crumb/index.vue +105 -0
- package/dist/runtime/editor/features/breadcrumbs/Crumb/index.vue.d.ts +31 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue +56 -195
- package/dist/runtime/editor/features/breadcrumbs/types.d.ts +17 -0
- package/dist/runtime/editor/features/breadcrumbs/types.js +0 -0
- package/dist/runtime/editor/features/changelog/Dialog/index.vue +14 -68
- package/dist/runtime/editor/features/changelog/changelog.json +8 -0
- package/dist/runtime/editor/features/changelog/index.vue +1 -1
- package/dist/runtime/editor/features/clipboard/DropElement/index.vue +137 -152
- package/dist/runtime/editor/features/clipboard/index.vue +24 -143
- package/dist/runtime/editor/features/clipboard/types.d.ts +9 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +6 -3
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +4 -1
- package/dist/runtime/editor/features/comments/AddForm/index.vue +25 -14
- package/dist/runtime/editor/features/comments/Comment/Actions/index.d.vue.ts +27 -0
- package/dist/runtime/editor/features/comments/Comment/Actions/index.vue +93 -0
- package/dist/runtime/editor/features/comments/Comment/Actions/index.vue.d.ts +27 -0
- package/dist/runtime/editor/features/comments/Comment/EditForm/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/comments/Comment/EditForm/index.vue +38 -0
- package/dist/runtime/editor/features/comments/Comment/EditForm/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/comments/Comment/Meta/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/comments/Comment/Meta/index.vue +30 -0
- package/dist/runtime/editor/features/comments/Comment/Meta/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +16 -14
- package/dist/runtime/editor/features/comments/Comment/index.vue +112 -28
- package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +16 -14
- package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +25 -10
- package/dist/runtime/editor/features/comments/CommentInput/index.vue +77 -19
- package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +25 -10
- package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +32 -5
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +85 -47
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +32 -5
- package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +29 -7
- package/dist/runtime/editor/features/comments/Overlay/index.vue +42 -11
- package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +29 -7
- package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.vue +58 -0
- package/dist/runtime/editor/features/comments/Sidebar/AddForm/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/comments/Sidebar/index.d.vue.ts +50 -0
- package/dist/runtime/editor/features/comments/Sidebar/index.vue +111 -0
- package/dist/runtime/editor/features/comments/Sidebar/index.vue.d.ts +50 -0
- package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.vue +58 -0
- package/dist/runtime/editor/features/comments/Thread/ReplyForm/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/comments/Thread/index.d.vue.ts +44 -0
- package/dist/runtime/editor/features/comments/Thread/index.vue +142 -0
- package/dist/runtime/editor/features/comments/Thread/index.vue.d.ts +44 -0
- package/dist/runtime/editor/features/comments/index.vue +85 -259
- package/dist/runtime/editor/features/comments/types.d.ts +42 -8
- package/dist/runtime/editor/features/debug/Main.vue +148 -146
- package/dist/runtime/editor/features/debug/Section/Logging.vue +5 -2
- package/dist/runtime/editor/features/debug/Section/Rendering.vue +3 -3
- package/dist/runtime/editor/features/delete/index.vue +1 -1
- package/dist/runtime/editor/features/dev-mode/index.vue +31 -35
- package/dist/runtime/editor/features/diff/index.vue +1 -1
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +123 -1
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +51 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue +143 -313
- package/dist/runtime/editor/features/dragging-overlay/types.d.ts +28 -0
- package/dist/runtime/editor/features/dragging-overlay/types.js +0 -0
- package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.vue +26 -24
- package/dist/runtime/editor/features/edit/index.vue +3 -6
- package/dist/runtime/editor/features/edit-form/index.vue +1 -1
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +17 -15
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +1 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +48 -51
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +9 -1
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +137 -183
- package/dist/runtime/editor/features/editable-mask/index.vue +5 -5
- package/dist/runtime/editor/features/entity-title/index.vue +15 -3
- package/dist/runtime/editor/features/exit/index.vue +1 -1
- package/dist/runtime/editor/features/fragments/Dialog/index.vue +8 -91
- package/dist/runtime/editor/features/help/Shortcuts/index.vue +48 -60
- package/dist/runtime/editor/features/help/index.vue +10 -11
- package/dist/runtime/editor/features/highlights/Renderer/fragment.glsl +1 -1
- package/dist/runtime/editor/features/highlights/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/history/List/index.vue +217 -208
- package/dist/runtime/editor/features/history/index.vue +2 -2
- package/dist/runtime/editor/features/hover/Renderer/index.vue +4 -2
- package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +3 -1
- package/dist/runtime/editor/features/hover/index.vue +2 -2
- package/dist/runtime/editor/features/import-existing/Dialog/Item.vue +19 -32
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +39 -26
- package/dist/runtime/editor/features/import-existing/index.vue +1 -1
- package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/index.vue +2 -2
- package/dist/runtime/editor/features/library/{ReusableDialog → DialogMakeReusable}/index.vue +25 -22
- package/dist/runtime/editor/features/library/index.vue +4 -4
- package/dist/runtime/editor/features/media-library/Library/index.vue +1 -1
- package/dist/runtime/editor/features/media-library/index.vue +126 -182
- package/dist/runtime/editor/features/multi-select/index.vue +2 -6
- package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +2 -2
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +6 -3
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +2 -2
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +12 -7
- package/dist/runtime/editor/features/options/Form/Color/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +1 -0
- package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue +4 -1
- package/dist/runtime/editor/features/options/Form/Item.vue +6 -1
- package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +10 -13
- package/dist/runtime/editor/features/options/Form/Number/index.vue +79 -13
- package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +10 -13
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +1 -0
- package/dist/runtime/editor/features/options/Form/Range/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/Text/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/index.vue +34 -24
- package/dist/runtime/editor/features/options/index.vue +700 -695
- package/dist/runtime/editor/features/preview-grant/QrCode/index.vue +17 -10
- package/dist/runtime/editor/features/preview-grant/index.vue +1 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.vue +53 -9
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +36 -12
- package/dist/runtime/editor/features/publish/Dialog/Summary.vue +41 -30
- package/dist/runtime/editor/features/publish/Dialog/index.vue +141 -133
- package/dist/runtime/editor/features/publish/index.vue +3 -838
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue +1 -1
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +163 -179
- package/dist/runtime/editor/features/revert/index.vue +1 -1
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +1 -1
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +1 -1
- package/dist/runtime/editor/features/search/index.vue +340 -442
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +33 -58
- package/dist/runtime/editor/features/selection/AddButtons/index.vue +23 -7
- package/dist/runtime/editor/features/selection/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/selection/types.d.ts +22 -0
- package/dist/runtime/editor/features/selection/types.js +0 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +30 -40
- package/dist/runtime/editor/features/settings/Dialog/index.vue +31 -24
- package/dist/runtime/editor/features/settings/index.vue +2 -151
- package/dist/runtime/editor/features/structure/List/Item/index.vue +3 -4
- package/dist/runtime/editor/features/structure/index.vue +132 -152
- package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/index.vue +1 -1
- package/dist/runtime/editor/features/templates/{CreateDialog → DialogCreateTemplate}/index.vue +11 -12
- package/dist/runtime/editor/features/templates/{ManageDialog → DialogManageTemplates}/Item.vue +35 -30
- package/dist/runtime/editor/features/templates/DialogManageTemplates/index.vue +117 -0
- package/dist/runtime/editor/features/templates/index.vue +7 -5
- package/dist/runtime/editor/features/theme/index.vue +38 -56
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue +15 -30
- package/dist/runtime/editor/features/tour/Overlay/index.vue +137 -196
- package/dist/runtime/editor/features/transform/Dialog/index.vue +102 -111
- package/dist/runtime/editor/features/translations/AutoTranslate/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/translations/AutoTranslate/index.vue +138 -0
- package/dist/runtime/editor/features/translations/AutoTranslate/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/translations/Banner/index.vue +13 -7
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue +58 -46
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue +51 -35
- package/dist/runtime/editor/features/translations/CsvDialog/index.vue +4 -5
- package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.vue +49 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/Dropdown/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.vue +48 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/InlineButtons/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/index.vue +64 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/types.d.ts +8 -0
- package/dist/runtime/editor/features/translations/LanguageSwitcher/types.js +0 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.d.vue.ts +5 -18
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue +18 -54
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue.d.ts +5 -18
- package/dist/runtime/editor/features/translations/TranslateDialog/index.vue +123 -106
- package/dist/runtime/editor/features/translations/index.vue +26 -239
- package/dist/runtime/editor/features/validations/Overlay/index.vue +60 -117
- package/dist/runtime/editor/features/validations/index.vue +16 -35
- package/dist/runtime/editor/features/workspace/Overlay/Item.vue +9 -17
- package/dist/runtime/editor/features/workspace/Overlay/index.vue +4 -2
- package/dist/runtime/editor/features/workspace/index.vue +1 -1
- package/dist/runtime/editor/helpers/diff/index.d.ts +12 -0
- package/dist/runtime/editor/helpers/diff/index.js +9 -0
- package/dist/runtime/editor/helpers/options/index.js +7 -1
- package/dist/runtime/editor/helpers/string/index.d.ts +8 -0
- package/dist/runtime/editor/helpers/string/index.js +7 -0
- package/dist/runtime/editor/icons/svg/ghost.svg +1 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.vue +2 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +3 -2
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +13 -3
- package/dist/runtime/editor/plugins/ItemAction/index.vue +36 -16
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +13 -3
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +3 -3
- package/dist/runtime/editor/plugins/Sidebar/index.vue +212 -302
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +3 -3
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue +4 -2
- package/dist/runtime/editor/plugins/ViewOption/index.vue +2 -0
- package/dist/runtime/editor/providers/config.d.ts +8 -0
- package/dist/runtime/editor/providers/config.js +18 -0
- package/dist/runtime/editor/providers/directive.d.ts +8 -0
- package/dist/runtime/editor/providers/directive.js +6 -0
- package/dist/runtime/editor/providers/state.d.ts +0 -16
- package/dist/runtime/editor/providers/state.js +1 -19
- package/dist/runtime/editor/providers/texts.d.ts +8 -1
- package/dist/runtime/editor/providers/texts.js +5 -2
- package/dist/runtime/editor/providers/ui.d.ts +43 -2
- package/dist/runtime/editor/providers/ui.js +43 -2
- package/dist/runtime/editor/providers/user.d.ts +20 -0
- package/dist/runtime/editor/providers/user.js +14 -0
- package/dist/runtime/editor/translations/de.json +310 -306
- package/dist/runtime/editor/translations/fr.json +38 -132
- package/dist/runtime/editor/translations/gsw_CH.json +250 -246
- package/dist/runtime/editor/translations/it.json +38 -132
- package/dist/runtime/editor/types/app.d.ts +4 -0
- package/dist/runtime/editor/types/clipboard.d.ts +53 -0
- package/dist/runtime/editor/types/clipboard.js +23 -0
- package/dist/runtime/editor/types/config.d.ts +5 -0
- package/dist/runtime/editor/types/config.js +0 -0
- package/dist/runtime/editor/types/permissions.d.ts +1 -0
- package/dist/runtime/editor/types/ui.d.ts +1 -0
- package/dist/runtime/editor/types/user.d.ts +9 -0
- package/dist/runtime/editor/types/user.js +0 -0
- package/dist/runtime/helpers/runtimeHelpers/index.d.ts +1 -1
- package/dist/runtime/helpers/runtimeHelpers/index.js +7 -0
- package/dist/runtime/types/definitions.d.ts +3 -0
- package/dist/shared/{editor.Bpw1EP57.d.mts → editor.D28NbXr3.d.mts} +20 -4
- package/dist/shared/{editor.FygP6XeF.mjs → editor.Gu7mgJ5Q.mjs} +33 -1
- package/dist/types.d.mts +1 -1
- package/package.json +29 -15
- package/dist/chunks/tailwindConfig.mjs +0 -222
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewCsv/index.vue +0 -31
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewHtml/index.vue +0 -12
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/PreviewMarkdown/index.vue +0 -17
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue +0 -38
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue +0 -61
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue +0 -28
- package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue +0 -161
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.d.vue.ts +0 -6
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue +0 -24
- package/dist/modules/agent/runtime/app/tools/update_text_fields/Details/index.vue.d.ts +0 -6
- package/dist/modules/agent/runtime/server/helpers.d.ts +0 -77
- package/dist/modules/agent/runtime/server/helpers.js +0 -354
- package/dist/modules/charts/runtime/chartTypes/area.d.ts +0 -7
- package/dist/modules/charts/runtime/chartTypes/area.js +0 -68
- package/dist/modules/charts/runtime/chartTypes/define.d.ts +0 -2
- package/dist/modules/charts/runtime/chartTypes/define.js +0 -3
- package/dist/modules/charts/runtime/chartTypes/donut.d.ts +0 -6
- package/dist/modules/charts/runtime/chartTypes/donut.js +0 -45
- package/dist/modules/charts/runtime/chartTypes/heatmap.js +0 -54
- package/dist/modules/charts/runtime/chartTypes/index.d.ts +0 -39
- package/dist/modules/charts/runtime/chartTypes/index.js +0 -47
- package/dist/modules/charts/runtime/chartTypes/line.d.ts +0 -7
- package/dist/modules/charts/runtime/chartTypes/line.js +0 -68
- package/dist/modules/charts/runtime/chartTypes/pie.d.ts +0 -5
- package/dist/modules/charts/runtime/chartTypes/pie.js +0 -28
- package/dist/modules/charts/runtime/chartTypes/radar.d.ts +0 -7
- package/dist/modules/charts/runtime/chartTypes/radar.js +0 -52
- package/dist/modules/charts/runtime/chartTypes/radialBar.d.ts +0 -6
- package/dist/modules/charts/runtime/chartTypes/radialBar.js +0 -44
- package/dist/modules/charts/runtime/chartTypes/shared.d.ts +0 -67
- package/dist/modules/charts/runtime/chartTypes/types.d.ts +0 -29
- package/dist/runtime/editor/components/AutoHeight/index.vue +0 -55
- package/dist/runtime/editor/features/templates/ManageDialog/index.vue +0 -128
- /package/dist/{modules/charts/runtime/chartTypes/types.js → global/types/colorOptions.js} +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewCode/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewCode/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewCsv/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewCsv/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewHtml/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewHtml/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewMarkdown/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Attachment/PreviewMarkdown/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Assistant/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Assistant/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Tool/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Tool/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Unknown/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/Unknown/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/index.vue +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Item/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Thinking/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/{features/agent/Panel → components}/Conversation/Thinking/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/{tools/delegate_text_rewrite/Details → components/FieldDiffDetails}/index.vue +0 -0
- /package/dist/modules/agent/runtime/app/features/agent/{Panel/DebugGallery → ConversationsAdmin/ConversationsTab}/index.d.vue.ts +0 -0
- /package/dist/modules/agent/runtime/app/features/agent/{Panel/DebugGallery → ConversationsAdmin/ConversationsTab}/index.vue.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/tools/{add_content_search_paragraph → add_content_search_paragraphs}/index.d.ts +0 -0
- /package/dist/modules/agent/runtime/app/tools/{check_readability → check_readability_for_texts}/index.d.ts +0 -0
- /package/dist/modules/agent/runtime/server/{streamParser.d.ts → classes/FieldStreamParser/index.d.ts} +0 -0
- /package/dist/modules/agent/runtime/server/{streamParser.js → classes/FieldStreamParser/index.js} +0 -0
- /package/dist/modules/agent/runtime/server/{agentPrompt.js → helpers/agentPrompt.js} +0 -0
- /package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/Item/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/Item/index.vue +0 -0
- /package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/Item/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/library/{LibraryDialog → DialogBrowseLibrary}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/library/{ReusableDialog → DialogMakeReusable}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/library/{ReusableDialog → DialogMakeReusable}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/Item/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/Item/index.vue +0 -0
- /package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/Item/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/templates/{Dialog → DialogBrowseTemplates}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/templates/{CreateDialog → DialogCreateTemplate}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/templates/{CreateDialog → DialogCreateTemplate}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/templates/{ManageDialog → DialogManageTemplates}/Item.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/templates/{ManageDialog → DialogManageTemplates}/Item.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/templates/{ManageDialog → DialogManageTemplates}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/templates/{ManageDialog → DialogManageTemplates}/index.vue.d.ts +0 -0
|
@@ -9,14 +9,13 @@
|
|
|
9
9
|
"addButtonBundleBefore": "Aggiungi «@bundle» prima",
|
|
10
10
|
"addButtonBundleInsideField": "Aggiungi «@bundle» in @parentBundle » @fieldLabel",
|
|
11
11
|
"addButtonInsideField": "Aggiungi in @parentBundle » @fieldLabel...",
|
|
12
|
-
"addCommentToItem": "Commenta",
|
|
13
12
|
"addListItemFavoriteAdd": "Aggiungi ai preferiti",
|
|
14
13
|
"addListItemFavoriteRemove": "Rimuovi dai preferiti",
|
|
15
14
|
"addListSidebarTitle": "Aggiungi blocchi",
|
|
16
15
|
"aiAgentAnalyzeContentDone": "@count risultati analizzati",
|
|
17
16
|
"aiAgentAnalyzeContentRunning": "Analisi del contenuto...",
|
|
17
|
+
"aiAgentBatchRewriteNoChanges": "Nessuna modifica rilevata",
|
|
18
18
|
"aiAgentPastedText": "Testo incollato",
|
|
19
|
-
"aiAgentPlaceholderReply": "Rispondi...",
|
|
20
19
|
"aiAgentRemoveAttachment": "Rimuovi allegato",
|
|
21
20
|
"aiAgentTokensCached": "Token di input riutilizzati (più economici)",
|
|
22
21
|
"aiAgentTokensCachedLabel": "Cache",
|
|
@@ -30,160 +29,77 @@
|
|
|
30
29
|
"analyzerReadabiliyCouldBeSimpler": "Potrebbe essere più semplice (@lang).",
|
|
31
30
|
"analyzerReadabiliyOkDescription": "Testo che potrebbe essere più facile da leggere.",
|
|
32
31
|
"analyzerReadabiliyOkTitle": "Il testo potrebbe essere più semplice",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
32
|
+
"chartsAdvancedConfigHelp": "Incolla un oggetto di opzioni ECharts. Sono ammessi chiavi senza virgolette, apostrofi e virgole finali. Le funzioni (ad esempio formatter personalizzati) non sono supportate.",
|
|
33
|
+
"chartsAdvancedConfigTitle": "Configurazione ECharts",
|
|
34
|
+
"chartsAdvancedNoTranslations": "I grafici avanzati non hanno stringhe traducibili — la configurazione ECharts viene memorizzata così com'è.",
|
|
35
|
+
"chartsAdvancedParseError": "Errore di analisi",
|
|
36
|
+
"chartsAdvancedParseErrorNotObject": "La configurazione deve essere un oggetto.",
|
|
35
37
|
"chartsBarHorizontal": "Orizzontale",
|
|
36
38
|
"chartsBarStacked": "Impilato",
|
|
37
39
|
"chartsBorderRadius": "Raggio angoli",
|
|
38
40
|
"chartsBorderRadiusLarge": "Grande",
|
|
39
41
|
"chartsBorderRadiusNone": "Nessuno",
|
|
40
42
|
"chartsBorderRadiusSmall": "Piccolo",
|
|
43
|
+
"chartsCategoryFilter": "Asse delle categorie filtrabile",
|
|
44
|
+
"chartsCategoryFilterLabel": "Etichetta del filtro",
|
|
41
45
|
"chartsDataLabels": "Etichette dati",
|
|
42
|
-
"chartsDonutShowLabels": "Mostra etichette",
|
|
43
46
|
"chartsDonutShowTotal": "Mostra totale",
|
|
47
|
+
"chartsFootnotesHelp": "Le note a piè di pagina sono numerate automaticamente. Riferiscile nelle etichette di categoria o serie con {1}, {2}, ecc.",
|
|
44
48
|
"chartsGridLines": "Linee griglia",
|
|
45
49
|
"chartsLegendPosition": "Posizione legenda",
|
|
46
|
-
"chartsLineCurved": "Curve morbide",
|
|
47
|
-
"chartsLineMarkers": "Mostra marcatori",
|
|
48
50
|
"chartsOpacityLight": "Leggero",
|
|
49
51
|
"chartsOpacitySolid": "Solido",
|
|
50
52
|
"chartsOpacityTransparent": "Trasparente",
|
|
51
|
-
"chartsPieShowLabels": "Mostra etichette",
|
|
52
53
|
"chartsPositionBottom": "In basso",
|
|
53
54
|
"chartsPositionRight": "A destra",
|
|
54
55
|
"chartsPositionTop": "In alto",
|
|
55
56
|
"chartsRadarFillOpacity": "Opacità riempimento",
|
|
56
|
-
"chartsRadarMarkers": "Mostra marcatori",
|
|
57
|
-
"chartsRadialBarShowLabels": "Mostra etichette",
|
|
58
|
-
"chartsRadialBarShowTotal": "Mostra totale",
|
|
59
|
-
"chartsRotationAuto": "Automatico",
|
|
60
57
|
"chartsStrokeMedium": "Medio",
|
|
61
58
|
"chartsStrokeThick": "Spesso",
|
|
62
59
|
"chartsStrokeThin": "Sottile",
|
|
63
60
|
"chartsStrokeWidth": "Spessore linea",
|
|
61
|
+
"chartsTranslationsSeries": "Serie",
|
|
62
|
+
"chartsTranslationsSource": "Sorgente",
|
|
63
|
+
"chartsTypeAdvancedDescription": "Incolla una configurazione ECharts grezza. Controllo completo, senza tabella dati strutturata.",
|
|
64
|
+
"chartsTypeAreaDescription": "Mostra le tendenze nel tempo con aree piene, utile per evidenziare volumi o valori cumulati.",
|
|
65
|
+
"chartsTypeBarDescription": "Confronta valori tra categorie utilizzando barre rettangolari, ideale per classifiche e confronti diretti.",
|
|
66
|
+
"chartsTypeDonutDescription": "Mostra le parti di un insieme sotto forma di anello, lasciando spazio al centro per un totale o un valore riassuntivo.",
|
|
64
67
|
"chartsTypeHeatmap": "Mappa di calore",
|
|
68
|
+
"chartsTypeHeatmapDescription": "Visualizza valori su due dimensioni tramite l'intensità del colore per evidenziare schemi e valori anomali.",
|
|
69
|
+
"chartsTypeLineDescription": "Collega i punti dati con linee per mostrare tendenze e variazioni su un intervallo continuo.",
|
|
70
|
+
"chartsTypePickerSubmit": "Applica",
|
|
71
|
+
"chartsTypePickerTitle": "Scegli un tipo di grafico",
|
|
72
|
+
"chartsTypePieDescription": "Suddivide un cerchio in spicchi per rappresentare le proporzioni di un insieme.",
|
|
65
73
|
"chartsTypeRadar": "Radar",
|
|
74
|
+
"chartsTypeRadarDescription": "Traccia più variabili su assi radiali per confrontare punti di forza e debolezza tra categorie.",
|
|
66
75
|
"chartsTypeRadialBar": "Barra radiale",
|
|
76
|
+
"chartsTypeRadialBarDescription": "Mostra avanzamento o percentuali come barre circolari concentriche, adatto a KPI e monitoraggio degli obiettivi.",
|
|
67
77
|
"chartsXAxisRotation": "Rotazione etichette",
|
|
78
|
+
"chartsYAxisMin": "Inizio asse Y",
|
|
68
79
|
"close": "Chiudi",
|
|
80
|
+
"commentBlocksCountOne": "1 blocco",
|
|
81
|
+
"commentDeleteConfirmText": "Il commento e tutte le sue risposte verranno eliminati definitivamente. Questa azione non può essere annullata.",
|
|
82
|
+
"commentDeleteConfirmTitle": "Eliminare il commento?",
|
|
83
|
+
"commentDeleteReplyConfirmText": "La risposta verrà eliminata definitivamente. Questa azione non può essere annullata.",
|
|
84
|
+
"commentDeleteReplyConfirmTitle": "Eliminare la risposta?",
|
|
85
|
+
"commentEdited": "modificato",
|
|
86
|
+
"commentResolvedLabel": "Risolto",
|
|
69
87
|
"commentSave": "Salva commento",
|
|
70
88
|
"comments": "Commenti",
|
|
71
|
-
"
|
|
89
|
+
"commentsAllResolved": "Tutti i commenti sono risolti. Attiva «Mostra risolti» per vederli.",
|
|
90
|
+
"commentsCountOne": "1 commento",
|
|
91
|
+
"commentsCountOther": "@count commenti",
|
|
92
|
+
"commentsEmpty": "Nessun commento.",
|
|
93
|
+
"commentsMarkAsResolved": "Segna come risolto",
|
|
94
|
+
"commentsMarkAsUnresolved": "Segna come non risolto",
|
|
95
|
+
"commentsShowResolved": "Mostra risolti",
|
|
72
96
|
"deleteError": "L'elemento non può essere rimosso.",
|
|
73
97
|
"duplicate": "Duplica",
|
|
74
98
|
"duplicateError": "Gli elementi non possono essere duplicati.",
|
|
75
99
|
"edit": "Modifica",
|
|
76
|
-
"editIndicatorLabel": "Modifica elementi",
|
|
77
100
|
"exitDescription": "Chiudi l'editor senza pubblicare",
|
|
78
|
-
"exitTitle": "Chiudi",
|
|
79
101
|
"failedToConvert": "L'elemento non può essere convertito.",
|
|
80
102
|
"failedToTransform": "The action \"@name\" could not be executed.",
|
|
81
|
-
"feature_add-list_description": "Fornisce il contenitore per visualizzare un elenco di blocchi da aggiungere o azioni.",
|
|
82
|
-
"feature_add-list_label": "Elenco di aggiunta",
|
|
83
|
-
"feature_analyze_description": "Analizza i blocchi e la pagina per SEO, accessibilità, ecc.",
|
|
84
|
-
"feature_analyze_label": "Analizza",
|
|
85
|
-
"feature_anchors_description": "Visualizza indicatori per blocchi con ID di ancoraggio",
|
|
86
|
-
"feature_anchors_label": "Ancoraggi",
|
|
87
|
-
"feature_artboard_description": "Avvolge l'intera pagina in un'area di lavoro che può essere ingrandita e spostata con il mouse.",
|
|
88
|
-
"feature_artboard_label": "Area di lavoro",
|
|
89
|
-
"feature_artboard_setting_momentum_description": "Applica animazioni fluide durante lo scorrimento o lo zoom dell'area di lavoro.",
|
|
90
|
-
"feature_artboard_setting_momentum_label": "Usa scorrimento fluido",
|
|
91
|
-
"feature_artboard_setting_persist_description": "Memorizza e ripristina l'ultima posizione e il fattore di zoom dell'area di lavoro.",
|
|
92
|
-
"feature_artboard_setting_persist_label": "Mantieni posizione e zoom",
|
|
93
|
-
"feature_artboard_setting_scrollSpeed_label": "Velocità di scorrimento dell'area di lavoro",
|
|
94
|
-
"feature_clipboard_description": "Fornisce l'integrazione degli appunti per copiare/incollare blocchi esistenti o incollare contenuti supportati come testo o immagini.",
|
|
95
|
-
"feature_clipboard_label": "Appunti",
|
|
96
|
-
"feature_command-palette_description": "Fornisce una tavolozza di comandi con ricerca per accedere alla maggior parte delle funzionalità dell'interfaccia con la tastiera.",
|
|
97
|
-
"feature_command-palette_label": "Tavolozza di comandi",
|
|
98
|
-
"feature_comments_description": "Fornisce la funzionalità di commento per i blocchi.",
|
|
99
|
-
"feature_comments_label": "Commenti",
|
|
100
|
-
"feature_conversions_description": "Fornisce azioni di blocco per convertire uno o più blocchi in un tipo diverso.",
|
|
101
|
-
"feature_conversions_label": "Conversioni",
|
|
102
|
-
"feature_debug_description": "Fornisce la funzionalità di debug.",
|
|
103
|
-
"feature_debug_label": "Debug",
|
|
104
|
-
"feature_delete_description": "Fornisce un'azione per eliminare uno o più blocchi.",
|
|
105
|
-
"feature_delete_label": "Elimina",
|
|
106
|
-
"feature_diff_description": "Visualizza un differenziale di tutte le modifiche nello stato di modifica.",
|
|
107
|
-
"feature_diff_label": "Differenze",
|
|
108
|
-
"feature_dragging-overlay_description": "Visualizza una sovrapposizione durante il trascinamento o il posizionamento di un blocco.",
|
|
109
|
-
"feature_dragging-overlay_label": "Sovrapposizione di trascinamento",
|
|
110
|
-
"feature_duplicate_description": "Fornisce un'azione per duplicare uno o più blocchi sul posto.",
|
|
111
|
-
"feature_duplicate_label": "Duplica",
|
|
112
|
-
"feature_edit-form_description": "Ascolta gli eventi di modifica e visualizza un iframe contenente il modulo di modifica.",
|
|
113
|
-
"feature_edit-form_label": "Modulo di modifica",
|
|
114
|
-
"feature_edit_description": "Fornisce un'azione per modificare un blocco.",
|
|
115
|
-
"feature_edit_label": "Modifica",
|
|
116
|
-
"feature_editable-field_description": "Implementa una sovrapposizione di modulo per modificare un singolo campo di un blocco.",
|
|
117
|
-
"feature_editable-field_label": "Campo modificabile",
|
|
118
|
-
"feature_editable-mask_description": "Fornisce un'opzione di visualizzazione per nascondere le parti non modificabili della pagina.",
|
|
119
|
-
"feature_editable-mask_label": "Maschera modificabile",
|
|
120
|
-
"feature_entity-title_description": "Visualizza il titolo e lo stato dell'entità della pagina.",
|
|
121
|
-
"feature_entity-title_label": "Titolo dell'entità",
|
|
122
|
-
"feature_exit_description": "Fornisce un pulsante di menu per uscire dall'editor senza salvare.",
|
|
123
|
-
"feature_exit_label": "Esci",
|
|
124
|
-
"feature_fragments_description": "Consente di aggiungere frammenti di contenuto definiti dal frontend.",
|
|
125
|
-
"feature_fragments_label": "Frammenti",
|
|
126
|
-
"feature_grid_description": "Fornisce un'opzione di visualizzazione per visualizzare una griglia.",
|
|
127
|
-
"feature_grid_label": "Griglia",
|
|
128
|
-
"feature_help_description": "Fornisce un pannello della barra laterale con informazioni utili su come utilizzare blökkli.",
|
|
129
|
-
"feature_help_label": "Aiuto",
|
|
130
|
-
"feature_history_description": "Implementa il supporto per le funzionalità di cronologia (annulla, ripeti, elenco delle mutazioni).",
|
|
131
|
-
"feature_history_label": "Cronologia",
|
|
132
|
-
"feature_history_setting_useMouseButtons_description": "Quando abilitato, è possibile utilizzare i pulsanti indietro/avanti del mouse per annullare e ripetere.",
|
|
133
|
-
"feature_history_setting_useMouseButtons_label": "Usa i pulsanti del mouse per annulla/ripeti",
|
|
134
|
-
"feature_import-existing_description": "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità.",
|
|
135
|
-
"feature_import-existing_label": "Importa contenuto esistente",
|
|
136
|
-
"feature_import-existing_setting_showDialogWhenEmpty_description": "Visualizza la finestra di dialogo di importazione all'avvio di blökkli se la pagina è vuota.",
|
|
137
|
-
"feature_import-existing_setting_showDialogWhenEmpty_label": "Mostra finestra di dialogo di importazione all'avvio",
|
|
138
|
-
"feature_library_description": "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili.",
|
|
139
|
-
"feature_library_label": "Biblioteca",
|
|
140
|
-
"feature_media-library_description": "Implementa una biblioteca multimediale per trascinare e rilasciare facilmente media come immagini o video.",
|
|
141
|
-
"feature_media-library_label": "Biblioteca multimediale",
|
|
142
|
-
"feature_multi-select_description": "Implementa il supporto per la selezione di più blocchi utilizzando un rettangolo di selezione.",
|
|
143
|
-
"feature_multi-select_label": "Selezione multipla",
|
|
144
|
-
"feature_options_description": "Visualizza il modulo delle opzioni per uno o più blocchi.",
|
|
145
|
-
"feature_options_label": "Opzioni",
|
|
146
|
-
"feature_ownership_description": "Visualizza un grande pulsante per prendere la proprietà dello stato di modifica corrente.",
|
|
147
|
-
"feature_ownership_label": "Proprietà",
|
|
148
|
-
"feature_preview-grant_description": "Fornisce un pulsante per aprire una finestra di dialogo con un codice QR per visualizzare l'anteprima della pagina su uno smartphone.",
|
|
149
|
-
"feature_preview-grant_label": "Accesso all'anteprima",
|
|
150
|
-
"feature_preview_description": "Fornisce un pulsante per aprire un'anteprima in una nuova finestra.",
|
|
151
|
-
"feature_preview_label": "Anteprima",
|
|
152
|
-
"feature_proxy_view_description": "Visualizza i blocchi come struttura nell'anteprima.",
|
|
153
|
-
"feature_proxy_view_label": "Vista strutturata",
|
|
154
|
-
"feature_publish_description": "Fornisce un pulsante di menu per pubblicare le modifiche dell'entità corrente.",
|
|
155
|
-
"feature_publish_label": "Pubblica",
|
|
156
|
-
"feature_publish_setting_closeAfterPublish_description": "Chiude immediatamente l'editor dopo una pubblicazione o un salvataggio riusciti.",
|
|
157
|
-
"feature_publish_setting_closeAfterPublish_label": "Chiudi editor dopo la pubblicazione",
|
|
158
|
-
"feature_responsive-preview_description": "Fornisce un'anteprima responsive dello stato di modifica corrente in un iframe.",
|
|
159
|
-
"feature_responsive-preview_label": "Anteprima responsive",
|
|
160
|
-
"feature_revert_description": "Fornisce un pulsante di menu per annullare tutte le modifiche effettuate sull'entità corrente.",
|
|
161
|
-
"feature_revert_label": "Annulla",
|
|
162
|
-
"feature_search_description": "Fornisce una sovrapposizione con scorciatoia per cercare blocchi nella pagina corrente o contenuto esistente da aggiungere come blocchi.",
|
|
163
|
-
"feature_search_label": "Cerca",
|
|
164
|
-
"feature_selection_description": "Visualizza una sovrapposizione che evidenzia i blocchi selezionati.",
|
|
165
|
-
"feature_selection_label": "Selezione",
|
|
166
|
-
"feature_settings_description": "Fornisce un pulsante di menu per visualizzare una finestra di dialogo delle impostazioni.",
|
|
167
|
-
"feature_settings_label": "Impostazioni",
|
|
168
|
-
"feature_settings_setting_lowPerformanceMode_description": "Riduce le animazioni e l'interattività al minimo per dispositivi con prestazioni basse.",
|
|
169
|
-
"feature_settings_setting_lowPerformanceMode_label": "Abilita modalità basse prestazioni",
|
|
170
|
-
"feature_settings_setting_resetAllSettings_label": "Ripristina tutte le impostazioni",
|
|
171
|
-
"feature_settings_setting_useAnimations_description": "Anima elementi dell'interfaccia come finestre di dialogo o cassetti, o interazioni come trascina e rilascia o modifiche di scorrimento.",
|
|
172
|
-
"feature_settings_setting_useAnimations_label": "Usa animazioni",
|
|
173
|
-
"feature_structure_description": "Fornisce un pulsante della barra laterale per visualizzare un elenco strutturato di tutti i blocchi nella pagina corrente.",
|
|
174
|
-
"feature_structure_label": "Struttura",
|
|
175
|
-
"feature_theme_description": "Implementa un editor di temi.",
|
|
176
|
-
"feature_theme_label": "Tema",
|
|
177
|
-
"feature_touch-action-bar_description": "Visualizza un pulsante sui dispositivi touch per annullare le azioni touch.",
|
|
178
|
-
"feature_touch-action-bar_label": "Barra delle azioni touch",
|
|
179
|
-
"feature_tour_description": "Fornisce una sovrapposizione di tour per conoscere l'editor.",
|
|
180
|
-
"feature_tour_label": "Tour",
|
|
181
|
-
"feature_transform_description": "Fornisce l'integrazione per i plugin di trasformazione dei blocchi.",
|
|
182
|
-
"feature_transform_label": "Trasforma",
|
|
183
|
-
"feature_translations_description": "Aggiunge il supporto per le traduzioni dei blocchi.",
|
|
184
|
-
"feature_translations_label": "Traduzioni",
|
|
185
|
-
"feature_validations_description": "Fornisce un pannello della barra laterale per visualizzare le validazioni.",
|
|
186
|
-
"feature_validations_label": "Validazioni",
|
|
187
103
|
"fieldIsRequired": "Questo campo è obbligatorio",
|
|
188
104
|
"gridHide": "Nascondi griglia",
|
|
189
105
|
"gridShow": "Mostra griglia",
|
|
@@ -197,15 +113,9 @@
|
|
|
197
113
|
"importExistingError": "I contenuti non possono essere importati.",
|
|
198
114
|
"importExistingFieldsLabel": "Quali contenuti vuoi importare?",
|
|
199
115
|
"importExistingSuccess": "Contenuti importati con successo.",
|
|
200
|
-
"importExistingTitle": "Importa...",
|
|
201
|
-
"libraryAdd": "Aggiungi alla biblioteca",
|
|
202
|
-
"libraryDialogDescriptionLabel": "Descrizione",
|
|
203
116
|
"libraryDialogLead": "Aggiungendo un elemento alla biblioteca, puoi utilizzarlo su più pagine contemporaneamente. Le modifiche a questo elemento saranno pubblicate immediatamente su tutte le pagine.",
|
|
204
|
-
"libraryDialogSubmit": "Aggiungi alla biblioteca",
|
|
205
|
-
"libraryDialogTitle": "Aggiungi alla biblioteca",
|
|
206
117
|
"libraryDialogTitleInputPlaceholder": "es. Anteprima Campagna 2023",
|
|
207
118
|
"libraryError": "L'elemento non può essere reso riutilizzabile.",
|
|
208
|
-
"libraryPreviewLabel": "Anteprima",
|
|
209
119
|
"maskHide": "Nascondi campi di contenuto",
|
|
210
120
|
"maskShow": "Mostra campi di contenuto",
|
|
211
121
|
"multipleItemsLabel": "Elementi",
|
|
@@ -222,7 +132,6 @@
|
|
|
222
132
|
"previewWithSmartphone": "Anteprima (con smartphone)",
|
|
223
133
|
"publishDescription": "Rendi pubbliche tutte le modifiche",
|
|
224
134
|
"publishError": "Le modifiche non possono essere pubblicate.",
|
|
225
|
-
"publishLabel": "Pubblica",
|
|
226
135
|
"publishRevisionLogMessage": "Descrizione delle modifiche",
|
|
227
136
|
"publishSuccess": "Modifiche pubblicate con successo.",
|
|
228
137
|
"readabilityTooShort": "Troppo breve",
|
|
@@ -233,7 +142,6 @@
|
|
|
233
142
|
"revertDialogTitle": "Scarta irrevocabilmente le modifiche",
|
|
234
143
|
"revertError": "Le modifiche non possono essere scartate.",
|
|
235
144
|
"revertMenuDescription": "Ripristina lo stato attualmente pubblicato",
|
|
236
|
-
"revertMenuTitle": "Annulla...",
|
|
237
145
|
"revertSuccess": "Tutte le modifiche sono state scartate.",
|
|
238
146
|
"searchBoxNoResultsFound": "Nessun risultato trovato",
|
|
239
147
|
"searchBoxOnThisPage": "Su questa pagina",
|
|
@@ -242,11 +150,9 @@
|
|
|
242
150
|
"settingsBehaviour": "Comportamento",
|
|
243
151
|
"settingsDialogTitle": "Impostazioni",
|
|
244
152
|
"settingsMenuDescription": "Impostazioni personali per l'editor",
|
|
245
|
-
"settingsMenuTitle": "Impostazioni",
|
|
246
153
|
"structureToolbarLabel": "Struttura",
|
|
247
154
|
"translationsBatchTranslateMenuDescription": "Traduci tutti gli elementi",
|
|
248
|
-
"
|
|
249
|
-
"translationsItemAction": "Traduci...",
|
|
155
|
+
"userDeleted": "[eliminato]",
|
|
250
156
|
"validationsNoneFound": "Nessun errore di validazione trovato.",
|
|
251
157
|
"validationsToolbarLabel": "Validazioni"
|
|
252
158
|
}
|
|
@@ -25,6 +25,7 @@ import type { TourProvider } from '../providers/tour.js';
|
|
|
25
25
|
import type { ThemeProvider } from '../providers/theme.js';
|
|
26
26
|
import type { DefinitionProvider } from '../providers/definition.js';
|
|
27
27
|
import type { PermissionsProvider } from '../providers/permissions.js';
|
|
28
|
+
import type { UserProvider } from '../providers/user.js';
|
|
28
29
|
import type { AdaptersProvider } from '../providers/adapters.js';
|
|
29
30
|
import type { AnalyzeProvider } from '../providers/analyze.js';
|
|
30
31
|
import type { ReadabilityProvider } from '../providers/readability.js';
|
|
@@ -32,6 +33,7 @@ import type { FieldValueProvider } from '../providers/fieldValue.js';
|
|
|
32
33
|
import type { DragDropProvider } from '../providers/dragdrop.js';
|
|
33
34
|
import type { CacheProvider } from '../providers/cache.js';
|
|
34
35
|
import type { WorkspacesProvider } from '../providers/workspaces.js';
|
|
36
|
+
import type { ConfigProvider } from '../providers/config.js';
|
|
35
37
|
export interface BlokkliApp {
|
|
36
38
|
/**
|
|
37
39
|
* The adapter.
|
|
@@ -67,10 +69,12 @@ export interface BlokkliApp {
|
|
|
67
69
|
fields: FieldsProvider;
|
|
68
70
|
icons: IconsProvider;
|
|
69
71
|
permissions: PermissionsProvider;
|
|
72
|
+
user: UserProvider;
|
|
70
73
|
analyze: AnalyzeProvider;
|
|
71
74
|
readability: ReadabilityProvider;
|
|
72
75
|
fieldValue: FieldValueProvider;
|
|
73
76
|
dragdrop: DragDropProvider;
|
|
74
77
|
cache: CacheProvider;
|
|
75
78
|
workspaces: WorkspacesProvider;
|
|
79
|
+
config: ConfigProvider;
|
|
76
80
|
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Map of all clipboard payload types features can paste.
|
|
3
|
+
*
|
|
4
|
+
* Each value must include a `type` literal discriminator matching its
|
|
5
|
+
* key. Features augment this interface to register their own payloads:
|
|
6
|
+
*
|
|
7
|
+
* declare module '#blokkli/editor/types/clipboard' {
|
|
8
|
+
* interface BlokkliClipboardTypes {
|
|
9
|
+
* my_thing: { type: 'my_thing'; ...payload }
|
|
10
|
+
* }
|
|
11
|
+
* }
|
|
12
|
+
*
|
|
13
|
+
* On the wire, payloads are wrapped in a marker envelope (see
|
|
14
|
+
* `BlokkliClipboardEnvelope`) so paste detection never confuses
|
|
15
|
+
* arbitrary user-pasted JSON with a blökkli payload.
|
|
16
|
+
*/
|
|
17
|
+
export interface BlokkliClipboardTypes {
|
|
18
|
+
}
|
|
19
|
+
export type BlokkliClipboardPayload = BlokkliClipboardTypes[keyof BlokkliClipboardTypes];
|
|
20
|
+
/**
|
|
21
|
+
* Metadata captured at copy time about the host entity the payload was
|
|
22
|
+
* produced from. Lets listeners reason about whether a payload makes
|
|
23
|
+
* sense in the current paste context — e.g. the `selection` listener
|
|
24
|
+
* skips when the source host differs, because the copied block UUIDs
|
|
25
|
+
* don't exist on a different host.
|
|
26
|
+
*/
|
|
27
|
+
export type BlokkliClipboardMeta = {
|
|
28
|
+
hostUuid: string;
|
|
29
|
+
hostEntityType: string;
|
|
30
|
+
hostBundle: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const CLIPBOARD_ENVELOPE_FLAG = "blokkli_clipboard_data";
|
|
33
|
+
export type BlokkliClipboardEnvelope = {
|
|
34
|
+
[CLIPBOARD_ENVELOPE_FLAG]: true;
|
|
35
|
+
meta: BlokkliClipboardMeta;
|
|
36
|
+
data: BlokkliClipboardPayload;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Runtime shape of a paste event: the unwrapped envelope minus the
|
|
40
|
+
* marker flag. This is what `'clipboard:paste'` listeners receive.
|
|
41
|
+
*/
|
|
42
|
+
export type BlokkliClipboardPasteEvent = {
|
|
43
|
+
meta: BlokkliClipboardMeta;
|
|
44
|
+
data: BlokkliClipboardPayload;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Validate a parsed JSON value as a clipboard envelope and unwrap it.
|
|
48
|
+
* Returns null when the value is not a blökkli envelope.
|
|
49
|
+
*
|
|
50
|
+
* Listener features are expected to do their own per-`type` shape
|
|
51
|
+
* validation on `data` after unwrapping.
|
|
52
|
+
*/
|
|
53
|
+
export declare function parseClipboardEnvelope(raw: unknown): BlokkliClipboardPasteEvent | null;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export const CLIPBOARD_ENVELOPE_FLAG = "blokkli_clipboard_data";
|
|
2
|
+
export function parseClipboardEnvelope(raw) {
|
|
3
|
+
if (!raw || typeof raw !== "object") return null;
|
|
4
|
+
const obj = raw;
|
|
5
|
+
if (obj[CLIPBOARD_ENVELOPE_FLAG] !== true) return null;
|
|
6
|
+
const meta = obj.meta;
|
|
7
|
+
if (!meta || typeof meta !== "object") return null;
|
|
8
|
+
const m = meta;
|
|
9
|
+
if (typeof m.hostUuid !== "string" || typeof m.hostEntityType !== "string" || typeof m.hostBundle !== "string") {
|
|
10
|
+
return null;
|
|
11
|
+
}
|
|
12
|
+
const data = obj.data;
|
|
13
|
+
if (!data || typeof data !== "object") return null;
|
|
14
|
+
if (typeof data.type !== "string") return null;
|
|
15
|
+
return {
|
|
16
|
+
meta: {
|
|
17
|
+
hostUuid: m.hostUuid,
|
|
18
|
+
hostEntityType: m.hostEntityType,
|
|
19
|
+
hostBundle: m.hostBundle
|
|
20
|
+
},
|
|
21
|
+
data
|
|
22
|
+
};
|
|
23
|
+
}
|
|
File without changes
|
|
File without changes
|
|
@@ -17,7 +17,7 @@ export declare function isValidDatetimeLocalValue(value: string): boolean;
|
|
|
17
17
|
*
|
|
18
18
|
* Internally, all option values are stored as strings. This function maps the stored data to the runtime value.
|
|
19
19
|
*/
|
|
20
|
-
export declare function getRuntimeOptionValue(definition: Pick<BlockOptionDefinition, 'type' | 'default'> | RuntimeBlockOptionArray, value: string | string[] | boolean | undefined | null | number): string | string[] | boolean | number;
|
|
20
|
+
export declare function getRuntimeOptionValue(definition: Pick<BlockOptionDefinition, 'type' | 'default'> | RuntimeBlockOptionArray, value: string | string[] | boolean | undefined | null | number): string | string[] | boolean | number | undefined;
|
|
21
21
|
/**
|
|
22
22
|
* Determines whether an item is visible.
|
|
23
23
|
*/
|
|
@@ -23,9 +23,13 @@ export function isValidDatetimeLocalValue(value) {
|
|
|
23
23
|
export function getRuntimeOptionValue(definition, value) {
|
|
24
24
|
const type = Array.isArray(definition) ? definition[0] : definition.type;
|
|
25
25
|
const defaultValue = Array.isArray(definition) ? definition[1] : definition.default;
|
|
26
|
+
const isNullableNumber = Array.isArray(definition) && definition[0] === "number" && definition[3] === true;
|
|
26
27
|
if ((value === null || value === void 0) && defaultValue !== void 0) {
|
|
27
28
|
return defaultValue;
|
|
28
29
|
}
|
|
30
|
+
if (isNullableNumber && (value === null || value === void 0 || value === "")) {
|
|
31
|
+
return void 0;
|
|
32
|
+
}
|
|
29
33
|
const validationData = Array.isArray(definition) ? definition[2] : void 0;
|
|
30
34
|
if (type === "checkbox") {
|
|
31
35
|
return mapCheckboxTrue(value) === "1";
|
|
@@ -75,6 +79,9 @@ export function getRuntimeOptionValue(definition, value) {
|
|
|
75
79
|
}
|
|
76
80
|
return numValue;
|
|
77
81
|
}
|
|
82
|
+
if (isNullableNumber) {
|
|
83
|
+
return void 0;
|
|
84
|
+
}
|
|
78
85
|
} else if (type === "color") {
|
|
79
86
|
if (typeof value === "string") {
|
|
80
87
|
if (/^#[0-9a-f]{6}$/i.test(value)) {
|
|
@@ -2,11 +2,12 @@ import { WatchEvent, Nuxt } from 'nuxt/schema';
|
|
|
2
2
|
import { ConsolaInstance } from 'consola';
|
|
3
3
|
import { FragmentDefinitionInputBase, BlockDefinitionInputBase, BlockDefinitionOptionsInputBase } from '../../dist/global/types/definitions.js';
|
|
4
4
|
import { ThemeName, Theme } from '../../dist/global/types/theme.js';
|
|
5
|
+
import { ColorOption } from '../../dist/global/types/colorOptions.js';
|
|
5
6
|
import { Resolver } from '@nuxt/kit';
|
|
6
7
|
import { FeatureDefinitionBase } from '../../dist/global/types/features.js';
|
|
7
8
|
|
|
8
9
|
type TemplateCallback = (context: ModuleContext) => string | Promise<string>;
|
|
9
|
-
type TemplateDependency = 'icons' | 'features' | 'block-content' | 'block-path' | 'block-global-options' | 'agent-mcp-tools' | 'agent-server' | 'agent-prompts' | 'module-css';
|
|
10
|
+
type TemplateDependency = 'icons' | 'features' | 'block-content' | 'block-path' | 'block-global-options' | 'agent-mcp-tools' | 'agent-server' | 'agent-prompts' | 'module-css' | 'chart-types';
|
|
10
11
|
/**
|
|
11
12
|
* Where the template should be available:
|
|
12
13
|
* - 'app': Only in app context (default)
|
|
@@ -80,7 +81,7 @@ declare class BlockCollector extends Collector<CollectedBlockFile> {
|
|
|
80
81
|
private patterns;
|
|
81
82
|
constructor(helper: ModuleHelper, icons: IconCollector);
|
|
82
83
|
init(): Promise<void>;
|
|
83
|
-
runHooks(): Promise<any>;
|
|
84
|
+
runHooks(): void | Promise<any>;
|
|
84
85
|
createCollectedFile(filePath: string, fileContents?: string): CollectedBlockFile;
|
|
85
86
|
private findBlockForFolderFile;
|
|
86
87
|
protected handleAdd(filePath: string): Promise<boolean>;
|
|
@@ -325,6 +326,7 @@ type ModuleOptions = {
|
|
|
325
326
|
* ```
|
|
326
327
|
*/
|
|
327
328
|
getBundlePropsType?: GetBundlePropsType;
|
|
329
|
+
colorOptions?: Record<string, ColorOption>;
|
|
328
330
|
};
|
|
329
331
|
|
|
330
332
|
declare class FileCache {
|
|
@@ -369,6 +371,10 @@ type ModuleHelperResolvers = {
|
|
|
369
371
|
* Resolver for the app directory.
|
|
370
372
|
*/
|
|
371
373
|
app: Resolver;
|
|
374
|
+
/**
|
|
375
|
+
* Resolver for the Nuxt app root dir.
|
|
376
|
+
*/
|
|
377
|
+
root: Resolver;
|
|
372
378
|
};
|
|
373
379
|
type ModuleHelperPaths = {
|
|
374
380
|
blokkliBuildDir: string;
|
|
@@ -395,6 +401,15 @@ declare class ModuleHelper implements ValidationInterface {
|
|
|
395
401
|
* @returns The path relative to the module's build directory.
|
|
396
402
|
*/
|
|
397
403
|
toModuleBuildRelative(path: string): string;
|
|
404
|
+
/**
|
|
405
|
+
* Path to the editor's compiled tailwind config. Used by the SFC mangle
|
|
406
|
+
* pipeline and module CSS processing to inject `@config` so consumer-side
|
|
407
|
+
* `@apply` resolves against the editor's theme + utilities.
|
|
408
|
+
*
|
|
409
|
+
* In dist (npm install): `dist/modules/tailwind/index.mjs`. In source (this
|
|
410
|
+
* repo's playground): `tailwind.config.ts` at the repo root.
|
|
411
|
+
*/
|
|
412
|
+
getTailwindConfigPath(): string;
|
|
398
413
|
private findEditAdapterPath;
|
|
399
414
|
getChunkNames(): string[];
|
|
400
415
|
addComponent(name: string): void;
|
|
@@ -441,10 +456,11 @@ declare class FeatureCollector extends Collector<CollectedFeatureFile> {
|
|
|
441
456
|
protected needsFileContents: boolean;
|
|
442
457
|
private disabledFeatures;
|
|
443
458
|
private srcFromModule;
|
|
459
|
+
private srcFromBlokkliDir;
|
|
444
460
|
constructor(helper: ModuleHelper);
|
|
445
461
|
getEnabledFeatures(): ExtractedFeatureDefinition[];
|
|
446
462
|
init(): Promise<void>;
|
|
447
|
-
runHooks(): Promise<any>;
|
|
463
|
+
runHooks(): void | Promise<any>;
|
|
448
464
|
createCollectedFile(filePath: string, fileContents?: string): CollectedFeatureFile;
|
|
449
465
|
applies(filePath: string): Promise<boolean>;
|
|
450
466
|
getDependencyTypes(): TemplateDependency[];
|
|
@@ -541,7 +557,7 @@ declare class IconCollector extends Collector {
|
|
|
541
557
|
getValidMaterialIconNames(): string[];
|
|
542
558
|
handleWatchEvent(event: WatchEvent, filePath: string): Promise<HandleWatchEventResult>;
|
|
543
559
|
init(): Promise<void>;
|
|
544
|
-
runHooks(): Promise<any>;
|
|
560
|
+
runHooks(): void | Promise<any>;
|
|
545
561
|
applies(filePath: string): Promise<boolean>;
|
|
546
562
|
getDependencyTypes(): TemplateDependency[];
|
|
547
563
|
createCollectedFile(filePath: string, fileContents?: string): CollectedFile;
|
|
@@ -281,8 +281,40 @@ function extractStringProperty(fileContents, composables, propertyName) {
|
|
|
281
281
|
}
|
|
282
282
|
return void 0;
|
|
283
283
|
}
|
|
284
|
+
function extractFirstStringArg(fileContents, composables) {
|
|
285
|
+
if (!composables.some((composable) => fileContents.includes(composable))) {
|
|
286
|
+
return void 0;
|
|
287
|
+
}
|
|
288
|
+
const scripts = extractScriptContent(fileContents);
|
|
289
|
+
for (const script of scripts) {
|
|
290
|
+
try {
|
|
291
|
+
let result;
|
|
292
|
+
const filename = script.loader === "tsx" ? "temp.tsx" : "temp.ts";
|
|
293
|
+
parseAndWalk(script.code, filename, {
|
|
294
|
+
parseOptions: {
|
|
295
|
+
range: true
|
|
296
|
+
},
|
|
297
|
+
enter(node) {
|
|
298
|
+
if (result) return;
|
|
299
|
+
if (node.type === "CallExpression" && node.callee.type === "Identifier" && composables.includes(node.callee.name)) {
|
|
300
|
+
const first = node.arguments[0];
|
|
301
|
+
if (first && first.type === "Literal" && typeof first.value === "string") {
|
|
302
|
+
result = first.value;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
});
|
|
307
|
+
if (result) {
|
|
308
|
+
return result;
|
|
309
|
+
}
|
|
310
|
+
} catch {
|
|
311
|
+
continue;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
return void 0;
|
|
315
|
+
}
|
|
284
316
|
function onlyUnique(value, index, self) {
|
|
285
317
|
return self.indexOf(value) === index;
|
|
286
318
|
}
|
|
287
319
|
|
|
288
|
-
export { Collector as C, CollectedFile as a,
|
|
320
|
+
export { Collector as C, CollectedFile as a, extractStringProperty as b, extractObjectLiteral as c, extractFirstStringArg as e, falsy as f, onlyUnique as o, parseTsObject as p, sortObjectKeys as s, toValidVariableName as t };
|
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.
|
|
7
|
+
export { type ModuleHooks } from './shared/editor.D28NbXr3.mjs'
|
|
8
8
|
|
|
9
9
|
export { type ModuleOptions, default } from './module.mjs'
|