@blokkli/editor 2.0.0-alpha.27 → 2.0.0-alpha.29
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/constants/index.d.ts +6 -0
- package/dist/global/constants/index.js +10 -0
- package/dist/global/types/adapter.d.ts +6 -0
- package/dist/global/types/blockOptions.d.ts +348 -0
- package/dist/global/types/definitions.d.ts +278 -0
- package/dist/global/types/features.d.ts +87 -0
- package/dist/module.d.mts +25 -7
- package/dist/module.json +1 -1
- package/dist/module.mjs +1026 -187
- package/dist/modules/drupal/graphql/features/import-existing.graphql +9 -2
- package/dist/modules/drupal/graphql/features/library.graphql +9 -2
- package/dist/modules/drupal/graphql/features/media-library.graphql +6 -14
- package/dist/modules/drupal/graphql/features/publishNew.graphql +3 -0
- package/dist/modules/drupal/index.d.mts +6 -5
- package/dist/modules/drupal/index.mjs +2 -4
- package/dist/modules/drupal/runtime/adapter/index.d.ts +1 -2
- package/dist/modules/drupal/runtime/adapter/index.js +36 -28
- package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/Fragment/index.vue +3 -2
- package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +2 -1
- package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +7 -3
- package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +3 -2
- package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/NotImplemented/index.vue +3 -3
- package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +2 -1
- package/dist/runtime/components/BlokkliEditable.d.vue.ts +33 -0
- package/dist/runtime/components/BlokkliEditable.vue +12 -3
- package/dist/runtime/components/BlokkliEditable.vue.d.ts +3 -2
- package/dist/runtime/components/BlokkliField.d.vue.ts +96 -0
- package/dist/runtime/components/BlokkliField.vue +6 -23
- package/dist/runtime/components/BlokkliField.vue.d.ts +8 -5
- package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
- package/dist/runtime/components/BlokkliItem.vue +25 -26
- package/dist/runtime/components/BlokkliItem.vue.d.ts +8 -7
- package/dist/runtime/components/BlokkliProvider.d.vue.ts +77 -0
- package/dist/runtime/components/BlokkliProvider.vue +6 -6
- package/dist/runtime/components/BlokkliProvider.vue.d.ts +12 -7
- package/dist/runtime/composables/defineBlokkli.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkli.js +19 -22
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +3 -3
- package/dist/runtime/composables/defineBlokkliFeature.js +2 -2
- package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkliFragment.js +2 -5
- package/dist/runtime/composables/defineBlokkliProvider.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkliProvider.js +1 -1
- package/dist/runtime/composables/useBlokkli.d.ts +1 -1
- package/dist/runtime/composables/useBlokkli.js +2 -2
- package/dist/runtime/composables/useBlokkliHelper.d.ts +2 -1
- package/dist/runtime/composables/useBlokkliHelper.js +5 -11
- package/dist/runtime/editor/adapter/index.d.ts +121 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.vue +66 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Actions/index.vue +216 -0
- package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/AddListItem/index.vue +66 -0
- package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +455 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +29 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue +39 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +29 -0
- package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/AppMenu/index.vue +85 -0
- package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +33 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +89 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +33 -0
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/Banner/index.vue +51 -0
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
- package/dist/runtime/editor/components/BlockProxy/index.vue +88 -0
- package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +13 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +96 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +13 -0
- package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue +187 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +49 -0
- package/dist/runtime/editor/components/Dialog/index.vue +134 -0
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +49 -0
- package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue +276 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
- package/dist/runtime/editor/components/DraggableList.d.vue.ts +29 -0
- package/dist/runtime/editor/components/DraggableList.vue +145 -0
- package/dist/runtime/editor/components/DraggableList.vue.d.ts +29 -0
- package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
- package/dist/runtime/editor/components/EditIndicator.vue +151 -0
- package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
- package/dist/runtime/editor/components/EditProvider.d.vue.ts +34 -0
- package/dist/runtime/editor/components/EditProvider.vue +388 -0
- package/dist/runtime/editor/components/EditProvider.vue.d.ts +34 -0
- package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.vue +198 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
- package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
- package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
- package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +26 -0
- package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +26 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
- package/dist/runtime/editor/components/FormOverlay/index.vue +55 -0
- package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
- package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Icon/index.vue +20 -0
- package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Indicators/index.vue +123 -0
- package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/InfoBox/index.vue +18 -0
- package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/ItemIcon/index.vue +36 -0
- package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
- package/dist/runtime/editor/components/ItemIconBox/index.vue +40 -0
- package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue +751 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
- package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
- package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Konami/index.vue +42 -0
- package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Loading/index.d.vue.ts +9 -0
- package/dist/runtime/editor/components/Loading/index.vue +22 -0
- package/dist/runtime/editor/components/Loading/index.vue.d.ts +9 -0
- package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
- package/dist/runtime/editor/components/Messages/Item/index.vue +105 -0
- package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
- package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Messages/index.vue +41 -0
- package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.vue +70 -0
- package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
- package/dist/runtime/editor/components/Pagination/index.vue +19 -0
- package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +43 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +59 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +29 -0
- package/dist/runtime/editor/components/PreviewProvider.vue +176 -0
- package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +29 -0
- package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/RelativeTime/index.vue +59 -0
- package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/Resizable/index.d.vue.ts +14 -0
- package/dist/runtime/editor/components/Resizable/index.vue.d.ts +14 -0
- package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/ScaleToFit/index.vue +70 -0
- package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
- package/dist/runtime/editor/components/ScheduleDate/index.vue +131 -0
- package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.vue +85 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
- package/dist/runtime/editor/components/Sortli/index.vue +81 -0
- package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
- package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue +81 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Toolbar/index.vue +89 -0
- package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
- package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
- package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/index.d.ts +37 -0
- package/dist/runtime/editor/components/index.js +74 -0
- package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
- package/dist/runtime/editor/composables/defineAddAction.js +10 -0
- package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
- package/dist/runtime/editor/composables/defineCommands.js +10 -0
- package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
- package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
- package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
- package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
- package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
- package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
- package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
- package/dist/runtime/editor/composables/defineRenderer.js +9 -0
- package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
- package/dist/runtime/editor/composables/defineShortcut.js +18 -0
- package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
- package/dist/runtime/editor/composables/defineTourItem.js +10 -0
- package/dist/runtime/editor/composables/index.d.ts +22 -0
- package/dist/runtime/editor/composables/index.js +22 -0
- package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
- package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
- package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
- package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
- package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
- package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
- package/dist/runtime/editor/composables/useBlockRegistration.js +41 -0
- package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
- package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
- package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
- package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
- package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
- package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
- package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
- package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +16 -0
- package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
- package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +23 -0
- package/dist/runtime/editor/composables/useStickyToolbar.js +234 -0
- package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
- package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
- package/dist/runtime/editor/css/output.css +1 -0
- package/dist/runtime/editor/events/index.d.ts +228 -0
- package/dist/runtime/editor/events/index.js +6 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +8 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.vue +53 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +8 -0
- package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/add-list/Actions/index.vue +41 -0
- package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.vue +274 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/add-list/index.vue +148 -0
- package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/add-list/types.d.ts +19 -0
- package/dist/runtime/editor/features/add-list/types.js +0 -0
- package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
- package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/Main.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Main.vue +385 -0
- package/dist/runtime/editor/features/analyze/Main.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +22 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.vue +259 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +22 -0
- package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +15 -0
- package/dist/runtime/editor/features/analyze/Results/Results.vue +102 -0
- package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +15 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +23 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +56 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +23 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +80 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +123 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
- package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
- package/dist/runtime/editor/features/analyze/Summary/Chart.d.vue.ts +18 -0
- package/dist/runtime/editor/features/analyze/Summary/Chart.vue.d.ts +18 -0
- package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/analyze/Summary/index.vue +77 -0
- package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
- package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +33 -0
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +206 -0
- package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
- package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/analyze/index.vue +69 -0
- package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/analyze/types.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/types.js +0 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.vue +53 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/anchors/index.vue +32 -0
- package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/anchors/types.d.ts +8 -0
- package/dist/runtime/editor/features/anchors/types.js +0 -0
- package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue +122 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
- package/dist/runtime/editor/features/artboard/Renderer.vue +322 -0
- package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
- package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
- package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
- package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/artboard/index.vue +92 -0
- package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.vue +108 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/assistant/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/assistant/index.vue +65 -0
- package/dist/runtime/editor/features/assistant/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/assistant/types.d.ts +37 -0
- package/dist/runtime/editor/features/assistant/types.js +0 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +29 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +154 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +29 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +232 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/index.vue +96 -0
- package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
- package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
- package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue +206 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/clipboard/List/Item/File.d.vue.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/File.vue.d.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.d.vue.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.vue +54 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.vue.d.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/clipboard/List/index.vue +72 -0
- package/dist/runtime/editor/features/clipboard/List/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/clipboard/index.vue +606 -0
- package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/clipboard/types.d.ts +99 -0
- package/dist/runtime/editor/features/clipboard/types.js +0 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +49 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +229 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/command-palette/index.vue +51 -0
- package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
- package/dist/runtime/editor/features/command-palette/types.js +0 -0
- package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/comments/AddForm/index.vue +44 -0
- package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +24 -0
- package/dist/runtime/editor/features/comments/Comment/index.vue +45 -0
- package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +24 -0
- package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +21 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +94 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +21 -0
- package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/comments/Overlay/index.vue +113 -0
- package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/comments/index.vue +112 -0
- package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/comments/types.d.ts +26 -0
- package/dist/runtime/editor/features/comments/types.js +0 -0
- package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/conversions/index.vue +84 -0
- package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
- package/dist/runtime/editor/features/conversions/types.js +0 -0
- package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
- package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
- package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
- package/dist/runtime/editor/features/debug/Main.vue +80 -0
- package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
- package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
- package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
- package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
- package/dist/runtime/editor/features/debug/Section/Logging.vue +66 -0
- package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
- package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/index.vue +31 -0
- package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/delete/index.vue +68 -0
- package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/delete/types.d.ts +8 -0
- package/dist/runtime/editor/features/delete/types.js +0 -0
- package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/dev-mode/index.vue +38 -0
- package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
- package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/diff/index.vue +35 -0
- package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +26 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +113 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +26 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +254 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +818 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue +438 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/duplicate/index.vue +105 -0
- package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/duplicate/types.d.ts +8 -0
- package/dist/runtime/editor/features/duplicate/types.js +0 -0
- package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/edit/index.vue +76 -0
- package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/edit/types.d.ts +9 -0
- package/dist/runtime/editor/features/edit/types.js +0 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.vue +70 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/edit-form/index.vue +176 -0
- package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +116 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +81 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +317 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/editable-field/index.vue +150 -0
- package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/editable-field/types.d.ts +54 -0
- package/dist/runtime/editor/features/editable-field/types.js +0 -0
- package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/editable-mask/index.vue +39 -0
- package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/entity-title/index.vue +136 -0
- package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/exit/index.vue +38 -0
- package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +58 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.vue +122 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/fragments/index.vue +75 -0
- package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/fragments/types.d.ts +14 -0
- package/dist/runtime/editor/features/fragments/types.js +0 -0
- package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/grid/index.vue +37 -0
- package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/grid/types.d.ts +8 -0
- package/dist/runtime/editor/features/grid/types.js +0 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue +60 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/help/index.vue +49 -0
- package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/history/List/index.vue +128 -0
- package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/history/index.vue +151 -0
- package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/types.d.ts +12 -0
- package/dist/runtime/editor/features/history/types.js +0 -0
- package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/hover/Renderer/index.vue +448 -0
- package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/hover/index.vue +28 -0
- package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +122 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/import-existing/index.vue +80 -0
- package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/import-existing/types.d.ts +23 -0
- package/dist/runtime/editor/features/import-existing/types.js +0 -0
- package/dist/runtime/editor/features/library/EditReusable/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/library/EditReusable/index.vue +165 -0
- package/dist/runtime/editor/features/library/EditReusable/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue +67 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.vue +143 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue +99 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/library/index.vue +195 -0
- package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/library/types.d.ts +80 -0
- package/dist/runtime/editor/features/library/types.js +0 -0
- package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
- package/dist/runtime/editor/features/media-library/Library/Item.vue +41 -0
- package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
- package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue +195 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/media-library/index.vue +108 -0
- package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/media-library/types.d.ts +85 -0
- package/dist/runtime/editor/features/media-library/types.js +0 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.vue +297 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/multi-select/index.vue +69 -0
- package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +46 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +112 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
- package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
- package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Group.vue +23 -0
- package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +14 -0
- package/dist/runtime/editor/features/options/Form/Item.vue +186 -0
- package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +14 -0
- package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +22 -0
- package/dist/runtime/editor/features/options/Form/Number/index.vue +64 -0
- package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +22 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +37 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +129 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +37 -0
- package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
- package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
- package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/options/Form/index.vue +382 -0
- package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/options/index.vue +85 -0
- package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/options/types.d.ts +21 -0
- package/dist/runtime/editor/features/options/types.js +0 -0
- package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue +35 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/ownership/index.vue +32 -0
- package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/ownership/types.d.ts +8 -0
- package/dist/runtime/editor/features/ownership/types.js +0 -0
- package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/preview/index.vue +41 -0
- package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/index.vue +71 -0
- package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/types.d.ts +10 -0
- package/dist/runtime/editor/features/preview-grant/types.js +0 -0
- package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/proxy-view/index.vue +40 -0
- package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.vue +145 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +47 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.vue +83 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
- package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/publish/Dialog/index.vue +579 -0
- package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
- package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
- package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/publish/index.vue +131 -0
- package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/publish/types.d.ts +109 -0
- package/dist/runtime/editor/features/publish/types.js +0 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +76 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/responsive-preview/index.vue +193 -0
- package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/revert/index.vue +68 -0
- package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/revert/types.d.ts +8 -0
- package/dist/runtime/editor/features/revert/types.js +0 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +167 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +172 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/search/Overlay/index.vue +183 -0
- package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/search/index.vue +76 -0
- package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/search/types.d.ts +73 -0
- package/dist/runtime/editor/features/search/types.js +0 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +33 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +591 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +33 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.vue +395 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/selection/Renderer/index.vue +279 -0
- package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/selection/index.vue +304 -0
- package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +126 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue +130 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/settings/index.vue +77 -0
- package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
- package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
- package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
- package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue +129 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/structure/index.vue +75 -0
- package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/structure/types.d.ts +11 -0
- package/dist/runtime/editor/features/structure/types.js +0 -0
- package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
- package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
- package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
- package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/theme/index.vue +109 -0
- package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
- package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue +218 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/tour/Popup/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/tour/Popup/index.vue +34 -0
- package/dist/runtime/editor/features/tour/Popup/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/tour/docs.md +0 -0
- package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/tour/index.vue +44 -0
- package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/tour/types.d.ts +6 -0
- package/dist/runtime/editor/features/tour/types.js +0 -0
- package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/transform/Dialog/index.vue +221 -0
- package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/transform/index.vue +247 -0
- package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/transform/types.d.ts +105 -0
- package/dist/runtime/editor/features/transform/types.js +0 -0
- package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/translations/Banner/index.vue +48 -0
- package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/translations/index.vue +211 -0
- package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/translations/types.d.ts +16 -0
- package/dist/runtime/editor/features/translations/types.js +0 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.d.vue.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.vue +36 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.vue.d.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue +42 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.vue +41 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/validations/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/validations/index.vue +64 -0
- package/dist/runtime/editor/features/validations/index.vue.d.ts +3 -0
- package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
- package/dist/runtime/editor/helpers/array/index.js +4 -0
- package/dist/runtime/editor/helpers/bundles/index.js +8 -0
- package/dist/runtime/editor/helpers/color/index.d.ts +6 -0
- package/dist/runtime/editor/helpers/color/index.js +48 -0
- package/dist/runtime/editor/helpers/date/index.d.ts +0 -0
- package/dist/runtime/editor/helpers/date/index.js +0 -0
- package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
- package/dist/runtime/editor/helpers/dom/index.js +107 -0
- package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
- package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
- package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
- package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
- package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
- package/dist/runtime/editor/helpers/geometry/index.js +191 -0
- package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
- package/dist/runtime/editor/helpers/math/index.js +10 -0
- package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
- package/dist/runtime/editor/helpers/uuid/index.js +18 -0
- package/dist/runtime/editor/helpers/webgl/index.d.ts +45 -0
- package/dist/runtime/editor/helpers/webgl/index.js +315 -0
- package/dist/runtime/editor/icons/material-icons.d.ts +12 -0
- package/dist/runtime/editor/icons/material-icons.js +1 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +75 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.vue +39 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
- package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
- package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +85 -0
- package/dist/runtime/editor/plugins/ItemAction/index.vue +93 -0
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +85 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +281 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +228 -0
- package/dist/runtime/editor/plugins/Sidebar/index.vue +267 -0
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +228 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +165 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue +91 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +165 -0
- package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
- package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
- package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
- package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +139 -0
- package/dist/runtime/editor/plugins/ViewOption/index.vue +98 -0
- package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +139 -0
- package/dist/runtime/editor/providers/animation.d.ts +204 -0
- package/dist/runtime/editor/providers/animation.js +518 -0
- package/dist/runtime/editor/providers/blocks.d.ts +32 -0
- package/dist/runtime/editor/providers/blocks.js +113 -0
- package/dist/runtime/editor/providers/commands.d.ts +41 -0
- package/dist/runtime/editor/providers/commands.js +16 -0
- package/dist/runtime/editor/providers/debug.d.ts +126 -0
- package/dist/runtime/editor/providers/debug.js +132 -0
- package/dist/runtime/editor/providers/definition.d.ts +87 -0
- package/dist/runtime/editor/providers/directive.d.ts +116 -0
- package/dist/runtime/editor/providers/directive.js +241 -0
- package/dist/runtime/editor/providers/dom.d.ts +228 -0
- package/dist/runtime/editor/providers/dom.js +519 -0
- package/dist/runtime/editor/providers/dropArea.d.ts +48 -0
- package/dist/runtime/editor/providers/dropArea.js +22 -0
- package/dist/runtime/editor/providers/features.d.ts +57 -0
- package/dist/runtime/editor/providers/features.js +53 -0
- package/dist/runtime/editor/providers/fields.d.ts +23 -0
- package/dist/runtime/editor/providers/fields.js +47 -0
- package/dist/runtime/editor/providers/icons.d.ts +6 -0
- package/dist/runtime/editor/providers/icons.js +16 -0
- package/dist/runtime/editor/providers/indicators.d.ts +44 -0
- package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
- package/dist/runtime/editor/providers/keyboard.js +98 -0
- package/dist/runtime/editor/providers/plugin.d.ts +81 -0
- package/dist/runtime/editor/providers/selection.d.ts +84 -0
- package/dist/runtime/editor/providers/selection.js +159 -0
- package/dist/runtime/editor/providers/state.d.ts +248 -0
- package/dist/runtime/editor/providers/state.js +408 -0
- package/dist/runtime/editor/providers/storage.d.ts +64 -0
- package/dist/runtime/editor/providers/storage.js +118 -0
- package/dist/runtime/editor/providers/texts.d.ts +4 -0
- package/dist/runtime/editor/providers/texts.js +29 -0
- package/dist/runtime/editor/providers/theme.d.ts +119 -0
- package/dist/runtime/editor/providers/theme.js +140 -0
- package/dist/runtime/editor/providers/tour.d.ts +49 -0
- package/dist/runtime/editor/providers/tour.js +19 -0
- package/dist/runtime/editor/providers/types.d.ts +174 -0
- package/dist/runtime/editor/providers/types.js +166 -0
- package/dist/runtime/editor/providers/ui.d.ts +350 -0
- package/dist/runtime/editor/providers/ui.js +406 -0
- package/dist/runtime/editor/types/actions.d.ts +18 -0
- package/dist/runtime/editor/types/actions.js +0 -0
- package/dist/runtime/editor/types/app.d.ts +59 -0
- package/dist/runtime/editor/types/app.js +0 -0
- package/dist/runtime/editor/types/definitions.d.ts +18 -0
- package/dist/runtime/editor/types/definitions.js +0 -0
- package/dist/runtime/editor/types/draggable.d.ts +9 -0
- package/dist/runtime/editor/types/draggable.js +0 -0
- package/dist/runtime/editor/types/features.d.ts +9 -0
- package/dist/runtime/editor/types/features.js +0 -0
- package/dist/runtime/editor/types/field.d.ts +58 -0
- package/dist/runtime/editor/types/field.js +0 -0
- package/dist/runtime/editor/types/geometry.d.ts +9 -0
- package/dist/runtime/editor/types/geometry.js +0 -0
- package/dist/runtime/editor/types/index.d.ts +1 -0
- package/dist/runtime/editor/types/index.js +0 -0
- package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
- package/dist/runtime/editor/types/pluginConfig.js +0 -0
- package/dist/runtime/editor/types/selection.d.ts +6 -0
- package/dist/runtime/editor/types/selection.js +0 -0
- package/dist/runtime/editor/types/state.d.ts +76 -0
- package/dist/runtime/editor/types/state.js +0 -0
- package/dist/runtime/editor/types/style.d.ts +29 -0
- package/dist/runtime/editor/types/style.js +0 -0
- package/dist/runtime/editor/types/ui.d.ts +44 -0
- package/dist/runtime/editor/types/ui.js +0 -0
- package/dist/runtime/helpers/index.d.ts +0 -71
- package/dist/runtime/helpers/index.js +0 -326
- package/dist/runtime/helpers/injections.d.ts +127 -0
- package/dist/runtime/helpers/injections.js +69 -0
- package/dist/runtime/helpers/runtimeHelpers/index.js +8 -5
- package/dist/runtime/plugins/blokkliDirectives.d.ts +1 -1
- package/dist/runtime/plugins/blokkliDirectives.js +1 -1
- package/dist/runtime/types/blockOptions.d.ts +2 -348
- package/dist/runtime/types/definitions.d.ts +124 -0
- package/dist/runtime/types/definitions.js +0 -0
- package/dist/runtime/types/directives.d.ts +1 -0
- package/dist/runtime/types/directives.js +0 -0
- package/dist/runtime/types/field.d.ts +26 -0
- package/dist/runtime/types/field.js +0 -0
- package/dist/runtime/types/index.d.ts +2 -1400
- package/dist/runtime/types/provider.d.ts +5 -0
- package/dist/runtime/types/provider.js +0 -0
- package/dist/runtime/types/vue.d.ts +1 -0
- package/dist/runtime/types/vue.js +0 -0
- package/dist/shared/editor.DHqea16T.d.mts +462 -0
- package/dist/types.d.mts +3 -1
- package/package.json +87 -53
- package/dist/runtime/adapter/index.d.ts +0 -516
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue +0 -65
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue.d.ts +0 -64
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +0 -75
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +0 -12
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +0 -39
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +0 -35
- package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +0 -22
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +0 -94
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +0 -85
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +0 -278
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +0 -46
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +0 -270
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +0 -227
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +0 -92
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +0 -164
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +0 -50
- package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +0 -40
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +0 -99
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +0 -138
- package/dist/runtime/components/Blocks/Fragment/icon.svg +0 -1
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +0 -66
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Actions/index.vue +0 -195
- package/dist/runtime/components/Edit/Actions/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/AddListItem/index.vue +0 -66
- package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +0 -453
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/AppMenu/MenuButton.vue +0 -39
- package/dist/runtime/components/Edit/AppMenu/MenuButton.vue.d.ts +0 -28
- package/dist/runtime/components/Edit/AppMenu/index.vue +0 -79
- package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +0 -89
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +0 -32
- package/dist/runtime/components/Edit/Banner/index.vue +0 -51
- package/dist/runtime/components/Edit/Banner/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/BlockProxy/index.vue +0 -88
- package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +0 -47
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +0 -25
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +0 -96
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Dialog/index.vue +0 -135
- package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +0 -48
- package/dist/runtime/components/Edit/DiffViewer/State.vue +0 -276
- package/dist/runtime/components/Edit/DiffViewer/State.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/DraggableList.vue +0 -142
- package/dist/runtime/components/Edit/DraggableList.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/EditIndicator.vue +0 -151
- package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/EditProvider.vue +0 -382
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +0 -29
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue +0 -53
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue +0 -41
- package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue +0 -274
- package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/AddList/index.vue +0 -147
- package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Analyze/Icon.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/Analyze/Main.vue +0 -385
- package/dist/runtime/components/Edit/Features/Analyze/Main.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue +0 -260
- package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue +0 -102
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue +0 -56
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue +0 -80
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +0 -123
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Results/Status.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue +0 -77
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.js +0 -76
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.d.ts +0 -33
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.js +0 -206
- package/dist/runtime/components/Edit/Features/Analyze/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/Analyze/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue +0 -53
- package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Anchors/index.vue +0 -32
- package/dist/runtime/components/Edit/Features/Anchors/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +0 -119
- package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +0 -320
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Artboard/index.vue +0 -92
- package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +0 -108
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Assistant/index.vue +0 -65
- package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +0 -154
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +0 -232
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +0 -96
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +0 -3
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +0 -54
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +0 -3
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +0 -72
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +0 -606
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +0 -49
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +0 -229
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +0 -52
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +0 -44
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +0 -45
- package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +0 -23
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +0 -94
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +0 -112
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Comments/index.vue +0 -111
- package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +0 -84
- package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/Debug/Main.vue +0 -80
- package/dist/runtime/components/Edit/Features/Debug/Main.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +0 -60
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Features.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue +0 -15
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue +0 -66
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue +0 -96
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +0 -98
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/index.vue +0 -31
- package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Delete/index.vue +0 -66
- package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +0 -20
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Diff/index.vue +0 -35
- package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue +0 -113
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue.d.ts +0 -25
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +0 -219
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue +0 -749
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +0 -335
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue +0 -91
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Edit/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +0 -70
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +0 -176
- package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +0 -117
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +0 -74
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -248
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +0 -151
- package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue +0 -39
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +0 -137
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Exit/index.vue +0 -38
- package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +0 -57
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +0 -122
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +0 -74
- package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Grid/index.vue +0 -37
- package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +0 -60
- package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Help/index.vue +0 -49
- package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/History/List/index.vue +0 -128
- package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/History/index.vue +0 -149
- package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue +0 -448
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Hover/index.vue +0 -28
- package/dist/runtime/components/Edit/Features/Hover/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +0 -127
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +0 -81
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -166
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +0 -67
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +0 -155
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +0 -99
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Library/index.vue +0 -197
- package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +0 -40
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +0 -187
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +0 -108
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +0 -57
- package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue +0 -297
- package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +0 -46
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +0 -112
- package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +0 -23
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +0 -186
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +0 -129
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +0 -36
- package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +0 -383
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Options/index.vue +0 -84
- package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue +0 -35
- package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +0 -32
- package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Preview/index.vue +0 -41
- package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +0 -71
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue +0 -40
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +0 -145
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +0 -47
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +0 -83
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +0 -577
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Publish/index.vue +0 -133
- package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +0 -193
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Revert/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +0 -167
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +0 -171
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +0 -183
- package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Search/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +0 -182
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +0 -551
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +0 -32
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +0 -392
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue +0 -281
- package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Selection/index.vue +0 -306
- package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +0 -126
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +0 -130
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Settings/index.vue +0 -78
- package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +0 -145
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +0 -128
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Structure/index.vue +0 -75
- package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Theme/index.vue +0 -109
- package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +0 -40
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +0 -218
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +0 -34
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Tour/index.vue +0 -44
- package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +0 -221
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Transform/index.vue +0 -234
- package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +0 -48
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Translations/index.vue +0 -212
- package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +0 -36
- package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +0 -42
- package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +0 -42
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Validations/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue +0 -43
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue +0 -198
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Form/Radio/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/RadioTabs/index.vue.d.ts +0 -22
- package/dist/runtime/components/Edit/Form/Select/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +0 -28
- package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/FormOverlay/index.vue +0 -55
- package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +0 -26
- package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Icon/index.vue +0 -18
- package/dist/runtime/components/Edit/Icon/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Indicators/index.vue +0 -123
- package/dist/runtime/components/Edit/Indicators/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/InfoBox/index.vue +0 -18
- package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/ItemIcon/index.vue +0 -28
- package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/ItemIconBox/index.vue +0 -41
- package/dist/runtime/components/Edit/ItemIconBox/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue +0 -66
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Konami/Game/index.vue +0 -751
- package/dist/runtime/components/Edit/Konami/Game/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.d.ts +0 -9
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.js +0 -130
- package/dist/runtime/components/Edit/Konami/index.vue +0 -42
- package/dist/runtime/components/Edit/Konami/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Loading/index.vue +0 -22
- package/dist/runtime/components/Edit/Loading/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Messages/Item/index.vue +0 -105
- package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Messages/index.vue +0 -41
- package/dist/runtime/components/Edit/Messages/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Overlay/index.vue +0 -70
- package/dist/runtime/components/Edit/Overlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Pagination/index.vue +0 -19
- package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue +0 -17
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue +0 -37
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue +0 -43
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue +0 -57
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/PreviewProvider.vue +0 -176
- package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/RelativeTime/index.vue +0 -32
- package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/ScaleToFit/index.vue +0 -70
- package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/ScheduleDate/index.vue +0 -131
- package/dist/runtime/components/Edit/ScheduleDate/index.vue.d.ts +0 -23
- package/dist/runtime/components/Edit/ScrollBoundary/index.vue +0 -23
- package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +0 -86
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Sortli/index.vue +0 -80
- package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/SystemRequirements/index.vue +0 -77
- package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Toolbar/index.vue +0 -88
- package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +0 -36
- package/dist/runtime/components/Edit/Transition/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +0 -60
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/index.d.ts +0 -36
- package/dist/runtime/components/Edit/index.js +0 -72
- package/dist/runtime/constants/index.d.ts +0 -7
- package/dist/runtime/constants/index.js +0 -11
- package/dist/runtime/css/output.css +0 -1
- package/dist/runtime/helpers/DragStyle/index.d.ts +0 -12
- package/dist/runtime/helpers/DragStyle/index.js +0 -86
- package/dist/runtime/helpers/bundles/index.js +0 -4
- package/dist/runtime/helpers/composables/defineAddAction.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineAddAction.js +0 -10
- package/dist/runtime/helpers/composables/defineCommands.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineCommands.js +0 -10
- package/dist/runtime/helpers/composables/defineDropAreas.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineDropAreas.js +0 -10
- package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineItemDropdownAction.js +0 -10
- package/dist/runtime/helpers/composables/defineMenuButton.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineMenuButton.js +0 -10
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +0 -11
- package/dist/runtime/helpers/composables/defineRenderer.js +0 -9
- package/dist/runtime/helpers/composables/defineShortcut.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineShortcut.js +0 -19
- package/dist/runtime/helpers/composables/defineTourItem.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineTourItem.js +0 -10
- package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +0 -2
- package/dist/runtime/helpers/composables/onBlokkliEvent.js +0 -10
- package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +0 -2
- package/dist/runtime/helpers/composables/onBroadcastEvent.js +0 -10
- package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +0 -1
- package/dist/runtime/helpers/composables/useAnimationFrame.js +0 -14
- package/dist/runtime/helpers/composables/useBlockRegistration.js +0 -34
- package/dist/runtime/helpers/composables/useDebugLogger.d.ts +0 -2
- package/dist/runtime/helpers/composables/useDebugLogger.js +0 -5
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +0 -5
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +0 -27
- package/dist/runtime/helpers/composables/useDialog.d.ts +0 -3
- package/dist/runtime/helpers/composables/useFocusTrap.d.ts +0 -52
- package/dist/runtime/helpers/composables/useFocusTrap.js +0 -59
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +0 -16
- package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +0 -4
- package/dist/runtime/helpers/composables/useStateBasedCache.js +0 -13
- package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +0 -23
- package/dist/runtime/helpers/composables/useStickyToolbar.js +0 -233
- package/dist/runtime/helpers/composables/useTransitionedValue.d.ts +0 -18
- package/dist/runtime/helpers/composables/useTransitionedValue.js +0 -57
- package/dist/runtime/helpers/dom/index.d.ts +0 -65
- package/dist/runtime/helpers/dom/index.js +0 -85
- package/dist/runtime/helpers/dropTargets/index.d.ts +0 -6
- package/dist/runtime/helpers/dropTargets/index.js +0 -63
- package/dist/runtime/helpers/eventBus.d.ts +0 -3
- package/dist/runtime/helpers/eventBus.js +0 -5
- package/dist/runtime/helpers/frameEventBus.d.ts +0 -9
- package/dist/runtime/helpers/frameEventBus.js +0 -2
- package/dist/runtime/helpers/providers/animation.d.ts +0 -203
- package/dist/runtime/helpers/providers/animation.js +0 -517
- package/dist/runtime/helpers/providers/blocks.d.ts +0 -32
- package/dist/runtime/helpers/providers/blocks.js +0 -110
- package/dist/runtime/helpers/providers/commands.d.ts +0 -41
- package/dist/runtime/helpers/providers/commands.js +0 -16
- package/dist/runtime/helpers/providers/debug.d.ts +0 -125
- package/dist/runtime/helpers/providers/debug.js +0 -133
- package/dist/runtime/helpers/providers/definition.d.ts +0 -87
- package/dist/runtime/helpers/providers/directive.d.ts +0 -114
- package/dist/runtime/helpers/providers/directive.js +0 -239
- package/dist/runtime/helpers/providers/dom.d.ts +0 -225
- package/dist/runtime/helpers/providers/dom.js +0 -517
- package/dist/runtime/helpers/providers/dropArea.d.ts +0 -47
- package/dist/runtime/helpers/providers/dropArea.js +0 -22
- package/dist/runtime/helpers/providers/features.d.ts +0 -56
- package/dist/runtime/helpers/providers/features.js +0 -53
- package/dist/runtime/helpers/providers/fields.d.ts +0 -23
- package/dist/runtime/helpers/providers/fields.js +0 -47
- package/dist/runtime/helpers/providers/indicators.d.ts +0 -44
- package/dist/runtime/helpers/providers/keyboard.d.ts +0 -76
- package/dist/runtime/helpers/providers/keyboard.js +0 -99
- package/dist/runtime/helpers/providers/plugin.d.ts +0 -81
- package/dist/runtime/helpers/providers/selection.d.ts +0 -82
- package/dist/runtime/helpers/providers/selection.js +0 -159
- package/dist/runtime/helpers/providers/state.d.ts +0 -227
- package/dist/runtime/helpers/providers/state.js +0 -398
- package/dist/runtime/helpers/providers/storage.d.ts +0 -64
- package/dist/runtime/helpers/providers/storage.js +0 -118
- package/dist/runtime/helpers/providers/texts.d.ts +0 -4
- package/dist/runtime/helpers/providers/texts.js +0 -26
- package/dist/runtime/helpers/providers/theme.d.ts +0 -119
- package/dist/runtime/helpers/providers/theme.js +0 -140
- package/dist/runtime/helpers/providers/tour.d.ts +0 -49
- package/dist/runtime/helpers/providers/tour.js +0 -19
- package/dist/runtime/helpers/providers/types.d.ts +0 -170
- package/dist/runtime/helpers/providers/types.js +0 -166
- package/dist/runtime/helpers/providers/ui.d.ts +0 -339
- package/dist/runtime/helpers/providers/ui.js +0 -393
- package/dist/runtime/helpers/symbols.d.ts +0 -26
- package/dist/runtime/helpers/symbols.js +0 -30
- package/dist/runtime/helpers/transform.d.ts +0 -2
- package/dist/runtime/helpers/transform.js +0 -15
- package/dist/runtime/helpers/webgl/index.d.ts +0 -45
- package/dist/runtime/helpers/webgl/index.js +0 -315
- package/dist/runtime/icons/alert.svg +0 -6
- package/dist/runtime/icons/anchor.svg +0 -1
- package/dist/runtime/icons/area.svg +0 -5
- package/dist/runtime/icons/arrow-down.svg +0 -1
- package/dist/runtime/icons/arrow-left.svg +0 -1
- package/dist/runtime/icons/arrow-right.svg +0 -1
- package/dist/runtime/icons/arrow-top-right.svg +0 -1
- package/dist/runtime/icons/arrow-up.svg +0 -1
- package/dist/runtime/icons/artboard-disabled.svg +0 -9
- package/dist/runtime/icons/artboard-enabled.svg +0 -29
- package/dist/runtime/icons/bug.svg +0 -1
- package/dist/runtime/icons/button-pointer.svg +0 -1
- package/dist/runtime/icons/calendar-clock.svg +0 -1
- package/dist/runtime/icons/calendar.svg +0 -1
- package/dist/runtime/icons/caret.svg +0 -12
- package/dist/runtime/icons/cellphone.svg +0 -1
- package/dist/runtime/icons/chart.svg +0 -1
- package/dist/runtime/icons/chat-question.svg +0 -1
- package/dist/runtime/icons/check.svg +0 -1
- package/dist/runtime/icons/checkbox.svg +0 -5
- package/dist/runtime/icons/checks.svg +0 -1
- package/dist/runtime/icons/chevron-left.svg +0 -1
- package/dist/runtime/icons/chevron-right.svg +0 -1
- package/dist/runtime/icons/click.svg +0 -1
- package/dist/runtime/icons/clipboard.svg +0 -5
- package/dist/runtime/icons/clock.svg +0 -1
- package/dist/runtime/icons/close.svg +0 -5
- package/dist/runtime/icons/cog.svg +0 -5
- package/dist/runtime/icons/command.svg +0 -1
- package/dist/runtime/icons/comment.svg +0 -5
- package/dist/runtime/icons/comment_add.svg +0 -1
- package/dist/runtime/icons/convert.svg +0 -1
- package/dist/runtime/icons/copy.svg +0 -1
- package/dist/runtime/icons/cursor-move.svg +0 -1
- package/dist/runtime/icons/dead.svg +0 -1
- package/dist/runtime/icons/delete.svg +0 -1
- package/dist/runtime/icons/diff.svg +0 -1
- package/dist/runtime/icons/dock-left.svg +0 -1
- package/dist/runtime/icons/dock-right.svg +0 -1
- package/dist/runtime/icons/drag.svg +0 -1
- package/dist/runtime/icons/edit.svg +0 -1
- package/dist/runtime/icons/exit.svg +0 -6
- package/dist/runtime/icons/expand.svg +0 -1
- package/dist/runtime/icons/eye-off.svg +0 -1
- package/dist/runtime/icons/eye.svg +0 -1
- package/dist/runtime/icons/file.svg +0 -1
- package/dist/runtime/icons/form.svg +0 -1
- package/dist/runtime/icons/fragment.svg +0 -1
- package/dist/runtime/icons/grid.svg +0 -13
- package/dist/runtime/icons/group.svg +0 -5
- package/dist/runtime/icons/help.svg +0 -1
- package/dist/runtime/icons/history.svg +0 -1
- package/dist/runtime/icons/image.svg +0 -1
- package/dist/runtime/icons/import.svg +0 -5
- package/dist/runtime/icons/info.svg +0 -1
- package/dist/runtime/icons/laptop.svg +0 -1
- package/dist/runtime/icons/link.svg +0 -1
- package/dist/runtime/icons/list-view-grid.svg +0 -1
- package/dist/runtime/icons/list-view-horizontal.svg +0 -1
- package/dist/runtime/icons/magnifier.svg +0 -5
- package/dist/runtime/icons/menu.svg +0 -1
- package/dist/runtime/icons/minus.svg +0 -1
- package/dist/runtime/icons/monitor.svg +0 -1
- package/dist/runtime/icons/multi-select.svg +0 -1
- package/dist/runtime/icons/multimedia.svg +0 -1
- package/dist/runtime/icons/opacity.svg +0 -5
- package/dist/runtime/icons/open_in_new.svg +0 -3
- package/dist/runtime/icons/palette.svg +0 -1
- package/dist/runtime/icons/plus-box.svg +0 -1
- package/dist/runtime/icons/plus.svg +0 -1
- package/dist/runtime/icons/preview.svg +0 -5
- package/dist/runtime/icons/publish.svg +0 -12
- package/dist/runtime/icons/puzzle.svg +0 -1
- package/dist/runtime/icons/qrcode.svg +0 -5
- package/dist/runtime/icons/question.svg +0 -5
- package/dist/runtime/icons/redo.svg +0 -12
- package/dist/runtime/icons/resize.svg +0 -1
- package/dist/runtime/icons/revert.svg +0 -5
- package/dist/runtime/icons/rotate-phone.svg +0 -1
- package/dist/runtime/icons/sad.svg +0 -1
- package/dist/runtime/icons/save.svg +0 -1
- package/dist/runtime/icons/script.svg +0 -1
- package/dist/runtime/icons/scrolltotop.svg +0 -6
- package/dist/runtime/icons/search.svg +0 -1
- package/dist/runtime/icons/selection.svg +0 -5
- package/dist/runtime/icons/speedometer.svg +0 -1
- package/dist/runtime/icons/swap-horizontal.svg +0 -1
- package/dist/runtime/icons/tablet.svg +0 -1
- package/dist/runtime/icons/textbox.svg +0 -1
- package/dist/runtime/icons/texturebox.svg +0 -5
- package/dist/runtime/icons/title.svg +0 -1
- package/dist/runtime/icons/tools.svg +0 -1
- package/dist/runtime/icons/translate.svg +0 -5
- package/dist/runtime/icons/tree.svg +0 -5
- package/dist/runtime/icons/tutor.svg +0 -1
- package/dist/runtime/icons/ui-list-horizontal.svg +0 -19
- package/dist/runtime/icons/ui-list-sidebar.svg +0 -21
- package/dist/runtime/icons/ui-list-vertical.svg +0 -9
- package/dist/runtime/icons/undo.svg +0 -12
- package/dist/runtime/icons/upload.svg +0 -1
- package/dist/runtime/icons/user.svg +0 -1
- package/dist/runtime/icons/video-outline.svg +0 -1
- package/dist/shared/editor.CKsrTpc1.d.mts +0 -431
- /package/dist/{runtime/components/Edit/Features/Analyze/analyzers/types.js → global/types/adapter.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/MediaLibrary/types.js → global/types/blockOptions.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/Publish/Dialog/types.js → global/types/definitions.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/Tour/docs.md → global/types/features.js} +0 -0
- /package/dist/{runtime → global}/types/theme.d.ts +0 -0
- /package/dist/{runtime → global}/types/theme.js +0 -0
- /package/dist/runtime/{adapter → editor/adapter}/index.js +0 -0
- /package/dist/runtime/{components/Edit/Features → editor/components/FeaturesRenderer}/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Group/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Item/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Radio/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/RadioTabs/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Select/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Text/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Textarea/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Toggle/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Highlight/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/blokkli.png +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.d.ts +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.js +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.d.ts +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.js +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Resizable/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Transition/Height.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Transition/index.vue +0 -0
- /package/dist/runtime/{helpers → editor}/composables/addElementClasses.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/addElementClasses.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useBlockRegistration.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useDialog.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useGlobalBlokkliObject.js +0 -0
- /package/dist/runtime/{components/Edit/Features/AddList → editor/features/add-list}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Icon.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Results/Status.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Summary/Chart.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/Context.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/readability.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/types.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Artboard → editor/features/artboard}/Scrollbar/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/Overlay/ResultMarkup/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/List/Item/File.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/CommentInput/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/DebugSection.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Features.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Keyboard.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Selection.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/EditableField → editor/features/editable-field}/Overlay/Contenteditable/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Fragments → editor/features/fragments}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Library → editor/features/library}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Color/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/DateTimeLocal/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Range/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Text/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/PreviewGrant → editor/features/preview-grant}/QrCode/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Structure → editor/features/structure}/List/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Theme → editor/features/theme}/GeneratedCode/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/TouchActionBar → editor/features/touch-action-bar}/Bar/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Transform → editor/features/transform}/docs.md +0 -0
- /package/dist/runtime/{helpers → editor/helpers}/bundles/index.d.ts +0 -0
- /package/dist/runtime/{helpers/easing.d.ts → editor/helpers/easing/index.d.ts} +0 -0
- /package/dist/runtime/{helpers/easing.js → editor/helpers/easing/index.js} +0 -0
- /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.d.ts +0 -0
- /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.js +0 -0
- /package/dist/runtime/{helpers/renderCycle.d.ts → editor/helpers/vue/index.d.ts} +0 -0
- /package/dist/runtime/{helpers/renderCycle.js → editor/helpers/vue/index.js} +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/arrow-right-thin.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/artboard.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/dock-window.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/duplicate.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/loader.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/logo.svg +0 -0
- /package/dist/runtime/{icons/detach.svg → editor/icons/svg/reusable-detach.svg} +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/reusable.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/robot.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/spinner.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/star.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/tiktok.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/unstar.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/vimeo.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/window-maximize.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/window-minimize.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/youtube.svg +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/DebugOverlay/index.vue +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.d.ts +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/broadcast.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/providers/broadcast.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/definition.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/element.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/providers/element.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/indicators.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/plugin.js +0 -0
|
@@ -1,1407 +1,9 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
import type { DomProvider } from '../helpers/providers/dom.js';
|
|
4
|
-
import type { StorageProvider } from '../helpers/providers/storage.js';
|
|
5
|
-
import type { BlockDefinitionProvider } from '../helpers/providers/types.js';
|
|
6
|
-
import type { SelectionProvider } from '../helpers/providers/selection.js';
|
|
7
|
-
import type { KeyboardProvider } from '../helpers/providers/keyboard.js';
|
|
8
|
-
import type { UiProvider } from '../helpers/providers/ui.js';
|
|
9
|
-
import type { AnimationProvider } from '../helpers/providers/animation.js';
|
|
10
|
-
import type { StateProvider } from '../helpers/providers/state.js';
|
|
11
|
-
import type { DirectiveProvider } from '../helpers/providers/directive.js';
|
|
12
|
-
import type { TextProvider } from '../helpers/providers/texts.js';
|
|
13
|
-
import type { PluginProvider } from '../helpers/providers/plugin.js';
|
|
14
|
-
import type { eventBus } from './../helpers/eventBus.js';
|
|
15
|
-
import type { BlockOptionDefinition } from './blockOptions.js';
|
|
16
|
-
import type { BlokkliAdapter, AdapterContext, MutationResponseLike } from './../adapter/index.js';
|
|
17
|
-
import type { BroadcastProvider } from '../helpers/providers/broadcast.js';
|
|
18
|
-
import type { FeaturesProvider } from '../helpers/providers/features.js';
|
|
19
|
-
import type { BlokkliIcon } from '#blokkli-build/icons';
|
|
20
|
-
import type { SettingsGroup, Viewport } from '#blokkli/constants';
|
|
21
|
-
import type { BlockBundleWithNested, FieldListItemTyped, GlobalOptionsKey, ValidChunkNames, ValidFieldListTypes, ValidGlobalConfigKeys, BundleProps } from '#blokkli-build/generated-types';
|
|
22
|
-
import type { ThemeProvider } from '../helpers/providers/theme.js';
|
|
23
|
-
import type { BlokkliFragmentName, GlobalOptionsType } from '#blokkli-build/definitions';
|
|
24
|
-
import type { CommandsProvider } from '../helpers/providers/commands.js';
|
|
25
|
-
import type { TourProvider } from '../helpers/providers/tour.js';
|
|
26
|
-
import type { DropAreaProvider } from '../helpers/providers/dropArea.js';
|
|
27
|
-
import type { RGB } from './theme.js';
|
|
28
|
-
import type { DebugProvider } from '../helpers/providers/debug.js';
|
|
29
|
-
import type getVideoId from 'get-video-id';
|
|
30
|
-
import type { DefinitionProvider } from '../helpers/providers/definition.js';
|
|
31
|
-
import type { IndicatorsProvider } from '../helpers/providers/indicators.js';
|
|
32
|
-
import type { BlocksProvider } from '#blokkli/helpers/providers/blocks';
|
|
33
|
-
import type { FieldsProvider } from '#blokkli/helpers/providers/fields';
|
|
34
|
-
import type { ElementProvider } from '#blokkli/helpers/providers/element';
|
|
35
|
-
export type MutateWithLoadingStateFunction = (promise: () => Promise<MutationResponseLike<any>> | undefined, errorMessage?: string | false, successMessage?: string) => Promise<boolean>;
|
|
36
|
-
type GetType<T> = T extends {
|
|
37
|
-
options: infer O;
|
|
38
|
-
} ? T extends {
|
|
39
|
-
type: 'checkboxes';
|
|
40
|
-
} ? Array<keyof O> : keyof O : T extends {
|
|
41
|
-
type: 'checkbox';
|
|
42
|
-
} ? boolean : T extends {
|
|
43
|
-
type: 'range';
|
|
44
|
-
} ? number : T extends {
|
|
45
|
-
type: 'number';
|
|
46
|
-
} ? number : string;
|
|
47
|
-
export type BlockDefinitionOptionsInput = {
|
|
48
|
-
[key: string]: BlockOptionDefinition;
|
|
49
|
-
};
|
|
50
|
-
type WithOptions<T extends BlockDefinitionOptionsInput> = {
|
|
51
|
-
[K in keyof T]: GetType<T[K]>;
|
|
52
|
-
};
|
|
53
|
-
type GlobalOptionsKeyTypes<T extends ValidGlobalConfigKeys> = {
|
|
54
|
-
[K in T[number]]: GetType<GlobalOptionsType[K]>;
|
|
55
|
-
};
|
|
56
|
-
export type BundleKey = keyof BundleProps;
|
|
57
|
-
export type DefineBlokkliContext<T extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, G extends ValidGlobalConfigKeys | undefined = undefined> = {
|
|
58
|
-
/**
|
|
59
|
-
* The UUID of the item.
|
|
60
|
-
*/
|
|
61
|
-
uuid: string;
|
|
62
|
-
/**
|
|
63
|
-
* The index of the item in the field list.
|
|
64
|
-
*/
|
|
65
|
-
index: ComputedRef<number>;
|
|
66
|
-
/**
|
|
67
|
-
* Whether the item is being displayed in an editing context.
|
|
68
|
-
*/
|
|
69
|
-
isEditing: boolean;
|
|
70
|
-
/**
|
|
71
|
-
* The item type name (e.g. "teaser_list") of the parent item if this item is nested.
|
|
72
|
-
*/
|
|
73
|
-
parentType: ComputedRef<BlockBundleWithNested | undefined>;
|
|
74
|
-
/**
|
|
75
|
-
* The type of the field list the item is part of.
|
|
76
|
-
*/
|
|
77
|
-
fieldListType: ComputedRef<ValidFieldListTypes>;
|
|
78
|
-
/**
|
|
79
|
-
* All sibling blocks (including this one) that are in the same field.
|
|
80
|
-
*/
|
|
81
|
-
siblings: ComputedRef<FieldListItemTyped[]>;
|
|
82
|
-
/**
|
|
83
|
-
* All blocks that are in the root field (direct child of <BlokkliProvider>).
|
|
84
|
-
*/
|
|
85
|
-
rootBlocks: ComputedRef<FieldListItemTyped[]>;
|
|
86
|
-
/**
|
|
87
|
-
* The reactive runtime options.
|
|
88
|
-
*
|
|
89
|
-
* This includes both the locally defined options and the inherited global
|
|
90
|
-
* options.
|
|
91
|
-
*/
|
|
92
|
-
options: ComputedRef<(T extends BlockDefinitionOptionsInput ? WithOptions<T> : object) & (G extends ValidGlobalConfigKeys ? GlobalOptionsKeyTypes<G> : object)>;
|
|
93
|
-
/**
|
|
94
|
-
* The provider context.
|
|
95
|
-
*/
|
|
96
|
-
provider: ComputedRef<BlokkliProviderEntityContext | null>;
|
|
97
|
-
};
|
|
98
|
-
export type DefineProviderContext<T extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, G extends ValidGlobalConfigKeys | undefined = undefined> = {
|
|
99
|
-
/**
|
|
100
|
-
* The reactive runtime options.
|
|
101
|
-
*
|
|
102
|
-
* This includes both the locally defined options and the inherited global
|
|
103
|
-
* options.
|
|
104
|
-
*/
|
|
105
|
-
options: ComputedRef<(T extends BlockDefinitionOptionsInput ? WithOptions<T> : object) & (G extends ValidGlobalConfigKeys ? GlobalOptionsKeyTypes<G> : object)>;
|
|
106
|
-
};
|
|
107
|
-
type DetermineVisibleOptionsContext<T extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, G extends GlobalOptionsKey[] | undefined = undefined, B extends BundleKey | string = string> = {
|
|
108
|
-
options: (T extends BlockDefinitionOptionsInput ? WithOptions<T> : object) & (G extends ValidGlobalConfigKeys ? GlobalOptionsKeyTypes<G> : object);
|
|
109
|
-
parentType: BlockBundleWithNested | undefined;
|
|
110
|
-
fieldListType: ValidFieldListTypes;
|
|
111
|
-
props: B extends BundleKey ? BundleProps[B] : Record<string, any>;
|
|
112
|
-
entity: AdapterContext;
|
|
113
|
-
};
|
|
114
|
-
type ExtractGlobalOptions<G extends GlobalOptionsKey[]> = G[number] extends GlobalOptionsKey ? G[number] : never;
|
|
115
|
-
type CombineKeysAndGlobalOptions<T extends BlockDefinitionOptionsInput, G extends GlobalOptionsKey[] | undefined> = keyof T | ExtractGlobalOptions<NonNullable<G>>;
|
|
116
|
-
export type BlokkliDefinitionAddBehaviour = 'no-form' | 'form' | `editable:${string}`;
|
|
117
|
-
export type BlokkliDefinitionInputEditor<Options extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, GlobalOptions extends GlobalOptionsKey[] | undefined = undefined, Bundle extends BundleKey | string = string, PropsType = Bundle extends BundleKey ? BundleProps[Bundle] : Record<string, any>> = {
|
|
118
|
-
/**
|
|
119
|
-
* Determine which options should be visible in the editor based on the
|
|
120
|
-
* given context.
|
|
121
|
-
*
|
|
122
|
-
* If a method is defined, it is called whenever any of the options change.
|
|
123
|
-
*/
|
|
124
|
-
determineVisibleOptions?: (ctx: DetermineVisibleOptionsContext<Options, GlobalOptions, Bundle>) => Array<CombineKeysAndGlobalOptions<Options, GlobalOptions>>;
|
|
125
|
-
/**
|
|
126
|
-
* Disable editing for blocks that don't have any editable fields.
|
|
127
|
-
*
|
|
128
|
-
* This disables the "Edit" button in the actions overlay and double click
|
|
129
|
-
* to edit.
|
|
130
|
-
*/
|
|
131
|
-
disableEdit?: boolean;
|
|
132
|
-
/**
|
|
133
|
-
* If set, if this block is being rendered standalone (e.g. when inside the
|
|
134
|
-
* "add to library" dialog), the given will be used as the root width. The
|
|
135
|
-
* rendered block is then scaled down so that it fits the available space.
|
|
136
|
-
*/
|
|
137
|
-
previewWidth?: number;
|
|
138
|
-
/**
|
|
139
|
-
* When set to true the preview in the library is not rendered.
|
|
140
|
-
*
|
|
141
|
-
* This should be used for complex components that render things like sliders,
|
|
142
|
-
* iframes, modals, etc.
|
|
143
|
-
*/
|
|
144
|
-
noPreview?: boolean;
|
|
145
|
-
/**
|
|
146
|
-
* A background color class that is applied during editing when the component
|
|
147
|
-
* is being displayed standalone in a preview.
|
|
148
|
-
*
|
|
149
|
-
* For example, when the block can be made reusable and is being disabled in
|
|
150
|
-
* the "Add from Library" dialog, the given background class is used on the
|
|
151
|
-
* parent element.
|
|
152
|
-
*
|
|
153
|
-
* This can be used for blocks that render white text and are always
|
|
154
|
-
* rendered on top of a black background. Defining a background class makes
|
|
155
|
-
* sure the text is visible for the user.
|
|
156
|
-
*/
|
|
157
|
-
previewBackgroundClass?: string;
|
|
158
|
-
/**
|
|
159
|
-
* Define the behaviour when a new block is added of this type.
|
|
160
|
-
*
|
|
161
|
-
* Possible options:
|
|
162
|
-
* - 'form' (default)
|
|
163
|
-
* Shows the full form to enter block values.
|
|
164
|
-
* - 'no-form'
|
|
165
|
-
* Immediately adds the block without showing the full form.
|
|
166
|
-
* - 'editable:${string}'
|
|
167
|
-
* Immediately add the block without showing the full form and
|
|
168
|
-
* immediately open the editable field form with the given name.
|
|
169
|
-
* For example, when the block has an editable field named "body"
|
|
170
|
-
* a possible value would be 'editable:body'.
|
|
171
|
-
*/
|
|
172
|
-
addBehaviour?: BlokkliDefinitionAddBehaviour;
|
|
173
|
-
/**
|
|
174
|
-
* Define a custom title for this block at runtime in the editor.
|
|
175
|
-
*
|
|
176
|
-
* The title will be displayed to the editor to give some context. E.g. a
|
|
177
|
-
* title block displays an excerpt from the title.
|
|
178
|
-
*
|
|
179
|
-
* If a method is provided, it receives the root element of this component
|
|
180
|
-
* and should return a fitting title.
|
|
181
|
-
*
|
|
182
|
-
* If no method is defined or it doesn't return a value, the regular label
|
|
183
|
-
* of the bundle (e.g. "Teaser") is displayed.
|
|
184
|
-
*/
|
|
185
|
-
editTitle?: (el: HTMLElement) => string | undefined | null;
|
|
186
|
-
/**
|
|
187
|
-
* Build mock props for this component that are used when this block can
|
|
188
|
-
* be added from clipboard or search text content.
|
|
189
|
-
*
|
|
190
|
-
* The props are then used to render a preview of the block.
|
|
191
|
-
*
|
|
192
|
-
* For example, when pasting text into the editor and if supported by the
|
|
193
|
-
* adapter, the clipboard text content is passed as an argument.
|
|
194
|
-
*/
|
|
195
|
-
mockProps?: (text?: string) => Record<string, any>;
|
|
196
|
-
/**
|
|
197
|
-
* Hides the block from the add list if more than the given amount of
|
|
198
|
-
* blocks aready exist on the page.
|
|
199
|
-
*
|
|
200
|
-
* Note this only affects the behaviour in the editor, it's still possible
|
|
201
|
-
* to have more blocks on the page, just not via the editor.
|
|
202
|
-
*/
|
|
203
|
-
maxInstances?: number;
|
|
204
|
-
/**
|
|
205
|
-
* Get the drag element for the editor.
|
|
206
|
-
*
|
|
207
|
-
* @deprecated Use a ref in the template to designate the draggable element (e.g. <div ref="blokkliDraggable">).
|
|
208
|
-
*/
|
|
209
|
-
getDraggableElement?: (el: HTMLElement) => Element | undefined | null;
|
|
210
|
-
/**
|
|
211
|
-
* Define how the nested fields should be structured when the block is
|
|
212
|
-
* rendered without its component, for example when using
|
|
213
|
-
* `:proxy-mode="true"` on <BlokkliField>.
|
|
214
|
-
*
|
|
215
|
-
* Each array should define an array of field names.
|
|
216
|
-
*
|
|
217
|
-
* @example
|
|
218
|
-
* ```typescript
|
|
219
|
-
* defineBlokkli({
|
|
220
|
-
* bundle: 'three_columns',
|
|
221
|
-
* editor: {
|
|
222
|
-
* fieldLayout: [
|
|
223
|
-
* ['header'],
|
|
224
|
-
* ['left', 'center', 'right'],
|
|
225
|
-
* ]
|
|
226
|
-
* }
|
|
227
|
-
* })
|
|
228
|
-
* ```
|
|
229
|
-
*/
|
|
230
|
-
fieldLayout?: string[][];
|
|
231
|
-
/**
|
|
232
|
-
* Define how this component's props should be rendered in the diff view.
|
|
233
|
-
*
|
|
234
|
-
* By default, the diff feature assumes all props to be text and will render
|
|
235
|
-
* plaintext props as HTML and convert complex props (such as arrays or objects)
|
|
236
|
-
* to string using JSON.stringify().
|
|
237
|
-
*
|
|
238
|
-
* You can instead return a string representation of each prop that is used
|
|
239
|
-
* to display the prop instead.
|
|
240
|
-
*
|
|
241
|
-
* For example, if the prop is an image, you may return the filename of the
|
|
242
|
-
* image instead. If the prop is a number, you can return the formatted number.
|
|
243
|
-
*
|
|
244
|
-
* You can also return HTML as the value. The feature uses an HTML differ to
|
|
245
|
-
* render the diff.
|
|
246
|
-
*/
|
|
247
|
-
mapDiffProps?: (props?: PropsType) => Record<string, string>;
|
|
248
|
-
};
|
|
249
|
-
export type BlockDefinitionRenderForParent = {
|
|
250
|
-
parentBundle: BlockBundleWithNested;
|
|
251
|
-
};
|
|
252
|
-
export type BlockDefinitionRenderForFieldList = {
|
|
253
|
-
/**
|
|
254
|
-
* @deprecated Use `fieldListType` instead.
|
|
255
|
-
*/
|
|
256
|
-
fieldList: ValidFieldListTypes;
|
|
257
|
-
};
|
|
258
|
-
export type BlockDefinitionRenderForFieldListType = {
|
|
259
|
-
fieldListType: ValidFieldListTypes;
|
|
260
|
-
};
|
|
261
|
-
export type BlockDefinitionRenderFor = BlockDefinitionRenderForParent | BlockDefinitionRenderForFieldList | BlockDefinitionRenderForFieldListType;
|
|
262
|
-
export type BlockDefinitionInput<Options extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, GlobalOptions extends GlobalOptionsKey[] | undefined = [], Bundle extends BundleKey | string = string> = {
|
|
263
|
-
/**
|
|
264
|
-
* The bundle ID of the block, e.g. "text" or "section_title".
|
|
265
|
-
*/
|
|
266
|
-
bundle: Bundle;
|
|
267
|
-
/**
|
|
268
|
-
* Define the name of a block bundle that supports nested blocks.
|
|
269
|
-
* If a bundle is defined, then this component will be rendered if the
|
|
270
|
-
* parent matches the given bundle.
|
|
271
|
-
*/
|
|
272
|
-
renderFor?: BlockDefinitionRenderFor | BlockDefinitionRenderFor[];
|
|
273
|
-
/**
|
|
274
|
-
* The name of the chunk group.
|
|
275
|
-
*
|
|
276
|
-
* If this value is set, the component will be assigned to this
|
|
277
|
-
* import chunk. Multiple components can have the same chunk name.
|
|
278
|
-
*
|
|
279
|
-
* See the `chunkNames` option on the module's configuration for more details.
|
|
280
|
-
*/
|
|
281
|
-
chunkName?: ValidChunkNames;
|
|
282
|
-
/**
|
|
283
|
-
* Define options available for this block.
|
|
284
|
-
*/
|
|
285
|
-
options?: Options;
|
|
286
|
-
/**
|
|
287
|
-
* Global options to use.
|
|
288
|
-
*
|
|
289
|
-
* These options will be merged with the component-specific options.
|
|
290
|
-
*/
|
|
291
|
-
globalOptions?: GlobalOptions;
|
|
292
|
-
/**
|
|
293
|
-
* Settings for the behaviour in the editor.
|
|
294
|
-
*/
|
|
295
|
-
editor?: BlokkliDefinitionInputEditor<Options, GlobalOptions, Bundle>;
|
|
296
|
-
/**
|
|
297
|
-
* Map which component prop maps to which field name.
|
|
298
|
-
*
|
|
299
|
-
* For example, if the field is named "field_paragraphs_header" and the prop
|
|
300
|
-
* is named "headerParagraphs", you would define it as such:
|
|
301
|
-
*
|
|
302
|
-
* @example
|
|
303
|
-
* ```vue
|
|
304
|
-
* <template>
|
|
305
|
-
* <div>
|
|
306
|
-
* <BlokkliField :list="headerParagraphs" name="field_paragraphs_header" />
|
|
307
|
-
* </div>
|
|
308
|
-
* <template>
|
|
309
|
-
*
|
|
310
|
-
* <script lang="ts" setup>
|
|
311
|
-
* import type { ParagraphTwoColumnsFragment } from '#graphql-operations'
|
|
312
|
-
*
|
|
313
|
-
* defineProps<{
|
|
314
|
-
* headerParagraphs: ParagraphTwoColumnsFragment['headerParagraphs']
|
|
315
|
-
* }>()
|
|
316
|
-
*
|
|
317
|
-
* defineBlokkli({
|
|
318
|
-
* bundle: 'section',
|
|
319
|
-
* propsFieldMapping: {
|
|
320
|
-
* headerParagraphs: 'field_paragraphs_header',
|
|
321
|
-
* }
|
|
322
|
-
* })
|
|
323
|
-
* </script>
|
|
324
|
-
* ```
|
|
325
|
-
*/
|
|
326
|
-
propsFieldMapping?: Bundle extends BundleKey ? Partial<Record<keyof BundleProps[Bundle], string>> : never;
|
|
327
|
-
};
|
|
328
|
-
export type RuntimeBlockDefinitionInput = {
|
|
329
|
-
bundle: string;
|
|
330
|
-
};
|
|
331
|
-
export type InjectedBlokkliItem = {
|
|
332
|
-
index: ComputedRef<number>;
|
|
333
|
-
uuid: string;
|
|
334
|
-
options?: Record<string, string> | undefined;
|
|
335
|
-
isEditing: boolean;
|
|
336
|
-
parentType?: BlockBundleWithNested;
|
|
337
|
-
fieldListType?: ValidFieldListTypes;
|
|
338
|
-
fragmentName?: string;
|
|
339
|
-
};
|
|
340
|
-
export type FieldListItem = {
|
|
341
|
-
uuid: string;
|
|
342
|
-
bundle: string;
|
|
343
|
-
isVisible: boolean;
|
|
344
|
-
options?: Record<string, any>;
|
|
345
|
-
editContext?: BlockEditContext;
|
|
346
|
-
props?: Record<string, any>;
|
|
347
|
-
};
|
|
348
|
-
export type MutatedField = {
|
|
349
|
-
name: string;
|
|
350
|
-
entityType: string;
|
|
351
|
-
entityUuid: string;
|
|
352
|
-
list: FieldListItem[];
|
|
353
|
-
};
|
|
354
|
-
export type FieldConfig = {
|
|
355
|
-
name: string;
|
|
356
|
-
entityType: string;
|
|
357
|
-
entityBundle: string;
|
|
358
|
-
label: string;
|
|
359
|
-
cardinality: number;
|
|
360
|
-
canEdit: boolean;
|
|
361
|
-
allowedBundles: string[];
|
|
362
|
-
};
|
|
363
|
-
export type EditableFieldType = 'plain' | 'markup' | 'table' | 'frame';
|
|
364
|
-
export type EditableFieldConfig = {
|
|
365
|
-
name: string;
|
|
366
|
-
entityType: string;
|
|
367
|
-
entityBundle: string;
|
|
368
|
-
label: string;
|
|
369
|
-
type: EditableFieldType;
|
|
370
|
-
required: boolean;
|
|
371
|
-
maxLength: number;
|
|
372
|
-
};
|
|
1
|
+
import type { FieldListItem } from './field.js';
|
|
2
|
+
export type { FieldListItem };
|
|
373
3
|
export type EntityContext = {
|
|
374
4
|
uuid: string;
|
|
375
5
|
type: string;
|
|
376
6
|
bundle: string;
|
|
377
7
|
};
|
|
378
|
-
export type BlokkliProviderEntityContext = {
|
|
379
|
-
uuid: string;
|
|
380
|
-
type: string;
|
|
381
|
-
bundle: string;
|
|
382
|
-
language?: string;
|
|
383
|
-
};
|
|
384
|
-
export type EditPermission = 'view' | 'edit' | 'review';
|
|
385
|
-
export type EditEntity = {
|
|
386
|
-
label?: string;
|
|
387
|
-
status?: boolean;
|
|
388
|
-
bundleLabel?: string;
|
|
389
|
-
};
|
|
390
|
-
export interface Language {
|
|
391
|
-
id: string;
|
|
392
|
-
name: string;
|
|
393
|
-
}
|
|
394
|
-
export interface EntityTranslation {
|
|
395
|
-
id: string;
|
|
396
|
-
url: string;
|
|
397
|
-
editUrl?: string;
|
|
398
|
-
exists: boolean;
|
|
399
|
-
status: boolean;
|
|
400
|
-
}
|
|
401
|
-
export interface TranslationState {
|
|
402
|
-
isTranslatable?: boolean | null;
|
|
403
|
-
sourceLanguage?: string | null;
|
|
404
|
-
availableLanguages?: Language[];
|
|
405
|
-
translations?: EntityTranslation[];
|
|
406
|
-
}
|
|
407
|
-
export interface ConversionItem {
|
|
408
|
-
sourceBundle: string;
|
|
409
|
-
targetBundle: string;
|
|
410
|
-
}
|
|
411
|
-
export type PluginConfigInputText = {
|
|
412
|
-
type: 'text';
|
|
413
|
-
name: string;
|
|
414
|
-
label: string;
|
|
415
|
-
description?: string;
|
|
416
|
-
required: boolean;
|
|
417
|
-
defaultValue?: string;
|
|
418
|
-
minLength?: number;
|
|
419
|
-
maxLength?: number;
|
|
420
|
-
placeholder?: string;
|
|
421
|
-
pattern?: string;
|
|
422
|
-
multiline?: boolean;
|
|
423
|
-
rows?: number;
|
|
424
|
-
};
|
|
425
|
-
export type PluginConfigInputSeed = {
|
|
426
|
-
type: 'seed';
|
|
427
|
-
name: string;
|
|
428
|
-
label: string;
|
|
429
|
-
description?: string;
|
|
430
|
-
required: boolean;
|
|
431
|
-
};
|
|
432
|
-
export type PluginConfigInputCheckbox = {
|
|
433
|
-
type: 'checkbox';
|
|
434
|
-
name: string;
|
|
435
|
-
label: string;
|
|
436
|
-
description?: string;
|
|
437
|
-
required: boolean;
|
|
438
|
-
checkboxLabel?: string;
|
|
439
|
-
defaultValue: boolean;
|
|
440
|
-
};
|
|
441
|
-
export type PluginConfigInputOptions = {
|
|
442
|
-
type: 'options';
|
|
443
|
-
name: string;
|
|
444
|
-
label: string;
|
|
445
|
-
description?: string;
|
|
446
|
-
required: boolean;
|
|
447
|
-
defaultValue?: string;
|
|
448
|
-
variant: 'select' | 'radio';
|
|
449
|
-
options: {
|
|
450
|
-
value: string;
|
|
451
|
-
label: string;
|
|
452
|
-
}[];
|
|
453
|
-
};
|
|
454
|
-
export type PluginConfigInput = PluginConfigInputText | PluginConfigInputSeed | PluginConfigInputCheckbox | PluginConfigInputOptions;
|
|
455
|
-
export interface TransformPlugin {
|
|
456
|
-
/**
|
|
457
|
-
* The ID of the plugin.
|
|
458
|
-
*/
|
|
459
|
-
id: string;
|
|
460
|
-
/**
|
|
461
|
-
* The label of the transform plugin which is shown in the editor.
|
|
462
|
-
*/
|
|
463
|
-
label: string;
|
|
464
|
-
/**
|
|
465
|
-
* The array of bundles for which this transform plugin is available.
|
|
466
|
-
*/
|
|
467
|
-
bundles: string[];
|
|
468
|
-
/**
|
|
469
|
-
* The array of bundles that the transform might create.
|
|
470
|
-
*/
|
|
471
|
-
targetBundles?: string[];
|
|
472
|
-
/**
|
|
473
|
-
* The minimum number of items required.
|
|
474
|
-
*/
|
|
475
|
-
min: number;
|
|
476
|
-
/**
|
|
477
|
-
* The maximum number of items.
|
|
478
|
-
*/
|
|
479
|
-
max: number;
|
|
480
|
-
configInputs?: PluginConfigInput[];
|
|
481
|
-
description?: string;
|
|
482
|
-
/**
|
|
483
|
-
* Whether the transform plugin supports previewing the changes first.
|
|
484
|
-
*
|
|
485
|
-
* If true, the plugin is expected to to defer producing any side effects
|
|
486
|
-
* to when it's executed in non-preview mode.
|
|
487
|
-
*/
|
|
488
|
-
preview?: boolean;
|
|
489
|
-
}
|
|
490
|
-
export type PluginConfigInputItem = {
|
|
491
|
-
name: string;
|
|
492
|
-
value: string;
|
|
493
|
-
};
|
|
494
|
-
export interface HostTransformPlugin {
|
|
495
|
-
/**
|
|
496
|
-
* The ID of the plugin.
|
|
497
|
-
*/
|
|
498
|
-
id: string;
|
|
499
|
-
/**
|
|
500
|
-
* The label of the transform plugin which is shown in the editor.
|
|
501
|
-
*/
|
|
502
|
-
label: string;
|
|
503
|
-
configInputs?: PluginConfigInput[];
|
|
504
|
-
description?: string;
|
|
505
|
-
/**
|
|
506
|
-
* Whether the transform plugin supports previewing the changes first.
|
|
507
|
-
*
|
|
508
|
-
* If true, the plugin is expected to to defer producing any side effects
|
|
509
|
-
* to when it's executed in non-preview mode.
|
|
510
|
-
*/
|
|
511
|
-
preview?: boolean;
|
|
512
|
-
}
|
|
513
|
-
export interface LibraryItem {
|
|
514
|
-
uuid: string;
|
|
515
|
-
label?: string;
|
|
516
|
-
bundle: string;
|
|
517
|
-
item: FieldListItem;
|
|
518
|
-
}
|
|
519
|
-
export interface ImportItem {
|
|
520
|
-
uuid: string;
|
|
521
|
-
label: string;
|
|
522
|
-
}
|
|
523
|
-
export type CommentItem = {
|
|
524
|
-
uuid: string;
|
|
525
|
-
blockUuids: string[];
|
|
526
|
-
resolved: boolean;
|
|
527
|
-
body: string;
|
|
528
|
-
created: string | number;
|
|
529
|
-
user: {
|
|
530
|
-
label: string;
|
|
531
|
-
};
|
|
532
|
-
};
|
|
533
|
-
export interface MutationItem {
|
|
534
|
-
timestamp?: string;
|
|
535
|
-
pluginId?: string;
|
|
536
|
-
plugin?: {
|
|
537
|
-
label?: string;
|
|
538
|
-
affectedItemUuid?: string;
|
|
539
|
-
};
|
|
540
|
-
enabled?: boolean;
|
|
541
|
-
}
|
|
542
|
-
export interface Validation {
|
|
543
|
-
message: string;
|
|
544
|
-
code?: string;
|
|
545
|
-
propertyPath?: string;
|
|
546
|
-
entityType?: string;
|
|
547
|
-
entityUuid?: string;
|
|
548
|
-
}
|
|
549
|
-
export interface MappedState {
|
|
550
|
-
currentIndex: number;
|
|
551
|
-
mutations: MutationItem[];
|
|
552
|
-
currentUserIsOwner: boolean;
|
|
553
|
-
ownerName: string;
|
|
554
|
-
mutatedState?: {
|
|
555
|
-
mutatedOptions?: any;
|
|
556
|
-
mutatedHostOptions?: Record<string, string>;
|
|
557
|
-
fields?: MutatedField[];
|
|
558
|
-
violations?: Validation[];
|
|
559
|
-
};
|
|
560
|
-
publishOptions: PublishOptions;
|
|
561
|
-
entity: EditEntity;
|
|
562
|
-
mutatedEntity?: any;
|
|
563
|
-
translationState: TranslationState;
|
|
564
|
-
previewUrl?: string;
|
|
565
|
-
}
|
|
566
|
-
export interface BlockBundleDefinition {
|
|
567
|
-
id: string;
|
|
568
|
-
label: string;
|
|
569
|
-
description?: string;
|
|
570
|
-
allowReusable?: boolean;
|
|
571
|
-
isTranslatable?: boolean;
|
|
572
|
-
hasPublishOn?: boolean;
|
|
573
|
-
hasUnpublishOn?: boolean;
|
|
574
|
-
}
|
|
575
|
-
export type EditMode = 'readonly' | 'editing' | 'translating' | 'review';
|
|
576
|
-
export type MutatedOptions = {
|
|
577
|
-
[uuid: string]: {
|
|
578
|
-
[key: string]: string;
|
|
579
|
-
};
|
|
580
|
-
};
|
|
581
|
-
/**
|
|
582
|
-
* Defines a content search item.
|
|
583
|
-
*/
|
|
584
|
-
export type SearchContentItem = {
|
|
585
|
-
/**
|
|
586
|
-
* The ID of the item.
|
|
587
|
-
*/
|
|
588
|
-
id: string;
|
|
589
|
-
/**
|
|
590
|
-
* The entity type of the item.
|
|
591
|
-
*/
|
|
592
|
-
entityType: string;
|
|
593
|
-
/**
|
|
594
|
-
* The entity bundle of the item.
|
|
595
|
-
*/
|
|
596
|
-
entityBundle: string;
|
|
597
|
-
/**
|
|
598
|
-
* The title displayed to the user.
|
|
599
|
-
*/
|
|
600
|
-
title: string;
|
|
601
|
-
/**
|
|
602
|
-
* The possible bundles for which a block may be added using this content item.
|
|
603
|
-
*/
|
|
604
|
-
targetBundles: string[];
|
|
605
|
-
/**
|
|
606
|
-
* Additional context displayed alongside the title.
|
|
607
|
-
*/
|
|
608
|
-
context?: string;
|
|
609
|
-
/**
|
|
610
|
-
* The text displayed to the user.
|
|
611
|
-
*/
|
|
612
|
-
text?: string;
|
|
613
|
-
/**
|
|
614
|
-
* An optional image URL that is used instead of an icon.
|
|
615
|
-
*/
|
|
616
|
-
imageUrl?: string;
|
|
617
|
-
};
|
|
618
|
-
interface ClipboardItemText {
|
|
619
|
-
type: 'text';
|
|
620
|
-
id: string;
|
|
621
|
-
itemBundle: string;
|
|
622
|
-
data: string;
|
|
623
|
-
additional?: string;
|
|
624
|
-
}
|
|
625
|
-
export interface ClipboardItemVideo {
|
|
626
|
-
type: 'video';
|
|
627
|
-
id: string;
|
|
628
|
-
itemBundle: string;
|
|
629
|
-
data: string;
|
|
630
|
-
additional?: string;
|
|
631
|
-
videoService: ReturnType<typeof getVideoId>['service'];
|
|
632
|
-
videoId: string;
|
|
633
|
-
}
|
|
634
|
-
interface ClipboardItemImage {
|
|
635
|
-
type: 'image';
|
|
636
|
-
id: string;
|
|
637
|
-
itemBundle: string;
|
|
638
|
-
data: string;
|
|
639
|
-
additional: string;
|
|
640
|
-
fileName: string;
|
|
641
|
-
fileSize: number;
|
|
642
|
-
fileType: string;
|
|
643
|
-
}
|
|
644
|
-
export interface ClipboardItemFile {
|
|
645
|
-
type: 'file';
|
|
646
|
-
id: string;
|
|
647
|
-
itemBundle: string;
|
|
648
|
-
data: string;
|
|
649
|
-
additional: string;
|
|
650
|
-
fileName: string;
|
|
651
|
-
fileSize: number;
|
|
652
|
-
fileType: string;
|
|
653
|
-
}
|
|
654
|
-
export type ClipboardItem = ClipboardItemText | ClipboardItemVideo | ClipboardItemImage | ClipboardItemFile;
|
|
655
|
-
export interface DraggableHostData {
|
|
656
|
-
type: string;
|
|
657
|
-
uuid: string;
|
|
658
|
-
fieldName: string;
|
|
659
|
-
}
|
|
660
|
-
export type DraggableStyle = {
|
|
661
|
-
/**
|
|
662
|
-
* The border radius for every corner, starting from top left.
|
|
663
|
-
*/
|
|
664
|
-
radius: [number, number, number, number];
|
|
665
|
-
/**
|
|
666
|
-
* The smallest radius of the element.
|
|
667
|
-
*/
|
|
668
|
-
radiusMin: number;
|
|
669
|
-
/**
|
|
670
|
-
* The border radius as a CSS property value.
|
|
671
|
-
*/
|
|
672
|
-
radiusString: string;
|
|
673
|
-
/**
|
|
674
|
-
* The contrast color for highlighting.
|
|
675
|
-
*/
|
|
676
|
-
contrastColor: string;
|
|
677
|
-
/**
|
|
678
|
-
* The translucent contrast color for highlighting.
|
|
679
|
-
*/
|
|
680
|
-
contrastColorTranslucent: string;
|
|
681
|
-
/**
|
|
682
|
-
* The color to make a text (mostly) readable when put on top of the element.
|
|
683
|
-
*/
|
|
684
|
-
textColor: string;
|
|
685
|
-
contrastColorRGB: RGB;
|
|
686
|
-
isInverted: boolean;
|
|
687
|
-
};
|
|
688
|
-
export interface DraggableExistingStructureBlock {
|
|
689
|
-
itemType: 'existing_structure';
|
|
690
|
-
block: RenderedFieldListItem;
|
|
691
|
-
element: () => HTMLElement;
|
|
692
|
-
}
|
|
693
|
-
export interface DraggableExistingBlock {
|
|
694
|
-
itemType: 'existing';
|
|
695
|
-
block: RenderedFieldListItem;
|
|
696
|
-
}
|
|
697
|
-
export interface DraggableNewItem {
|
|
698
|
-
itemType: 'new';
|
|
699
|
-
element: () => HTMLElement;
|
|
700
|
-
itemBundle: string;
|
|
701
|
-
}
|
|
702
|
-
export interface DraggableActionItem {
|
|
703
|
-
itemType: 'action';
|
|
704
|
-
actionType: string;
|
|
705
|
-
action: AddAction;
|
|
706
|
-
itemBundle?: string;
|
|
707
|
-
element: () => HTMLElement;
|
|
708
|
-
}
|
|
709
|
-
export interface DraggableReusableItem {
|
|
710
|
-
itemType: 'reusable';
|
|
711
|
-
element: () => HTMLElement;
|
|
712
|
-
itemBundle: string;
|
|
713
|
-
libraryItemUuid: string;
|
|
714
|
-
}
|
|
715
|
-
export interface DraggableClipboardItem {
|
|
716
|
-
itemType: 'clipboard';
|
|
717
|
-
element: () => HTMLElement;
|
|
718
|
-
itemBundle: string;
|
|
719
|
-
additional?: string;
|
|
720
|
-
clipboardId: string;
|
|
721
|
-
}
|
|
722
|
-
export interface DraggableSearchContentItem {
|
|
723
|
-
itemType: 'search_content';
|
|
724
|
-
element: () => HTMLElement;
|
|
725
|
-
itemBundle: string;
|
|
726
|
-
searchItem: SearchContentItem;
|
|
727
|
-
}
|
|
728
|
-
export interface DraggableMediaLibraryItem {
|
|
729
|
-
itemType: 'media_library';
|
|
730
|
-
element: () => HTMLElement;
|
|
731
|
-
itemBundle: string;
|
|
732
|
-
mediaId: string;
|
|
733
|
-
mediaBundle: string;
|
|
734
|
-
}
|
|
735
|
-
export type DraggableItem = DraggableClipboardItem | DraggableNewItem | DraggableActionItem | DraggableExistingBlock | DraggableExistingStructureBlock | DraggableReusableItem | DraggableSearchContentItem | DraggableMediaLibraryItem;
|
|
736
|
-
export type MoveBlockEvent = {
|
|
737
|
-
afterUuid?: string;
|
|
738
|
-
item: DraggableExistingBlock;
|
|
739
|
-
host: DraggableHostData;
|
|
740
|
-
};
|
|
741
|
-
export type MoveMultipleBlocksEvent = {
|
|
742
|
-
afterUuid?: string;
|
|
743
|
-
uuids: string[];
|
|
744
|
-
host: DraggableHostData;
|
|
745
|
-
};
|
|
746
|
-
export type AddNewBlockEvent = {
|
|
747
|
-
bundle: string;
|
|
748
|
-
host: DraggableHostData;
|
|
749
|
-
afterUuid?: string;
|
|
750
|
-
};
|
|
751
|
-
export type AddClipboardItemEvent = {
|
|
752
|
-
item: ClipboardItem;
|
|
753
|
-
blockBundle: string;
|
|
754
|
-
host: DraggableHostData;
|
|
755
|
-
afterUuid?: string;
|
|
756
|
-
};
|
|
757
|
-
export type AddContentSearchItemEvent = {
|
|
758
|
-
item: SearchContentItem;
|
|
759
|
-
host: DraggableHostData;
|
|
760
|
-
bundle: string;
|
|
761
|
-
afterUuid?: string;
|
|
762
|
-
};
|
|
763
|
-
export type AddReusableItemEvent = {
|
|
764
|
-
libraryItemUuid: string;
|
|
765
|
-
host: DraggableHostData;
|
|
766
|
-
afterUuid?: string;
|
|
767
|
-
};
|
|
768
|
-
export type UpdateBlockOptionEvent = {
|
|
769
|
-
uuid: string;
|
|
770
|
-
key: string;
|
|
771
|
-
value: string;
|
|
772
|
-
};
|
|
773
|
-
export type UpdateHostOptionEvent = {
|
|
774
|
-
key: string;
|
|
775
|
-
value: string;
|
|
776
|
-
};
|
|
777
|
-
export type EditBlockEvent = {
|
|
778
|
-
uuid: string;
|
|
779
|
-
bundle: string;
|
|
780
|
-
};
|
|
781
|
-
export type UpdateMutatedFieldsEvent = {
|
|
782
|
-
fields: MutatedField[];
|
|
783
|
-
};
|
|
784
|
-
type AnimationFrameFieldArea = {
|
|
785
|
-
key: string;
|
|
786
|
-
name: string;
|
|
787
|
-
label: string;
|
|
788
|
-
isNested: boolean;
|
|
789
|
-
rect: DOMRect;
|
|
790
|
-
isVisible: boolean;
|
|
791
|
-
};
|
|
792
|
-
export type AnimationFrameEvent = {
|
|
793
|
-
fieldAreas: AnimationFrameFieldArea[];
|
|
794
|
-
mouseX: number;
|
|
795
|
-
mouseY: number;
|
|
796
|
-
time: number;
|
|
797
|
-
};
|
|
798
|
-
export type Message = {
|
|
799
|
-
type: 'success' | 'error' | 'warning';
|
|
800
|
-
message: string;
|
|
801
|
-
additional?: string | Error | unknown;
|
|
802
|
-
replace?: boolean;
|
|
803
|
-
};
|
|
804
|
-
export type Size = {
|
|
805
|
-
width: number;
|
|
806
|
-
height: number;
|
|
807
|
-
};
|
|
808
|
-
export type Coord = {
|
|
809
|
-
x: number;
|
|
810
|
-
y: number;
|
|
811
|
-
};
|
|
812
|
-
export type Rectangle = Size & Coord;
|
|
813
|
-
export type CanvasDrawEvent = {
|
|
814
|
-
mouseX: number;
|
|
815
|
-
mouseY: number;
|
|
816
|
-
mouseArtboard: Coord;
|
|
817
|
-
artboardOffset: Coord;
|
|
818
|
-
artboardScale: number;
|
|
819
|
-
artboardSize: Size;
|
|
820
|
-
time: number;
|
|
821
|
-
selectedUuids: string[];
|
|
822
|
-
dpi: number;
|
|
823
|
-
};
|
|
824
|
-
export type MakeReusableEvent = {
|
|
825
|
-
label: string;
|
|
826
|
-
uuid: string;
|
|
827
|
-
};
|
|
828
|
-
export type DetachReusableBlockEvent = {
|
|
829
|
-
uuids: string[];
|
|
830
|
-
};
|
|
831
|
-
export type KeyPressedEvent = {
|
|
832
|
-
code: string;
|
|
833
|
-
meta: boolean;
|
|
834
|
-
shift: boolean;
|
|
835
|
-
originalEvent: KeyboardEvent;
|
|
836
|
-
};
|
|
837
|
-
export type TranslateBlockEvent = {
|
|
838
|
-
uuid: string;
|
|
839
|
-
language: Language;
|
|
840
|
-
};
|
|
841
|
-
export type ImportFromExistingEvent = {
|
|
842
|
-
sourceUuid: string;
|
|
843
|
-
sourceFields: string[];
|
|
844
|
-
};
|
|
845
|
-
export type ConvertBlockEvent = {
|
|
846
|
-
uuid: string;
|
|
847
|
-
targetBundle: string;
|
|
848
|
-
};
|
|
849
|
-
export type ScrollIntoViewEvent = {
|
|
850
|
-
uuid: string;
|
|
851
|
-
center?: boolean;
|
|
852
|
-
immediate?: boolean;
|
|
853
|
-
} | {
|
|
854
|
-
element: HTMLElement;
|
|
855
|
-
center?: boolean;
|
|
856
|
-
immediate?: boolean;
|
|
857
|
-
highlight?: boolean;
|
|
858
|
-
};
|
|
859
|
-
export type PluginMountEvent = {
|
|
860
|
-
type: 'ItemDropdown';
|
|
861
|
-
id: string;
|
|
862
|
-
};
|
|
863
|
-
export type PluginUnmountEvent = {
|
|
864
|
-
type: 'ItemDropdown';
|
|
865
|
-
id: string;
|
|
866
|
-
};
|
|
867
|
-
export type EditableFieldFocusEvent = {
|
|
868
|
-
fieldName: string;
|
|
869
|
-
uuid?: string;
|
|
870
|
-
};
|
|
871
|
-
export type EditableFieldUpdateEvent = {
|
|
872
|
-
name: string;
|
|
873
|
-
entityUuid: string;
|
|
874
|
-
value: string;
|
|
875
|
-
};
|
|
876
|
-
export type BlockAppendEvent = {
|
|
877
|
-
bundle: string;
|
|
878
|
-
host: DraggableHostData;
|
|
879
|
-
afterUuid?: string;
|
|
880
|
-
};
|
|
881
|
-
export type UiResizedEvent = {
|
|
882
|
-
width: number;
|
|
883
|
-
height: number;
|
|
884
|
-
};
|
|
885
|
-
export type AnimateElementMode = 'leave' | 'enter';
|
|
886
|
-
export type AnimatorAddEvent = {
|
|
887
|
-
id: string;
|
|
888
|
-
mode: AnimateElementMode;
|
|
889
|
-
height?: number;
|
|
890
|
-
};
|
|
891
|
-
export type BlokkliFieldElement = {
|
|
892
|
-
key: string;
|
|
893
|
-
name: string;
|
|
894
|
-
label: string;
|
|
895
|
-
isNested: boolean;
|
|
896
|
-
nestingLevel: number;
|
|
897
|
-
fieldListType: ValidFieldListTypes;
|
|
898
|
-
hostEntityType: string;
|
|
899
|
-
hostEntityBundle: string;
|
|
900
|
-
hostEntityUuid: string;
|
|
901
|
-
allowedBundles: string[];
|
|
902
|
-
allowedFragments: string[];
|
|
903
|
-
cardinality: number;
|
|
904
|
-
element: HTMLElement;
|
|
905
|
-
dropAlignment: FieldDropAlignment | null;
|
|
906
|
-
};
|
|
907
|
-
export type FieldDropAlignment = 'vertical' | 'horizontal';
|
|
908
|
-
export type ActionPlacedData = {
|
|
909
|
-
preceedingUuid?: string;
|
|
910
|
-
host: DraggableHostData;
|
|
911
|
-
field: BlokkliFieldElement;
|
|
912
|
-
};
|
|
913
|
-
export type InteractionMode = 'mouse' | 'touch';
|
|
914
|
-
export type DraggableStartEvent = {
|
|
915
|
-
items: DraggableItem[];
|
|
916
|
-
coords: Coord;
|
|
917
|
-
mode: InteractionMode;
|
|
918
|
-
};
|
|
919
|
-
export type GlobalPointerEvent = {
|
|
920
|
-
/**
|
|
921
|
-
* The interaction mode.
|
|
922
|
-
*/
|
|
923
|
-
type: InteractionMode;
|
|
924
|
-
/**
|
|
925
|
-
* The viewport relative x coordinate.
|
|
926
|
-
*/
|
|
927
|
-
x: number;
|
|
928
|
-
/**
|
|
929
|
-
* The viewport relative y coordinate.
|
|
930
|
-
*/
|
|
931
|
-
y: number;
|
|
932
|
-
/**
|
|
933
|
-
* The total distance travelled.
|
|
934
|
-
*/
|
|
935
|
-
distance: number;
|
|
936
|
-
};
|
|
937
|
-
export type GlobalPointerUpEvent = GlobalPointerEvent & {
|
|
938
|
-
/**
|
|
939
|
-
* The total duration in miliseconds from the first click or touch to
|
|
940
|
-
* the last click or touch.
|
|
941
|
-
*/
|
|
942
|
-
duration: number;
|
|
943
|
-
};
|
|
944
|
-
export type SelectStartEvent = {
|
|
945
|
-
uuids: string[];
|
|
946
|
-
mode: InteractionMode;
|
|
947
|
-
};
|
|
948
|
-
export type StructureDragStart = {
|
|
949
|
-
uuid: string;
|
|
950
|
-
bundle: string;
|
|
951
|
-
};
|
|
952
|
-
export type DropTargetEvent = {
|
|
953
|
-
items: DraggableItem[];
|
|
954
|
-
field: BlokkliFieldElement;
|
|
955
|
-
host: DraggableHostData;
|
|
956
|
-
preceedingUuid?: string;
|
|
957
|
-
};
|
|
958
|
-
export type DropClipboardItemEvent = {
|
|
959
|
-
id: string;
|
|
960
|
-
blockBundle: string;
|
|
961
|
-
host: DraggableHostData;
|
|
962
|
-
afterUuid?: string;
|
|
963
|
-
};
|
|
964
|
-
export type LibraryEditItemEvent = {
|
|
965
|
-
url: string;
|
|
966
|
-
uuid: string;
|
|
967
|
-
label?: string;
|
|
968
|
-
};
|
|
969
|
-
export type AnimationFrameBeforeEvent = {
|
|
970
|
-
time: number;
|
|
971
|
-
mouseX: number;
|
|
972
|
-
mouseY: number;
|
|
973
|
-
};
|
|
974
|
-
type MultiSelectStartEvent = {
|
|
975
|
-
x: number;
|
|
976
|
-
y: number;
|
|
977
|
-
};
|
|
978
|
-
export type EventbusEvents = {
|
|
979
|
-
select: string | string[];
|
|
980
|
-
'select:unselect': undefined;
|
|
981
|
-
'select:force': string | string[];
|
|
982
|
-
'select:host': undefined;
|
|
983
|
-
'select:host:unselect': undefined;
|
|
984
|
-
'multi-select:start': MultiSelectStartEvent;
|
|
985
|
-
'item:edit': EditBlockEvent;
|
|
986
|
-
batchTranslate: undefined;
|
|
987
|
-
'dragging:start': DraggableStartEvent;
|
|
988
|
-
'dragging:drop': DropTargetEvent;
|
|
989
|
-
'dragging:end': undefined;
|
|
990
|
-
'add:block:new': AddNewBlockEvent;
|
|
991
|
-
updateMutatedFields: UpdateMutatedFieldsEvent;
|
|
992
|
-
animationFrame: AnimationFrameEvent;
|
|
993
|
-
message: Message;
|
|
994
|
-
keyPressed: KeyPressedEvent;
|
|
995
|
-
editEntity: undefined;
|
|
996
|
-
translateEntity: EntityTranslation;
|
|
997
|
-
reloadState: undefined;
|
|
998
|
-
reloadEntity: (() => void) | undefined;
|
|
999
|
-
'entity:translated': string;
|
|
1000
|
-
'select:start': SelectStartEvent;
|
|
1001
|
-
'select:toggle': string;
|
|
1002
|
-
'select:shiftToggle': string;
|
|
1003
|
-
'select:end': string[] | undefined;
|
|
1004
|
-
'overlay:close': undefined;
|
|
1005
|
-
'item:dropped': undefined;
|
|
1006
|
-
'block:append': BlockAppendEvent;
|
|
1007
|
-
'item:doubleClick': RenderedFieldListItem;
|
|
1008
|
-
scrollIntoView: ScrollIntoViewEvent;
|
|
1009
|
-
'animationFrame:before': AnimationFrameBeforeEvent;
|
|
1010
|
-
'animationFrame:after': undefined;
|
|
1011
|
-
'canvas:draw': CanvasDrawEvent;
|
|
1012
|
-
'state:reload:before': undefined;
|
|
1013
|
-
'state:reloaded': undefined;
|
|
1014
|
-
addContentSearchItem: AddContentSearchItemEvent;
|
|
1015
|
-
'option:update': UpdateBlockOptionEvent;
|
|
1016
|
-
/**
|
|
1017
|
-
* Emitted after finishing changing options.
|
|
1018
|
-
*/
|
|
1019
|
-
'option:finish-change': undefined;
|
|
1020
|
-
'plugin:mount': PluginMountEvent;
|
|
1021
|
-
'plugin:unmount': PluginUnmountEvent;
|
|
1022
|
-
'editable:focus': EditableFieldFocusEvent;
|
|
1023
|
-
'editable:update': EditableFieldUpdateEvent;
|
|
1024
|
-
'editable:save': undefined;
|
|
1025
|
-
'drop:clipboardItem': DropClipboardItemEvent;
|
|
1026
|
-
'sidebar:close': undefined;
|
|
1027
|
-
'sidebar:open': string;
|
|
1028
|
-
'action:selected': undefined;
|
|
1029
|
-
'animator:add': AnimatorAddEvent;
|
|
1030
|
-
'ui:resized': undefined;
|
|
1031
|
-
'add-list:change': undefined;
|
|
1032
|
-
'window:clickAway': undefined;
|
|
1033
|
-
'mouse:down': GlobalPointerEvent;
|
|
1034
|
-
'mouse:move': GlobalPointerEvent;
|
|
1035
|
-
'mouse:up': GlobalPointerUpEvent;
|
|
1036
|
-
/**
|
|
1037
|
-
* Emitted when publishing failed.
|
|
1038
|
-
*/
|
|
1039
|
-
'publish:failed': undefined;
|
|
1040
|
-
/**
|
|
1041
|
-
* Show the publish dialog.
|
|
1042
|
-
*/
|
|
1043
|
-
'publish:show-dialog': undefined;
|
|
1044
|
-
/**
|
|
1045
|
-
* Edit a library item.
|
|
1046
|
-
*/
|
|
1047
|
-
'library:edit-item': LibraryEditItemEvent;
|
|
1048
|
-
/**
|
|
1049
|
-
* Emitted when a view option is being toggled.
|
|
1050
|
-
*/
|
|
1051
|
-
'view-option:toggle': {
|
|
1052
|
-
id: string;
|
|
1053
|
-
};
|
|
1054
|
-
/**
|
|
1055
|
-
* An analyze node target was clicked.
|
|
1056
|
-
*/
|
|
1057
|
-
'analyze:click-node': {
|
|
1058
|
-
id: string;
|
|
1059
|
-
target: HTMLElement;
|
|
1060
|
-
};
|
|
1061
|
-
};
|
|
1062
|
-
export type Eventbus = Emitter<EventbusEvents>;
|
|
1063
|
-
export type ItemEditContext = {
|
|
1064
|
-
eventBus: Eventbus;
|
|
1065
|
-
mutatedOptions: MutatedOptions;
|
|
1066
|
-
dom?: DomProvider;
|
|
1067
|
-
definitions: DefinitionProvider;
|
|
1068
|
-
useBlockRegistration?: (dom: DomProvider, uuid: string) => void;
|
|
1069
|
-
};
|
|
1070
|
-
export interface BlokkliApp {
|
|
1071
|
-
/**
|
|
1072
|
-
* The adapter.
|
|
1073
|
-
*/
|
|
1074
|
-
adapter: BlokkliAdapter<any>;
|
|
1075
|
-
eventBus: typeof eventBus;
|
|
1076
|
-
runtimeConfig: {
|
|
1077
|
-
itemEntityType: string;
|
|
1078
|
-
defaultLanguage: string;
|
|
1079
|
-
};
|
|
1080
|
-
dom: DomProvider;
|
|
1081
|
-
storage: StorageProvider;
|
|
1082
|
-
types: BlockDefinitionProvider;
|
|
1083
|
-
selection: SelectionProvider;
|
|
1084
|
-
blocks: BlocksProvider;
|
|
1085
|
-
keyboard: KeyboardProvider;
|
|
1086
|
-
element: ElementProvider;
|
|
1087
|
-
ui: UiProvider;
|
|
1088
|
-
animation: AnimationProvider;
|
|
1089
|
-
definitions: DefinitionProvider;
|
|
1090
|
-
state: StateProvider;
|
|
1091
|
-
context: ComputedRef<AdapterContext>;
|
|
1092
|
-
$t: TextProvider;
|
|
1093
|
-
broadcast: BroadcastProvider;
|
|
1094
|
-
features: FeaturesProvider;
|
|
1095
|
-
theme: ThemeProvider;
|
|
1096
|
-
commands: CommandsProvider;
|
|
1097
|
-
tour: TourProvider;
|
|
1098
|
-
dropAreas: DropAreaProvider;
|
|
1099
|
-
debug: DebugProvider;
|
|
1100
|
-
indicators: IndicatorsProvider;
|
|
1101
|
-
plugins: PluginProvider;
|
|
1102
|
-
directive: DirectiveProvider;
|
|
1103
|
-
fields: FieldsProvider;
|
|
1104
|
-
}
|
|
1105
|
-
export type PasteExistingBlocksEvent = {
|
|
1106
|
-
uuids: string[];
|
|
1107
|
-
host: DraggableHostData;
|
|
1108
|
-
preceedingUuid?: string;
|
|
1109
|
-
};
|
|
1110
|
-
export type NativeBlokkliEditableBlurEvent = CustomEvent<{
|
|
1111
|
-
field: string;
|
|
1112
|
-
text: string;
|
|
1113
|
-
}>;
|
|
1114
|
-
export type UpdateFieldValueEvent = {
|
|
1115
|
-
uuid: string;
|
|
1116
|
-
fieldName: string;
|
|
1117
|
-
fieldValue: string;
|
|
1118
|
-
};
|
|
1119
|
-
export type AssistantResultMarkup = {
|
|
1120
|
-
type: 'markup';
|
|
1121
|
-
content: string;
|
|
1122
|
-
};
|
|
1123
|
-
export type AssistantResult = AssistantResultMarkup;
|
|
1124
|
-
export type AdapterMethods = keyof BlokkliAdapter<any>;
|
|
1125
|
-
export type FeatureDefinitionSettingRadiosOption = {
|
|
1126
|
-
label: string;
|
|
1127
|
-
icon?: BlokkliIcon;
|
|
1128
|
-
};
|
|
1129
|
-
export type FeatureDefinitionSettingRadios = {
|
|
1130
|
-
type: 'radios';
|
|
1131
|
-
label: string;
|
|
1132
|
-
default: string;
|
|
1133
|
-
options: Record<string, FeatureDefinitionSettingRadiosOption>;
|
|
1134
|
-
group?: SettingsGroup;
|
|
1135
|
-
viewports?: Viewport[];
|
|
1136
|
-
};
|
|
1137
|
-
export type FeatureDefinitionSettingCheckbox = {
|
|
1138
|
-
type: 'checkbox';
|
|
1139
|
-
label: string;
|
|
1140
|
-
description?: string;
|
|
1141
|
-
default: boolean;
|
|
1142
|
-
group?: SettingsGroup;
|
|
1143
|
-
viewports?: Viewport[];
|
|
1144
|
-
};
|
|
1145
|
-
export type FeatureDefinitionSettingSlider = {
|
|
1146
|
-
type: 'slider';
|
|
1147
|
-
label: string;
|
|
1148
|
-
default: number;
|
|
1149
|
-
group?: SettingsGroup;
|
|
1150
|
-
viewports?: Viewport[];
|
|
1151
|
-
min: number;
|
|
1152
|
-
max: number;
|
|
1153
|
-
step: number;
|
|
1154
|
-
};
|
|
1155
|
-
export type FeatureDefinitionSettingMethod = {
|
|
1156
|
-
type: 'method';
|
|
1157
|
-
label: string;
|
|
1158
|
-
method: (app: BlokkliApp) => void;
|
|
1159
|
-
group?: SettingsGroup;
|
|
1160
|
-
viewports?: Viewport[];
|
|
1161
|
-
};
|
|
1162
|
-
export type FeatureDefinitionSetting = FeatureDefinitionSettingCheckbox | FeatureDefinitionSettingRadios | FeatureDefinitionSettingMethod | FeatureDefinitionSettingSlider;
|
|
1163
|
-
export type FeatureDefinition<Methods extends AdapterMethods[] = [], T extends string = ''> = {
|
|
1164
|
-
/**
|
|
1165
|
-
* The unique ID of the feature.
|
|
1166
|
-
*/
|
|
1167
|
-
id: string;
|
|
1168
|
-
/**
|
|
1169
|
-
* The label of the feature.
|
|
1170
|
-
*/
|
|
1171
|
-
label?: string;
|
|
1172
|
-
/**
|
|
1173
|
-
* The icon of the feature.
|
|
1174
|
-
*/
|
|
1175
|
-
icon: BlokkliIcon;
|
|
1176
|
-
/**
|
|
1177
|
-
* Description of the feature.
|
|
1178
|
-
*/
|
|
1179
|
-
description?: string;
|
|
1180
|
-
/**
|
|
1181
|
-
* Dependencies of the feature.
|
|
1182
|
-
*
|
|
1183
|
-
* Loads this feature only after all of the given features have loaded.
|
|
1184
|
-
*
|
|
1185
|
-
* If one of the dependencies does not load, this feature won't load too.
|
|
1186
|
-
*/
|
|
1187
|
-
dependencies?: T[];
|
|
1188
|
-
/**
|
|
1189
|
-
* The viewports for which this feature will be loaded.
|
|
1190
|
-
*/
|
|
1191
|
-
viewports?: Viewport[];
|
|
1192
|
-
/**
|
|
1193
|
-
* The adapter methods required for this feature to work.
|
|
1194
|
-
*
|
|
1195
|
-
* If the adapter does not implement all methods, the feature won't load.
|
|
1196
|
-
*/
|
|
1197
|
-
requiredAdapterMethods?: [...Methods];
|
|
1198
|
-
/**
|
|
1199
|
-
* Feature-specific settings that will be rendered in the settings dialog.
|
|
1200
|
-
*/
|
|
1201
|
-
settings?: Record<string, FeatureDefinitionSetting>;
|
|
1202
|
-
/**
|
|
1203
|
-
* Name of the screenshot image file, relative to the feature directory.
|
|
1204
|
-
*/
|
|
1205
|
-
screenshot?: string;
|
|
1206
|
-
/**
|
|
1207
|
-
* If true, the feature has to be explicitly enabled before it is loaded.
|
|
1208
|
-
*/
|
|
1209
|
-
beta?: boolean;
|
|
1210
|
-
};
|
|
1211
|
-
export type KeyboardShortcut = {
|
|
1212
|
-
group?: string;
|
|
1213
|
-
meta?: boolean;
|
|
1214
|
-
shift?: boolean;
|
|
1215
|
-
code: string;
|
|
1216
|
-
label: string;
|
|
1217
|
-
};
|
|
1218
|
-
export type CommandGroup = 'ui' | 'selection' | 'add' | 'action' | 'misc' | 'options';
|
|
1219
|
-
export type Command = {
|
|
1220
|
-
id: string;
|
|
1221
|
-
label: string;
|
|
1222
|
-
group?: CommandGroup;
|
|
1223
|
-
icon?: BlokkliIcon;
|
|
1224
|
-
bundle?: string;
|
|
1225
|
-
disabled?: boolean;
|
|
1226
|
-
callback: () => any;
|
|
1227
|
-
};
|
|
1228
|
-
export type DropArea = {
|
|
1229
|
-
id: string;
|
|
1230
|
-
label: string;
|
|
1231
|
-
icon?: BlokkliIcon;
|
|
1232
|
-
element: HTMLElement;
|
|
1233
|
-
onDrop: () => Promise<any> | any;
|
|
1234
|
-
};
|
|
1235
|
-
export type ContextMenuRule = {
|
|
1236
|
-
type: 'rule';
|
|
1237
|
-
};
|
|
1238
|
-
export type ContextMenuButton = {
|
|
1239
|
-
type: 'button';
|
|
1240
|
-
label: string;
|
|
1241
|
-
icon: BlokkliIcon;
|
|
1242
|
-
callback: () => void;
|
|
1243
|
-
};
|
|
1244
|
-
export type ContextMenu = ContextMenuButton | ContextMenuRule;
|
|
1245
|
-
export type FragmentDefinitionInput<Options extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, GlobalOptions extends GlobalOptionsKey[] | undefined = undefined> = {
|
|
1246
|
-
/**
|
|
1247
|
-
* The unique name of this fragment.
|
|
1248
|
-
*/
|
|
1249
|
-
name: string;
|
|
1250
|
-
/**
|
|
1251
|
-
* The label of the fragment.
|
|
1252
|
-
*/
|
|
1253
|
-
label: string;
|
|
1254
|
-
/**
|
|
1255
|
-
* A short description.
|
|
1256
|
-
*/
|
|
1257
|
-
description?: string;
|
|
1258
|
-
/**
|
|
1259
|
-
* The name of the chunk group.
|
|
1260
|
-
*
|
|
1261
|
-
* If this value is set, the component will be assigned to this
|
|
1262
|
-
* import chunk. Multiple components can have the same chunk name.
|
|
1263
|
-
*
|
|
1264
|
-
* See the `chunkNames` option on the module's configuration for more details.
|
|
1265
|
-
*/
|
|
1266
|
-
chunkName?: ValidChunkNames;
|
|
1267
|
-
/**
|
|
1268
|
-
* Define options available for this block.
|
|
1269
|
-
*/
|
|
1270
|
-
options?: Options;
|
|
1271
|
-
/**
|
|
1272
|
-
* Global options to use.
|
|
1273
|
-
*
|
|
1274
|
-
* These options will be merged with the component-specific options.
|
|
1275
|
-
*/
|
|
1276
|
-
globalOptions?: GlobalOptions;
|
|
1277
|
-
/**
|
|
1278
|
-
* Settings for the behaviour in the editor.
|
|
1279
|
-
*/
|
|
1280
|
-
editor?: BlokkliDefinitionInputEditor<Options, GlobalOptions>;
|
|
1281
|
-
};
|
|
1282
|
-
export type ProviderDefinitionInput<Options extends BlockDefinitionOptionsInput = BlockDefinitionOptionsInput, GlobalOptions extends GlobalOptionsKey[] | undefined = undefined> = {
|
|
1283
|
-
/**
|
|
1284
|
-
* The entity type.
|
|
1285
|
-
*/
|
|
1286
|
-
entityType: string;
|
|
1287
|
-
/**
|
|
1288
|
-
* The bundle.
|
|
1289
|
-
*/
|
|
1290
|
-
bundle: string;
|
|
1291
|
-
/**
|
|
1292
|
-
* Define options available for this block.
|
|
1293
|
-
*/
|
|
1294
|
-
options?: Options;
|
|
1295
|
-
/**
|
|
1296
|
-
* Global options to use.
|
|
1297
|
-
*
|
|
1298
|
-
* These options will be merged with the component-specific options.
|
|
1299
|
-
*/
|
|
1300
|
-
globalOptions?: GlobalOptions;
|
|
1301
|
-
};
|
|
1302
|
-
export type TourItem = {
|
|
1303
|
-
id: string;
|
|
1304
|
-
title: string;
|
|
1305
|
-
text: string;
|
|
1306
|
-
element: HTMLElement | (() => HTMLElement | undefined | null) | undefined | null;
|
|
1307
|
-
};
|
|
1308
|
-
export type DroppableFieldConfig = {
|
|
1309
|
-
name: string;
|
|
1310
|
-
label: string;
|
|
1311
|
-
entityType: string;
|
|
1312
|
-
entityBundle: string;
|
|
1313
|
-
allowedEntityType: string;
|
|
1314
|
-
allowedBundles: string[];
|
|
1315
|
-
cardinality: number;
|
|
1316
|
-
required: boolean;
|
|
1317
|
-
};
|
|
1318
|
-
export type SelectedRect = Rectangle & {
|
|
1319
|
-
uuid: string;
|
|
1320
|
-
style: DraggableStyle;
|
|
1321
|
-
};
|
|
1322
|
-
export interface LibraryItemProps {
|
|
1323
|
-
block?: FieldListItem;
|
|
1324
|
-
label?: string;
|
|
1325
|
-
uuid?: string;
|
|
1326
|
-
}
|
|
1327
|
-
export type PublishOptions = {
|
|
1328
|
-
canPublish: boolean;
|
|
1329
|
-
isRevisionable: boolean;
|
|
1330
|
-
hasRevisionLogMessage: boolean;
|
|
1331
|
-
lastChanged: string | null;
|
|
1332
|
-
canSchedule: boolean;
|
|
1333
|
-
publishOn: string | null;
|
|
1334
|
-
revisionLogMessage: string | null;
|
|
1335
|
-
};
|
|
1336
|
-
export type GetEditStatesItem = {
|
|
1337
|
-
hostEntityType: string;
|
|
1338
|
-
hostEntityUuid: string;
|
|
1339
|
-
entity: EditEntity;
|
|
1340
|
-
currentUserIsOwner: boolean;
|
|
1341
|
-
};
|
|
1342
|
-
export type BlockIndicator = {
|
|
1343
|
-
id: string;
|
|
1344
|
-
uuid: string;
|
|
1345
|
-
element: HTMLElement;
|
|
1346
|
-
position: 'left' | 'right';
|
|
1347
|
-
};
|
|
1348
|
-
export type AddActionColor = 'rose' | 'lime' | 'accent';
|
|
1349
|
-
export type AddAction = {
|
|
1350
|
-
id: string;
|
|
1351
|
-
icon: BlokkliIcon;
|
|
1352
|
-
color: AddActionColor;
|
|
1353
|
-
itemBundle?: string;
|
|
1354
|
-
title: string;
|
|
1355
|
-
description?: string;
|
|
1356
|
-
callback: (action: ActionPlacedData) => void;
|
|
1357
|
-
enabled?: (item: RenderedFieldListItem) => boolean;
|
|
1358
|
-
};
|
|
1359
|
-
export type BlockEditContext = {
|
|
1360
|
-
isPublished: boolean;
|
|
1361
|
-
isNew: boolean;
|
|
1362
|
-
publishOn?: string | null;
|
|
1363
|
-
unpublishOn?: string | null;
|
|
1364
|
-
};
|
|
1365
|
-
export type RenderedFieldListItem = {
|
|
1366
|
-
uuid: string;
|
|
1367
|
-
bundle: string;
|
|
1368
|
-
isNew: boolean;
|
|
1369
|
-
isPublished: boolean;
|
|
1370
|
-
host: DraggableHostData & {
|
|
1371
|
-
bundle: string;
|
|
1372
|
-
};
|
|
1373
|
-
fieldListType: ValidFieldListTypes;
|
|
1374
|
-
parentBlockBundle: BlockBundleWithNested | null;
|
|
1375
|
-
library: {
|
|
1376
|
-
label: string;
|
|
1377
|
-
libraryItemUuid: string;
|
|
1378
|
-
reusableBundle: string;
|
|
1379
|
-
} | null;
|
|
1380
|
-
fragment: {
|
|
1381
|
-
name: BlokkliFragmentName;
|
|
1382
|
-
} | null;
|
|
1383
|
-
isNested: boolean;
|
|
1384
|
-
publishOn?: string | null;
|
|
1385
|
-
unpublishOn?: string | null;
|
|
1386
|
-
};
|
|
1387
|
-
export type BlokkliDirectiveType = 'editable' | 'droppable';
|
|
1388
|
-
export type RegisteredField = {
|
|
1389
|
-
element: HTMLElement;
|
|
1390
|
-
entity: EntityContext;
|
|
1391
|
-
fieldName: string;
|
|
1392
|
-
fieldListType: ValidFieldListTypes;
|
|
1393
|
-
allowedFragments: BlokkliFragmentName[];
|
|
1394
|
-
isNested: boolean;
|
|
1395
|
-
nestingLevel: number;
|
|
1396
|
-
dropAlignment: FieldDropAlignment | null;
|
|
1397
|
-
};
|
|
1398
|
-
export type RegisterFieldData = Pick<RegisteredField, 'fieldListType' | 'allowedFragments' | 'isNested' | 'nestingLevel' | 'dropAlignment'>;
|
|
1399
|
-
export type VueClassProp = string | Record<string, boolean> | VueClassProp[];
|
|
1400
|
-
export type SidebarRegion = 'left' | 'right';
|
|
1401
|
-
export type GlobalUiDialog = {
|
|
1402
|
-
id: string;
|
|
1403
|
-
alignment: 'left' | 'right' | 'center';
|
|
1404
|
-
confirmClose?: boolean;
|
|
1405
|
-
};
|
|
1406
8
|
declare const _default: {};
|
|
1407
9
|
export default _default;
|