@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
|
@@ -4,162 +4,36 @@
|
|
|
4
4
|
:style="{
|
|
5
5
|
visibility: isVisible ? 'visible' : 'hidden'
|
|
6
6
|
}"
|
|
7
|
-
class="bk bk-blokkli-item-actions-inner"
|
|
7
|
+
class="bk bk-blokkli-item-actions-inner _bk_absolute _bk_left-0 _bk_p-0 _bk_z-actions _bk_w-full _bk_text-mono-50 _bk_select-none _bk_text-sm _bk_pointer-events-auto"
|
|
8
8
|
@mouseleave="onMouseLeave"
|
|
9
9
|
@mouseenter="onMouseEnter"
|
|
10
10
|
>
|
|
11
11
|
<div
|
|
12
12
|
id="bk-blokkli-item-actions-controls"
|
|
13
13
|
ref="controlsEl"
|
|
14
|
-
class="bk-blokkli-item-actions-controls"
|
|
14
|
+
class="bk-blokkli-item-actions-controls _bk_flex _bk_items-stretch _bk_whitespace-nowrap _bk_h-full _bk_flex-wrap _bk_lg:flex-nowrap _bk_bg-mono-950/90 _bk_scheme-dark _bk_relative _bk_z-50 _bk_lg:border _bk_lg:border-mono-400 _bk_lg:bg-mono-900"
|
|
15
15
|
:class="{
|
|
16
|
-
'
|
|
16
|
+
'_bk_pointer-events-none': ui.isTransforming.value
|
|
17
17
|
}"
|
|
18
18
|
>
|
|
19
19
|
<Interactions />
|
|
20
|
-
<
|
|
21
|
-
<button
|
|
22
|
-
class="bk-blokkli-item-actions-type-button bk-item-icon-hover-parent _bk_group/tooltip"
|
|
23
|
-
tabindex="-1"
|
|
24
|
-
:disabled="!shouldRenderButton"
|
|
25
|
-
:class="{
|
|
26
|
-
'_bk_is-open': showDropdown,
|
|
27
|
-
'_bk_is-interactive': shouldRenderButton
|
|
28
|
-
}"
|
|
29
|
-
@click.prevent="showDropdown = !showDropdown"
|
|
30
|
-
>
|
|
31
|
-
<Tooltip
|
|
32
|
-
v-if="shouldRenderButton"
|
|
33
|
-
:label="$t('actionsDropdownToolip', 'Further actions')"
|
|
34
|
-
placement="above-left"
|
|
35
|
-
class="_bk_w-full"
|
|
36
|
-
>
|
|
37
|
-
<template #status>
|
|
38
|
-
<TooltipStatus
|
|
39
|
-
v-if="restrictedPermissionsLabel"
|
|
40
|
-
:description="restrictedPermissionsLabel"
|
|
41
|
-
status="warning"
|
|
42
|
-
/>
|
|
43
|
-
<TooltipStatus
|
|
44
|
-
v-if="selectedTranslationIsOutdated"
|
|
45
|
-
:description="
|
|
46
|
-
$t(
|
|
47
|
-
'translationOutdatedHint',
|
|
48
|
-
'The translation is marked as outdated.'
|
|
49
|
-
)
|
|
50
|
-
"
|
|
51
|
-
status="warning"
|
|
52
|
-
/>
|
|
53
|
-
</template>
|
|
54
|
-
</Tooltip>
|
|
55
|
-
<div
|
|
56
|
-
v-show="!hasSelectedHost"
|
|
57
|
-
class="bk-blokkli-item-actions-title-icon"
|
|
58
|
-
>
|
|
59
|
-
<Icon v-if="ui.isTransforming.value" name="loader" />
|
|
60
|
-
<ItemIconBox
|
|
61
|
-
v-else-if="bundleIcon"
|
|
62
|
-
:icon="iconOverride"
|
|
63
|
-
:bundle="bundleIcon"
|
|
64
|
-
:color="isReusable ? 'lime' : void 0"
|
|
65
|
-
is-small
|
|
66
|
-
/>
|
|
67
|
-
<Icon v-else name="bk_mdi_select_all" />
|
|
68
|
-
<div
|
|
69
|
-
v-if="itemBundle?.id === fromLibraryBlockBundle"
|
|
70
|
-
class="bk-blokkli-item-actions-title-icon-reusable"
|
|
71
|
-
>
|
|
72
|
-
<Icon name="reusable" />
|
|
73
|
-
</div>
|
|
74
|
-
</div>
|
|
75
|
-
<span class="bk-blokkli-item-actions-title-label">{{ title }}</span>
|
|
76
|
-
<span
|
|
77
|
-
v-if="selection.items.value.length > 1"
|
|
78
|
-
class="bk-blokkli-item-actions-title-count"
|
|
79
|
-
>{{ selection.items.value.length }}</span
|
|
80
|
-
>
|
|
81
|
-
|
|
82
|
-
<span
|
|
83
|
-
v-show="isPermissionRestricted"
|
|
84
|
-
class="bk-blokkli-item-actions-title-pill bk-is-warning bk-is-restricted"
|
|
85
|
-
>
|
|
86
|
-
<Icon name="bk_mdi_lock" />
|
|
87
|
-
</span>
|
|
88
|
-
|
|
89
|
-
<span
|
|
90
|
-
v-show="selectedIsNew"
|
|
91
|
-
class="bk-blokkli-item-actions-title-pill"
|
|
92
|
-
>{{ $t("selectedIsNew", "New") }}</span
|
|
93
|
-
>
|
|
94
|
-
<span
|
|
95
|
-
v-show="selectedTranslationIsOutdated"
|
|
96
|
-
class="bk-blokkli-item-actions-title-pill bk-is-warning"
|
|
97
|
-
>{{ $t("selectedTranslationIsOutdated", "Outdated") }}</span
|
|
98
|
-
>
|
|
99
|
-
<Icon
|
|
100
|
-
v-if="shouldRenderButton"
|
|
101
|
-
name="bk_mdi_arrow_drop_down"
|
|
102
|
-
class="bk-caret"
|
|
103
|
-
/>
|
|
104
|
-
</button>
|
|
105
|
-
<div
|
|
106
|
-
v-if="editingEnabled"
|
|
107
|
-
v-show="showDropdown"
|
|
108
|
-
id="bk-blokkli-item-actions-dropdown"
|
|
109
|
-
class="bk-blokkli-item-actions-type-dropdown"
|
|
110
|
-
>
|
|
111
|
-
<EditActionsItemDropdown
|
|
112
|
-
v-if="showDropdown"
|
|
113
|
-
@close="showDropdown = false"
|
|
114
|
-
/>
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
20
|
+
<Title />
|
|
117
21
|
|
|
118
22
|
<div
|
|
119
23
|
v-show="!selection.hasHostSelected.value && !ui.isTransforming.value"
|
|
120
24
|
id="bk-blokkli-item-actions"
|
|
121
|
-
class="
|
|
25
|
+
class="_bk_relative _bk_flex _bk_flex-1 _bk_lg:flex-initial _bk_lg:border-l _bk_lg:border-l-mono-500 _bk_justify-end"
|
|
122
26
|
/>
|
|
123
27
|
</div>
|
|
124
28
|
</div>
|
|
125
29
|
</template>
|
|
126
30
|
|
|
127
31
|
<script setup>
|
|
128
|
-
import {
|
|
129
|
-
watch,
|
|
130
|
-
computed,
|
|
131
|
-
useBlokkli,
|
|
132
|
-
useTemplateRef,
|
|
133
|
-
onBeforeUnmount
|
|
134
|
-
} from "#imports";
|
|
135
|
-
import { falsy } from "#blokkli/helpers";
|
|
136
|
-
import {
|
|
137
|
-
Icon,
|
|
138
|
-
ItemIconBox,
|
|
139
|
-
Tooltip,
|
|
140
|
-
TooltipStatus
|
|
141
|
-
} from "#blokkli/editor/components";
|
|
142
|
-
import EditActionsItemDropdown from "./ItemDropdown/index.vue";
|
|
32
|
+
import { computed, useBlokkli, useTemplateRef, onBeforeUnmount } from "#imports";
|
|
143
33
|
import Interactions from "./Interactions/index.vue";
|
|
144
|
-
import
|
|
145
|
-
import {
|
|
146
|
-
|
|
147
|
-
fromLibraryBlockBundle
|
|
148
|
-
} from "#blokkli-build/config";
|
|
149
|
-
const {
|
|
150
|
-
selection,
|
|
151
|
-
$t,
|
|
152
|
-
types,
|
|
153
|
-
state,
|
|
154
|
-
ui,
|
|
155
|
-
definitions,
|
|
156
|
-
debug,
|
|
157
|
-
permissions,
|
|
158
|
-
context
|
|
159
|
-
} = useBlokkli();
|
|
160
|
-
const editingEnabled = computed(
|
|
161
|
-
() => state.editMode.value === "editing" || state.editMode.value === "translating"
|
|
162
|
-
);
|
|
34
|
+
import Title from "./Title/index.vue";
|
|
35
|
+
import { useStickyToolbar } from "#blokkli/editor/composables";
|
|
36
|
+
const { selection, ui } = useBlokkli();
|
|
163
37
|
const ACTIONS_HEIGHT = 52;
|
|
164
38
|
const el = useTemplateRef("el");
|
|
165
39
|
useStickyToolbar(el, {
|
|
@@ -190,157 +64,12 @@ onBeforeUnmount(() => {
|
|
|
190
64
|
window.clearTimeout(mouseLeaveTimeout);
|
|
191
65
|
}
|
|
192
66
|
});
|
|
193
|
-
const showDropdown = computed({
|
|
194
|
-
get() {
|
|
195
|
-
return ui.itemActionsOpen.value;
|
|
196
|
-
},
|
|
197
|
-
set(isOpen) {
|
|
198
|
-
ui.itemActionsOpen.value = isOpen;
|
|
199
|
-
}
|
|
200
|
-
});
|
|
201
67
|
const hasAnythingSelected = computed(
|
|
202
68
|
() => selection.hasHostSelected.value || !!selection.items.value.length
|
|
203
69
|
);
|
|
204
70
|
const isVisible = computed(() => {
|
|
205
71
|
return !selection.isDragging.value && !selection.activeFieldLabel.value && !ui.isAnimating.value && !ui.hasTransformOverlayOpen.value && hasAnythingSelected.value && !ui.hasTooltipOpen.value && !ui.isApproving.value;
|
|
206
72
|
});
|
|
207
|
-
watch(selection.items, () => {
|
|
208
|
-
showDropdown.value = false;
|
|
209
|
-
});
|
|
210
|
-
watch(selection.hasHostSelected, () => {
|
|
211
|
-
showDropdown.value = false;
|
|
212
|
-
});
|
|
213
|
-
const bundleIcon = computed(() => {
|
|
214
|
-
if (itemBundle.value?.id === fromLibraryBlockBundle) {
|
|
215
|
-
const reusableBundle = selection.items.value[0]?.library?.reusableBundle;
|
|
216
|
-
if (reusableBundle) {
|
|
217
|
-
return reusableBundle;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
return itemBundle.value?.id;
|
|
221
|
-
});
|
|
222
|
-
const iconOverride = computed(() => {
|
|
223
|
-
if (fragment.value) {
|
|
224
|
-
return fragment.value.editor?.icon ?? null;
|
|
225
|
-
}
|
|
226
|
-
return null;
|
|
227
|
-
});
|
|
228
|
-
const isReusable = computed(() => {
|
|
229
|
-
return itemBundle.value?.id === fromLibraryBlockBundle;
|
|
230
|
-
});
|
|
231
|
-
const hasSelectedHost = computed(() => {
|
|
232
|
-
return selection.items.value.length === 0;
|
|
233
|
-
});
|
|
234
|
-
const fragment = computed(() => {
|
|
235
|
-
if (itemBundle.value?.id !== fragmentBlockBundle) {
|
|
236
|
-
return null;
|
|
237
|
-
}
|
|
238
|
-
const uuid = selection.uuids.value[0];
|
|
239
|
-
if (!uuid) {
|
|
240
|
-
return null;
|
|
241
|
-
}
|
|
242
|
-
const item = state.getFieldListItem(uuid);
|
|
243
|
-
if (!item) {
|
|
244
|
-
return null;
|
|
245
|
-
}
|
|
246
|
-
const name = item.props?.name;
|
|
247
|
-
if (!name) {
|
|
248
|
-
return null;
|
|
249
|
-
}
|
|
250
|
-
return definitions.getFragmentDefinition(name) ?? null;
|
|
251
|
-
});
|
|
252
|
-
const title = computed(() => {
|
|
253
|
-
if (ui.transformLabel.value) {
|
|
254
|
-
return ui.transformLabel.value;
|
|
255
|
-
} else if (debug.isEnabled.value && selection.uuids.value.length === 1) {
|
|
256
|
-
return selection.uuids.value[0];
|
|
257
|
-
} else if (itemBundle.value) {
|
|
258
|
-
if (itemBundle.value.id === fragmentBlockBundle) {
|
|
259
|
-
const fragments = selection.uuids.value.map((uuid) => {
|
|
260
|
-
const item = state.getFieldListItem(uuid);
|
|
261
|
-
if (!item) {
|
|
262
|
-
return;
|
|
263
|
-
}
|
|
264
|
-
const name = item.props?.name;
|
|
265
|
-
if (!name) {
|
|
266
|
-
return;
|
|
267
|
-
}
|
|
268
|
-
const definition = definitions.getFragmentDefinition(name);
|
|
269
|
-
return definition?.label;
|
|
270
|
-
}).filter(falsy);
|
|
271
|
-
if (fragments.length && fragments.length < 3) {
|
|
272
|
-
return fragments.join(", ");
|
|
273
|
-
}
|
|
274
|
-
} else if (itemBundle.value.id === fromLibraryBlockBundle) {
|
|
275
|
-
const title2 = selection.items.value[0]?.library?.label;
|
|
276
|
-
if (title2) {
|
|
277
|
-
return title2;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
return itemBundle.value.label;
|
|
281
|
-
} else if (!selection.items.value.length) {
|
|
282
|
-
return state.entity.value.label;
|
|
283
|
-
}
|
|
284
|
-
return $t("multipleItemsLabel", "Items");
|
|
285
|
-
});
|
|
286
|
-
const selectedIsNew = computed(() => {
|
|
287
|
-
const items = selection.items.value;
|
|
288
|
-
return !!items.length && items.every((v) => v.isNew);
|
|
289
|
-
});
|
|
290
|
-
const selectedTranslationIsOutdated = computed(() => {
|
|
291
|
-
const items = selection.items.value;
|
|
292
|
-
if (!items.length) return false;
|
|
293
|
-
return items.every(
|
|
294
|
-
(item) => item.outdatedTranslations.includes(context.value.language)
|
|
295
|
-
);
|
|
296
|
-
});
|
|
297
|
-
const permissionsForSelected = computed(() => {
|
|
298
|
-
const bundles = selection.bundles.value;
|
|
299
|
-
if (!bundles.length) {
|
|
300
|
-
return [];
|
|
301
|
-
}
|
|
302
|
-
const allPermissions = ["add", "delete", "edit"];
|
|
303
|
-
return allPermissions.filter(
|
|
304
|
-
(permission) => bundles.every(
|
|
305
|
-
(bundle) => permissions.checkBlockBundlePermission(bundle, permission)
|
|
306
|
-
)
|
|
307
|
-
);
|
|
308
|
-
});
|
|
309
|
-
const isPermissionRestricted = computed(
|
|
310
|
-
() => selection.items.value.length > 0 && permissionsForSelected.value.length < 3
|
|
311
|
-
);
|
|
312
|
-
const restrictedPermissionsLabel = computed(() => {
|
|
313
|
-
if (!isPermissionRestricted.value) {
|
|
314
|
-
return null;
|
|
315
|
-
}
|
|
316
|
-
const shared = permissionsForSelected.value;
|
|
317
|
-
if (shared.length === 0) {
|
|
318
|
-
return $t(
|
|
319
|
-
"restrictedPermissionsAll",
|
|
320
|
-
"Some actions are not available due to missing permissions."
|
|
321
|
-
);
|
|
322
|
-
}
|
|
323
|
-
return $t(
|
|
324
|
-
"restrictedPermissionsSome",
|
|
325
|
-
"Some actions are restricted due to missing permissions."
|
|
326
|
-
);
|
|
327
|
-
});
|
|
328
|
-
const itemBundle = computed(() => {
|
|
329
|
-
if (selection.bundles.value.length !== 1) {
|
|
330
|
-
return;
|
|
331
|
-
}
|
|
332
|
-
const bundle = selection.bundles.value[0];
|
|
333
|
-
return types.getBlockBundleDefinition(bundle);
|
|
334
|
-
});
|
|
335
|
-
const shouldRenderButton = computed(() => true);
|
|
336
|
-
onBlokkliEvent("action:selected", () => {
|
|
337
|
-
showDropdown.value = false;
|
|
338
|
-
});
|
|
339
|
-
watch(ui.isTransforming, function(isTransforming) {
|
|
340
|
-
if (isTransforming) {
|
|
341
|
-
showDropdown.value = false;
|
|
342
|
-
}
|
|
343
|
-
});
|
|
344
73
|
</script>
|
|
345
74
|
|
|
346
75
|
<script>
|
|
@@ -349,510 +78,26 @@ export default {
|
|
|
349
78
|
};
|
|
350
79
|
</script>
|
|
351
80
|
|
|
352
|
-
<style
|
|
353
|
-
.bk
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
@media (min-width: 1024px) {
|
|
358
|
-
.bk #bk-blokkli-item-actions-title {
|
|
359
|
-
width: 240px;
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
.bk .bk-blokkli-item-actions-title-count {
|
|
363
|
-
margin-left: 10px;
|
|
364
|
-
display: inline-flex;
|
|
365
|
-
height: 1.5em;
|
|
366
|
-
min-width: 1.5em;
|
|
367
|
-
align-items: center;
|
|
368
|
-
justify-content: center;
|
|
369
|
-
border-radius: 9999px;
|
|
370
|
-
--bk-tw-bg-opacity: 1;
|
|
371
|
-
background-color: rgb(var(--bk-theme-mono-50) / var(--bk-tw-bg-opacity, 1));
|
|
372
|
-
padding-left: 3px;
|
|
373
|
-
padding-right: 3px;
|
|
374
|
-
font-size: 12px;
|
|
375
|
-
line-height: 16px;
|
|
376
|
-
font-weight: 700;
|
|
377
|
-
line-height: 1;
|
|
378
|
-
--bk-tw-text-opacity: 1;
|
|
379
|
-
color: rgb(var(--bk-theme-mono-900) / var(--bk-tw-text-opacity, 1));
|
|
380
|
-
}
|
|
381
|
-
@media (min-width: 1024px) {
|
|
382
|
-
.bk .bk-blokkli-item-actions-title-count {
|
|
383
|
-
font-size: 14px;
|
|
384
|
-
line-height: 20px;
|
|
385
|
-
}
|
|
81
|
+
<style>/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
|
|
82
|
+
.bk.bk-blokkli-item-actions-inner {
|
|
83
|
+
transform: translate3d(0, 0, 0);
|
|
84
|
+
backface-visibility: hidden;
|
|
85
|
+
bottom: var(--bk-root-offset-bottom);
|
|
386
86
|
}
|
|
387
|
-
|
|
388
|
-
opacity: 0;
|
|
389
|
-
}
|
|
390
|
-
.bk.bk-blokkli-item-actions-inner {
|
|
391
|
-
pointer-events: auto;
|
|
392
|
-
position: absolute;
|
|
393
|
-
left: 0px;
|
|
394
|
-
z-index: calc(var(--bk-z-index-base) + 130000) /* "actions" */;
|
|
395
|
-
width: 100%;
|
|
396
|
-
user-select: none;
|
|
397
|
-
padding: 0px;
|
|
398
|
-
font-size: 14px;
|
|
399
|
-
line-height: 20px;
|
|
400
|
-
--bk-tw-text-opacity: 1;
|
|
401
|
-
color: rgb(var(--bk-theme-mono-50) / var(--bk-tw-text-opacity, 1));
|
|
402
|
-
transform: translate3d(0, 0, 0);
|
|
403
|
-
backface-visibility: hidden;
|
|
404
|
-
/* contain: layout style paint; */
|
|
405
|
-
bottom: var(--bk-root-offset-bottom);
|
|
406
|
-
}
|
|
407
|
-
@media (min-width: 1024px) {
|
|
87
|
+
@media (width >= 64rem) {
|
|
408
88
|
.bk.bk-blokkli-item-actions-inner {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
415
|
-
display: flex;
|
|
416
|
-
height: 100%;
|
|
417
|
-
flex-wrap: wrap;
|
|
418
|
-
align-items: stretch;
|
|
419
|
-
white-space: nowrap;
|
|
420
|
-
}
|
|
421
|
-
@media (min-width: 1024px) {
|
|
422
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
423
|
-
flex-wrap: nowrap;
|
|
424
|
-
}
|
|
425
|
-
}
|
|
426
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
427
|
-
background-color: rgb(var(--bk-theme-mono-950) / 0.9);
|
|
428
|
-
--bk-tw-backdrop-blur: blur(8px);
|
|
429
|
-
-webkit-backdrop-filter: var(--bk-tw-backdrop-blur) var(--bk-tw-backdrop-brightness) var(--bk-tw-backdrop-contrast) var(--bk-tw-backdrop-grayscale) var(--bk-tw-backdrop-hue-rotate) var(--bk-tw-backdrop-invert) var(--bk-tw-backdrop-opacity) var(--bk-tw-backdrop-saturate) var(--bk-tw-backdrop-sepia);
|
|
430
|
-
backdrop-filter: var(--bk-tw-backdrop-blur) var(--bk-tw-backdrop-brightness) var(--bk-tw-backdrop-contrast) var(--bk-tw-backdrop-grayscale) var(--bk-tw-backdrop-hue-rotate) var(--bk-tw-backdrop-invert) var(--bk-tw-backdrop-opacity) var(--bk-tw-backdrop-saturate) var(--bk-tw-backdrop-sepia);
|
|
431
|
-
position: relative;
|
|
432
|
-
z-index: 50;
|
|
433
|
-
}
|
|
434
|
-
@media (min-width: 1024px) {
|
|
435
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
436
|
-
border-radius: 6px;
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
440
|
-
|
|
441
|
-
color-scheme: dark;
|
|
89
|
+
top: 0px !important;
|
|
90
|
+
width: auto !important;
|
|
91
|
+
bottom: initial !important;
|
|
442
92
|
}
|
|
443
|
-
.bk .bk-blokkli-item-actions-controls.bk-is-locked {
|
|
444
|
-
pointer-events: none;
|
|
445
|
-
}
|
|
446
|
-
.bk .bk-blokkli-item-actions-controls.bk-is-locked .bk-blokkli-item-actions-buttons > button,
|
|
447
|
-
.bk .bk-blokkli-item-actions-controls.bk-is-locked .bk-blokkli-item-options > .bk-blokkli-item-options-item {
|
|
448
|
-
opacity: 0.2;
|
|
449
|
-
}
|
|
450
|
-
html.bk-low-performance-mode .bk .bk-blokkli-item-actions-controls {
|
|
451
|
-
-webkit-backdrop-filter: none;
|
|
452
|
-
backdrop-filter: none;
|
|
453
|
-
}
|
|
454
|
-
.bk .bk-blokkli-item-actions-controls::-webkit-scrollbar {
|
|
455
|
-
display: none;
|
|
456
|
-
}
|
|
457
|
-
@media (min-width: 1024px) {
|
|
458
|
-
.bk .bk-blokkli-item-actions-controls {
|
|
459
|
-
filter: none;
|
|
460
|
-
-webkit-backdrop-filter: none;
|
|
461
|
-
backdrop-filter: none;
|
|
462
|
-
border-width: 1px;
|
|
463
|
-
--bk-tw-border-opacity: 1;
|
|
464
|
-
border-color: rgb(var(--bk-theme-mono-400) / var(--bk-tw-border-opacity, 1));
|
|
465
|
-
outline-style: solid;
|
|
466
|
-
outline-width: 1px;
|
|
467
|
-
outline-color: rgb(var(--bk-theme-mono-700) / 1);
|
|
468
|
-
--bk-tw-bg-opacity: 1;
|
|
469
|
-
background-color: rgb(var(--bk-theme-mono-900) / var(--bk-tw-bg-opacity, 1));
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
.bk .bk-item-action {
|
|
473
|
-
position: relative;
|
|
474
|
-
z-index: 50;
|
|
475
|
-
display: flex;
|
|
476
|
-
height: 100%;
|
|
477
|
-
flex-shrink: 0;
|
|
478
|
-
align-items: center;
|
|
479
|
-
justify-content: center;
|
|
480
|
-
--bk-tw-text-opacity: 1;
|
|
481
|
-
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1));
|
|
482
|
-
}
|
|
483
|
-
@media (min-width: 1024px) {
|
|
484
|
-
.bk .bk-item-action {
|
|
485
|
-
position: static;
|
|
486
|
-
}
|
|
487
93
|
}
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
flex: 1 0 auto;
|
|
491
|
-
}
|
|
492
|
-
@media (min-width: 1024px) {
|
|
493
|
-
.bk .bk-item-action {
|
|
494
|
-
width: var(--bk-actions-height);
|
|
495
|
-
flex: initial
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
.bk .bk-item-action.bk-is-active {
|
|
499
|
-
z-index: 50;
|
|
500
|
-
--bk-tw-bg-opacity: 1;
|
|
501
|
-
background-color: rgb(255 255 255 / var(--bk-tw-bg-opacity, 1));
|
|
502
|
-
--bk-tw-text-opacity: 1;
|
|
503
|
-
color: rgb(var(--bk-theme-mono-900) / var(--bk-tw-text-opacity, 1));
|
|
504
|
-
}
|
|
505
|
-
@media (min-width: 1024px) {
|
|
506
|
-
.bk .bk-item-action:not([disabled]):hover {
|
|
507
|
-
--bk-tw-bg-opacity: 1;
|
|
508
|
-
background-color: rgb(var(--bk-theme-mono-700) / var(--bk-tw-bg-opacity, 1));
|
|
509
|
-
--bk-tw-text-opacity: 1;
|
|
510
|
-
color: rgb(var(--bk-theme-mono-50) / var(--bk-tw-text-opacity, 1));
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
.bk .bk-item-action[disabled] {
|
|
514
|
-
cursor: not-allowed;
|
|
515
|
-
}
|
|
516
|
-
.bk .bk-item-action[disabled] .bk-item-action-icon {
|
|
517
|
-
opacity: 0.25;
|
|
518
|
-
}
|
|
519
|
-
.bk .bk-blokkli-item-actions-buttons {
|
|
520
|
-
position: relative;
|
|
521
|
-
display: flex;
|
|
522
|
-
flex: 1 1 0%;
|
|
523
|
-
}
|
|
524
|
-
@media (min-width: 1024px) {
|
|
525
|
-
.bk .bk-blokkli-item-actions-buttons {
|
|
526
|
-
flex: 0 1 auto;
|
|
527
|
-
}
|
|
528
|
-
}
|
|
529
|
-
.bk .bk-item-action-icon {
|
|
530
|
-
pointer-events: none;
|
|
531
|
-
}
|
|
532
|
-
.bk .bk-item-action-icon svg {
|
|
533
|
-
width: 20px;
|
|
534
|
-
height: 20px;
|
|
535
|
-
fill: currentColor;
|
|
536
|
-
}
|
|
537
|
-
@media (min-width: 1024px) {
|
|
538
|
-
.bk .bk-item-action-icon svg {
|
|
539
|
-
width: 24px;
|
|
540
|
-
height: 24px;
|
|
541
|
-
}
|
|
542
|
-
.bk .bk-blokkli-item-actions-buttons:last-child button.bk-is-last {
|
|
543
|
-
border-start-end-radius: 6px;
|
|
544
|
-
border-end-end-radius: 6px;
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
.bk .bk-blokkli-item-actions-title-icon,
|
|
548
|
-
.bk .bk-blokkli-item-actions-type-dropdown-icon {
|
|
549
|
-
position: relative;
|
|
550
|
-
margin-right: 0.25em;
|
|
551
|
-
width: 1em;
|
|
552
|
-
height: 1em;
|
|
553
|
-
font-size: 20px;
|
|
554
|
-
line-height: 28px;
|
|
555
|
-
}
|
|
556
|
-
@media (min-width: 1024px) {
|
|
557
|
-
.bk .bk-blokkli-item-actions-title-icon,
|
|
558
|
-
.bk .bk-blokkli-item-actions-type-dropdown-icon {
|
|
559
|
-
font-size: 34px;
|
|
560
|
-
}
|
|
561
|
-
}
|
|
562
|
-
.bk .bk-blokkli-item-actions-title-icon > .bk-blokkli-item-icon svg, .bk .bk-blokkli-item-actions-title-icon > .bk-icon svg, .bk .bk-blokkli-item-actions-type-dropdown-icon > .bk-blokkli-item-icon svg, .bk .bk-blokkli-item-actions-type-dropdown-icon > .bk-icon svg {
|
|
563
|
-
position: absolute;
|
|
564
|
-
top: 50%;
|
|
565
|
-
left: 50%;
|
|
566
|
-
height: 0.7em;
|
|
567
|
-
width: 0.7em;
|
|
568
|
-
--bk-tw-translate-x: -50%;
|
|
569
|
-
--bk-tw-translate-y: -50%;
|
|
570
|
-
transform: translate(var(--bk-tw-translate-x), var(--bk-tw-translate-y)) rotate(var(--bk-tw-rotate)) skewX(var(--bk-tw-skew-x)) skewY(var(--bk-tw-skew-y)) scaleX(var(--bk-tw-scale-x)) scaleY(var(--bk-tw-scale-y));
|
|
571
|
-
fill: currentColor;
|
|
572
|
-
}
|
|
573
|
-
.bk .bk-blokkli-item-actions-title-icon .bk-blokkli-item-actions-title-icon-reusable, .bk .bk-blokkli-item-actions-type-dropdown-icon .bk-blokkli-item-actions-title-icon-reusable {
|
|
574
|
-
position: absolute;
|
|
575
|
-
z-index: 50;
|
|
576
|
-
top: -7px;
|
|
577
|
-
right: -7px;
|
|
578
|
-
--bk-tw-bg-opacity: 1;
|
|
579
|
-
background-color: rgb(var(--bk-theme-lime-dark) / var(--bk-tw-bg-opacity, 1));
|
|
580
|
-
width: 20px;
|
|
581
|
-
height: 20px;
|
|
582
|
-
display: flex;
|
|
583
|
-
align-items: center;
|
|
584
|
-
justify-content: center;
|
|
585
|
-
border-radius: 9999px;
|
|
586
|
-
border-width: 1px;
|
|
587
|
-
--bk-tw-border-opacity: 1;
|
|
588
|
-
border-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-border-opacity, 1));
|
|
589
|
-
--bk-tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
590
|
-
--bk-tw-shadow-colored: 0 10px 15px -3px var(--bk-tw-shadow-color), 0 4px 6px -4px var(--bk-tw-shadow-color);
|
|
591
|
-
box-shadow: var(--bk-tw-ring-offset-shadow, 0 0 #0000), var(--bk-tw-ring-shadow, 0 0 #0000), var(--bk-tw-shadow);
|
|
592
|
-
}
|
|
593
|
-
.bk .bk-blokkli-item-actions-title-icon .bk-blokkli-item-actions-title-icon-reusable svg, .bk .bk-blokkli-item-actions-type-dropdown-icon .bk-blokkli-item-actions-title-icon-reusable svg {
|
|
594
|
-
width: 12px;
|
|
595
|
-
height: 12px;
|
|
596
|
-
fill: rgb(var(--bk-theme-lime-light) / 1);
|
|
597
|
-
}
|
|
598
|
-
.bk .bk-blokkli-item-actions-type-button,
|
|
599
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button {
|
|
600
|
-
padding-left: 9px;
|
|
601
|
-
}
|
|
602
|
-
@media (min-width: 1024px) {
|
|
603
|
-
.bk .bk-blokkli-item-actions-type-button,
|
|
604
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button {
|
|
605
|
-
padding-right: 5px;
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
609
|
-
position: relative;
|
|
610
|
-
display: flex;
|
|
611
|
-
height: 100%;
|
|
612
|
-
cursor: default;
|
|
613
|
-
align-items: center;
|
|
614
|
-
font-weight: 700;
|
|
615
|
-
line-height: 1;
|
|
616
|
-
--bk-tw-text-opacity: 1;
|
|
617
|
-
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1));
|
|
618
|
-
}
|
|
619
|
-
@media (min-width: 1024px) {
|
|
620
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
621
|
-
min-width: 180px;
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
625
|
-
font-size: 12px;
|
|
626
|
-
line-height: 16px;
|
|
627
|
-
}
|
|
628
|
-
@media (min-width: 1024px) {
|
|
629
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
630
|
-
font-size: 16px;
|
|
631
|
-
line-height: 24px;
|
|
632
|
-
}
|
|
633
|
-
}
|
|
634
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
635
|
-
width: 100%;
|
|
636
|
-
}
|
|
637
|
-
@media (min-width: 1024px) {
|
|
638
|
-
.bk .bk-blokkli-item-actions-type-button {
|
|
639
|
-
border-top-left-radius: 6px;
|
|
640
|
-
border-bottom-left-radius: 6px;
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
.bk .bk-blokkli-item-actions-type-button .bk-blokkli-item-actions-title-label {
|
|
644
|
-
margin-right: auto;
|
|
645
|
-
overflow: hidden;
|
|
646
|
-
text-overflow: ellipsis;
|
|
647
|
-
white-space: nowrap;
|
|
648
|
-
}
|
|
649
|
-
.bk .bk-blokkli-item-actions-type-button .bk-blokkli-item-actions-title-icon {
|
|
650
|
-
flex: 0 0 auto;
|
|
651
|
-
}
|
|
652
|
-
.bk .bk-blokkli-item-actions-type-button._bk_is-interactive {
|
|
653
|
-
cursor: pointer;
|
|
654
|
-
}
|
|
655
|
-
@media not all and (hover: none) {
|
|
656
|
-
.bk .bk-blokkli-item-actions-type-button._bk_is-interactive:not(._bk_is-open):hover {
|
|
657
|
-
--bk-tw-bg-opacity: 1;
|
|
658
|
-
background-color: rgb(var(--bk-theme-mono-700) / var(--bk-tw-bg-opacity, 1));
|
|
659
|
-
--bk-tw-text-opacity: 1;
|
|
660
|
-
color: rgb(var(--bk-theme-mono-50) / var(--bk-tw-text-opacity, 1));
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
.bk .bk-blokkli-item-actions-type-button._bk_is-open {
|
|
664
|
-
border-bottom-right-radius: 0px;
|
|
665
|
-
border-bottom-left-radius: 0px;
|
|
666
|
-
--bk-tw-text-opacity: 1;
|
|
667
|
-
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
668
|
-
}
|
|
669
|
-
@media (min-width: 1024px) {
|
|
670
|
-
.bk .bk-blokkli-item-actions-type-button._bk_is-open {
|
|
671
|
-
--bk-tw-bg-opacity: 1;
|
|
672
|
-
background-color: rgb(var(--bk-theme-mono-700) / var(--bk-tw-bg-opacity, 1));
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
.bk .bk-blokkli-item-actions-type-button._bk_is-open .bk-caret {
|
|
676
|
-
--bk-tw-rotate: 180deg;
|
|
677
|
-
transform: translate(var(--bk-tw-translate-x), var(--bk-tw-translate-y)) rotate(var(--bk-tw-rotate)) skewX(var(--bk-tw-skew-x)) skewY(var(--bk-tw-skew-y)) scaleX(var(--bk-tw-scale-x)) scaleY(var(--bk-tw-scale-y));
|
|
678
|
-
}
|
|
679
|
-
.bk .bk-blokkli-item-actions-type-button .bk-caret {
|
|
680
|
-
margin-left: 2px;
|
|
681
|
-
}
|
|
682
|
-
.bk .bk-blokkli-item-actions-type-button .bk-caret svg {
|
|
683
|
-
pointer-events: none;
|
|
684
|
-
width: 15px;
|
|
685
|
-
height: 15px;
|
|
686
|
-
fill: currentColor;
|
|
687
|
-
}
|
|
688
|
-
@media (min-width: 768px) {
|
|
689
|
-
.bk .bk-blokkli-item-actions-type-button .bk-caret svg {
|
|
690
|
-
width: 20px;
|
|
691
|
-
height: 20px;
|
|
692
|
-
}
|
|
693
|
-
}
|
|
694
|
-
.bk #bk-blokkli-item-actions {
|
|
695
|
-
justify-content: flex-end;
|
|
696
|
-
}
|
|
697
|
-
@media (min-width: 1024px) {
|
|
698
|
-
.bk #bk-blokkli-item-actions {
|
|
699
|
-
border-left-width: 1px;
|
|
700
|
-
--bk-tw-border-opacity: 1;
|
|
701
|
-
border-left-color: rgb(var(--bk-theme-mono-500) / var(--bk-tw-border-opacity, 1));
|
|
702
|
-
}
|
|
703
|
-
}
|
|
704
|
-
.bk .bk-blokkli-item-actions-type {
|
|
705
|
-
position: relative;
|
|
706
|
-
height: 100%;
|
|
707
|
-
}
|
|
708
|
-
.bk .bk-blokkli-item-actions-type-dropdown {
|
|
709
|
-
position: absolute;
|
|
710
|
-
bottom: 100%;
|
|
711
|
-
left: 0px;
|
|
712
|
-
display: flex;
|
|
713
|
-
width: 100vw;
|
|
714
|
-
min-width: 300px;
|
|
715
|
-
flex-direction: column;
|
|
716
|
-
--bk-tw-bg-opacity: 1;
|
|
717
|
-
background-color: rgb(var(--bk-theme-mono-900) / var(--bk-tw-bg-opacity, 1));
|
|
718
|
-
--bk-tw-text-opacity: 1;
|
|
719
|
-
color: rgb(var(--bk-theme-mono-200) / var(--bk-tw-text-opacity, 1));
|
|
720
|
-
--bk-tw-shadow: 0 -20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
721
|
-
--bk-tw-shadow-colored: 0 -20px 25px -5px var(--bk-tw-shadow-color), 0 8px 10px -6px var(--bk-tw-shadow-color);
|
|
722
|
-
box-shadow: var(--bk-tw-ring-offset-shadow, 0 0 #0000), var(--bk-tw-ring-shadow, 0 0 #0000), var(--bk-tw-shadow);
|
|
723
|
-
}
|
|
724
|
-
@media (min-width: 1024px) {
|
|
725
|
-
.bk .bk-blokkli-item-actions-type-dropdown {
|
|
726
|
-
width: auto;
|
|
727
|
-
border-top-right-radius: 4px;
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
.bk .bk-blokkli-item-actions-type-dropdown > div {
|
|
731
|
-
border-bottom-width: 1px;
|
|
732
|
-
--bk-tw-border-opacity: 1;
|
|
733
|
-
border-bottom-color: rgb(var(--bk-theme-mono-700) / var(--bk-tw-border-opacity, 1));
|
|
734
|
-
}
|
|
735
|
-
@media (min-width: 1024px) {
|
|
736
|
-
.bk .bk-blokkli-item-actions-type-dropdown {
|
|
737
|
-
top: 100%;
|
|
738
|
-
bottom: auto;
|
|
739
|
-
left: 23px;
|
|
740
|
-
border-top-left-radius: 0px;
|
|
741
|
-
border-top-right-radius: 0px;
|
|
742
|
-
border-bottom-right-radius: 4px;
|
|
743
|
-
border-bottom-left-radius: 4px;
|
|
744
|
-
--bk-tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
745
|
-
--bk-tw-shadow-colored: 0 20px 25px -5px var(--bk-tw-shadow-color), 0 8px 10px -6px var(--bk-tw-shadow-color);
|
|
746
|
-
box-shadow: var(--bk-tw-ring-offset-shadow, 0 0 #0000), var(--bk-tw-ring-shadow, 0 0 #0000), var(--bk-tw-shadow);
|
|
747
|
-
border-bottom-width: 2px;
|
|
748
|
-
border-left-width: 2px;
|
|
749
|
-
border-right-width: 2px;
|
|
750
|
-
--bk-tw-border-opacity: 1;
|
|
751
|
-
border-color: rgb(var(--bk-theme-mono-400) / var(--bk-tw-border-opacity, 1));
|
|
752
|
-
}
|
|
753
|
-
}
|
|
754
|
-
.bk .bk-blokkli-item-actions-type-dropdown li {
|
|
755
|
-
position: relative;
|
|
756
|
-
}
|
|
757
|
-
.bk .bk-blokkli-item-actions-type-dropdown h3 {
|
|
758
|
-
padding: 10px;
|
|
759
|
-
padding-top: 15px;
|
|
760
|
-
font-size: 12px;
|
|
761
|
-
line-height: 16px;
|
|
762
|
-
font-weight: 600;
|
|
763
|
-
text-transform: uppercase;
|
|
764
|
-
letter-spacing: 0.025em;
|
|
765
|
-
--bk-tw-text-opacity: 1;
|
|
766
|
-
color: rgb(var(--bk-theme-mono-400) / var(--bk-tw-text-opacity, 1));
|
|
767
|
-
}
|
|
768
|
-
.bk .bk-blokkli-item-actions-type-dropdown .bk-blokkli-item-actions-type-dropdown-button .bk-blokkli-item-icon,
|
|
769
|
-
.bk .bk-blokkli-item-actions-type-dropdown .bk-blokkli-item-actions-type-dropdown-button .bk-icon {
|
|
770
|
-
display: flex;
|
|
771
|
-
flex-shrink: 0;
|
|
772
|
-
align-items: center;
|
|
773
|
-
justify-content: center;
|
|
774
|
-
width: 25px;
|
|
775
|
-
height: 25px;
|
|
776
|
-
}
|
|
777
|
-
.bk .bk-blokkli-item-actions-type-dropdown .bk-blokkli-item-actions-type-dropdown-button .bk-blokkli-item-icon svg, .bk .bk-blokkli-item-actions-type-dropdown .bk-blokkli-item-actions-type-dropdown-button .bk-icon svg {
|
|
778
|
-
fill: currentColor;
|
|
779
|
-
}
|
|
780
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button {
|
|
781
|
-
display: flex;
|
|
782
|
-
width: 100%;
|
|
783
|
-
align-items: center;
|
|
784
|
-
font-weight: 600;
|
|
785
|
-
--bk-tw-text-opacity: 1;
|
|
786
|
-
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1));
|
|
787
|
-
}
|
|
788
|
-
@media (min-width: 1024px) {
|
|
789
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button {
|
|
790
|
-
font-size: 16px;
|
|
791
|
-
line-height: 24px;
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button {
|
|
795
|
-
text-align: left;
|
|
796
|
-
line-height: 1;
|
|
797
|
-
height: var(--bk-actions-height);
|
|
798
|
-
}
|
|
799
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button[disabled] {
|
|
800
|
-
pointer-events: none;
|
|
801
|
-
opacity: 0.2;
|
|
802
|
-
}
|
|
803
|
-
@media (min-width: 1024px) {
|
|
804
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button:hover {
|
|
805
|
-
--bk-tw-bg-opacity: 1;
|
|
806
|
-
background-color: rgb(var(--bk-theme-mono-800) / var(--bk-tw-bg-opacity, 1));
|
|
807
|
-
--bk-tw-text-opacity: 1;
|
|
808
|
-
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
809
|
-
}
|
|
810
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button:hover .bk-icon,
|
|
811
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button:hover .bk-blokkli-item-icon {
|
|
812
|
-
--bk-tw-border-opacity: 1;
|
|
813
|
-
border-color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-border-opacity, 1));
|
|
814
|
-
}
|
|
815
|
-
.bk .bk-blokkli-item-actions-type-dropdown-button:hover .bk-description {
|
|
816
|
-
--bk-tw-text-opacity: 1;
|
|
817
|
-
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
.bk .bk-blokkli-item-actions-comment {
|
|
821
|
-
/* @apply relative; */
|
|
822
|
-
}
|
|
823
|
-
.bk .bk-blokkli-item-actions-title-pill {
|
|
824
|
-
font-size: 10px;
|
|
825
|
-
margin-left: 5px;
|
|
826
|
-
text-transform: uppercase;
|
|
827
|
-
display: flex;
|
|
828
|
-
height: 20px;
|
|
829
|
-
align-items: center;
|
|
830
|
-
justify-content: center;
|
|
831
|
-
border-radius: 9999px;
|
|
832
|
-
padding-left: 5px;
|
|
833
|
-
padding-right: 5px;
|
|
834
|
-
background-color: rgb(var(--bk-theme-accent-900) / 0.8);
|
|
835
|
-
--bk-tw-text-opacity: 1;
|
|
836
|
-
color: rgb(var(--bk-theme-accent-100) / var(--bk-tw-text-opacity, 1));
|
|
837
|
-
border-width: 1px;
|
|
838
|
-
border-color: rgb(var(--bk-theme-accent-200) / 0.7);
|
|
839
|
-
font-weight: 700;
|
|
840
|
-
line-height: 1;
|
|
841
|
-
}
|
|
842
|
-
.bk .bk-blokkli-item-actions-title-pill.bk-is-restricted {
|
|
843
|
-
width: 20px;
|
|
844
|
-
height: 20px;
|
|
845
|
-
padding: 0px;
|
|
94
|
+
.bk-is-locked:is(.bk .bk-blokkli-item-actions-controls) {
|
|
95
|
+
pointer-events: none;
|
|
846
96
|
}
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
height: 1.25em;
|
|
850
|
-
fill: currentColor;
|
|
97
|
+
.bk-is-locked:is(.bk .bk-blokkli-item-actions-controls) .bk-blokkli-item-actions-buttons > button,.bk-is-locked:is(.bk .bk-blokkli-item-actions-controls) .bk-blokkli-item-options > .bk-blokkli-item-options-item {
|
|
98
|
+
opacity: 20%;
|
|
851
99
|
}
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
background-color: rgb(var(--bk-theme-yellow-normal) / 0.2);
|
|
855
|
-
--bk-tw-text-opacity: 1;
|
|
856
|
-
color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-text-opacity, 1));
|
|
100
|
+
:is(.bk .bk-blokkli-item-actions-controls)::-webkit-scrollbar {
|
|
101
|
+
display: none;
|
|
857
102
|
}
|
|
858
103
|
</style>
|