@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
|
@@ -4,5 +4,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4
4
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
5
5
|
onCancel?: (() => any) | undefined;
|
|
6
6
|
onClose?: (() => any) | undefined;
|
|
7
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
7
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
8
8
|
export default _default;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
hideClose?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
5
|
close: () => any;
|
|
3
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
4
7
|
onClose?: (() => any) | undefined;
|
|
5
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
8
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
6
9
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CollectionGroup } from '../../collection-player/types/collection-player.type';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
group: CollectionGroup;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
4
|
+
filters?: Record<string, any>;
|
|
5
|
+
};
|
|
6
|
+
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, {}, HTMLDivElement>;
|
|
7
7
|
export default _default;
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import { CollectionSlide } from '../../collection-player/types/collection-player.type';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
item: CollectionSlide;
|
|
4
4
|
isFirst?: boolean;
|
|
5
5
|
isLast?: boolean;
|
|
6
6
|
disabledMoveToGroup?: boolean;
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
9
|
moveUp: () => any;
|
|
9
10
|
moveDown: () => any;
|
|
10
11
|
moveToGroup: () => any;
|
|
11
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
-
item: CollectionSlide;
|
|
13
|
-
isFirst?: boolean;
|
|
14
|
-
isLast?: boolean;
|
|
15
|
-
disabledMoveToGroup?: boolean;
|
|
16
|
-
}> & Readonly<{
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
13
|
onMoveUp?: (() => any) | undefined;
|
|
18
14
|
onMoveDown?: (() => any) | undefined;
|
|
19
15
|
onMoveToGroup?: (() => any) | undefined;
|
|
20
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
16
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
17
|
export default _default;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
readonlyName?: boolean;
|
|
3
|
+
};
|
|
4
|
+
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, {}, HTMLDivElement>;
|
|
2
5
|
export default _default;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { CollectionGroup, CollectionSlide } from '../../../collection-player/types/collection-player.type';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
zIndex?: number;
|
|
4
4
|
groups: CollectionGroup[];
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
7
|
close: () => any;
|
|
7
8
|
moveToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => any;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
9
|
-
zIndex?: number;
|
|
10
|
-
groups: CollectionGroup[];
|
|
11
|
-
}> & Readonly<{
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
10
|
onClose?: (() => any) | undefined;
|
|
13
11
|
onMoveToGroup?: ((fromGroup: string, toGroup: string, slide: CollectionSlide) => any) | undefined;
|
|
14
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CollectionPlayer, CollectionSlide } from '../../collection-player/types/collection-player.type';
|
|
2
|
+
export declare function useContentWarning(): {
|
|
3
|
+
isWarningVisible: import('vue').Ref<boolean, boolean>;
|
|
4
|
+
validateCollectionPlayerContent: (collectionPlayer: CollectionPlayer) => void;
|
|
5
|
+
validateCollectionSlides: (slides: CollectionSlide[]) => void;
|
|
6
|
+
};
|
|
@@ -18,6 +18,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
18
18
|
readonly id: string;
|
|
19
19
|
name?: string | undefined;
|
|
20
20
|
readonly type: import('../../../main.lib').FileTypeEnum;
|
|
21
|
+
tags?: Array<string> | undefined;
|
|
21
22
|
readonly thumbnail_url: string | null;
|
|
22
23
|
permissions?: {
|
|
23
24
|
can_download?: boolean | undefined;
|
|
@@ -41,6 +42,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
41
42
|
readonly id: string;
|
|
42
43
|
name?: string | undefined;
|
|
43
44
|
readonly type: import('../../../main.lib').FileTypeEnum;
|
|
45
|
+
tags?: Array<string> | undefined;
|
|
44
46
|
readonly thumbnail_url: string | null;
|
|
45
47
|
permissions?: {
|
|
46
48
|
can_download?: boolean | undefined;
|
|
@@ -63,6 +65,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
63
65
|
readonly id: string;
|
|
64
66
|
name?: string | undefined;
|
|
65
67
|
readonly type: import('../../../main.lib').FileTypeEnum;
|
|
68
|
+
tags?: Array<string> | undefined;
|
|
66
69
|
readonly thumbnail_url: string | null;
|
|
67
70
|
permissions?: {
|
|
68
71
|
can_download?: boolean | undefined;
|
|
@@ -86,6 +89,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
86
89
|
readonly id: string;
|
|
87
90
|
name?: string | undefined;
|
|
88
91
|
readonly type: import('../../../main.lib').FileTypeEnum;
|
|
92
|
+
tags?: Array<string> | undefined;
|
|
89
93
|
readonly thumbnail_url: string | null;
|
|
90
94
|
permissions?: {
|
|
91
95
|
can_download?: boolean | undefined;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { Ref } from 'vue';
|
|
1
|
+
import { Ref, EmitFn, ComputedRef, ComponentPublicInstance } from 'vue';
|
|
2
2
|
import { default as useConfirmation } from '../../../composables/useConfirmation';
|
|
3
3
|
import { CollectionGroup, CollectionPlayer, CollectionSlide } from '../../collection-player/types/collection-player.type';
|
|
4
4
|
import { FetchFileList, SelectFileContent } from '../types/common.type';
|
|
5
|
-
import { File, FileRetrieve
|
|
5
|
+
import { File, FileRetrieve } from '../../../../types/openapi';
|
|
6
|
+
import { Translations } from '../types/collection-selector.type';
|
|
7
|
+
import { Emit } from '../App.vue';
|
|
8
|
+
import { useContentWarning } from '../composables/content-warning.use';
|
|
6
9
|
type StorePayload = {
|
|
7
10
|
initialCollection?: CollectionPlayer;
|
|
8
11
|
t: (key: string, values?: Record<string, string | number>) => string;
|
|
@@ -10,9 +13,13 @@ type StorePayload = {
|
|
|
10
13
|
selectFileContent: SelectFileContent;
|
|
11
14
|
attachTo?: HTMLElement | string;
|
|
12
15
|
openSettings?: () => void;
|
|
16
|
+
closeOnSettings?: boolean;
|
|
13
17
|
fetchFile: (id: string) => Promise<FileRetrieve>;
|
|
14
18
|
fetchFileList: FetchFileList;
|
|
15
19
|
zIndex?: number;
|
|
20
|
+
emit: EmitFn<Emit>;
|
|
21
|
+
translations?: Translations;
|
|
22
|
+
contentRef: Ref<ComponentPublicInstance | null>;
|
|
16
23
|
};
|
|
17
24
|
type StoreData = {
|
|
18
25
|
collection: Ref<CollectionPlayer>;
|
|
@@ -26,131 +33,20 @@ type StoreData = {
|
|
|
26
33
|
updateCollectionName: (name: string) => void;
|
|
27
34
|
updateGroupName: (groupId: string, name: string) => void;
|
|
28
35
|
deleteSlide: (groupId: string, slide: CollectionSlide) => void;
|
|
29
|
-
addSlides: (groupId: string) => Promise<CollectionSlide[] | undefined>;
|
|
36
|
+
addSlides: (groupId: string, filters?: Record<string, any>) => Promise<CollectionSlide[] | undefined>;
|
|
30
37
|
moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => void;
|
|
31
38
|
selectFileContent: SelectFileContent;
|
|
32
|
-
openSettings
|
|
39
|
+
openSettings: () => void;
|
|
40
|
+
closeOnSettings?: boolean;
|
|
33
41
|
fetchFile: (id: string) => Promise<FileRetrieve>;
|
|
34
42
|
fetchFileList: FetchFileList;
|
|
35
43
|
childModalZIndex?: number;
|
|
44
|
+
cancel: () => void;
|
|
45
|
+
saveAndClose: () => void;
|
|
46
|
+
translations?: Translations;
|
|
47
|
+
isSettingsButtonVisible: ComputedRef<boolean>;
|
|
48
|
+
contentWarning: ReturnType<typeof useContentWarning>;
|
|
36
49
|
};
|
|
37
|
-
export declare function provideAppStore({ initialCollection, t, confirmation, selectFileContent, attachTo, openSettings, fetchFile, fetchFileList, zIndex, }: StorePayload):
|
|
38
|
-
collection: Ref<{
|
|
39
|
-
groups: {
|
|
40
|
-
id: string;
|
|
41
|
-
name: string;
|
|
42
|
-
slides: ({
|
|
43
|
-
id: string;
|
|
44
|
-
type: "slide";
|
|
45
|
-
file: {
|
|
46
|
-
metadata?: Record<string, any> | undefined;
|
|
47
|
-
readonly id: string;
|
|
48
|
-
name?: string | undefined;
|
|
49
|
-
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
50
|
-
readonly thumbnail_url: string | null;
|
|
51
|
-
permissions?: {
|
|
52
|
-
can_download?: boolean | undefined;
|
|
53
|
-
can_share?: boolean | undefined;
|
|
54
|
-
} | undefined;
|
|
55
|
-
readonly content_url: string | null;
|
|
56
|
-
readonly content_type: FileContentTypeEnum;
|
|
57
|
-
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
58
|
-
readonly pspdfkit_document_id: string | null;
|
|
59
|
-
readonly pspdfkit_server_url: string | null;
|
|
60
|
-
};
|
|
61
|
-
slide: {
|
|
62
|
-
index: number;
|
|
63
|
-
url: FileRetrieve["thumbnail_url"];
|
|
64
|
-
};
|
|
65
|
-
} | {
|
|
66
|
-
id: string;
|
|
67
|
-
type: "file";
|
|
68
|
-
file: {
|
|
69
|
-
metadata?: Record<string, any> | undefined;
|
|
70
|
-
readonly id: string;
|
|
71
|
-
name?: string | undefined;
|
|
72
|
-
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
73
|
-
readonly thumbnail_url: string | null;
|
|
74
|
-
permissions?: {
|
|
75
|
-
can_download?: boolean | undefined;
|
|
76
|
-
can_share?: boolean | undefined;
|
|
77
|
-
} | undefined;
|
|
78
|
-
readonly content_url: string | null;
|
|
79
|
-
readonly content_type: FileContentTypeEnum;
|
|
80
|
-
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
81
|
-
readonly pspdfkit_document_id: string | null;
|
|
82
|
-
readonly pspdfkit_server_url: string | null;
|
|
83
|
-
};
|
|
84
|
-
})[];
|
|
85
|
-
}[];
|
|
86
|
-
name: string;
|
|
87
|
-
}, CollectionPlayer | {
|
|
88
|
-
groups: {
|
|
89
|
-
id: string;
|
|
90
|
-
name: string;
|
|
91
|
-
slides: ({
|
|
92
|
-
id: string;
|
|
93
|
-
type: "slide";
|
|
94
|
-
file: {
|
|
95
|
-
metadata?: Record<string, any> | undefined;
|
|
96
|
-
readonly id: string;
|
|
97
|
-
name?: string | undefined;
|
|
98
|
-
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
99
|
-
readonly thumbnail_url: string | null;
|
|
100
|
-
permissions?: {
|
|
101
|
-
can_download?: boolean | undefined;
|
|
102
|
-
can_share?: boolean | undefined;
|
|
103
|
-
} | undefined;
|
|
104
|
-
readonly content_url: string | null;
|
|
105
|
-
readonly content_type: FileContentTypeEnum;
|
|
106
|
-
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
107
|
-
readonly pspdfkit_document_id: string | null;
|
|
108
|
-
readonly pspdfkit_server_url: string | null;
|
|
109
|
-
};
|
|
110
|
-
slide: {
|
|
111
|
-
index: number;
|
|
112
|
-
url: FileRetrieve["thumbnail_url"];
|
|
113
|
-
};
|
|
114
|
-
} | {
|
|
115
|
-
id: string;
|
|
116
|
-
type: "file";
|
|
117
|
-
file: {
|
|
118
|
-
metadata?: Record<string, any> | undefined;
|
|
119
|
-
readonly id: string;
|
|
120
|
-
name?: string | undefined;
|
|
121
|
-
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
122
|
-
readonly thumbnail_url: string | null;
|
|
123
|
-
permissions?: {
|
|
124
|
-
can_download?: boolean | undefined;
|
|
125
|
-
can_share?: boolean | undefined;
|
|
126
|
-
} | undefined;
|
|
127
|
-
readonly content_url: string | null;
|
|
128
|
-
readonly content_type: FileContentTypeEnum;
|
|
129
|
-
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
130
|
-
readonly pspdfkit_document_id: string | null;
|
|
131
|
-
readonly pspdfkit_server_url: string | null;
|
|
132
|
-
};
|
|
133
|
-
})[];
|
|
134
|
-
}[];
|
|
135
|
-
name: string;
|
|
136
|
-
}>;
|
|
137
|
-
expandedGroups: Ref<string[], string[]>;
|
|
138
|
-
selectFileContent: SelectFileContent;
|
|
139
|
-
openSettings: (() => void) | undefined;
|
|
140
|
-
fetchFile: (id: string) => Promise<FileRetrieve>;
|
|
141
|
-
fetchFileList: FetchFileList;
|
|
142
|
-
usedFiles: Ref<Record<string, File>, Record<string, File>>;
|
|
143
|
-
childModalZIndex: number | undefined;
|
|
144
|
-
addGroup: (group?: Partial<CollectionGroup>) => CollectionGroup | undefined;
|
|
145
|
-
deleteGroup: (groupId: string, groupName: string) => void;
|
|
146
|
-
updateGroup: (group: Partial<Omit<CollectionGroup, "id">> & Pick<CollectionGroup, "id">) => void;
|
|
147
|
-
updateGroups: (groups: CollectionGroup[]) => void;
|
|
148
|
-
updateSlides: (groupId: string, slides: CollectionSlide[]) => void;
|
|
149
|
-
updateCollectionName: (name: string) => void;
|
|
150
|
-
updateGroupName: (groupId: string, name: string) => void;
|
|
151
|
-
deleteSlide: (groupId: string, slide: CollectionSlide) => void;
|
|
152
|
-
addSlides: (groupId: string) => Promise<(import('../../collection-player/types/collection-player.type').CollectionPage | import('../../collection-player/types/collection-player.type').CollectionFile)[] | undefined>;
|
|
153
|
-
moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => void;
|
|
154
|
-
};
|
|
50
|
+
export declare function provideAppStore({ initialCollection, t, confirmation, selectFileContent, attachTo, openSettings: openSettingsFn, closeOnSettings, fetchFile, fetchFileList, zIndex, emit, translations, contentRef, }: StorePayload): StoreData;
|
|
155
51
|
export declare function useAppStore(): StoreData;
|
|
156
52
|
export {};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { CollectionPlayer } from '../../collection-player/types/collection-player.type';
|
|
2
2
|
import { FetchFileList, SelectFileContent } from './common.type';
|
|
3
3
|
import { FileRetrieve } from '../../../../types/openapi';
|
|
4
|
+
export type Translations = {
|
|
5
|
+
createGroup?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
warningMessage?: string;
|
|
8
|
+
};
|
|
4
9
|
export type CollectionSelectorProps = {
|
|
5
10
|
zIndex?: number;
|
|
6
11
|
attachTo?: string | HTMLElement;
|
|
@@ -9,4 +14,9 @@ export type CollectionSelectorProps = {
|
|
|
9
14
|
openSettings?: () => void;
|
|
10
15
|
fetchFile: (id: string) => Promise<FileRetrieve>;
|
|
11
16
|
fetchFileList: FetchFileList;
|
|
17
|
+
readonlyName?: boolean;
|
|
18
|
+
closeOnSettings?: boolean;
|
|
19
|
+
translations?: Translations;
|
|
20
|
+
initialMetadataFilters?: Record<string, any>;
|
|
21
|
+
hideClose?: boolean;
|
|
12
22
|
};
|
|
@@ -2,11 +2,12 @@ import { SelectedFile, SelectedPage, SelectorType } from '../../content-selector
|
|
|
2
2
|
import { File, FileContentTypeEnum } from '../../../../types/openapi';
|
|
3
3
|
import { Selection } from '../../../types/selections';
|
|
4
4
|
export type SelectFileContent = (payload: {
|
|
5
|
-
|
|
5
|
+
attach_to?: HTMLElement | string;
|
|
6
6
|
selections?: Selection[];
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
allowed_selector_types?: SelectorType[];
|
|
8
|
+
allowed_content_types?: FileContentTypeEnum[];
|
|
9
|
+
allowed_asset_content_types?: FileContentTypeEnum[];
|
|
10
|
+
initial_metadata_filters?: Record<string, any>;
|
|
10
11
|
}) => Promise<{
|
|
11
12
|
user_action: string;
|
|
12
13
|
content?: (SelectedFile | SelectedPage)[];
|
|
@@ -3,7 +3,7 @@ import { CollectionFile, CollectionPage, CollectionPlayer } from '../../collecti
|
|
|
3
3
|
export declare const getDefaultNewGroupName: (t: I18nTranslate) => string;
|
|
4
4
|
export declare const getDefaultGroupName: (t: I18nTranslate) => string;
|
|
5
5
|
export declare const getDefaultCollectionName: (t: I18nTranslate) => string;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const generateNewEmptyGroup: (t: I18nTranslate) => {
|
|
7
7
|
id: string;
|
|
8
8
|
name: string;
|
|
9
9
|
slides: never[];
|
|
@@ -12,5 +12,7 @@ declare const _default: import('vue').DefineComponent<AppProps, {}, {}, {}, {},
|
|
|
12
12
|
}) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
14
|
minSelections: import('../../main.lib').Range<0, 999>;
|
|
15
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
16
|
+
hostElement: HTMLDivElement;
|
|
17
|
+
}, any>;
|
|
16
18
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FileContentTypeEnum } from '../../../types/openapi';
|
|
1
|
+
import { File, FileContentTypeEnum } from '../../../types/openapi';
|
|
2
2
|
import { Range } from '../../util/tsHelpers';
|
|
3
3
|
import { SelectorType } from './stores/app';
|
|
4
4
|
import { Selection } from '../../types/selections';
|
|
@@ -9,7 +9,10 @@ export type AppProps = {
|
|
|
9
9
|
allowedSelectorTypes?: SelectorType[];
|
|
10
10
|
allowedContentTypes?: FileContentTypeEnum[];
|
|
11
11
|
allowedAssetContentTypes?: FileContentTypeEnum[];
|
|
12
|
+
allowedIds?: File['id'][];
|
|
13
|
+
allowedOriginalExtensions?: string[];
|
|
12
14
|
contentType: 'file' | 'slide' | 'content';
|
|
15
|
+
initialMetadataFilters?: Record<string, any>;
|
|
13
16
|
zIndex?: number;
|
|
14
17
|
onFavoritesFetch?: FavoritesFetcher;
|
|
15
18
|
onRecentFilesFetch?: RecentFilesFetcher;
|
|
@@ -22,4 +25,5 @@ export type AppProps = {
|
|
|
22
25
|
primaryActionText?: string;
|
|
23
26
|
maxSelections?: number;
|
|
24
27
|
minSelections?: Range<0, 999>;
|
|
28
|
+
disableNoSharable?: boolean;
|
|
25
29
|
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
2
|
add: (args_0: {
|
|
3
3
|
url: string;
|
|
4
|
+
content_type: "image" | "video";
|
|
4
5
|
}) => any;
|
|
5
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
6
7
|
onAdd?: ((args_0: {
|
|
7
8
|
url: string;
|
|
9
|
+
content_type: "image" | "video";
|
|
8
10
|
}) => any) | undefined;
|
|
9
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10
12
|
export default _default;
|
|
@@ -2,5 +2,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2
2
|
uploadsComplete: () => any;
|
|
3
3
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
4
|
onUploadsComplete?: (() => any) | undefined;
|
|
5
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
6
|
+
fileInput: HTMLInputElement;
|
|
7
|
+
}, HTMLDivElement>;
|
|
6
8
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts
CHANGED
|
@@ -1,2 +1,177 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
wrapperRef: HTMLDivElement;
|
|
3
|
+
toolbarWrapperRef: HTMLDivElement;
|
|
4
|
+
searchFiltersRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
engagingIds?: string[];
|
|
7
|
+
entity: import('../../../../../../main.lib').MetadataFilterRequest["entity"];
|
|
8
|
+
includeDraftValues?: boolean;
|
|
9
|
+
isSection?: import('../../../../../../main.lib').MetadataFilterRequest["is_section"];
|
|
10
|
+
isTemplate?: import('../../../../../../main.lib').MetadataFilterRequest["is_template"];
|
|
11
|
+
searchInOptions?: import('../../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
|
|
12
|
+
filters?: Record<string, any>;
|
|
13
|
+
initialSearchValue?: string;
|
|
14
|
+
ownerId?: number | null;
|
|
15
|
+
placeholder?: string;
|
|
16
|
+
popularIds?: string[];
|
|
17
|
+
recommendedIds?: string[];
|
|
18
|
+
showLatestFilter?: boolean;
|
|
19
|
+
hideMetadataFilters?: boolean;
|
|
20
|
+
hideFilters?: boolean;
|
|
21
|
+
customFilterComponents?: {
|
|
22
|
+
type: import('../../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
23
|
+
name: string;
|
|
24
|
+
label: string;
|
|
25
|
+
options?: [];
|
|
26
|
+
}[];
|
|
27
|
+
enableDependentFilters?: boolean;
|
|
28
|
+
dependentFiltersEntity?: "file" | "canvas";
|
|
29
|
+
}> & Readonly<{
|
|
30
|
+
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
31
|
+
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
32
|
+
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
clearSearch: () => void;
|
|
35
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
|
+
"update:search": (search: string, filters?: Record<string, any> | undefined) => any;
|
|
37
|
+
"update:filters": (filters: Record<string, any>) => any;
|
|
38
|
+
"update:searchIn": (searchIn: string) => any;
|
|
39
|
+
}, import('vue').PublicProps, {
|
|
40
|
+
filters: Record<string, any>;
|
|
41
|
+
placeholder: string;
|
|
42
|
+
initialSearchValue: string;
|
|
43
|
+
includeDraftValues: boolean;
|
|
44
|
+
engagingIds: string[];
|
|
45
|
+
popularIds: string[];
|
|
46
|
+
recommendedIds: string[];
|
|
47
|
+
showLatestFilter: boolean;
|
|
48
|
+
hideMetadataFilters: boolean;
|
|
49
|
+
hideFilters: boolean;
|
|
50
|
+
dependentFiltersEntity: "file" | "canvas";
|
|
51
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
52
|
+
searchOnClickRef: ({
|
|
53
|
+
$: import('vue').ComponentInternalInstance;
|
|
54
|
+
$data: {};
|
|
55
|
+
$props: {
|
|
56
|
+
readonly disabled?: boolean | undefined;
|
|
57
|
+
readonly placeholder?: string | undefined;
|
|
58
|
+
readonly fullWidth?: boolean | undefined;
|
|
59
|
+
readonly initialSearchValue?: string | undefined;
|
|
60
|
+
readonly onSearch?: ((s: string) => any) | undefined;
|
|
61
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
62
|
+
$attrs: {
|
|
63
|
+
[x: string]: unknown;
|
|
64
|
+
};
|
|
65
|
+
$refs: {
|
|
66
|
+
[x: string]: unknown;
|
|
67
|
+
};
|
|
68
|
+
$slots: Readonly<{
|
|
69
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
70
|
+
}>;
|
|
71
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
72
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
73
|
+
$host: Element | null;
|
|
74
|
+
$emit: (event: "search", s: string) => void;
|
|
75
|
+
$el: HTMLDivElement;
|
|
76
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
77
|
+
disabled?: boolean;
|
|
78
|
+
placeholder?: string;
|
|
79
|
+
fullWidth?: boolean;
|
|
80
|
+
initialSearchValue?: string;
|
|
81
|
+
}> & Readonly<{
|
|
82
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
83
|
+
}>, {
|
|
84
|
+
clear: () => Promise<void>;
|
|
85
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
86
|
+
search: (s: string) => any;
|
|
87
|
+
}, string, {
|
|
88
|
+
initialSearchValue: string;
|
|
89
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
90
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
91
|
+
created?: (() => void) | (() => void)[];
|
|
92
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
93
|
+
mounted?: (() => void) | (() => void)[];
|
|
94
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
95
|
+
updated?: (() => void) | (() => void)[];
|
|
96
|
+
activated?: (() => void) | (() => void)[];
|
|
97
|
+
deactivated?: (() => void) | (() => void)[];
|
|
98
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
99
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
100
|
+
destroyed?: (() => void) | (() => void)[];
|
|
101
|
+
unmounted?: (() => void) | (() => void)[];
|
|
102
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
103
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
104
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
105
|
+
};
|
|
106
|
+
$forceUpdate: () => void;
|
|
107
|
+
$nextTick: typeof import('vue').nextTick;
|
|
108
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
109
|
+
} & Readonly<{
|
|
110
|
+
initialSearchValue: string;
|
|
111
|
+
}> & Omit<Readonly<{
|
|
112
|
+
disabled?: boolean;
|
|
113
|
+
placeholder?: string;
|
|
114
|
+
fullWidth?: boolean;
|
|
115
|
+
initialSearchValue?: string;
|
|
116
|
+
}> & Readonly<{
|
|
117
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
118
|
+
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
119
|
+
clear: () => Promise<void>;
|
|
120
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
121
|
+
$slots: {
|
|
122
|
+
options?(_: {}): any;
|
|
123
|
+
};
|
|
124
|
+
}) | null;
|
|
125
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
126
|
+
P: {};
|
|
127
|
+
B: {};
|
|
128
|
+
D: {};
|
|
129
|
+
C: {};
|
|
130
|
+
M: {};
|
|
131
|
+
Defaults: {};
|
|
132
|
+
}, Readonly<{
|
|
133
|
+
disabled?: boolean;
|
|
134
|
+
engagingIds?: string[];
|
|
135
|
+
entity: import('../../../../../../main.lib').MetadataFilterRequest["entity"];
|
|
136
|
+
includeDraftValues?: boolean;
|
|
137
|
+
isSection?: import('../../../../../../main.lib').MetadataFilterRequest["is_section"];
|
|
138
|
+
isTemplate?: import('../../../../../../main.lib').MetadataFilterRequest["is_template"];
|
|
139
|
+
searchInOptions?: import('../../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
|
|
140
|
+
filters?: Record<string, any>;
|
|
141
|
+
initialSearchValue?: string;
|
|
142
|
+
ownerId?: number | null;
|
|
143
|
+
placeholder?: string;
|
|
144
|
+
popularIds?: string[];
|
|
145
|
+
recommendedIds?: string[];
|
|
146
|
+
showLatestFilter?: boolean;
|
|
147
|
+
hideMetadataFilters?: boolean;
|
|
148
|
+
hideFilters?: boolean;
|
|
149
|
+
customFilterComponents?: {
|
|
150
|
+
type: import('../../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
151
|
+
name: string;
|
|
152
|
+
label: string;
|
|
153
|
+
options?: [];
|
|
154
|
+
}[];
|
|
155
|
+
enableDependentFilters?: boolean;
|
|
156
|
+
dependentFiltersEntity?: "file" | "canvas";
|
|
157
|
+
}> & Readonly<{
|
|
158
|
+
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
159
|
+
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
160
|
+
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
161
|
+
}>, {
|
|
162
|
+
clearSearch: () => void;
|
|
163
|
+
}, {}, {}, {}, {
|
|
164
|
+
filters: Record<string, any>;
|
|
165
|
+
placeholder: string;
|
|
166
|
+
initialSearchValue: string;
|
|
167
|
+
includeDraftValues: boolean;
|
|
168
|
+
engagingIds: string[];
|
|
169
|
+
popularIds: string[];
|
|
170
|
+
recommendedIds: string[];
|
|
171
|
+
showLatestFilter: boolean;
|
|
172
|
+
hideMetadataFilters: boolean;
|
|
173
|
+
hideFilters: boolean;
|
|
174
|
+
dependentFiltersEntity: "file" | "canvas";
|
|
175
|
+
}> | null;
|
|
176
|
+
}, HTMLDivElement>;
|
|
2
177
|
export default _default;
|