@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
|
@@ -3,7 +3,7 @@ import { ColumnDef, PaginationState, SortingState } from '@tanstack/table-core';
|
|
|
3
3
|
import { PaginatedData } from '../../types/paginatedData';
|
|
4
4
|
import { GetCanvasesParams } from '../../types/canvases';
|
|
5
5
|
import { SharingHandler } from './CSavedCanvasesManagementShareCanvas.use';
|
|
6
|
-
import { CanvasRetrieve, CanvasCreateRequest, PatchedCanvasUpdateRequest, User
|
|
6
|
+
import { CanvasRetrieve, CanvasCreateRequest, PatchedCanvasUpdateRequest, User } from '../../../types/openapi';
|
|
7
7
|
type __VLS_Props = {
|
|
8
8
|
updater: (params: PatchedCanvasUpdateRequest & {
|
|
9
9
|
id: CanvasRetrieve['id'];
|
|
@@ -52,7 +52,7 @@ declare function __VLS_template(): {
|
|
|
52
52
|
metadataFilterValues: Record<string, any>;
|
|
53
53
|
tableColumnsSettings: import('../CTableColumnsSettings/CTableColumnsSettings.vue').TableColumnSetting[];
|
|
54
54
|
customFilterComponents: {
|
|
55
|
-
type: MetadataTemplateFieldTypeEnum;
|
|
55
|
+
type: import('../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
56
56
|
name: string;
|
|
57
57
|
label: string;
|
|
58
58
|
options?: [];
|
|
@@ -100,7 +100,7 @@ declare function __VLS_template(): {
|
|
|
100
100
|
metadataFilterValues: Record<string, any>;
|
|
101
101
|
tableColumnsSettings: import('../CTableColumnsSettings/CTableColumnsSettings.vue').TableColumnSetting[];
|
|
102
102
|
customFilterComponents: {
|
|
103
|
-
type: MetadataTemplateFieldTypeEnum;
|
|
103
|
+
type: import('../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
104
104
|
name: string;
|
|
105
105
|
label: string;
|
|
106
106
|
options?: [];
|
|
@@ -195,6 +195,7 @@ declare function __VLS_template(): {
|
|
|
195
195
|
disabledIds: Array<string | number>;
|
|
196
196
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
197
197
|
tableScroller: HTMLDivElement;
|
|
198
|
+
tableElement: HTMLTableElement;
|
|
198
199
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
199
200
|
P: {};
|
|
200
201
|
B: {};
|
|
@@ -333,6 +334,7 @@ declare function __VLS_template(): {
|
|
|
333
334
|
disabledIds: Array<string | number>;
|
|
334
335
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
335
336
|
tableScroller: HTMLDivElement;
|
|
337
|
+
tableElement: HTMLTableElement;
|
|
336
338
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
337
339
|
P: {};
|
|
338
340
|
B: {};
|
|
@@ -403,16 +405,16 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
403
405
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
404
406
|
edit: (canvas: CanvasRetrieve) => any;
|
|
405
407
|
open: (canvas: CanvasRetrieve, newTab?: boolean | undefined) => any;
|
|
406
|
-
create: () => any;
|
|
407
408
|
share: (canvas: CanvasRetrieve) => any;
|
|
409
|
+
create: () => any;
|
|
408
410
|
createFromTemplate: (templateId: string) => any;
|
|
409
411
|
openTemplate: (canvasId: string, templateId: string) => any;
|
|
410
412
|
"account-search": (value: string) => any;
|
|
411
413
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
412
414
|
onEdit?: ((canvas: CanvasRetrieve) => any) | undefined;
|
|
413
415
|
onOpen?: ((canvas: CanvasRetrieve, newTab?: boolean | undefined) => any) | undefined;
|
|
414
|
-
onCreate?: (() => any) | undefined;
|
|
415
416
|
onShare?: ((canvas: CanvasRetrieve) => any) | undefined;
|
|
417
|
+
onCreate?: (() => any) | undefined;
|
|
416
418
|
onCreateFromTemplate?: ((templateId: string) => any) | undefined;
|
|
417
419
|
onOpenTemplate?: ((canvasId: string, templateId: string) => any) | undefined;
|
|
418
420
|
"onAccount-search"?: ((value: string) => any) | undefined;
|
|
@@ -422,7 +424,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
422
424
|
metadataFilterValues: Record<string, any>;
|
|
423
425
|
tableColumnsSettings: import('../CTableColumnsSettings/CTableColumnsSettings.vue').TableColumnSetting[];
|
|
424
426
|
customFilterComponents: {
|
|
425
|
-
type: MetadataTemplateFieldTypeEnum;
|
|
427
|
+
type: import('../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
426
428
|
name: string;
|
|
427
429
|
label: string;
|
|
428
430
|
options?: [];
|
|
@@ -470,7 +472,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
470
472
|
metadataFilterValues: Record<string, any>;
|
|
471
473
|
tableColumnsSettings: import('../CTableColumnsSettings/CTableColumnsSettings.vue').TableColumnSetting[];
|
|
472
474
|
customFilterComponents: {
|
|
473
|
-
type: MetadataTemplateFieldTypeEnum;
|
|
475
|
+
type: import('../../../types/openapi').MetadataTemplateFieldTypeEnum;
|
|
474
476
|
name: string;
|
|
475
477
|
label: string;
|
|
476
478
|
options?: [];
|
|
@@ -565,6 +567,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
565
567
|
disabledIds: Array<string | number>;
|
|
566
568
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
567
569
|
tableScroller: HTMLDivElement;
|
|
570
|
+
tableElement: HTMLTableElement;
|
|
568
571
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
569
572
|
P: {};
|
|
570
573
|
B: {};
|
|
@@ -703,6 +706,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
703
706
|
disabledIds: Array<string | number>;
|
|
704
707
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
705
708
|
tableScroller: HTMLDivElement;
|
|
709
|
+
tableElement: HTMLTableElement;
|
|
706
710
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
707
711
|
P: {};
|
|
708
712
|
B: {};
|
|
@@ -24,8 +24,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
24
24
|
view: () => any;
|
|
25
25
|
delete: () => any;
|
|
26
26
|
edit: () => any;
|
|
27
|
-
duplicate: () => any;
|
|
28
27
|
share: () => any;
|
|
28
|
+
duplicate: () => any;
|
|
29
29
|
viewNewTab: () => any;
|
|
30
30
|
lock: () => any;
|
|
31
31
|
unlock: () => any;
|
|
@@ -40,8 +40,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
40
40
|
onView?: (() => any) | undefined;
|
|
41
41
|
onDelete?: (() => any) | undefined;
|
|
42
42
|
onEdit?: (() => any) | undefined;
|
|
43
|
-
onDuplicate?: (() => any) | undefined;
|
|
44
43
|
onShare?: (() => any) | undefined;
|
|
44
|
+
onDuplicate?: (() => any) | undefined;
|
|
45
45
|
onViewNewTab?: (() => any) | undefined;
|
|
46
46
|
onLock?: (() => any) | undefined;
|
|
47
47
|
onUnlock?: (() => any) | undefined;
|
|
@@ -222,7 +222,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
222
222
|
arrowOffsetVertical: string;
|
|
223
223
|
arrowHeight: string;
|
|
224
224
|
padding: string;
|
|
225
|
-
},
|
|
225
|
+
}, {
|
|
226
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
227
|
+
height: string;
|
|
228
|
+
width: string;
|
|
229
|
+
borderRadius: string;
|
|
230
|
+
color: string;
|
|
231
|
+
colorHover: string;
|
|
232
|
+
railInsetHorizontalBottom: string;
|
|
233
|
+
railInsetHorizontalTop: string;
|
|
234
|
+
railInsetVerticalRight: string;
|
|
235
|
+
railInsetVerticalLeft: string;
|
|
236
|
+
railColor: string;
|
|
237
|
+
}, any>;
|
|
238
|
+
}>;
|
|
226
239
|
}>;
|
|
227
240
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
228
241
|
optionFontSizeTiny: string;
|
|
@@ -363,7 +376,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
363
376
|
arrowOffsetVertical: string;
|
|
364
377
|
arrowHeight: string;
|
|
365
378
|
padding: string;
|
|
366
|
-
},
|
|
379
|
+
}, {
|
|
380
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
381
|
+
height: string;
|
|
382
|
+
width: string;
|
|
383
|
+
borderRadius: string;
|
|
384
|
+
color: string;
|
|
385
|
+
colorHover: string;
|
|
386
|
+
railInsetHorizontalBottom: string;
|
|
387
|
+
railInsetHorizontalTop: string;
|
|
388
|
+
railInsetVerticalRight: string;
|
|
389
|
+
railInsetVerticalLeft: string;
|
|
390
|
+
railColor: string;
|
|
391
|
+
}, any>;
|
|
392
|
+
}>;
|
|
367
393
|
}>;
|
|
368
394
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
369
395
|
optionFontSizeTiny: string;
|
|
@@ -504,7 +530,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
504
530
|
arrowOffsetVertical: string;
|
|
505
531
|
arrowHeight: string;
|
|
506
532
|
padding: string;
|
|
507
|
-
},
|
|
533
|
+
}, {
|
|
534
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
535
|
+
height: string;
|
|
536
|
+
width: string;
|
|
537
|
+
borderRadius: string;
|
|
538
|
+
color: string;
|
|
539
|
+
colorHover: string;
|
|
540
|
+
railInsetHorizontalBottom: string;
|
|
541
|
+
railInsetHorizontalTop: string;
|
|
542
|
+
railInsetVerticalRight: string;
|
|
543
|
+
railInsetVerticalLeft: string;
|
|
544
|
+
railColor: string;
|
|
545
|
+
}, any>;
|
|
546
|
+
}>;
|
|
508
547
|
}>;
|
|
509
548
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
510
549
|
optionFontSizeTiny: string;
|
|
@@ -616,7 +655,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
616
655
|
uncontrolledShow: import('vue').Ref<boolean, boolean>;
|
|
617
656
|
mergedShow: import('vue').ComputedRef<boolean>;
|
|
618
657
|
adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
|
|
619
|
-
uncontrolledValue: import('vue').Ref<
|
|
658
|
+
uncontrolledValue: import('vue').Ref<import('naive-ui/es/select/src/interface').ValueAtom | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null, string | number | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null>;
|
|
620
659
|
mergedValue: import('vue').ComputedRef<string | number | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null>;
|
|
621
660
|
followerRef: import('vue').Ref<{
|
|
622
661
|
syncPosition: () => void;
|
|
@@ -626,7 +665,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
626
665
|
localizedPlaceholder: import('vue').ComputedRef<string>;
|
|
627
666
|
selectedOption: import('vue').ComputedRef<SelectOption | null>;
|
|
628
667
|
selectedOptions: import('vue').ComputedRef<SelectOption[] | null>;
|
|
629
|
-
mergedSize: import('vue').ComputedRef<"
|
|
668
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
630
669
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
631
670
|
focused: import('vue').Ref<boolean, boolean>;
|
|
632
671
|
activeWithoutMenuOpen: import('vue').Ref<boolean, boolean>;
|
|
@@ -724,7 +763,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
724
763
|
arrowOffsetVertical: string;
|
|
725
764
|
arrowHeight: string;
|
|
726
765
|
padding: string;
|
|
727
|
-
},
|
|
766
|
+
}, {
|
|
767
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
768
|
+
height: string;
|
|
769
|
+
width: string;
|
|
770
|
+
borderRadius: string;
|
|
771
|
+
color: string;
|
|
772
|
+
colorHover: string;
|
|
773
|
+
railInsetHorizontalBottom: string;
|
|
774
|
+
railInsetHorizontalTop: string;
|
|
775
|
+
railInsetVerticalRight: string;
|
|
776
|
+
railInsetVerticalLeft: string;
|
|
777
|
+
railColor: string;
|
|
778
|
+
}, any>;
|
|
779
|
+
}>;
|
|
728
780
|
}>;
|
|
729
781
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
730
782
|
optionFontSizeTiny: string;
|
|
@@ -810,7 +862,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
810
862
|
arrowOffsetVertical: string;
|
|
811
863
|
arrowHeight: string;
|
|
812
864
|
padding: string;
|
|
813
|
-
},
|
|
865
|
+
}, {
|
|
866
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
867
|
+
height: string;
|
|
868
|
+
width: string;
|
|
869
|
+
borderRadius: string;
|
|
870
|
+
color: string;
|
|
871
|
+
colorHover: string;
|
|
872
|
+
railInsetHorizontalBottom: string;
|
|
873
|
+
railInsetHorizontalTop: string;
|
|
874
|
+
railInsetVerticalRight: string;
|
|
875
|
+
railInsetVerticalLeft: string;
|
|
876
|
+
railColor: string;
|
|
877
|
+
}, any>;
|
|
878
|
+
}>> | undefined;
|
|
814
879
|
} | undefined;
|
|
815
880
|
} | undefined;
|
|
816
881
|
InternalSelectMenu?: {
|
|
@@ -856,34 +921,34 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
856
921
|
focusInput: () => void;
|
|
857
922
|
blurInput: () => void;
|
|
858
923
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
859
|
-
readonly options: import('naive-ui/es/select/src/interface').SelectMixedOption[];
|
|
860
|
-
readonly tag: boolean;
|
|
861
|
-
readonly to: string | boolean | HTMLElement;
|
|
862
924
|
readonly disabled: boolean | undefined;
|
|
863
|
-
readonly show: boolean | undefined;
|
|
864
|
-
readonly multiple: boolean;
|
|
865
|
-
readonly loading: boolean;
|
|
866
925
|
readonly bordered: boolean | undefined;
|
|
926
|
+
readonly to: string | boolean | HTMLElement;
|
|
927
|
+
readonly clearable: boolean;
|
|
928
|
+
readonly defaultValue: import('naive-ui/es/select/src/interface').Value | null;
|
|
929
|
+
readonly loading: boolean;
|
|
867
930
|
readonly placement: import('naive-ui').PopoverPlacement;
|
|
868
|
-
readonly
|
|
869
|
-
readonly
|
|
870
|
-
readonly
|
|
871
|
-
readonly
|
|
872
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
931
|
+
readonly options: import('naive-ui/es/select/src/interface').SelectMixedOption[];
|
|
932
|
+
readonly show: boolean | undefined;
|
|
933
|
+
readonly keyboard: boolean;
|
|
934
|
+
readonly tag: boolean;
|
|
873
935
|
readonly showArrow: boolean;
|
|
874
936
|
readonly displayDirective: "show" | "if";
|
|
937
|
+
readonly multiple: boolean;
|
|
875
938
|
readonly filterable: boolean;
|
|
876
|
-
readonly clearable: boolean;
|
|
877
|
-
readonly ignoreComposition: boolean;
|
|
878
939
|
readonly clearFilterAfterSelect: boolean;
|
|
879
|
-
readonly defaultValue: import('naive-ui/es/select/src/interface').Value | null;
|
|
880
|
-
readonly keyboard: boolean;
|
|
881
940
|
readonly remote: boolean;
|
|
941
|
+
readonly virtualScroll: boolean;
|
|
942
|
+
readonly valueField: string;
|
|
943
|
+
readonly labelField: string;
|
|
944
|
+
readonly childrenField: string;
|
|
882
945
|
readonly widthMode: string;
|
|
883
946
|
readonly fallbackOption: false | import('naive-ui/es/select/src/interface').SelectFallbackOption | undefined;
|
|
884
947
|
readonly consistentMenuWidth: boolean;
|
|
885
|
-
readonly
|
|
948
|
+
readonly ignoreComposition: boolean;
|
|
886
949
|
readonly showOnFocus: boolean;
|
|
950
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
951
|
+
readonly showCheckmark: boolean;
|
|
887
952
|
}, true, {}, import('vue').SlotsType<import('naive-ui').SelectSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
888
953
|
P: {};
|
|
889
954
|
B: {};
|
|
@@ -1082,7 +1147,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1082
1147
|
arrowOffsetVertical: string;
|
|
1083
1148
|
arrowHeight: string;
|
|
1084
1149
|
padding: string;
|
|
1085
|
-
},
|
|
1150
|
+
}, {
|
|
1151
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1152
|
+
height: string;
|
|
1153
|
+
width: string;
|
|
1154
|
+
borderRadius: string;
|
|
1155
|
+
color: string;
|
|
1156
|
+
colorHover: string;
|
|
1157
|
+
railInsetHorizontalBottom: string;
|
|
1158
|
+
railInsetHorizontalTop: string;
|
|
1159
|
+
railInsetVerticalRight: string;
|
|
1160
|
+
railInsetVerticalLeft: string;
|
|
1161
|
+
railColor: string;
|
|
1162
|
+
}, any>;
|
|
1163
|
+
}>;
|
|
1086
1164
|
}>;
|
|
1087
1165
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1088
1166
|
optionFontSizeTiny: string;
|
|
@@ -1223,7 +1301,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1223
1301
|
arrowOffsetVertical: string;
|
|
1224
1302
|
arrowHeight: string;
|
|
1225
1303
|
padding: string;
|
|
1226
|
-
},
|
|
1304
|
+
}, {
|
|
1305
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1306
|
+
height: string;
|
|
1307
|
+
width: string;
|
|
1308
|
+
borderRadius: string;
|
|
1309
|
+
color: string;
|
|
1310
|
+
colorHover: string;
|
|
1311
|
+
railInsetHorizontalBottom: string;
|
|
1312
|
+
railInsetHorizontalTop: string;
|
|
1313
|
+
railInsetVerticalRight: string;
|
|
1314
|
+
railInsetVerticalLeft: string;
|
|
1315
|
+
railColor: string;
|
|
1316
|
+
}, any>;
|
|
1317
|
+
}>;
|
|
1227
1318
|
}>;
|
|
1228
1319
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1229
1320
|
optionFontSizeTiny: string;
|
|
@@ -1364,7 +1455,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1364
1455
|
arrowOffsetVertical: string;
|
|
1365
1456
|
arrowHeight: string;
|
|
1366
1457
|
padding: string;
|
|
1367
|
-
},
|
|
1458
|
+
}, {
|
|
1459
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1460
|
+
height: string;
|
|
1461
|
+
width: string;
|
|
1462
|
+
borderRadius: string;
|
|
1463
|
+
color: string;
|
|
1464
|
+
colorHover: string;
|
|
1465
|
+
railInsetHorizontalBottom: string;
|
|
1466
|
+
railInsetHorizontalTop: string;
|
|
1467
|
+
railInsetVerticalRight: string;
|
|
1468
|
+
railInsetVerticalLeft: string;
|
|
1469
|
+
railColor: string;
|
|
1470
|
+
}, any>;
|
|
1471
|
+
}>;
|
|
1368
1472
|
}>;
|
|
1369
1473
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1370
1474
|
optionFontSizeTiny: string;
|
|
@@ -1476,7 +1580,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1476
1580
|
uncontrolledShow: import('vue').Ref<boolean, boolean>;
|
|
1477
1581
|
mergedShow: import('vue').ComputedRef<boolean>;
|
|
1478
1582
|
adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
|
|
1479
|
-
uncontrolledValue: import('vue').Ref<
|
|
1583
|
+
uncontrolledValue: import('vue').Ref<import('naive-ui/es/select/src/interface').ValueAtom | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null, string | number | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null>;
|
|
1480
1584
|
mergedValue: import('vue').ComputedRef<string | number | string[] | number[] | import('naive-ui/es/select/src/interface').ValueAtom[] | import('naive-ui/es/select/src/interface').ValueAtom[] | null>;
|
|
1481
1585
|
followerRef: import('vue').Ref<{
|
|
1482
1586
|
syncPosition: () => void;
|
|
@@ -1486,7 +1590,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1486
1590
|
localizedPlaceholder: import('vue').ComputedRef<string>;
|
|
1487
1591
|
selectedOption: import('vue').ComputedRef<SelectOption | null>;
|
|
1488
1592
|
selectedOptions: import('vue').ComputedRef<SelectOption[] | null>;
|
|
1489
|
-
mergedSize: import('vue').ComputedRef<"
|
|
1593
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1490
1594
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1491
1595
|
focused: import('vue').Ref<boolean, boolean>;
|
|
1492
1596
|
activeWithoutMenuOpen: import('vue').Ref<boolean, boolean>;
|
|
@@ -1584,7 +1688,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1584
1688
|
arrowOffsetVertical: string;
|
|
1585
1689
|
arrowHeight: string;
|
|
1586
1690
|
padding: string;
|
|
1587
|
-
},
|
|
1691
|
+
}, {
|
|
1692
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1693
|
+
height: string;
|
|
1694
|
+
width: string;
|
|
1695
|
+
borderRadius: string;
|
|
1696
|
+
color: string;
|
|
1697
|
+
colorHover: string;
|
|
1698
|
+
railInsetHorizontalBottom: string;
|
|
1699
|
+
railInsetHorizontalTop: string;
|
|
1700
|
+
railInsetVerticalRight: string;
|
|
1701
|
+
railInsetVerticalLeft: string;
|
|
1702
|
+
railColor: string;
|
|
1703
|
+
}, any>;
|
|
1704
|
+
}>;
|
|
1588
1705
|
}>;
|
|
1589
1706
|
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1590
1707
|
optionFontSizeTiny: string;
|
|
@@ -1670,7 +1787,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1670
1787
|
arrowOffsetVertical: string;
|
|
1671
1788
|
arrowHeight: string;
|
|
1672
1789
|
padding: string;
|
|
1673
|
-
},
|
|
1790
|
+
}, {
|
|
1791
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1792
|
+
height: string;
|
|
1793
|
+
width: string;
|
|
1794
|
+
borderRadius: string;
|
|
1795
|
+
color: string;
|
|
1796
|
+
colorHover: string;
|
|
1797
|
+
railInsetHorizontalBottom: string;
|
|
1798
|
+
railInsetHorizontalTop: string;
|
|
1799
|
+
railInsetVerticalRight: string;
|
|
1800
|
+
railInsetVerticalLeft: string;
|
|
1801
|
+
railColor: string;
|
|
1802
|
+
}, any>;
|
|
1803
|
+
}>> | undefined;
|
|
1674
1804
|
} | undefined;
|
|
1675
1805
|
} | undefined;
|
|
1676
1806
|
InternalSelectMenu?: {
|
|
@@ -1716,34 +1846,34 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1716
1846
|
focusInput: () => void;
|
|
1717
1847
|
blurInput: () => void;
|
|
1718
1848
|
}, {}, {}, {}, {
|
|
1719
|
-
readonly options: import('naive-ui/es/select/src/interface').SelectMixedOption[];
|
|
1720
|
-
readonly tag: boolean;
|
|
1721
|
-
readonly to: string | boolean | HTMLElement;
|
|
1722
1849
|
readonly disabled: boolean | undefined;
|
|
1723
|
-
readonly show: boolean | undefined;
|
|
1724
|
-
readonly multiple: boolean;
|
|
1725
|
-
readonly loading: boolean;
|
|
1726
1850
|
readonly bordered: boolean | undefined;
|
|
1851
|
+
readonly to: string | boolean | HTMLElement;
|
|
1852
|
+
readonly clearable: boolean;
|
|
1853
|
+
readonly defaultValue: import('naive-ui/es/select/src/interface').Value | null;
|
|
1854
|
+
readonly loading: boolean;
|
|
1727
1855
|
readonly placement: import('naive-ui').PopoverPlacement;
|
|
1728
|
-
readonly
|
|
1729
|
-
readonly
|
|
1730
|
-
readonly
|
|
1731
|
-
readonly
|
|
1732
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
1856
|
+
readonly options: import('naive-ui/es/select/src/interface').SelectMixedOption[];
|
|
1857
|
+
readonly show: boolean | undefined;
|
|
1858
|
+
readonly keyboard: boolean;
|
|
1859
|
+
readonly tag: boolean;
|
|
1733
1860
|
readonly showArrow: boolean;
|
|
1734
1861
|
readonly displayDirective: "show" | "if";
|
|
1862
|
+
readonly multiple: boolean;
|
|
1735
1863
|
readonly filterable: boolean;
|
|
1736
|
-
readonly clearable: boolean;
|
|
1737
|
-
readonly ignoreComposition: boolean;
|
|
1738
1864
|
readonly clearFilterAfterSelect: boolean;
|
|
1739
|
-
readonly defaultValue: import('naive-ui/es/select/src/interface').Value | null;
|
|
1740
|
-
readonly keyboard: boolean;
|
|
1741
1865
|
readonly remote: boolean;
|
|
1866
|
+
readonly virtualScroll: boolean;
|
|
1867
|
+
readonly valueField: string;
|
|
1868
|
+
readonly labelField: string;
|
|
1869
|
+
readonly childrenField: string;
|
|
1742
1870
|
readonly widthMode: string;
|
|
1743
1871
|
readonly fallbackOption: false | import('naive-ui/es/select/src/interface').SelectFallbackOption | undefined;
|
|
1744
1872
|
readonly consistentMenuWidth: boolean;
|
|
1745
|
-
readonly
|
|
1873
|
+
readonly ignoreComposition: boolean;
|
|
1746
1874
|
readonly showOnFocus: boolean;
|
|
1875
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
1876
|
+
readonly showCheckmark: boolean;
|
|
1747
1877
|
}> | null;
|
|
1748
1878
|
}, HTMLDivElement>;
|
|
1749
1879
|
export default _default;
|
|
@@ -8,5 +8,7 @@ declare const _default: (sharingHandler: SharingHandler, options?: {
|
|
|
8
8
|
copied: boolean;
|
|
9
9
|
url: string;
|
|
10
10
|
}>;
|
|
11
|
+
share: (canvas: CanvasRetrieve | Canvas) => Promise<string>;
|
|
12
|
+
emitShareEvent: (canvas: CanvasRetrieve | Canvas) => void;
|
|
11
13
|
};
|
|
12
14
|
export default _default;
|
|
@@ -58,7 +58,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
58
58
|
readonly id: string;
|
|
59
59
|
name: string;
|
|
60
60
|
content?: Record<string, any> | undefined;
|
|
61
|
-
context?:
|
|
61
|
+
context?: any;
|
|
62
62
|
indicators?: (Record<string, any> | null) | undefined;
|
|
63
63
|
theme?: (Record<string, any> | null) | undefined;
|
|
64
64
|
is_draft?: boolean | undefined;
|
|
@@ -67,7 +67,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
67
67
|
is_block?: boolean | undefined;
|
|
68
68
|
is_editable?: boolean | undefined;
|
|
69
69
|
is_default?: boolean | undefined;
|
|
70
|
-
metadata?:
|
|
70
|
+
metadata?: any;
|
|
71
71
|
tags?: Array<string> | undefined;
|
|
72
72
|
start_at?: string | null | undefined;
|
|
73
73
|
expires_at?: string | null | undefined;
|
|
@@ -84,13 +84,14 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
84
84
|
content: Record<string, any>;
|
|
85
85
|
theme?: (Record<string, any> | null) | undefined;
|
|
86
86
|
metadata?: Record<string, any> | undefined;
|
|
87
|
+
is_draft: boolean;
|
|
87
88
|
}[];
|
|
88
89
|
readonly shared_link: {
|
|
89
90
|
readonly url: string;
|
|
90
91
|
short_url?: string | null | undefined;
|
|
91
92
|
};
|
|
92
93
|
account?: {
|
|
93
|
-
id
|
|
94
|
+
id?: string | undefined;
|
|
94
95
|
name?: string | undefined;
|
|
95
96
|
} | null | undefined;
|
|
96
97
|
readonly events: {
|
|
@@ -140,7 +141,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
140
141
|
readonly id: string;
|
|
141
142
|
name: string;
|
|
142
143
|
content?: Record<string, any> | undefined;
|
|
143
|
-
context?:
|
|
144
|
+
context?: any;
|
|
144
145
|
indicators?: (Record<string, any> | null) | undefined;
|
|
145
146
|
theme?: (Record<string, any> | null) | undefined;
|
|
146
147
|
is_draft?: boolean | undefined;
|
|
@@ -149,7 +150,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
149
150
|
is_block?: boolean | undefined;
|
|
150
151
|
is_editable?: boolean | undefined;
|
|
151
152
|
is_default?: boolean | undefined;
|
|
152
|
-
metadata?:
|
|
153
|
+
metadata?: any;
|
|
153
154
|
tags?: Array<string> | undefined;
|
|
154
155
|
start_at?: string | null | undefined;
|
|
155
156
|
expires_at?: string | null | undefined;
|
|
@@ -166,13 +167,14 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
166
167
|
content: Record<string, any>;
|
|
167
168
|
theme?: (Record<string, any> | null) | undefined;
|
|
168
169
|
metadata?: Record<string, any> | undefined;
|
|
170
|
+
is_draft: boolean;
|
|
169
171
|
}[];
|
|
170
172
|
readonly shared_link: {
|
|
171
173
|
readonly url: string;
|
|
172
174
|
short_url?: string | null | undefined;
|
|
173
175
|
};
|
|
174
176
|
account?: {
|
|
175
|
-
id
|
|
177
|
+
id?: string | undefined;
|
|
176
178
|
name?: string | undefined;
|
|
177
179
|
} | null | undefined;
|
|
178
180
|
readonly events: {
|
|
@@ -202,7 +204,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
202
204
|
readonly id: string;
|
|
203
205
|
name: string;
|
|
204
206
|
content?: Record<string, any> | undefined;
|
|
205
|
-
context?:
|
|
207
|
+
context?: any;
|
|
206
208
|
indicators?: (Record<string, any> | null) | undefined;
|
|
207
209
|
theme?: (Record<string, any> | null) | undefined;
|
|
208
210
|
is_draft?: boolean | undefined;
|
|
@@ -211,7 +213,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
211
213
|
is_block?: boolean | undefined;
|
|
212
214
|
is_editable?: boolean | undefined;
|
|
213
215
|
is_default?: boolean | undefined;
|
|
214
|
-
metadata?:
|
|
216
|
+
metadata?: any;
|
|
215
217
|
tags?: Array<string> | undefined;
|
|
216
218
|
start_at?: string | null | undefined;
|
|
217
219
|
expires_at?: string | null | undefined;
|
|
@@ -228,13 +230,14 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
228
230
|
content: Record<string, any>;
|
|
229
231
|
theme?: (Record<string, any> | null) | undefined;
|
|
230
232
|
metadata?: Record<string, any> | undefined;
|
|
233
|
+
is_draft: boolean;
|
|
231
234
|
}[];
|
|
232
235
|
readonly shared_link: {
|
|
233
236
|
readonly url: string;
|
|
234
237
|
short_url?: string | null | undefined;
|
|
235
238
|
};
|
|
236
239
|
account?: {
|
|
237
|
-
id
|
|
240
|
+
id?: string | undefined;
|
|
238
241
|
name?: string | undefined;
|
|
239
242
|
} | null | undefined;
|
|
240
243
|
readonly events: {
|
|
@@ -265,7 +268,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
265
268
|
readonly id: string;
|
|
266
269
|
name: string;
|
|
267
270
|
content?: Record<string, any> | undefined;
|
|
268
|
-
context?:
|
|
271
|
+
context?: any;
|
|
269
272
|
indicators?: (Record<string, any> | null) | undefined;
|
|
270
273
|
theme?: (Record<string, any> | null) | undefined;
|
|
271
274
|
is_draft?: boolean | undefined;
|
|
@@ -274,7 +277,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
274
277
|
is_block?: boolean | undefined;
|
|
275
278
|
is_editable?: boolean | undefined;
|
|
276
279
|
is_default?: boolean | undefined;
|
|
277
|
-
metadata?:
|
|
280
|
+
metadata?: any;
|
|
278
281
|
tags?: Array<string> | undefined;
|
|
279
282
|
start_at?: string | null | undefined;
|
|
280
283
|
expires_at?: string | null | undefined;
|
|
@@ -291,13 +294,14 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
291
294
|
content: Record<string, any>;
|
|
292
295
|
theme?: (Record<string, any> | null) | undefined;
|
|
293
296
|
metadata?: Record<string, any> | undefined;
|
|
297
|
+
is_draft: boolean;
|
|
294
298
|
}[];
|
|
295
299
|
readonly shared_link: {
|
|
296
300
|
readonly url: string;
|
|
297
301
|
short_url?: string | null | undefined;
|
|
298
302
|
};
|
|
299
303
|
account?: {
|
|
300
|
-
id
|
|
304
|
+
id?: string | undefined;
|
|
301
305
|
name?: string | undefined;
|
|
302
306
|
} | null | undefined;
|
|
303
307
|
readonly events: {
|
|
@@ -74,6 +74,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
74
74
|
disabledIds: Array<string | number>;
|
|
75
75
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
76
76
|
tableScroller: HTMLDivElement;
|
|
77
|
+
tableElement: HTMLTableElement;
|
|
77
78
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
78
79
|
P: {};
|
|
79
80
|
B: {};
|