@pitcher/js-api 1.24.0-beta.3 → 1.25.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/impact-js-api.spec.json +212 -0
- package/js-api.esm.js +2431 -2360
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +4 -4
- package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +6 -11
- package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +1036 -5
- package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +4 -6
- package/lib/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +1 -1
- package/lib/apps/agenda-selector/composables/content-warning.use.d.ts +7 -0
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +10 -2
- package/lib/apps/agenda-selector/constants.d.ts +10 -0
- package/lib/apps/agenda-selector/export.d.ts +2 -0
- package/lib/apps/agenda-selector/stores/app.store.d.ts +7 -3
- package/lib/apps/agenda-selector/types/agenda.type.d.ts +4 -5
- package/lib/apps/agenda-selector/types/common.type.d.ts +6 -2
- package/lib/apps/agenda-selector/utils/data.util.d.ts +7 -1
- package/lib/apps/browser/App.vue.d.ts +18 -155
- package/lib/apps/browser/appTypes.d.ts +22 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +174 -1
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +15 -22
- package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +37 -0
- package/lib/apps/browser/components/Content/Content.vue.d.ts +4 -3
- package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +8 -8
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +7 -6
- package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +4 -0
- package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +3 -4
- package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +3 -4
- package/lib/{components/CFileViewer/CFileViewerShare.vue.d.ts → apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts} +2 -4
- package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +6 -0
- package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +12 -0
- package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +5 -4
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +372 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +5 -6
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +4 -5
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +3 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +4 -5
- package/lib/apps/browser/stores/api.d.ts +50 -18
- package/lib/apps/browser/stores/app.d.ts +11 -3
- package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
- package/lib/apps/browser/stores/upload.d.ts +24 -12
- package/lib/apps/browser/util/file.d.ts +1 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +6 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +75 -32
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
- package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +467 -1
- package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +2 -1
- package/lib/apps/{browser/components/BatchMoveItemsModal/BatchMoveItemsModal.vue.d.ts → canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +4 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +23 -51
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +36 -44
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentRevamp.vue.d.ts +30 -53
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +5 -8
- package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +3 -2
- package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +9 -10
- package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +4 -7
- package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +3 -5
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +296 -9
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +61 -16
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +7 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +7 -14
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +323 -4
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +4 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +7 -9
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +57 -0
- package/lib/apps/{browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts → canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +18 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +9 -11
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +641 -6
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +13 -19
- package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +6 -12
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +8 -10
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +294 -6
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +8 -13
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +14 -10
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +295 -8
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +10 -16
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +12 -18
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +350 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +13 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
- package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +18 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +50 -13
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +13 -12
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +5 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -1
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +12 -8
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +12 -21
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -18
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +42 -9
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/composables/useAiPrompt.d.ts +6 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +353 -119
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +68 -36
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +56 -24
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +616 -20
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -2
- package/lib/apps/canvas-builder/composables/useComponentStyle.d.ts +34 -7
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +10 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePrintMode.d.ts +9 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +125 -54
- package/lib/apps/canvas-builder/util/print.util.d.ts +1 -0
- package/lib/apps/canvas-selector/appTypes.d.ts +2 -0
- package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +4 -14
- package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +70 -98
- package/lib/apps/collection-player/App.vue.d.ts +9 -14
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +2 -1
- package/lib/apps/collection-player/components/MainContent.vue.d.ts +4 -1
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -7
- package/lib/apps/collection-player/components/SlideContent.vue.d.ts +8 -0
- package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +1 -1
- package/lib/apps/collection-player/composables/fullscreen.use.d.ts +2 -6
- package/lib/apps/collection-player/composables/image-cache.use.d.ts +1 -0
- package/lib/apps/collection-player/composables/keyboard-bindings.use.d.ts +6 -0
- package/lib/apps/collection-player/composables/moving-group-gestures.use.d.ts +5 -5
- package/lib/apps/collection-player/composables/navigation-cache.use.d.ts +10 -0
- package/lib/apps/collection-player/export.d.ts +1 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +9 -4
- package/lib/apps/collection-player/types/collection-player.type.d.ts +2 -0
- package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +6 -3
- package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +4 -4
- package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +5 -9
- package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +4 -1
- package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +4 -6
- package/lib/apps/collection-selector/composables/content-warning.use.d.ts +6 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/collection-selector/constants.d.ts +5 -0
- package/lib/apps/collection-selector/export.d.ts +2 -0
- package/lib/apps/collection-selector/stores/app.store.d.ts +18 -122
- package/lib/apps/collection-selector/types/collection-selector.type.d.ts +10 -0
- package/lib/apps/collection-selector/types/common.type.d.ts +5 -4
- package/lib/apps/collection-selector/utils/data.util.d.ts +1 -1
- package/lib/apps/content-selector/App.vue.d.ts +3 -1
- package/lib/apps/content-selector/appTypes.d.ts +5 -1
- package/lib/apps/content-selector/components/AiImages.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +3 -1
- package/lib/apps/content-selector/components/Assets.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +176 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +9 -18
- package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +12 -0
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +10 -27
- package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +1 -1
- package/lib/apps/content-selector/stores/api.d.ts +13 -12
- package/lib/apps/content-selector/stores/app.d.ts +18 -2
- package/lib/apps/content-selector/util/file.d.ts +8 -0
- package/lib/apps/notes/NotesApp.vue.d.ts +7 -11
- package/lib/apps/ppt-conversion-selector/App.vue.d.ts +25 -0
- package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +17 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +14 -0
- package/lib/apps/ppt-conversion-selector/composables/canvas.use.d.ts +34 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +70 -0
- package/lib/apps/ppt-conversion-selector/composables/table-input.use.d.ts +15 -0
- package/lib/apps/ppt-conversion-selector/constants.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/export.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +148 -0
- package/lib/apps/ppt-conversion-selector/types/model.type.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/utils/data.util.d.ts +19 -0
- package/lib/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +8 -0
- package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +7 -6
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +3 -7
- package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +17 -0
- package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +3 -2
- package/lib/components/CAvatar/CAvatar.vue.d.ts +3 -2
- package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +9 -19
- package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +31 -0
- package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +19 -0
- package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +3 -7
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +21 -33
- package/lib/components/CButton/CButton.vue.d.ts +2 -1
- package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +2 -1
- package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +5 -12
- package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +5 -8
- package/lib/components/CCard/CCard.vue.d.ts +3 -2
- package/lib/components/CCarousel/CCarousel.vue.d.ts +326 -9
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +1 -1
- package/lib/components/CCheckbox/CCheckbox.vue.d.ts +9 -1
- package/lib/components/CChip/CChip.vue.d.ts +12 -16
- package/lib/components/CCollapse/CCollapse.vue.d.ts +3 -2
- package/lib/components/CCollapse/CCollapseItem.vue.d.ts +3 -2
- package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +2 -1
- package/lib/components/CColorPicker/CColorPicker.vue.d.ts +3 -2
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +4 -2
- package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +17 -22
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +300 -17
- package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +1 -1
- package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +3 -2
- package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +3 -2
- package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +2 -1
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -15
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +5 -22
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +23 -25
- package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +4 -10
- package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +14 -23
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +5 -13
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +290 -1
- package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +19 -0
- package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +10 -0
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +319 -0
- package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +13 -0
- package/lib/components/CDataTable/CDataTable.vue.d.ts +7834 -1
- package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +1 -1
- package/lib/components/CDivider/CDivider.vue.d.ts +10 -2
- package/lib/components/CDrawer/CDrawer.vue.d.ts +9 -1
- package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +9 -1
- package/lib/components/CDropdown/CDropdown.vue.d.ts +3 -2
- package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +3 -8
- package/lib/components/CEmpty/CEmpty.vue.d.ts +3 -2
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +52 -4
- package/lib/components/CError/CErrorFullScreen.vue.d.ts +13 -21
- package/lib/components/CFeedback/CFeedback.vue.d.ts +9 -10
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +4 -10
- package/lib/components/CFilePanel/BasicInfo.vue.d.ts +1 -1
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +4 -7
- package/lib/components/CFilePanel/Details.vue.d.ts +1 -1
- package/lib/components/CFilePanel/Tags.vue.d.ts +1 -1
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +4 -9
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +214 -58
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +2 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +350 -1
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +3 -8
- package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +10 -12
- package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +2 -1
- package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +2 -2
- package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +3 -5
- package/lib/components/CFontSelect/CFontSelect.vue.d.ts +11 -14
- package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +4 -7
- package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +4 -1
- package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +48 -1
- package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResult.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +3 -2
- package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +2 -1
- package/lib/components/CHeightInput/CHeightInput.vue.d.ts +10 -0
- package/lib/components/CHelpText/CHelpText.vue.d.ts +2 -1
- package/lib/components/CIcon/CIcon.vue.d.ts +2 -0
- package/lib/components/CImage/CBrokenImage.vue.d.ts +6 -6
- package/lib/components/CImage/CImage.vue.d.ts +300 -7
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -13
- package/lib/components/CInput/CInput.vue.d.ts +1034 -1
- package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +7 -7
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +4 -6
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +3 -1
- package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +6 -6
- package/lib/components/CList/CList.vue.d.ts +15 -17
- package/lib/components/CList/CListItem.vue.d.ts +6 -5
- package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +9 -0
- package/lib/components/CModal/CModal.vue.d.ts +3 -2
- package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +10 -9
- package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +4 -7
- package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +22 -0
- package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +5 -7
- package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +5 -10
- package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +69 -6
- package/lib/components/CPopover/CPopover.vue.d.ts +3 -2
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +5 -10
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +1 -1
- package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +18 -0
- package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +5 -9
- package/lib/components/CRate/CRate.vue.d.ts +3 -2
- package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +4 -7
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +31 -3
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +1 -1
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2440 -11
- package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +2 -1
- package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +44 -1
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +2443 -0
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +1034 -1
- package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +9 -0
- package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +3 -8
- package/lib/components/CSearch/CSearchOnClick.vue.d.ts +11 -14
- package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +23 -0
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +95 -25
- package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +3 -2
- package/lib/components/CSelect/CSelect.vue.d.ts +3 -2
- package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +5 -7
- package/lib/components/CShortcut/CShortcut.vue.d.ts +3 -2
- package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +1 -1
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +5 -13
- package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +5 -7
- package/lib/components/CSlider/CSlider.vue.d.ts +3 -2
- package/lib/components/CSpin/CSpin.vue.d.ts +3 -2
- package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +5 -8
- package/lib/components/CSwitch/CSwitch.vue.d.ts +18 -1
- package/lib/components/CTable/CTable.vue.d.ts +18 -20
- package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +1 -0
- package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +1 -1
- package/lib/components/CTableInput/CTableInput.vue.d.ts +1128 -60
- package/lib/components/CTableMore/CTableMore.vue.d.ts +6 -14
- package/lib/components/CTableSelect/CTableSelect.vue.d.ts +1 -1
- package/lib/components/CTag/CTag.vue.d.ts +9 -1
- package/lib/components/CTags/CTags.vue.d.ts +4634 -1
- package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +3 -1
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +20 -0
- package/lib/components/CTimeline/CTimeline.vue.d.ts +4 -5
- package/lib/components/CTimeline/CTimelineControl.vue.d.ts +1 -1
- package/lib/components/CTimeline/CTimelineModal.vue.d.ts +4 -5
- package/lib/components/CTooltip/CTooltip.vue.d.ts +3 -2
- package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +7 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +6 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +6 -7
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +303 -0
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +370 -9
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +3 -1
- package/lib/components/CVideo/CVideo.vue.d.ts +10 -22
- package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +13 -14
- package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +3 -2
- package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +11 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +252 -44
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +9 -16
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +5 -15
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +770 -55
- package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +25 -21
- package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +3 -8
- package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +54 -0
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +220 -19
- package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +5 -8
- package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +5 -11
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +27 -3
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
- package/lib/components/filters/CSearchFilter.vue.d.ts +90 -2
- package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +533 -64
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +11 -22
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +3 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +1722 -3
- package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +6 -18
- package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +7 -10
- package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +5 -6
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +25 -30
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +130 -7
- package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +1 -1
- package/lib/components/sections/CSectionManagement.vue.d.ts +237 -50
- package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +11 -18
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +5 -12
- package/lib/components/themes/CThemeManagement.vue.d.ts +354 -0
- package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +24 -0
- package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +10 -0
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +16 -0
- package/lib/composables/appsDb.use.d.ts +8 -1
- package/lib/composables/useCanvasLocks.d.ts +54 -0
- package/lib/composables/useCanvasOverlay.d.ts +13 -1
- package/lib/composables/useCoreApi.d.ts +7 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
- package/lib/composables/useMetadataSearch.d.ts +19 -0
- package/lib/composables/useMetadataTemplates.d.ts +246 -0
- package/lib/composables/useWindowEvents.d.ts +5 -3
- package/lib/constants/appsDb.const.d.ts +4 -0
- package/lib/constants/cdp.const.d.ts +2 -2
- package/lib/constants/color.const.d.ts +1 -0
- package/lib/constants/query-builder.const.d.ts +1 -0
- package/lib/main.lib.d.ts +25 -1
- package/lib/sdk/api/HighLevelApi.d.ts +20 -1
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +20 -0
- package/lib/sdk/api/modules/admin/content.admin.d.ts +21 -3
- package/lib/sdk/api/modules/admin/files.admin.d.ts +0 -19
- package/lib/sdk/api/modules/admin/index.d.ts +7 -1
- package/lib/sdk/api/modules/admin/types.admin.d.ts +55 -6
- package/lib/sdk/api/modules/canvas.d.ts +7 -0
- package/lib/sdk/api/modules/env.d.ts +1 -1
- package/lib/sdk/api/modules/folders.core.d.ts +7 -0
- package/lib/sdk/api/modules/index.d.ts +2 -0
- package/lib/sdk/api/modules/theme.d.ts +10 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +20 -0
- package/lib/sdk/api/modules/ui/content.ui.d.ts +2 -2
- package/lib/sdk/api/modules/ui/index.d.ts +6 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +28 -4
- package/lib/sdk/interfaces.d.ts +24 -1
- package/lib/sdk/main.d.ts +92 -5
- package/lib/sdk/payload.types.d.ts +8 -0
- package/lib/theme/light.d.ts +6 -0
- package/lib/theme/theme.types.d.ts +7 -0
- package/lib/types/app.d.ts +4 -0
- package/lib/types/canvasTheme.d.ts +37 -0
- package/lib/types/canvases.d.ts +9 -0
- package/lib/types/core/MetadataFilter.d.ts +44 -0
- package/lib/types/core/UpsertPptxSlideImages.d.ts +12 -0
- package/lib/types/core/index.d.ts +2 -0
- package/lib/types/files.d.ts +5 -2
- package/lib/types/folder.d.ts +35 -0
- package/lib/types/instanceSettings.types.d.ts +8 -0
- package/lib/types/launchDarkly.types.d.ts +4 -1
- package/lib/types/organizationSettings.types.d.ts +9 -0
- package/lib/types/query-builder.types.d.ts +7 -0
- package/lib/types/recentFiles.types.d.ts +2 -1
- package/lib/types/search.d.ts +5 -0
- package/lib/util/anchor.d.ts +1 -1
- package/lib/util/array.d.ts +1 -1
- package/lib/util/color.d.ts +2 -0
- package/lib/util/file.util.d.ts +4 -0
- package/lib/util/image.d.ts +6 -0
- package/lib/util/query-builder.util.d.ts +2 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/tree-transformation.util.d.ts +6 -0
- package/lib/util/url.d.ts +3 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +0 -4
- package/types/openapi/models/AuthToken.d.ts +1 -0
- package/types/openapi/models/AuthTokenRequest.d.ts +1 -0
- package/types/openapi/models/Canvas.d.ts +0 -2
- package/types/openapi/models/CanvasCreate.d.ts +0 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +0 -2
- package/types/openapi/models/CanvasUpdate.d.ts +0 -2
- package/types/openapi/models/DeletedCanvas.d.ts +0 -2
- package/types/openapi/models/DeletedFile.d.ts +1 -2
- package/types/openapi/models/DeletedInstance.d.ts +1 -1
- package/types/openapi/models/FavoriteFile.d.ts +1 -0
- package/types/openapi/models/FavoriteFileRequest.d.ts +1 -0
- package/types/openapi/models/File.d.ts +1 -2
- package/types/openapi/models/FileCreate.d.ts +1 -2
- package/types/openapi/models/FileCreateRequest.d.ts +1 -0
- package/types/openapi/models/FileRetrieve.d.ts +1 -2
- package/types/openapi/models/FileStatusEnum.d.ts +3 -1
- package/types/openapi/models/FileUpdate.d.ts +1 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/FolderFile.d.ts +3 -0
- package/types/openapi/models/Instance.d.ts +1 -1
- package/types/openapi/models/InstanceAnalytics.d.ts +5 -3
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -0
- package/types/openapi/models/InstanceRequest.d.ts +1 -1
- package/types/openapi/models/InstanceUpdate.d.ts +1 -1
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateField.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateSection.d.ts +1 -0
- package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +1 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/PatchedUserRequest.d.ts +1 -1
- package/types/openapi/models/SearchCanvas.d.ts +0 -1
- package/types/openapi/models/SearchResult.d.ts +1 -3
- package/types/openapi/models/SharedLink.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreate.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +0 -1
- package/types/openapi/models/SharedLinkInstance.d.ts +1 -0
- package/types/openapi/models/User.d.ts +1 -1
- package/types/openapi/models/UserRequest.d.ts +1 -1
- package/lib/apps/browser/components/UpsertFolderModal/UpsertFolderModal.vue.d.ts +0 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentLegacy.vue.d.ts +0 -113
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -31
- package/lib/apps/collection-player/composables/arrow-keys.use.d.ts +0 -6
- package/lib/apps/collection-selector/App.vue.d.ts +0 -29
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -17
- package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -44
- package/types/openapi/models/PaginatedStorageRegionList.d.ts +0 -7
- package/types/openapi/models/SearchContentDistributionGroup.d.ts +0 -10
- package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +0 -10
- package/types/openapi/models/StorageRegion.d.ts +0 -5
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { EmitFn, Ref } from 'vue';
|
|
2
|
+
import { default as useConfirmation } from '../../../composables/useConfirmation';
|
|
3
|
+
import { MetadataFilterRequest, UpsertPptxSlideImagesRequestPayload, UpsertPptxSlideImagesRequestParams, UpsertPptxSlideImagesResponse } from '../../../types/core';
|
|
4
|
+
import { CollectionPlayerWithPages, CollectionGroupWithPages } from '../types/model.type';
|
|
5
|
+
import { CollectionPage } from '../../collection-player/types/collection-player.type';
|
|
6
|
+
import { CanvasCreateRequest, CanvasRetrieve, PatchedCanvasUpdateRequest, Instance } from '../../../../types/openapi';
|
|
7
|
+
import { GetCanvasesParams } from '../../../types/canvases';
|
|
8
|
+
import { Emit } from '../App.vue';
|
|
9
|
+
import { PaginatedData } from '../../../types/paginatedData';
|
|
10
|
+
type ExistingSections = Record<string, {
|
|
11
|
+
id: string;
|
|
12
|
+
saveAction: 'overwrite' | 'keep';
|
|
13
|
+
}>;
|
|
14
|
+
export type Api = {
|
|
15
|
+
createCanvas: (params: Omit<CanvasCreateRequest, 'instance_id'>) => Promise<CanvasRetrieve>;
|
|
16
|
+
getCanvases: (params: GetCanvasesParams & {
|
|
17
|
+
filters?: Record<string, any>;
|
|
18
|
+
}) => Promise<PaginatedData<CanvasRetrieve>>;
|
|
19
|
+
fetchMetadataFilter: (payload: MetadataFilterRequest) => Promise<Record<string, string>>;
|
|
20
|
+
upsertPptxSlideImages: (params: UpsertPptxSlideImagesRequestParams, body: UpsertPptxSlideImagesRequestPayload) => Promise<UpsertPptxSlideImagesResponse>;
|
|
21
|
+
updateCanvas: (payload: PatchedCanvasUpdateRequest & {
|
|
22
|
+
id: CanvasRetrieve['id'];
|
|
23
|
+
instance_id?: Instance['id'];
|
|
24
|
+
fields?: string;
|
|
25
|
+
}) => Promise<CanvasRetrieve>;
|
|
26
|
+
};
|
|
27
|
+
type StorePayload = {
|
|
28
|
+
initialCollection?: CollectionPlayerWithPages;
|
|
29
|
+
t: (key: string, values?: Record<string, string | number>) => string;
|
|
30
|
+
confirmation: ReturnType<typeof useConfirmation>;
|
|
31
|
+
zIndex?: number;
|
|
32
|
+
instanceId: string;
|
|
33
|
+
api: Api;
|
|
34
|
+
emit: EmitFn<Emit>;
|
|
35
|
+
fileTags?: string[];
|
|
36
|
+
};
|
|
37
|
+
type StoreData = {
|
|
38
|
+
collection: Ref<CollectionPlayerWithPages>;
|
|
39
|
+
expandedGroups: Ref<string[]>;
|
|
40
|
+
deleteGroup: (groupId: string, groupName: string) => void;
|
|
41
|
+
updateGroup: (group: Partial<Omit<CollectionGroupWithPages, 'id'>> & Pick<CollectionGroupWithPages, 'id'>) => void;
|
|
42
|
+
updateGroups: (groups: CollectionGroupWithPages[]) => void;
|
|
43
|
+
updateSlides: (groupId: string, slides: CollectionPage[]) => void;
|
|
44
|
+
updateCollectionName: (name: string) => void;
|
|
45
|
+
updateGroupName: (groupId: string, name: string) => void;
|
|
46
|
+
updateSlideName: (slideIndex: number, name: string) => void;
|
|
47
|
+
deleteSlide: (groupId: string, slide: CollectionPage) => void;
|
|
48
|
+
moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionPage) => void;
|
|
49
|
+
childModalZIndex?: number;
|
|
50
|
+
existingSections: Ref<ExistingSections>;
|
|
51
|
+
api: Api;
|
|
52
|
+
emit: EmitFn<Emit>;
|
|
53
|
+
isSaving: Ref<boolean>;
|
|
54
|
+
isInitialized: Ref<boolean>;
|
|
55
|
+
};
|
|
56
|
+
export type SlideMetadata = {
|
|
57
|
+
title: string;
|
|
58
|
+
id: number;
|
|
59
|
+
sequence: number;
|
|
60
|
+
};
|
|
61
|
+
export declare function provideAppStore({ initialCollection, t, confirmation, zIndex, api, instanceId, emit, fileTags, }: StorePayload): {
|
|
62
|
+
collection: Ref<{
|
|
63
|
+
groups: {
|
|
64
|
+
id: string;
|
|
65
|
+
name: string;
|
|
66
|
+
slides: {
|
|
67
|
+
id: string;
|
|
68
|
+
type: "slide";
|
|
69
|
+
file: {
|
|
70
|
+
metadata?: Record<string, any> | undefined;
|
|
71
|
+
readonly id: string;
|
|
72
|
+
name?: string | undefined;
|
|
73
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
74
|
+
tags?: Array<string> | undefined;
|
|
75
|
+
readonly thumbnail_url: string | null;
|
|
76
|
+
permissions?: {
|
|
77
|
+
can_download?: boolean | undefined;
|
|
78
|
+
can_share?: boolean | undefined;
|
|
79
|
+
} | undefined;
|
|
80
|
+
readonly content_url: string | null;
|
|
81
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
82
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
83
|
+
readonly pspdfkit_document_id: string | null;
|
|
84
|
+
readonly pspdfkit_server_url: string | null;
|
|
85
|
+
};
|
|
86
|
+
slide: {
|
|
87
|
+
index: number;
|
|
88
|
+
url: import('../../../../types/openapi').FileRetrieve["thumbnail_url"];
|
|
89
|
+
};
|
|
90
|
+
}[];
|
|
91
|
+
}[];
|
|
92
|
+
filters?: Record<string, any> | undefined;
|
|
93
|
+
name: string;
|
|
94
|
+
}, CollectionPlayerWithPages | {
|
|
95
|
+
groups: {
|
|
96
|
+
id: string;
|
|
97
|
+
name: string;
|
|
98
|
+
slides: {
|
|
99
|
+
id: string;
|
|
100
|
+
type: "slide";
|
|
101
|
+
file: {
|
|
102
|
+
metadata?: Record<string, any> | undefined;
|
|
103
|
+
readonly id: string;
|
|
104
|
+
name?: string | undefined;
|
|
105
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
106
|
+
tags?: Array<string> | undefined;
|
|
107
|
+
readonly thumbnail_url: string | null;
|
|
108
|
+
permissions?: {
|
|
109
|
+
can_download?: boolean | undefined;
|
|
110
|
+
can_share?: boolean | undefined;
|
|
111
|
+
} | undefined;
|
|
112
|
+
readonly content_url: string | null;
|
|
113
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
114
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
115
|
+
readonly pspdfkit_document_id: string | null;
|
|
116
|
+
readonly pspdfkit_server_url: string | null;
|
|
117
|
+
};
|
|
118
|
+
slide: {
|
|
119
|
+
index: number;
|
|
120
|
+
url: import('../../../../types/openapi').FileRetrieve["thumbnail_url"];
|
|
121
|
+
};
|
|
122
|
+
}[];
|
|
123
|
+
}[];
|
|
124
|
+
filters?: Record<string, any> | undefined;
|
|
125
|
+
name: string;
|
|
126
|
+
}>;
|
|
127
|
+
expandedGroups: Ref<string[], string[]>;
|
|
128
|
+
childModalZIndex: number | undefined;
|
|
129
|
+
deleteGroup: (groupId: string, groupName: string) => void;
|
|
130
|
+
updateGroup: (group: Partial<Omit<CollectionGroupWithPages, "id">> & Pick<CollectionGroupWithPages, "id">) => void;
|
|
131
|
+
updateGroups: (groups: CollectionGroupWithPages[]) => void;
|
|
132
|
+
updateSlides: (groupId: string, slides: CollectionPage[]) => void;
|
|
133
|
+
updateCollectionName: (name: string) => void;
|
|
134
|
+
updateGroupName: (groupId: string, name: string) => void;
|
|
135
|
+
deleteSlide: (groupId: string, slide: CollectionPage) => void;
|
|
136
|
+
moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionPage) => void;
|
|
137
|
+
existingSections: Ref<ExistingSections, ExistingSections>;
|
|
138
|
+
updateSlideName: (slideIndex: number, name: string) => void;
|
|
139
|
+
api: Api;
|
|
140
|
+
initialize: () => Promise<void>;
|
|
141
|
+
emit: ((event: "cancel") => void) & ((event: "close", args_0: CollectionPlayerWithPages) => void) & ((event: "contentChange", args_0: CollectionPlayerWithPages) => void);
|
|
142
|
+
isInitialized: Ref<boolean, boolean>;
|
|
143
|
+
savePitcherSlides: () => Promise<CanvasRetrieve[]>;
|
|
144
|
+
saveAndClose: () => Promise<void>;
|
|
145
|
+
isSaving: Ref<boolean, boolean>;
|
|
146
|
+
};
|
|
147
|
+
export declare function useAppStore(): StoreData;
|
|
148
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CollectionPage } from '../../collection-player/types/collection-player.type';
|
|
2
|
+
export type CollectionGroupWithPages = {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
slides: CollectionPage[];
|
|
6
|
+
};
|
|
7
|
+
export type CollectionPlayerWithPages = {
|
|
8
|
+
groups: CollectionGroupWithPages[];
|
|
9
|
+
filters?: Record<string, any>;
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { parsePptxFileToCollectionPlayer } from '../../collection-selector/export';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { I18nTranslate } from '../../../types/common';
|
|
2
|
+
import { CollectionPlayerWithPages } from '../types/model.type';
|
|
3
|
+
export declare const getDefaultNewGroupName: (t: I18nTranslate) => string;
|
|
4
|
+
export declare const getDefaultGroupName: (t: I18nTranslate) => string;
|
|
5
|
+
export declare const generateNewEmptyGroup: (t: I18nTranslate) => {
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
slides: never[];
|
|
9
|
+
};
|
|
10
|
+
export declare const generateNewCollection: (t: I18nTranslate) => {
|
|
11
|
+
name: string;
|
|
12
|
+
groups: {
|
|
13
|
+
id: string;
|
|
14
|
+
name: string;
|
|
15
|
+
slides: never[];
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
18
|
+
export declare const getAllSlidesCount: (data: CollectionPlayerWithPages) => number;
|
|
19
|
+
export declare const findFirstSlide: (data: CollectionPlayerWithPages) => import('../../collection-player/export').CollectionPage | undefined;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
modelValue?: string;
|
|
3
|
-
}
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
5
|
"update:modelValue": (a: string) => any;
|
|
5
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
6
|
-
modelValue?: string;
|
|
7
|
-
}> & Readonly<{
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
8
7
|
"onUpdate:modelValue"?: ((a: string) => any) | undefined;
|
|
9
8
|
}>, {
|
|
10
9
|
modelValue: string;
|
|
11
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
10
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
11
|
+
animatedElement: HTMLDivElement;
|
|
12
|
+
}, HTMLDivElement>;
|
|
12
13
|
export default _default;
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { ApexOptions } from 'apexcharts';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
series: ApexAxisChartSeries;
|
|
4
4
|
options: ApexOptions;
|
|
5
5
|
width?: number;
|
|
6
6
|
height?: number;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
options: ApexOptions;
|
|
10
|
-
width?: number;
|
|
11
|
-
height?: number;
|
|
12
|
-
}> & Readonly<{}>, {
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
9
|
width: number;
|
|
14
10
|
height: number;
|
|
15
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface Form {
|
|
2
|
+
is_draft?: boolean;
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
}
|
|
5
|
+
type __VLS_Props = {
|
|
6
|
+
hideStatus?: boolean;
|
|
7
|
+
modelValue: Form;
|
|
8
|
+
showKeepAsIsPlaceholder?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (form: Form) => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
"onUpdate:modelValue"?: ((form: Form) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
hideStatus: boolean;
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
export default _default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
|
|
3
|
-
refs: {};
|
|
4
2
|
attrs: Partial<{}>;
|
|
3
|
+
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
4
|
+
refs: {};
|
|
5
|
+
rootEl: any;
|
|
5
6
|
};
|
|
6
7
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
7
8
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
|
|
3
|
-
refs: {};
|
|
4
2
|
attrs: Partial<{}>;
|
|
3
|
+
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
4
|
+
refs: {};
|
|
5
|
+
rootEl: any;
|
|
5
6
|
};
|
|
6
7
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
7
8
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,36 +1,26 @@
|
|
|
1
1
|
import { BackgroundPositionX, BackgroundPositionY, BackgroundRepeat, BackgroundSize, BackgroundAttachment } from '../../types/background';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
backgroundImage?: string;
|
|
4
|
+
backgroundImagePlaceholder?: string;
|
|
4
5
|
backgroundPositionX?: BackgroundPositionX;
|
|
5
6
|
backgroundPositionY?: BackgroundPositionY;
|
|
6
7
|
backgroundRepeat?: BackgroundRepeat;
|
|
7
8
|
backgroundSize?: BackgroundSize;
|
|
8
9
|
backgroundAttachment?: BackgroundAttachment;
|
|
10
|
+
backgroundSizeOptions?: BackgroundSize[];
|
|
9
11
|
hideBackgroundAttachment?: boolean;
|
|
10
12
|
hideImageSelector?: boolean;
|
|
11
13
|
hideBackgroundSize?: boolean;
|
|
12
14
|
hideBackgroundPositionX?: boolean;
|
|
13
15
|
hideBackgroundPositionY?: boolean;
|
|
14
16
|
hideBackgroundRepeat?: boolean;
|
|
15
|
-
}
|
|
17
|
+
};
|
|
18
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
19
|
"choose-content": () => any;
|
|
17
|
-
"bg-property-change": (property: string, value:
|
|
18
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
19
|
-
backgroundImage?: string;
|
|
20
|
-
backgroundPositionX?: BackgroundPositionX;
|
|
21
|
-
backgroundPositionY?: BackgroundPositionY;
|
|
22
|
-
backgroundRepeat?: BackgroundRepeat;
|
|
23
|
-
backgroundSize?: BackgroundSize;
|
|
24
|
-
backgroundAttachment?: BackgroundAttachment;
|
|
25
|
-
hideBackgroundAttachment?: boolean;
|
|
26
|
-
hideImageSelector?: boolean;
|
|
27
|
-
hideBackgroundSize?: boolean;
|
|
28
|
-
hideBackgroundPositionX?: boolean;
|
|
29
|
-
hideBackgroundPositionY?: boolean;
|
|
30
|
-
hideBackgroundRepeat?: boolean;
|
|
31
|
-
}> & Readonly<{
|
|
20
|
+
"bg-property-change": (property: string, value: any) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
32
22
|
"onChoose-content"?: (() => any) | undefined;
|
|
33
|
-
"onBg-property-change"?: ((property: string, value:
|
|
23
|
+
"onBg-property-change"?: ((property: string, value: any) => any) | undefined;
|
|
34
24
|
}>, {
|
|
35
25
|
hideBackgroundAttachment: boolean;
|
|
36
26
|
hideImageSelector: boolean;
|
|
@@ -38,5 +28,5 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
38
28
|
hideBackgroundPositionX: boolean;
|
|
39
29
|
hideBackgroundPositionY: boolean;
|
|
40
30
|
hideBackgroundRepeat: boolean;
|
|
41
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
42
32
|
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { MiniFolder } from '../../../types/openapi';
|
|
2
|
+
interface Props {
|
|
3
|
+
show: boolean;
|
|
4
|
+
currentFolderId: string | null;
|
|
5
|
+
selectedItemIds: string[];
|
|
6
|
+
isMoving?: boolean;
|
|
7
|
+
isFetchingLevel?: boolean;
|
|
8
|
+
folders?: MiniFolder[];
|
|
9
|
+
currentFolder: {
|
|
10
|
+
id: string | null;
|
|
11
|
+
name: string;
|
|
12
|
+
};
|
|
13
|
+
path: {
|
|
14
|
+
id: string | null;
|
|
15
|
+
name: string;
|
|
16
|
+
}[];
|
|
17
|
+
}
|
|
18
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
"update:show": (show: boolean) => any;
|
|
20
|
+
"fetch-level": (folderId?: string | null | undefined) => any;
|
|
21
|
+
"move-items": (targetFolderId: string | null, itemIds: string[]) => any;
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
23
|
+
"onUpdate:show"?: ((show: boolean) => any) | undefined;
|
|
24
|
+
"onFetch-level"?: ((folderId?: string | null | undefined) => any) | undefined;
|
|
25
|
+
"onMove-items"?: ((targetFolderId: string | null, itemIds: string[]) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
folders: MiniFolder[];
|
|
28
|
+
isMoving: boolean;
|
|
29
|
+
isFetchingLevel: boolean;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface ThemeBorderRadius {
|
|
2
|
+
topLeft: number;
|
|
3
|
+
topRight: number;
|
|
4
|
+
bottomLeft: number;
|
|
5
|
+
bottomRight: number;
|
|
6
|
+
}
|
|
7
|
+
type __VLS_Props = {
|
|
8
|
+
isAdvancedMode?: boolean;
|
|
9
|
+
values?: ThemeBorderRadius;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"update:value": (...args: any[]) => void;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
values: ThemeBorderRadius;
|
|
17
|
+
isAdvancedMode: boolean;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
|
+
export default _default;
|
|
@@ -3,15 +3,11 @@ export type CBulkDeleteErrorDetails = Omit<BulkDeleteErrorDetail, 'error'> & {
|
|
|
3
3
|
name: string;
|
|
4
4
|
error?: string;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
type __VLS_Props = {
|
|
7
7
|
errorsDetails: CBulkDeleteErrorDetails[];
|
|
8
8
|
nameText?: string;
|
|
9
9
|
idText?: string;
|
|
10
10
|
msgText?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
nameText?: string;
|
|
14
|
-
idText?: string;
|
|
15
|
-
msgText?: string;
|
|
16
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
13
|
export default _default;
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
slots: {
|
|
3
|
-
start?(_: {}): any;
|
|
4
|
-
end?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {};
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
1
|
+
type __VLS_Props = {
|
|
11
2
|
selectedCount: number;
|
|
12
3
|
count: number;
|
|
13
4
|
areAllSelectedFavorites?: boolean;
|
|
@@ -19,6 +10,8 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
19
10
|
manageAttributes?: boolean;
|
|
20
11
|
manageFileAttributes?: boolean;
|
|
21
12
|
removeTags?: boolean;
|
|
13
|
+
manageDistribution?: boolean;
|
|
14
|
+
manageFileDistributions?: boolean;
|
|
22
15
|
};
|
|
23
16
|
showMove?: boolean;
|
|
24
17
|
showDelete?: boolean;
|
|
@@ -27,7 +20,18 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
27
20
|
isLoadingMove?: boolean;
|
|
28
21
|
isLoadingDelete?: boolean;
|
|
29
22
|
isLoadingFavorite?: boolean;
|
|
30
|
-
}
|
|
23
|
+
};
|
|
24
|
+
declare function __VLS_template(): {
|
|
25
|
+
attrs: Partial<{}>;
|
|
26
|
+
slots: {
|
|
27
|
+
start?(_: {}): any;
|
|
28
|
+
end?(_: {}): any;
|
|
29
|
+
};
|
|
30
|
+
refs: {};
|
|
31
|
+
rootEl: HTMLDivElement;
|
|
32
|
+
};
|
|
33
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
35
|
delete: () => any;
|
|
32
36
|
move: () => any;
|
|
33
37
|
toggleSelect: (value: boolean) => any;
|
|
@@ -36,27 +40,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
36
40
|
manageFileAttributes: () => any;
|
|
37
41
|
addTags: () => any;
|
|
38
42
|
removeTags: () => any;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
areAllSelectedFavorites?: boolean;
|
|
43
|
-
disabled?: boolean;
|
|
44
|
-
showMore?: boolean;
|
|
45
|
-
moreActions?: {
|
|
46
|
-
addTags?: boolean;
|
|
47
|
-
delete?: boolean;
|
|
48
|
-
manageAttributes?: boolean;
|
|
49
|
-
manageFileAttributes?: boolean;
|
|
50
|
-
removeTags?: boolean;
|
|
51
|
-
};
|
|
52
|
-
showMove?: boolean;
|
|
53
|
-
showDelete?: boolean;
|
|
54
|
-
showFavorite?: boolean;
|
|
55
|
-
isLoadingEdit?: boolean;
|
|
56
|
-
isLoadingMove?: boolean;
|
|
57
|
-
isLoadingDelete?: boolean;
|
|
58
|
-
isLoadingFavorite?: boolean;
|
|
59
|
-
}> & Readonly<{
|
|
43
|
+
manageDistribution: () => any;
|
|
44
|
+
manageFileDistributions: () => any;
|
|
45
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
60
46
|
onDelete?: (() => any) | undefined;
|
|
61
47
|
onMove?: (() => any) | undefined;
|
|
62
48
|
onToggleSelect?: ((value: boolean) => any) | undefined;
|
|
@@ -65,7 +51,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
65
51
|
onManageFileAttributes?: (() => any) | undefined;
|
|
66
52
|
onAddTags?: (() => any) | undefined;
|
|
67
53
|
onRemoveTags?: (() => any) | undefined;
|
|
68
|
-
|
|
54
|
+
onManageDistribution?: (() => any) | undefined;
|
|
55
|
+
onManageFileDistributions?: (() => any) | undefined;
|
|
56
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
69
57
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
70
58
|
export default _default;
|
|
71
59
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -2,12 +2,13 @@ interface Props {
|
|
|
2
2
|
iconPlacement?: 'left' | 'right';
|
|
3
3
|
}
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
5
6
|
slots: {
|
|
6
7
|
icon?(_: {}): any;
|
|
7
8
|
default?(_: {}): any;
|
|
8
9
|
};
|
|
9
10
|
refs: {};
|
|
10
|
-
|
|
11
|
+
rootEl: any;
|
|
11
12
|
};
|
|
12
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
14
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -6,12 +6,13 @@ interface Props extends /* @vue-ignore */ ModalProps {
|
|
|
6
6
|
verticalAlignment?: 'top' | 'middle';
|
|
7
7
|
}
|
|
8
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
9
10
|
slots: {
|
|
10
11
|
default?(_: {}): any;
|
|
11
12
|
footer?(_: {}): any;
|
|
12
13
|
};
|
|
13
14
|
refs: {};
|
|
14
|
-
|
|
15
|
+
rootEl: any;
|
|
15
16
|
};
|
|
16
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
18
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CanvasRetrieve } from '../../../types/openapi';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
search?: string;
|
|
4
4
|
activeView?: string;
|
|
5
5
|
canvases?: CanvasRetrieve[];
|
|
@@ -7,19 +7,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
7
7
|
selectedCanvas?: any;
|
|
8
8
|
isLoading?: boolean;
|
|
9
9
|
showTemplates?: boolean;
|
|
10
|
-
}
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
"update:search": (...args: any[]) => void;
|
|
12
13
|
"update:activeView": (...args: any[]) => void;
|
|
13
14
|
"update:selectedCanvas": (...args: any[]) => void;
|
|
14
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
15
|
-
search?: string;
|
|
16
|
-
activeView?: string;
|
|
17
|
-
canvases?: CanvasRetrieve[];
|
|
18
|
-
defaultTemplate?: CanvasRetrieve;
|
|
19
|
-
selectedCanvas?: any;
|
|
20
|
-
isLoading?: boolean;
|
|
21
|
-
showTemplates?: boolean;
|
|
22
|
-
}> & Readonly<{
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
16
|
"onUpdate:search"?: ((...args: any[]) => any) | undefined;
|
|
24
17
|
"onUpdate:activeView"?: ((...args: any[]) => any) | undefined;
|
|
25
18
|
"onUpdate:selectedCanvas"?: ((...args: any[]) => any) | undefined;
|
|
@@ -27,5 +20,5 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
27
20
|
search: string;
|
|
28
21
|
activeView: string;
|
|
29
22
|
showTemplates: boolean;
|
|
30
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
24
|
export default _default;
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
canvas: any;
|
|
3
3
|
isDefault?: boolean;
|
|
4
4
|
activeCanvasId?: string;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
7
|
"select-canvas": (canvasId: string) => any;
|
|
7
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
8
|
-
canvas: any;
|
|
9
|
-
isDefault?: boolean;
|
|
10
|
-
activeCanvasId?: string;
|
|
11
|
-
}> & Readonly<{
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
9
|
"onSelect-canvas"?: ((canvasId: string) => any) | undefined;
|
|
13
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
11
|
export default _default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
|
|
3
|
-
refs: {};
|
|
4
2
|
attrs: Partial<{}>;
|
|
3
|
+
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
4
|
+
refs: {};
|
|
5
|
+
rootEl: any;
|
|
5
6
|
};
|
|
6
7
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
7
8
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|