@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.11
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/impact-js-api.spec.json +15 -0
- package/js-api.esm.js +440 -12
- 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/modals/ApplicationBlockSelectorModal.vue.d.ts +148 -36
- package/lib/apps/assets-manager/App.vue.d.ts +75 -0
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +22 -0
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +16 -0
- package/lib/apps/browser/App.vue.d.ts +3 -1
- package/lib/apps/browser/appTypes.d.ts +4 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +15 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +11 -7
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +5 -1
- package/lib/apps/browser/stores/api.d.ts +51 -12
- package/lib/apps/browser/stores/app.d.ts +3 -0
- package/lib/apps/browser/stores/upload.d.ts +16 -20
- package/lib/apps/browser/types/actionKeys.d.ts +22 -0
- package/lib/apps/canvas-builder/App.vue.d.ts +317 -261
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +148 -36
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +60 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +21 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/{EditableComponentRevamp.vue.d.ts → EditableComponentContent.vue.d.ts} +15 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +162 -37
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +20 -20
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +30 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +76 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +11 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +32 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +87 -8
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +13 -9
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +23 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +11 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +6 -2
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +154 -0
- package/lib/apps/canvas-builder/composables/useAnnotation.d.ts +29 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +1815 -286
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +192 -18
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +4 -2
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +184 -4
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +9 -9
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +21 -4
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useControlBarCollapse.d.ts +8 -0
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -2
- package/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -6
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -4
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -4
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +98 -0
- package/lib/apps/canvas-builder/composables/useScribbleToolbar.d.ts +11 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useTemporaryContext.d.ts +14 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +34 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +71 -2
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +5 -4
- package/lib/apps/canvas-builder/util/iframe.util.d.ts +16 -0
- package/lib/apps/canvas-builder/util/print.util.d.ts +22 -0
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +171 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +160 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +28 -28
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +5 -1
- package/lib/apps/collection-player/stores/app.store.d.ts +3 -0
- package/lib/apps/collection-player/types/collection-player.type.d.ts +17 -0
- package/lib/apps/collection-selector/App.vue.d.ts +7 -7
- package/lib/apps/collection-selector/stores/app.store.d.ts +4 -2
- package/lib/apps/collection-selector/utils/content-selector-adapter.util.d.ts +16 -7
- package/lib/apps/collection-selector/utils/data.util.d.ts +4 -4
- package/lib/apps/content-selector/App.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets.vue.d.ts +2 -2
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +1 -0
- package/lib/apps/content-selector/components/Content.vue.d.ts +74 -1
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +12 -2
- package/lib/apps/content-selector/stores/app.d.ts +16 -1
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -1
- package/lib/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +1 -0
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +18 -0
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +2 -0
- package/lib/components/CCarousel/CCarousel.vue.d.ts +118 -20
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +9 -6
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +7 -5
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +7 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +56 -3
- package/lib/components/CContentError/CContentError.vue.d.ts +9 -0
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +3 -0
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +2 -2
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +10 -8
- package/lib/components/CDataTable/CDataTable.vue.d.ts +876 -100
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +6 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +5 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -5
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +3 -2
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +2 -6
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +11 -7
- package/lib/components/CImage/CImage.vue.d.ts +110 -20
- package/lib/components/CInput/CInput.vue.d.ts +148 -36
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +1 -1
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +2 -0
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +27 -0
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +14 -0
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +1 -1
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +19 -0
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +28 -0
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +290 -80
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +468 -130
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +288 -80
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +148 -36
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +19 -0
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +27 -1
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +11 -0
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +18 -0
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +14 -0
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +2 -7
- package/lib/components/CTable/CTable.vue.d.ts +6 -5
- package/lib/components/CTableInput/CTableInput.vue.d.ts +296 -72
- package/lib/components/CTableTag/CTableTag.vue.d.ts +290 -38
- package/lib/components/CTags/CTags.vue.d.ts +290 -38
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +25 -0
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +26 -0
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +2 -2
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +109 -30
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +440 -0
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +41 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +46 -60
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +13 -19
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +21 -17
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +2 -2
- package/lib/components/filters/CSearchFilter.vue.d.ts +3 -1
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +11 -7
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +176 -46
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +2 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +16 -12
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +1 -0
- package/lib/components/sections/CSectionManagement.vue.d.ts +26 -0
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +7 -0
- package/lib/components/themes/CThemeManagement.vue.d.ts +98 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +31 -3
- package/lib/composables/appsDb.use.d.ts +2 -2
- package/lib/composables/bulkActions.use.d.ts +2 -2
- package/lib/composables/useBroadcastRouteChange.d.ts +4 -0
- package/lib/composables/useCanvasStandardFilters.d.ts +35 -0
- package/lib/composables/useCollectionPlayerOverlay.d.ts +18 -0
- package/lib/composables/useDeleteUsedCanvasesConfirmation.d.ts +23 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +6 -2
- package/lib/composables/useFileInfo.d.ts +30 -0
- package/lib/composables/useFilterSuggestions.d.ts +8 -16
- package/lib/composables/useFolderNameDescription.d.ts +25 -0
- package/lib/composables/useLegacyCollectionFileLoader.d.ts +31 -0
- package/lib/composables/useMetadataSearch.d.ts +1 -0
- package/lib/composables/usePolling.d.ts +23 -0
- package/lib/composables/useWindowEvents.d.ts +1 -0
- package/lib/constants/cdp.const.d.ts +5 -0
- package/lib/constants/dimensions.const.d.ts +23 -0
- package/lib/constants/tables.const.d.ts +1 -1
- package/lib/custom-naive-locales/it.d.ts +124 -0
- package/lib/custom-naive-locales/ja.d.ts +124 -0
- package/lib/custom-naive-locales/nl.d.ts +124 -0
- package/lib/custom-naive-locales/pt-br.d.ts +124 -0
- package/lib/custom-naive-locales/pt.d.ts +124 -0
- package/lib/custom-naive-locales/th.d.ts +124 -0
- package/lib/custom-naive-locales/zh.d.ts +124 -0
- package/lib/directives/vTrustedHtml.d.ts +6 -0
- package/lib/main.lib.d.ts +26 -3
- package/lib/sdk/api/HighLevelApi.d.ts +31 -2
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +24 -1
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +13 -0
- package/lib/sdk/api/modules/dsr/files.dsr.d.ts +12 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +3 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +6 -1
- package/lib/sdk/api/modules/files.d.ts +12 -2
- package/lib/sdk/api/modules/query.d.ts +153 -1
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +35 -1
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +24 -0
- package/lib/sdk/api/modules/webView.d.ts +2 -1
- package/lib/sdk/interfaces.d.ts +61 -3
- package/lib/sdk/main.d.ts +63 -14
- package/lib/sdk/payload.types.d.ts +133 -0
- package/lib/sdk/peer-connectivity/index.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +13 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.types.d.ts +35 -0
- package/lib/stores/sectionSmartFolderStore.d.ts +2 -0
- package/lib/theme/light.d.ts +113 -8
- package/lib/types/app.d.ts +7 -0
- package/lib/types/canvases.d.ts +3 -0
- package/lib/types/files.d.ts +2 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +11 -1
- package/lib/types/launchDarkly.types.d.ts +2 -4
- package/lib/types/organizationMetadata.types.d.ts +3 -2
- package/lib/types/organizationSettings.types.d.ts +38 -3
- package/lib/types/sfdc.d.ts +1 -0
- package/lib/util/app.util.d.ts +46 -0
- package/lib/util/handlebars.d.ts +35 -0
- package/lib/util/soql.util.d.ts +2 -0
- package/lib/util/storage.util.d.ts +2 -0
- package/lib/util/string.d.ts +1 -1
- package/lib/util/toCssClassKey.d.ts +1 -0
- package/lib/utils/defaultThumbnail.util.d.ts +3 -0
- package/lib/utils/iframeInitialize.d.ts +12 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +7 -0
- package/types/openapi/models/Account.d.ts +1 -1
- package/types/openapi/models/AccountRequest.d.ts +1 -1
- package/types/openapi/models/Canvas.d.ts +1 -1
- package/types/openapi/models/CanvasCreate.d.ts +2 -2
- package/types/openapi/models/CanvasCreateRequest.d.ts +2 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +0 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +2 -2
- package/types/openapi/models/CanvasSection.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +2 -2
- package/types/openapi/models/CanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/ContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +1 -0
- package/types/openapi/models/DeletedCanvas.d.ts +1 -1
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +0 -2
- package/types/openapi/models/DeletedFolder.d.ts +4 -0
- package/types/openapi/models/DeletedInstance.d.ts +2 -0
- package/types/openapi/models/DeletedRegion.d.ts +12 -0
- package/types/openapi/models/FavoriteFolder.d.ts +3 -0
- package/types/openapi/models/FavoriteFolderRequest.d.ts +3 -0
- package/types/openapi/models/File.d.ts +0 -2
- package/types/openapi/models/FileCreate.d.ts +0 -2
- package/types/openapi/models/FileCreateRequest.d.ts +0 -1
- package/types/openapi/models/FileRetrieve.d.ts +0 -2
- package/types/openapi/models/FileUpdate.d.ts +0 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/Folder.d.ts +4 -0
- package/types/openapi/models/FolderCreate.d.ts +5 -1
- package/types/openapi/models/FolderFile.d.ts +2 -0
- package/types/openapi/models/FolderFolder.d.ts +5 -0
- package/types/openapi/models/FolderRetrieve.d.ts +9 -1
- package/types/openapi/models/FolderUpdate.d.ts +5 -1
- package/types/openapi/models/Instance.d.ts +2 -0
- package/types/openapi/models/InstanceMembership.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -2
- package/types/openapi/models/InstanceRequest.d.ts +1 -0
- package/types/openapi/models/InstanceUpdate.d.ts +2 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/OfflineSyncFolder.d.ts +1 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +2 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +2 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +7 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/Region.d.ts +10 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +1 -1
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +1 -1
- package/types/openapi/models/User.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -111
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbFavorite.pdf.use.d.ts +0 -10
- package/lib/components/CImage/CBrokenImage.vue.d.ts +0 -10
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +0 -59
- package/lib/directives/usage-track.directive.d.ts +0 -10
- package/lib/util/usage-tracking.util.d.ts +0 -5
- /package/lib/apps/canvas-builder/components/{ui/SectionList/SectionSearch.vue.d.ts → container/Search/Search.vue.d.ts} +0 -0
|
@@ -76,7 +76,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
76
76
|
paddingMedium: string;
|
|
77
77
|
paddingLarge: string;
|
|
78
78
|
clearSize: string;
|
|
79
|
-
},
|
|
79
|
+
}, {
|
|
80
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
81
|
+
height: string;
|
|
82
|
+
width: string;
|
|
83
|
+
borderRadius: string;
|
|
84
|
+
color: string;
|
|
85
|
+
colorHover: string;
|
|
86
|
+
railInsetHorizontalBottom: string;
|
|
87
|
+
railInsetHorizontalTop: string;
|
|
88
|
+
railInsetVerticalRight: string;
|
|
89
|
+
railInsetVerticalLeft: string;
|
|
90
|
+
railColor: string;
|
|
91
|
+
}, any>;
|
|
92
|
+
}>> | undefined;
|
|
80
93
|
readonly bordered?: boolean | undefined;
|
|
81
94
|
readonly clearable?: boolean | undefined;
|
|
82
95
|
readonly defaultValue?: string | [string, string] | null | undefined;
|
|
@@ -168,7 +181,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
168
181
|
pair: BooleanConstructor;
|
|
169
182
|
separator: StringConstructor;
|
|
170
183
|
readonly: {
|
|
171
|
-
type: (
|
|
184
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
172
185
|
default: boolean;
|
|
173
186
|
};
|
|
174
187
|
passivelyActivated: BooleanConstructor;
|
|
@@ -284,7 +297,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
284
297
|
paddingMedium: string;
|
|
285
298
|
paddingLarge: string;
|
|
286
299
|
clearSize: string;
|
|
287
|
-
},
|
|
300
|
+
}, {
|
|
301
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
302
|
+
height: string;
|
|
303
|
+
width: string;
|
|
304
|
+
borderRadius: string;
|
|
305
|
+
color: string;
|
|
306
|
+
colorHover: string;
|
|
307
|
+
railInsetHorizontalBottom: string;
|
|
308
|
+
railInsetHorizontalTop: string;
|
|
309
|
+
railInsetVerticalRight: string;
|
|
310
|
+
railInsetVerticalLeft: string;
|
|
311
|
+
railColor: string;
|
|
312
|
+
}, any>;
|
|
313
|
+
}>>;
|
|
288
314
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
289
315
|
fontWeight: string;
|
|
290
316
|
countTextColorDisabled: string;
|
|
@@ -346,7 +372,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
346
372
|
paddingMedium: string;
|
|
347
373
|
paddingLarge: string;
|
|
348
374
|
clearSize: string;
|
|
349
|
-
},
|
|
375
|
+
}, {
|
|
376
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
377
|
+
height: string;
|
|
378
|
+
width: string;
|
|
379
|
+
borderRadius: string;
|
|
380
|
+
color: string;
|
|
381
|
+
colorHover: string;
|
|
382
|
+
railInsetHorizontalBottom: string;
|
|
383
|
+
railInsetHorizontalTop: string;
|
|
384
|
+
railInsetVerticalRight: string;
|
|
385
|
+
railInsetVerticalLeft: string;
|
|
386
|
+
railColor: string;
|
|
387
|
+
}, any>;
|
|
388
|
+
}>>>;
|
|
350
389
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
351
390
|
fontWeight: string;
|
|
352
391
|
countTextColorDisabled: string;
|
|
@@ -408,7 +447,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
408
447
|
paddingMedium: string;
|
|
409
448
|
paddingLarge: string;
|
|
410
449
|
clearSize: string;
|
|
411
|
-
},
|
|
450
|
+
}, {
|
|
451
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
452
|
+
height: string;
|
|
453
|
+
width: string;
|
|
454
|
+
borderRadius: string;
|
|
455
|
+
color: string;
|
|
456
|
+
colorHover: string;
|
|
457
|
+
railInsetHorizontalBottom: string;
|
|
458
|
+
railInsetHorizontalTop: string;
|
|
459
|
+
railInsetVerticalRight: string;
|
|
460
|
+
railInsetVerticalLeft: string;
|
|
461
|
+
railColor: string;
|
|
462
|
+
}, any>;
|
|
463
|
+
}>>>;
|
|
412
464
|
}>> & Readonly<{}>, {
|
|
413
465
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
414
466
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -443,14 +495,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
443
495
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
444
496
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
445
497
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
446
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
498
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
447
499
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
448
500
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
449
501
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
450
502
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
451
503
|
activated: import('vue').Ref<boolean, boolean>;
|
|
452
504
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
453
|
-
mergedSize: import('vue').ComputedRef<"
|
|
505
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
454
506
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
455
507
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
456
508
|
textDecoration: string;
|
|
@@ -551,9 +603,26 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
551
603
|
paddingLarge: string;
|
|
552
604
|
clearSize: string;
|
|
553
605
|
};
|
|
554
|
-
peers:
|
|
606
|
+
peers: {
|
|
607
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
608
|
+
height: string;
|
|
609
|
+
width: string;
|
|
610
|
+
borderRadius: string;
|
|
611
|
+
color: string;
|
|
612
|
+
colorHover: string;
|
|
613
|
+
railInsetHorizontalBottom: string;
|
|
614
|
+
railInsetHorizontalTop: string;
|
|
615
|
+
railInsetVerticalRight: string;
|
|
616
|
+
railInsetVerticalLeft: string;
|
|
617
|
+
railColor: string;
|
|
618
|
+
}, any>;
|
|
619
|
+
};
|
|
555
620
|
peerOverrides: {
|
|
556
|
-
|
|
621
|
+
Scrollbar?: {
|
|
622
|
+
peers?: {
|
|
623
|
+
[x: string]: any;
|
|
624
|
+
} | undefined;
|
|
625
|
+
} | undefined;
|
|
557
626
|
};
|
|
558
627
|
}>;
|
|
559
628
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -618,24 +687,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
618
687
|
deactivate: () => void;
|
|
619
688
|
scrollTo: (options: ScrollToOptions) => void;
|
|
620
689
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
621
|
-
type: "textarea" | "text" | "password";
|
|
622
|
-
readonly: string | boolean;
|
|
623
690
|
disabled: boolean | undefined;
|
|
624
|
-
|
|
625
|
-
autofocus: boolean;
|
|
626
|
-
loading: boolean;
|
|
627
|
-
autosize: boolean | {
|
|
628
|
-
minRows?: number;
|
|
629
|
-
maxRows?: number;
|
|
630
|
-
};
|
|
691
|
+
type: "text" | "textarea" | "password";
|
|
631
692
|
bordered: boolean | undefined;
|
|
632
693
|
clearable: boolean;
|
|
633
694
|
defaultValue: string | [string, string] | null;
|
|
695
|
+
loading: boolean;
|
|
696
|
+
round: boolean;
|
|
634
697
|
resizable: boolean;
|
|
698
|
+
stateful: boolean;
|
|
635
699
|
pair: boolean;
|
|
636
700
|
rows: string | number;
|
|
701
|
+
autosize: boolean | {
|
|
702
|
+
minRows?: number;
|
|
703
|
+
maxRows?: number;
|
|
704
|
+
};
|
|
705
|
+
readonly: string | boolean;
|
|
637
706
|
passivelyActivated: boolean;
|
|
638
|
-
|
|
707
|
+
autofocus: boolean;
|
|
639
708
|
showCount: boolean;
|
|
640
709
|
attrSize: number;
|
|
641
710
|
internalDeactivateOnEnter: boolean;
|
|
@@ -687,7 +756,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
687
756
|
pair: BooleanConstructor;
|
|
688
757
|
separator: StringConstructor;
|
|
689
758
|
readonly: {
|
|
690
|
-
type: (
|
|
759
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
691
760
|
default: boolean;
|
|
692
761
|
};
|
|
693
762
|
passivelyActivated: BooleanConstructor;
|
|
@@ -803,7 +872,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
803
872
|
paddingMedium: string;
|
|
804
873
|
paddingLarge: string;
|
|
805
874
|
clearSize: string;
|
|
806
|
-
},
|
|
875
|
+
}, {
|
|
876
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
877
|
+
height: string;
|
|
878
|
+
width: string;
|
|
879
|
+
borderRadius: string;
|
|
880
|
+
color: string;
|
|
881
|
+
colorHover: string;
|
|
882
|
+
railInsetHorizontalBottom: string;
|
|
883
|
+
railInsetHorizontalTop: string;
|
|
884
|
+
railInsetVerticalRight: string;
|
|
885
|
+
railInsetVerticalLeft: string;
|
|
886
|
+
railColor: string;
|
|
887
|
+
}, any>;
|
|
888
|
+
}>>;
|
|
807
889
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
808
890
|
fontWeight: string;
|
|
809
891
|
countTextColorDisabled: string;
|
|
@@ -865,7 +947,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
865
947
|
paddingMedium: string;
|
|
866
948
|
paddingLarge: string;
|
|
867
949
|
clearSize: string;
|
|
868
|
-
},
|
|
950
|
+
}, {
|
|
951
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
952
|
+
height: string;
|
|
953
|
+
width: string;
|
|
954
|
+
borderRadius: string;
|
|
955
|
+
color: string;
|
|
956
|
+
colorHover: string;
|
|
957
|
+
railInsetHorizontalBottom: string;
|
|
958
|
+
railInsetHorizontalTop: string;
|
|
959
|
+
railInsetVerticalRight: string;
|
|
960
|
+
railInsetVerticalLeft: string;
|
|
961
|
+
railColor: string;
|
|
962
|
+
}, any>;
|
|
963
|
+
}>>>;
|
|
869
964
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
870
965
|
fontWeight: string;
|
|
871
966
|
countTextColorDisabled: string;
|
|
@@ -927,7 +1022,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
927
1022
|
paddingMedium: string;
|
|
928
1023
|
paddingLarge: string;
|
|
929
1024
|
clearSize: string;
|
|
930
|
-
},
|
|
1025
|
+
}, {
|
|
1026
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1027
|
+
height: string;
|
|
1028
|
+
width: string;
|
|
1029
|
+
borderRadius: string;
|
|
1030
|
+
color: string;
|
|
1031
|
+
colorHover: string;
|
|
1032
|
+
railInsetHorizontalBottom: string;
|
|
1033
|
+
railInsetHorizontalTop: string;
|
|
1034
|
+
railInsetVerticalRight: string;
|
|
1035
|
+
railInsetVerticalLeft: string;
|
|
1036
|
+
railColor: string;
|
|
1037
|
+
}, any>;
|
|
1038
|
+
}>>>;
|
|
931
1039
|
}>> & Readonly<{}>, {
|
|
932
1040
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
933
1041
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -962,14 +1070,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
962
1070
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
963
1071
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
964
1072
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
965
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
1073
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
966
1074
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
967
1075
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
968
1076
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
969
1077
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
970
1078
|
activated: import('vue').Ref<boolean, boolean>;
|
|
971
1079
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
972
|
-
mergedSize: import('vue').ComputedRef<"
|
|
1080
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
973
1081
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
974
1082
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
975
1083
|
textDecoration: string;
|
|
@@ -1070,9 +1178,26 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1070
1178
|
paddingLarge: string;
|
|
1071
1179
|
clearSize: string;
|
|
1072
1180
|
};
|
|
1073
|
-
peers:
|
|
1181
|
+
peers: {
|
|
1182
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1183
|
+
height: string;
|
|
1184
|
+
width: string;
|
|
1185
|
+
borderRadius: string;
|
|
1186
|
+
color: string;
|
|
1187
|
+
colorHover: string;
|
|
1188
|
+
railInsetHorizontalBottom: string;
|
|
1189
|
+
railInsetHorizontalTop: string;
|
|
1190
|
+
railInsetVerticalRight: string;
|
|
1191
|
+
railInsetVerticalLeft: string;
|
|
1192
|
+
railColor: string;
|
|
1193
|
+
}, any>;
|
|
1194
|
+
};
|
|
1074
1195
|
peerOverrides: {
|
|
1075
|
-
|
|
1196
|
+
Scrollbar?: {
|
|
1197
|
+
peers?: {
|
|
1198
|
+
[x: string]: any;
|
|
1199
|
+
} | undefined;
|
|
1200
|
+
} | undefined;
|
|
1076
1201
|
};
|
|
1077
1202
|
}>;
|
|
1078
1203
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1137,24 +1262,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1137
1262
|
deactivate: () => void;
|
|
1138
1263
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1139
1264
|
}, {}, {}, {}, {
|
|
1140
|
-
type: "textarea" | "text" | "password";
|
|
1141
|
-
readonly: string | boolean;
|
|
1142
1265
|
disabled: boolean | undefined;
|
|
1143
|
-
|
|
1144
|
-
autofocus: boolean;
|
|
1145
|
-
loading: boolean;
|
|
1146
|
-
autosize: boolean | {
|
|
1147
|
-
minRows?: number;
|
|
1148
|
-
maxRows?: number;
|
|
1149
|
-
};
|
|
1266
|
+
type: "text" | "textarea" | "password";
|
|
1150
1267
|
bordered: boolean | undefined;
|
|
1151
1268
|
clearable: boolean;
|
|
1152
1269
|
defaultValue: string | [string, string] | null;
|
|
1270
|
+
loading: boolean;
|
|
1271
|
+
round: boolean;
|
|
1153
1272
|
resizable: boolean;
|
|
1273
|
+
stateful: boolean;
|
|
1154
1274
|
pair: boolean;
|
|
1155
1275
|
rows: string | number;
|
|
1276
|
+
autosize: boolean | {
|
|
1277
|
+
minRows?: number;
|
|
1278
|
+
maxRows?: number;
|
|
1279
|
+
};
|
|
1280
|
+
readonly: string | boolean;
|
|
1156
1281
|
passivelyActivated: boolean;
|
|
1157
|
-
|
|
1282
|
+
autofocus: boolean;
|
|
1158
1283
|
showCount: boolean;
|
|
1159
1284
|
attrSize: number;
|
|
1160
1285
|
internalDeactivateOnEnter: boolean;
|
package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
placement?: 'left' | 'right' | 'top' | 'bottom' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
3
|
+
buttonClass?: string;
|
|
4
|
+
buttonSize?: 'tiny' | 'small' | 'medium' | 'large';
|
|
5
|
+
iconSize?: string | number;
|
|
6
|
+
isCircle?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
|
+
iconSize: string | number;
|
|
10
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
11
|
+
buttonClass: string;
|
|
12
|
+
buttonSize: "tiny" | "small" | "medium" | "large";
|
|
13
|
+
isCircle: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
|
+
containerRef: HTMLDivElement;
|
|
16
|
+
}, HTMLDivElement>;
|
|
17
|
+
export default _default;
|
|
@@ -144,9 +144,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
144
144
|
}>> & Readonly<{}>, FormInst & {
|
|
145
145
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
146
146
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
147
|
-
readonly inline: boolean;
|
|
148
147
|
readonly disabled: boolean;
|
|
149
148
|
readonly onSubmit: (e: Event) => void;
|
|
149
|
+
readonly inline: boolean;
|
|
150
150
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
151
151
|
readonly model: Record<string, any>;
|
|
152
152
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -291,9 +291,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
291
291
|
}>> & Readonly<{}>, FormInst & {
|
|
292
292
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
293
293
|
}, {}, {}, {}, {
|
|
294
|
-
readonly inline: boolean;
|
|
295
294
|
readonly disabled: boolean;
|
|
296
295
|
readonly onSubmit: (e: Event) => void;
|
|
296
|
+
readonly inline: boolean;
|
|
297
297
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
298
298
|
readonly model: Record<string, any>;
|
|
299
299
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -44,6 +44,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
44
44
|
isFullscreen: Ref<boolean, boolean>;
|
|
45
45
|
handleKeyAction: ActionCallback;
|
|
46
46
|
element: Ref<HTMLElement | null, HTMLElement | null>;
|
|
47
|
+
updateResolvedData: (resolvedData: CollectionPlayer) => void;
|
|
47
48
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
48
49
|
click: (event: MouseEvent) => any;
|
|
49
50
|
close: () => any;
|
|
@@ -74,6 +75,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
74
75
|
isFullscreen: Ref<boolean, boolean>;
|
|
75
76
|
handleKeyAction: ActionCallback;
|
|
76
77
|
element: Ref<HTMLElement | null, HTMLElement | null>;
|
|
78
|
+
updateResolvedData: (resolvedData: CollectionPlayer) => void;
|
|
77
79
|
}, {}, {}, {}, {}> | null;
|
|
78
80
|
}, HTMLDivElement>;
|
|
79
81
|
export default _default;
|
|
@@ -125,7 +125,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
125
125
|
userWantsControl: import('vue').ComputedRef<boolean>;
|
|
126
126
|
autoSlideSize: import('vue').ComputedRef<boolean>;
|
|
127
127
|
realIndex: import('vue').ComputedRef<number>;
|
|
128
|
-
slideStyles: import('vue').ComputedRef<
|
|
128
|
+
slideStyles: import('vue').ComputedRef<(Partial<import('naive-ui/es/carousel/src/interface').Size> | undefined)[] | CSSProperties[]>;
|
|
129
129
|
translateStyle: import('vue').Ref<CSSProperties, CSSProperties>;
|
|
130
130
|
slidesControlListeners: import('vue').ComputedRef<{
|
|
131
131
|
onTouchstartPassive: ((event: MouseEvent | TouchEvent) => void) | undefined;
|
|
@@ -141,23 +141,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
141
141
|
arrowSlotProps: import('vue').ComputedRef<import('naive-ui/es/carousel/src/interface').ArrowScopedSlotProps>;
|
|
142
142
|
dotSlotProps: import('vue').ComputedRef<import('naive-ui/es/carousel/src/interface').DotScopedSlotProps>;
|
|
143
143
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
144
|
-
effect: "card" | "slide" | "fade" | "custom";
|
|
145
|
-
direction: "horizontal" | "vertical";
|
|
146
|
-
draggable: boolean;
|
|
147
|
-
autoplay: boolean;
|
|
148
|
-
loop: boolean;
|
|
149
|
-
trigger: "click" | "hover";
|
|
150
|
-
showArrow: boolean;
|
|
151
144
|
keyboard: boolean;
|
|
152
|
-
dotType: "dot" | "line";
|
|
153
145
|
defaultIndex: number;
|
|
154
|
-
|
|
146
|
+
showArrow: boolean;
|
|
147
|
+
dotType: "dot" | "line";
|
|
148
|
+
dotPlacement: "top" | "bottom" | "left" | "right";
|
|
155
149
|
slidesPerView: number | "auto";
|
|
156
150
|
spaceBetween: number;
|
|
157
151
|
centeredSlides: boolean;
|
|
152
|
+
direction: "horizontal" | "vertical";
|
|
153
|
+
autoplay: boolean;
|
|
158
154
|
interval: number;
|
|
155
|
+
loop: boolean;
|
|
156
|
+
effect: "card" | "slide" | "fade" | "custom";
|
|
159
157
|
showDots: boolean;
|
|
158
|
+
trigger: "click" | "hover";
|
|
160
159
|
transitionStyle: Partial<Pick<CSSProperties, "transitionDuration" | "transitionTimingFunction">>;
|
|
160
|
+
draggable: boolean;
|
|
161
161
|
touchable: boolean;
|
|
162
162
|
mousewheel: boolean;
|
|
163
163
|
}, true, {}, import('vue').SlotsType<import('naive-ui').CarouselSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -286,7 +286,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
286
286
|
userWantsControl: import('vue').ComputedRef<boolean>;
|
|
287
287
|
autoSlideSize: import('vue').ComputedRef<boolean>;
|
|
288
288
|
realIndex: import('vue').ComputedRef<number>;
|
|
289
|
-
slideStyles: import('vue').ComputedRef<
|
|
289
|
+
slideStyles: import('vue').ComputedRef<(Partial<import('naive-ui/es/carousel/src/interface').Size> | undefined)[] | CSSProperties[]>;
|
|
290
290
|
translateStyle: import('vue').Ref<CSSProperties, CSSProperties>;
|
|
291
291
|
slidesControlListeners: import('vue').ComputedRef<{
|
|
292
292
|
onTouchstartPassive: ((event: MouseEvent | TouchEvent) => void) | undefined;
|
|
@@ -302,23 +302,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
302
302
|
arrowSlotProps: import('vue').ComputedRef<import('naive-ui/es/carousel/src/interface').ArrowScopedSlotProps>;
|
|
303
303
|
dotSlotProps: import('vue').ComputedRef<import('naive-ui/es/carousel/src/interface').DotScopedSlotProps>;
|
|
304
304
|
}, {}, {}, {}, {
|
|
305
|
-
effect: "card" | "slide" | "fade" | "custom";
|
|
306
|
-
direction: "horizontal" | "vertical";
|
|
307
|
-
draggable: boolean;
|
|
308
|
-
autoplay: boolean;
|
|
309
|
-
loop: boolean;
|
|
310
|
-
trigger: "click" | "hover";
|
|
311
|
-
showArrow: boolean;
|
|
312
305
|
keyboard: boolean;
|
|
313
|
-
dotType: "dot" | "line";
|
|
314
306
|
defaultIndex: number;
|
|
315
|
-
|
|
307
|
+
showArrow: boolean;
|
|
308
|
+
dotType: "dot" | "line";
|
|
309
|
+
dotPlacement: "top" | "bottom" | "left" | "right";
|
|
316
310
|
slidesPerView: number | "auto";
|
|
317
311
|
spaceBetween: number;
|
|
318
312
|
centeredSlides: boolean;
|
|
313
|
+
direction: "horizontal" | "vertical";
|
|
314
|
+
autoplay: boolean;
|
|
319
315
|
interval: number;
|
|
316
|
+
loop: boolean;
|
|
317
|
+
effect: "card" | "slide" | "fade" | "custom";
|
|
320
318
|
showDots: boolean;
|
|
319
|
+
trigger: "click" | "hover";
|
|
321
320
|
transitionStyle: Partial<Pick<CSSProperties, "transitionDuration" | "transitionTimingFunction">>;
|
|
321
|
+
draggable: boolean;
|
|
322
322
|
touchable: boolean;
|
|
323
323
|
mousewheel: boolean;
|
|
324
324
|
}> | null;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
3
|
+
import { ComponentNode, ContentListProps } from '../../../types/canvas';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
id: ComponentNode['id'];
|
|
6
|
+
data: ContentListProps;
|
|
7
|
+
sectionListName?: string;
|
|
8
|
+
previewMode?: boolean;
|
|
9
|
+
style?: CSSProperties;
|
|
10
|
+
shouldEditWithApp?: boolean;
|
|
11
|
+
hasSectionSelectorApp?: boolean;
|
|
12
|
+
printModeIdx?: number;
|
|
13
|
+
};
|
|
14
|
+
declare function onSectionSelectorToggle(): void;
|
|
15
|
+
declare function onSectionsSelect(items: {
|
|
16
|
+
id: CanvasRetrieve['id'];
|
|
17
|
+
}[], isForcedRecommendations?: boolean): Promise<void>;
|
|
18
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
19
|
+
toggleSectionSelector: typeof onSectionSelectorToggle;
|
|
20
|
+
onSectionsSelect: typeof onSectionsSelect;
|
|
21
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
+
justAdded: (id: string) => any;
|
|
23
|
+
browseWithAppClicked: () => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
onJustAdded?: ((id: string) => any) | undefined;
|
|
26
|
+
onBrowseWithAppClicked?: (() => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
|
+
sectionListRef: HTMLDivElement;
|
|
29
|
+
}, any>;
|
|
30
|
+
export default _default;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { ComponentNode, ComponentNodePrint, ComponentNodeLinkable, ContentListProps } from '../../../types/canvas';
|
|
3
|
+
import { FileContentTypeEnum } from '../../../../../../types/openapi';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
id: ComponentNode['id'];
|
|
6
|
+
data: ContentListProps;
|
|
7
|
+
tracking_id: string;
|
|
8
|
+
visible?: ComponentNode['visible'];
|
|
9
|
+
allow_admins_to_overwrite?: boolean;
|
|
10
|
+
style?: CSSProperties;
|
|
11
|
+
printModeIdx?: number;
|
|
12
|
+
class?: string | string[] | object;
|
|
13
|
+
print?: ComponentNodePrint;
|
|
14
|
+
autofill?: 'off' | 'ai' | 'matching_metadata' | 'matching_tags' | 'matching_metadata_or_tags';
|
|
15
|
+
linkable?: ComponentNodeLinkable;
|
|
16
|
+
autofill_content_types?: FileContentTypeEnum[] | null;
|
|
17
|
+
when_used_in_section?: {
|
|
18
|
+
is_editable: boolean;
|
|
19
|
+
is_removable: boolean;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
|
+
style: (s: CSSProperties) => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
onStyle?: ((s: CSSProperties) => any) | undefined;
|
|
26
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
|
+
contentListRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
28
|
+
id: ComponentNode["id"];
|
|
29
|
+
data: ContentListProps;
|
|
30
|
+
sectionListName?: string;
|
|
31
|
+
previewMode?: boolean;
|
|
32
|
+
style?: CSSProperties;
|
|
33
|
+
shouldEditWithApp?: boolean;
|
|
34
|
+
hasSectionSelectorApp?: boolean;
|
|
35
|
+
printModeIdx?: number;
|
|
36
|
+
}> & Readonly<{
|
|
37
|
+
onJustAdded?: ((id: string) => any) | undefined;
|
|
38
|
+
onBrowseWithAppClicked?: (() => any) | undefined;
|
|
39
|
+
}>, {
|
|
40
|
+
toggleSectionSelector: () => void;
|
|
41
|
+
onSectionsSelect: (items: {
|
|
42
|
+
id: import('../../../../../../types/openapi').CanvasRetrieve["id"];
|
|
43
|
+
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
44
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
|
+
justAdded: (id: string) => any;
|
|
46
|
+
browseWithAppClicked: () => any;
|
|
47
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
48
|
+
sectionListRef: HTMLDivElement;
|
|
49
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
50
|
+
P: {};
|
|
51
|
+
B: {};
|
|
52
|
+
D: {};
|
|
53
|
+
C: {};
|
|
54
|
+
M: {};
|
|
55
|
+
Defaults: {};
|
|
56
|
+
}, Readonly<{
|
|
57
|
+
id: ComponentNode["id"];
|
|
58
|
+
data: ContentListProps;
|
|
59
|
+
sectionListName?: string;
|
|
60
|
+
previewMode?: boolean;
|
|
61
|
+
style?: CSSProperties;
|
|
62
|
+
shouldEditWithApp?: boolean;
|
|
63
|
+
hasSectionSelectorApp?: boolean;
|
|
64
|
+
printModeIdx?: number;
|
|
65
|
+
}> & Readonly<{
|
|
66
|
+
onJustAdded?: ((id: string) => any) | undefined;
|
|
67
|
+
onBrowseWithAppClicked?: (() => any) | undefined;
|
|
68
|
+
}>, {
|
|
69
|
+
toggleSectionSelector: () => void;
|
|
70
|
+
onSectionsSelect: (items: {
|
|
71
|
+
id: import('../../../../../../types/openapi').CanvasRetrieve["id"];
|
|
72
|
+
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
73
|
+
}, {}, {}, {}, {}> | null;
|
|
74
|
+
iframeRef: HTMLIFrameElement;
|
|
75
|
+
}, any>;
|
|
76
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { CanvasSection, FileRetrieve } from '../../../../../../types/openapi';
|
|
2
|
+
import { ContentListSection } from '../../../types/canvas.ts';
|
|
3
|
+
type Item = {
|
|
4
|
+
index: number;
|
|
5
|
+
file?: FileRetrieve;
|
|
6
|
+
section?: CanvasSection;
|
|
7
|
+
} & ContentListSection;
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
name?: string;
|
|
10
|
+
style?: Record<string, any>;
|
|
11
|
+
items: Array<Item>;
|
|
12
|
+
hasSectionSelectorApp?: boolean;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
"open-section": (section: CanvasSection, index: number) => any;
|
|
16
|
+
"select-sections": () => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
"onOpen-section"?: ((section: CanvasSection, index: number) => any) | undefined;
|
|
19
|
+
"onSelect-sections"?: (() => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { FileRetrieve } from '../../../../../../types/openapi';
|
|
3
|
+
import { ContentListSection } from '../../../types/canvas';
|
|
4
|
+
declare const _default: () => {
|
|
5
|
+
files: {
|
|
6
|
+
loading: Record<string, true>;
|
|
7
|
+
loaded: Record<string, FileRetrieve>;
|
|
8
|
+
};
|
|
9
|
+
watchMissingFiles: (rawItems: Ref<ContentListSection[]>) => import('vue').WatchHandle;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +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, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ColumnSort } from '@tanstack/table-core';
|
|
2
|
+
interface Column {
|
|
3
|
+
id: string;
|
|
4
|
+
header: string;
|
|
5
|
+
enableSorting: boolean;
|
|
6
|
+
sortDescFirst?: boolean;
|
|
7
|
+
}
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
columns: Column[];
|
|
10
|
+
headerBackgroundColor: string;
|
|
11
|
+
headerForegroundColor: string;
|
|
12
|
+
currentSorting: ColumnSort | null;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
sort: (columnId: string) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onSort?: ((columnId: string) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLTableSectionElement>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ColumnSort } from '@tanstack/table-core';
|
|
2
|
+
import { CustomDataTableProps } from '../../../types/canvas';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
data?: CustomDataTableProps;
|
|
5
|
+
style?: Record<string, any>;
|
|
6
|
+
id?: string;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
sortChanged: (sorting: ColumnSort | null) => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
onSortChanged?: ((sorting: ColumnSort | null) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|