@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
|
@@ -124,7 +124,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
124
124
|
paddingMedium: string;
|
|
125
125
|
paddingLarge: string;
|
|
126
126
|
clearSize: string;
|
|
127
|
-
},
|
|
127
|
+
}, {
|
|
128
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
129
|
+
height: string;
|
|
130
|
+
width: string;
|
|
131
|
+
borderRadius: string;
|
|
132
|
+
color: string;
|
|
133
|
+
colorHover: string;
|
|
134
|
+
railInsetHorizontalBottom: string;
|
|
135
|
+
railInsetHorizontalTop: string;
|
|
136
|
+
railInsetVerticalRight: string;
|
|
137
|
+
railInsetVerticalLeft: string;
|
|
138
|
+
railColor: string;
|
|
139
|
+
}, any>;
|
|
140
|
+
}>;
|
|
128
141
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
129
142
|
heightTiny: string;
|
|
130
143
|
heightSmall: string;
|
|
@@ -487,7 +500,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
487
500
|
paddingMedium: string;
|
|
488
501
|
paddingLarge: string;
|
|
489
502
|
clearSize: string;
|
|
490
|
-
},
|
|
503
|
+
}, {
|
|
504
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
505
|
+
height: string;
|
|
506
|
+
width: string;
|
|
507
|
+
borderRadius: string;
|
|
508
|
+
color: string;
|
|
509
|
+
colorHover: string;
|
|
510
|
+
railInsetHorizontalBottom: string;
|
|
511
|
+
railInsetHorizontalTop: string;
|
|
512
|
+
railInsetVerticalRight: string;
|
|
513
|
+
railInsetVerticalLeft: string;
|
|
514
|
+
railColor: string;
|
|
515
|
+
}, any>;
|
|
516
|
+
}>;
|
|
491
517
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
492
518
|
heightTiny: string;
|
|
493
519
|
heightSmall: string;
|
|
@@ -850,7 +876,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
850
876
|
paddingMedium: string;
|
|
851
877
|
paddingLarge: string;
|
|
852
878
|
clearSize: string;
|
|
853
|
-
},
|
|
879
|
+
}, {
|
|
880
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
881
|
+
height: string;
|
|
882
|
+
width: string;
|
|
883
|
+
borderRadius: string;
|
|
884
|
+
color: string;
|
|
885
|
+
colorHover: string;
|
|
886
|
+
railInsetHorizontalBottom: string;
|
|
887
|
+
railInsetHorizontalTop: string;
|
|
888
|
+
railInsetVerticalRight: string;
|
|
889
|
+
railInsetVerticalLeft: string;
|
|
890
|
+
railColor: string;
|
|
891
|
+
}, any>;
|
|
892
|
+
}>;
|
|
854
893
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
855
894
|
heightTiny: string;
|
|
856
895
|
heightSmall: string;
|
|
@@ -1189,7 +1228,7 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
1189
1228
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1190
1229
|
} | null>;
|
|
1191
1230
|
localizedAdd: import('vue').ComputedRef<string>;
|
|
1192
|
-
inputSize: import('vue').ComputedRef<"
|
|
1231
|
+
inputSize: import('vue').ComputedRef<"tiny" | "small" | "medium">;
|
|
1193
1232
|
inputValue: import('vue').Ref<string, string>;
|
|
1194
1233
|
showInput: import('vue').Ref<boolean, boolean>;
|
|
1195
1234
|
inputForceFocused: import('vue').Ref<boolean, boolean>;
|
|
@@ -1271,7 +1310,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
1271
1310
|
paddingMedium: string;
|
|
1272
1311
|
paddingLarge: string;
|
|
1273
1312
|
clearSize: string;
|
|
1274
|
-
},
|
|
1313
|
+
}, {
|
|
1314
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1315
|
+
height: string;
|
|
1316
|
+
width: string;
|
|
1317
|
+
borderRadius: string;
|
|
1318
|
+
color: string;
|
|
1319
|
+
colorHover: string;
|
|
1320
|
+
railInsetHorizontalBottom: string;
|
|
1321
|
+
railInsetHorizontalTop: string;
|
|
1322
|
+
railInsetVerticalRight: string;
|
|
1323
|
+
railInsetVerticalLeft: string;
|
|
1324
|
+
railColor: string;
|
|
1325
|
+
}, any>;
|
|
1326
|
+
}>;
|
|
1275
1327
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
1276
1328
|
heightTiny: string;
|
|
1277
1329
|
heightSmall: string;
|
|
@@ -1573,7 +1625,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
1573
1625
|
peerOverrides: {
|
|
1574
1626
|
Input?: {
|
|
1575
1627
|
peers?: {
|
|
1576
|
-
|
|
1628
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1629
|
+
height: string;
|
|
1630
|
+
width: string;
|
|
1631
|
+
borderRadius: string;
|
|
1632
|
+
color: string;
|
|
1633
|
+
colorHover: string;
|
|
1634
|
+
railInsetHorizontalBottom: string;
|
|
1635
|
+
railInsetHorizontalTop: string;
|
|
1636
|
+
railInsetVerticalRight: string;
|
|
1637
|
+
railInsetVerticalLeft: string;
|
|
1638
|
+
railColor: string;
|
|
1639
|
+
}, any>> | undefined;
|
|
1577
1640
|
} | undefined;
|
|
1578
1641
|
} | undefined;
|
|
1579
1642
|
Button?: {
|
|
@@ -1599,12 +1662,12 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
1599
1662
|
themeClass: import('vue').Ref<string, string> | undefined;
|
|
1600
1663
|
onRender: (() => void) | undefined;
|
|
1601
1664
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1602
|
-
type: "error" | "default" | "primary" | "info" | "success" | "warning";
|
|
1603
|
-
size: "small" | "medium" | "large";
|
|
1604
1665
|
disabled: boolean | undefined;
|
|
1605
|
-
|
|
1666
|
+
type: "default" | "info" | "warning" | "error" | "success" | "primary";
|
|
1667
|
+
size: "small" | "medium" | "large";
|
|
1606
1668
|
closable: boolean;
|
|
1607
1669
|
defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
|
|
1670
|
+
round: boolean;
|
|
1608
1671
|
onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
|
|
1609
1672
|
}, true, {}, import('vue').SlotsType<import('naive-ui').DynamicTagsSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1610
1673
|
P: {};
|
|
@@ -1715,7 +1778,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
1715
1778
|
paddingMedium: string;
|
|
1716
1779
|
paddingLarge: string;
|
|
1717
1780
|
clearSize: string;
|
|
1718
|
-
},
|
|
1781
|
+
}, {
|
|
1782
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1783
|
+
height: string;
|
|
1784
|
+
width: string;
|
|
1785
|
+
borderRadius: string;
|
|
1786
|
+
color: string;
|
|
1787
|
+
colorHover: string;
|
|
1788
|
+
railInsetHorizontalBottom: string;
|
|
1789
|
+
railInsetHorizontalTop: string;
|
|
1790
|
+
railInsetVerticalRight: string;
|
|
1791
|
+
railInsetVerticalLeft: string;
|
|
1792
|
+
railColor: string;
|
|
1793
|
+
}, any>;
|
|
1794
|
+
}>;
|
|
1719
1795
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
1720
1796
|
heightTiny: string;
|
|
1721
1797
|
heightSmall: string;
|
|
@@ -2078,7 +2154,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
2078
2154
|
paddingMedium: string;
|
|
2079
2155
|
paddingLarge: string;
|
|
2080
2156
|
clearSize: string;
|
|
2081
|
-
},
|
|
2157
|
+
}, {
|
|
2158
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2159
|
+
height: string;
|
|
2160
|
+
width: string;
|
|
2161
|
+
borderRadius: string;
|
|
2162
|
+
color: string;
|
|
2163
|
+
colorHover: string;
|
|
2164
|
+
railInsetHorizontalBottom: string;
|
|
2165
|
+
railInsetHorizontalTop: string;
|
|
2166
|
+
railInsetVerticalRight: string;
|
|
2167
|
+
railInsetVerticalLeft: string;
|
|
2168
|
+
railColor: string;
|
|
2169
|
+
}, any>;
|
|
2170
|
+
}>;
|
|
2082
2171
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2083
2172
|
heightTiny: string;
|
|
2084
2173
|
heightSmall: string;
|
|
@@ -2441,7 +2530,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
2441
2530
|
paddingMedium: string;
|
|
2442
2531
|
paddingLarge: string;
|
|
2443
2532
|
clearSize: string;
|
|
2444
|
-
},
|
|
2533
|
+
}, {
|
|
2534
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2535
|
+
height: string;
|
|
2536
|
+
width: string;
|
|
2537
|
+
borderRadius: string;
|
|
2538
|
+
color: string;
|
|
2539
|
+
colorHover: string;
|
|
2540
|
+
railInsetHorizontalBottom: string;
|
|
2541
|
+
railInsetHorizontalTop: string;
|
|
2542
|
+
railInsetVerticalRight: string;
|
|
2543
|
+
railInsetVerticalLeft: string;
|
|
2544
|
+
railColor: string;
|
|
2545
|
+
}, any>;
|
|
2546
|
+
}>;
|
|
2445
2547
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2446
2548
|
heightTiny: string;
|
|
2447
2549
|
heightSmall: string;
|
|
@@ -2780,7 +2882,7 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
2780
2882
|
scrollTo: (options: ScrollToOptions) => void;
|
|
2781
2883
|
} | null>;
|
|
2782
2884
|
localizedAdd: import('vue').ComputedRef<string>;
|
|
2783
|
-
inputSize: import('vue').ComputedRef<"
|
|
2885
|
+
inputSize: import('vue').ComputedRef<"tiny" | "small" | "medium">;
|
|
2784
2886
|
inputValue: import('vue').Ref<string, string>;
|
|
2785
2887
|
showInput: import('vue').Ref<boolean, boolean>;
|
|
2786
2888
|
inputForceFocused: import('vue').Ref<boolean, boolean>;
|
|
@@ -2862,7 +2964,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
2862
2964
|
paddingMedium: string;
|
|
2863
2965
|
paddingLarge: string;
|
|
2864
2966
|
clearSize: string;
|
|
2865
|
-
},
|
|
2967
|
+
}, {
|
|
2968
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2969
|
+
height: string;
|
|
2970
|
+
width: string;
|
|
2971
|
+
borderRadius: string;
|
|
2972
|
+
color: string;
|
|
2973
|
+
colorHover: string;
|
|
2974
|
+
railInsetHorizontalBottom: string;
|
|
2975
|
+
railInsetHorizontalTop: string;
|
|
2976
|
+
railInsetVerticalRight: string;
|
|
2977
|
+
railInsetVerticalLeft: string;
|
|
2978
|
+
railColor: string;
|
|
2979
|
+
}, any>;
|
|
2980
|
+
}>;
|
|
2866
2981
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2867
2982
|
heightTiny: string;
|
|
2868
2983
|
heightSmall: string;
|
|
@@ -3164,7 +3279,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3164
3279
|
peerOverrides: {
|
|
3165
3280
|
Input?: {
|
|
3166
3281
|
peers?: {
|
|
3167
|
-
|
|
3282
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3283
|
+
height: string;
|
|
3284
|
+
width: string;
|
|
3285
|
+
borderRadius: string;
|
|
3286
|
+
color: string;
|
|
3287
|
+
colorHover: string;
|
|
3288
|
+
railInsetHorizontalBottom: string;
|
|
3289
|
+
railInsetHorizontalTop: string;
|
|
3290
|
+
railInsetVerticalRight: string;
|
|
3291
|
+
railInsetVerticalLeft: string;
|
|
3292
|
+
railColor: string;
|
|
3293
|
+
}, any>> | undefined;
|
|
3168
3294
|
} | undefined;
|
|
3169
3295
|
} | undefined;
|
|
3170
3296
|
Button?: {
|
|
@@ -3190,12 +3316,12 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3190
3316
|
themeClass: import('vue').Ref<string, string> | undefined;
|
|
3191
3317
|
onRender: (() => void) | undefined;
|
|
3192
3318
|
}, {}, {}, {}, {
|
|
3193
|
-
type: "error" | "default" | "primary" | "info" | "success" | "warning";
|
|
3194
|
-
size: "small" | "medium" | "large";
|
|
3195
3319
|
disabled: boolean | undefined;
|
|
3196
|
-
|
|
3320
|
+
type: "default" | "info" | "warning" | "error" | "success" | "primary";
|
|
3321
|
+
size: "small" | "medium" | "large";
|
|
3197
3322
|
closable: boolean;
|
|
3198
3323
|
defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
|
|
3324
|
+
round: boolean;
|
|
3199
3325
|
onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
|
|
3200
3326
|
}> | null;
|
|
3201
3327
|
autoCompleteRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -3382,7 +3508,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3382
3508
|
paddingMedium: string;
|
|
3383
3509
|
paddingLarge: string;
|
|
3384
3510
|
clearSize: string;
|
|
3385
|
-
},
|
|
3511
|
+
}, {
|
|
3512
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3513
|
+
height: string;
|
|
3514
|
+
width: string;
|
|
3515
|
+
borderRadius: string;
|
|
3516
|
+
color: string;
|
|
3517
|
+
colorHover: string;
|
|
3518
|
+
railInsetHorizontalBottom: string;
|
|
3519
|
+
railInsetHorizontalTop: string;
|
|
3520
|
+
railInsetVerticalRight: string;
|
|
3521
|
+
railInsetVerticalLeft: string;
|
|
3522
|
+
railColor: string;
|
|
3523
|
+
}, any>;
|
|
3524
|
+
}>;
|
|
3386
3525
|
}>>;
|
|
3387
3526
|
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
3388
3527
|
menuBoxShadow: string;
|
|
@@ -3515,7 +3654,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3515
3654
|
paddingMedium: string;
|
|
3516
3655
|
paddingLarge: string;
|
|
3517
3656
|
clearSize: string;
|
|
3518
|
-
},
|
|
3657
|
+
}, {
|
|
3658
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3659
|
+
height: string;
|
|
3660
|
+
width: string;
|
|
3661
|
+
borderRadius: string;
|
|
3662
|
+
color: string;
|
|
3663
|
+
colorHover: string;
|
|
3664
|
+
railInsetHorizontalBottom: string;
|
|
3665
|
+
railInsetHorizontalTop: string;
|
|
3666
|
+
railInsetVerticalRight: string;
|
|
3667
|
+
railInsetVerticalLeft: string;
|
|
3668
|
+
railColor: string;
|
|
3669
|
+
}, any>;
|
|
3670
|
+
}>;
|
|
3519
3671
|
}>>>;
|
|
3520
3672
|
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
3521
3673
|
menuBoxShadow: string;
|
|
@@ -3648,7 +3800,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3648
3800
|
paddingMedium: string;
|
|
3649
3801
|
paddingLarge: string;
|
|
3650
3802
|
clearSize: string;
|
|
3651
|
-
},
|
|
3803
|
+
}, {
|
|
3804
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3805
|
+
height: string;
|
|
3806
|
+
width: string;
|
|
3807
|
+
borderRadius: string;
|
|
3808
|
+
color: string;
|
|
3809
|
+
colorHover: string;
|
|
3810
|
+
railInsetHorizontalBottom: string;
|
|
3811
|
+
railInsetHorizontalTop: string;
|
|
3812
|
+
railInsetVerticalRight: string;
|
|
3813
|
+
railInsetVerticalLeft: string;
|
|
3814
|
+
railColor: string;
|
|
3815
|
+
}, any>;
|
|
3816
|
+
}>;
|
|
3652
3817
|
}>>>;
|
|
3653
3818
|
}>> & Readonly<{}>, {
|
|
3654
3819
|
focus: () => void;
|
|
@@ -3859,7 +4024,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3859
4024
|
paddingMedium: string;
|
|
3860
4025
|
paddingLarge: string;
|
|
3861
4026
|
clearSize: string;
|
|
3862
|
-
},
|
|
4027
|
+
}, {
|
|
4028
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4029
|
+
height: string;
|
|
4030
|
+
width: string;
|
|
4031
|
+
borderRadius: string;
|
|
4032
|
+
color: string;
|
|
4033
|
+
colorHover: string;
|
|
4034
|
+
railInsetHorizontalBottom: string;
|
|
4035
|
+
railInsetHorizontalTop: string;
|
|
4036
|
+
railInsetVerticalRight: string;
|
|
4037
|
+
railInsetVerticalLeft: string;
|
|
4038
|
+
railColor: string;
|
|
4039
|
+
}, any>;
|
|
4040
|
+
}>;
|
|
3863
4041
|
};
|
|
3864
4042
|
peerOverrides: {
|
|
3865
4043
|
InternalSelectMenu?: {
|
|
@@ -3895,7 +4073,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3895
4073
|
} | undefined;
|
|
3896
4074
|
Input?: {
|
|
3897
4075
|
peers?: {
|
|
3898
|
-
|
|
4076
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4077
|
+
height: string;
|
|
4078
|
+
width: string;
|
|
4079
|
+
borderRadius: string;
|
|
4080
|
+
color: string;
|
|
4081
|
+
colorHover: string;
|
|
4082
|
+
railInsetHorizontalBottom: string;
|
|
4083
|
+
railInsetHorizontalTop: string;
|
|
4084
|
+
railInsetVerticalRight: string;
|
|
4085
|
+
railInsetVerticalLeft: string;
|
|
4086
|
+
railColor: string;
|
|
4087
|
+
}, any>> | undefined;
|
|
3899
4088
|
} | undefined;
|
|
3900
4089
|
} | undefined;
|
|
3901
4090
|
};
|
|
@@ -3910,18 +4099,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
3910
4099
|
namespace: import('vue').ComputedRef<string | undefined>;
|
|
3911
4100
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
3912
4101
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
3913
|
-
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
3914
|
-
readonly to: string | boolean | HTMLElement;
|
|
3915
4102
|
readonly disabled: boolean | undefined;
|
|
3916
|
-
readonly loading: boolean;
|
|
3917
4103
|
readonly bordered: boolean | undefined;
|
|
3918
|
-
readonly
|
|
4104
|
+
readonly to: string | boolean | HTMLElement;
|
|
4105
|
+
readonly append: boolean;
|
|
3919
4106
|
readonly clearable: boolean;
|
|
3920
4107
|
readonly defaultValue: string | null;
|
|
3921
|
-
readonly
|
|
4108
|
+
readonly loading: boolean;
|
|
4109
|
+
readonly placement: import('naive-ui').PopoverPlacement;
|
|
3922
4110
|
readonly blurAfterSelect: boolean;
|
|
3923
4111
|
readonly clearAfterSelect: boolean;
|
|
3924
4112
|
readonly showEmpty: boolean;
|
|
4113
|
+
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
3925
4114
|
}, true, {}, import('vue').SlotsType<import('naive-ui').AutoCompleteSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
3926
4115
|
P: {};
|
|
3927
4116
|
B: {};
|
|
@@ -4113,7 +4302,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4113
4302
|
paddingMedium: string;
|
|
4114
4303
|
paddingLarge: string;
|
|
4115
4304
|
clearSize: string;
|
|
4116
|
-
},
|
|
4305
|
+
}, {
|
|
4306
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4307
|
+
height: string;
|
|
4308
|
+
width: string;
|
|
4309
|
+
borderRadius: string;
|
|
4310
|
+
color: string;
|
|
4311
|
+
colorHover: string;
|
|
4312
|
+
railInsetHorizontalBottom: string;
|
|
4313
|
+
railInsetHorizontalTop: string;
|
|
4314
|
+
railInsetVerticalRight: string;
|
|
4315
|
+
railInsetVerticalLeft: string;
|
|
4316
|
+
railColor: string;
|
|
4317
|
+
}, any>;
|
|
4318
|
+
}>;
|
|
4117
4319
|
}>>;
|
|
4118
4320
|
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
4119
4321
|
menuBoxShadow: string;
|
|
@@ -4246,7 +4448,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4246
4448
|
paddingMedium: string;
|
|
4247
4449
|
paddingLarge: string;
|
|
4248
4450
|
clearSize: string;
|
|
4249
|
-
},
|
|
4451
|
+
}, {
|
|
4452
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4453
|
+
height: string;
|
|
4454
|
+
width: string;
|
|
4455
|
+
borderRadius: string;
|
|
4456
|
+
color: string;
|
|
4457
|
+
colorHover: string;
|
|
4458
|
+
railInsetHorizontalBottom: string;
|
|
4459
|
+
railInsetHorizontalTop: string;
|
|
4460
|
+
railInsetVerticalRight: string;
|
|
4461
|
+
railInsetVerticalLeft: string;
|
|
4462
|
+
railColor: string;
|
|
4463
|
+
}, any>;
|
|
4464
|
+
}>;
|
|
4250
4465
|
}>>>;
|
|
4251
4466
|
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
4252
4467
|
menuBoxShadow: string;
|
|
@@ -4379,7 +4594,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4379
4594
|
paddingMedium: string;
|
|
4380
4595
|
paddingLarge: string;
|
|
4381
4596
|
clearSize: string;
|
|
4382
|
-
},
|
|
4597
|
+
}, {
|
|
4598
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4599
|
+
height: string;
|
|
4600
|
+
width: string;
|
|
4601
|
+
borderRadius: string;
|
|
4602
|
+
color: string;
|
|
4603
|
+
colorHover: string;
|
|
4604
|
+
railInsetHorizontalBottom: string;
|
|
4605
|
+
railInsetHorizontalTop: string;
|
|
4606
|
+
railInsetVerticalRight: string;
|
|
4607
|
+
railInsetVerticalLeft: string;
|
|
4608
|
+
railColor: string;
|
|
4609
|
+
}, any>;
|
|
4610
|
+
}>;
|
|
4383
4611
|
}>>>;
|
|
4384
4612
|
}>> & Readonly<{}>, {
|
|
4385
4613
|
focus: () => void;
|
|
@@ -4590,7 +4818,20 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4590
4818
|
paddingMedium: string;
|
|
4591
4819
|
paddingLarge: string;
|
|
4592
4820
|
clearSize: string;
|
|
4593
|
-
},
|
|
4821
|
+
}, {
|
|
4822
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4823
|
+
height: string;
|
|
4824
|
+
width: string;
|
|
4825
|
+
borderRadius: string;
|
|
4826
|
+
color: string;
|
|
4827
|
+
colorHover: string;
|
|
4828
|
+
railInsetHorizontalBottom: string;
|
|
4829
|
+
railInsetHorizontalTop: string;
|
|
4830
|
+
railInsetVerticalRight: string;
|
|
4831
|
+
railInsetVerticalLeft: string;
|
|
4832
|
+
railColor: string;
|
|
4833
|
+
}, any>;
|
|
4834
|
+
}>;
|
|
4594
4835
|
};
|
|
4595
4836
|
peerOverrides: {
|
|
4596
4837
|
InternalSelectMenu?: {
|
|
@@ -4626,7 +4867,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4626
4867
|
} | undefined;
|
|
4627
4868
|
Input?: {
|
|
4628
4869
|
peers?: {
|
|
4629
|
-
|
|
4870
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4871
|
+
height: string;
|
|
4872
|
+
width: string;
|
|
4873
|
+
borderRadius: string;
|
|
4874
|
+
color: string;
|
|
4875
|
+
colorHover: string;
|
|
4876
|
+
railInsetHorizontalBottom: string;
|
|
4877
|
+
railInsetHorizontalTop: string;
|
|
4878
|
+
railInsetVerticalRight: string;
|
|
4879
|
+
railInsetVerticalLeft: string;
|
|
4880
|
+
railColor: string;
|
|
4881
|
+
}, any>> | undefined;
|
|
4630
4882
|
} | undefined;
|
|
4631
4883
|
} | undefined;
|
|
4632
4884
|
};
|
|
@@ -4641,18 +4893,18 @@ declare const _default: import('vue').DefineComponent<CTagsProps, {}, {}, {}, {}
|
|
|
4641
4893
|
namespace: import('vue').ComputedRef<string | undefined>;
|
|
4642
4894
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
4643
4895
|
}, {}, {}, {}, {
|
|
4644
|
-
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
4645
|
-
readonly to: string | boolean | HTMLElement;
|
|
4646
4896
|
readonly disabled: boolean | undefined;
|
|
4647
|
-
readonly loading: boolean;
|
|
4648
4897
|
readonly bordered: boolean | undefined;
|
|
4649
|
-
readonly
|
|
4898
|
+
readonly to: string | boolean | HTMLElement;
|
|
4899
|
+
readonly append: boolean;
|
|
4650
4900
|
readonly clearable: boolean;
|
|
4651
4901
|
readonly defaultValue: string | null;
|
|
4652
|
-
readonly
|
|
4902
|
+
readonly loading: boolean;
|
|
4903
|
+
readonly placement: import('naive-ui').PopoverPlacement;
|
|
4653
4904
|
readonly blurAfterSelect: boolean;
|
|
4654
4905
|
readonly clearAfterSelect: boolean;
|
|
4655
4906
|
readonly showEmpty: boolean;
|
|
4907
|
+
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
4656
4908
|
}> | null;
|
|
4657
4909
|
}, HTMLDivElement>;
|
|
4658
4910
|
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { CanvasRetrieve } from '../../../types/openapi';
|
|
2
|
+
interface Props {
|
|
3
|
+
items: CanvasRetrieve[];
|
|
4
|
+
maxItemsToShow?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
17
|
+
maxItemsToShow: number;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type Item = {
|
|
2
|
+
canvas: {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
tags?: string[];
|
|
6
|
+
};
|
|
7
|
+
id: string;
|
|
8
|
+
};
|
|
9
|
+
interface Props {
|
|
10
|
+
items: Item[];
|
|
11
|
+
maxItemsToRender?: number;
|
|
12
|
+
title?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
15
|
+
view: (item: Item, newTab?: boolean | undefined) => any;
|
|
16
|
+
delete: (item: Item) => any;
|
|
17
|
+
setHome: (item: Item) => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
19
|
+
onView?: ((item: Item, newTab?: boolean | undefined) => any) | undefined;
|
|
20
|
+
onDelete?: ((item: Item) => any) | undefined;
|
|
21
|
+
onSetHome?: ((item: Item) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
items: Item[];
|
|
24
|
+
maxItemsToRender: number;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
export default _default;
|
|
@@ -143,9 +143,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
143
143
|
}>> & Readonly<{}>, FormInst & {
|
|
144
144
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
145
145
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
146
|
-
readonly inline: boolean;
|
|
147
146
|
readonly disabled: boolean;
|
|
148
147
|
readonly onSubmit: (e: Event) => void;
|
|
148
|
+
readonly inline: boolean;
|
|
149
149
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
150
150
|
readonly model: Record<string, any>;
|
|
151
151
|
readonly showRequireMark: boolean | undefined;
|
|
@@ -290,9 +290,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
290
290
|
}>> & Readonly<{}>, FormInst & {
|
|
291
291
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
292
292
|
}, {}, {}, {}, {
|
|
293
|
-
readonly inline: boolean;
|
|
294
293
|
readonly disabled: boolean;
|
|
295
294
|
readonly onSubmit: (e: Event) => void;
|
|
295
|
+
readonly inline: boolean;
|
|
296
296
|
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
297
297
|
readonly model: Record<string, any>;
|
|
298
298
|
readonly showRequireMark: boolean | undefined;
|