@blokkli/editor 2.0.0-alpha.2 → 2.0.0-alpha.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.d.mts +1 -1
- package/dist/module.json +5 -5
- package/dist/module.mjs +5549 -1269
- package/dist/modules/drupal/graphql/base/fragment.ParagraphsBlokkliConfigInput.graphql +31 -0
- package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +9 -0
- package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +5 -0
- package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +9 -0
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +1 -10
- package/dist/modules/drupal/graphql/base/query.pbEntityConfig.graphql +5 -0
- package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
- package/dist/modules/drupal/graphql/features/publishNew.graphql +1 -4
- package/dist/modules/drupal/graphql/features/scheduler.graphql +31 -0
- package/dist/modules/drupal/graphql/features/transform.graphql +9 -1
- package/dist/modules/drupal/graphql/features/transform_host.graphql +38 -0
- package/dist/modules/drupal/graphql/mutations/set_paragraph_schedule.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/update_host_options.graphql +15 -0
- package/dist/modules/drupal/index.d.mts +1 -1
- package/dist/modules/drupal/index.mjs +79 -9
- package/dist/modules/drupal/runtime/adapter/index.d.ts +3 -0
- package/dist/modules/drupal/{adapter/index.mjs → runtime/adapter/index.js} +166 -20
- package/dist/runtime/adapter/index.d.ts +111 -1
- package/dist/runtime/blokkliPlugins/AddAction/index.vue +27 -3
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue +65 -0
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue.d.ts +26 -0
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +6 -0
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +3 -2
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +2 -19
- package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +2 -7
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +3 -3
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +2 -19
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +23 -15
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +21 -44
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +49 -11
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +29 -15
- package/dist/runtime/blokkliPlugins/MenuButton/index.vue.d.ts +3 -3
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +6 -7
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +2 -51
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +2 -9
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +15 -9
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +1 -1
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +10 -5
- package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +2 -4
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +6 -3
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +4 -3
- package/dist/runtime/blokkliPlugins/index.d.ts +8 -7
- package/dist/runtime/blokkliPlugins/index.js +15 -13
- package/dist/runtime/components/Blocks/Fragment/icon.svg +1 -1
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +4 -2
- package/dist/runtime/components/BlokkliEditable.vue +34 -16
- package/dist/runtime/components/BlokkliEditable.vue.d.ts +2 -1
- package/dist/runtime/components/BlokkliField.vue +31 -27
- package/dist/runtime/components/BlokkliField.vue.d.ts +61 -17
- package/dist/runtime/components/BlokkliItem.vue +2 -2
- package/dist/runtime/components/BlokkliItem.vue.d.ts +4 -2
- package/dist/runtime/components/BlokkliProvider.vue +51 -39
- package/dist/runtime/components/BlokkliProvider.vue.d.ts +45 -7
- package/dist/runtime/components/Edit/Actions/index.vue +69 -78
- package/dist/runtime/components/Edit/AddListItem/index.vue +2 -5
- package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/AddListItemIcon/index.vue +19 -0
- package/dist/runtime/components/Edit/AddListItemIcon/index.vue.d.ts +15 -0
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +436 -25
- package/dist/runtime/components/Edit/AppMenu/index.vue +5 -5
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +83 -0
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +32 -0
- package/dist/runtime/components/Edit/Banner/index.vue +51 -0
- package/dist/runtime/components/Edit/Banner/index.vue.d.ts +18 -0
- package/dist/runtime/components/Edit/BlockProxy/index.vue +3 -1
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +2 -13
- package/dist/runtime/components/Edit/Dialog/index.vue +14 -5
- package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +4 -2
- package/dist/runtime/components/Edit/DiffViewer/State.vue +276 -0
- package/dist/runtime/components/Edit/DiffViewer/State.vue.d.ts +16 -0
- package/dist/runtime/components/Edit/DraggableList.vue +20 -50
- package/dist/runtime/components/Edit/DraggableList.vue.d.ts +7 -7
- package/dist/runtime/components/Edit/EditIndicator.vue +118 -44
- package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +3 -0
- package/dist/runtime/components/Edit/EditProvider.vue +153 -64
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +3 -0
- package/dist/runtime/components/Edit/Features/AddList/index.vue +24 -36
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/fragment.glsl +58 -0
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue +170 -0
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue.d.ts +9 -0
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/vertex.glsl +72 -0
- package/dist/runtime/components/Edit/Features/Analyze/Renderer.vue +159 -0
- package/dist/runtime/components/Edit/Features/Analyze/Renderer.vue.d.ts +7 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue +100 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue +56 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue.d.ts +3 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue +87 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue.d.ts +7 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +105 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue.d.ts +8 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/Status.vue +18 -0
- package/dist/runtime/components/Edit/Features/Analyze/Results/Status.vue.d.ts +8 -0
- package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue +92 -0
- package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue.d.ts +17 -0
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue +77 -0
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.d.ts +12 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.js +75 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/defineAnalyzer.d.ts +4 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/defineAnalyzer.js +5 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.d.ts +32 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.js +45 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/collectTextElements.d.ts +5 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/collectTextElements.js +95 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/normalizeArray.d.ts +3 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/normalizeArray.js +13 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/index.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/index.js +2 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.js +165 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/types.d.ts +44 -0
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/types.js +0 -0
- package/dist/runtime/components/Edit/Features/Analyze/helper.d.ts +5 -0
- package/dist/runtime/components/Edit/Features/Analyze/helper.js +28 -0
- package/dist/runtime/components/Edit/Features/Analyze/index.vue +44 -0
- package/dist/runtime/components/Edit/Features/Anchors/Renderer.vue +53 -0
- package/dist/runtime/components/Edit/Features/Anchors/index.vue +32 -0
- package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +25 -13
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +299 -0
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue.d.ts +7 -0
- package/dist/runtime/components/Edit/Features/Artboard/index.vue +10 -217
- package/dist/runtime/components/Edit/Features/Assistant/index.vue +5 -3
- package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +33 -57
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +154 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +27 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +222 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue.d.ts +11 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +96 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +177 -46
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +51 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +17 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +48 -117
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +5 -2
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +35 -20
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +5 -3
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue +29 -0
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +13 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +22 -16
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +1 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +15 -6
- package/dist/runtime/components/Edit/Features/Comments/index.vue +21 -9
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +16 -21
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +26 -35
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +240 -0
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +14 -0
- package/dist/runtime/components/Edit/Features/Debug/index.vue +7 -162
- package/dist/runtime/components/Edit/Features/Delete/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +13 -190
- package/dist/runtime/components/Edit/Features/Diff/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +18 -10
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +8 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +111 -121
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue.d.ts +3 -132
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +2 -1
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +87 -61
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue +6 -8
- package/dist/runtime/components/Edit/Features/Edit/index.vue +16 -22
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +3 -3
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +10 -9
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +69 -4
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +13 -9
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +45 -87
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +45 -43
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue +3 -20
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +33 -1
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +11 -9
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +8 -6
- package/dist/runtime/components/Edit/Features/History/index.vue +39 -13
- package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +139 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue +261 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/vertex.glsl +117 -0
- package/dist/runtime/components/Edit/Features/Hover/index.vue +25 -0
- package/dist/runtime/components/Edit/Features/Hover/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +6 -2
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +3 -2
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +5 -7
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +19 -27
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +32 -28
- package/dist/runtime/components/Edit/Features/Library/index.vue +40 -32
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +11 -11
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +15 -12
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/fragment.glsl +1 -1
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +44 -32
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/vertex.glsl +1 -1
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +10 -18
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +3 -2
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +2 -11
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +14 -3
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -1
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +37 -19
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +8 -2
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +88 -42
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +5 -5
- package/dist/runtime/components/Edit/Features/Options/index.vue +35 -11
- package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue +35 -0
- package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +7 -25
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +3 -3
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue +5 -1
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +41 -14
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +47 -0
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +19 -0
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +83 -0
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +9 -0
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +439 -123
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +3 -14
- package/dist/runtime/components/Edit/Features/Publish/index.vue +57 -24
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +2 -13
- package/dist/runtime/components/Edit/Features/Revert/index.vue +3 -3
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +15 -15
- package/dist/runtime/components/Edit/Features/Search/index.vue +7 -3
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +85 -0
- package/dist/runtime/components/Edit/Features/{CommandPalette/Palette/Group → Selection/AddButtons/Overlay}/index.vue.d.ts +8 -13
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +106 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +440 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +32 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +102 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +387 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +15 -10
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +105 -25
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +5 -3
- package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +12 -3
- package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Selection/index.vue +135 -25
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +12 -17
- package/dist/runtime/components/Edit/Features/Settings/index.vue +11 -25
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +13 -6
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +5 -1
- package/dist/runtime/components/Edit/Features/Theme/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +3 -2
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +3 -0
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +198 -0
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue.d.ts +13 -0
- package/dist/runtime/components/Edit/Features/Transform/index.vue +156 -70
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +17 -11
- package/dist/runtime/components/Edit/Features/Translations/index.vue +20 -23
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +5 -5
- package/dist/runtime/components/Edit/Features/index.vue +17 -7
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue +198 -0
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +15 -0
- package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +2 -4
- package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +2 -4
- package/dist/runtime/components/Edit/Form/Radio/index.vue +33 -0
- package/dist/runtime/components/Edit/Form/Radio/index.vue.d.ts +20 -0
- package/dist/runtime/components/Edit/Form/RadioTabs/index.vue +37 -0
- package/dist/runtime/components/Edit/Form/RadioTabs/index.vue.d.ts +22 -0
- package/dist/runtime/components/Edit/Form/Select/index.vue +29 -0
- package/dist/runtime/components/Edit/Form/Select/index.vue.d.ts +20 -0
- package/dist/runtime/components/Edit/Form/Text/index.vue +34 -0
- package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +20 -0
- package/dist/runtime/components/Edit/Form/Textarea/index.vue +13 -6
- package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +4 -0
- package/dist/runtime/components/Edit/Form/Toggle/index.vue +4 -3
- package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +12 -2
- package/dist/runtime/components/Edit/FormOverlay/index.vue +1 -1
- package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +3 -2
- package/dist/runtime/components/Edit/Indicators/index.vue +123 -0
- package/dist/runtime/components/Edit/Indicators/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/InfoBox/index.vue +6 -2
- package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +12 -2
- package/dist/runtime/components/Edit/ItemIcon/index.vue +2 -1
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue +66 -0
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue.d.ts +7 -0
- package/dist/runtime/components/Edit/Konami/Game/blokkli.png +0 -0
- package/dist/runtime/components/Edit/Konami/Game/charmap.d.ts +2 -0
- package/dist/runtime/components/Edit/Konami/Game/charmap.js +168 -0
- package/dist/runtime/components/Edit/Konami/Game/index.vue +752 -0
- package/dist/runtime/components/Edit/Konami/Game/index.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Konami/Game/textRendering.d.ts +8 -0
- package/dist/runtime/components/Edit/Konami/Game/textRendering.js +138 -0
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.d.ts +9 -0
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.js +130 -0
- package/dist/runtime/components/Edit/Konami/index.vue +44 -0
- package/dist/runtime/components/Edit/Konami/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Loading/index.vue +6 -2
- package/dist/runtime/components/Edit/Loading/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Messages/index.vue +8 -3
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue +17 -0
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue.d.ts +11 -0
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue +37 -0
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue.d.ts +11 -0
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue +43 -0
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue.d.ts +11 -0
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue +57 -0
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue.d.ts +16 -0
- package/dist/runtime/components/Edit/PreviewProvider.vue +3 -4
- package/dist/runtime/components/Edit/RelativeTime/index.vue +3 -2
- package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/ScheduleDate/index.vue +131 -0
- package/dist/runtime/components/Edit/ScheduleDate/index.vue.d.ts +23 -0
- package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +2 -7
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +11 -3
- package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/SystemRequirements/index.vue +3 -3
- package/dist/runtime/components/Edit/Toolbar/index.vue +3 -2
- package/dist/runtime/components/Edit/Transition/Height.vue +95 -0
- package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +36 -0
- package/dist/runtime/components/Edit/Transition/index.vue +41 -0
- package/dist/runtime/components/Edit/Transition/index.vue.d.ts +19 -0
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +2 -7
- package/dist/runtime/components/Edit/index.d.ts +28 -15
- package/dist/runtime/components/Edit/index.js +54 -28
- package/dist/runtime/composables/defineBlokkli.js +16 -3
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +4 -7
- package/dist/runtime/composables/defineBlokkliFragment.js +8 -1
- package/dist/runtime/composables/defineBlokkliProvider.d.ts +11 -0
- package/dist/runtime/composables/defineBlokkliProvider.js +46 -0
- package/dist/runtime/composables/useBlokkliHelper.d.ts +19 -0
- package/dist/runtime/composables/useBlokkliHelper.js +95 -0
- package/dist/runtime/constants/index.d.ts +3 -0
- package/dist/runtime/constants/index.js +3 -0
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/addElementClasses.d.ts +2 -0
- package/dist/runtime/helpers/addElementClasses.js +24 -0
- package/dist/runtime/helpers/animationProvider.d.ts +38 -2
- package/dist/runtime/helpers/animationProvider.js +188 -47
- package/dist/runtime/helpers/bundles/index.d.ts +1 -0
- package/dist/runtime/helpers/bundles/index.js +4 -0
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +8 -0
- package/dist/runtime/helpers/composables/defineRenderer.js +8 -0
- package/dist/runtime/helpers/composables/useBlockRegistration.d.ts +5 -0
- package/dist/runtime/helpers/composables/useBlockRegistration.js +23 -0
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +1 -1
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +3 -2
- package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +4 -0
- package/dist/runtime/helpers/composables/useStateBasedCache.js +13 -0
- package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +23 -0
- package/dist/runtime/helpers/composables/useStickyToolbar.js +233 -0
- package/dist/runtime/helpers/definitionProvider.d.ts +3 -2
- package/dist/runtime/helpers/definitionProvider.js +17 -0
- package/dist/runtime/helpers/dom/index.d.ts +60 -0
- package/dist/runtime/helpers/dom/index.js +48 -0
- package/dist/runtime/helpers/domProvider.d.ts +58 -17
- package/dist/runtime/helpers/domProvider.js +320 -245
- package/dist/runtime/helpers/dropTargets/index.d.ts +6 -0
- package/dist/runtime/helpers/dropTargets/index.js +49 -0
- package/dist/runtime/helpers/eventBus.d.ts +1 -1
- package/dist/runtime/helpers/eventBus.js +2 -2
- package/dist/runtime/helpers/index.d.ts +10 -14
- package/dist/runtime/helpers/index.js +58 -121
- package/dist/runtime/helpers/indicatorsProvider.d.ts +10 -0
- package/dist/runtime/helpers/indicatorsProvider.js +23 -0
- package/dist/runtime/helpers/keyboardProvider.d.ts +2 -0
- package/dist/runtime/helpers/keyboardProvider.js +17 -1
- package/dist/runtime/helpers/pluginProvider.d.ts +10 -0
- package/dist/runtime/helpers/pluginProvider.js +33 -0
- package/dist/runtime/helpers/providers/blocks.d.ts +10 -0
- package/dist/runtime/helpers/providers/blocks.js +91 -0
- package/dist/runtime/helpers/providers/directive.d.ts +25 -0
- package/dist/runtime/helpers/providers/directive.js +208 -0
- package/dist/runtime/helpers/providers/element.d.ts +6 -0
- package/dist/runtime/helpers/providers/element.js +35 -0
- package/dist/runtime/helpers/providers/fields.d.ts +8 -0
- package/dist/runtime/helpers/providers/fields.js +47 -0
- package/dist/runtime/helpers/renderCycle.d.ts +1 -0
- package/dist/runtime/helpers/renderCycle.js +10 -0
- package/dist/runtime/helpers/runtimeHelpers/index.js +15 -12
- package/dist/runtime/helpers/selectionProvider.d.ts +27 -11
- package/dist/runtime/helpers/selectionProvider.js +79 -74
- package/dist/runtime/helpers/stateProvider.d.ts +12 -2
- package/dist/runtime/helpers/stateProvider.js +164 -20
- package/dist/runtime/helpers/storageProvider.d.ts +5 -3
- package/dist/runtime/helpers/storageProvider.js +61 -4
- package/dist/runtime/helpers/symbols.d.ts +2 -0
- package/dist/runtime/helpers/symbols.js +2 -0
- package/dist/runtime/helpers/textProvider.js +6 -0
- package/dist/runtime/helpers/themeProvider.d.ts +4 -1
- package/dist/runtime/helpers/themeProvider.js +28 -15
- package/dist/runtime/helpers/transform.js +1 -3
- package/dist/runtime/helpers/typesProvider.js +10 -26
- package/dist/runtime/helpers/uiProvider.d.ts +18 -3
- package/dist/runtime/helpers/uiProvider.js +114 -61
- package/dist/runtime/helpers/useTransitionedValue.d.ts +18 -0
- package/dist/runtime/helpers/useTransitionedValue.js +57 -0
- package/dist/runtime/helpers/webgl/index.d.ts +11 -2
- package/dist/runtime/helpers/webgl/index.js +162 -7
- package/dist/runtime/icons/anchor.svg +1 -0
- package/dist/runtime/icons/arrow-left.svg +1 -1
- package/dist/runtime/icons/arrow-right.svg +1 -1
- package/dist/runtime/icons/arrow-top-right.svg +1 -0
- package/dist/runtime/icons/calendar-clock.svg +1 -0
- package/dist/runtime/icons/calendar.svg +1 -0
- package/dist/runtime/icons/chart.svg +1 -0
- package/dist/runtime/icons/clock.svg +1 -0
- package/dist/runtime/icons/comment_add.svg +1 -5
- package/dist/runtime/icons/copy.svg +1 -0
- package/dist/runtime/icons/cursor-move.svg +1 -1
- package/dist/runtime/icons/delete.svg +1 -8
- package/dist/runtime/icons/diff.svg +1 -1
- package/dist/runtime/icons/duplicate.svg +1 -12
- package/dist/runtime/icons/edit.svg +1 -8
- package/dist/runtime/icons/eye-off.svg +1 -0
- package/dist/runtime/icons/eye.svg +1 -1
- package/dist/runtime/icons/info.svg +1 -1
- package/dist/runtime/icons/link.svg +1 -0
- package/dist/runtime/icons/reusable.svg +1 -5
- package/dist/runtime/icons/speedometer.svg +1 -0
- package/dist/runtime/plugins/blokkliDirectives.js +96 -0
- package/dist/runtime/types/blokkOptions.d.ts +8 -0
- package/dist/runtime/types/index.d.ts +278 -42
- package/dist/runtime/types/theme.d.ts +2 -1
- package/dist/shared/{editor.gz_ac6uT.d.mts → editor.CKsrTpc1.d.mts} +1 -1
- package/package.json +55 -38
- package/dist/modules/drupal/adapter/index.d.mts +0 -6
- package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -364
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +0 -51
- package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +0 -22
- package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +0 -41
- package/dist/runtime/plugins/blokkliEditable.js +0 -31
- /package/dist/runtime/components/Edit/{DragInteractions → Features/Analyze}/index.vue.d.ts +0 -0
- /package/dist/runtime/components/Edit/Features/{FieldAreas/Overlay/index.vue.d.ts → Anchors/Renderer.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/{FieldAreas → Anchors}/index.vue.d.ts +0 -0
- /package/dist/runtime/plugins/{blokkliEditable.d.ts → blokkliDirectives.d.ts} +0 -0
|
@@ -3,9 +3,9 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
3
3
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
4
4
|
timestamp: number;
|
|
5
5
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
6
|
-
default?: (
|
|
6
|
+
default?: (props: {
|
|
7
7
|
formatted: string;
|
|
8
|
-
}) => any
|
|
8
|
+
}) => any;
|
|
9
9
|
}>;
|
|
10
10
|
export default _default;
|
|
11
11
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -3,7 +3,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
3
3
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
4
4
|
id: string;
|
|
5
5
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
6
|
-
default?: (
|
|
6
|
+
default?: (props: {}) => any;
|
|
7
7
|
}>;
|
|
8
8
|
export default _default;
|
|
9
9
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -5,7 +5,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
5
5
|
width?: number;
|
|
6
6
|
maxHeight?: number;
|
|
7
7
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
8
|
-
default?: (
|
|
8
|
+
default?: (props: {}) => any;
|
|
9
9
|
}>;
|
|
10
10
|
export default _default;
|
|
11
11
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="bk-schedule-date">
|
|
3
|
+
<div class="bk-schedule-date-picker">
|
|
4
|
+
<FormDatepicker
|
|
5
|
+
v-model="selectedDate"
|
|
6
|
+
:min="minDate"
|
|
7
|
+
:disabled="disabled"
|
|
8
|
+
:error="!!error"
|
|
9
|
+
/>
|
|
10
|
+
</div>
|
|
11
|
+
<div v-if="selectedDate" class="bk-schedule-date-time">
|
|
12
|
+
<div v-if="formattedDateTime" class="bk-schedule-date-formatted">
|
|
13
|
+
{{ formattedDateTime }}
|
|
14
|
+
</div>
|
|
15
|
+
<div class="bk-schedule-date-time-input">
|
|
16
|
+
<input
|
|
17
|
+
id="schedule-time"
|
|
18
|
+
v-model="selectedTime"
|
|
19
|
+
type="time"
|
|
20
|
+
class="bk-form-input"
|
|
21
|
+
:disabled="disabled"
|
|
22
|
+
:class="{
|
|
23
|
+
'bk-is-invalid': error
|
|
24
|
+
}"
|
|
25
|
+
/>
|
|
26
|
+
<button
|
|
27
|
+
type="button"
|
|
28
|
+
class="bk-button bk-schedule-date-time-button bk-is-icon-only"
|
|
29
|
+
:disabled="disabled"
|
|
30
|
+
@click="decrementHour"
|
|
31
|
+
>
|
|
32
|
+
<Icon name="minus" />
|
|
33
|
+
</button>
|
|
34
|
+
<button
|
|
35
|
+
type="button"
|
|
36
|
+
class="bk-button bk-schedule-date-time-button bk-is-icon-only"
|
|
37
|
+
:disabled="disabled"
|
|
38
|
+
@click="incrementHour"
|
|
39
|
+
>
|
|
40
|
+
<Icon name="plus" />
|
|
41
|
+
</button>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<slot />
|
|
45
|
+
<div v-if="error" class="bk-schedule-date-error">
|
|
46
|
+
{{ error }}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</template>
|
|
51
|
+
|
|
52
|
+
<script setup>
|
|
53
|
+
import { ref, computed, watch, useBlokkli } from "#imports";
|
|
54
|
+
import { FormDatepicker, Icon } from "#blokkli/components";
|
|
55
|
+
const { ui } = useBlokkli();
|
|
56
|
+
defineProps({
|
|
57
|
+
disabled: { type: Boolean, required: false },
|
|
58
|
+
error: { type: String, required: false }
|
|
59
|
+
});
|
|
60
|
+
const modelValue = defineModel({ type: String });
|
|
61
|
+
const selectedDate = ref("");
|
|
62
|
+
const selectedTime = ref("12:00");
|
|
63
|
+
const formattedDateTime = computed(() => {
|
|
64
|
+
if (!selectedDate.value || !selectedTime.value) {
|
|
65
|
+
return "";
|
|
66
|
+
}
|
|
67
|
+
const dateTimeString = `${selectedDate.value}T${selectedTime.value}:00`;
|
|
68
|
+
const date = new Date(dateTimeString);
|
|
69
|
+
return ui.formatDate(date, {
|
|
70
|
+
weekday: "long",
|
|
71
|
+
year: "numeric",
|
|
72
|
+
month: "long",
|
|
73
|
+
day: "numeric",
|
|
74
|
+
hour: "2-digit",
|
|
75
|
+
minute: "2-digit"
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
if (modelValue.value) {
|
|
79
|
+
const date = new Date(modelValue.value);
|
|
80
|
+
selectedDate.value = formatDate(date);
|
|
81
|
+
selectedTime.value = formatTime(date);
|
|
82
|
+
}
|
|
83
|
+
const minDate = computed(() => {
|
|
84
|
+
const today = /* @__PURE__ */ new Date();
|
|
85
|
+
return formatDate(today);
|
|
86
|
+
});
|
|
87
|
+
function formatDate(date) {
|
|
88
|
+
const year = date.getFullYear();
|
|
89
|
+
const month = String(date.getMonth() + 1).padStart(2, "0");
|
|
90
|
+
const day = String(date.getDate()).padStart(2, "0");
|
|
91
|
+
return `${year}-${month}-${day}`;
|
|
92
|
+
}
|
|
93
|
+
function formatTime(date) {
|
|
94
|
+
const hours = String(date.getHours()).padStart(2, "0");
|
|
95
|
+
const minutes = String(date.getMinutes()).padStart(2, "0");
|
|
96
|
+
return `${hours}:${minutes}`;
|
|
97
|
+
}
|
|
98
|
+
watch([selectedDate, selectedTime], () => {
|
|
99
|
+
if (!selectedDate.value) {
|
|
100
|
+
modelValue.value = void 0;
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
const dateTimeString = `${selectedDate.value}T${selectedTime.value}:00`;
|
|
104
|
+
const date = new Date(dateTimeString);
|
|
105
|
+
modelValue.value = date.toISOString();
|
|
106
|
+
});
|
|
107
|
+
watch(modelValue, (newValue) => {
|
|
108
|
+
if (!newValue) {
|
|
109
|
+
selectedDate.value = "";
|
|
110
|
+
selectedTime.value = "12:00";
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
const date = new Date(newValue);
|
|
114
|
+
const newDate = formatDate(date);
|
|
115
|
+
const newTime = formatTime(date);
|
|
116
|
+
if (newDate !== selectedDate.value || newTime !== selectedTime.value) {
|
|
117
|
+
selectedDate.value = newDate;
|
|
118
|
+
selectedTime.value = newTime;
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
function incrementHour() {
|
|
122
|
+
const [hours = 0, minutes = 0] = selectedTime.value.split(":").map(Number);
|
|
123
|
+
const newHours = minutes > 0 ? (hours + 1) % 24 : (hours + 1) % 24;
|
|
124
|
+
selectedTime.value = `${String(newHours).padStart(2, "0")}:00`;
|
|
125
|
+
}
|
|
126
|
+
function decrementHour() {
|
|
127
|
+
const [hours = 0, minutes = 0] = selectedTime.value.split(":").map(Number);
|
|
128
|
+
const newHours = minutes > 0 ? hours : hours === 0 ? 23 : hours - 1;
|
|
129
|
+
selectedTime.value = `${String(newHours).padStart(2, "0")}:00`;
|
|
130
|
+
}
|
|
131
|
+
</script>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
error?: string;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
6
|
+
modelValue?: string;
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_13: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_13) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -4,15 +4,10 @@ type __VLS_Props = {
|
|
|
4
4
|
*/
|
|
5
5
|
dragging?: boolean;
|
|
6
6
|
};
|
|
7
|
-
declare function onWheel(e: WheelEvent): void;
|
|
8
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
9
7
|
declare var __VLS_1: {};
|
|
10
|
-
type __VLS_Slots =
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
11
9
|
default?: (props: typeof __VLS_1) => any;
|
|
12
|
-
}
|
|
13
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
14
|
-
onWheel: typeof onWheel;
|
|
15
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
16
11
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
12
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
13
|
export default _default;
|
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
<kbd :title="label" class="bk-shortcut">
|
|
3
3
|
<template v-if="meta"> <kbd>CTRL</kbd> + </template>
|
|
4
4
|
<template v-if="shift"> <kbd>SHIFT</kbd> + </template>
|
|
5
|
-
<kbd
|
|
5
|
+
<kbd
|
|
6
|
+
:class="{
|
|
7
|
+
'bk-is-single': keyLabel.length === 1
|
|
8
|
+
}"
|
|
9
|
+
>{{ keyLabel }}</kbd
|
|
10
|
+
>
|
|
6
11
|
</kbd>
|
|
7
12
|
</template>
|
|
8
13
|
|
|
@@ -19,7 +24,7 @@ const props = defineProps({
|
|
|
19
24
|
label: { type: String, required: true }
|
|
20
25
|
});
|
|
21
26
|
const emit = defineEmits(["pressed"]);
|
|
22
|
-
const { state } = useBlokkli();
|
|
27
|
+
const { state, ui } = useBlokkli();
|
|
23
28
|
const key = computed(
|
|
24
29
|
() => [props.meta, props.shift, props.keyCode.toLowerCase()].join("-")
|
|
25
30
|
);
|
|
@@ -49,12 +54,15 @@ if (!props.viewOnly) {
|
|
|
49
54
|
});
|
|
50
55
|
}
|
|
51
56
|
onBlokkliEvent("keyPressed", (e) => {
|
|
57
|
+
if (ui.hasDialogOpen.value) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
52
60
|
const checkKey = [e.meta, e.shift, e.code.toLowerCase()].join("-");
|
|
53
61
|
if (key.value !== checkKey) {
|
|
54
62
|
return;
|
|
55
63
|
}
|
|
56
64
|
e.originalEvent.preventDefault();
|
|
57
|
-
if (state.isLoading.value) {
|
|
65
|
+
if (state.isLoading.value || ui.hasTransformOverlayOpen.value) {
|
|
58
66
|
return;
|
|
59
67
|
}
|
|
60
68
|
emit("pressed");
|
|
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
5
5
|
getDragItems?: (activeItem?: DraggableItem) => DraggableItem[] | null;
|
|
6
6
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
7
|
-
default?: (
|
|
7
|
+
default?: (props: {}) => any;
|
|
8
8
|
}>;
|
|
9
9
|
export default _default;
|
|
10
10
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<Teleport v-if="showDialog" to="body">
|
|
3
|
-
<
|
|
3
|
+
<BlokkliTransition name="slide-up">
|
|
4
4
|
<DialogModal
|
|
5
5
|
:title="$t('systemRequirementsDialogTitle', 'System Requirements')"
|
|
6
6
|
:width="700"
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
}}
|
|
47
47
|
</p>
|
|
48
48
|
</DialogModal>
|
|
49
|
-
</
|
|
49
|
+
</BlokkliTransition>
|
|
50
50
|
</Teleport>
|
|
51
51
|
</template>
|
|
52
52
|
|
|
53
53
|
<script setup>
|
|
54
54
|
import { useBlokkli, computed } from "#imports";
|
|
55
|
-
import { DialogModal, Icon } from "#blokkli/components";
|
|
55
|
+
import { DialogModal, Icon, BlokkliTransition } from "#blokkli/components";
|
|
56
56
|
const { $t, storage, animation } = useBlokkli();
|
|
57
57
|
const hasDismissed = storage.use("system_requirements_dismissed", false);
|
|
58
58
|
const requirements = computed(() => {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:class="{ 'bk-is-hidden': !sidebarVisible }"
|
|
14
14
|
/>
|
|
15
15
|
|
|
16
|
-
<
|
|
16
|
+
<BlokkliTransition name="toolbar">
|
|
17
17
|
<div v-show="showToolbar" class="bk bk-top">
|
|
18
18
|
<div
|
|
19
19
|
class="bk-toolbar bk-control"
|
|
@@ -48,13 +48,14 @@
|
|
|
48
48
|
/>
|
|
49
49
|
</div>
|
|
50
50
|
</div>
|
|
51
|
-
</
|
|
51
|
+
</BlokkliTransition>
|
|
52
52
|
</Teleport>
|
|
53
53
|
</template>
|
|
54
54
|
|
|
55
55
|
<script setup>
|
|
56
56
|
import onBlokkliEvent from "#blokkli/helpers/composables/onBlokkliEvent";
|
|
57
57
|
import { onMounted, useBlokkli, onBeforeUnmount, computed } from "#imports";
|
|
58
|
+
import { BlokkliTransition } from "#blokkli/components";
|
|
58
59
|
const { ui, selection, storage } = useBlokkli();
|
|
59
60
|
const showToolbar = computed(
|
|
60
61
|
() => !ui.isMobile.value || !selection.isDragging.value && !selection.isMultiSelecting.value
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Transition :css="false" @enter="enterTransition" @leave="leaveTransition">
|
|
3
|
+
<slot />
|
|
4
|
+
</Transition>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup>
|
|
8
|
+
const props = defineProps({
|
|
9
|
+
duration: { type: Number, required: false, default: 200 },
|
|
10
|
+
opacity: { type: Boolean, required: false, default: false },
|
|
11
|
+
easingEnter: { type: String, required: false, default: "ease-in-out" },
|
|
12
|
+
easingLeave: { type: String, required: false, default: "ease-in-out" }
|
|
13
|
+
});
|
|
14
|
+
const getElementStyle = (element) => {
|
|
15
|
+
return {
|
|
16
|
+
height: element.style.height,
|
|
17
|
+
width: element.style.width,
|
|
18
|
+
position: element.style.position,
|
|
19
|
+
visibility: element.style.visibility,
|
|
20
|
+
overflow: element.style.overflow,
|
|
21
|
+
paddingTop: element.style.paddingTop,
|
|
22
|
+
paddingBottom: element.style.paddingBottom,
|
|
23
|
+
borderTopWidth: element.style.borderTopWidth,
|
|
24
|
+
borderBottomWidth: element.style.borderBottomWidth,
|
|
25
|
+
marginTop: element.style.marginTop,
|
|
26
|
+
marginBottom: element.style.marginBottom
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
const prepareElement = (element, initialStyle) => {
|
|
30
|
+
const { width } = getComputedStyle(element);
|
|
31
|
+
element.style.width = width;
|
|
32
|
+
element.style.position = "absolute";
|
|
33
|
+
element.style.visibility = "hidden";
|
|
34
|
+
element.style.height = "";
|
|
35
|
+
const { height } = getComputedStyle(element);
|
|
36
|
+
element.style.width = initialStyle.width;
|
|
37
|
+
element.style.position = initialStyle.position;
|
|
38
|
+
element.style.visibility = initialStyle.visibility;
|
|
39
|
+
element.style.height = "0px";
|
|
40
|
+
element.style.overflow = "hidden";
|
|
41
|
+
return initialStyle.height && initialStyle.height !== "0px" ? initialStyle.height : height;
|
|
42
|
+
};
|
|
43
|
+
const animateTransition = (element, initialStyle, done, keyframes, options) => {
|
|
44
|
+
const animation = element.animate(keyframes, options);
|
|
45
|
+
element.style.height = initialStyle.height;
|
|
46
|
+
animation.onfinish = () => {
|
|
47
|
+
element.style.overflow = initialStyle.overflow;
|
|
48
|
+
done();
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
const getEnterKeyframes = (height, initialStyle) => [
|
|
52
|
+
{
|
|
53
|
+
height: "0px",
|
|
54
|
+
opacity: props.opacity ? 0 : 1,
|
|
55
|
+
paddingTop: "0px",
|
|
56
|
+
paddingBottom: "0px",
|
|
57
|
+
borderTopWidth: "0px",
|
|
58
|
+
borderBottomWidth: "0px",
|
|
59
|
+
marginTop: "0px",
|
|
60
|
+
marginBottom: "0px"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
height,
|
|
64
|
+
opacity: props.opacity ? 1 : 1,
|
|
65
|
+
paddingTop: initialStyle.paddingTop,
|
|
66
|
+
paddingBottom: initialStyle.paddingBottom,
|
|
67
|
+
borderTopWidth: initialStyle.borderTopWidth,
|
|
68
|
+
borderBottomWidth: initialStyle.borderBottomWidth,
|
|
69
|
+
marginTop: initialStyle.marginTop,
|
|
70
|
+
marginBottom: initialStyle.marginBottom
|
|
71
|
+
}
|
|
72
|
+
];
|
|
73
|
+
const enterTransition = (element, done) => {
|
|
74
|
+
if (!(element instanceof HTMLElement)) {
|
|
75
|
+
return done();
|
|
76
|
+
}
|
|
77
|
+
const initialStyle = getElementStyle(element);
|
|
78
|
+
const height = prepareElement(element, initialStyle);
|
|
79
|
+
const keyframes = getEnterKeyframes(height, initialStyle);
|
|
80
|
+
const options = { duration: props.duration, easing: props.easingEnter };
|
|
81
|
+
animateTransition(element, initialStyle, done, keyframes, options);
|
|
82
|
+
};
|
|
83
|
+
const leaveTransition = (element, done) => {
|
|
84
|
+
if (!(element instanceof HTMLElement)) {
|
|
85
|
+
return done();
|
|
86
|
+
}
|
|
87
|
+
const initialStyle = getElementStyle(element);
|
|
88
|
+
const { height } = getComputedStyle(element);
|
|
89
|
+
element.style.height = height;
|
|
90
|
+
element.style.overflow = "hidden";
|
|
91
|
+
const keyframes = getEnterKeyframes(height, initialStyle).reverse();
|
|
92
|
+
const options = { duration: props.duration, easing: props.easingLeave };
|
|
93
|
+
animateTransition(element, initialStyle, done, keyframes, options);
|
|
94
|
+
};
|
|
95
|
+
</script>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/**
|
|
3
|
+
* The duration of the transition.
|
|
4
|
+
*/
|
|
5
|
+
duration?: number;
|
|
6
|
+
/**
|
|
7
|
+
* Whether to also transition the opacity.
|
|
8
|
+
* If set, the element is transitioned from 0 to 1 and vice versa.
|
|
9
|
+
*/
|
|
10
|
+
opacity?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* The easing function when entering.
|
|
13
|
+
*/
|
|
14
|
+
easingEnter?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The easing function when leaving.
|
|
17
|
+
*/
|
|
18
|
+
easingLeave?: string;
|
|
19
|
+
};
|
|
20
|
+
declare var __VLS_10: {};
|
|
21
|
+
type __VLS_Slots = {} & {
|
|
22
|
+
default?: (props: typeof __VLS_10) => any;
|
|
23
|
+
};
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
+
opacity: boolean;
|
|
26
|
+
duration: number;
|
|
27
|
+
easingEnter: string;
|
|
28
|
+
easingLeave: string;
|
|
29
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Transition :name :duration appear>
|
|
3
|
+
<slot />
|
|
4
|
+
</Transition>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup>
|
|
8
|
+
import { computed, useBlokkli } from "#imports";
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
name: { type: String, required: true },
|
|
11
|
+
enabled: { type: Boolean, required: false, default: true }
|
|
12
|
+
});
|
|
13
|
+
const { ui } = useBlokkli();
|
|
14
|
+
const DURATION = {
|
|
15
|
+
"transform-overlay": 300,
|
|
16
|
+
fade: 200,
|
|
17
|
+
menu: 200,
|
|
18
|
+
toolbar: 200,
|
|
19
|
+
"context-menu": 200,
|
|
20
|
+
"drag-item": 200,
|
|
21
|
+
"slide-in": 300,
|
|
22
|
+
"slide-up": 300,
|
|
23
|
+
search: 300,
|
|
24
|
+
editable: 250,
|
|
25
|
+
"touch-bar": 200,
|
|
26
|
+
"command-palette": 100,
|
|
27
|
+
"caret-tooltip": 150
|
|
28
|
+
};
|
|
29
|
+
const name = computed(() => {
|
|
30
|
+
if (!ui.useAnimations.value || !props.enabled) {
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
return "bk-" + props.name;
|
|
34
|
+
});
|
|
35
|
+
const duration = computed(() => {
|
|
36
|
+
if (!ui.useAnimations.value || !props.enabled) {
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
return DURATION[props.name];
|
|
40
|
+
});
|
|
41
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type TransitionName = 'transform-overlay' | 'fade' | 'touch-bar' | 'drag-item' | 'editable' | 'menu' | 'loading' | 'toolbar' | 'slide-in' | 'slide-up' | 'search' | 'context-menu' | 'command-palette' | 'caret-tooltip';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
name: TransitionName;
|
|
4
|
+
enabled?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_5: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_5) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
id: string;
|
|
3
3
|
};
|
|
4
|
-
declare const el: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
5
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
4
|
declare var __VLS_1: {};
|
|
7
|
-
type __VLS_Slots =
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
8
6
|
default?: (props: typeof __VLS_1) => any;
|
|
9
|
-
}
|
|
10
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
11
|
-
el: typeof el;
|
|
12
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
};
|
|
13
8
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
9
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
15
10
|
export default _default;
|
|
@@ -1,21 +1,34 @@
|
|
|
1
|
+
import AddListItem from './AddListItem/index.vue.js';
|
|
2
|
+
import AddListItemIcon from './AddListItemIcon/index.vue.js';
|
|
3
|
+
import ArtboardTooltip from './ArtboardTooltip/index.vue.js';
|
|
4
|
+
import BlokkliTransition from './Transition/index.vue.js';
|
|
5
|
+
import TransitionHeight from './Transition/Height.vue.js';
|
|
6
|
+
import ConfigForm from './PluginConfigForm/index.vue.js';
|
|
7
|
+
import DialogModal from './Dialog/index.vue.js';
|
|
8
|
+
import DiffViewerState from './DiffViewer/State.vue.js';
|
|
9
|
+
import FormDatepicker from './Form/Datepicker/index.vue.js';
|
|
10
|
+
import FormGroup from './Form/Group/index.vue.js';
|
|
11
|
+
import FormItem from './Form/Item/index.vue.js';
|
|
12
|
+
import FormOverlay from './FormOverlay/index.vue.js';
|
|
13
|
+
import FormRadio from './Form/Radio/index.vue.js';
|
|
14
|
+
import FormRadioTabs from './Form/RadioTabs/index.vue.js';
|
|
15
|
+
import FormSelect from './Form/Select/index.vue.js';
|
|
16
|
+
import FormText from './Form/Text/index.vue.js';
|
|
17
|
+
import FormTextarea from './Form/Textarea/index.vue.js';
|
|
18
|
+
import FormToggle from './Form/Toggle/index.vue.js';
|
|
19
|
+
import Highlight from './Highlight/index.vue.js';
|
|
20
|
+
import Icon from './Icon/index.vue.js';
|
|
21
|
+
import InfoBox from './InfoBox/index.vue.js';
|
|
1
22
|
import ItemIcon from './ItemIcon/index.vue.js';
|
|
2
|
-
import
|
|
23
|
+
import Loading from './Loading/index.vue.js';
|
|
24
|
+
import Pagination from './Pagination/index.vue.js';
|
|
3
25
|
import RelativeTime from './RelativeTime/index.vue.js';
|
|
4
26
|
import Resizable from './Resizable/index.vue.js';
|
|
5
|
-
import Icon from './Icon/index.vue.js';
|
|
6
|
-
import DialogModal from './Dialog/index.vue.js';
|
|
7
27
|
import ScaleToFit from './ScaleToFit/index.vue.js';
|
|
28
|
+
import ScrollBoundary from './ScrollBoundary/index.vue.js';
|
|
29
|
+
import ShortcutIndicator from './ShortcutIndicator/index.vue.js';
|
|
8
30
|
import Sortli from './Sortli/index.vue.js';
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import Loading from './Loading/index.vue.js';
|
|
12
|
-
import Highlight from './Highlight/index.vue.js';
|
|
31
|
+
import Banner from './Banner/index.vue.js';
|
|
32
|
+
import ScheduleDate from './ScheduleDate/index.vue.js';
|
|
13
33
|
import ViewportBlockingRect from './ViewportBlockingRect/index.vue.js';
|
|
14
|
-
|
|
15
|
-
import InfoBox from './InfoBox/index.vue.js';
|
|
16
|
-
import Pagination from './Pagination/index.vue.js';
|
|
17
|
-
import FormToggle from './Form/Toggle/index.vue.js';
|
|
18
|
-
import FormTextarea from './Form/Textarea/index.vue.js';
|
|
19
|
-
import FormItem from './Form/Item/index.vue.js';
|
|
20
|
-
import FormGroup from './Form/Group/index.vue.js';
|
|
21
|
-
export { ItemIcon, ShortcutIndicator, RelativeTime, Icon, Resizable, DialogModal, ScaleToFit, Sortli, FormOverlay, AddListItem, Loading, Highlight, ViewportBlockingRect, ScrollBoundary, InfoBox, Pagination, FormToggle, FormTextarea, FormItem, FormGroup, };
|
|
34
|
+
export { AddListItem, AddListItemIcon, ArtboardTooltip, BlokkliTransition, ConfigForm, DialogModal, DiffViewerState, FormDatepicker, FormGroup, FormItem, FormOverlay, FormRadio, FormRadioTabs, FormSelect, FormText, FormTextarea, FormToggle, Highlight, Icon, InfoBox, ItemIcon, Loading, Pagination, RelativeTime, Resizable, ScaleToFit, ScrollBoundary, ShortcutIndicator, Sortli, ViewportBlockingRect, Banner, ScheduleDate, TransitionHeight, };
|
|
@@ -1,42 +1,68 @@
|
|
|
1
|
+
import AddListItem from "./AddListItem/index.vue";
|
|
2
|
+
import AddListItemIcon from "./AddListItemIcon/index.vue";
|
|
3
|
+
import ArtboardTooltip from "./ArtboardTooltip/index.vue";
|
|
4
|
+
import BlokkliTransition from "./Transition/index.vue";
|
|
5
|
+
import TransitionHeight from "./Transition/Height.vue";
|
|
6
|
+
import ConfigForm from "./PluginConfigForm/index.vue";
|
|
7
|
+
import DialogModal from "./Dialog/index.vue";
|
|
8
|
+
import DiffViewerState from "./DiffViewer/State.vue";
|
|
9
|
+
import FormDatepicker from "./Form/Datepicker/index.vue";
|
|
10
|
+
import FormGroup from "./Form/Group/index.vue";
|
|
11
|
+
import FormItem from "./Form/Item/index.vue";
|
|
12
|
+
import FormOverlay from "./FormOverlay/index.vue";
|
|
13
|
+
import FormRadio from "./Form/Radio/index.vue";
|
|
14
|
+
import FormRadioTabs from "./Form/RadioTabs/index.vue";
|
|
15
|
+
import FormSelect from "./Form/Select/index.vue";
|
|
16
|
+
import FormText from "./Form/Text/index.vue";
|
|
17
|
+
import FormTextarea from "./Form/Textarea/index.vue";
|
|
18
|
+
import FormToggle from "./Form/Toggle/index.vue";
|
|
19
|
+
import Highlight from "./Highlight/index.vue";
|
|
20
|
+
import Icon from "./Icon/index.vue";
|
|
21
|
+
import InfoBox from "./InfoBox/index.vue";
|
|
1
22
|
import ItemIcon from "./ItemIcon/index.vue";
|
|
2
|
-
import
|
|
23
|
+
import Loading from "./Loading/index.vue";
|
|
24
|
+
import Pagination from "./Pagination/index.vue";
|
|
3
25
|
import RelativeTime from "./RelativeTime/index.vue";
|
|
4
26
|
import Resizable from "./Resizable/index.vue";
|
|
5
|
-
import Icon from "./Icon/index.vue";
|
|
6
|
-
import DialogModal from "./Dialog/index.vue";
|
|
7
27
|
import ScaleToFit from "./ScaleToFit/index.vue";
|
|
28
|
+
import ScrollBoundary from "./ScrollBoundary/index.vue";
|
|
29
|
+
import ShortcutIndicator from "./ShortcutIndicator/index.vue";
|
|
8
30
|
import Sortli from "./Sortli/index.vue";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import Loading from "./Loading/index.vue";
|
|
12
|
-
import Highlight from "./Highlight/index.vue";
|
|
31
|
+
import Banner from "./Banner/index.vue";
|
|
32
|
+
import ScheduleDate from "./ScheduleDate/index.vue";
|
|
13
33
|
import ViewportBlockingRect from "./ViewportBlockingRect/index.vue";
|
|
14
|
-
import ScrollBoundary from "./ScrollBoundary/index.vue";
|
|
15
|
-
import InfoBox from "./InfoBox/index.vue";
|
|
16
|
-
import Pagination from "./Pagination/index.vue";
|
|
17
|
-
import FormToggle from "./Form/Toggle/index.vue";
|
|
18
|
-
import FormTextarea from "./Form/Textarea/index.vue";
|
|
19
|
-
import FormItem from "./Form/Item/index.vue";
|
|
20
|
-
import FormGroup from "./Form/Group/index.vue";
|
|
21
34
|
export {
|
|
35
|
+
AddListItem,
|
|
36
|
+
AddListItemIcon,
|
|
37
|
+
ArtboardTooltip,
|
|
38
|
+
BlokkliTransition,
|
|
39
|
+
ConfigForm,
|
|
40
|
+
DialogModal,
|
|
41
|
+
DiffViewerState,
|
|
42
|
+
FormDatepicker,
|
|
43
|
+
FormGroup,
|
|
44
|
+
FormItem,
|
|
45
|
+
FormOverlay,
|
|
46
|
+
FormRadio,
|
|
47
|
+
FormRadioTabs,
|
|
48
|
+
FormSelect,
|
|
49
|
+
FormText,
|
|
50
|
+
FormTextarea,
|
|
51
|
+
FormToggle,
|
|
52
|
+
Highlight,
|
|
53
|
+
Icon,
|
|
54
|
+
InfoBox,
|
|
22
55
|
ItemIcon,
|
|
23
|
-
|
|
56
|
+
Loading,
|
|
57
|
+
Pagination,
|
|
24
58
|
RelativeTime,
|
|
25
|
-
Icon,
|
|
26
59
|
Resizable,
|
|
27
|
-
DialogModal,
|
|
28
60
|
ScaleToFit,
|
|
61
|
+
ScrollBoundary,
|
|
62
|
+
ShortcutIndicator,
|
|
29
63
|
Sortli,
|
|
30
|
-
FormOverlay,
|
|
31
|
-
AddListItem,
|
|
32
|
-
Loading,
|
|
33
|
-
Highlight,
|
|
34
64
|
ViewportBlockingRect,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
FormToggle,
|
|
39
|
-
FormTextarea,
|
|
40
|
-
FormItem,
|
|
41
|
-
FormGroup
|
|
65
|
+
Banner,
|
|
66
|
+
ScheduleDate,
|
|
67
|
+
TransitionHeight
|
|
42
68
|
};
|