@blokkli/editor 2.0.0-alpha.51 → 2.0.0-alpha.53
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/chunks/tailwindConfig.mjs +3 -3
- package/dist/global/types/blockOptions.d.ts +18 -2
- package/dist/module.d.mts +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +281 -18
- package/dist/modules/agent/index.d.mts +1 -1
- package/dist/modules/agent/runtime/app/composables/agentProvider.d.ts +1 -0
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.d.vue.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue +14 -49
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue.d.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.d.vue.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue +102 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue.d.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +8 -5
- 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 +9 -5
- 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/index.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +16 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/index.vue +29 -0
- package/dist/modules/agent/runtime/app/features/agent/types.d.ts +16 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +3 -1
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +8 -1
- package/dist/modules/charts/index.d.mts +1 -1
- package/dist/modules/charts/index.mjs +2 -3
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +1 -1
- package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +1 -1
- package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +16 -0
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +9 -0
- package/dist/modules/drupal/graphql/features/agent.graphql +20 -0
- package/dist/modules/drupal/graphql/features/publishNew.graphql +14 -0
- package/dist/modules/drupal/graphql/features/referenced-entities.graphql +21 -0
- package/dist/modules/drupal/graphql/features/textFieldValues.graphql +20 -0
- package/dist/modules/drupal/graphql/features/workspace.graphql +23 -0
- package/dist/modules/drupal/graphql/mutations/bulk_translate_field_values.graphql +19 -0
- package/dist/modules/drupal/graphql/mutations/clear_outdated_translation.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/ignore_analyze.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/request_translation.graphql +10 -0
- package/dist/modules/drupal/graphql/mutations/unignore_analyze.graphql +15 -0
- package/dist/modules/drupal/index.d.mts +1 -1
- package/dist/modules/drupal/index.mjs +16 -0
- package/dist/modules/drupal/runtime/adapter/index.js +180 -11
- package/dist/modules/iframes/index.d.mts +31 -0
- package/dist/modules/iframes/index.mjs +52 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.d.vue.ts +18 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue +61 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue.d.ts +18 -0
- package/dist/modules/iframes/runtime/components/index.d.ts +1 -0
- package/dist/modules/iframes/runtime/components/index.js +1 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.d.vue.ts +12 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue +220 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue.d.ts +12 -0
- package/dist/modules/iframes/runtime/types.d.ts +10 -0
- package/dist/modules/index.d.mts +1 -1
- package/dist/modules/table-of-contents/index.d.mts +1 -1
- package/dist/runtime/components/Blocks/NotImplemented/index.vue +57 -0
- package/dist/runtime/components/BlokkliEditable.d.vue.ts +2 -1
- package/dist/runtime/components/BlokkliEditable.vue +58 -42
- package/dist/runtime/components/BlokkliEditable.vue.d.ts +2 -1
- package/dist/runtime/components/BlokkliItem.d.vue.ts +1 -1
- package/dist/runtime/components/BlokkliItem.vue.d.ts +1 -1
- package/dist/runtime/editor/adapter/index.d.ts +8 -1
- package/dist/runtime/editor/components/Actions/Interactions/index.vue +77 -17
- package/dist/runtime/editor/components/Actions/{ItemDropdown.vue → ItemDropdown/index.vue} +9 -10
- package/dist/runtime/editor/components/Actions/index.vue +586 -23
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +1 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue +185 -1
- package/dist/runtime/editor/components/AppMenu/index.vue +24 -10
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +6 -2
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +223 -3
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +6 -2
- package/dist/runtime/editor/components/AutoHeight/index.vue +23 -0
- package/dist/runtime/editor/components/Banner/Inner.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Banner/Inner.vue +32 -0
- package/dist/runtime/editor/components/Banner/Inner.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +3 -13
- package/dist/runtime/editor/components/Banner/index.vue +2 -14
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +3 -13
- package/dist/runtime/editor/components/BetaIndicator/index.d.vue.ts +6 -0
- package/dist/runtime/editor/components/BetaIndicator/index.vue +16 -0
- package/dist/runtime/editor/components/BetaIndicator/index.vue.d.ts +6 -0
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue +51 -1
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +27 -1
- package/dist/runtime/editor/components/BlockProxy/index.vue +148 -1
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +59 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue +170 -20
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +2 -0
- package/dist/runtime/editor/components/Dialog/index.vue +341 -0
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +2 -0
- package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +117 -0
- package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +224 -28
- package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +1 -0
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +5 -1
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +1 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue +319 -0
- package/dist/runtime/editor/components/DraggableList.vue +103 -0
- package/dist/runtime/editor/components/Dropdown/index.vue +84 -0
- package/dist/runtime/editor/components/EditProvider.vue +72 -15
- package/dist/runtime/editor/components/FileDropHandler/index.d.vue.ts +23 -0
- package/dist/runtime/editor/components/FileDropHandler/index.vue +108 -0
- package/dist/runtime/editor/components/FileDropHandler/index.vue.d.ts +23 -0
- package/dist/runtime/editor/components/FlexTextarea/index.vue +4 -2
- package/dist/runtime/editor/components/Form/Datepicker/index.vue +149 -0
- package/dist/runtime/editor/components/Form/Toggle/index.vue +205 -1
- package/dist/runtime/editor/components/FormOverlay/index.vue +90 -0
- package/dist/runtime/editor/components/Icon/index.vue +6 -0
- package/dist/runtime/editor/components/Indicators/index.vue +161 -0
- package/dist/runtime/editor/components/InfoBox/index.vue +65 -0
- package/dist/runtime/editor/components/Konami/index.vue +119 -0
- package/dist/runtime/editor/components/Loading/index.d.vue.ts +6 -3
- package/dist/runtime/editor/components/Loading/index.vue +10 -5
- package/dist/runtime/editor/components/Loading/index.vue.d.ts +6 -3
- package/dist/runtime/editor/components/Messages/index.vue +131 -0
- package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +246 -12
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.vue +19 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.vue +84 -0
- package/dist/runtime/editor/components/Pagination/index.vue +41 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +23 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.vue +429 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.vue +150 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Popup/index.vue +77 -2
- package/dist/runtime/editor/components/PreviewProvider.vue +7 -0
- package/dist/runtime/editor/components/Resizable/index.vue +90 -1
- package/dist/runtime/editor/components/ScaleToFit/index.vue +30 -1
- package/dist/runtime/editor/components/SearchOverlay/index.d.vue.ts +43 -0
- package/dist/runtime/editor/components/SearchOverlay/index.vue +264 -0
- package/dist/runtime/editor/components/SearchOverlay/index.vue.d.ts +43 -0
- package/dist/runtime/editor/components/StatusIcon/index.vue +104 -0
- package/dist/runtime/editor/components/StatusIndicator/index.d.vue.ts +9 -0
- package/dist/runtime/editor/components/StatusIndicator/index.vue +16 -0
- package/dist/runtime/editor/components/StatusIndicator/index.vue.d.ts +9 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue +57 -0
- package/dist/runtime/editor/components/Tabs/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Tabs/index.vue +32 -0
- package/dist/runtime/editor/components/Tabs/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Toolbar/index.vue +214 -3
- package/dist/runtime/editor/components/Tooltip/Context.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Tooltip/Context.vue +13 -0
- package/dist/runtime/editor/components/Tooltip/Context.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Tooltip/Status.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Tooltip/Status.vue +27 -0
- package/dist/runtime/editor/components/Tooltip/Status.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Tooltip/index.d.vue.ts +27 -0
- package/dist/runtime/editor/components/Tooltip/index.vue +40 -0
- package/dist/runtime/editor/components/Tooltip/index.vue.d.ts +27 -0
- package/dist/runtime/editor/components/index.d.ts +59 -49
- package/dist/runtime/editor/components/index.js +59 -98
- package/dist/runtime/editor/composables/defineHighlight.d.ts +2 -0
- package/dist/runtime/editor/composables/defineHighlight.js +10 -0
- package/dist/runtime/editor/composables/index.d.ts +1 -0
- package/dist/runtime/editor/composables/index.js +1 -0
- package/dist/runtime/editor/composables/useBlockRegistration.js +8 -0
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +1 -0
- package/dist/runtime/editor/composables/useStickyToolbar.js +16 -0
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +10 -0
- package/dist/runtime/editor/features/add-list/Help/index.vue +193 -0
- package/dist/runtime/editor/features/add-list/index.vue +441 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.vue +35 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/Main.vue +148 -24
- package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/Results.vue +0 -2
- package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +1 -2
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +11 -8
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +3 -10
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +63 -25
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +3 -10
- package/dist/runtime/editor/features/analyze/analyzers/altText.js +2 -0
- package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +3 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.js +8 -0
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +6 -12
- package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +20 -0
- package/dist/runtime/editor/features/analyze/index.vue +458 -0
- package/dist/runtime/editor/features/analyze/types.d.ts +12 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue +37 -4
- package/dist/runtime/editor/features/artboard/Renderer.vue +79 -9
- package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +84 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +1 -1
- package/dist/runtime/editor/features/block-scheduler/index.vue +114 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue +150 -0
- package/dist/runtime/editor/features/changelog/Dialog/index.vue +62 -7
- package/dist/runtime/editor/features/changelog/changelog.json +9 -1
- package/dist/runtime/editor/features/clipboard/index.vue +153 -1
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +39 -16
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +24 -130
- package/dist/runtime/editor/features/comments/index.vue +235 -0
- package/dist/runtime/editor/features/complex-options/index.vue +4 -1
- package/dist/runtime/editor/features/debug/Main.vue +1 -1
- package/dist/runtime/editor/features/debug/Section/Features.vue +2 -4
- package/dist/runtime/editor/features/debug/index.vue +168 -0
- package/dist/runtime/editor/features/dev-mode/index.vue +92 -27
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/dragging-overlay/index.vue +330 -0
- package/dist/runtime/editor/features/edit/index.vue +15 -17
- package/dist/runtime/editor/features/edit-form/Frame/index.vue +21 -4
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +9 -1
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +32 -3
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +9 -1
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +77 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +55 -56
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +416 -8
- package/dist/runtime/editor/features/editable-mask/index.vue +9 -0
- package/dist/runtime/editor/features/entity-title/index.vue +40 -56
- package/dist/runtime/editor/features/fragments/Dialog/index.vue +90 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue +71 -0
- package/dist/runtime/editor/features/help/index.vue +17 -0
- package/dist/runtime/editor/features/highlights/Renderer/fragment.glsl +89 -0
- package/dist/runtime/editor/features/highlights/Renderer/index.vue +408 -0
- package/dist/runtime/editor/features/highlights/Renderer/vertex.glsl +87 -0
- package/dist/runtime/editor/features/highlights/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/highlights/index.vue +20 -0
- package/dist/runtime/editor/features/highlights/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/List/index.vue +209 -0
- package/dist/runtime/editor/features/history/index.vue +0 -1
- package/dist/runtime/editor/features/hover/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +1 -1
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +18 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue +10 -30
- package/dist/runtime/editor/features/media-library/index.vue +331 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +6 -2
- package/dist/runtime/editor/features/options/Form/Item.vue +21 -18
- package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +25 -6
- package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/options/Form/index.vue +1 -4
- package/dist/runtime/editor/features/options/index.vue +729 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue +9 -8
- package/dist/runtime/editor/features/ownership/index.vue +1 -1
- package/dist/runtime/editor/features/preview-grant/QrCode/index.vue +8 -3
- package/dist/runtime/editor/features/publish/Dialog/Item.vue +18 -20
- package/dist/runtime/editor/features/publish/Dialog/index.vue +5 -1
- package/dist/runtime/editor/features/publish/index.vue +835 -0
- package/dist/runtime/editor/features/publish/types.d.ts +5 -1
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.d.vue.ts +4 -0
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue +81 -0
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue.d.ts +4 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.vue +78 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/referenced-entities/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/referenced-entities/index.vue +36 -0
- package/dist/runtime/editor/features/referenced-entities/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/referenced-entities/types.d.ts +13 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +188 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +1 -1
- package/dist/runtime/editor/features/search/index.vue +511 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +58 -0
- package/dist/runtime/editor/features/selection/index.vue +47 -15
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +23 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue +5 -2
- package/dist/runtime/editor/features/settings/index.vue +152 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue +7 -0
- package/dist/runtime/editor/features/structure/index.vue +178 -0
- package/dist/runtime/editor/features/templates/ManageDialog/Item.vue +3 -3
- package/dist/runtime/editor/features/templates/ManageDialog/index.vue +24 -3
- package/dist/runtime/editor/features/theme/index.vue +94 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue +34 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue +243 -13
- package/dist/runtime/editor/features/transform/Dialog/index.vue +132 -1
- package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +14 -1
- package/dist/runtime/editor/features/translations/Banner/index.vue +139 -12
- package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +14 -1
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue +272 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue +382 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/csv.d.ts +22 -0
- package/dist/runtime/editor/features/translations/CsvDialog/csv.js +50 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.vue +37 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/po.d.ts +7 -0
- package/dist/runtime/editor/features/translations/CsvDialog/po.js +36 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.d.vue.ts +37 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue +102 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue.d.ts +37 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.vue +294 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/translations/index.vue +276 -6
- package/dist/runtime/editor/features/translations/types.d.ts +47 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue +130 -0
- package/dist/runtime/editor/features/validations/index.vue +41 -0
- package/dist/runtime/editor/features/{assistant → workspace}/Overlay/index.d.vue.ts +2 -4
- package/dist/runtime/editor/features/workspace/Overlay/index.vue +177 -0
- package/dist/runtime/editor/features/{assistant → workspace}/Overlay/index.vue.d.ts +2 -4
- package/dist/runtime/editor/features/workspace/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/workspace/index.vue +46 -0
- package/dist/runtime/editor/features/workspace/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/workspace/types.d.ts +59 -0
- package/dist/runtime/editor/features/workspace/types.js +0 -0
- package/dist/runtime/editor/icons/svg/spinner.svg +2 -2
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +21 -7
- package/dist/runtime/editor/plugins/ContextMenu/index.vue +4 -0
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +9 -2
- package/dist/runtime/editor/plugins/ItemAction/index.vue +26 -16
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +9 -2
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +24 -26
- package/dist/runtime/editor/plugins/Sidebar/index.vue +612 -27
- package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +13 -84
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue +36 -22
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +13 -84
- package/dist/runtime/editor/plugins/ViewOption/index.vue +13 -14
- package/dist/runtime/editor/providers/blocks.js +1 -0
- package/dist/runtime/editor/providers/cache.d.ts +23 -0
- package/dist/runtime/editor/providers/cache.js +29 -0
- package/dist/runtime/editor/providers/directive.d.ts +25 -0
- package/dist/runtime/editor/providers/directive.js +20 -0
- package/dist/runtime/editor/providers/fieldValue.d.ts +5 -5
- package/dist/runtime/editor/providers/fieldValue.js +8 -7
- package/dist/runtime/editor/providers/plugin.d.ts +14 -0
- package/dist/runtime/editor/providers/plugin.js +9 -0
- package/dist/runtime/editor/providers/readability.js +1 -1
- package/dist/runtime/editor/providers/selection.js +1 -1
- package/dist/runtime/editor/providers/state.d.ts +1 -0
- package/dist/runtime/editor/providers/state.js +1 -0
- package/dist/runtime/editor/providers/texts.js +11 -1
- package/dist/runtime/editor/providers/ui.d.ts +11 -0
- package/dist/runtime/editor/providers/ui.js +5 -1
- package/dist/runtime/editor/translations/de.json +316 -56
- package/dist/runtime/editor/translations/fr.json +310 -50
- package/dist/runtime/editor/translations/gsw_CH.json +311 -51
- package/dist/runtime/editor/translations/it.json +310 -50
- package/dist/runtime/editor/types/app.d.ts +2 -0
- package/dist/runtime/editor/types/definitions.d.ts +8 -0
- package/dist/runtime/editor/types/field.d.ts +1 -0
- package/dist/runtime/editor/types/state.d.ts +10 -0
- package/dist/runtime/editor/types/ui.d.ts +3 -1
- package/dist/runtime/helpers/tw.d.ts +15 -0
- package/dist/runtime/helpers/tw.js +3 -0
- package/dist/runtime/types/field.d.ts +1 -0
- package/dist/shared/{editor.DsGJIlGn.d.mts → editor.BTOBvmaz.d.mts} +20 -3
- package/dist/types.d.mts +1 -1
- package/package.json +16 -3
- package/dist/runtime/editor/features/analyze/Renderer/fragment.glsl +0 -74
- package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +0 -24
- package/dist/runtime/editor/features/analyze/Renderer/index.vue +0 -330
- package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +0 -24
- package/dist/runtime/editor/features/analyze/Renderer/vertex.glsl +0 -94
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +0 -7
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue +0 -17
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -7
- package/dist/runtime/editor/features/assistant/Overlay/index.vue +0 -108
- package/dist/runtime/editor/features/assistant/docs.md +0 -7
- package/dist/runtime/editor/features/assistant/index.vue +0 -66
- package/dist/runtime/editor/features/assistant/types.d.ts +0 -37
- package/dist/runtime/editor/features/media-library/Library/FilterSelect/index.vue +0 -168
- package/dist/runtime/editor/providers/fieldValueAdapterTypes.d.ts +0 -13
- /package/dist/{runtime/editor/features/assistant → modules/iframes/runtime}/types.js +0 -0
- /package/dist/runtime/editor/components/Actions/{ItemDropdown.d.vue.ts → ItemDropdown/index.d.vue.ts} +0 -0
- /package/dist/runtime/editor/components/Actions/{ItemDropdown.vue.d.ts → ItemDropdown/index.vue.d.ts} +0 -0
- /package/dist/runtime/editor/{features/media-library/Library → components/PluginConfigFormInline}/FilterSelect/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/{features/media-library/Library → components/PluginConfigFormInline}/FilterSelect/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/{assistant → highlights/Renderer}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/{assistant → highlights/Renderer}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/{providers/fieldValueAdapterTypes.js → features/referenced-entities/types.js} +0 -0
|
@@ -133,3 +133,838 @@ export default {
|
|
|
133
133
|
name: "Publish"
|
|
134
134
|
};
|
|
135
135
|
</script>
|
|
136
|
+
|
|
137
|
+
<style>
|
|
138
|
+
.bk .bk-publish-dialog-table td:nth-child(n + 2), .bk .bk-publish-dialog-table th:nth-child(n + 2) {
|
|
139
|
+
|
|
140
|
+
white-space: nowrap;
|
|
141
|
+
|
|
142
|
+
padding-left: 18px;
|
|
143
|
+
|
|
144
|
+
text-align: right;
|
|
145
|
+
}
|
|
146
|
+
.bk .bk-publish-dialog-table td:first-child, .bk .bk-publish-dialog-table th:first-child {
|
|
147
|
+
|
|
148
|
+
width: 100%;
|
|
149
|
+
}
|
|
150
|
+
.bk .bk-publish-dialog-table tr:has(input:checked) td {
|
|
151
|
+
|
|
152
|
+
--bk-tw-bg-opacity: 1;
|
|
153
|
+
|
|
154
|
+
background-color: rgb(var(--bk-theme-mono-100) / var(--bk-tw-bg-opacity, 1));
|
|
155
|
+
}
|
|
156
|
+
.bk .bk-publish-dialog-table tr.bk-is-success td {
|
|
157
|
+
|
|
158
|
+
background-color: rgb(var(--bk-theme-lime-light) / 0.4) !important;
|
|
159
|
+
}
|
|
160
|
+
.bk .bk-publish-dialog-table tr.bk-is-success input:checked + span:before {
|
|
161
|
+
|
|
162
|
+
background-color: rgb(var(--bk-theme-lime-normal) / 0.5) !important;
|
|
163
|
+
}
|
|
164
|
+
.bk .bk-publish-dialog-table tr.bk-is-error td {
|
|
165
|
+
|
|
166
|
+
background-color: rgb(var(--bk-theme-red-normal) / 0.1) !important;
|
|
167
|
+
}
|
|
168
|
+
.bk .bk-publish-dialog-table tr.bk-is-error input:checked + span:before {
|
|
169
|
+
|
|
170
|
+
background-color: rgb(var(--bk-theme-red-normal) / 0.9) !important;
|
|
171
|
+
}
|
|
172
|
+
.bk .bk-publish-dialog-table td.bk-is-status > div {
|
|
173
|
+
|
|
174
|
+
width: 60px;
|
|
175
|
+
|
|
176
|
+
display: flex;
|
|
177
|
+
|
|
178
|
+
align-items: center;
|
|
179
|
+
|
|
180
|
+
justify-content: flex-end;
|
|
181
|
+
|
|
182
|
+
gap: 10px;
|
|
183
|
+
}
|
|
184
|
+
.bk .bk-publish-dialog-table tbody td:first-child {
|
|
185
|
+
|
|
186
|
+
padding-left: 3px;
|
|
187
|
+
}
|
|
188
|
+
.bk .bk-publish-dialog-table .bk-icon-arrow-right-thin svg {
|
|
189
|
+
|
|
190
|
+
width: 15px;
|
|
191
|
+
|
|
192
|
+
height: 15px;
|
|
193
|
+
}
|
|
194
|
+
.bk .bk-publish-dialog-table .bk-icon-loader svg {
|
|
195
|
+
|
|
196
|
+
margin-right: 15px;
|
|
197
|
+
|
|
198
|
+
height: 30px;
|
|
199
|
+
|
|
200
|
+
width: 30px;
|
|
201
|
+
|
|
202
|
+
fill: rgb(var(--bk-theme-mono-500) / 1);
|
|
203
|
+
}
|
|
204
|
+
.bk .bk-publish-dialog-table + .bk-publish-dialog-table {
|
|
205
|
+
|
|
206
|
+
margin-top: 40px;
|
|
207
|
+
}
|
|
208
|
+
.bk .bk-dialog-publish-form {
|
|
209
|
+
|
|
210
|
+
display: flex;
|
|
211
|
+
|
|
212
|
+
flex-direction: column;
|
|
213
|
+
|
|
214
|
+
min-height: calc(100vh - 500px);
|
|
215
|
+
}
|
|
216
|
+
.bk .bk-dialog-publish-form .bk-heading-2 {
|
|
217
|
+
|
|
218
|
+
margin-bottom: 10px;
|
|
219
|
+
|
|
220
|
+
font-size: 20px;
|
|
221
|
+
|
|
222
|
+
line-height: 28px;
|
|
223
|
+
|
|
224
|
+
font-weight: 700;
|
|
225
|
+
}
|
|
226
|
+
.bk .bk-publish-options {
|
|
227
|
+
|
|
228
|
+
margin-top: 20px;
|
|
229
|
+
|
|
230
|
+
margin-bottom: 20px;
|
|
231
|
+
|
|
232
|
+
display: grid;
|
|
233
|
+
|
|
234
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
235
|
+
|
|
236
|
+
gap: 10px;
|
|
237
|
+
}
|
|
238
|
+
.bk .bk-publish-option {
|
|
239
|
+
|
|
240
|
+
position: relative;
|
|
241
|
+
|
|
242
|
+
display: grid;
|
|
243
|
+
|
|
244
|
+
cursor: pointer;
|
|
245
|
+
|
|
246
|
+
grid-template-columns: auto 1fr;
|
|
247
|
+
|
|
248
|
+
align-items: center;
|
|
249
|
+
|
|
250
|
+
gap: 15px;
|
|
251
|
+
|
|
252
|
+
hyphens: auto;
|
|
253
|
+
|
|
254
|
+
line-height: 1;
|
|
255
|
+
}
|
|
256
|
+
.bk .bk-publish-option.bk-is-disabled {
|
|
257
|
+
|
|
258
|
+
pointer-events: none;
|
|
259
|
+
}
|
|
260
|
+
.bk .bk-publish-option.bk-is-disabled .bk-publish-option-icon {
|
|
261
|
+
|
|
262
|
+
--bk-tw-border-opacity: 1 !important;
|
|
263
|
+
|
|
264
|
+
border-color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-border-opacity, 1)) !important;
|
|
265
|
+
|
|
266
|
+
--bk-tw-text-opacity: 1 !important;
|
|
267
|
+
|
|
268
|
+
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1)) !important;
|
|
269
|
+
}
|
|
270
|
+
.bk .bk-publish-option.bk-is-disabled .bk-publish-option-label {
|
|
271
|
+
|
|
272
|
+
--bk-tw-text-opacity: 1;
|
|
273
|
+
|
|
274
|
+
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1));
|
|
275
|
+
}
|
|
276
|
+
.bk .bk-publish-option.bk-is-disabled .bk-publish-option-description {
|
|
277
|
+
|
|
278
|
+
--bk-tw-text-opacity: 1;
|
|
279
|
+
|
|
280
|
+
color: rgb(var(--bk-theme-mono-300) / var(--bk-tw-text-opacity, 1));
|
|
281
|
+
}
|
|
282
|
+
.bk .bk-publish-option input {
|
|
283
|
+
|
|
284
|
+
position: absolute;
|
|
285
|
+
|
|
286
|
+
top: 0px;
|
|
287
|
+
|
|
288
|
+
left: 0px;
|
|
289
|
+
|
|
290
|
+
appearance: none;
|
|
291
|
+
|
|
292
|
+
opacity: 0;
|
|
293
|
+
}
|
|
294
|
+
.bk .bk-publish-option:has(input:checked) .bk-publish-option-label {
|
|
295
|
+
|
|
296
|
+
--bk-tw-text-opacity: 1;
|
|
297
|
+
|
|
298
|
+
color: rgb(var(--bk-theme-mono-950) / var(--bk-tw-text-opacity, 1));
|
|
299
|
+
}
|
|
300
|
+
.bk .bk-publish-option:has(input:checked) .bk-publish-option-icon-check {
|
|
301
|
+
|
|
302
|
+
visibility: visible;
|
|
303
|
+
}
|
|
304
|
+
.bk .bk-publish-option.bk-is-red .bk-publish-option-icon {
|
|
305
|
+
|
|
306
|
+
--bk-tw-border-opacity: 1;
|
|
307
|
+
|
|
308
|
+
border-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-border-opacity, 1));
|
|
309
|
+
|
|
310
|
+
--bk-tw-text-opacity: 1;
|
|
311
|
+
|
|
312
|
+
color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-text-opacity, 1));
|
|
313
|
+
}
|
|
314
|
+
.bk .bk-publish-option.bk-is-red:hover .bk-publish-option-icon {
|
|
315
|
+
|
|
316
|
+
--bk-tw-bg-opacity: 1;
|
|
317
|
+
|
|
318
|
+
background-color: rgb(var(--bk-theme-red-light) / var(--bk-tw-bg-opacity, 1));
|
|
319
|
+
}
|
|
320
|
+
.bk .bk-publish-option.bk-is-red:has(input:checked) .bk-publish-option-icon {
|
|
321
|
+
|
|
322
|
+
--bk-tw-border-opacity: 1;
|
|
323
|
+
|
|
324
|
+
border-color: rgb(var(--bk-theme-red-dark) / var(--bk-tw-border-opacity, 1));
|
|
325
|
+
|
|
326
|
+
--bk-tw-bg-opacity: 1;
|
|
327
|
+
|
|
328
|
+
background-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-bg-opacity, 1));
|
|
329
|
+
|
|
330
|
+
--bk-tw-text-opacity: 1;
|
|
331
|
+
|
|
332
|
+
color: rgb(var(--bk-theme-red-light) / var(--bk-tw-text-opacity, 1));
|
|
333
|
+
|
|
334
|
+
--bk-tw-ring-offset-shadow: var(--bk-tw-ring-inset) 0 0 0 var(--bk-tw-ring-offset-width) var(--bk-tw-ring-offset-color);
|
|
335
|
+
|
|
336
|
+
--bk-tw-ring-shadow: var(--bk-tw-ring-inset) 0 0 0 calc(4px + var(--bk-tw-ring-offset-width)) var(--bk-tw-ring-color);
|
|
337
|
+
|
|
338
|
+
box-shadow: var(--bk-tw-ring-offset-shadow), var(--bk-tw-ring-shadow), var(--bk-tw-shadow, 0 0 #0000);
|
|
339
|
+
|
|
340
|
+
--bk-tw-ring-color: rgb(var(--bk-theme-red-normal) / 0.3);
|
|
341
|
+
|
|
342
|
+
outline-style: solid;
|
|
343
|
+
|
|
344
|
+
outline-width: 1px;
|
|
345
|
+
|
|
346
|
+
outline-color: rgb(var(--bk-theme-red-dark) / 0.6);
|
|
347
|
+
}
|
|
348
|
+
.bk .bk-publish-option.bk-is-yellow .bk-publish-option-icon {
|
|
349
|
+
|
|
350
|
+
--bk-tw-border-opacity: 1;
|
|
351
|
+
|
|
352
|
+
border-color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-border-opacity, 1));
|
|
353
|
+
|
|
354
|
+
--bk-tw-text-opacity: 1;
|
|
355
|
+
|
|
356
|
+
color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-text-opacity, 1));
|
|
357
|
+
}
|
|
358
|
+
.bk .bk-publish-option.bk-is-yellow:hover .bk-publish-option-icon {
|
|
359
|
+
|
|
360
|
+
--bk-tw-bg-opacity: 1;
|
|
361
|
+
|
|
362
|
+
background-color: rgb(var(--bk-theme-yellow-light) / var(--bk-tw-bg-opacity, 1));
|
|
363
|
+
}
|
|
364
|
+
.bk .bk-publish-option.bk-is-yellow:has(input:checked) .bk-publish-option-icon {
|
|
365
|
+
|
|
366
|
+
--bk-tw-bg-opacity: 1;
|
|
367
|
+
|
|
368
|
+
background-color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-bg-opacity, 1));
|
|
369
|
+
|
|
370
|
+
--bk-tw-text-opacity: 1;
|
|
371
|
+
|
|
372
|
+
color: rgb(var(--bk-theme-yellow-dark) / var(--bk-tw-text-opacity, 1));
|
|
373
|
+
|
|
374
|
+
--bk-tw-ring-offset-shadow: var(--bk-tw-ring-inset) 0 0 0 var(--bk-tw-ring-offset-width) var(--bk-tw-ring-offset-color);
|
|
375
|
+
|
|
376
|
+
--bk-tw-ring-shadow: var(--bk-tw-ring-inset) 0 0 0 calc(4px + var(--bk-tw-ring-offset-width)) var(--bk-tw-ring-color);
|
|
377
|
+
|
|
378
|
+
box-shadow: var(--bk-tw-ring-offset-shadow), var(--bk-tw-ring-shadow), var(--bk-tw-shadow, 0 0 #0000);
|
|
379
|
+
|
|
380
|
+
--bk-tw-ring-color: rgb(var(--bk-theme-yellow-normal) / 0.3);
|
|
381
|
+
|
|
382
|
+
outline-style: solid;
|
|
383
|
+
|
|
384
|
+
outline-width: 1px;
|
|
385
|
+
|
|
386
|
+
outline-color: rgb(var(--bk-theme-yellow-dark) / 0.7);
|
|
387
|
+
}
|
|
388
|
+
.bk .bk-publish-option.bk-is-lime .bk-publish-option-icon {
|
|
389
|
+
|
|
390
|
+
--bk-tw-border-opacity: 1;
|
|
391
|
+
|
|
392
|
+
border-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-border-opacity, 1));
|
|
393
|
+
|
|
394
|
+
--bk-tw-text-opacity: 1;
|
|
395
|
+
|
|
396
|
+
color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-text-opacity, 1));
|
|
397
|
+
}
|
|
398
|
+
.bk .bk-publish-option.bk-is-lime:hover .bk-publish-option-icon {
|
|
399
|
+
|
|
400
|
+
--bk-tw-bg-opacity: 1;
|
|
401
|
+
|
|
402
|
+
background-color: rgb(var(--bk-theme-lime-light) / var(--bk-tw-bg-opacity, 1));
|
|
403
|
+
}
|
|
404
|
+
.bk .bk-publish-option.bk-is-lime:has(input:checked) .bk-publish-option-icon {
|
|
405
|
+
|
|
406
|
+
--bk-tw-bg-opacity: 1;
|
|
407
|
+
|
|
408
|
+
background-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-bg-opacity, 1));
|
|
409
|
+
|
|
410
|
+
--bk-tw-text-opacity: 1;
|
|
411
|
+
|
|
412
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
413
|
+
|
|
414
|
+
outline-color: rgb(var(--bk-theme-lime-normal) / 0.3);
|
|
415
|
+
|
|
416
|
+
--bk-tw-ring-offset-shadow: var(--bk-tw-ring-inset) 0 0 0 var(--bk-tw-ring-offset-width) var(--bk-tw-ring-offset-color);
|
|
417
|
+
|
|
418
|
+
--bk-tw-ring-shadow: var(--bk-tw-ring-inset) 0 0 0 calc(4px + var(--bk-tw-ring-offset-width)) var(--bk-tw-ring-color);
|
|
419
|
+
|
|
420
|
+
box-shadow: var(--bk-tw-ring-offset-shadow), var(--bk-tw-ring-shadow), var(--bk-tw-shadow, 0 0 #0000);
|
|
421
|
+
|
|
422
|
+
--bk-tw-ring-color: rgb(var(--bk-theme-lime-normal) / 0.3);
|
|
423
|
+
|
|
424
|
+
outline-style: solid;
|
|
425
|
+
|
|
426
|
+
outline-width: 1px;
|
|
427
|
+
|
|
428
|
+
outline-color: rgb(var(--bk-theme-lime-dark) / 1);
|
|
429
|
+
}
|
|
430
|
+
.bk .bk-publish-option-icon {
|
|
431
|
+
|
|
432
|
+
position: relative;
|
|
433
|
+
|
|
434
|
+
display: flex;
|
|
435
|
+
|
|
436
|
+
align-items: center;
|
|
437
|
+
|
|
438
|
+
justify-content: center;
|
|
439
|
+
|
|
440
|
+
gap: 10px;
|
|
441
|
+
|
|
442
|
+
border-radius: 9999px;
|
|
443
|
+
|
|
444
|
+
border-width: 1px;
|
|
445
|
+
|
|
446
|
+
width: 60px;
|
|
447
|
+
|
|
448
|
+
height: 60px;
|
|
449
|
+
}
|
|
450
|
+
.bk .bk-publish-option-icon > .bk-icon {
|
|
451
|
+
|
|
452
|
+
width: 30px;
|
|
453
|
+
|
|
454
|
+
height: 30px;
|
|
455
|
+
}
|
|
456
|
+
.bk .bk-publish-option-icon > .bk-icon svg {
|
|
457
|
+
|
|
458
|
+
width: 100%;
|
|
459
|
+
|
|
460
|
+
height: 100%;
|
|
461
|
+
|
|
462
|
+
fill: currentColor;
|
|
463
|
+
}
|
|
464
|
+
.bk .bk-publish-option-icon-check {
|
|
465
|
+
|
|
466
|
+
visibility: hidden;
|
|
467
|
+
|
|
468
|
+
position: absolute;
|
|
469
|
+
|
|
470
|
+
top: -1px;
|
|
471
|
+
|
|
472
|
+
right: -9px;
|
|
473
|
+
|
|
474
|
+
display: flex;
|
|
475
|
+
|
|
476
|
+
align-items: center;
|
|
477
|
+
|
|
478
|
+
justify-content: center;
|
|
479
|
+
|
|
480
|
+
width: 20px;
|
|
481
|
+
|
|
482
|
+
height: 20px;
|
|
483
|
+
|
|
484
|
+
--bk-tw-bg-opacity: 1;
|
|
485
|
+
|
|
486
|
+
background-color: rgb(var(--bk-theme-mono-950) / var(--bk-tw-bg-opacity, 1));
|
|
487
|
+
|
|
488
|
+
border-radius: 9999px;
|
|
489
|
+
}
|
|
490
|
+
.bk .bk-publish-option-icon-check .bk-icon svg {
|
|
491
|
+
|
|
492
|
+
width: 13px;
|
|
493
|
+
|
|
494
|
+
height: 13px;
|
|
495
|
+
|
|
496
|
+
fill: currentColor;
|
|
497
|
+
|
|
498
|
+
--bk-tw-text-opacity: 1;
|
|
499
|
+
|
|
500
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
501
|
+
}
|
|
502
|
+
.bk .bk-publish-option-label {
|
|
503
|
+
|
|
504
|
+
font-size: 18px;
|
|
505
|
+
|
|
506
|
+
line-height: 28px;
|
|
507
|
+
|
|
508
|
+
font-weight: 700;
|
|
509
|
+
|
|
510
|
+
line-height: 1 !important;
|
|
511
|
+
}
|
|
512
|
+
.bk .bk-publish-option-description {
|
|
513
|
+
|
|
514
|
+
margin-top: 3px;
|
|
515
|
+
|
|
516
|
+
text-wrap: balance;
|
|
517
|
+
|
|
518
|
+
font-size: 14px;
|
|
519
|
+
|
|
520
|
+
line-height: 20px;
|
|
521
|
+
|
|
522
|
+
line-height: 1.25;
|
|
523
|
+
|
|
524
|
+
--bk-tw-text-opacity: 1;
|
|
525
|
+
|
|
526
|
+
color: rgb(var(--bk-theme-mono-600) / var(--bk-tw-text-opacity, 1));
|
|
527
|
+
}
|
|
528
|
+
.bk .bk-publish-schedule-date-wrapper {
|
|
529
|
+
|
|
530
|
+
display: flex;
|
|
531
|
+
|
|
532
|
+
align-items: stretch;
|
|
533
|
+
|
|
534
|
+
gap: 20px;
|
|
535
|
+
}
|
|
536
|
+
.bk .bk-publish-schedule-date-wrapper .bk-publish-scheduled-display {
|
|
537
|
+
|
|
538
|
+
display: flex;
|
|
539
|
+
|
|
540
|
+
flex: 1 1 0%;
|
|
541
|
+
|
|
542
|
+
align-items: center;
|
|
543
|
+
|
|
544
|
+
font-size: 20px;
|
|
545
|
+
|
|
546
|
+
line-height: 28px;
|
|
547
|
+
|
|
548
|
+
font-weight: 700;
|
|
549
|
+
|
|
550
|
+
border-radius: 6px;
|
|
551
|
+
|
|
552
|
+
--bk-tw-bg-opacity: 1;
|
|
553
|
+
|
|
554
|
+
background-color: rgb(var(--bk-theme-yellow-light) / var(--bk-tw-bg-opacity, 1));
|
|
555
|
+
|
|
556
|
+
padding-left: 10px;
|
|
557
|
+
|
|
558
|
+
--bk-tw-text-opacity: 1;
|
|
559
|
+
|
|
560
|
+
color: rgb(var(--bk-theme-yellow-dark) / var(--bk-tw-text-opacity, 1));
|
|
561
|
+
|
|
562
|
+
border-width: 1px;
|
|
563
|
+
|
|
564
|
+
--bk-tw-border-opacity: 1;
|
|
565
|
+
|
|
566
|
+
border-color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-border-opacity, 1));
|
|
567
|
+
|
|
568
|
+
--bk-tw-numeric-spacing: tabular-nums;
|
|
569
|
+
|
|
570
|
+
font-variant-numeric: var(--bk-tw-ordinal) var(--bk-tw-slashed-zero) var(--bk-tw-numeric-figure) var(--bk-tw-numeric-spacing) var(--bk-tw-numeric-fraction);
|
|
571
|
+
}
|
|
572
|
+
.bk .bk-publish-schedule-date-wrapper .bk-button {
|
|
573
|
+
|
|
574
|
+
flex-shrink: 1;
|
|
575
|
+
|
|
576
|
+
white-space: nowrap;
|
|
577
|
+
}
|
|
578
|
+
.bk .bk-schedule-date {
|
|
579
|
+
|
|
580
|
+
display: flex;
|
|
581
|
+
|
|
582
|
+
flex: 1 1 0%;
|
|
583
|
+
|
|
584
|
+
gap: 20px;
|
|
585
|
+
}
|
|
586
|
+
.bk .bk-schedule-date-picker {
|
|
587
|
+
|
|
588
|
+
width: 300px;
|
|
589
|
+
|
|
590
|
+
flex-shrink: 0;
|
|
591
|
+
}
|
|
592
|
+
.bk .bk-schedule-date-time {
|
|
593
|
+
|
|
594
|
+
flex: 1 1 0%;
|
|
595
|
+
}
|
|
596
|
+
.bk .bk-schedule-date-time .bk-form-label {
|
|
597
|
+
|
|
598
|
+
margin-bottom: 5px;
|
|
599
|
+
}
|
|
600
|
+
.bk .bk-schedule-date-time input[type='time'] {
|
|
601
|
+
|
|
602
|
+
width: 100%;
|
|
603
|
+
|
|
604
|
+
--bk-tw-numeric-spacing: tabular-nums;
|
|
605
|
+
|
|
606
|
+
font-variant-numeric: var(--bk-tw-ordinal) var(--bk-tw-slashed-zero) var(--bk-tw-numeric-figure) var(--bk-tw-numeric-spacing) var(--bk-tw-numeric-fraction);
|
|
607
|
+
}
|
|
608
|
+
.bk .bk-schedule-date-time-input {
|
|
609
|
+
|
|
610
|
+
display: flex;
|
|
611
|
+
|
|
612
|
+
align-items: stretch;
|
|
613
|
+
|
|
614
|
+
gap: 10px;
|
|
615
|
+
}
|
|
616
|
+
.bk .bk-schedule-date-time-input input[type='time'] {
|
|
617
|
+
|
|
618
|
+
flex: 1 1 0%;
|
|
619
|
+
}
|
|
620
|
+
.bk .bk-schedule-date-time-input .bk-schedule-date-time-button {
|
|
621
|
+
|
|
622
|
+
flex-shrink: 0;
|
|
623
|
+
|
|
624
|
+
padding-left: 10px;
|
|
625
|
+
|
|
626
|
+
padding-right: 10px;
|
|
627
|
+
}
|
|
628
|
+
.bk .bk-schedule-date-time-input .bk-schedule-date-time-button .bk-icon {
|
|
629
|
+
|
|
630
|
+
width: 15px;
|
|
631
|
+
|
|
632
|
+
height: 15px;
|
|
633
|
+
}
|
|
634
|
+
.bk .bk-schedule-date-time-input .bk-schedule-date-time-button .bk-icon svg {
|
|
635
|
+
|
|
636
|
+
width: 100%;
|
|
637
|
+
|
|
638
|
+
height: 100%;
|
|
639
|
+
|
|
640
|
+
fill: currentColor;
|
|
641
|
+
}
|
|
642
|
+
.bk .bk-schedule-date-formatted {
|
|
643
|
+
|
|
644
|
+
margin-bottom: 20px;
|
|
645
|
+
|
|
646
|
+
border-radius: 6px;
|
|
647
|
+
|
|
648
|
+
padding-left: 10px;
|
|
649
|
+
|
|
650
|
+
padding-right: 10px;
|
|
651
|
+
|
|
652
|
+
font-size: 18px;
|
|
653
|
+
|
|
654
|
+
line-height: 28px;
|
|
655
|
+
|
|
656
|
+
font-weight: 700;
|
|
657
|
+
/* @apply border border-mono-300; */
|
|
658
|
+
--bk-tw-bg-opacity: 1;
|
|
659
|
+
background-color: rgb(var(--bk-theme-mono-100) / var(--bk-tw-bg-opacity, 1));
|
|
660
|
+
display: flex;
|
|
661
|
+
height: 52px;
|
|
662
|
+
align-items: center;
|
|
663
|
+
}
|
|
664
|
+
.bk .bk-schedule-date-info {
|
|
665
|
+
|
|
666
|
+
margin-top: 20px;
|
|
667
|
+
|
|
668
|
+
border-radius: 6px;
|
|
669
|
+
|
|
670
|
+
border-width: 1px;
|
|
671
|
+
|
|
672
|
+
border-color: rgb(var(--bk-theme-yellow-normal) / 0.6);
|
|
673
|
+
|
|
674
|
+
--bk-tw-bg-opacity: 1;
|
|
675
|
+
|
|
676
|
+
background-color: rgb(var(--bk-theme-yellow-light) / var(--bk-tw-bg-opacity, 1));
|
|
677
|
+
|
|
678
|
+
padding: 10px;
|
|
679
|
+
|
|
680
|
+
font-weight: 500;
|
|
681
|
+
|
|
682
|
+
--bk-tw-text-opacity: 1;
|
|
683
|
+
|
|
684
|
+
color: rgb(var(--bk-theme-yellow-dark) / var(--bk-tw-text-opacity, 1));
|
|
685
|
+
|
|
686
|
+
text-wrap: pretty;
|
|
687
|
+
|
|
688
|
+
font-size: 14px;
|
|
689
|
+
|
|
690
|
+
line-height: 20px;
|
|
691
|
+
}
|
|
692
|
+
.bk .bk-publish-summary {
|
|
693
|
+
|
|
694
|
+
display: flex;
|
|
695
|
+
|
|
696
|
+
align-items: center;
|
|
697
|
+
|
|
698
|
+
justify-content: space-between;
|
|
699
|
+
}
|
|
700
|
+
.bk .bk-publish-summary-state,
|
|
701
|
+
.bk .bk-publish-summary-action {
|
|
702
|
+
|
|
703
|
+
position: relative;
|
|
704
|
+
|
|
705
|
+
display: flex;
|
|
706
|
+
|
|
707
|
+
align-items: center;
|
|
708
|
+
|
|
709
|
+
justify-content: center;
|
|
710
|
+
|
|
711
|
+
gap: 5px;
|
|
712
|
+
}
|
|
713
|
+
.bk .bk-publish-summary-state:nth-child(1):after, .bk .bk-publish-summary-state:nth-child(2):after, .bk .bk-publish-summary-action:nth-child(1):after, .bk .bk-publish-summary-action:nth-child(2):after {
|
|
714
|
+
content: '';
|
|
715
|
+
}
|
|
716
|
+
.bk .bk-publish-summary-state:last-child {
|
|
717
|
+
|
|
718
|
+
border-radius: 9999px;
|
|
719
|
+
|
|
720
|
+
border-width: 1px;
|
|
721
|
+
|
|
722
|
+
padding-right: 10px;
|
|
723
|
+
}
|
|
724
|
+
.bk .bk-publish-summary-state:last-child .bk-publish-summary-state-label {
|
|
725
|
+
|
|
726
|
+
padding-right: 5px;
|
|
727
|
+
|
|
728
|
+
font-weight: 600;
|
|
729
|
+
|
|
730
|
+
line-height: 1;
|
|
731
|
+
}
|
|
732
|
+
.bk .bk-publish-summary-state:last-child svg {
|
|
733
|
+
|
|
734
|
+
width: 15px;
|
|
735
|
+
|
|
736
|
+
height: 15px;
|
|
737
|
+
}
|
|
738
|
+
.bk .bk-publish-summary-state:last-child .bk-icon {
|
|
739
|
+
|
|
740
|
+
display: flex;
|
|
741
|
+
|
|
742
|
+
width: 25px;
|
|
743
|
+
|
|
744
|
+
height: 25px;
|
|
745
|
+
|
|
746
|
+
align-items: center;
|
|
747
|
+
|
|
748
|
+
justify-content: center;
|
|
749
|
+
|
|
750
|
+
border-radius: 9999px;
|
|
751
|
+
|
|
752
|
+
--bk-tw-bg-opacity: 1;
|
|
753
|
+
|
|
754
|
+
background-color: rgb(255 255 255 / var(--bk-tw-bg-opacity, 1));
|
|
755
|
+
}
|
|
756
|
+
.bk .bk-publish-summary-state:last-child.bk-is-published {
|
|
757
|
+
|
|
758
|
+
--bk-tw-border-opacity: 1;
|
|
759
|
+
|
|
760
|
+
border-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-border-opacity, 1));
|
|
761
|
+
|
|
762
|
+
--bk-tw-bg-opacity: 1;
|
|
763
|
+
|
|
764
|
+
background-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-bg-opacity, 1));
|
|
765
|
+
}
|
|
766
|
+
.bk .bk-publish-summary-state:last-child.bk-is-published .bk-icon svg {
|
|
767
|
+
|
|
768
|
+
fill: rgb(var(--bk-theme-lime-normal) / 1);
|
|
769
|
+
}
|
|
770
|
+
.bk .bk-publish-summary-state:last-child.bk-is-published .bk-publish-summary-state-label {
|
|
771
|
+
|
|
772
|
+
--bk-tw-text-opacity: 1;
|
|
773
|
+
|
|
774
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
775
|
+
}
|
|
776
|
+
.bk .bk-publish-summary-state:last-child.bk-is-unpublished {
|
|
777
|
+
|
|
778
|
+
--bk-tw-border-opacity: 1;
|
|
779
|
+
|
|
780
|
+
border-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-border-opacity, 1));
|
|
781
|
+
|
|
782
|
+
--bk-tw-bg-opacity: 1;
|
|
783
|
+
|
|
784
|
+
background-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-bg-opacity, 1));
|
|
785
|
+
}
|
|
786
|
+
.bk .bk-publish-summary-state:last-child.bk-is-unpublished .bk-icon svg {
|
|
787
|
+
|
|
788
|
+
fill: rgb(var(--bk-theme-red-normal) / 1);
|
|
789
|
+
}
|
|
790
|
+
.bk .bk-publish-summary-state:last-child.bk-is-unpublished .bk-publish-summary-state-label {
|
|
791
|
+
|
|
792
|
+
--bk-tw-text-opacity: 1;
|
|
793
|
+
|
|
794
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
795
|
+
}
|
|
796
|
+
.bk .bk-publish-summary-state-icon,
|
|
797
|
+
.bk .bk-publish-summary-action-icon {
|
|
798
|
+
|
|
799
|
+
display: flex;
|
|
800
|
+
|
|
801
|
+
width: 25px;
|
|
802
|
+
|
|
803
|
+
height: 25px;
|
|
804
|
+
|
|
805
|
+
align-items: center;
|
|
806
|
+
|
|
807
|
+
justify-content: center;
|
|
808
|
+
|
|
809
|
+
border-radius: 9999px;
|
|
810
|
+
|
|
811
|
+
border-width: 1px;
|
|
812
|
+
}
|
|
813
|
+
.bk .bk-publish-summary-state-icon .bk-icon, .bk .bk-publish-summary-action-icon .bk-icon {
|
|
814
|
+
|
|
815
|
+
width: 15px;
|
|
816
|
+
|
|
817
|
+
height: 15px;
|
|
818
|
+
}
|
|
819
|
+
.bk .bk-publish-summary-state-icon .bk-icon svg, .bk .bk-publish-summary-action-icon .bk-icon svg {
|
|
820
|
+
|
|
821
|
+
width: 100%;
|
|
822
|
+
|
|
823
|
+
height: 100%;
|
|
824
|
+
|
|
825
|
+
fill: currentColor;
|
|
826
|
+
}
|
|
827
|
+
.bk .bk-publish-summary-state-icon.bk-is-published {
|
|
828
|
+
|
|
829
|
+
--bk-tw-border-opacity: 1;
|
|
830
|
+
|
|
831
|
+
border-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-border-opacity, 1));
|
|
832
|
+
|
|
833
|
+
--bk-tw-text-opacity: 1;
|
|
834
|
+
|
|
835
|
+
color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-text-opacity, 1));
|
|
836
|
+
}
|
|
837
|
+
.bk .bk-publish-summary-state-icon.bk-is-unpublished {
|
|
838
|
+
|
|
839
|
+
--bk-tw-border-opacity: 1;
|
|
840
|
+
|
|
841
|
+
border-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-border-opacity, 1));
|
|
842
|
+
|
|
843
|
+
--bk-tw-text-opacity: 1;
|
|
844
|
+
|
|
845
|
+
color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-text-opacity, 1));
|
|
846
|
+
}
|
|
847
|
+
.bk .bk-publish-summary-state-label,
|
|
848
|
+
.bk .bk-publish-summary-action-label {
|
|
849
|
+
|
|
850
|
+
text-align: center;
|
|
851
|
+
|
|
852
|
+
font-size: 14px;
|
|
853
|
+
|
|
854
|
+
line-height: 20px;
|
|
855
|
+
|
|
856
|
+
font-weight: 500;
|
|
857
|
+
|
|
858
|
+
--bk-tw-text-opacity: 1;
|
|
859
|
+
|
|
860
|
+
color: rgb(var(--bk-theme-mono-700) / var(--bk-tw-text-opacity, 1));
|
|
861
|
+
}
|
|
862
|
+
.bk .bk-publish-summary-arrow {
|
|
863
|
+
|
|
864
|
+
display: flex;
|
|
865
|
+
|
|
866
|
+
align-items: center;
|
|
867
|
+
}
|
|
868
|
+
.bk .bk-publish-summary-arrow .bk-icon {
|
|
869
|
+
|
|
870
|
+
width: 20px;
|
|
871
|
+
|
|
872
|
+
height: 20px;
|
|
873
|
+
}
|
|
874
|
+
.bk .bk-publish-summary-arrow .bk-icon svg {
|
|
875
|
+
|
|
876
|
+
width: 100%;
|
|
877
|
+
|
|
878
|
+
height: 100%;
|
|
879
|
+
|
|
880
|
+
fill: rgb(var(--bk-theme-mono-700) / 1);
|
|
881
|
+
}
|
|
882
|
+
.bk .bk-publish-summary-action-icon.bk-is-save {
|
|
883
|
+
|
|
884
|
+
--bk-tw-border-opacity: 1;
|
|
885
|
+
|
|
886
|
+
border-color: rgb(var(--bk-theme-red-dark) / var(--bk-tw-border-opacity, 1));
|
|
887
|
+
|
|
888
|
+
--bk-tw-bg-opacity: 1;
|
|
889
|
+
|
|
890
|
+
background-color: rgb(var(--bk-theme-red-normal) / var(--bk-tw-bg-opacity, 1));
|
|
891
|
+
|
|
892
|
+
--bk-tw-text-opacity: 1;
|
|
893
|
+
|
|
894
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
895
|
+
}
|
|
896
|
+
.bk .bk-publish-summary-action-icon.bk-is-scheduled {
|
|
897
|
+
|
|
898
|
+
--bk-tw-border-opacity: 1;
|
|
899
|
+
|
|
900
|
+
border-color: rgb(var(--bk-theme-yellow-dark) / var(--bk-tw-border-opacity, 1));
|
|
901
|
+
|
|
902
|
+
--bk-tw-bg-opacity: 1;
|
|
903
|
+
|
|
904
|
+
background-color: rgb(var(--bk-theme-yellow-normal) / var(--bk-tw-bg-opacity, 1));
|
|
905
|
+
|
|
906
|
+
--bk-tw-text-opacity: 1;
|
|
907
|
+
|
|
908
|
+
color: rgb(var(--bk-theme-yellow-dark) / var(--bk-tw-text-opacity, 1));
|
|
909
|
+
}
|
|
910
|
+
.bk .bk-publish-summary-action-icon.bk-is-publish {
|
|
911
|
+
|
|
912
|
+
--bk-tw-border-opacity: 1;
|
|
913
|
+
|
|
914
|
+
border-color: rgb(var(--bk-theme-lime-dark) / var(--bk-tw-border-opacity, 1));
|
|
915
|
+
|
|
916
|
+
--bk-tw-bg-opacity: 1;
|
|
917
|
+
|
|
918
|
+
background-color: rgb(var(--bk-theme-lime-normal) / var(--bk-tw-bg-opacity, 1));
|
|
919
|
+
|
|
920
|
+
--bk-tw-text-opacity: 1;
|
|
921
|
+
|
|
922
|
+
color: rgb(255 255 255 / var(--bk-tw-text-opacity, 1));
|
|
923
|
+
}
|
|
924
|
+
.bk .bk-schedule-date-error {
|
|
925
|
+
|
|
926
|
+
margin-top: 20px;
|
|
927
|
+
|
|
928
|
+
border-radius: 6px;
|
|
929
|
+
|
|
930
|
+
border-width: 1px;
|
|
931
|
+
|
|
932
|
+
border-color: rgb(var(--bk-theme-red-normal) / 0.6);
|
|
933
|
+
|
|
934
|
+
--bk-tw-bg-opacity: 1;
|
|
935
|
+
|
|
936
|
+
background-color: rgb(var(--bk-theme-red-light) / var(--bk-tw-bg-opacity, 1));
|
|
937
|
+
|
|
938
|
+
padding: 10px;
|
|
939
|
+
|
|
940
|
+
font-weight: 500;
|
|
941
|
+
|
|
942
|
+
--bk-tw-text-opacity: 1;
|
|
943
|
+
|
|
944
|
+
color: rgb(var(--bk-theme-red-dark) / var(--bk-tw-text-opacity, 1));
|
|
945
|
+
|
|
946
|
+
text-wrap: pretty;
|
|
947
|
+
|
|
948
|
+
font-size: 14px;
|
|
949
|
+
|
|
950
|
+
line-height: 20px;
|
|
951
|
+
}
|
|
952
|
+
.bk.bk-is-publish-dialog .bk-dialog-content .bk-dialog-content-inner {
|
|
953
|
+
|
|
954
|
+
padding-bottom: 0px;
|
|
955
|
+
}
|
|
956
|
+
.bk.bk-is-publish-dialog .bk-dialog-footer {
|
|
957
|
+
|
|
958
|
+
margin-top: 0px;
|
|
959
|
+
}
|
|
960
|
+
.bk.bk-is-publish-dialog .bk-form-item {
|
|
961
|
+
|
|
962
|
+
padding-top: 20px;
|
|
963
|
+
|
|
964
|
+
padding-bottom: 20px;
|
|
965
|
+
}
|
|
966
|
+
.bk.bk-is-publish-dialog .bk-form-item:first-child {
|
|
967
|
+
|
|
968
|
+
padding-top: 0px;
|
|
969
|
+
}
|
|
970
|
+
</style>
|