@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.10
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/npm-cache/_cacache/content-v2/sha512/3e/27/b4826de89487d07340c5facfb59a809827e65850e472a2d853f7f72dbfc2b4ce5b453253d8c1b11077f5dccb02ea418d8708e7f3f52f756f276b663740a3 +0 -0
- package/npm-cache/_cacache/content-v2/sha512/64/5a/421e053f6177ae9816e985e900126bd7808f16ec0cc5f58c3e082c79c37d1610e6d493c0b99e4d09224e84ad12bcefb46b8f4cabd04d0f397fa8a5b999e3 +0 -0
- package/npm-cache/_cacache/index-v5/ef/db/1a303888dee96dbf0872b6eb0b16af940d57c22846114d55ac441140c1a2 +3 -0
- package/npm-cache/_logs/2025-12-12T08_06_50_883Z-debug-0.log +1194 -0
- package/npm-cache/_logs/2025-12-12T08_20_34_296Z-debug-0.log +1218 -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
package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComponentNode, CustomDataTableProps } from '../../../types/canvas';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
id: ComponentNode['id'];
|
|
4
|
+
data: CustomDataTableProps | null;
|
|
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, {
|
|
7
|
+
hierarchyScrollContainer: HTMLDivElement;
|
|
8
|
+
columnsScrollContainer: HTMLDivElement;
|
|
9
|
+
}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CustomDataTableHierarchyLevel, DynamicDatatableProperty } from '../../../types/canvas';
|
|
2
|
+
export interface ProcessedHierarchicalRow {
|
|
3
|
+
id: string;
|
|
4
|
+
level: number;
|
|
5
|
+
type: 'group' | 'data';
|
|
6
|
+
groupValue?: string;
|
|
7
|
+
data?: Record<string, any>;
|
|
8
|
+
children?: ProcessedHierarchicalRow[];
|
|
9
|
+
isExpanded?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface RowWithAncestors extends ProcessedHierarchicalRow {
|
|
12
|
+
ancestorGroups?: ProcessedHierarchicalRow[];
|
|
13
|
+
isInnermostGroup?: boolean;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Process hierarchical data based on configured levels
|
|
17
|
+
*/
|
|
18
|
+
export declare function processHierarchicalData(sourceData: any, hierarchy: CustomDataTableHierarchyLevel[], columns?: DynamicDatatableProperty[], userSortConfig?: {
|
|
19
|
+
key: string;
|
|
20
|
+
direction: 'asc' | 'desc';
|
|
21
|
+
}): ProcessedHierarchicalRow[];
|
|
22
|
+
/**
|
|
23
|
+
* Flatten hierarchical structure for rendering
|
|
24
|
+
* @param rows - The hierarchical rows to flatten
|
|
25
|
+
* @param includeCollapsed - Whether to include collapsed rows
|
|
26
|
+
* @param forceExpandAll - Force all groups to be expanded (useful for print mode)
|
|
27
|
+
*/
|
|
28
|
+
export declare function flattenForRendering(rows: ProcessedHierarchicalRow[], includeCollapsed?: boolean, forceExpandAll?: boolean): RowWithAncestors[];
|
|
29
|
+
/**
|
|
30
|
+
* Toggle expand/collapse state of a group row
|
|
31
|
+
*/
|
|
32
|
+
export declare function toggleRowExpansion(rows: ProcessedHierarchicalRow[], rowId: string): ProcessedHierarchicalRow[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ComponentTypes, ComponentNode, CustomDataTableProps } from '../../../types/canvas';
|
|
2
|
+
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
id: string;
|
|
5
|
+
data: CustomDataTableProps;
|
|
6
|
+
children?: ComponentNode[];
|
|
7
|
+
parentType?: ComponentTypes;
|
|
8
|
+
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
|
+
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
visible?: ComponentNode['visible'];
|
|
11
|
+
tracking_id?: string;
|
|
12
|
+
style?: Record<string, any>;
|
|
13
|
+
theme_meta?: ComponentNode['theme_meta'];
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
style: (s: Record<string, any>, id?: string | undefined) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
onStyle?: ((s: Record<string, any>, id?: string | undefined) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
children: ComponentNode[];
|
|
21
|
+
when_used_in_section: {
|
|
22
|
+
is_editable: boolean;
|
|
23
|
+
is_removable: boolean;
|
|
24
|
+
};
|
|
25
|
+
usedInSectionId: CanvasRetrieve["id"];
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -8,9 +8,13 @@ declare global {
|
|
|
8
8
|
type __VLS_Props = {
|
|
9
9
|
data?: ExtendedChartConfiguration & {
|
|
10
10
|
context?: any;
|
|
11
|
+
_original_chart_type?: string;
|
|
11
12
|
};
|
|
13
|
+
isPreview?: boolean;
|
|
14
|
+
isEditMode?: boolean;
|
|
12
15
|
};
|
|
13
16
|
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, {
|
|
17
|
+
containerRef: HTMLDivElement;
|
|
14
18
|
chartRef: HTMLCanvasElement;
|
|
15
19
|
}, HTMLDivElement>;
|
|
16
20
|
export default _default;
|
|
@@ -1,19 +1,68 @@
|
|
|
1
1
|
import { ChartConfiguration } from 'chart.js';
|
|
2
|
-
export interface
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
export interface ViewControls {
|
|
3
|
+
enable_fullscreen_btn?: boolean;
|
|
4
|
+
enable_chart_type_switcher?: boolean;
|
|
5
|
+
enable_data_entry?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export type ChartType = 'bar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'scatter' | 'bubble' | 'area';
|
|
8
|
+
export declare const STANDALONE_CHART_TYPES: ChartType[];
|
|
9
|
+
export declare const MIXABLE_CHART_TYPES: ChartType[];
|
|
10
|
+
export declare const ONE_D_CHART_TYPES: ChartType[];
|
|
11
|
+
export declare const TWO_D_CHART_TYPES: ChartType[];
|
|
12
|
+
export declare const THREE_D_CHART_TYPES: ChartType[];
|
|
13
|
+
export declare const XY_CHART_TYPES: ChartType[];
|
|
14
|
+
export declare const XYR_CHART_TYPES: ChartType[];
|
|
15
|
+
export interface SeriesDataPoint {
|
|
16
|
+
label: string;
|
|
17
|
+
value: string;
|
|
18
|
+
x_value?: string;
|
|
19
|
+
y_value?: string;
|
|
20
|
+
r_value?: string;
|
|
21
|
+
dynamic_value?: {
|
|
22
|
+
path: string;
|
|
5
23
|
value: string;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
24
|
+
};
|
|
25
|
+
dynamic_x_value?: {
|
|
26
|
+
path: string;
|
|
27
|
+
value: string;
|
|
28
|
+
};
|
|
29
|
+
dynamic_y_value?: {
|
|
30
|
+
path: string;
|
|
31
|
+
value: string;
|
|
32
|
+
};
|
|
33
|
+
dynamic_r_value?: {
|
|
34
|
+
path: string;
|
|
35
|
+
value: string;
|
|
36
|
+
};
|
|
37
|
+
array_config?: {
|
|
38
|
+
labelField: string;
|
|
39
|
+
valueField: string;
|
|
40
|
+
xField?: string;
|
|
41
|
+
yField?: string;
|
|
42
|
+
rField?: string;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
export interface ChartSeries {
|
|
46
|
+
id: string;
|
|
47
|
+
name: string;
|
|
48
|
+
chart_type: ChartType;
|
|
49
|
+
color?: string;
|
|
50
|
+
data_points: SeriesDataPoint[];
|
|
51
|
+
}
|
|
52
|
+
export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
53
|
+
data_points?: SeriesDataPoint[];
|
|
54
|
+
series?: ChartSeries[];
|
|
11
55
|
context?: any;
|
|
12
56
|
data?: ChartConfiguration['data'] & {
|
|
13
57
|
datasets?: Array<{
|
|
58
|
+
label?: string;
|
|
59
|
+
type?: string;
|
|
14
60
|
background_color?: string | string[];
|
|
15
61
|
border_color?: string | string[];
|
|
16
62
|
point_style?: string;
|
|
63
|
+
fill?: boolean;
|
|
64
|
+
tension?: number;
|
|
65
|
+
show_line?: boolean;
|
|
17
66
|
}>;
|
|
18
67
|
};
|
|
19
68
|
options?: ChartConfiguration['options'] & {
|
|
@@ -34,11 +83,23 @@ export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
|
34
83
|
text?: string;
|
|
35
84
|
display?: boolean;
|
|
36
85
|
};
|
|
86
|
+
begin_at_zero?: boolean;
|
|
87
|
+
};
|
|
88
|
+
r?: {
|
|
89
|
+
begin_at_zero?: boolean;
|
|
90
|
+
ticks?: {
|
|
91
|
+
step_size?: number;
|
|
92
|
+
};
|
|
37
93
|
};
|
|
38
94
|
};
|
|
39
95
|
index_axis?: 'x' | 'y';
|
|
40
96
|
};
|
|
41
97
|
color_scheme_type?: 'theme' | 'custom';
|
|
98
|
+
percent_display?: boolean;
|
|
99
|
+
view_controls?: ViewControls;
|
|
100
|
+
chart_height?: number;
|
|
101
|
+
chart_width?: number;
|
|
102
|
+
_primary_chart_type?: ChartType;
|
|
42
103
|
}
|
|
43
104
|
export interface DynamicValue {
|
|
44
105
|
path: string;
|
|
@@ -47,11 +108,29 @@ export interface DynamicValue {
|
|
|
47
108
|
export interface ArrayConfig {
|
|
48
109
|
labelField: string;
|
|
49
110
|
valueField: string;
|
|
111
|
+
xField?: string;
|
|
112
|
+
yField?: string;
|
|
113
|
+
rField?: string;
|
|
50
114
|
}
|
|
51
115
|
export interface DataPoint {
|
|
52
116
|
label: string;
|
|
53
117
|
value: string;
|
|
118
|
+
xValue?: string;
|
|
119
|
+
yValue?: string;
|
|
120
|
+
rValue?: string;
|
|
54
121
|
dynamicValue?: DynamicValue | any;
|
|
122
|
+
dynamicXValue?: DynamicValue | any;
|
|
123
|
+
dynamicYValue?: DynamicValue | any;
|
|
124
|
+
dynamicRValue?: DynamicValue | any;
|
|
55
125
|
selectedValue?: any;
|
|
126
|
+
selectedXValue?: any;
|
|
127
|
+
selectedYValue?: any;
|
|
128
|
+
selectedRValue?: any;
|
|
56
129
|
arrayConfig?: ArrayConfig;
|
|
57
130
|
}
|
|
131
|
+
export interface Series {
|
|
132
|
+
id: string;
|
|
133
|
+
name: string;
|
|
134
|
+
chartType: ChartType;
|
|
135
|
+
dataPoints: DataPoint[];
|
|
136
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DynamicDataTableProps, DynamicDatatableProperty } from '../../../types/canvas';
|
|
2
|
+
/**
|
|
3
|
+
* Calculate the background color for a table row based on striping configuration
|
|
4
|
+
* @param idx - The row index (0-based)
|
|
5
|
+
* @param data - The dynamic data table props containing striping configuration
|
|
6
|
+
* @param themeVars - The theme variables containing color values
|
|
7
|
+
* @returns The background color string for the row
|
|
8
|
+
*/
|
|
9
|
+
export declare function getRowBackgroundColor(idx: number, data: DynamicDataTableProps | undefined, themeVars: Record<string, any>): string;
|
|
10
|
+
/**
|
|
11
|
+
* Format a cell value based on the property's format configuration
|
|
12
|
+
* @param value - The raw value to format
|
|
13
|
+
* @param property - The property configuration including format settings
|
|
14
|
+
* @returns The formatted string representation of the value
|
|
15
|
+
*/
|
|
16
|
+
export declare function formatCellValue(value: any, property: DynamicDatatableProperty): string;
|
|
@@ -17,6 +17,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
17
17
|
};
|
|
18
18
|
usedInSectionId: CanvasRetrieve["id"];
|
|
19
19
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
20
|
+
embeddableContainer: HTMLDivElement;
|
|
20
21
|
embeddableIframe: HTMLIFrameElement;
|
|
21
22
|
}, any>;
|
|
22
23
|
export default _default;
|
|
@@ -139,9 +139,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
139
139
|
}>> & Readonly<{}>, FormInst & {
|
|
140
140
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
141
141
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
142
|
-
readonly inline: boolean;
|
|
143
142
|
readonly disabled: boolean;
|
|
144
143
|
readonly onSubmit: (e: Event) => void;
|
|
144
|
+
readonly inline: boolean;
|
|
145
145
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
146
146
|
readonly model: Record<string, any>;
|
|
147
147
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -286,9 +286,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
286
286
|
}>> & Readonly<{}>, FormInst & {
|
|
287
287
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
288
288
|
}, {}, {}, {}, {
|
|
289
|
-
readonly inline: boolean;
|
|
290
289
|
readonly disabled: boolean;
|
|
291
290
|
readonly onSubmit: (e: Event) => void;
|
|
291
|
+
readonly inline: boolean;
|
|
292
292
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
293
293
|
readonly model: Record<string, any>;
|
|
294
294
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -307,14 +307,16 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
307
307
|
}>, {
|
|
308
308
|
validate: () => Promise<{
|
|
309
309
|
config: Record<string, any>;
|
|
310
|
-
success:
|
|
310
|
+
success: true;
|
|
311
311
|
errors?: undefined;
|
|
312
|
+
firstErrorFieldName?: undefined;
|
|
312
313
|
} | {
|
|
313
314
|
config: Record<string, any>;
|
|
314
315
|
errors: unknown;
|
|
315
|
-
|
|
316
|
+
firstErrorFieldName: string | undefined;
|
|
317
|
+
success: false;
|
|
316
318
|
}>;
|
|
317
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
319
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
318
320
|
change: (config: Record<string, any>) => any;
|
|
319
321
|
}, import('vue').PublicProps, {
|
|
320
322
|
loading: boolean;
|
|
@@ -454,9 +456,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
454
456
|
}>> & Readonly<{}>, FormInst & {
|
|
455
457
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
456
458
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
457
|
-
readonly inline: boolean;
|
|
458
459
|
readonly disabled: boolean;
|
|
459
460
|
readonly onSubmit: (e: Event) => void;
|
|
461
|
+
readonly inline: boolean;
|
|
460
462
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
461
463
|
readonly model: Record<string, any>;
|
|
462
464
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -601,9 +603,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
601
603
|
}>> & Readonly<{}>, FormInst & {
|
|
602
604
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
603
605
|
}, {}, {}, {}, {
|
|
604
|
-
readonly inline: boolean;
|
|
605
606
|
readonly disabled: boolean;
|
|
606
607
|
readonly onSubmit: (e: Event) => void;
|
|
608
|
+
readonly inline: boolean;
|
|
607
609
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
608
610
|
readonly model: Record<string, any>;
|
|
609
611
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -629,12 +631,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
629
631
|
}>, {
|
|
630
632
|
validate: () => Promise<{
|
|
631
633
|
config: Record<string, any>;
|
|
632
|
-
success:
|
|
634
|
+
success: true;
|
|
633
635
|
errors?: undefined;
|
|
636
|
+
firstErrorFieldName?: undefined;
|
|
634
637
|
} | {
|
|
635
638
|
config: Record<string, any>;
|
|
636
639
|
errors: unknown;
|
|
637
|
-
|
|
640
|
+
firstErrorFieldName: string | undefined;
|
|
641
|
+
success: false;
|
|
638
642
|
}>;
|
|
639
643
|
}, {}, {}, {}, {
|
|
640
644
|
loading: boolean;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { StyleValue } from 'vue';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue: string;
|
|
4
|
+
themeOverrides?: {
|
|
5
|
+
active: StyleValue;
|
|
6
|
+
default: StyleValue;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: string) => any;
|
|
11
|
+
startLoading: () => any;
|
|
12
|
+
endLoading: () => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
15
|
+
onStartLoading?: (() => any) | undefined;
|
|
16
|
+
onEndLoading?: (() => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
themeOverrides: {
|
|
19
|
+
active: StyleValue;
|
|
20
|
+
default: StyleValue;
|
|
21
|
+
};
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -16,6 +16,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
16
16
|
};
|
|
17
17
|
usedInSectionId: string;
|
|
18
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
19
|
+
iframeContainer: HTMLDivElement;
|
|
19
20
|
iframe: HTMLIFrameElement;
|
|
20
21
|
}, any>;
|
|
21
22
|
export default _default;
|
|
@@ -139,9 +139,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
139
139
|
}>> & Readonly<{}>, FormInst & {
|
|
140
140
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
141
141
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
142
|
-
readonly inline: boolean;
|
|
143
142
|
readonly disabled: boolean;
|
|
144
143
|
readonly onSubmit: (e: Event) => void;
|
|
144
|
+
readonly inline: boolean;
|
|
145
145
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
146
146
|
readonly model: Record<string, any>;
|
|
147
147
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -286,9 +286,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
286
286
|
}>> & Readonly<{}>, FormInst & {
|
|
287
287
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
288
288
|
}, {}, {}, {}, {
|
|
289
|
-
readonly inline: boolean;
|
|
290
289
|
readonly disabled: boolean;
|
|
291
290
|
readonly onSubmit: (e: Event) => void;
|
|
291
|
+
readonly inline: boolean;
|
|
292
292
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
293
293
|
readonly model: Record<string, any>;
|
|
294
294
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -137,9 +137,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
137
137
|
}>> & Readonly<{}>, FormInst & {
|
|
138
138
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
139
139
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
140
|
-
readonly inline: boolean;
|
|
141
140
|
readonly disabled: boolean;
|
|
142
141
|
readonly onSubmit: (e: Event) => void;
|
|
142
|
+
readonly inline: boolean;
|
|
143
143
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
144
144
|
readonly model: Record<string, any>;
|
|
145
145
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -284,9 +284,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
284
284
|
}>> & Readonly<{}>, FormInst & {
|
|
285
285
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
286
286
|
}, {}, {}, {}, {
|
|
287
|
-
readonly inline: boolean;
|
|
288
287
|
readonly disabled: boolean;
|
|
289
288
|
readonly onSubmit: (e: Event) => void;
|
|
289
|
+
readonly inline: boolean;
|
|
290
290
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
291
291
|
readonly model: Record<string, any>;
|
|
292
292
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -141,9 +141,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
141
141
|
}>> & Readonly<{}>, FormInst & {
|
|
142
142
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
143
143
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
144
|
-
readonly inline: boolean;
|
|
145
144
|
readonly disabled: boolean;
|
|
146
145
|
readonly onSubmit: (e: Event) => void;
|
|
146
|
+
readonly inline: boolean;
|
|
147
147
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
148
148
|
readonly model: Record<string, any>;
|
|
149
149
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -288,9 +288,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
288
288
|
}>> & Readonly<{}>, FormInst & {
|
|
289
289
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
290
290
|
}, {}, {}, {}, {
|
|
291
|
-
readonly inline: boolean;
|
|
292
291
|
readonly disabled: boolean;
|
|
293
292
|
readonly onSubmit: (e: Event) => void;
|
|
293
|
+
readonly inline: boolean;
|
|
294
294
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
295
295
|
readonly model: Record<string, any>;
|
|
296
296
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -137,9 +137,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
137
137
|
}>> & Readonly<{}>, FormInst & {
|
|
138
138
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
139
139
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
140
|
-
readonly inline: boolean;
|
|
141
140
|
readonly disabled: boolean;
|
|
142
141
|
readonly onSubmit: (e: Event) => void;
|
|
142
|
+
readonly inline: boolean;
|
|
143
143
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
144
144
|
readonly model: Record<string, any>;
|
|
145
145
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -284,9 +284,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
284
284
|
}>> & Readonly<{}>, FormInst & {
|
|
285
285
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
286
286
|
}, {}, {}, {}, {
|
|
287
|
-
readonly inline: boolean;
|
|
288
287
|
readonly disabled: boolean;
|
|
289
288
|
readonly onSubmit: (e: Event) => void;
|
|
289
|
+
readonly inline: boolean;
|
|
290
290
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
291
291
|
readonly model: Record<string, any>;
|
|
292
292
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -15,14 +15,16 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
15
15
|
}>, {
|
|
16
16
|
validate: () => Promise<{
|
|
17
17
|
config: Record<string, any>;
|
|
18
|
-
success:
|
|
18
|
+
success: true;
|
|
19
19
|
errors?: undefined;
|
|
20
|
+
firstErrorFieldName?: undefined;
|
|
20
21
|
} | {
|
|
21
22
|
config: Record<string, any>;
|
|
22
23
|
errors: unknown;
|
|
23
|
-
|
|
24
|
+
firstErrorFieldName: string | undefined;
|
|
25
|
+
success: false;
|
|
24
26
|
}>;
|
|
25
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
26
28
|
change: (config: Record<string, any>) => any;
|
|
27
29
|
}, import('vue').PublicProps, {
|
|
28
30
|
loading: boolean;
|
|
@@ -162,9 +164,9 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
162
164
|
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
163
165
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
164
166
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
165
|
-
readonly inline: boolean;
|
|
166
167
|
readonly disabled: boolean;
|
|
167
168
|
readonly onSubmit: (e: Event) => void;
|
|
169
|
+
readonly inline: boolean;
|
|
168
170
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
169
171
|
readonly model: Record<string, any>;
|
|
170
172
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -309,9 +311,9 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
309
311
|
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
310
312
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
311
313
|
}, {}, {}, {}, {
|
|
312
|
-
readonly inline: boolean;
|
|
313
314
|
readonly disabled: boolean;
|
|
314
315
|
readonly onSubmit: (e: Event) => void;
|
|
316
|
+
readonly inline: boolean;
|
|
315
317
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
316
318
|
readonly model: Record<string, any>;
|
|
317
319
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -337,12 +339,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
337
339
|
}>, {
|
|
338
340
|
validate: () => Promise<{
|
|
339
341
|
config: Record<string, any>;
|
|
340
|
-
success:
|
|
342
|
+
success: true;
|
|
341
343
|
errors?: undefined;
|
|
344
|
+
firstErrorFieldName?: undefined;
|
|
342
345
|
} | {
|
|
343
346
|
config: Record<string, any>;
|
|
344
347
|
errors: unknown;
|
|
345
|
-
|
|
348
|
+
firstErrorFieldName: string | undefined;
|
|
349
|
+
success: false;
|
|
346
350
|
}>;
|
|
347
351
|
}, {}, {}, {}, {
|
|
348
352
|
loading: boolean;
|
|
@@ -17,7 +17,9 @@ declare function __VLS_template(): {
|
|
|
17
17
|
section: import('../../../../../../types/openapi').CanvasSection;
|
|
18
18
|
}): any;
|
|
19
19
|
};
|
|
20
|
-
refs: {
|
|
20
|
+
refs: {
|
|
21
|
+
rootRef: HTMLElement;
|
|
22
|
+
};
|
|
21
23
|
rootEl: any;
|
|
22
24
|
};
|
|
23
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -25,7 +27,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
25
27
|
close: (save?: boolean | undefined) => any;
|
|
26
28
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
27
29
|
onClose?: ((save?: boolean | undefined) => any) | undefined;
|
|
28
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
30
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
|
+
rootRef: HTMLElement;
|
|
32
|
+
}, any>;
|
|
29
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
34
|
export default _default;
|
|
31
35
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -13,27 +13,27 @@ type __VLS_Props = {
|
|
|
13
13
|
selectedItemIds?: CanvasRetrieve['id'][];
|
|
14
14
|
};
|
|
15
15
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
16
|
+
"clear-selection": () => any;
|
|
17
|
+
"items-added": (itemIds: string[], position?: "bottom" | "top" | undefined) => any;
|
|
18
|
+
"items-removed": (itemIds: string[]) => any;
|
|
16
19
|
"toggle-select-all": () => any;
|
|
17
20
|
"page-first": () => any;
|
|
18
21
|
"page-last": () => any;
|
|
19
22
|
"page-next": () => any;
|
|
20
23
|
"page-previous": () => any;
|
|
21
|
-
"clear-selection": () => any;
|
|
22
|
-
"items-added": (itemIds: string[], position?: "bottom" | "top" | undefined) => any;
|
|
23
|
-
"items-removed": (itemIds: string[]) => any;
|
|
24
24
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onClear-selection"?: (() => any) | undefined;
|
|
26
|
+
"onItems-added"?: ((itemIds: string[], position?: "bottom" | "top" | undefined) => any) | undefined;
|
|
27
|
+
"onItems-removed"?: ((itemIds: string[]) => any) | undefined;
|
|
25
28
|
"onToggle-select-all"?: (() => any) | undefined;
|
|
26
29
|
"onPage-first"?: (() => any) | undefined;
|
|
27
30
|
"onPage-last"?: (() => any) | undefined;
|
|
28
31
|
"onPage-next"?: (() => any) | undefined;
|
|
29
32
|
"onPage-previous"?: (() => any) | undefined;
|
|
30
|
-
"onClear-selection"?: (() => any) | undefined;
|
|
31
|
-
"onItems-added"?: ((itemIds: string[], position?: "bottom" | "top" | undefined) => any) | undefined;
|
|
32
|
-
"onItems-removed"?: ((itemIds: string[]) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
loading: boolean;
|
|
35
|
+
addedItemIds: CanvasRetrieve["id"][];
|
|
35
36
|
selectedItemIds: CanvasRetrieve["id"][];
|
|
36
37
|
disablePagination: boolean;
|
|
37
|
-
addedItemIds: CanvasRetrieve["id"][];
|
|
38
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
export default _default;
|