@pitcher/js-api 1.24.0-beta.3 → 1.25.0-beta.0
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/README.md +3 -3
- package/impact-js-api.spec.json +212 -0
- package/js-api.esm.js +2431 -2360
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +4 -4
- package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +6 -11
- package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +1036 -5
- package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +4 -6
- package/lib/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +1 -1
- package/lib/apps/agenda-selector/composables/content-warning.use.d.ts +7 -0
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +10 -2
- package/lib/apps/agenda-selector/constants.d.ts +10 -0
- package/lib/apps/agenda-selector/export.d.ts +2 -0
- package/lib/apps/agenda-selector/stores/app.store.d.ts +7 -3
- package/lib/apps/agenda-selector/types/agenda.type.d.ts +4 -5
- package/lib/apps/agenda-selector/types/common.type.d.ts +6 -2
- package/lib/apps/agenda-selector/utils/data.util.d.ts +7 -1
- package/lib/apps/browser/App.vue.d.ts +18 -155
- package/lib/apps/browser/appTypes.d.ts +22 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +174 -1
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +15 -22
- package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +37 -0
- package/lib/apps/browser/components/Content/Content.vue.d.ts +4 -3
- package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +8 -8
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +7 -6
- package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +4 -0
- package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +3 -4
- package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +3 -4
- package/lib/{components/CFileViewer/CFileViewerShare.vue.d.ts → apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts} +2 -4
- package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +6 -0
- package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +12 -0
- package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +5 -4
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +372 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +5 -6
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +4 -5
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +3 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +4 -5
- package/lib/apps/browser/stores/api.d.ts +50 -18
- package/lib/apps/browser/stores/app.d.ts +11 -3
- package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
- package/lib/apps/browser/stores/upload.d.ts +24 -12
- package/lib/apps/browser/util/file.d.ts +1 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +6 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +75 -32
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
- package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +467 -1
- package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +2 -1
- package/lib/apps/{browser/components/BatchMoveItemsModal/BatchMoveItemsModal.vue.d.ts → canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +4 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +23 -51
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +36 -44
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentRevamp.vue.d.ts +30 -53
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +5 -8
- package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +3 -2
- package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +9 -10
- package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +4 -7
- package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +3 -5
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +296 -9
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +61 -16
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +7 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +7 -14
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +323 -4
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +4 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +7 -9
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +57 -0
- package/lib/apps/{browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts → canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +18 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +9 -11
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +641 -6
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +13 -19
- package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +6 -12
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +8 -10
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +294 -6
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +8 -13
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +14 -10
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +295 -8
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +10 -16
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +12 -18
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +350 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +13 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
- package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +18 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +50 -13
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +13 -12
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +5 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -1
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +12 -8
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +12 -21
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -18
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +42 -9
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/composables/useAiPrompt.d.ts +6 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +353 -119
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +68 -36
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +56 -24
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +616 -20
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -2
- package/lib/apps/canvas-builder/composables/useComponentStyle.d.ts +34 -7
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +10 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePrintMode.d.ts +9 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +125 -54
- package/lib/apps/canvas-builder/util/print.util.d.ts +1 -0
- package/lib/apps/canvas-selector/appTypes.d.ts +2 -0
- package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +4 -14
- package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +70 -98
- package/lib/apps/collection-player/App.vue.d.ts +9 -14
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +2 -1
- package/lib/apps/collection-player/components/MainContent.vue.d.ts +4 -1
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -7
- package/lib/apps/collection-player/components/SlideContent.vue.d.ts +8 -0
- package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +1 -1
- package/lib/apps/collection-player/composables/fullscreen.use.d.ts +2 -6
- package/lib/apps/collection-player/composables/image-cache.use.d.ts +1 -0
- package/lib/apps/collection-player/composables/keyboard-bindings.use.d.ts +6 -0
- package/lib/apps/collection-player/composables/moving-group-gestures.use.d.ts +5 -5
- package/lib/apps/collection-player/composables/navigation-cache.use.d.ts +10 -0
- package/lib/apps/collection-player/export.d.ts +1 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +9 -4
- package/lib/apps/collection-player/types/collection-player.type.d.ts +2 -0
- package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +6 -3
- package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +4 -4
- package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +5 -9
- package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +4 -1
- package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +4 -6
- package/lib/apps/collection-selector/composables/content-warning.use.d.ts +6 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/collection-selector/constants.d.ts +5 -0
- package/lib/apps/collection-selector/export.d.ts +2 -0
- package/lib/apps/collection-selector/stores/app.store.d.ts +18 -122
- package/lib/apps/collection-selector/types/collection-selector.type.d.ts +10 -0
- package/lib/apps/collection-selector/types/common.type.d.ts +5 -4
- package/lib/apps/collection-selector/utils/data.util.d.ts +1 -1
- package/lib/apps/content-selector/App.vue.d.ts +3 -1
- package/lib/apps/content-selector/appTypes.d.ts +5 -1
- package/lib/apps/content-selector/components/AiImages.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +3 -1
- package/lib/apps/content-selector/components/Assets.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +176 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +9 -18
- package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +12 -0
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +10 -27
- package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +1 -1
- package/lib/apps/content-selector/stores/api.d.ts +13 -12
- package/lib/apps/content-selector/stores/app.d.ts +18 -2
- package/lib/apps/content-selector/util/file.d.ts +8 -0
- package/lib/apps/notes/NotesApp.vue.d.ts +7 -11
- package/lib/apps/ppt-conversion-selector/App.vue.d.ts +25 -0
- package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +17 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +14 -0
- package/lib/apps/ppt-conversion-selector/composables/canvas.use.d.ts +34 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +70 -0
- package/lib/apps/ppt-conversion-selector/composables/table-input.use.d.ts +15 -0
- package/lib/apps/ppt-conversion-selector/constants.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/export.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +148 -0
- package/lib/apps/ppt-conversion-selector/types/model.type.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/utils/data.util.d.ts +19 -0
- package/lib/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +8 -0
- package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +7 -6
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +3 -7
- package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +17 -0
- package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +3 -2
- package/lib/components/CAvatar/CAvatar.vue.d.ts +3 -2
- package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +9 -19
- package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +31 -0
- package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +19 -0
- package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +3 -7
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +21 -33
- package/lib/components/CButton/CButton.vue.d.ts +2 -1
- package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +2 -1
- package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +5 -12
- package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +5 -8
- package/lib/components/CCard/CCard.vue.d.ts +3 -2
- package/lib/components/CCarousel/CCarousel.vue.d.ts +326 -9
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +1 -1
- package/lib/components/CCheckbox/CCheckbox.vue.d.ts +9 -1
- package/lib/components/CChip/CChip.vue.d.ts +12 -16
- package/lib/components/CCollapse/CCollapse.vue.d.ts +3 -2
- package/lib/components/CCollapse/CCollapseItem.vue.d.ts +3 -2
- package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +2 -1
- package/lib/components/CColorPicker/CColorPicker.vue.d.ts +3 -2
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +4 -2
- package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +17 -22
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +300 -17
- package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +1 -1
- package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +3 -2
- package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +3 -2
- package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +2 -1
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -15
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +5 -22
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +23 -25
- package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +4 -10
- package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +14 -23
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +5 -13
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +290 -1
- package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +19 -0
- package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +10 -0
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +319 -0
- package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +13 -0
- package/lib/components/CDataTable/CDataTable.vue.d.ts +7834 -1
- package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +1 -1
- package/lib/components/CDivider/CDivider.vue.d.ts +10 -2
- package/lib/components/CDrawer/CDrawer.vue.d.ts +9 -1
- package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +9 -1
- package/lib/components/CDropdown/CDropdown.vue.d.ts +3 -2
- package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +3 -8
- package/lib/components/CEmpty/CEmpty.vue.d.ts +3 -2
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +52 -4
- package/lib/components/CError/CErrorFullScreen.vue.d.ts +13 -21
- package/lib/components/CFeedback/CFeedback.vue.d.ts +9 -10
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +4 -10
- package/lib/components/CFilePanel/BasicInfo.vue.d.ts +1 -1
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +4 -7
- package/lib/components/CFilePanel/Details.vue.d.ts +1 -1
- package/lib/components/CFilePanel/Tags.vue.d.ts +1 -1
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +4 -9
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +214 -58
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +2 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +350 -1
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +3 -8
- package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +10 -12
- package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +2 -1
- package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +2 -2
- package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +3 -5
- package/lib/components/CFontSelect/CFontSelect.vue.d.ts +11 -14
- package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +4 -7
- package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +4 -1
- package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +48 -1
- package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResult.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +3 -2
- package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +2 -1
- package/lib/components/CHeightInput/CHeightInput.vue.d.ts +10 -0
- package/lib/components/CHelpText/CHelpText.vue.d.ts +2 -1
- package/lib/components/CIcon/CIcon.vue.d.ts +2 -0
- package/lib/components/CImage/CBrokenImage.vue.d.ts +6 -6
- package/lib/components/CImage/CImage.vue.d.ts +300 -7
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -13
- package/lib/components/CInput/CInput.vue.d.ts +1034 -1
- package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +7 -7
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +4 -6
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +3 -1
- package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +6 -6
- package/lib/components/CList/CList.vue.d.ts +15 -17
- package/lib/components/CList/CListItem.vue.d.ts +6 -5
- package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +9 -0
- package/lib/components/CModal/CModal.vue.d.ts +3 -2
- package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +10 -9
- package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +4 -7
- package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +22 -0
- package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +5 -7
- package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +5 -10
- package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +69 -6
- package/lib/components/CPopover/CPopover.vue.d.ts +3 -2
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +5 -10
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +1 -1
- package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +18 -0
- package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +5 -9
- package/lib/components/CRate/CRate.vue.d.ts +3 -2
- package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +4 -7
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +31 -3
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +1 -1
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2440 -11
- package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +2 -1
- package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +44 -1
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +2443 -0
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +1034 -1
- package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +9 -0
- package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +3 -8
- package/lib/components/CSearch/CSearchOnClick.vue.d.ts +11 -14
- package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +23 -0
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +95 -25
- package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +3 -2
- package/lib/components/CSelect/CSelect.vue.d.ts +3 -2
- package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +5 -7
- package/lib/components/CShortcut/CShortcut.vue.d.ts +3 -2
- package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +1 -1
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +5 -13
- package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +5 -7
- package/lib/components/CSlider/CSlider.vue.d.ts +3 -2
- package/lib/components/CSpin/CSpin.vue.d.ts +3 -2
- package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +5 -8
- package/lib/components/CSwitch/CSwitch.vue.d.ts +18 -1
- package/lib/components/CTable/CTable.vue.d.ts +18 -20
- package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +1 -0
- package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +1 -1
- package/lib/components/CTableInput/CTableInput.vue.d.ts +1128 -60
- package/lib/components/CTableMore/CTableMore.vue.d.ts +6 -14
- package/lib/components/CTableSelect/CTableSelect.vue.d.ts +1 -1
- package/lib/components/CTag/CTag.vue.d.ts +9 -1
- package/lib/components/CTags/CTags.vue.d.ts +4634 -1
- package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +3 -1
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +20 -0
- package/lib/components/CTimeline/CTimeline.vue.d.ts +4 -5
- package/lib/components/CTimeline/CTimelineControl.vue.d.ts +1 -1
- package/lib/components/CTimeline/CTimelineModal.vue.d.ts +4 -5
- package/lib/components/CTooltip/CTooltip.vue.d.ts +3 -2
- package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +7 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +6 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +6 -7
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +303 -0
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +370 -9
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +3 -1
- package/lib/components/CVideo/CVideo.vue.d.ts +10 -22
- package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +13 -14
- package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +3 -2
- package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +11 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +252 -44
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +9 -16
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +5 -15
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +770 -55
- package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +25 -21
- package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +3 -8
- package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +54 -0
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +220 -19
- package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +5 -8
- package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +5 -11
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +27 -3
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
- package/lib/components/filters/CSearchFilter.vue.d.ts +90 -2
- package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +533 -64
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +11 -22
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +3 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +1722 -3
- package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +6 -18
- package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +7 -10
- package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +5 -6
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +25 -30
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +130 -7
- package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +1 -1
- package/lib/components/sections/CSectionManagement.vue.d.ts +237 -50
- package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +11 -18
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +5 -12
- package/lib/components/themes/CThemeManagement.vue.d.ts +354 -0
- package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +24 -0
- package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +10 -0
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +16 -0
- package/lib/composables/appsDb.use.d.ts +8 -1
- package/lib/composables/useCanvasLocks.d.ts +54 -0
- package/lib/composables/useCanvasOverlay.d.ts +13 -1
- package/lib/composables/useCoreApi.d.ts +7 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
- package/lib/composables/useMetadataSearch.d.ts +19 -0
- package/lib/composables/useMetadataTemplates.d.ts +246 -0
- package/lib/composables/useWindowEvents.d.ts +5 -3
- package/lib/constants/appsDb.const.d.ts +4 -0
- package/lib/constants/cdp.const.d.ts +2 -2
- package/lib/constants/color.const.d.ts +1 -0
- package/lib/constants/query-builder.const.d.ts +1 -0
- package/lib/main.lib.d.ts +25 -1
- package/lib/sdk/api/HighLevelApi.d.ts +20 -1
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +20 -0
- package/lib/sdk/api/modules/admin/content.admin.d.ts +21 -3
- package/lib/sdk/api/modules/admin/files.admin.d.ts +0 -19
- package/lib/sdk/api/modules/admin/index.d.ts +7 -1
- package/lib/sdk/api/modules/admin/types.admin.d.ts +55 -6
- package/lib/sdk/api/modules/canvas.d.ts +7 -0
- package/lib/sdk/api/modules/env.d.ts +1 -1
- package/lib/sdk/api/modules/folders.core.d.ts +7 -0
- package/lib/sdk/api/modules/index.d.ts +2 -0
- package/lib/sdk/api/modules/theme.d.ts +10 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +20 -0
- package/lib/sdk/api/modules/ui/content.ui.d.ts +2 -2
- package/lib/sdk/api/modules/ui/index.d.ts +6 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +28 -4
- package/lib/sdk/interfaces.d.ts +24 -1
- package/lib/sdk/main.d.ts +92 -5
- package/lib/sdk/payload.types.d.ts +8 -0
- package/lib/theme/light.d.ts +6 -0
- package/lib/theme/theme.types.d.ts +7 -0
- package/lib/types/app.d.ts +4 -0
- package/lib/types/canvasTheme.d.ts +37 -0
- package/lib/types/canvases.d.ts +9 -0
- package/lib/types/core/MetadataFilter.d.ts +44 -0
- package/lib/types/core/UpsertPptxSlideImages.d.ts +12 -0
- package/lib/types/core/index.d.ts +2 -0
- package/lib/types/files.d.ts +5 -2
- package/lib/types/folder.d.ts +35 -0
- package/lib/types/instanceSettings.types.d.ts +8 -0
- package/lib/types/launchDarkly.types.d.ts +4 -1
- package/lib/types/organizationSettings.types.d.ts +9 -0
- package/lib/types/query-builder.types.d.ts +7 -0
- package/lib/types/recentFiles.types.d.ts +2 -1
- package/lib/types/search.d.ts +5 -0
- package/lib/util/anchor.d.ts +1 -1
- package/lib/util/array.d.ts +1 -1
- package/lib/util/color.d.ts +2 -0
- package/lib/util/file.util.d.ts +4 -0
- package/lib/util/image.d.ts +6 -0
- package/lib/util/query-builder.util.d.ts +2 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/tree-transformation.util.d.ts +6 -0
- package/lib/util/url.d.ts +3 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +0 -4
- package/types/openapi/models/AuthToken.d.ts +1 -0
- package/types/openapi/models/AuthTokenRequest.d.ts +1 -0
- package/types/openapi/models/Canvas.d.ts +0 -2
- package/types/openapi/models/CanvasCreate.d.ts +0 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +0 -2
- package/types/openapi/models/CanvasUpdate.d.ts +0 -2
- package/types/openapi/models/DeletedCanvas.d.ts +0 -2
- package/types/openapi/models/DeletedFile.d.ts +1 -2
- package/types/openapi/models/DeletedInstance.d.ts +1 -1
- package/types/openapi/models/FavoriteFile.d.ts +1 -0
- package/types/openapi/models/FavoriteFileRequest.d.ts +1 -0
- package/types/openapi/models/File.d.ts +1 -2
- package/types/openapi/models/FileCreate.d.ts +1 -2
- package/types/openapi/models/FileCreateRequest.d.ts +1 -0
- package/types/openapi/models/FileRetrieve.d.ts +1 -2
- package/types/openapi/models/FileStatusEnum.d.ts +3 -1
- package/types/openapi/models/FileUpdate.d.ts +1 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/FolderFile.d.ts +3 -0
- package/types/openapi/models/Instance.d.ts +1 -1
- package/types/openapi/models/InstanceAnalytics.d.ts +5 -3
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -0
- package/types/openapi/models/InstanceRequest.d.ts +1 -1
- package/types/openapi/models/InstanceUpdate.d.ts +1 -1
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateField.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateSection.d.ts +1 -0
- package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +1 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/PatchedUserRequest.d.ts +1 -1
- package/types/openapi/models/SearchCanvas.d.ts +0 -1
- package/types/openapi/models/SearchResult.d.ts +1 -3
- package/types/openapi/models/SharedLink.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreate.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +0 -1
- package/types/openapi/models/SharedLinkInstance.d.ts +1 -0
- package/types/openapi/models/User.d.ts +1 -1
- package/types/openapi/models/UserRequest.d.ts +1 -1
- package/lib/apps/browser/components/UpsertFolderModal/UpsertFolderModal.vue.d.ts +0 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentLegacy.vue.d.ts +0 -113
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -31
- package/lib/apps/collection-player/composables/arrow-keys.use.d.ts +0 -6
- package/lib/apps/collection-selector/App.vue.d.ts +0 -29
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -17
- package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -44
- package/types/openapi/models/PaginatedStorageRegionList.d.ts +0 -7
- package/types/openapi/models/SearchContentDistributionGroup.d.ts +0 -10
- package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +0 -10
- package/types/openapi/models/StorageRegion.d.ts +0 -5
|
@@ -2,6 +2,10 @@ import { Ref } from 'vue';
|
|
|
2
2
|
import { CanvasBuilderMode, CanvasBuilderProps, ComponentNode, ComponentTypes, SectionComponentOverrides, SectionListProps } from '../types/canvas';
|
|
3
3
|
import { CanvasRetrieve } from '../../../../types/openapi';
|
|
4
4
|
import { EmbedLocation } from '../../../types/app';
|
|
5
|
+
import { LaunchDarklyEnv } from '../../../types/launchDarkly.types';
|
|
6
|
+
import { CanvasMetadataRetrieve } from '../../../types/canvases';
|
|
7
|
+
import { BackgroundSize } from '../../../types/background';
|
|
8
|
+
import { ActionCallback } from '../../collection-player/composables/keyboard-bindings.use.ts';
|
|
5
9
|
declare function cleanup(): void;
|
|
6
10
|
export type ComponentNodesById = typeof componentNodesById;
|
|
7
11
|
declare const componentNodesById: import('vue').ComputedRef<{
|
|
@@ -15,8 +19,11 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
15
19
|
readonly pdf: boolean;
|
|
16
20
|
readonly web: boolean;
|
|
17
21
|
} | undefined;
|
|
22
|
+
readonly linkable?: {
|
|
23
|
+
readonly linkable_in_templates: boolean;
|
|
24
|
+
} | undefined;
|
|
18
25
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
19
|
-
readonly autofill?:
|
|
26
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
20
27
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
21
28
|
readonly data?: {
|
|
22
29
|
readonly groups: readonly {
|
|
@@ -32,6 +39,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
32
39
|
readonly id: string;
|
|
33
40
|
readonly name?: string | undefined;
|
|
34
41
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
42
|
+
readonly tags?: readonly string[] | undefined;
|
|
35
43
|
readonly thumbnail_url: string | null;
|
|
36
44
|
readonly permissions?: {
|
|
37
45
|
readonly can_download?: boolean | undefined;
|
|
@@ -59,6 +67,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
59
67
|
readonly id: string;
|
|
60
68
|
readonly name?: string | undefined;
|
|
61
69
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
70
|
+
readonly tags?: readonly string[] | undefined;
|
|
62
71
|
readonly thumbnail_url: string | null;
|
|
63
72
|
readonly permissions?: {
|
|
64
73
|
readonly can_download?: boolean | undefined;
|
|
@@ -74,7 +83,11 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
74
83
|
};
|
|
75
84
|
})[];
|
|
76
85
|
}[];
|
|
86
|
+
readonly filters?: {
|
|
87
|
+
readonly [x: string]: any;
|
|
88
|
+
} | undefined;
|
|
77
89
|
readonly name: string;
|
|
90
|
+
readonly hide_footer?: boolean | undefined;
|
|
78
91
|
} | {
|
|
79
92
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
80
93
|
readonly columns: number;
|
|
@@ -104,8 +117,9 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
104
117
|
readonly external_url: string;
|
|
105
118
|
readonly type: "image" | "video";
|
|
106
119
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
107
|
-
readonly from?:
|
|
120
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
108
121
|
readonly poster_url?: string | undefined;
|
|
122
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
109
123
|
} | {
|
|
110
124
|
readonly asset_type: "pitcher_asset";
|
|
111
125
|
readonly file: {
|
|
@@ -116,6 +130,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
116
130
|
readonly type: "image" | "video";
|
|
117
131
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
118
132
|
readonly poster_url?: string | undefined;
|
|
133
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
119
134
|
} | {
|
|
120
135
|
readonly type: "app";
|
|
121
136
|
readonly app_name: string;
|
|
@@ -125,13 +140,13 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
125
140
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
126
141
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
127
142
|
readonly properties_by_embed_location?: {
|
|
128
|
-
readonly
|
|
143
|
+
readonly dsr?: {
|
|
129
144
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
130
145
|
} | undefined;
|
|
131
|
-
readonly
|
|
146
|
+
readonly canvas?: {
|
|
132
147
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
133
148
|
} | undefined;
|
|
134
|
-
readonly
|
|
149
|
+
readonly ui_app?: {
|
|
135
150
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
136
151
|
} | undefined;
|
|
137
152
|
readonly admin_instance?: {
|
|
@@ -225,6 +240,9 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
225
240
|
readonly background_video_url?: string | undefined;
|
|
226
241
|
}[];
|
|
227
242
|
readonly animation_in?: string | undefined;
|
|
243
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
244
|
+
readonly selection_app_name?: string | undefined;
|
|
245
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
228
246
|
} | {
|
|
229
247
|
readonly html: string;
|
|
230
248
|
} | {
|
|
@@ -250,6 +268,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
250
268
|
readonly content_length?: number | null | undefined;
|
|
251
269
|
readonly content_url?: string | null | undefined;
|
|
252
270
|
readonly original_extension?: string | null | undefined;
|
|
271
|
+
readonly original_url?: string | null | undefined;
|
|
253
272
|
readonly thumbnail_url?: string | null | undefined;
|
|
254
273
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
255
274
|
readonly zip_size?: number | null | undefined;
|
|
@@ -268,7 +287,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
268
287
|
} | undefined;
|
|
269
288
|
readonly tags?: readonly string[] | undefined;
|
|
270
289
|
readonly published_at?: string | null | undefined;
|
|
271
|
-
readonly expires_at?:
|
|
290
|
+
readonly expires_at?: string | null | undefined;
|
|
272
291
|
readonly instance_id?: string | undefined;
|
|
273
292
|
readonly folder_id?: string | undefined;
|
|
274
293
|
readonly folder?: {
|
|
@@ -277,10 +296,8 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
277
296
|
} | undefined;
|
|
278
297
|
readonly shared_link?: {
|
|
279
298
|
readonly url: string;
|
|
280
|
-
readonly short_url?:
|
|
299
|
+
readonly short_url?: string | null | undefined;
|
|
281
300
|
} | undefined;
|
|
282
|
-
readonly search_rank?: string | undefined;
|
|
283
|
-
readonly search_headline?: string | undefined;
|
|
284
301
|
readonly owned_by?: {
|
|
285
302
|
readonly id: number;
|
|
286
303
|
readonly name: string;
|
|
@@ -304,7 +321,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
304
321
|
readonly font_size?: number | undefined;
|
|
305
322
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
306
323
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
307
|
-
readonly target?:
|
|
324
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
308
325
|
readonly url?: string | undefined;
|
|
309
326
|
} | {} | {
|
|
310
327
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -337,7 +354,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
337
354
|
}[];
|
|
338
355
|
readonly layout: "vertical" | "horizontal";
|
|
339
356
|
} | undefined;
|
|
340
|
-
readonly children?: readonly any[] | undefined;
|
|
357
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
341
358
|
readonly when_used_in_section?: {
|
|
342
359
|
readonly is_editable: boolean;
|
|
343
360
|
readonly is_removable: boolean;
|
|
@@ -346,6 +363,11 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
346
363
|
readonly [x: string]: any;
|
|
347
364
|
} | undefined;
|
|
348
365
|
readonly tags?: readonly string[] | undefined;
|
|
366
|
+
readonly theme_meta?: {
|
|
367
|
+
readonly bg_color_palette_index: number;
|
|
368
|
+
readonly dt_header_bg_palette_index: number;
|
|
369
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
370
|
+
} | undefined;
|
|
349
371
|
};
|
|
350
372
|
}>;
|
|
351
373
|
export type SectionComponentNodesBySectionId = typeof sectionComponentNodesBySectionId;
|
|
@@ -361,8 +383,11 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
361
383
|
readonly pdf: boolean;
|
|
362
384
|
readonly web: boolean;
|
|
363
385
|
} | undefined;
|
|
386
|
+
readonly linkable?: {
|
|
387
|
+
readonly linkable_in_templates: boolean;
|
|
388
|
+
} | undefined;
|
|
364
389
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
365
|
-
readonly autofill?:
|
|
390
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
366
391
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
367
392
|
readonly data?: {
|
|
368
393
|
readonly groups: readonly {
|
|
@@ -378,6 +403,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
378
403
|
readonly id: string;
|
|
379
404
|
readonly name?: string | undefined;
|
|
380
405
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
406
|
+
readonly tags?: readonly string[] | undefined;
|
|
381
407
|
readonly thumbnail_url: string | null;
|
|
382
408
|
readonly permissions?: {
|
|
383
409
|
readonly can_download?: boolean | undefined;
|
|
@@ -405,6 +431,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
405
431
|
readonly id: string;
|
|
406
432
|
readonly name?: string | undefined;
|
|
407
433
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
434
|
+
readonly tags?: readonly string[] | undefined;
|
|
408
435
|
readonly thumbnail_url: string | null;
|
|
409
436
|
readonly permissions?: {
|
|
410
437
|
readonly can_download?: boolean | undefined;
|
|
@@ -420,7 +447,11 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
420
447
|
};
|
|
421
448
|
})[];
|
|
422
449
|
}[];
|
|
450
|
+
readonly filters?: {
|
|
451
|
+
readonly [x: string]: any;
|
|
452
|
+
} | undefined;
|
|
423
453
|
readonly name: string;
|
|
454
|
+
readonly hide_footer?: boolean | undefined;
|
|
424
455
|
} | {
|
|
425
456
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
426
457
|
readonly columns: number;
|
|
@@ -450,8 +481,9 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
450
481
|
readonly external_url: string;
|
|
451
482
|
readonly type: "image" | "video";
|
|
452
483
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
453
|
-
readonly from?:
|
|
484
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
454
485
|
readonly poster_url?: string | undefined;
|
|
486
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
455
487
|
} | {
|
|
456
488
|
readonly asset_type: "pitcher_asset";
|
|
457
489
|
readonly file: {
|
|
@@ -462,6 +494,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
462
494
|
readonly type: "image" | "video";
|
|
463
495
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
464
496
|
readonly poster_url?: string | undefined;
|
|
497
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
465
498
|
} | {
|
|
466
499
|
readonly type: "app";
|
|
467
500
|
readonly app_name: string;
|
|
@@ -471,13 +504,13 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
471
504
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
472
505
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
473
506
|
readonly properties_by_embed_location?: {
|
|
474
|
-
readonly
|
|
507
|
+
readonly dsr?: {
|
|
475
508
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
476
509
|
} | undefined;
|
|
477
|
-
readonly
|
|
510
|
+
readonly canvas?: {
|
|
478
511
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
479
512
|
} | undefined;
|
|
480
|
-
readonly
|
|
513
|
+
readonly ui_app?: {
|
|
481
514
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
482
515
|
} | undefined;
|
|
483
516
|
readonly admin_instance?: {
|
|
@@ -571,6 +604,9 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
571
604
|
readonly background_video_url?: string | undefined;
|
|
572
605
|
}[];
|
|
573
606
|
readonly animation_in?: string | undefined;
|
|
607
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
608
|
+
readonly selection_app_name?: string | undefined;
|
|
609
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
574
610
|
} | {
|
|
575
611
|
readonly html: string;
|
|
576
612
|
} | {
|
|
@@ -596,6 +632,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
596
632
|
readonly content_length?: number | null | undefined;
|
|
597
633
|
readonly content_url?: string | null | undefined;
|
|
598
634
|
readonly original_extension?: string | null | undefined;
|
|
635
|
+
readonly original_url?: string | null | undefined;
|
|
599
636
|
readonly thumbnail_url?: string | null | undefined;
|
|
600
637
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
601
638
|
readonly zip_size?: number | null | undefined;
|
|
@@ -614,7 +651,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
614
651
|
} | undefined;
|
|
615
652
|
readonly tags?: readonly string[] | undefined;
|
|
616
653
|
readonly published_at?: string | null | undefined;
|
|
617
|
-
readonly expires_at?:
|
|
654
|
+
readonly expires_at?: string | null | undefined;
|
|
618
655
|
readonly instance_id?: string | undefined;
|
|
619
656
|
readonly folder_id?: string | undefined;
|
|
620
657
|
readonly folder?: {
|
|
@@ -623,10 +660,8 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
623
660
|
} | undefined;
|
|
624
661
|
readonly shared_link?: {
|
|
625
662
|
readonly url: string;
|
|
626
|
-
readonly short_url?:
|
|
663
|
+
readonly short_url?: string | null | undefined;
|
|
627
664
|
} | undefined;
|
|
628
|
-
readonly search_rank?: string | undefined;
|
|
629
|
-
readonly search_headline?: string | undefined;
|
|
630
665
|
readonly owned_by?: {
|
|
631
666
|
readonly id: number;
|
|
632
667
|
readonly name: string;
|
|
@@ -650,7 +685,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
650
685
|
readonly font_size?: number | undefined;
|
|
651
686
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
652
687
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
653
|
-
readonly target?:
|
|
688
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
654
689
|
readonly url?: string | undefined;
|
|
655
690
|
} | {} | {
|
|
656
691
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -683,7 +718,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
683
718
|
}[];
|
|
684
719
|
readonly layout: "vertical" | "horizontal";
|
|
685
720
|
} | undefined;
|
|
686
|
-
readonly children?: readonly any[] | undefined;
|
|
721
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
687
722
|
readonly when_used_in_section?: {
|
|
688
723
|
readonly is_editable: boolean;
|
|
689
724
|
readonly is_removable: boolean;
|
|
@@ -692,6 +727,11 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
692
727
|
readonly [x: string]: any;
|
|
693
728
|
} | undefined;
|
|
694
729
|
readonly tags?: readonly string[] | undefined;
|
|
730
|
+
readonly theme_meta?: {
|
|
731
|
+
readonly bg_color_palette_index: number;
|
|
732
|
+
readonly dt_header_bg_palette_index: number;
|
|
733
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
734
|
+
} | undefined;
|
|
695
735
|
};
|
|
696
736
|
};
|
|
697
737
|
}>;
|
|
@@ -700,9 +740,12 @@ declare function enterFullscreen(): void;
|
|
|
700
740
|
declare function saveCanvasContent({ showToast }?: {
|
|
701
741
|
showToast: boolean;
|
|
702
742
|
}): Promise<void>;
|
|
703
|
-
declare function saveCanvasContext(context: any, { showToast }
|
|
743
|
+
declare function saveCanvasContext(context: any, { showToast }?: {
|
|
704
744
|
showToast?: boolean;
|
|
705
745
|
}): Promise<undefined>;
|
|
746
|
+
declare function saveCanvasContentWithContext(context: any, { showToast }?: {
|
|
747
|
+
showToast?: boolean;
|
|
748
|
+
}): Promise<void | CanvasRetrieve>;
|
|
706
749
|
export default function useCanvas(): {
|
|
707
750
|
activeCanvas: Ref<{
|
|
708
751
|
readonly id: string;
|
|
@@ -719,10 +762,10 @@ export default function useCanvas(): {
|
|
|
719
762
|
is_default?: boolean | undefined;
|
|
720
763
|
metadata?: Record<string, any> | undefined;
|
|
721
764
|
tags?: Array<string> | undefined;
|
|
722
|
-
start_at?:
|
|
723
|
-
expires_at?:
|
|
765
|
+
start_at?: string | null | undefined;
|
|
766
|
+
expires_at?: string | null | undefined;
|
|
724
767
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
725
|
-
thumbnail_url?:
|
|
768
|
+
thumbnail_url?: string | null | undefined;
|
|
726
769
|
readonly template: {
|
|
727
770
|
readonly id: string;
|
|
728
771
|
name: string;
|
|
@@ -736,7 +779,7 @@ export default function useCanvas(): {
|
|
|
736
779
|
}[];
|
|
737
780
|
readonly shared_link: {
|
|
738
781
|
readonly url: string;
|
|
739
|
-
short_url?:
|
|
782
|
+
short_url?: string | null | undefined;
|
|
740
783
|
};
|
|
741
784
|
account?: {
|
|
742
785
|
id: string;
|
|
@@ -747,9 +790,7 @@ export default function useCanvas(): {
|
|
|
747
790
|
start_at: string;
|
|
748
791
|
subject: string;
|
|
749
792
|
}[];
|
|
750
|
-
folder_id?:
|
|
751
|
-
readonly search_rank: string;
|
|
752
|
-
readonly search_headline: string;
|
|
793
|
+
folder_id?: string | null | undefined;
|
|
753
794
|
readonly owned_by: {
|
|
754
795
|
readonly id: number;
|
|
755
796
|
readonly name: string;
|
|
@@ -782,10 +823,10 @@ export default function useCanvas(): {
|
|
|
782
823
|
is_default?: boolean | undefined;
|
|
783
824
|
metadata?: Record<string, any> | undefined;
|
|
784
825
|
tags?: Array<string> | undefined;
|
|
785
|
-
start_at?:
|
|
786
|
-
expires_at?:
|
|
826
|
+
start_at?: string | null | undefined;
|
|
827
|
+
expires_at?: string | null | undefined;
|
|
787
828
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
788
|
-
thumbnail_url?:
|
|
829
|
+
thumbnail_url?: string | null | undefined;
|
|
789
830
|
readonly template: {
|
|
790
831
|
readonly id: string;
|
|
791
832
|
name: string;
|
|
@@ -799,7 +840,7 @@ export default function useCanvas(): {
|
|
|
799
840
|
}[];
|
|
800
841
|
readonly shared_link: {
|
|
801
842
|
readonly url: string;
|
|
802
|
-
short_url?:
|
|
843
|
+
short_url?: string | null | undefined;
|
|
803
844
|
};
|
|
804
845
|
account?: {
|
|
805
846
|
id: string;
|
|
@@ -810,9 +851,7 @@ export default function useCanvas(): {
|
|
|
810
851
|
start_at: string;
|
|
811
852
|
subject: string;
|
|
812
853
|
}[];
|
|
813
|
-
folder_id?:
|
|
814
|
-
readonly search_rank: string;
|
|
815
|
-
readonly search_headline: string;
|
|
854
|
+
folder_id?: string | null | undefined;
|
|
816
855
|
readonly owned_by: {
|
|
817
856
|
readonly id: number;
|
|
818
857
|
readonly name: string;
|
|
@@ -848,8 +887,11 @@ export default function useCanvas(): {
|
|
|
848
887
|
readonly pdf: boolean;
|
|
849
888
|
readonly web: boolean;
|
|
850
889
|
} | undefined;
|
|
890
|
+
readonly linkable?: {
|
|
891
|
+
readonly linkable_in_templates: boolean;
|
|
892
|
+
} | undefined;
|
|
851
893
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
852
|
-
readonly autofill?:
|
|
894
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
853
895
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
854
896
|
readonly data?: {
|
|
855
897
|
readonly groups: readonly {
|
|
@@ -865,6 +907,7 @@ export default function useCanvas(): {
|
|
|
865
907
|
readonly id: string;
|
|
866
908
|
readonly name?: string | undefined;
|
|
867
909
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
910
|
+
readonly tags?: readonly string[] | undefined;
|
|
868
911
|
readonly thumbnail_url: string | null;
|
|
869
912
|
readonly permissions?: {
|
|
870
913
|
readonly can_download?: boolean | undefined;
|
|
@@ -892,6 +935,7 @@ export default function useCanvas(): {
|
|
|
892
935
|
readonly id: string;
|
|
893
936
|
readonly name?: string | undefined;
|
|
894
937
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
938
|
+
readonly tags?: readonly string[] | undefined;
|
|
895
939
|
readonly thumbnail_url: string | null;
|
|
896
940
|
readonly permissions?: {
|
|
897
941
|
readonly can_download?: boolean | undefined;
|
|
@@ -907,7 +951,11 @@ export default function useCanvas(): {
|
|
|
907
951
|
};
|
|
908
952
|
})[];
|
|
909
953
|
}[];
|
|
954
|
+
readonly filters?: {
|
|
955
|
+
readonly [x: string]: any;
|
|
956
|
+
} | undefined;
|
|
910
957
|
readonly name: string;
|
|
958
|
+
readonly hide_footer?: boolean | undefined;
|
|
911
959
|
} | {
|
|
912
960
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
913
961
|
readonly columns: number;
|
|
@@ -937,8 +985,9 @@ export default function useCanvas(): {
|
|
|
937
985
|
readonly external_url: string;
|
|
938
986
|
readonly type: "image" | "video";
|
|
939
987
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
940
|
-
readonly from?:
|
|
988
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
941
989
|
readonly poster_url?: string | undefined;
|
|
990
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
942
991
|
} | {
|
|
943
992
|
readonly asset_type: "pitcher_asset";
|
|
944
993
|
readonly file: {
|
|
@@ -949,6 +998,7 @@ export default function useCanvas(): {
|
|
|
949
998
|
readonly type: "image" | "video";
|
|
950
999
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
951
1000
|
readonly poster_url?: string | undefined;
|
|
1001
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
952
1002
|
} | {
|
|
953
1003
|
readonly type: "app";
|
|
954
1004
|
readonly app_name: string;
|
|
@@ -958,13 +1008,13 @@ export default function useCanvas(): {
|
|
|
958
1008
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
959
1009
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
960
1010
|
readonly properties_by_embed_location?: {
|
|
961
|
-
readonly
|
|
1011
|
+
readonly dsr?: {
|
|
962
1012
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
963
1013
|
} | undefined;
|
|
964
|
-
readonly
|
|
1014
|
+
readonly canvas?: {
|
|
965
1015
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
966
1016
|
} | undefined;
|
|
967
|
-
readonly
|
|
1017
|
+
readonly ui_app?: {
|
|
968
1018
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
969
1019
|
} | undefined;
|
|
970
1020
|
readonly admin_instance?: {
|
|
@@ -1058,6 +1108,9 @@ export default function useCanvas(): {
|
|
|
1058
1108
|
readonly background_video_url?: string | undefined;
|
|
1059
1109
|
}[];
|
|
1060
1110
|
readonly animation_in?: string | undefined;
|
|
1111
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1112
|
+
readonly selection_app_name?: string | undefined;
|
|
1113
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1061
1114
|
} | {
|
|
1062
1115
|
readonly html: string;
|
|
1063
1116
|
} | {
|
|
@@ -1083,6 +1136,7 @@ export default function useCanvas(): {
|
|
|
1083
1136
|
readonly content_length?: number | null | undefined;
|
|
1084
1137
|
readonly content_url?: string | null | undefined;
|
|
1085
1138
|
readonly original_extension?: string | null | undefined;
|
|
1139
|
+
readonly original_url?: string | null | undefined;
|
|
1086
1140
|
readonly thumbnail_url?: string | null | undefined;
|
|
1087
1141
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1088
1142
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1101,7 +1155,7 @@ export default function useCanvas(): {
|
|
|
1101
1155
|
} | undefined;
|
|
1102
1156
|
readonly tags?: readonly string[] | undefined;
|
|
1103
1157
|
readonly published_at?: string | null | undefined;
|
|
1104
|
-
readonly expires_at?:
|
|
1158
|
+
readonly expires_at?: string | null | undefined;
|
|
1105
1159
|
readonly instance_id?: string | undefined;
|
|
1106
1160
|
readonly folder_id?: string | undefined;
|
|
1107
1161
|
readonly folder?: {
|
|
@@ -1110,10 +1164,8 @@ export default function useCanvas(): {
|
|
|
1110
1164
|
} | undefined;
|
|
1111
1165
|
readonly shared_link?: {
|
|
1112
1166
|
readonly url: string;
|
|
1113
|
-
readonly short_url?:
|
|
1167
|
+
readonly short_url?: string | null | undefined;
|
|
1114
1168
|
} | undefined;
|
|
1115
|
-
readonly search_rank?: string | undefined;
|
|
1116
|
-
readonly search_headline?: string | undefined;
|
|
1117
1169
|
readonly owned_by?: {
|
|
1118
1170
|
readonly id: number;
|
|
1119
1171
|
readonly name: string;
|
|
@@ -1137,7 +1189,7 @@ export default function useCanvas(): {
|
|
|
1137
1189
|
readonly font_size?: number | undefined;
|
|
1138
1190
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1139
1191
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1140
|
-
readonly target?:
|
|
1192
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
1141
1193
|
readonly url?: string | undefined;
|
|
1142
1194
|
} | {} | {
|
|
1143
1195
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1170,7 +1222,7 @@ export default function useCanvas(): {
|
|
|
1170
1222
|
}[];
|
|
1171
1223
|
readonly layout: "vertical" | "horizontal";
|
|
1172
1224
|
} | undefined;
|
|
1173
|
-
readonly children?: readonly any[] | undefined;
|
|
1225
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1174
1226
|
readonly when_used_in_section?: {
|
|
1175
1227
|
readonly is_editable: boolean;
|
|
1176
1228
|
readonly is_removable: boolean;
|
|
@@ -1179,6 +1231,11 @@ export default function useCanvas(): {
|
|
|
1179
1231
|
readonly [x: string]: any;
|
|
1180
1232
|
} | undefined;
|
|
1181
1233
|
readonly tags?: readonly string[] | undefined;
|
|
1234
|
+
readonly theme_meta?: {
|
|
1235
|
+
readonly bg_color_palette_index: number;
|
|
1236
|
+
readonly dt_header_bg_palette_index: number;
|
|
1237
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
1238
|
+
} | undefined;
|
|
1182
1239
|
} | null>;
|
|
1183
1240
|
activeNavigationItems: Ref<{
|
|
1184
1241
|
id: string;
|
|
@@ -1203,8 +1260,11 @@ export default function useCanvas(): {
|
|
|
1203
1260
|
readonly pdf: boolean;
|
|
1204
1261
|
readonly web: boolean;
|
|
1205
1262
|
} | undefined;
|
|
1263
|
+
readonly linkable?: {
|
|
1264
|
+
readonly linkable_in_templates: boolean;
|
|
1265
|
+
} | undefined;
|
|
1206
1266
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
1207
|
-
readonly autofill?:
|
|
1267
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1208
1268
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1209
1269
|
readonly data?: {
|
|
1210
1270
|
readonly groups: readonly {
|
|
@@ -1220,6 +1280,7 @@ export default function useCanvas(): {
|
|
|
1220
1280
|
readonly id: string;
|
|
1221
1281
|
readonly name?: string | undefined;
|
|
1222
1282
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1283
|
+
readonly tags?: readonly string[] | undefined;
|
|
1223
1284
|
readonly thumbnail_url: string | null;
|
|
1224
1285
|
readonly permissions?: {
|
|
1225
1286
|
readonly can_download?: boolean | undefined;
|
|
@@ -1247,6 +1308,7 @@ export default function useCanvas(): {
|
|
|
1247
1308
|
readonly id: string;
|
|
1248
1309
|
readonly name?: string | undefined;
|
|
1249
1310
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1311
|
+
readonly tags?: readonly string[] | undefined;
|
|
1250
1312
|
readonly thumbnail_url: string | null;
|
|
1251
1313
|
readonly permissions?: {
|
|
1252
1314
|
readonly can_download?: boolean | undefined;
|
|
@@ -1262,7 +1324,11 @@ export default function useCanvas(): {
|
|
|
1262
1324
|
};
|
|
1263
1325
|
})[];
|
|
1264
1326
|
}[];
|
|
1327
|
+
readonly filters?: {
|
|
1328
|
+
readonly [x: string]: any;
|
|
1329
|
+
} | undefined;
|
|
1265
1330
|
readonly name: string;
|
|
1331
|
+
readonly hide_footer?: boolean | undefined;
|
|
1266
1332
|
} | {
|
|
1267
1333
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
1268
1334
|
readonly columns: number;
|
|
@@ -1292,8 +1358,9 @@ export default function useCanvas(): {
|
|
|
1292
1358
|
readonly external_url: string;
|
|
1293
1359
|
readonly type: "image" | "video";
|
|
1294
1360
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1295
|
-
readonly from?:
|
|
1361
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1296
1362
|
readonly poster_url?: string | undefined;
|
|
1363
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1297
1364
|
} | {
|
|
1298
1365
|
readonly asset_type: "pitcher_asset";
|
|
1299
1366
|
readonly file: {
|
|
@@ -1304,6 +1371,7 @@ export default function useCanvas(): {
|
|
|
1304
1371
|
readonly type: "image" | "video";
|
|
1305
1372
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1306
1373
|
readonly poster_url?: string | undefined;
|
|
1374
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1307
1375
|
} | {
|
|
1308
1376
|
readonly type: "app";
|
|
1309
1377
|
readonly app_name: string;
|
|
@@ -1313,13 +1381,13 @@ export default function useCanvas(): {
|
|
|
1313
1381
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1314
1382
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1315
1383
|
readonly properties_by_embed_location?: {
|
|
1316
|
-
readonly
|
|
1384
|
+
readonly dsr?: {
|
|
1317
1385
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1318
1386
|
} | undefined;
|
|
1319
|
-
readonly
|
|
1387
|
+
readonly canvas?: {
|
|
1320
1388
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1321
1389
|
} | undefined;
|
|
1322
|
-
readonly
|
|
1390
|
+
readonly ui_app?: {
|
|
1323
1391
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1324
1392
|
} | undefined;
|
|
1325
1393
|
readonly admin_instance?: {
|
|
@@ -1413,6 +1481,9 @@ export default function useCanvas(): {
|
|
|
1413
1481
|
readonly background_video_url?: string | undefined;
|
|
1414
1482
|
}[];
|
|
1415
1483
|
readonly animation_in?: string | undefined;
|
|
1484
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1485
|
+
readonly selection_app_name?: string | undefined;
|
|
1486
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1416
1487
|
} | {
|
|
1417
1488
|
readonly html: string;
|
|
1418
1489
|
} | {
|
|
@@ -1438,6 +1509,7 @@ export default function useCanvas(): {
|
|
|
1438
1509
|
readonly content_length?: number | null | undefined;
|
|
1439
1510
|
readonly content_url?: string | null | undefined;
|
|
1440
1511
|
readonly original_extension?: string | null | undefined;
|
|
1512
|
+
readonly original_url?: string | null | undefined;
|
|
1441
1513
|
readonly thumbnail_url?: string | null | undefined;
|
|
1442
1514
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1443
1515
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1456,7 +1528,7 @@ export default function useCanvas(): {
|
|
|
1456
1528
|
} | undefined;
|
|
1457
1529
|
readonly tags?: readonly string[] | undefined;
|
|
1458
1530
|
readonly published_at?: string | null | undefined;
|
|
1459
|
-
readonly expires_at?:
|
|
1531
|
+
readonly expires_at?: string | null | undefined;
|
|
1460
1532
|
readonly instance_id?: string | undefined;
|
|
1461
1533
|
readonly folder_id?: string | undefined;
|
|
1462
1534
|
readonly folder?: {
|
|
@@ -1465,10 +1537,8 @@ export default function useCanvas(): {
|
|
|
1465
1537
|
} | undefined;
|
|
1466
1538
|
readonly shared_link?: {
|
|
1467
1539
|
readonly url: string;
|
|
1468
|
-
readonly short_url?:
|
|
1540
|
+
readonly short_url?: string | null | undefined;
|
|
1469
1541
|
} | undefined;
|
|
1470
|
-
readonly search_rank?: string | undefined;
|
|
1471
|
-
readonly search_headline?: string | undefined;
|
|
1472
1542
|
readonly owned_by?: {
|
|
1473
1543
|
readonly id: number;
|
|
1474
1544
|
readonly name: string;
|
|
@@ -1492,7 +1562,7 @@ export default function useCanvas(): {
|
|
|
1492
1562
|
readonly font_size?: number | undefined;
|
|
1493
1563
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1494
1564
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1495
|
-
readonly target?:
|
|
1565
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
1496
1566
|
readonly url?: string | undefined;
|
|
1497
1567
|
} | {} | {
|
|
1498
1568
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1525,7 +1595,7 @@ export default function useCanvas(): {
|
|
|
1525
1595
|
}[];
|
|
1526
1596
|
readonly layout: "vertical" | "horizontal";
|
|
1527
1597
|
} | undefined;
|
|
1528
|
-
readonly children?: readonly any[] | undefined;
|
|
1598
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1529
1599
|
readonly when_used_in_section?: {
|
|
1530
1600
|
readonly is_editable: boolean;
|
|
1531
1601
|
readonly is_removable: boolean;
|
|
@@ -1534,6 +1604,11 @@ export default function useCanvas(): {
|
|
|
1534
1604
|
readonly [x: string]: any;
|
|
1535
1605
|
} | undefined;
|
|
1536
1606
|
readonly tags?: readonly string[] | undefined;
|
|
1607
|
+
readonly theme_meta?: {
|
|
1608
|
+
readonly bg_color_palette_index: number;
|
|
1609
|
+
readonly dt_header_bg_palette_index: number;
|
|
1610
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
1611
|
+
} | undefined;
|
|
1537
1612
|
} | null>;
|
|
1538
1613
|
addMode: Ref<false | {
|
|
1539
1614
|
type: ComponentTypes;
|
|
@@ -1548,6 +1623,7 @@ export default function useCanvas(): {
|
|
|
1548
1623
|
parentId: ComponentNode["id"] | null;
|
|
1549
1624
|
afterSiblingId: ComponentNode["id"] | null;
|
|
1550
1625
|
}>;
|
|
1626
|
+
areTokenConstraintsActive: import('vue').ComputedRef<boolean>;
|
|
1551
1627
|
canvasContent: Ref<{
|
|
1552
1628
|
id: string;
|
|
1553
1629
|
type: ComponentTypes;
|
|
@@ -1558,9 +1634,12 @@ export default function useCanvas(): {
|
|
|
1558
1634
|
pdf: boolean;
|
|
1559
1635
|
web: boolean;
|
|
1560
1636
|
} | undefined;
|
|
1637
|
+
linkable?: {
|
|
1638
|
+
linkable_in_templates: boolean;
|
|
1639
|
+
} | undefined;
|
|
1561
1640
|
allow_admins_to_overwrite?: boolean | undefined;
|
|
1562
|
-
autofill?:
|
|
1563
|
-
autofill_content_types?:
|
|
1641
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1642
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1564
1643
|
data?: import('../types/canvas').PageBreakProps | {
|
|
1565
1644
|
groups: {
|
|
1566
1645
|
id: string;
|
|
@@ -1573,6 +1652,7 @@ export default function useCanvas(): {
|
|
|
1573
1652
|
readonly id: string;
|
|
1574
1653
|
name?: string | undefined;
|
|
1575
1654
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1655
|
+
tags?: Array<string> | undefined;
|
|
1576
1656
|
readonly thumbnail_url: string | null;
|
|
1577
1657
|
permissions?: {
|
|
1578
1658
|
can_download?: boolean | undefined;
|
|
@@ -1596,6 +1676,7 @@ export default function useCanvas(): {
|
|
|
1596
1676
|
readonly id: string;
|
|
1597
1677
|
name?: string | undefined;
|
|
1598
1678
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1679
|
+
tags?: Array<string> | undefined;
|
|
1599
1680
|
readonly thumbnail_url: string | null;
|
|
1600
1681
|
permissions?: {
|
|
1601
1682
|
can_download?: boolean | undefined;
|
|
@@ -1609,7 +1690,9 @@ export default function useCanvas(): {
|
|
|
1609
1690
|
};
|
|
1610
1691
|
})[];
|
|
1611
1692
|
}[];
|
|
1693
|
+
filters?: Record<string, any> | undefined;
|
|
1612
1694
|
name: string;
|
|
1695
|
+
hide_footer?: boolean | undefined;
|
|
1613
1696
|
} | {
|
|
1614
1697
|
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
1615
1698
|
columns: number;
|
|
@@ -1635,8 +1718,9 @@ export default function useCanvas(): {
|
|
|
1635
1718
|
external_url: string;
|
|
1636
1719
|
type: "image" | "video";
|
|
1637
1720
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1638
|
-
from?:
|
|
1721
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1639
1722
|
poster_url?: string | undefined;
|
|
1723
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1640
1724
|
} | {
|
|
1641
1725
|
asset_type: "pitcher_asset";
|
|
1642
1726
|
file: {
|
|
@@ -1647,6 +1731,7 @@ export default function useCanvas(): {
|
|
|
1647
1731
|
type: "image" | "video";
|
|
1648
1732
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1649
1733
|
poster_url?: string | undefined;
|
|
1734
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1650
1735
|
} | {
|
|
1651
1736
|
type: "app";
|
|
1652
1737
|
app_name: string;
|
|
@@ -1656,13 +1741,13 @@ export default function useCanvas(): {
|
|
|
1656
1741
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1657
1742
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1658
1743
|
properties_by_embed_location?: {
|
|
1659
|
-
|
|
1744
|
+
dsr?: {
|
|
1660
1745
|
start_in_loading_mode?: boolean | undefined;
|
|
1661
1746
|
} | undefined;
|
|
1662
|
-
|
|
1747
|
+
canvas?: {
|
|
1663
1748
|
start_in_loading_mode?: boolean | undefined;
|
|
1664
1749
|
} | undefined;
|
|
1665
|
-
|
|
1750
|
+
ui_app?: {
|
|
1666
1751
|
start_in_loading_mode?: boolean | undefined;
|
|
1667
1752
|
} | undefined;
|
|
1668
1753
|
admin_instance?: {
|
|
@@ -1748,6 +1833,9 @@ export default function useCanvas(): {
|
|
|
1748
1833
|
background_video_url?: string | undefined;
|
|
1749
1834
|
}[];
|
|
1750
1835
|
animation_in?: string | undefined;
|
|
1836
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1837
|
+
selection_app_name?: string | undefined;
|
|
1838
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
1751
1839
|
} | {
|
|
1752
1840
|
html: string;
|
|
1753
1841
|
} | {
|
|
@@ -1773,6 +1861,7 @@ export default function useCanvas(): {
|
|
|
1773
1861
|
readonly content_length?: number | null | undefined;
|
|
1774
1862
|
readonly content_url?: string | null | undefined;
|
|
1775
1863
|
readonly original_extension?: string | null | undefined;
|
|
1864
|
+
readonly original_url?: string | null | undefined;
|
|
1776
1865
|
readonly thumbnail_url?: string | null | undefined;
|
|
1777
1866
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1778
1867
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1787,7 +1876,7 @@ export default function useCanvas(): {
|
|
|
1787
1876
|
app_metadata?: Record<string, any> | undefined;
|
|
1788
1877
|
tags?: Array<string> | undefined;
|
|
1789
1878
|
readonly published_at?: string | null | undefined;
|
|
1790
|
-
expires_at?:
|
|
1879
|
+
expires_at?: string | null | undefined;
|
|
1791
1880
|
readonly instance_id?: string | undefined;
|
|
1792
1881
|
folder_id?: string | undefined;
|
|
1793
1882
|
readonly folder?: {
|
|
@@ -1796,10 +1885,8 @@ export default function useCanvas(): {
|
|
|
1796
1885
|
} | undefined;
|
|
1797
1886
|
readonly shared_link?: {
|
|
1798
1887
|
readonly url: string;
|
|
1799
|
-
short_url?:
|
|
1888
|
+
short_url?: string | null | undefined;
|
|
1800
1889
|
} | undefined;
|
|
1801
|
-
readonly search_rank?: string | undefined;
|
|
1802
|
-
readonly search_headline?: string | undefined;
|
|
1803
1890
|
readonly owned_by?: {
|
|
1804
1891
|
readonly id: number;
|
|
1805
1892
|
readonly name: string;
|
|
@@ -1823,7 +1910,7 @@ export default function useCanvas(): {
|
|
|
1823
1910
|
font_size?: number | undefined;
|
|
1824
1911
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1825
1912
|
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1826
|
-
target?:
|
|
1913
|
+
target?: "_self" | "_blank" | undefined;
|
|
1827
1914
|
url?: string | undefined;
|
|
1828
1915
|
} | {
|
|
1829
1916
|
aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1844,13 +1931,18 @@ export default function useCanvas(): {
|
|
|
1844
1931
|
}[];
|
|
1845
1932
|
layout: "vertical" | "horizontal";
|
|
1846
1933
|
} | undefined;
|
|
1847
|
-
children?: any[] | undefined;
|
|
1934
|
+
children?: /*elided*/ any[] | undefined;
|
|
1848
1935
|
when_used_in_section?: {
|
|
1849
1936
|
is_editable: boolean;
|
|
1850
1937
|
is_removable: boolean;
|
|
1851
1938
|
} | undefined;
|
|
1852
1939
|
style?: Record<string, any> | undefined;
|
|
1853
1940
|
tags?: string[] | undefined;
|
|
1941
|
+
theme_meta?: {
|
|
1942
|
+
bg_color_palette_index: number;
|
|
1943
|
+
dt_header_bg_palette_index: number;
|
|
1944
|
+
dt_group_header_bg_palette_index: number;
|
|
1945
|
+
} | undefined;
|
|
1854
1946
|
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | import('../types/canvas').MultimediaProps | import('../types/canvas').EmbeddableProps | import('../types/canvas').ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps>[] | {
|
|
1855
1947
|
id: string;
|
|
1856
1948
|
type: ComponentTypes;
|
|
@@ -1861,9 +1953,12 @@ export default function useCanvas(): {
|
|
|
1861
1953
|
pdf: boolean;
|
|
1862
1954
|
web: boolean;
|
|
1863
1955
|
} | undefined;
|
|
1956
|
+
linkable?: {
|
|
1957
|
+
linkable_in_templates: boolean;
|
|
1958
|
+
} | undefined;
|
|
1864
1959
|
allow_admins_to_overwrite?: boolean | undefined;
|
|
1865
|
-
autofill?:
|
|
1866
|
-
autofill_content_types?:
|
|
1960
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1961
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1867
1962
|
data?: import('../types/canvas').PageBreakProps | {
|
|
1868
1963
|
groups: {
|
|
1869
1964
|
id: string;
|
|
@@ -1876,6 +1971,7 @@ export default function useCanvas(): {
|
|
|
1876
1971
|
readonly id: string;
|
|
1877
1972
|
name?: string | undefined;
|
|
1878
1973
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1974
|
+
tags?: Array<string> | undefined;
|
|
1879
1975
|
readonly thumbnail_url: string | null;
|
|
1880
1976
|
permissions?: {
|
|
1881
1977
|
can_download?: boolean | undefined;
|
|
@@ -1899,6 +1995,7 @@ export default function useCanvas(): {
|
|
|
1899
1995
|
readonly id: string;
|
|
1900
1996
|
name?: string | undefined;
|
|
1901
1997
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1998
|
+
tags?: Array<string> | undefined;
|
|
1902
1999
|
readonly thumbnail_url: string | null;
|
|
1903
2000
|
permissions?: {
|
|
1904
2001
|
can_download?: boolean | undefined;
|
|
@@ -1912,7 +2009,9 @@ export default function useCanvas(): {
|
|
|
1912
2009
|
};
|
|
1913
2010
|
})[];
|
|
1914
2011
|
}[];
|
|
2012
|
+
filters?: Record<string, any> | undefined;
|
|
1915
2013
|
name: string;
|
|
2014
|
+
hide_footer?: boolean | undefined;
|
|
1916
2015
|
} | {
|
|
1917
2016
|
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
1918
2017
|
columns: number;
|
|
@@ -1938,8 +2037,9 @@ export default function useCanvas(): {
|
|
|
1938
2037
|
external_url: string;
|
|
1939
2038
|
type: "image" | "video";
|
|
1940
2039
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1941
|
-
from?:
|
|
2040
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1942
2041
|
poster_url?: string | undefined;
|
|
2042
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1943
2043
|
} | {
|
|
1944
2044
|
asset_type: "pitcher_asset";
|
|
1945
2045
|
file: {
|
|
@@ -1950,6 +2050,7 @@ export default function useCanvas(): {
|
|
|
1950
2050
|
type: "image" | "video";
|
|
1951
2051
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1952
2052
|
poster_url?: string | undefined;
|
|
2053
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1953
2054
|
} | {
|
|
1954
2055
|
type: "app";
|
|
1955
2056
|
app_name: string;
|
|
@@ -1959,13 +2060,13 @@ export default function useCanvas(): {
|
|
|
1959
2060
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1960
2061
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1961
2062
|
properties_by_embed_location?: {
|
|
1962
|
-
|
|
2063
|
+
dsr?: {
|
|
1963
2064
|
start_in_loading_mode?: boolean | undefined;
|
|
1964
2065
|
} | undefined;
|
|
1965
|
-
|
|
2066
|
+
canvas?: {
|
|
1966
2067
|
start_in_loading_mode?: boolean | undefined;
|
|
1967
2068
|
} | undefined;
|
|
1968
|
-
|
|
2069
|
+
ui_app?: {
|
|
1969
2070
|
start_in_loading_mode?: boolean | undefined;
|
|
1970
2071
|
} | undefined;
|
|
1971
2072
|
admin_instance?: {
|
|
@@ -2051,6 +2152,9 @@ export default function useCanvas(): {
|
|
|
2051
2152
|
background_video_url?: string | undefined;
|
|
2052
2153
|
}[];
|
|
2053
2154
|
animation_in?: string | undefined;
|
|
2155
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2156
|
+
selection_app_name?: string | undefined;
|
|
2157
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
2054
2158
|
} | {
|
|
2055
2159
|
html: string;
|
|
2056
2160
|
} | {
|
|
@@ -2076,6 +2180,7 @@ export default function useCanvas(): {
|
|
|
2076
2180
|
readonly content_length?: number | null | undefined;
|
|
2077
2181
|
readonly content_url?: string | null | undefined;
|
|
2078
2182
|
readonly original_extension?: string | null | undefined;
|
|
2183
|
+
readonly original_url?: string | null | undefined;
|
|
2079
2184
|
readonly thumbnail_url?: string | null | undefined;
|
|
2080
2185
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2081
2186
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2090,7 +2195,7 @@ export default function useCanvas(): {
|
|
|
2090
2195
|
app_metadata?: Record<string, any> | undefined;
|
|
2091
2196
|
tags?: Array<string> | undefined;
|
|
2092
2197
|
readonly published_at?: string | null | undefined;
|
|
2093
|
-
expires_at?:
|
|
2198
|
+
expires_at?: string | null | undefined;
|
|
2094
2199
|
readonly instance_id?: string | undefined;
|
|
2095
2200
|
folder_id?: string | undefined;
|
|
2096
2201
|
readonly folder?: {
|
|
@@ -2099,10 +2204,8 @@ export default function useCanvas(): {
|
|
|
2099
2204
|
} | undefined;
|
|
2100
2205
|
readonly shared_link?: {
|
|
2101
2206
|
readonly url: string;
|
|
2102
|
-
short_url?:
|
|
2207
|
+
short_url?: string | null | undefined;
|
|
2103
2208
|
} | undefined;
|
|
2104
|
-
readonly search_rank?: string | undefined;
|
|
2105
|
-
readonly search_headline?: string | undefined;
|
|
2106
2209
|
readonly owned_by?: {
|
|
2107
2210
|
readonly id: number;
|
|
2108
2211
|
readonly name: string;
|
|
@@ -2126,7 +2229,7 @@ export default function useCanvas(): {
|
|
|
2126
2229
|
font_size?: number | undefined;
|
|
2127
2230
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2128
2231
|
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2129
|
-
target?:
|
|
2232
|
+
target?: "_self" | "_blank" | undefined;
|
|
2130
2233
|
url?: string | undefined;
|
|
2131
2234
|
} | {
|
|
2132
2235
|
aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2147,14 +2250,38 @@ export default function useCanvas(): {
|
|
|
2147
2250
|
}[];
|
|
2148
2251
|
layout: "vertical" | "horizontal";
|
|
2149
2252
|
} | undefined;
|
|
2150
|
-
children?: any[] | undefined;
|
|
2253
|
+
children?: /*elided*/ any[] | undefined;
|
|
2151
2254
|
when_used_in_section?: {
|
|
2152
2255
|
is_editable: boolean;
|
|
2153
2256
|
is_removable: boolean;
|
|
2154
2257
|
} | undefined;
|
|
2155
2258
|
style?: Record<string, any> | undefined;
|
|
2156
2259
|
tags?: string[] | undefined;
|
|
2260
|
+
theme_meta?: {
|
|
2261
|
+
bg_color_palette_index: number;
|
|
2262
|
+
dt_header_bg_palette_index: number;
|
|
2263
|
+
dt_group_header_bg_palette_index: number;
|
|
2264
|
+
} | undefined;
|
|
2157
2265
|
}[]>;
|
|
2266
|
+
canvasHomePage: Ref<{
|
|
2267
|
+
component_id: ComponentNode["id"];
|
|
2268
|
+
section_id?: (CanvasRetrieve["id"] | null) | undefined;
|
|
2269
|
+
} | null, {
|
|
2270
|
+
component_id: ComponentNode["id"];
|
|
2271
|
+
section_id?: CanvasRetrieve["id"] | null;
|
|
2272
|
+
} | {
|
|
2273
|
+
component_id: ComponentNode["id"];
|
|
2274
|
+
section_id?: (CanvasRetrieve["id"] | null) | undefined;
|
|
2275
|
+
} | null>;
|
|
2276
|
+
canvasMetadata: Ref<{
|
|
2277
|
+
[x: string]: any;
|
|
2278
|
+
presentation_component_metadata: Record<string, any>;
|
|
2279
|
+
} | null, (Record<string, any> & {
|
|
2280
|
+
presentation_component_metadata: Record<string, any>;
|
|
2281
|
+
}) | {
|
|
2282
|
+
[x: string]: any;
|
|
2283
|
+
presentation_component_metadata: Record<string, any>;
|
|
2284
|
+
} | null>;
|
|
2158
2285
|
componentEditMode: Ref<false | {
|
|
2159
2286
|
type: ComponentTypes;
|
|
2160
2287
|
id: ComponentNode["id"] | null;
|
|
@@ -2182,8 +2309,11 @@ export default function useCanvas(): {
|
|
|
2182
2309
|
readonly pdf: boolean;
|
|
2183
2310
|
readonly web: boolean;
|
|
2184
2311
|
} | undefined;
|
|
2312
|
+
readonly linkable?: {
|
|
2313
|
+
readonly linkable_in_templates: boolean;
|
|
2314
|
+
} | undefined;
|
|
2185
2315
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
2186
|
-
readonly autofill?:
|
|
2316
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
2187
2317
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
2188
2318
|
readonly data?: {
|
|
2189
2319
|
readonly groups: readonly {
|
|
@@ -2199,6 +2329,7 @@ export default function useCanvas(): {
|
|
|
2199
2329
|
readonly id: string;
|
|
2200
2330
|
readonly name?: string | undefined;
|
|
2201
2331
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2332
|
+
readonly tags?: readonly string[] | undefined;
|
|
2202
2333
|
readonly thumbnail_url: string | null;
|
|
2203
2334
|
readonly permissions?: {
|
|
2204
2335
|
readonly can_download?: boolean | undefined;
|
|
@@ -2226,6 +2357,7 @@ export default function useCanvas(): {
|
|
|
2226
2357
|
readonly id: string;
|
|
2227
2358
|
readonly name?: string | undefined;
|
|
2228
2359
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2360
|
+
readonly tags?: readonly string[] | undefined;
|
|
2229
2361
|
readonly thumbnail_url: string | null;
|
|
2230
2362
|
readonly permissions?: {
|
|
2231
2363
|
readonly can_download?: boolean | undefined;
|
|
@@ -2241,7 +2373,11 @@ export default function useCanvas(): {
|
|
|
2241
2373
|
};
|
|
2242
2374
|
})[];
|
|
2243
2375
|
}[];
|
|
2376
|
+
readonly filters?: {
|
|
2377
|
+
readonly [x: string]: any;
|
|
2378
|
+
} | undefined;
|
|
2244
2379
|
readonly name: string;
|
|
2380
|
+
readonly hide_footer?: boolean | undefined;
|
|
2245
2381
|
} | {
|
|
2246
2382
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
2247
2383
|
readonly columns: number;
|
|
@@ -2271,8 +2407,9 @@ export default function useCanvas(): {
|
|
|
2271
2407
|
readonly external_url: string;
|
|
2272
2408
|
readonly type: "image" | "video";
|
|
2273
2409
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2274
|
-
readonly from?:
|
|
2410
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2275
2411
|
readonly poster_url?: string | undefined;
|
|
2412
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2276
2413
|
} | {
|
|
2277
2414
|
readonly asset_type: "pitcher_asset";
|
|
2278
2415
|
readonly file: {
|
|
@@ -2283,6 +2420,7 @@ export default function useCanvas(): {
|
|
|
2283
2420
|
readonly type: "image" | "video";
|
|
2284
2421
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2285
2422
|
readonly poster_url?: string | undefined;
|
|
2423
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2286
2424
|
} | {
|
|
2287
2425
|
readonly type: "app";
|
|
2288
2426
|
readonly app_name: string;
|
|
@@ -2292,13 +2430,13 @@ export default function useCanvas(): {
|
|
|
2292
2430
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2293
2431
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2294
2432
|
readonly properties_by_embed_location?: {
|
|
2295
|
-
readonly
|
|
2433
|
+
readonly dsr?: {
|
|
2296
2434
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2297
2435
|
} | undefined;
|
|
2298
|
-
readonly
|
|
2436
|
+
readonly canvas?: {
|
|
2299
2437
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2300
2438
|
} | undefined;
|
|
2301
|
-
readonly
|
|
2439
|
+
readonly ui_app?: {
|
|
2302
2440
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2303
2441
|
} | undefined;
|
|
2304
2442
|
readonly admin_instance?: {
|
|
@@ -2392,6 +2530,9 @@ export default function useCanvas(): {
|
|
|
2392
2530
|
readonly background_video_url?: string | undefined;
|
|
2393
2531
|
}[];
|
|
2394
2532
|
readonly animation_in?: string | undefined;
|
|
2533
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2534
|
+
readonly selection_app_name?: string | undefined;
|
|
2535
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
2395
2536
|
} | {
|
|
2396
2537
|
readonly html: string;
|
|
2397
2538
|
} | {
|
|
@@ -2417,6 +2558,7 @@ export default function useCanvas(): {
|
|
|
2417
2558
|
readonly content_length?: number | null | undefined;
|
|
2418
2559
|
readonly content_url?: string | null | undefined;
|
|
2419
2560
|
readonly original_extension?: string | null | undefined;
|
|
2561
|
+
readonly original_url?: string | null | undefined;
|
|
2420
2562
|
readonly thumbnail_url?: string | null | undefined;
|
|
2421
2563
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2422
2564
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2435,7 +2577,7 @@ export default function useCanvas(): {
|
|
|
2435
2577
|
} | undefined;
|
|
2436
2578
|
readonly tags?: readonly string[] | undefined;
|
|
2437
2579
|
readonly published_at?: string | null | undefined;
|
|
2438
|
-
readonly expires_at?:
|
|
2580
|
+
readonly expires_at?: string | null | undefined;
|
|
2439
2581
|
readonly instance_id?: string | undefined;
|
|
2440
2582
|
readonly folder_id?: string | undefined;
|
|
2441
2583
|
readonly folder?: {
|
|
@@ -2444,10 +2586,8 @@ export default function useCanvas(): {
|
|
|
2444
2586
|
} | undefined;
|
|
2445
2587
|
readonly shared_link?: {
|
|
2446
2588
|
readonly url: string;
|
|
2447
|
-
readonly short_url?:
|
|
2589
|
+
readonly short_url?: string | null | undefined;
|
|
2448
2590
|
} | undefined;
|
|
2449
|
-
readonly search_rank?: string | undefined;
|
|
2450
|
-
readonly search_headline?: string | undefined;
|
|
2451
2591
|
readonly owned_by?: {
|
|
2452
2592
|
readonly id: number;
|
|
2453
2593
|
readonly name: string;
|
|
@@ -2471,7 +2611,7 @@ export default function useCanvas(): {
|
|
|
2471
2611
|
readonly font_size?: number | undefined;
|
|
2472
2612
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2473
2613
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2474
|
-
readonly target?:
|
|
2614
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
2475
2615
|
readonly url?: string | undefined;
|
|
2476
2616
|
} | {} | {
|
|
2477
2617
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2504,7 +2644,7 @@ export default function useCanvas(): {
|
|
|
2504
2644
|
}[];
|
|
2505
2645
|
readonly layout: "vertical" | "horizontal";
|
|
2506
2646
|
} | undefined;
|
|
2507
|
-
readonly children?: readonly any[] | undefined;
|
|
2647
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2508
2648
|
readonly when_used_in_section?: {
|
|
2509
2649
|
readonly is_editable: boolean;
|
|
2510
2650
|
readonly is_removable: boolean;
|
|
@@ -2513,6 +2653,11 @@ export default function useCanvas(): {
|
|
|
2513
2653
|
readonly [x: string]: any;
|
|
2514
2654
|
} | undefined;
|
|
2515
2655
|
readonly tags?: readonly string[] | undefined;
|
|
2656
|
+
readonly theme_meta?: {
|
|
2657
|
+
readonly bg_color_palette_index: number;
|
|
2658
|
+
readonly dt_header_bg_palette_index: number;
|
|
2659
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
2660
|
+
} | undefined;
|
|
2516
2661
|
};
|
|
2517
2662
|
}>;
|
|
2518
2663
|
componentSelectedMode: Ref<false | {
|
|
@@ -2530,7 +2675,7 @@ export default function useCanvas(): {
|
|
|
2530
2675
|
} | {
|
|
2531
2676
|
$el: HTMLElement;
|
|
2532
2677
|
} | null>;
|
|
2533
|
-
currentEmbedLocation: import('vue').ComputedRef<"
|
|
2678
|
+
currentEmbedLocation: import('vue').ComputedRef<"dsr" | "canvas">;
|
|
2534
2679
|
displayMode: Ref<"default" | "print" | undefined, "default" | "print" | undefined>;
|
|
2535
2680
|
endPage: Ref<number | undefined, number | undefined>;
|
|
2536
2681
|
fetchFile: Ref<((fileId: import('../../../../types/openapi').FileRetrieve["id"]) => Promise<import('../../../../types/openapi').FileRetrieve>) | ((...data: any[]) => void) | undefined, ((fileId: import('../../../../types/openapi').FileRetrieve["id"]) => Promise<import('../../../../types/openapi').FileRetrieve>) | ((...data: any[]) => void) | undefined>;
|
|
@@ -2539,12 +2684,18 @@ export default function useCanvas(): {
|
|
|
2539
2684
|
isAdmin: import('vue').ComputedRef<boolean>;
|
|
2540
2685
|
isCRM: Ref<boolean, boolean>;
|
|
2541
2686
|
isCanvas: import('vue').ComputedRef<boolean | null>;
|
|
2687
|
+
isCanvasTemplate: import('vue').ComputedRef<boolean | null | undefined>;
|
|
2542
2688
|
isDefaultDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2689
|
+
isDsr: import('vue').ComputedRef<boolean>;
|
|
2543
2690
|
isEditMode: Ref<boolean, boolean>;
|
|
2544
2691
|
isFullscreen: Ref<boolean, boolean>;
|
|
2692
|
+
isImpact: import('vue').ComputedRef<boolean>;
|
|
2545
2693
|
isPrintDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2546
2694
|
isRedirectEvent: Ref<boolean, boolean>;
|
|
2547
2695
|
isSameAsSaved: import('vue').ComputedRef<any>;
|
|
2696
|
+
isContentSameAsSaved: import('vue').ComputedRef<any>;
|
|
2697
|
+
areOverridesSameAsSaved: import('vue').ComputedRef<any>;
|
|
2698
|
+
isHomePageSameAsSaved: import('vue').ComputedRef<boolean>;
|
|
2548
2699
|
isSection: import('vue').ComputedRef<boolean | undefined>;
|
|
2549
2700
|
isTemplate: import('vue').ComputedRef<boolean | undefined>;
|
|
2550
2701
|
isBlock: import('vue').ComputedRef<boolean | undefined>;
|
|
@@ -2571,6 +2722,32 @@ export default function useCanvas(): {
|
|
|
2571
2722
|
}[]>;
|
|
2572
2723
|
onComponentEnter: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
2573
2724
|
onComponentExit: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
2725
|
+
onAppEnter: Ref<((data: {
|
|
2726
|
+
src: string;
|
|
2727
|
+
}) => void) | ((data: {
|
|
2728
|
+
src: string;
|
|
2729
|
+
}) => void) | ((c: {
|
|
2730
|
+
src: string;
|
|
2731
|
+
}) => void) | undefined, ((data: {
|
|
2732
|
+
src: string;
|
|
2733
|
+
}) => void) | ((data: {
|
|
2734
|
+
src: string;
|
|
2735
|
+
}) => void) | ((c: {
|
|
2736
|
+
src: string;
|
|
2737
|
+
}) => void) | undefined>;
|
|
2738
|
+
onAppExit: Ref<((data: {
|
|
2739
|
+
src: string;
|
|
2740
|
+
}) => void) | ((data: {
|
|
2741
|
+
src: string;
|
|
2742
|
+
}) => void) | ((c: {
|
|
2743
|
+
src: string;
|
|
2744
|
+
}) => void) | undefined, ((data: {
|
|
2745
|
+
src: string;
|
|
2746
|
+
}) => void) | ((data: {
|
|
2747
|
+
src: string;
|
|
2748
|
+
}) => void) | ((c: {
|
|
2749
|
+
src: string;
|
|
2750
|
+
}) => void) | undefined>;
|
|
2574
2751
|
onPageEnter: Ref<((data: ComponentNode[], pageIndex: number) => void) | ((data: ComponentNode[], pageIndex: number) => void) | ((c: ComponentNode[]) => void) | undefined, ((data: ComponentNode[], pageIndex: number) => void) | ((data: ComponentNode[], pageIndex: number) => void) | ((c: ComponentNode[]) => void) | undefined>;
|
|
2575
2752
|
onPageExit: Ref<((data: ComponentNode[], pageIndex: number) => void) | ((data: ComponentNode[], pageIndex: number) => void) | ((c: ComponentNode[]) => void) | undefined, ((data: ComponentNode[], pageIndex: number) => void) | ((data: ComponentNode[], pageIndex: number) => void) | ((c: ComponentNode[]) => void) | undefined>;
|
|
2576
2753
|
onDownloadCanvas: Ref<((canvas: CanvasRetrieve) => Promise<void>) | ((canvas: CanvasRetrieve) => Promise<void>) | ((...data: any[]) => void) | undefined, ((canvas: CanvasRetrieve) => Promise<void>) | ((canvas: CanvasRetrieve) => Promise<void>) | ((...data: any[]) => void) | undefined>;
|
|
@@ -2597,13 +2774,13 @@ export default function useCanvas(): {
|
|
|
2597
2774
|
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined, ((canvasId: CanvasRetrieve["id"], canvas: import('../../../../types/openapi').PatchedCanvasUpdateRequest & {
|
|
2598
2775
|
fields?: string;
|
|
2599
2776
|
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined>;
|
|
2600
|
-
onSfdcAccountSearch: Ref<((searchTerm?: import('
|
|
2777
|
+
onSfdcAccountSearch: Ref<((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2601
2778
|
accountsLoading: Ref<boolean>;
|
|
2602
2779
|
accounts: Ref<{
|
|
2603
2780
|
label: string;
|
|
2604
2781
|
value: string;
|
|
2605
2782
|
}[]>;
|
|
2606
|
-
}) | ((...data: any[]) => void), ((searchTerm?: import('
|
|
2783
|
+
}) | ((...data: any[]) => void), ((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2607
2784
|
accountsLoading: Ref<boolean>;
|
|
2608
2785
|
accounts: Ref<{
|
|
2609
2786
|
label: string;
|
|
@@ -2660,8 +2837,11 @@ export default function useCanvas(): {
|
|
|
2660
2837
|
readonly pdf: boolean;
|
|
2661
2838
|
readonly web: boolean;
|
|
2662
2839
|
} | undefined;
|
|
2840
|
+
readonly linkable?: {
|
|
2841
|
+
readonly linkable_in_templates: boolean;
|
|
2842
|
+
} | undefined;
|
|
2663
2843
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
2664
|
-
readonly autofill?:
|
|
2844
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
2665
2845
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
2666
2846
|
readonly data?: {
|
|
2667
2847
|
readonly groups: readonly {
|
|
@@ -2677,6 +2857,7 @@ export default function useCanvas(): {
|
|
|
2677
2857
|
readonly id: string;
|
|
2678
2858
|
readonly name?: string | undefined;
|
|
2679
2859
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2860
|
+
readonly tags?: readonly string[] | undefined;
|
|
2680
2861
|
readonly thumbnail_url: string | null;
|
|
2681
2862
|
readonly permissions?: {
|
|
2682
2863
|
readonly can_download?: boolean | undefined;
|
|
@@ -2704,6 +2885,7 @@ export default function useCanvas(): {
|
|
|
2704
2885
|
readonly id: string;
|
|
2705
2886
|
readonly name?: string | undefined;
|
|
2706
2887
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2888
|
+
readonly tags?: readonly string[] | undefined;
|
|
2707
2889
|
readonly thumbnail_url: string | null;
|
|
2708
2890
|
readonly permissions?: {
|
|
2709
2891
|
readonly can_download?: boolean | undefined;
|
|
@@ -2719,7 +2901,11 @@ export default function useCanvas(): {
|
|
|
2719
2901
|
};
|
|
2720
2902
|
})[];
|
|
2721
2903
|
}[];
|
|
2904
|
+
readonly filters?: {
|
|
2905
|
+
readonly [x: string]: any;
|
|
2906
|
+
} | undefined;
|
|
2722
2907
|
readonly name: string;
|
|
2908
|
+
readonly hide_footer?: boolean | undefined;
|
|
2723
2909
|
} | {
|
|
2724
2910
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
2725
2911
|
readonly columns: number;
|
|
@@ -2749,8 +2935,9 @@ export default function useCanvas(): {
|
|
|
2749
2935
|
readonly external_url: string;
|
|
2750
2936
|
readonly type: "image" | "video";
|
|
2751
2937
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2752
|
-
readonly from?:
|
|
2938
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2753
2939
|
readonly poster_url?: string | undefined;
|
|
2940
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2754
2941
|
} | {
|
|
2755
2942
|
readonly asset_type: "pitcher_asset";
|
|
2756
2943
|
readonly file: {
|
|
@@ -2761,6 +2948,7 @@ export default function useCanvas(): {
|
|
|
2761
2948
|
readonly type: "image" | "video";
|
|
2762
2949
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2763
2950
|
readonly poster_url?: string | undefined;
|
|
2951
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2764
2952
|
} | {
|
|
2765
2953
|
readonly type: "app";
|
|
2766
2954
|
readonly app_name: string;
|
|
@@ -2770,13 +2958,13 @@ export default function useCanvas(): {
|
|
|
2770
2958
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2771
2959
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2772
2960
|
readonly properties_by_embed_location?: {
|
|
2773
|
-
readonly
|
|
2961
|
+
readonly dsr?: {
|
|
2774
2962
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2775
2963
|
} | undefined;
|
|
2776
|
-
readonly
|
|
2964
|
+
readonly canvas?: {
|
|
2777
2965
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2778
2966
|
} | undefined;
|
|
2779
|
-
readonly
|
|
2967
|
+
readonly ui_app?: {
|
|
2780
2968
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2781
2969
|
} | undefined;
|
|
2782
2970
|
readonly admin_instance?: {
|
|
@@ -2870,6 +3058,9 @@ export default function useCanvas(): {
|
|
|
2870
3058
|
readonly background_video_url?: string | undefined;
|
|
2871
3059
|
}[];
|
|
2872
3060
|
readonly animation_in?: string | undefined;
|
|
3061
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3062
|
+
readonly selection_app_name?: string | undefined;
|
|
3063
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
2873
3064
|
} | {
|
|
2874
3065
|
readonly html: string;
|
|
2875
3066
|
} | {
|
|
@@ -2895,6 +3086,7 @@ export default function useCanvas(): {
|
|
|
2895
3086
|
readonly content_length?: number | null | undefined;
|
|
2896
3087
|
readonly content_url?: string | null | undefined;
|
|
2897
3088
|
readonly original_extension?: string | null | undefined;
|
|
3089
|
+
readonly original_url?: string | null | undefined;
|
|
2898
3090
|
readonly thumbnail_url?: string | null | undefined;
|
|
2899
3091
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2900
3092
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2913,7 +3105,7 @@ export default function useCanvas(): {
|
|
|
2913
3105
|
} | undefined;
|
|
2914
3106
|
readonly tags?: readonly string[] | undefined;
|
|
2915
3107
|
readonly published_at?: string | null | undefined;
|
|
2916
|
-
readonly expires_at?:
|
|
3108
|
+
readonly expires_at?: string | null | undefined;
|
|
2917
3109
|
readonly instance_id?: string | undefined;
|
|
2918
3110
|
readonly folder_id?: string | undefined;
|
|
2919
3111
|
readonly folder?: {
|
|
@@ -2922,10 +3114,8 @@ export default function useCanvas(): {
|
|
|
2922
3114
|
} | undefined;
|
|
2923
3115
|
readonly shared_link?: {
|
|
2924
3116
|
readonly url: string;
|
|
2925
|
-
readonly short_url?:
|
|
3117
|
+
readonly short_url?: string | null | undefined;
|
|
2926
3118
|
} | undefined;
|
|
2927
|
-
readonly search_rank?: string | undefined;
|
|
2928
|
-
readonly search_headline?: string | undefined;
|
|
2929
3119
|
readonly owned_by?: {
|
|
2930
3120
|
readonly id: number;
|
|
2931
3121
|
readonly name: string;
|
|
@@ -2949,7 +3139,7 @@ export default function useCanvas(): {
|
|
|
2949
3139
|
readonly font_size?: number | undefined;
|
|
2950
3140
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2951
3141
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2952
|
-
readonly target?:
|
|
3142
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
2953
3143
|
readonly url?: string | undefined;
|
|
2954
3144
|
} | {} | {
|
|
2955
3145
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2982,7 +3172,7 @@ export default function useCanvas(): {
|
|
|
2982
3172
|
}[];
|
|
2983
3173
|
readonly layout: "vertical" | "horizontal";
|
|
2984
3174
|
} | undefined;
|
|
2985
|
-
readonly children?: readonly any[] | undefined;
|
|
3175
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2986
3176
|
readonly when_used_in_section?: {
|
|
2987
3177
|
readonly is_editable: boolean;
|
|
2988
3178
|
readonly is_removable: boolean;
|
|
@@ -2991,6 +3181,11 @@ export default function useCanvas(): {
|
|
|
2991
3181
|
readonly [x: string]: any;
|
|
2992
3182
|
} | undefined;
|
|
2993
3183
|
readonly tags?: readonly string[] | undefined;
|
|
3184
|
+
readonly theme_meta?: {
|
|
3185
|
+
readonly bg_color_palette_index: number;
|
|
3186
|
+
readonly dt_header_bg_palette_index: number;
|
|
3187
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
3188
|
+
} | undefined;
|
|
2994
3189
|
};
|
|
2995
3190
|
};
|
|
2996
3191
|
}>;
|
|
@@ -2999,17 +3194,49 @@ export default function useCanvas(): {
|
|
|
2999
3194
|
share: Ref<((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined, ((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined>;
|
|
3000
3195
|
singletonsInCanvasMap: import('vue').ComputedRef<Record<ComponentTypes, boolean>>;
|
|
3001
3196
|
startPage: Ref<number | undefined, number | undefined>;
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
}
|
|
3012
|
-
|
|
3197
|
+
renderBuilder: Ref<boolean, boolean>;
|
|
3198
|
+
visibleCollectionPlayerRefs: Ref<Set<Ref<{
|
|
3199
|
+
isFullscreen: Ref<boolean>;
|
|
3200
|
+
handleKeyAction: ActionCallback;
|
|
3201
|
+
element: HTMLElement;
|
|
3202
|
+
} | null, {
|
|
3203
|
+
isFullscreen: Ref<boolean>;
|
|
3204
|
+
handleKeyAction: ActionCallback;
|
|
3205
|
+
element: HTMLElement;
|
|
3206
|
+
} | null>> & Omit<Set<Ref<{
|
|
3207
|
+
isFullscreen: Ref<boolean>;
|
|
3208
|
+
handleKeyAction: ActionCallback;
|
|
3209
|
+
element: HTMLElement;
|
|
3210
|
+
} | null, {
|
|
3211
|
+
isFullscreen: Ref<boolean>;
|
|
3212
|
+
handleKeyAction: ActionCallback;
|
|
3213
|
+
element: HTMLElement;
|
|
3214
|
+
} | null>>, keyof Set<any>>, Set<Ref<{
|
|
3215
|
+
isFullscreen: Ref<boolean>;
|
|
3216
|
+
handleKeyAction: ActionCallback;
|
|
3217
|
+
element: HTMLElement;
|
|
3218
|
+
} | null, {
|
|
3219
|
+
isFullscreen: Ref<boolean>;
|
|
3220
|
+
handleKeyAction: ActionCallback;
|
|
3221
|
+
element: HTMLElement;
|
|
3222
|
+
} | null>> | (Set<Ref<{
|
|
3223
|
+
isFullscreen: Ref<boolean>;
|
|
3224
|
+
handleKeyAction: ActionCallback;
|
|
3225
|
+
element: HTMLElement;
|
|
3226
|
+
} | null, {
|
|
3227
|
+
isFullscreen: Ref<boolean>;
|
|
3228
|
+
handleKeyAction: ActionCallback;
|
|
3229
|
+
element: HTMLElement;
|
|
3230
|
+
} | null>> & Omit<Set<Ref<{
|
|
3231
|
+
isFullscreen: Ref<boolean>;
|
|
3232
|
+
handleKeyAction: ActionCallback;
|
|
3233
|
+
element: HTMLElement;
|
|
3234
|
+
} | null, {
|
|
3235
|
+
isFullscreen: Ref<boolean>;
|
|
3236
|
+
handleKeyAction: ActionCallback;
|
|
3237
|
+
element: HTMLElement;
|
|
3238
|
+
} | null>>, keyof Set<any>>)>;
|
|
3239
|
+
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
3013
3240
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean) => void;
|
|
3014
3241
|
deactivateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean) => void;
|
|
3015
3242
|
addComponentAtParentId: (type: ComponentTypes, parentId?: ComponentNode["id"] | null, afterSiblingId?: ComponentNode["id"] | null, withData?: ComponentNode["data"] | null, withChildren?: ComponentNode["children"], withExtraNodeData?: Partial<ComponentNode>) => void;
|
|
@@ -3034,17 +3261,24 @@ export default function useCanvas(): {
|
|
|
3034
3261
|
content: ComponentNode[];
|
|
3035
3262
|
component?: ComponentNode | null;
|
|
3036
3263
|
}) => void;
|
|
3264
|
+
setCanvasMetadata: (metadata: CanvasMetadataRetrieve["config"] | null) => void;
|
|
3037
3265
|
setComponentEditMode: (type: false | ComponentTypes, id?: ComponentNode["id"] | null, usedInSectionId?: CanvasRetrieve["id"]) => void;
|
|
3038
3266
|
setComponentSelectedMode: (id?: ComponentNode["id"]) => void;
|
|
3039
3267
|
setComponentSettingsMode: (id?: ComponentNode["id"] | false) => void;
|
|
3040
3268
|
setInCall: (value?: boolean | undefined) => void;
|
|
3041
3269
|
setIsEditMode: (value: boolean) => void;
|
|
3042
3270
|
updateActiveCanvasProperties: (newProperties: Partial<CanvasRetrieve>) => void;
|
|
3271
|
+
updateHomePageSettings: (homePage: {
|
|
3272
|
+
component_id: string;
|
|
3273
|
+
section_id?: string | null;
|
|
3274
|
+
} | null) => void;
|
|
3043
3275
|
updateNodeData: (data: ComponentNode["data"], id: ComponentNode["id"], sectionId?: CanvasRetrieve["id"]) => void;
|
|
3044
3276
|
updateNodeDataById: (id: ComponentNode["id"], newData: ComponentNode["data"]) => void;
|
|
3045
3277
|
deepMergeNodeById: (id: ComponentNode["id"], patch: Partial<ComponentNode>) => void;
|
|
3046
3278
|
cleanup: typeof cleanup;
|
|
3047
3279
|
saveCanvasContent: typeof saveCanvasContent;
|
|
3048
3280
|
saveCanvasContext: typeof saveCanvasContext;
|
|
3281
|
+
saveCanvasContentWithContext: typeof saveCanvasContentWithContext;
|
|
3282
|
+
navigateToHome: () => Promise<boolean>;
|
|
3049
3283
|
};
|
|
3050
3284
|
export {};
|