@pitcher/js-api 1.24.0-beta.3 → 1.24.0-rc.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 +2416 -2358
- 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 +8 -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 +162 -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 +48 -18
- package/lib/apps/browser/stores/app.d.ts +9 -3
- package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
- package/lib/apps/browser/stores/upload.d.ts +20 -12
- package/lib/apps/browser/util/file.d.ts +1 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +5 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +27 -32
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
- 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 +56 -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 +12 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +15 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +45 -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 +15 -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 +9 -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 +39 -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/useCanvas.d.ts +251 -119
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +64 -36
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +52 -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 +4 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +112 -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 +7 -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/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 +7 -3
- package/lib/apps/collection-player/types/collection-player.type.d.ts +1 -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 +164 -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 +11 -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 +15 -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 +25 -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 +3 -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 +211 -57
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
- 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 +3 -6
- package/lib/components/CImage/CImage.vue.d.ts +5 -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/CSearchFilters/CSearchFilters.vue.d.ts +88 -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 +9 -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 +1126 -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 +397 -52
- 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 +38 -18
- 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 +8 -3
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
- package/lib/components/filters/CSearchFilter.vue.d.ts +76 -2
- package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +531 -62
- 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 +5 -17
- 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 +53 -0
- package/lib/composables/useCoreApi.d.ts +7 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
- package/lib/composables/useMetadataTemplates.d.ts +246 -0
- package/lib/composables/useWindowEvents.d.ts +1 -0
- package/lib/constants/appsDb.const.d.ts +4 -0
- 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 +22 -1
- package/lib/sdk/api/HighLevelApi.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 +1 -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/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/content.ui.d.ts +2 -2
- 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 +62 -2
- package/lib/sdk/payload.types.d.ts +4 -0
- package/lib/theme/light.d.ts +6 -0
- package/lib/theme/theme.types.d.ts +7 -0
- package/lib/types/app.d.ts +1 -0
- package/lib/types/canvasTheme.d.ts +37 -0
- package/lib/types/canvases.d.ts +9 -0
- package/lib/types/core/MetadataFilter.d.ts +12 -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 +2 -1
- package/lib/types/folder.d.ts +35 -0
- package/lib/types/instanceSettings.types.d.ts +4 -0
- package/lib/types/launchDarkly.types.d.ts +4 -1
- package/lib/types/organizationSettings.types.d.ts +6 -0
- package/lib/types/query-builder.types.d.ts +7 -0
- 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/query-builder.util.d.ts +2 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/tree-transformation.util.d.ts +7 -0
- package/lib/util/url.d.ts +2 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +0 -2
- 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/FileRetrieve.d.ts +1 -2
- package/types/openapi/models/FileUpdate.d.ts +1 -2
- 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/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/PatchedInstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/SearchCanvas.d.ts +0 -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/StorageRegion.d.ts +0 -5
|
@@ -2,6 +2,9 @@ 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';
|
|
5
8
|
declare function cleanup(): void;
|
|
6
9
|
export type ComponentNodesById = typeof componentNodesById;
|
|
7
10
|
declare const componentNodesById: import('vue').ComputedRef<{
|
|
@@ -15,8 +18,11 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
15
18
|
readonly pdf: boolean;
|
|
16
19
|
readonly web: boolean;
|
|
17
20
|
} | undefined;
|
|
21
|
+
readonly linkable?: {
|
|
22
|
+
readonly linkable_in_templates: boolean;
|
|
23
|
+
} | undefined;
|
|
18
24
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
19
|
-
readonly autofill?:
|
|
25
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
20
26
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
21
27
|
readonly data?: {
|
|
22
28
|
readonly groups: readonly {
|
|
@@ -32,6 +38,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
32
38
|
readonly id: string;
|
|
33
39
|
readonly name?: string | undefined;
|
|
34
40
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
41
|
+
readonly tags?: readonly string[] | undefined;
|
|
35
42
|
readonly thumbnail_url: string | null;
|
|
36
43
|
readonly permissions?: {
|
|
37
44
|
readonly can_download?: boolean | undefined;
|
|
@@ -59,6 +66,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
59
66
|
readonly id: string;
|
|
60
67
|
readonly name?: string | undefined;
|
|
61
68
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
69
|
+
readonly tags?: readonly string[] | undefined;
|
|
62
70
|
readonly thumbnail_url: string | null;
|
|
63
71
|
readonly permissions?: {
|
|
64
72
|
readonly can_download?: boolean | undefined;
|
|
@@ -74,6 +82,9 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
74
82
|
};
|
|
75
83
|
})[];
|
|
76
84
|
}[];
|
|
85
|
+
readonly filters?: {
|
|
86
|
+
readonly [x: string]: any;
|
|
87
|
+
} | undefined;
|
|
77
88
|
readonly name: string;
|
|
78
89
|
} | {
|
|
79
90
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -104,8 +115,9 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
104
115
|
readonly external_url: string;
|
|
105
116
|
readonly type: "image" | "video";
|
|
106
117
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
107
|
-
readonly from?:
|
|
118
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
108
119
|
readonly poster_url?: string | undefined;
|
|
120
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
109
121
|
} | {
|
|
110
122
|
readonly asset_type: "pitcher_asset";
|
|
111
123
|
readonly file: {
|
|
@@ -116,6 +128,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
116
128
|
readonly type: "image" | "video";
|
|
117
129
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
118
130
|
readonly poster_url?: string | undefined;
|
|
131
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
119
132
|
} | {
|
|
120
133
|
readonly type: "app";
|
|
121
134
|
readonly app_name: string;
|
|
@@ -125,13 +138,13 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
125
138
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
126
139
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
127
140
|
readonly properties_by_embed_location?: {
|
|
128
|
-
readonly
|
|
141
|
+
readonly dsr?: {
|
|
129
142
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
130
143
|
} | undefined;
|
|
131
|
-
readonly
|
|
144
|
+
readonly canvas?: {
|
|
132
145
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
133
146
|
} | undefined;
|
|
134
|
-
readonly
|
|
147
|
+
readonly ui_app?: {
|
|
135
148
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
136
149
|
} | undefined;
|
|
137
150
|
readonly admin_instance?: {
|
|
@@ -225,6 +238,8 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
225
238
|
readonly background_video_url?: string | undefined;
|
|
226
239
|
}[];
|
|
227
240
|
readonly animation_in?: string | undefined;
|
|
241
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
242
|
+
readonly selection_app_name?: string | undefined;
|
|
228
243
|
} | {
|
|
229
244
|
readonly html: string;
|
|
230
245
|
} | {
|
|
@@ -250,6 +265,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
250
265
|
readonly content_length?: number | null | undefined;
|
|
251
266
|
readonly content_url?: string | null | undefined;
|
|
252
267
|
readonly original_extension?: string | null | undefined;
|
|
268
|
+
readonly original_url?: string | null | undefined;
|
|
253
269
|
readonly thumbnail_url?: string | null | undefined;
|
|
254
270
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
255
271
|
readonly zip_size?: number | null | undefined;
|
|
@@ -268,7 +284,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
268
284
|
} | undefined;
|
|
269
285
|
readonly tags?: readonly string[] | undefined;
|
|
270
286
|
readonly published_at?: string | null | undefined;
|
|
271
|
-
readonly expires_at?:
|
|
287
|
+
readonly expires_at?: string | null | undefined;
|
|
272
288
|
readonly instance_id?: string | undefined;
|
|
273
289
|
readonly folder_id?: string | undefined;
|
|
274
290
|
readonly folder?: {
|
|
@@ -277,10 +293,8 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
277
293
|
} | undefined;
|
|
278
294
|
readonly shared_link?: {
|
|
279
295
|
readonly url: string;
|
|
280
|
-
readonly short_url?:
|
|
296
|
+
readonly short_url?: string | null | undefined;
|
|
281
297
|
} | undefined;
|
|
282
|
-
readonly search_rank?: string | undefined;
|
|
283
|
-
readonly search_headline?: string | undefined;
|
|
284
298
|
readonly owned_by?: {
|
|
285
299
|
readonly id: number;
|
|
286
300
|
readonly name: string;
|
|
@@ -304,7 +318,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
304
318
|
readonly font_size?: number | undefined;
|
|
305
319
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
306
320
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
307
|
-
readonly target?:
|
|
321
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
308
322
|
readonly url?: string | undefined;
|
|
309
323
|
} | {} | {
|
|
310
324
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -337,7 +351,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
337
351
|
}[];
|
|
338
352
|
readonly layout: "vertical" | "horizontal";
|
|
339
353
|
} | undefined;
|
|
340
|
-
readonly children?: readonly any[] | undefined;
|
|
354
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
341
355
|
readonly when_used_in_section?: {
|
|
342
356
|
readonly is_editable: boolean;
|
|
343
357
|
readonly is_removable: boolean;
|
|
@@ -346,6 +360,11 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
346
360
|
readonly [x: string]: any;
|
|
347
361
|
} | undefined;
|
|
348
362
|
readonly tags?: readonly string[] | undefined;
|
|
363
|
+
readonly theme_meta?: {
|
|
364
|
+
readonly bg_color_palette_index: number;
|
|
365
|
+
readonly dt_header_bg_palette_index: number;
|
|
366
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
367
|
+
} | undefined;
|
|
349
368
|
};
|
|
350
369
|
}>;
|
|
351
370
|
export type SectionComponentNodesBySectionId = typeof sectionComponentNodesBySectionId;
|
|
@@ -361,8 +380,11 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
361
380
|
readonly pdf: boolean;
|
|
362
381
|
readonly web: boolean;
|
|
363
382
|
} | undefined;
|
|
383
|
+
readonly linkable?: {
|
|
384
|
+
readonly linkable_in_templates: boolean;
|
|
385
|
+
} | undefined;
|
|
364
386
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
365
|
-
readonly autofill?:
|
|
387
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
366
388
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
367
389
|
readonly data?: {
|
|
368
390
|
readonly groups: readonly {
|
|
@@ -378,6 +400,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
378
400
|
readonly id: string;
|
|
379
401
|
readonly name?: string | undefined;
|
|
380
402
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
403
|
+
readonly tags?: readonly string[] | undefined;
|
|
381
404
|
readonly thumbnail_url: string | null;
|
|
382
405
|
readonly permissions?: {
|
|
383
406
|
readonly can_download?: boolean | undefined;
|
|
@@ -405,6 +428,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
405
428
|
readonly id: string;
|
|
406
429
|
readonly name?: string | undefined;
|
|
407
430
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
431
|
+
readonly tags?: readonly string[] | undefined;
|
|
408
432
|
readonly thumbnail_url: string | null;
|
|
409
433
|
readonly permissions?: {
|
|
410
434
|
readonly can_download?: boolean | undefined;
|
|
@@ -420,6 +444,9 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
420
444
|
};
|
|
421
445
|
})[];
|
|
422
446
|
}[];
|
|
447
|
+
readonly filters?: {
|
|
448
|
+
readonly [x: string]: any;
|
|
449
|
+
} | undefined;
|
|
423
450
|
readonly name: string;
|
|
424
451
|
} | {
|
|
425
452
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -450,8 +477,9 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
450
477
|
readonly external_url: string;
|
|
451
478
|
readonly type: "image" | "video";
|
|
452
479
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
453
|
-
readonly from?:
|
|
480
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
454
481
|
readonly poster_url?: string | undefined;
|
|
482
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
455
483
|
} | {
|
|
456
484
|
readonly asset_type: "pitcher_asset";
|
|
457
485
|
readonly file: {
|
|
@@ -462,6 +490,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
462
490
|
readonly type: "image" | "video";
|
|
463
491
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
464
492
|
readonly poster_url?: string | undefined;
|
|
493
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
465
494
|
} | {
|
|
466
495
|
readonly type: "app";
|
|
467
496
|
readonly app_name: string;
|
|
@@ -471,13 +500,13 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
471
500
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
472
501
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
473
502
|
readonly properties_by_embed_location?: {
|
|
474
|
-
readonly
|
|
503
|
+
readonly dsr?: {
|
|
475
504
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
476
505
|
} | undefined;
|
|
477
|
-
readonly
|
|
506
|
+
readonly canvas?: {
|
|
478
507
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
479
508
|
} | undefined;
|
|
480
|
-
readonly
|
|
509
|
+
readonly ui_app?: {
|
|
481
510
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
482
511
|
} | undefined;
|
|
483
512
|
readonly admin_instance?: {
|
|
@@ -571,6 +600,8 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
571
600
|
readonly background_video_url?: string | undefined;
|
|
572
601
|
}[];
|
|
573
602
|
readonly animation_in?: string | undefined;
|
|
603
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
604
|
+
readonly selection_app_name?: string | undefined;
|
|
574
605
|
} | {
|
|
575
606
|
readonly html: string;
|
|
576
607
|
} | {
|
|
@@ -596,6 +627,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
596
627
|
readonly content_length?: number | null | undefined;
|
|
597
628
|
readonly content_url?: string | null | undefined;
|
|
598
629
|
readonly original_extension?: string | null | undefined;
|
|
630
|
+
readonly original_url?: string | null | undefined;
|
|
599
631
|
readonly thumbnail_url?: string | null | undefined;
|
|
600
632
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
601
633
|
readonly zip_size?: number | null | undefined;
|
|
@@ -614,7 +646,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
614
646
|
} | undefined;
|
|
615
647
|
readonly tags?: readonly string[] | undefined;
|
|
616
648
|
readonly published_at?: string | null | undefined;
|
|
617
|
-
readonly expires_at?:
|
|
649
|
+
readonly expires_at?: string | null | undefined;
|
|
618
650
|
readonly instance_id?: string | undefined;
|
|
619
651
|
readonly folder_id?: string | undefined;
|
|
620
652
|
readonly folder?: {
|
|
@@ -623,10 +655,8 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
623
655
|
} | undefined;
|
|
624
656
|
readonly shared_link?: {
|
|
625
657
|
readonly url: string;
|
|
626
|
-
readonly short_url?:
|
|
658
|
+
readonly short_url?: string | null | undefined;
|
|
627
659
|
} | undefined;
|
|
628
|
-
readonly search_rank?: string | undefined;
|
|
629
|
-
readonly search_headline?: string | undefined;
|
|
630
660
|
readonly owned_by?: {
|
|
631
661
|
readonly id: number;
|
|
632
662
|
readonly name: string;
|
|
@@ -650,7 +680,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
650
680
|
readonly font_size?: number | undefined;
|
|
651
681
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
652
682
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
653
|
-
readonly target?:
|
|
683
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
654
684
|
readonly url?: string | undefined;
|
|
655
685
|
} | {} | {
|
|
656
686
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -683,7 +713,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
683
713
|
}[];
|
|
684
714
|
readonly layout: "vertical" | "horizontal";
|
|
685
715
|
} | undefined;
|
|
686
|
-
readonly children?: readonly any[] | undefined;
|
|
716
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
687
717
|
readonly when_used_in_section?: {
|
|
688
718
|
readonly is_editable: boolean;
|
|
689
719
|
readonly is_removable: boolean;
|
|
@@ -692,6 +722,11 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
692
722
|
readonly [x: string]: any;
|
|
693
723
|
} | undefined;
|
|
694
724
|
readonly tags?: readonly string[] | undefined;
|
|
725
|
+
readonly theme_meta?: {
|
|
726
|
+
readonly bg_color_palette_index: number;
|
|
727
|
+
readonly dt_header_bg_palette_index: number;
|
|
728
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
729
|
+
} | undefined;
|
|
695
730
|
};
|
|
696
731
|
};
|
|
697
732
|
}>;
|
|
@@ -700,9 +735,12 @@ declare function enterFullscreen(): void;
|
|
|
700
735
|
declare function saveCanvasContent({ showToast }?: {
|
|
701
736
|
showToast: boolean;
|
|
702
737
|
}): Promise<void>;
|
|
703
|
-
declare function saveCanvasContext(context: any, { showToast }
|
|
738
|
+
declare function saveCanvasContext(context: any, { showToast }?: {
|
|
704
739
|
showToast?: boolean;
|
|
705
740
|
}): Promise<undefined>;
|
|
741
|
+
declare function saveCanvasContentWithContext(context: any, { showToast }?: {
|
|
742
|
+
showToast?: boolean;
|
|
743
|
+
}): Promise<void | CanvasRetrieve>;
|
|
706
744
|
export default function useCanvas(): {
|
|
707
745
|
activeCanvas: Ref<{
|
|
708
746
|
readonly id: string;
|
|
@@ -719,10 +757,10 @@ export default function useCanvas(): {
|
|
|
719
757
|
is_default?: boolean | undefined;
|
|
720
758
|
metadata?: Record<string, any> | undefined;
|
|
721
759
|
tags?: Array<string> | undefined;
|
|
722
|
-
start_at?:
|
|
723
|
-
expires_at?:
|
|
760
|
+
start_at?: string | null | undefined;
|
|
761
|
+
expires_at?: string | null | undefined;
|
|
724
762
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
725
|
-
thumbnail_url?:
|
|
763
|
+
thumbnail_url?: string | null | undefined;
|
|
726
764
|
readonly template: {
|
|
727
765
|
readonly id: string;
|
|
728
766
|
name: string;
|
|
@@ -736,7 +774,7 @@ export default function useCanvas(): {
|
|
|
736
774
|
}[];
|
|
737
775
|
readonly shared_link: {
|
|
738
776
|
readonly url: string;
|
|
739
|
-
short_url?:
|
|
777
|
+
short_url?: string | null | undefined;
|
|
740
778
|
};
|
|
741
779
|
account?: {
|
|
742
780
|
id: string;
|
|
@@ -747,9 +785,7 @@ export default function useCanvas(): {
|
|
|
747
785
|
start_at: string;
|
|
748
786
|
subject: string;
|
|
749
787
|
}[];
|
|
750
|
-
folder_id?:
|
|
751
|
-
readonly search_rank: string;
|
|
752
|
-
readonly search_headline: string;
|
|
788
|
+
folder_id?: string | null | undefined;
|
|
753
789
|
readonly owned_by: {
|
|
754
790
|
readonly id: number;
|
|
755
791
|
readonly name: string;
|
|
@@ -782,10 +818,10 @@ export default function useCanvas(): {
|
|
|
782
818
|
is_default?: boolean | undefined;
|
|
783
819
|
metadata?: Record<string, any> | undefined;
|
|
784
820
|
tags?: Array<string> | undefined;
|
|
785
|
-
start_at?:
|
|
786
|
-
expires_at?:
|
|
821
|
+
start_at?: string | null | undefined;
|
|
822
|
+
expires_at?: string | null | undefined;
|
|
787
823
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
788
|
-
thumbnail_url?:
|
|
824
|
+
thumbnail_url?: string | null | undefined;
|
|
789
825
|
readonly template: {
|
|
790
826
|
readonly id: string;
|
|
791
827
|
name: string;
|
|
@@ -799,7 +835,7 @@ export default function useCanvas(): {
|
|
|
799
835
|
}[];
|
|
800
836
|
readonly shared_link: {
|
|
801
837
|
readonly url: string;
|
|
802
|
-
short_url?:
|
|
838
|
+
short_url?: string | null | undefined;
|
|
803
839
|
};
|
|
804
840
|
account?: {
|
|
805
841
|
id: string;
|
|
@@ -810,9 +846,7 @@ export default function useCanvas(): {
|
|
|
810
846
|
start_at: string;
|
|
811
847
|
subject: string;
|
|
812
848
|
}[];
|
|
813
|
-
folder_id?:
|
|
814
|
-
readonly search_rank: string;
|
|
815
|
-
readonly search_headline: string;
|
|
849
|
+
folder_id?: string | null | undefined;
|
|
816
850
|
readonly owned_by: {
|
|
817
851
|
readonly id: number;
|
|
818
852
|
readonly name: string;
|
|
@@ -848,8 +882,11 @@ export default function useCanvas(): {
|
|
|
848
882
|
readonly pdf: boolean;
|
|
849
883
|
readonly web: boolean;
|
|
850
884
|
} | undefined;
|
|
885
|
+
readonly linkable?: {
|
|
886
|
+
readonly linkable_in_templates: boolean;
|
|
887
|
+
} | undefined;
|
|
851
888
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
852
|
-
readonly autofill?:
|
|
889
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
853
890
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
854
891
|
readonly data?: {
|
|
855
892
|
readonly groups: readonly {
|
|
@@ -865,6 +902,7 @@ export default function useCanvas(): {
|
|
|
865
902
|
readonly id: string;
|
|
866
903
|
readonly name?: string | undefined;
|
|
867
904
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
905
|
+
readonly tags?: readonly string[] | undefined;
|
|
868
906
|
readonly thumbnail_url: string | null;
|
|
869
907
|
readonly permissions?: {
|
|
870
908
|
readonly can_download?: boolean | undefined;
|
|
@@ -892,6 +930,7 @@ export default function useCanvas(): {
|
|
|
892
930
|
readonly id: string;
|
|
893
931
|
readonly name?: string | undefined;
|
|
894
932
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
933
|
+
readonly tags?: readonly string[] | undefined;
|
|
895
934
|
readonly thumbnail_url: string | null;
|
|
896
935
|
readonly permissions?: {
|
|
897
936
|
readonly can_download?: boolean | undefined;
|
|
@@ -907,6 +946,9 @@ export default function useCanvas(): {
|
|
|
907
946
|
};
|
|
908
947
|
})[];
|
|
909
948
|
}[];
|
|
949
|
+
readonly filters?: {
|
|
950
|
+
readonly [x: string]: any;
|
|
951
|
+
} | undefined;
|
|
910
952
|
readonly name: string;
|
|
911
953
|
} | {
|
|
912
954
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -937,8 +979,9 @@ export default function useCanvas(): {
|
|
|
937
979
|
readonly external_url: string;
|
|
938
980
|
readonly type: "image" | "video";
|
|
939
981
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
940
|
-
readonly from?:
|
|
982
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
941
983
|
readonly poster_url?: string | undefined;
|
|
984
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
942
985
|
} | {
|
|
943
986
|
readonly asset_type: "pitcher_asset";
|
|
944
987
|
readonly file: {
|
|
@@ -949,6 +992,7 @@ export default function useCanvas(): {
|
|
|
949
992
|
readonly type: "image" | "video";
|
|
950
993
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
951
994
|
readonly poster_url?: string | undefined;
|
|
995
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
952
996
|
} | {
|
|
953
997
|
readonly type: "app";
|
|
954
998
|
readonly app_name: string;
|
|
@@ -958,13 +1002,13 @@ export default function useCanvas(): {
|
|
|
958
1002
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
959
1003
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
960
1004
|
readonly properties_by_embed_location?: {
|
|
961
|
-
readonly
|
|
1005
|
+
readonly dsr?: {
|
|
962
1006
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
963
1007
|
} | undefined;
|
|
964
|
-
readonly
|
|
1008
|
+
readonly canvas?: {
|
|
965
1009
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
966
1010
|
} | undefined;
|
|
967
|
-
readonly
|
|
1011
|
+
readonly ui_app?: {
|
|
968
1012
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
969
1013
|
} | undefined;
|
|
970
1014
|
readonly admin_instance?: {
|
|
@@ -1058,6 +1102,8 @@ export default function useCanvas(): {
|
|
|
1058
1102
|
readonly background_video_url?: string | undefined;
|
|
1059
1103
|
}[];
|
|
1060
1104
|
readonly animation_in?: string | undefined;
|
|
1105
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
1106
|
+
readonly selection_app_name?: string | undefined;
|
|
1061
1107
|
} | {
|
|
1062
1108
|
readonly html: string;
|
|
1063
1109
|
} | {
|
|
@@ -1083,6 +1129,7 @@ export default function useCanvas(): {
|
|
|
1083
1129
|
readonly content_length?: number | null | undefined;
|
|
1084
1130
|
readonly content_url?: string | null | undefined;
|
|
1085
1131
|
readonly original_extension?: string | null | undefined;
|
|
1132
|
+
readonly original_url?: string | null | undefined;
|
|
1086
1133
|
readonly thumbnail_url?: string | null | undefined;
|
|
1087
1134
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1088
1135
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1101,7 +1148,7 @@ export default function useCanvas(): {
|
|
|
1101
1148
|
} | undefined;
|
|
1102
1149
|
readonly tags?: readonly string[] | undefined;
|
|
1103
1150
|
readonly published_at?: string | null | undefined;
|
|
1104
|
-
readonly expires_at?:
|
|
1151
|
+
readonly expires_at?: string | null | undefined;
|
|
1105
1152
|
readonly instance_id?: string | undefined;
|
|
1106
1153
|
readonly folder_id?: string | undefined;
|
|
1107
1154
|
readonly folder?: {
|
|
@@ -1110,10 +1157,8 @@ export default function useCanvas(): {
|
|
|
1110
1157
|
} | undefined;
|
|
1111
1158
|
readonly shared_link?: {
|
|
1112
1159
|
readonly url: string;
|
|
1113
|
-
readonly short_url?:
|
|
1160
|
+
readonly short_url?: string | null | undefined;
|
|
1114
1161
|
} | undefined;
|
|
1115
|
-
readonly search_rank?: string | undefined;
|
|
1116
|
-
readonly search_headline?: string | undefined;
|
|
1117
1162
|
readonly owned_by?: {
|
|
1118
1163
|
readonly id: number;
|
|
1119
1164
|
readonly name: string;
|
|
@@ -1137,7 +1182,7 @@ export default function useCanvas(): {
|
|
|
1137
1182
|
readonly font_size?: number | undefined;
|
|
1138
1183
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1139
1184
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1140
|
-
readonly target?:
|
|
1185
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
1141
1186
|
readonly url?: string | undefined;
|
|
1142
1187
|
} | {} | {
|
|
1143
1188
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1170,7 +1215,7 @@ export default function useCanvas(): {
|
|
|
1170
1215
|
}[];
|
|
1171
1216
|
readonly layout: "vertical" | "horizontal";
|
|
1172
1217
|
} | undefined;
|
|
1173
|
-
readonly children?: readonly any[] | undefined;
|
|
1218
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1174
1219
|
readonly when_used_in_section?: {
|
|
1175
1220
|
readonly is_editable: boolean;
|
|
1176
1221
|
readonly is_removable: boolean;
|
|
@@ -1179,6 +1224,11 @@ export default function useCanvas(): {
|
|
|
1179
1224
|
readonly [x: string]: any;
|
|
1180
1225
|
} | undefined;
|
|
1181
1226
|
readonly tags?: readonly string[] | undefined;
|
|
1227
|
+
readonly theme_meta?: {
|
|
1228
|
+
readonly bg_color_palette_index: number;
|
|
1229
|
+
readonly dt_header_bg_palette_index: number;
|
|
1230
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
1231
|
+
} | undefined;
|
|
1182
1232
|
} | null>;
|
|
1183
1233
|
activeNavigationItems: Ref<{
|
|
1184
1234
|
id: string;
|
|
@@ -1203,8 +1253,11 @@ export default function useCanvas(): {
|
|
|
1203
1253
|
readonly pdf: boolean;
|
|
1204
1254
|
readonly web: boolean;
|
|
1205
1255
|
} | undefined;
|
|
1256
|
+
readonly linkable?: {
|
|
1257
|
+
readonly linkable_in_templates: boolean;
|
|
1258
|
+
} | undefined;
|
|
1206
1259
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
1207
|
-
readonly autofill?:
|
|
1260
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1208
1261
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1209
1262
|
readonly data?: {
|
|
1210
1263
|
readonly groups: readonly {
|
|
@@ -1220,6 +1273,7 @@ export default function useCanvas(): {
|
|
|
1220
1273
|
readonly id: string;
|
|
1221
1274
|
readonly name?: string | undefined;
|
|
1222
1275
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1276
|
+
readonly tags?: readonly string[] | undefined;
|
|
1223
1277
|
readonly thumbnail_url: string | null;
|
|
1224
1278
|
readonly permissions?: {
|
|
1225
1279
|
readonly can_download?: boolean | undefined;
|
|
@@ -1247,6 +1301,7 @@ export default function useCanvas(): {
|
|
|
1247
1301
|
readonly id: string;
|
|
1248
1302
|
readonly name?: string | undefined;
|
|
1249
1303
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1304
|
+
readonly tags?: readonly string[] | undefined;
|
|
1250
1305
|
readonly thumbnail_url: string | null;
|
|
1251
1306
|
readonly permissions?: {
|
|
1252
1307
|
readonly can_download?: boolean | undefined;
|
|
@@ -1262,6 +1317,9 @@ export default function useCanvas(): {
|
|
|
1262
1317
|
};
|
|
1263
1318
|
})[];
|
|
1264
1319
|
}[];
|
|
1320
|
+
readonly filters?: {
|
|
1321
|
+
readonly [x: string]: any;
|
|
1322
|
+
} | undefined;
|
|
1265
1323
|
readonly name: string;
|
|
1266
1324
|
} | {
|
|
1267
1325
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -1292,8 +1350,9 @@ export default function useCanvas(): {
|
|
|
1292
1350
|
readonly external_url: string;
|
|
1293
1351
|
readonly type: "image" | "video";
|
|
1294
1352
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1295
|
-
readonly from?:
|
|
1353
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1296
1354
|
readonly poster_url?: string | undefined;
|
|
1355
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1297
1356
|
} | {
|
|
1298
1357
|
readonly asset_type: "pitcher_asset";
|
|
1299
1358
|
readonly file: {
|
|
@@ -1304,6 +1363,7 @@ export default function useCanvas(): {
|
|
|
1304
1363
|
readonly type: "image" | "video";
|
|
1305
1364
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1306
1365
|
readonly poster_url?: string | undefined;
|
|
1366
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1307
1367
|
} | {
|
|
1308
1368
|
readonly type: "app";
|
|
1309
1369
|
readonly app_name: string;
|
|
@@ -1313,13 +1373,13 @@ export default function useCanvas(): {
|
|
|
1313
1373
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1314
1374
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1315
1375
|
readonly properties_by_embed_location?: {
|
|
1316
|
-
readonly
|
|
1376
|
+
readonly dsr?: {
|
|
1317
1377
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1318
1378
|
} | undefined;
|
|
1319
|
-
readonly
|
|
1379
|
+
readonly canvas?: {
|
|
1320
1380
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1321
1381
|
} | undefined;
|
|
1322
|
-
readonly
|
|
1382
|
+
readonly ui_app?: {
|
|
1323
1383
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1324
1384
|
} | undefined;
|
|
1325
1385
|
readonly admin_instance?: {
|
|
@@ -1413,6 +1473,8 @@ export default function useCanvas(): {
|
|
|
1413
1473
|
readonly background_video_url?: string | undefined;
|
|
1414
1474
|
}[];
|
|
1415
1475
|
readonly animation_in?: string | undefined;
|
|
1476
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
1477
|
+
readonly selection_app_name?: string | undefined;
|
|
1416
1478
|
} | {
|
|
1417
1479
|
readonly html: string;
|
|
1418
1480
|
} | {
|
|
@@ -1438,6 +1500,7 @@ export default function useCanvas(): {
|
|
|
1438
1500
|
readonly content_length?: number | null | undefined;
|
|
1439
1501
|
readonly content_url?: string | null | undefined;
|
|
1440
1502
|
readonly original_extension?: string | null | undefined;
|
|
1503
|
+
readonly original_url?: string | null | undefined;
|
|
1441
1504
|
readonly thumbnail_url?: string | null | undefined;
|
|
1442
1505
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1443
1506
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1456,7 +1519,7 @@ export default function useCanvas(): {
|
|
|
1456
1519
|
} | undefined;
|
|
1457
1520
|
readonly tags?: readonly string[] | undefined;
|
|
1458
1521
|
readonly published_at?: string | null | undefined;
|
|
1459
|
-
readonly expires_at?:
|
|
1522
|
+
readonly expires_at?: string | null | undefined;
|
|
1460
1523
|
readonly instance_id?: string | undefined;
|
|
1461
1524
|
readonly folder_id?: string | undefined;
|
|
1462
1525
|
readonly folder?: {
|
|
@@ -1465,10 +1528,8 @@ export default function useCanvas(): {
|
|
|
1465
1528
|
} | undefined;
|
|
1466
1529
|
readonly shared_link?: {
|
|
1467
1530
|
readonly url: string;
|
|
1468
|
-
readonly short_url?:
|
|
1531
|
+
readonly short_url?: string | null | undefined;
|
|
1469
1532
|
} | undefined;
|
|
1470
|
-
readonly search_rank?: string | undefined;
|
|
1471
|
-
readonly search_headline?: string | undefined;
|
|
1472
1533
|
readonly owned_by?: {
|
|
1473
1534
|
readonly id: number;
|
|
1474
1535
|
readonly name: string;
|
|
@@ -1492,7 +1553,7 @@ export default function useCanvas(): {
|
|
|
1492
1553
|
readonly font_size?: number | undefined;
|
|
1493
1554
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1494
1555
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1495
|
-
readonly target?:
|
|
1556
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
1496
1557
|
readonly url?: string | undefined;
|
|
1497
1558
|
} | {} | {
|
|
1498
1559
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1525,7 +1586,7 @@ export default function useCanvas(): {
|
|
|
1525
1586
|
}[];
|
|
1526
1587
|
readonly layout: "vertical" | "horizontal";
|
|
1527
1588
|
} | undefined;
|
|
1528
|
-
readonly children?: readonly any[] | undefined;
|
|
1589
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1529
1590
|
readonly when_used_in_section?: {
|
|
1530
1591
|
readonly is_editable: boolean;
|
|
1531
1592
|
readonly is_removable: boolean;
|
|
@@ -1534,6 +1595,11 @@ export default function useCanvas(): {
|
|
|
1534
1595
|
readonly [x: string]: any;
|
|
1535
1596
|
} | undefined;
|
|
1536
1597
|
readonly tags?: readonly string[] | undefined;
|
|
1598
|
+
readonly theme_meta?: {
|
|
1599
|
+
readonly bg_color_palette_index: number;
|
|
1600
|
+
readonly dt_header_bg_palette_index: number;
|
|
1601
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
1602
|
+
} | undefined;
|
|
1537
1603
|
} | null>;
|
|
1538
1604
|
addMode: Ref<false | {
|
|
1539
1605
|
type: ComponentTypes;
|
|
@@ -1548,6 +1614,7 @@ export default function useCanvas(): {
|
|
|
1548
1614
|
parentId: ComponentNode["id"] | null;
|
|
1549
1615
|
afterSiblingId: ComponentNode["id"] | null;
|
|
1550
1616
|
}>;
|
|
1617
|
+
areTokenConstraintsActive: import('vue').ComputedRef<boolean>;
|
|
1551
1618
|
canvasContent: Ref<{
|
|
1552
1619
|
id: string;
|
|
1553
1620
|
type: ComponentTypes;
|
|
@@ -1558,9 +1625,12 @@ export default function useCanvas(): {
|
|
|
1558
1625
|
pdf: boolean;
|
|
1559
1626
|
web: boolean;
|
|
1560
1627
|
} | undefined;
|
|
1628
|
+
linkable?: {
|
|
1629
|
+
linkable_in_templates: boolean;
|
|
1630
|
+
} | undefined;
|
|
1561
1631
|
allow_admins_to_overwrite?: boolean | undefined;
|
|
1562
|
-
autofill?:
|
|
1563
|
-
autofill_content_types?:
|
|
1632
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1633
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1564
1634
|
data?: import('../types/canvas').PageBreakProps | {
|
|
1565
1635
|
groups: {
|
|
1566
1636
|
id: string;
|
|
@@ -1573,6 +1643,7 @@ export default function useCanvas(): {
|
|
|
1573
1643
|
readonly id: string;
|
|
1574
1644
|
name?: string | undefined;
|
|
1575
1645
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1646
|
+
tags?: Array<string> | undefined;
|
|
1576
1647
|
readonly thumbnail_url: string | null;
|
|
1577
1648
|
permissions?: {
|
|
1578
1649
|
can_download?: boolean | undefined;
|
|
@@ -1596,6 +1667,7 @@ export default function useCanvas(): {
|
|
|
1596
1667
|
readonly id: string;
|
|
1597
1668
|
name?: string | undefined;
|
|
1598
1669
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1670
|
+
tags?: Array<string> | undefined;
|
|
1599
1671
|
readonly thumbnail_url: string | null;
|
|
1600
1672
|
permissions?: {
|
|
1601
1673
|
can_download?: boolean | undefined;
|
|
@@ -1609,6 +1681,7 @@ export default function useCanvas(): {
|
|
|
1609
1681
|
};
|
|
1610
1682
|
})[];
|
|
1611
1683
|
}[];
|
|
1684
|
+
filters?: Record<string, any> | undefined;
|
|
1612
1685
|
name: string;
|
|
1613
1686
|
} | {
|
|
1614
1687
|
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -1635,8 +1708,9 @@ export default function useCanvas(): {
|
|
|
1635
1708
|
external_url: string;
|
|
1636
1709
|
type: "image" | "video";
|
|
1637
1710
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1638
|
-
from?:
|
|
1711
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1639
1712
|
poster_url?: string | undefined;
|
|
1713
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1640
1714
|
} | {
|
|
1641
1715
|
asset_type: "pitcher_asset";
|
|
1642
1716
|
file: {
|
|
@@ -1647,6 +1721,7 @@ export default function useCanvas(): {
|
|
|
1647
1721
|
type: "image" | "video";
|
|
1648
1722
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1649
1723
|
poster_url?: string | undefined;
|
|
1724
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1650
1725
|
} | {
|
|
1651
1726
|
type: "app";
|
|
1652
1727
|
app_name: string;
|
|
@@ -1656,13 +1731,13 @@ export default function useCanvas(): {
|
|
|
1656
1731
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1657
1732
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1658
1733
|
properties_by_embed_location?: {
|
|
1659
|
-
|
|
1734
|
+
dsr?: {
|
|
1660
1735
|
start_in_loading_mode?: boolean | undefined;
|
|
1661
1736
|
} | undefined;
|
|
1662
|
-
|
|
1737
|
+
canvas?: {
|
|
1663
1738
|
start_in_loading_mode?: boolean | undefined;
|
|
1664
1739
|
} | undefined;
|
|
1665
|
-
|
|
1740
|
+
ui_app?: {
|
|
1666
1741
|
start_in_loading_mode?: boolean | undefined;
|
|
1667
1742
|
} | undefined;
|
|
1668
1743
|
admin_instance?: {
|
|
@@ -1748,6 +1823,8 @@ export default function useCanvas(): {
|
|
|
1748
1823
|
background_video_url?: string | undefined;
|
|
1749
1824
|
}[];
|
|
1750
1825
|
animation_in?: string | undefined;
|
|
1826
|
+
selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
1827
|
+
selection_app_name?: string | undefined;
|
|
1751
1828
|
} | {
|
|
1752
1829
|
html: string;
|
|
1753
1830
|
} | {
|
|
@@ -1773,6 +1850,7 @@ export default function useCanvas(): {
|
|
|
1773
1850
|
readonly content_length?: number | null | undefined;
|
|
1774
1851
|
readonly content_url?: string | null | undefined;
|
|
1775
1852
|
readonly original_extension?: string | null | undefined;
|
|
1853
|
+
readonly original_url?: string | null | undefined;
|
|
1776
1854
|
readonly thumbnail_url?: string | null | undefined;
|
|
1777
1855
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1778
1856
|
readonly zip_size?: number | null | undefined;
|
|
@@ -1787,7 +1865,7 @@ export default function useCanvas(): {
|
|
|
1787
1865
|
app_metadata?: Record<string, any> | undefined;
|
|
1788
1866
|
tags?: Array<string> | undefined;
|
|
1789
1867
|
readonly published_at?: string | null | undefined;
|
|
1790
|
-
expires_at?:
|
|
1868
|
+
expires_at?: string | null | undefined;
|
|
1791
1869
|
readonly instance_id?: string | undefined;
|
|
1792
1870
|
folder_id?: string | undefined;
|
|
1793
1871
|
readonly folder?: {
|
|
@@ -1796,10 +1874,8 @@ export default function useCanvas(): {
|
|
|
1796
1874
|
} | undefined;
|
|
1797
1875
|
readonly shared_link?: {
|
|
1798
1876
|
readonly url: string;
|
|
1799
|
-
short_url?:
|
|
1877
|
+
short_url?: string | null | undefined;
|
|
1800
1878
|
} | undefined;
|
|
1801
|
-
readonly search_rank?: string | undefined;
|
|
1802
|
-
readonly search_headline?: string | undefined;
|
|
1803
1879
|
readonly owned_by?: {
|
|
1804
1880
|
readonly id: number;
|
|
1805
1881
|
readonly name: string;
|
|
@@ -1823,7 +1899,7 @@ export default function useCanvas(): {
|
|
|
1823
1899
|
font_size?: number | undefined;
|
|
1824
1900
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
1825
1901
|
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
1826
|
-
target?:
|
|
1902
|
+
target?: "_self" | "_blank" | undefined;
|
|
1827
1903
|
url?: string | undefined;
|
|
1828
1904
|
} | {
|
|
1829
1905
|
aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -1844,13 +1920,18 @@ export default function useCanvas(): {
|
|
|
1844
1920
|
}[];
|
|
1845
1921
|
layout: "vertical" | "horizontal";
|
|
1846
1922
|
} | undefined;
|
|
1847
|
-
children?: any[] | undefined;
|
|
1923
|
+
children?: /*elided*/ any[] | undefined;
|
|
1848
1924
|
when_used_in_section?: {
|
|
1849
1925
|
is_editable: boolean;
|
|
1850
1926
|
is_removable: boolean;
|
|
1851
1927
|
} | undefined;
|
|
1852
1928
|
style?: Record<string, any> | undefined;
|
|
1853
1929
|
tags?: string[] | undefined;
|
|
1930
|
+
theme_meta?: {
|
|
1931
|
+
bg_color_palette_index: number;
|
|
1932
|
+
dt_header_bg_palette_index: number;
|
|
1933
|
+
dt_group_header_bg_palette_index: number;
|
|
1934
|
+
} | undefined;
|
|
1854
1935
|
}[], 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
1936
|
id: string;
|
|
1856
1937
|
type: ComponentTypes;
|
|
@@ -1861,9 +1942,12 @@ export default function useCanvas(): {
|
|
|
1861
1942
|
pdf: boolean;
|
|
1862
1943
|
web: boolean;
|
|
1863
1944
|
} | undefined;
|
|
1945
|
+
linkable?: {
|
|
1946
|
+
linkable_in_templates: boolean;
|
|
1947
|
+
} | undefined;
|
|
1864
1948
|
allow_admins_to_overwrite?: boolean | undefined;
|
|
1865
|
-
autofill?:
|
|
1866
|
-
autofill_content_types?:
|
|
1949
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
1950
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
1867
1951
|
data?: import('../types/canvas').PageBreakProps | {
|
|
1868
1952
|
groups: {
|
|
1869
1953
|
id: string;
|
|
@@ -1876,6 +1960,7 @@ export default function useCanvas(): {
|
|
|
1876
1960
|
readonly id: string;
|
|
1877
1961
|
name?: string | undefined;
|
|
1878
1962
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1963
|
+
tags?: Array<string> | undefined;
|
|
1879
1964
|
readonly thumbnail_url: string | null;
|
|
1880
1965
|
permissions?: {
|
|
1881
1966
|
can_download?: boolean | undefined;
|
|
@@ -1899,6 +1984,7 @@ export default function useCanvas(): {
|
|
|
1899
1984
|
readonly id: string;
|
|
1900
1985
|
name?: string | undefined;
|
|
1901
1986
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1987
|
+
tags?: Array<string> | undefined;
|
|
1902
1988
|
readonly thumbnail_url: string | null;
|
|
1903
1989
|
permissions?: {
|
|
1904
1990
|
can_download?: boolean | undefined;
|
|
@@ -1912,6 +1998,7 @@ export default function useCanvas(): {
|
|
|
1912
1998
|
};
|
|
1913
1999
|
})[];
|
|
1914
2000
|
}[];
|
|
2001
|
+
filters?: Record<string, any> | undefined;
|
|
1915
2002
|
name: string;
|
|
1916
2003
|
} | {
|
|
1917
2004
|
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -1938,8 +2025,9 @@ export default function useCanvas(): {
|
|
|
1938
2025
|
external_url: string;
|
|
1939
2026
|
type: "image" | "video";
|
|
1940
2027
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1941
|
-
from?:
|
|
2028
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1942
2029
|
poster_url?: string | undefined;
|
|
2030
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1943
2031
|
} | {
|
|
1944
2032
|
asset_type: "pitcher_asset";
|
|
1945
2033
|
file: {
|
|
@@ -1950,6 +2038,7 @@ export default function useCanvas(): {
|
|
|
1950
2038
|
type: "image" | "video";
|
|
1951
2039
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1952
2040
|
poster_url?: string | undefined;
|
|
2041
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
1953
2042
|
} | {
|
|
1954
2043
|
type: "app";
|
|
1955
2044
|
app_name: string;
|
|
@@ -1959,13 +2048,13 @@ export default function useCanvas(): {
|
|
|
1959
2048
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1960
2049
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1961
2050
|
properties_by_embed_location?: {
|
|
1962
|
-
|
|
2051
|
+
dsr?: {
|
|
1963
2052
|
start_in_loading_mode?: boolean | undefined;
|
|
1964
2053
|
} | undefined;
|
|
1965
|
-
|
|
2054
|
+
canvas?: {
|
|
1966
2055
|
start_in_loading_mode?: boolean | undefined;
|
|
1967
2056
|
} | undefined;
|
|
1968
|
-
|
|
2057
|
+
ui_app?: {
|
|
1969
2058
|
start_in_loading_mode?: boolean | undefined;
|
|
1970
2059
|
} | undefined;
|
|
1971
2060
|
admin_instance?: {
|
|
@@ -2051,6 +2140,8 @@ export default function useCanvas(): {
|
|
|
2051
2140
|
background_video_url?: string | undefined;
|
|
2052
2141
|
}[];
|
|
2053
2142
|
animation_in?: string | undefined;
|
|
2143
|
+
selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
2144
|
+
selection_app_name?: string | undefined;
|
|
2054
2145
|
} | {
|
|
2055
2146
|
html: string;
|
|
2056
2147
|
} | {
|
|
@@ -2076,6 +2167,7 @@ export default function useCanvas(): {
|
|
|
2076
2167
|
readonly content_length?: number | null | undefined;
|
|
2077
2168
|
readonly content_url?: string | null | undefined;
|
|
2078
2169
|
readonly original_extension?: string | null | undefined;
|
|
2170
|
+
readonly original_url?: string | null | undefined;
|
|
2079
2171
|
readonly thumbnail_url?: string | null | undefined;
|
|
2080
2172
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2081
2173
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2090,7 +2182,7 @@ export default function useCanvas(): {
|
|
|
2090
2182
|
app_metadata?: Record<string, any> | undefined;
|
|
2091
2183
|
tags?: Array<string> | undefined;
|
|
2092
2184
|
readonly published_at?: string | null | undefined;
|
|
2093
|
-
expires_at?:
|
|
2185
|
+
expires_at?: string | null | undefined;
|
|
2094
2186
|
readonly instance_id?: string | undefined;
|
|
2095
2187
|
folder_id?: string | undefined;
|
|
2096
2188
|
readonly folder?: {
|
|
@@ -2099,10 +2191,8 @@ export default function useCanvas(): {
|
|
|
2099
2191
|
} | undefined;
|
|
2100
2192
|
readonly shared_link?: {
|
|
2101
2193
|
readonly url: string;
|
|
2102
|
-
short_url?:
|
|
2194
|
+
short_url?: string | null | undefined;
|
|
2103
2195
|
} | undefined;
|
|
2104
|
-
readonly search_rank?: string | undefined;
|
|
2105
|
-
readonly search_headline?: string | undefined;
|
|
2106
2196
|
readonly owned_by?: {
|
|
2107
2197
|
readonly id: number;
|
|
2108
2198
|
readonly name: string;
|
|
@@ -2126,7 +2216,7 @@ export default function useCanvas(): {
|
|
|
2126
2216
|
font_size?: number | undefined;
|
|
2127
2217
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2128
2218
|
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2129
|
-
target?:
|
|
2219
|
+
target?: "_self" | "_blank" | undefined;
|
|
2130
2220
|
url?: string | undefined;
|
|
2131
2221
|
} | {
|
|
2132
2222
|
aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2147,14 +2237,28 @@ export default function useCanvas(): {
|
|
|
2147
2237
|
}[];
|
|
2148
2238
|
layout: "vertical" | "horizontal";
|
|
2149
2239
|
} | undefined;
|
|
2150
|
-
children?: any[] | undefined;
|
|
2240
|
+
children?: /*elided*/ any[] | undefined;
|
|
2151
2241
|
when_used_in_section?: {
|
|
2152
2242
|
is_editable: boolean;
|
|
2153
2243
|
is_removable: boolean;
|
|
2154
2244
|
} | undefined;
|
|
2155
2245
|
style?: Record<string, any> | undefined;
|
|
2156
2246
|
tags?: string[] | undefined;
|
|
2247
|
+
theme_meta?: {
|
|
2248
|
+
bg_color_palette_index: number;
|
|
2249
|
+
dt_header_bg_palette_index: number;
|
|
2250
|
+
dt_group_header_bg_palette_index: number;
|
|
2251
|
+
} | undefined;
|
|
2157
2252
|
}[]>;
|
|
2253
|
+
canvasMetadata: Ref<{
|
|
2254
|
+
[x: string]: any;
|
|
2255
|
+
presentation_component_metadata: Record<string, any>;
|
|
2256
|
+
} | null, (Record<string, any> & {
|
|
2257
|
+
presentation_component_metadata: Record<string, any>;
|
|
2258
|
+
}) | {
|
|
2259
|
+
[x: string]: any;
|
|
2260
|
+
presentation_component_metadata: Record<string, any>;
|
|
2261
|
+
} | null>;
|
|
2158
2262
|
componentEditMode: Ref<false | {
|
|
2159
2263
|
type: ComponentTypes;
|
|
2160
2264
|
id: ComponentNode["id"] | null;
|
|
@@ -2182,8 +2286,11 @@ export default function useCanvas(): {
|
|
|
2182
2286
|
readonly pdf: boolean;
|
|
2183
2287
|
readonly web: boolean;
|
|
2184
2288
|
} | undefined;
|
|
2289
|
+
readonly linkable?: {
|
|
2290
|
+
readonly linkable_in_templates: boolean;
|
|
2291
|
+
} | undefined;
|
|
2185
2292
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
2186
|
-
readonly autofill?:
|
|
2293
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
2187
2294
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
2188
2295
|
readonly data?: {
|
|
2189
2296
|
readonly groups: readonly {
|
|
@@ -2199,6 +2306,7 @@ export default function useCanvas(): {
|
|
|
2199
2306
|
readonly id: string;
|
|
2200
2307
|
readonly name?: string | undefined;
|
|
2201
2308
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2309
|
+
readonly tags?: readonly string[] | undefined;
|
|
2202
2310
|
readonly thumbnail_url: string | null;
|
|
2203
2311
|
readonly permissions?: {
|
|
2204
2312
|
readonly can_download?: boolean | undefined;
|
|
@@ -2226,6 +2334,7 @@ export default function useCanvas(): {
|
|
|
2226
2334
|
readonly id: string;
|
|
2227
2335
|
readonly name?: string | undefined;
|
|
2228
2336
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2337
|
+
readonly tags?: readonly string[] | undefined;
|
|
2229
2338
|
readonly thumbnail_url: string | null;
|
|
2230
2339
|
readonly permissions?: {
|
|
2231
2340
|
readonly can_download?: boolean | undefined;
|
|
@@ -2241,6 +2350,9 @@ export default function useCanvas(): {
|
|
|
2241
2350
|
};
|
|
2242
2351
|
})[];
|
|
2243
2352
|
}[];
|
|
2353
|
+
readonly filters?: {
|
|
2354
|
+
readonly [x: string]: any;
|
|
2355
|
+
} | undefined;
|
|
2244
2356
|
readonly name: string;
|
|
2245
2357
|
} | {
|
|
2246
2358
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -2271,8 +2383,9 @@ export default function useCanvas(): {
|
|
|
2271
2383
|
readonly external_url: string;
|
|
2272
2384
|
readonly type: "image" | "video";
|
|
2273
2385
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2274
|
-
readonly from?:
|
|
2386
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2275
2387
|
readonly poster_url?: string | undefined;
|
|
2388
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2276
2389
|
} | {
|
|
2277
2390
|
readonly asset_type: "pitcher_asset";
|
|
2278
2391
|
readonly file: {
|
|
@@ -2283,6 +2396,7 @@ export default function useCanvas(): {
|
|
|
2283
2396
|
readonly type: "image" | "video";
|
|
2284
2397
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2285
2398
|
readonly poster_url?: string | undefined;
|
|
2399
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2286
2400
|
} | {
|
|
2287
2401
|
readonly type: "app";
|
|
2288
2402
|
readonly app_name: string;
|
|
@@ -2292,13 +2406,13 @@ export default function useCanvas(): {
|
|
|
2292
2406
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2293
2407
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2294
2408
|
readonly properties_by_embed_location?: {
|
|
2295
|
-
readonly
|
|
2409
|
+
readonly dsr?: {
|
|
2296
2410
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2297
2411
|
} | undefined;
|
|
2298
|
-
readonly
|
|
2412
|
+
readonly canvas?: {
|
|
2299
2413
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2300
2414
|
} | undefined;
|
|
2301
|
-
readonly
|
|
2415
|
+
readonly ui_app?: {
|
|
2302
2416
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2303
2417
|
} | undefined;
|
|
2304
2418
|
readonly admin_instance?: {
|
|
@@ -2392,6 +2506,8 @@ export default function useCanvas(): {
|
|
|
2392
2506
|
readonly background_video_url?: string | undefined;
|
|
2393
2507
|
}[];
|
|
2394
2508
|
readonly animation_in?: string | undefined;
|
|
2509
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
2510
|
+
readonly selection_app_name?: string | undefined;
|
|
2395
2511
|
} | {
|
|
2396
2512
|
readonly html: string;
|
|
2397
2513
|
} | {
|
|
@@ -2417,6 +2533,7 @@ export default function useCanvas(): {
|
|
|
2417
2533
|
readonly content_length?: number | null | undefined;
|
|
2418
2534
|
readonly content_url?: string | null | undefined;
|
|
2419
2535
|
readonly original_extension?: string | null | undefined;
|
|
2536
|
+
readonly original_url?: string | null | undefined;
|
|
2420
2537
|
readonly thumbnail_url?: string | null | undefined;
|
|
2421
2538
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2422
2539
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2435,7 +2552,7 @@ export default function useCanvas(): {
|
|
|
2435
2552
|
} | undefined;
|
|
2436
2553
|
readonly tags?: readonly string[] | undefined;
|
|
2437
2554
|
readonly published_at?: string | null | undefined;
|
|
2438
|
-
readonly expires_at?:
|
|
2555
|
+
readonly expires_at?: string | null | undefined;
|
|
2439
2556
|
readonly instance_id?: string | undefined;
|
|
2440
2557
|
readonly folder_id?: string | undefined;
|
|
2441
2558
|
readonly folder?: {
|
|
@@ -2444,10 +2561,8 @@ export default function useCanvas(): {
|
|
|
2444
2561
|
} | undefined;
|
|
2445
2562
|
readonly shared_link?: {
|
|
2446
2563
|
readonly url: string;
|
|
2447
|
-
readonly short_url?:
|
|
2564
|
+
readonly short_url?: string | null | undefined;
|
|
2448
2565
|
} | undefined;
|
|
2449
|
-
readonly search_rank?: string | undefined;
|
|
2450
|
-
readonly search_headline?: string | undefined;
|
|
2451
2566
|
readonly owned_by?: {
|
|
2452
2567
|
readonly id: number;
|
|
2453
2568
|
readonly name: string;
|
|
@@ -2471,7 +2586,7 @@ export default function useCanvas(): {
|
|
|
2471
2586
|
readonly font_size?: number | undefined;
|
|
2472
2587
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2473
2588
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2474
|
-
readonly target?:
|
|
2589
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
2475
2590
|
readonly url?: string | undefined;
|
|
2476
2591
|
} | {} | {
|
|
2477
2592
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2504,7 +2619,7 @@ export default function useCanvas(): {
|
|
|
2504
2619
|
}[];
|
|
2505
2620
|
readonly layout: "vertical" | "horizontal";
|
|
2506
2621
|
} | undefined;
|
|
2507
|
-
readonly children?: readonly any[] | undefined;
|
|
2622
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2508
2623
|
readonly when_used_in_section?: {
|
|
2509
2624
|
readonly is_editable: boolean;
|
|
2510
2625
|
readonly is_removable: boolean;
|
|
@@ -2513,6 +2628,11 @@ export default function useCanvas(): {
|
|
|
2513
2628
|
readonly [x: string]: any;
|
|
2514
2629
|
} | undefined;
|
|
2515
2630
|
readonly tags?: readonly string[] | undefined;
|
|
2631
|
+
readonly theme_meta?: {
|
|
2632
|
+
readonly bg_color_palette_index: number;
|
|
2633
|
+
readonly dt_header_bg_palette_index: number;
|
|
2634
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
2635
|
+
} | undefined;
|
|
2516
2636
|
};
|
|
2517
2637
|
}>;
|
|
2518
2638
|
componentSelectedMode: Ref<false | {
|
|
@@ -2530,7 +2650,7 @@ export default function useCanvas(): {
|
|
|
2530
2650
|
} | {
|
|
2531
2651
|
$el: HTMLElement;
|
|
2532
2652
|
} | null>;
|
|
2533
|
-
currentEmbedLocation: import('vue').ComputedRef<"
|
|
2653
|
+
currentEmbedLocation: import('vue').ComputedRef<"dsr" | "canvas">;
|
|
2534
2654
|
displayMode: Ref<"default" | "print" | undefined, "default" | "print" | undefined>;
|
|
2535
2655
|
endPage: Ref<number | undefined, number | undefined>;
|
|
2536
2656
|
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,9 +2659,12 @@ export default function useCanvas(): {
|
|
|
2539
2659
|
isAdmin: import('vue').ComputedRef<boolean>;
|
|
2540
2660
|
isCRM: Ref<boolean, boolean>;
|
|
2541
2661
|
isCanvas: import('vue').ComputedRef<boolean | null>;
|
|
2662
|
+
isCanvasTemplate: import('vue').ComputedRef<boolean | null | undefined>;
|
|
2542
2663
|
isDefaultDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2664
|
+
isDsr: import('vue').ComputedRef<boolean>;
|
|
2543
2665
|
isEditMode: Ref<boolean, boolean>;
|
|
2544
2666
|
isFullscreen: Ref<boolean, boolean>;
|
|
2667
|
+
isImpact: import('vue').ComputedRef<boolean>;
|
|
2545
2668
|
isPrintDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2546
2669
|
isRedirectEvent: Ref<boolean, boolean>;
|
|
2547
2670
|
isSameAsSaved: import('vue').ComputedRef<any>;
|
|
@@ -2597,13 +2720,13 @@ export default function useCanvas(): {
|
|
|
2597
2720
|
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined, ((canvasId: CanvasRetrieve["id"], canvas: import('../../../../types/openapi').PatchedCanvasUpdateRequest & {
|
|
2598
2721
|
fields?: string;
|
|
2599
2722
|
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined>;
|
|
2600
|
-
onSfdcAccountSearch: Ref<((searchTerm?: import('
|
|
2723
|
+
onSfdcAccountSearch: Ref<((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2601
2724
|
accountsLoading: Ref<boolean>;
|
|
2602
2725
|
accounts: Ref<{
|
|
2603
2726
|
label: string;
|
|
2604
2727
|
value: string;
|
|
2605
2728
|
}[]>;
|
|
2606
|
-
}) | ((...data: any[]) => void), ((searchTerm?: import('
|
|
2729
|
+
}) | ((...data: any[]) => void), ((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2607
2730
|
accountsLoading: Ref<boolean>;
|
|
2608
2731
|
accounts: Ref<{
|
|
2609
2732
|
label: string;
|
|
@@ -2660,8 +2783,11 @@ export default function useCanvas(): {
|
|
|
2660
2783
|
readonly pdf: boolean;
|
|
2661
2784
|
readonly web: boolean;
|
|
2662
2785
|
} | undefined;
|
|
2786
|
+
readonly linkable?: {
|
|
2787
|
+
readonly linkable_in_templates: boolean;
|
|
2788
|
+
} | undefined;
|
|
2663
2789
|
readonly allow_admins_to_overwrite?: boolean | undefined;
|
|
2664
|
-
readonly autofill?:
|
|
2790
|
+
readonly autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
2665
2791
|
readonly autofill_content_types?: readonly import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
2666
2792
|
readonly data?: {
|
|
2667
2793
|
readonly groups: readonly {
|
|
@@ -2677,6 +2803,7 @@ export default function useCanvas(): {
|
|
|
2677
2803
|
readonly id: string;
|
|
2678
2804
|
readonly name?: string | undefined;
|
|
2679
2805
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2806
|
+
readonly tags?: readonly string[] | undefined;
|
|
2680
2807
|
readonly thumbnail_url: string | null;
|
|
2681
2808
|
readonly permissions?: {
|
|
2682
2809
|
readonly can_download?: boolean | undefined;
|
|
@@ -2704,6 +2831,7 @@ export default function useCanvas(): {
|
|
|
2704
2831
|
readonly id: string;
|
|
2705
2832
|
readonly name?: string | undefined;
|
|
2706
2833
|
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2834
|
+
readonly tags?: readonly string[] | undefined;
|
|
2707
2835
|
readonly thumbnail_url: string | null;
|
|
2708
2836
|
readonly permissions?: {
|
|
2709
2837
|
readonly can_download?: boolean | undefined;
|
|
@@ -2719,6 +2847,9 @@ export default function useCanvas(): {
|
|
|
2719
2847
|
};
|
|
2720
2848
|
})[];
|
|
2721
2849
|
}[];
|
|
2850
|
+
readonly filters?: {
|
|
2851
|
+
readonly [x: string]: any;
|
|
2852
|
+
} | undefined;
|
|
2722
2853
|
readonly name: string;
|
|
2723
2854
|
} | {
|
|
2724
2855
|
readonly layout_type: import('../types/canvas').GridLayoutTypes;
|
|
@@ -2749,8 +2880,9 @@ export default function useCanvas(): {
|
|
|
2749
2880
|
readonly external_url: string;
|
|
2750
2881
|
readonly type: "image" | "video";
|
|
2751
2882
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2752
|
-
readonly from?:
|
|
2883
|
+
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2753
2884
|
readonly poster_url?: string | undefined;
|
|
2885
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2754
2886
|
} | {
|
|
2755
2887
|
readonly asset_type: "pitcher_asset";
|
|
2756
2888
|
readonly file: {
|
|
@@ -2761,6 +2893,7 @@ export default function useCanvas(): {
|
|
|
2761
2893
|
readonly type: "image" | "video";
|
|
2762
2894
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2763
2895
|
readonly poster_url?: string | undefined;
|
|
2896
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
2764
2897
|
} | {
|
|
2765
2898
|
readonly type: "app";
|
|
2766
2899
|
readonly app_name: string;
|
|
@@ -2770,13 +2903,13 @@ export default function useCanvas(): {
|
|
|
2770
2903
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2771
2904
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2772
2905
|
readonly properties_by_embed_location?: {
|
|
2773
|
-
readonly
|
|
2906
|
+
readonly dsr?: {
|
|
2774
2907
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2775
2908
|
} | undefined;
|
|
2776
|
-
readonly
|
|
2909
|
+
readonly canvas?: {
|
|
2777
2910
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2778
2911
|
} | undefined;
|
|
2779
|
-
readonly
|
|
2912
|
+
readonly ui_app?: {
|
|
2780
2913
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2781
2914
|
} | undefined;
|
|
2782
2915
|
readonly admin_instance?: {
|
|
@@ -2870,6 +3003,8 @@ export default function useCanvas(): {
|
|
|
2870
3003
|
readonly background_video_url?: string | undefined;
|
|
2871
3004
|
}[];
|
|
2872
3005
|
readonly animation_in?: string | undefined;
|
|
3006
|
+
readonly selection_strategy?: "free" | "single" | "all" | "app" | undefined;
|
|
3007
|
+
readonly selection_app_name?: string | undefined;
|
|
2873
3008
|
} | {
|
|
2874
3009
|
readonly html: string;
|
|
2875
3010
|
} | {
|
|
@@ -2895,6 +3030,7 @@ export default function useCanvas(): {
|
|
|
2895
3030
|
readonly content_length?: number | null | undefined;
|
|
2896
3031
|
readonly content_url?: string | null | undefined;
|
|
2897
3032
|
readonly original_extension?: string | null | undefined;
|
|
3033
|
+
readonly original_url?: string | null | undefined;
|
|
2898
3034
|
readonly thumbnail_url?: string | null | undefined;
|
|
2899
3035
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2900
3036
|
readonly zip_size?: number | null | undefined;
|
|
@@ -2913,7 +3049,7 @@ export default function useCanvas(): {
|
|
|
2913
3049
|
} | undefined;
|
|
2914
3050
|
readonly tags?: readonly string[] | undefined;
|
|
2915
3051
|
readonly published_at?: string | null | undefined;
|
|
2916
|
-
readonly expires_at?:
|
|
3052
|
+
readonly expires_at?: string | null | undefined;
|
|
2917
3053
|
readonly instance_id?: string | undefined;
|
|
2918
3054
|
readonly folder_id?: string | undefined;
|
|
2919
3055
|
readonly folder?: {
|
|
@@ -2922,10 +3058,8 @@ export default function useCanvas(): {
|
|
|
2922
3058
|
} | undefined;
|
|
2923
3059
|
readonly shared_link?: {
|
|
2924
3060
|
readonly url: string;
|
|
2925
|
-
readonly short_url?:
|
|
3061
|
+
readonly short_url?: string | null | undefined;
|
|
2926
3062
|
} | undefined;
|
|
2927
|
-
readonly search_rank?: string | undefined;
|
|
2928
|
-
readonly search_headline?: string | undefined;
|
|
2929
3063
|
readonly owned_by?: {
|
|
2930
3064
|
readonly id: number;
|
|
2931
3065
|
readonly name: string;
|
|
@@ -2949,7 +3083,7 @@ export default function useCanvas(): {
|
|
|
2949
3083
|
readonly font_size?: number | undefined;
|
|
2950
3084
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
2951
3085
|
readonly preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
2952
|
-
readonly target?:
|
|
3086
|
+
readonly target?: "_self" | "_blank" | undefined;
|
|
2953
3087
|
readonly url?: string | undefined;
|
|
2954
3088
|
} | {} | {
|
|
2955
3089
|
readonly aspect_ratio?: ("unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
@@ -2982,7 +3116,7 @@ export default function useCanvas(): {
|
|
|
2982
3116
|
}[];
|
|
2983
3117
|
readonly layout: "vertical" | "horizontal";
|
|
2984
3118
|
} | undefined;
|
|
2985
|
-
readonly children?: readonly any[] | undefined;
|
|
3119
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2986
3120
|
readonly when_used_in_section?: {
|
|
2987
3121
|
readonly is_editable: boolean;
|
|
2988
3122
|
readonly is_removable: boolean;
|
|
@@ -2991,6 +3125,11 @@ export default function useCanvas(): {
|
|
|
2991
3125
|
readonly [x: string]: any;
|
|
2992
3126
|
} | undefined;
|
|
2993
3127
|
readonly tags?: readonly string[] | undefined;
|
|
3128
|
+
readonly theme_meta?: {
|
|
3129
|
+
readonly bg_color_palette_index: number;
|
|
3130
|
+
readonly dt_header_bg_palette_index: number;
|
|
3131
|
+
readonly dt_group_header_bg_palette_index: number;
|
|
3132
|
+
} | undefined;
|
|
2994
3133
|
};
|
|
2995
3134
|
};
|
|
2996
3135
|
}>;
|
|
@@ -2999,17 +3138,7 @@ export default function useCanvas(): {
|
|
|
2999
3138
|
share: Ref<((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined, ((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined>;
|
|
3000
3139
|
singletonsInCanvasMap: import('vue').ComputedRef<Record<ComponentTypes, boolean>>;
|
|
3001
3140
|
startPage: Ref<number | undefined, number | undefined>;
|
|
3002
|
-
|
|
3003
|
-
label: CanvasRetrieve["name"];
|
|
3004
|
-
value: CanvasRetrieve["id"];
|
|
3005
|
-
}[], {
|
|
3006
|
-
label: CanvasRetrieve["name"];
|
|
3007
|
-
value: CanvasRetrieve["id"];
|
|
3008
|
-
}[] | {
|
|
3009
|
-
label: CanvasRetrieve["name"];
|
|
3010
|
-
value: CanvasRetrieve["id"];
|
|
3011
|
-
}[]>;
|
|
3012
|
-
initialize: (props: CanvasBuilderProps) => void;
|
|
3141
|
+
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
3013
3142
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean) => void;
|
|
3014
3143
|
deactivateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean) => void;
|
|
3015
3144
|
addComponentAtParentId: (type: ComponentTypes, parentId?: ComponentNode["id"] | null, afterSiblingId?: ComponentNode["id"] | null, withData?: ComponentNode["data"] | null, withChildren?: ComponentNode["children"], withExtraNodeData?: Partial<ComponentNode>) => void;
|
|
@@ -3034,6 +3163,7 @@ export default function useCanvas(): {
|
|
|
3034
3163
|
content: ComponentNode[];
|
|
3035
3164
|
component?: ComponentNode | null;
|
|
3036
3165
|
}) => void;
|
|
3166
|
+
setCanvasMetadata: (metadata: CanvasMetadataRetrieve["config"] | null) => void;
|
|
3037
3167
|
setComponentEditMode: (type: false | ComponentTypes, id?: ComponentNode["id"] | null, usedInSectionId?: CanvasRetrieve["id"]) => void;
|
|
3038
3168
|
setComponentSelectedMode: (id?: ComponentNode["id"]) => void;
|
|
3039
3169
|
setComponentSettingsMode: (id?: ComponentNode["id"] | false) => void;
|
|
@@ -3046,5 +3176,7 @@ export default function useCanvas(): {
|
|
|
3046
3176
|
cleanup: typeof cleanup;
|
|
3047
3177
|
saveCanvasContent: typeof saveCanvasContent;
|
|
3048
3178
|
saveCanvasContext: typeof saveCanvasContext;
|
|
3179
|
+
saveCanvasContentWithContext: typeof saveCanvasContentWithContext;
|
|
3180
|
+
navigateToHome: () => Promise<boolean>;
|
|
3049
3181
|
};
|
|
3050
3182
|
export {};
|