@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/impact-js-api.spec.json +15 -0
- package/js-api.esm.js +440 -12
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +148 -36
- package/lib/apps/assets-manager/App.vue.d.ts +75 -0
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +22 -0
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +16 -0
- package/lib/apps/browser/App.vue.d.ts +3 -1
- package/lib/apps/browser/appTypes.d.ts +4 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +15 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +11 -7
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +5 -1
- package/lib/apps/browser/stores/api.d.ts +51 -12
- package/lib/apps/browser/stores/app.d.ts +3 -0
- package/lib/apps/browser/stores/upload.d.ts +16 -20
- package/lib/apps/browser/types/actionKeys.d.ts +22 -0
- package/lib/apps/canvas-builder/App.vue.d.ts +317 -261
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +148 -36
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +60 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +21 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/{EditableComponentRevamp.vue.d.ts → EditableComponentContent.vue.d.ts} +15 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +162 -37
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +20 -20
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +30 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +76 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +11 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +32 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +87 -8
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +13 -9
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +23 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +11 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +6 -2
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +154 -0
- package/lib/apps/canvas-builder/composables/useAnnotation.d.ts +29 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +1815 -286
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +192 -18
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +4 -2
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +184 -4
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +9 -9
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +21 -4
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useControlBarCollapse.d.ts +8 -0
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -2
- package/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -6
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -4
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -4
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +98 -0
- package/lib/apps/canvas-builder/composables/useScribbleToolbar.d.ts +11 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useTemporaryContext.d.ts +14 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +34 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +71 -2
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +5 -4
- package/lib/apps/canvas-builder/util/iframe.util.d.ts +16 -0
- package/lib/apps/canvas-builder/util/print.util.d.ts +22 -0
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +171 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +160 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +28 -28
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +5 -1
- package/lib/apps/collection-player/stores/app.store.d.ts +3 -0
- package/lib/apps/collection-player/types/collection-player.type.d.ts +17 -0
- package/lib/apps/collection-selector/App.vue.d.ts +7 -7
- package/lib/apps/collection-selector/stores/app.store.d.ts +4 -2
- package/lib/apps/collection-selector/utils/content-selector-adapter.util.d.ts +16 -7
- package/lib/apps/collection-selector/utils/data.util.d.ts +4 -4
- package/lib/apps/content-selector/App.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets.vue.d.ts +2 -2
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +1 -0
- package/lib/apps/content-selector/components/Content.vue.d.ts +74 -1
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +12 -2
- package/lib/apps/content-selector/stores/app.d.ts +16 -1
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -1
- package/lib/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +1 -0
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +18 -0
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +2 -0
- package/lib/components/CCarousel/CCarousel.vue.d.ts +118 -20
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +9 -6
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +7 -5
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +7 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +56 -3
- package/lib/components/CContentError/CContentError.vue.d.ts +9 -0
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +3 -0
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +2 -2
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +10 -8
- package/lib/components/CDataTable/CDataTable.vue.d.ts +876 -100
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +6 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +5 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -5
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +3 -2
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +2 -6
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +11 -7
- package/lib/components/CImage/CImage.vue.d.ts +110 -20
- package/lib/components/CInput/CInput.vue.d.ts +148 -36
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +1 -1
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +2 -0
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +27 -0
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +14 -0
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +1 -1
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +19 -0
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +28 -0
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +290 -80
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +468 -130
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +288 -80
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +148 -36
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +19 -0
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +27 -1
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +11 -0
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +18 -0
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +14 -0
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +2 -7
- package/lib/components/CTable/CTable.vue.d.ts +6 -5
- package/lib/components/CTableInput/CTableInput.vue.d.ts +296 -72
- package/lib/components/CTableTag/CTableTag.vue.d.ts +290 -38
- package/lib/components/CTags/CTags.vue.d.ts +290 -38
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +25 -0
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +26 -0
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +2 -2
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +109 -30
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +440 -0
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +41 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +46 -60
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +13 -19
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +21 -17
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +2 -2
- package/lib/components/filters/CSearchFilter.vue.d.ts +3 -1
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +11 -7
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +176 -46
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +2 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +16 -12
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +1 -0
- package/lib/components/sections/CSectionManagement.vue.d.ts +26 -0
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +7 -0
- package/lib/components/themes/CThemeManagement.vue.d.ts +98 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +31 -3
- package/lib/composables/appsDb.use.d.ts +2 -2
- package/lib/composables/bulkActions.use.d.ts +2 -2
- package/lib/composables/useBroadcastRouteChange.d.ts +4 -0
- package/lib/composables/useCanvasStandardFilters.d.ts +35 -0
- package/lib/composables/useCollectionPlayerOverlay.d.ts +18 -0
- package/lib/composables/useDeleteUsedCanvasesConfirmation.d.ts +23 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +6 -2
- package/lib/composables/useFileInfo.d.ts +30 -0
- package/lib/composables/useFilterSuggestions.d.ts +8 -16
- package/lib/composables/useFolderNameDescription.d.ts +25 -0
- package/lib/composables/useLegacyCollectionFileLoader.d.ts +31 -0
- package/lib/composables/useMetadataSearch.d.ts +1 -0
- package/lib/composables/usePolling.d.ts +23 -0
- package/lib/composables/useWindowEvents.d.ts +1 -0
- package/lib/constants/cdp.const.d.ts +5 -0
- package/lib/constants/dimensions.const.d.ts +23 -0
- package/lib/constants/tables.const.d.ts +1 -1
- package/lib/custom-naive-locales/it.d.ts +124 -0
- package/lib/custom-naive-locales/ja.d.ts +124 -0
- package/lib/custom-naive-locales/nl.d.ts +124 -0
- package/lib/custom-naive-locales/pt-br.d.ts +124 -0
- package/lib/custom-naive-locales/pt.d.ts +124 -0
- package/lib/custom-naive-locales/th.d.ts +124 -0
- package/lib/custom-naive-locales/zh.d.ts +124 -0
- package/lib/directives/vTrustedHtml.d.ts +6 -0
- package/lib/main.lib.d.ts +26 -3
- package/lib/sdk/api/HighLevelApi.d.ts +31 -2
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +24 -1
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +13 -0
- package/lib/sdk/api/modules/dsr/files.dsr.d.ts +12 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +3 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +6 -1
- package/lib/sdk/api/modules/files.d.ts +12 -2
- package/lib/sdk/api/modules/query.d.ts +153 -1
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +35 -1
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +24 -0
- package/lib/sdk/api/modules/webView.d.ts +2 -1
- package/lib/sdk/interfaces.d.ts +61 -3
- package/lib/sdk/main.d.ts +63 -14
- package/lib/sdk/payload.types.d.ts +133 -0
- package/lib/sdk/peer-connectivity/index.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +13 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.types.d.ts +35 -0
- package/lib/stores/sectionSmartFolderStore.d.ts +2 -0
- package/lib/theme/light.d.ts +113 -8
- package/lib/types/app.d.ts +7 -0
- package/lib/types/canvases.d.ts +3 -0
- package/lib/types/files.d.ts +2 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +11 -1
- package/lib/types/launchDarkly.types.d.ts +2 -4
- package/lib/types/organizationMetadata.types.d.ts +3 -2
- package/lib/types/organizationSettings.types.d.ts +38 -3
- package/lib/types/sfdc.d.ts +1 -0
- package/lib/util/app.util.d.ts +46 -0
- package/lib/util/handlebars.d.ts +35 -0
- package/lib/util/soql.util.d.ts +2 -0
- package/lib/util/storage.util.d.ts +2 -0
- package/lib/util/string.d.ts +1 -1
- package/lib/util/toCssClassKey.d.ts +1 -0
- package/lib/utils/defaultThumbnail.util.d.ts +3 -0
- package/lib/utils/iframeInitialize.d.ts +12 -0
- package/npm-cache/_cacache/content-v2/sha512/3e/27/b4826de89487d07340c5facfb59a809827e65850e472a2d853f7f72dbfc2b4ce5b453253d8c1b11077f5dccb02ea418d8708e7f3f52f756f276b663740a3 +0 -0
- package/npm-cache/_cacache/content-v2/sha512/64/5a/421e053f6177ae9816e985e900126bd7808f16ec0cc5f58c3e082c79c37d1610e6d493c0b99e4d09224e84ad12bcefb46b8f4cabd04d0f397fa8a5b999e3 +0 -0
- package/npm-cache/_cacache/index-v5/ef/db/1a303888dee96dbf0872b6eb0b16af940d57c22846114d55ac441140c1a2 +3 -0
- package/npm-cache/_logs/2025-12-12T08_06_50_883Z-debug-0.log +1194 -0
- package/npm-cache/_logs/2025-12-12T08_20_34_296Z-debug-0.log +1218 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +7 -0
- package/types/openapi/models/Account.d.ts +1 -1
- package/types/openapi/models/AccountRequest.d.ts +1 -1
- package/types/openapi/models/Canvas.d.ts +1 -1
- package/types/openapi/models/CanvasCreate.d.ts +2 -2
- package/types/openapi/models/CanvasCreateRequest.d.ts +2 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +0 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +2 -2
- package/types/openapi/models/CanvasSection.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +2 -2
- package/types/openapi/models/CanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/ContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +1 -0
- package/types/openapi/models/DeletedCanvas.d.ts +1 -1
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +0 -2
- package/types/openapi/models/DeletedFolder.d.ts +4 -0
- package/types/openapi/models/DeletedInstance.d.ts +2 -0
- package/types/openapi/models/DeletedRegion.d.ts +12 -0
- package/types/openapi/models/FavoriteFolder.d.ts +3 -0
- package/types/openapi/models/FavoriteFolderRequest.d.ts +3 -0
- package/types/openapi/models/File.d.ts +0 -2
- package/types/openapi/models/FileCreate.d.ts +0 -2
- package/types/openapi/models/FileCreateRequest.d.ts +0 -1
- package/types/openapi/models/FileRetrieve.d.ts +0 -2
- package/types/openapi/models/FileUpdate.d.ts +0 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/Folder.d.ts +4 -0
- package/types/openapi/models/FolderCreate.d.ts +5 -1
- package/types/openapi/models/FolderFile.d.ts +2 -0
- package/types/openapi/models/FolderFolder.d.ts +5 -0
- package/types/openapi/models/FolderRetrieve.d.ts +9 -1
- package/types/openapi/models/FolderUpdate.d.ts +5 -1
- package/types/openapi/models/Instance.d.ts +2 -0
- package/types/openapi/models/InstanceMembership.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -2
- package/types/openapi/models/InstanceRequest.d.ts +1 -0
- package/types/openapi/models/InstanceUpdate.d.ts +2 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/OfflineSyncFolder.d.ts +1 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +2 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +2 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +7 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/Region.d.ts +10 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +1 -1
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +1 -1
- package/types/openapi/models/User.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -111
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbFavorite.pdf.use.d.ts +0 -10
- package/lib/components/CImage/CBrokenImage.vue.d.ts +0 -10
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +0 -59
- package/lib/directives/usage-track.directive.d.ts +0 -10
- package/lib/util/usage-tracking.util.d.ts +0 -5
- /package/lib/apps/canvas-builder/components/{ui/SectionList/SectionSearch.vue.d.ts → container/Search/Search.vue.d.ts} +0 -0
|
@@ -140,7 +140,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
140
140
|
paddingMedium: string;
|
|
141
141
|
paddingLarge: string;
|
|
142
142
|
clearSize: string;
|
|
143
|
-
},
|
|
143
|
+
}, {
|
|
144
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
145
|
+
height: string;
|
|
146
|
+
width: string;
|
|
147
|
+
borderRadius: string;
|
|
148
|
+
color: string;
|
|
149
|
+
colorHover: string;
|
|
150
|
+
railInsetHorizontalBottom: string;
|
|
151
|
+
railInsetHorizontalTop: string;
|
|
152
|
+
railInsetVerticalRight: string;
|
|
153
|
+
railInsetVerticalLeft: string;
|
|
154
|
+
railColor: string;
|
|
155
|
+
}, any>;
|
|
156
|
+
}>;
|
|
144
157
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
145
158
|
heightTiny: string;
|
|
146
159
|
heightSmall: string;
|
|
@@ -503,7 +516,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
503
516
|
paddingMedium: string;
|
|
504
517
|
paddingLarge: string;
|
|
505
518
|
clearSize: string;
|
|
506
|
-
},
|
|
519
|
+
}, {
|
|
520
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
521
|
+
height: string;
|
|
522
|
+
width: string;
|
|
523
|
+
borderRadius: string;
|
|
524
|
+
color: string;
|
|
525
|
+
colorHover: string;
|
|
526
|
+
railInsetHorizontalBottom: string;
|
|
527
|
+
railInsetHorizontalTop: string;
|
|
528
|
+
railInsetVerticalRight: string;
|
|
529
|
+
railInsetVerticalLeft: string;
|
|
530
|
+
railColor: string;
|
|
531
|
+
}, any>;
|
|
532
|
+
}>;
|
|
507
533
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
508
534
|
heightTiny: string;
|
|
509
535
|
heightSmall: string;
|
|
@@ -866,7 +892,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
866
892
|
paddingMedium: string;
|
|
867
893
|
paddingLarge: string;
|
|
868
894
|
clearSize: string;
|
|
869
|
-
},
|
|
895
|
+
}, {
|
|
896
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
897
|
+
height: string;
|
|
898
|
+
width: string;
|
|
899
|
+
borderRadius: string;
|
|
900
|
+
color: string;
|
|
901
|
+
colorHover: string;
|
|
902
|
+
railInsetHorizontalBottom: string;
|
|
903
|
+
railInsetHorizontalTop: string;
|
|
904
|
+
railInsetVerticalRight: string;
|
|
905
|
+
railInsetVerticalLeft: string;
|
|
906
|
+
railColor: string;
|
|
907
|
+
}, any>;
|
|
908
|
+
}>;
|
|
870
909
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
871
910
|
heightTiny: string;
|
|
872
911
|
heightSmall: string;
|
|
@@ -1205,7 +1244,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1205
1244
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1206
1245
|
} | null>;
|
|
1207
1246
|
localizedAdd: import('vue').ComputedRef<string>;
|
|
1208
|
-
inputSize: import('vue').ComputedRef<"
|
|
1247
|
+
inputSize: import('vue').ComputedRef<"tiny" | "small" | "medium">;
|
|
1209
1248
|
inputValue: import('vue').Ref<string, string>;
|
|
1210
1249
|
showInput: import('vue').Ref<boolean, boolean>;
|
|
1211
1250
|
inputForceFocused: import('vue').Ref<boolean, boolean>;
|
|
@@ -1287,7 +1326,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1287
1326
|
paddingMedium: string;
|
|
1288
1327
|
paddingLarge: string;
|
|
1289
1328
|
clearSize: string;
|
|
1290
|
-
},
|
|
1329
|
+
}, {
|
|
1330
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1331
|
+
height: string;
|
|
1332
|
+
width: string;
|
|
1333
|
+
borderRadius: string;
|
|
1334
|
+
color: string;
|
|
1335
|
+
colorHover: string;
|
|
1336
|
+
railInsetHorizontalBottom: string;
|
|
1337
|
+
railInsetHorizontalTop: string;
|
|
1338
|
+
railInsetVerticalRight: string;
|
|
1339
|
+
railInsetVerticalLeft: string;
|
|
1340
|
+
railColor: string;
|
|
1341
|
+
}, any>;
|
|
1342
|
+
}>;
|
|
1291
1343
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
1292
1344
|
heightTiny: string;
|
|
1293
1345
|
heightSmall: string;
|
|
@@ -1589,7 +1641,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1589
1641
|
peerOverrides: {
|
|
1590
1642
|
Input?: {
|
|
1591
1643
|
peers?: {
|
|
1592
|
-
|
|
1644
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1645
|
+
height: string;
|
|
1646
|
+
width: string;
|
|
1647
|
+
borderRadius: string;
|
|
1648
|
+
color: string;
|
|
1649
|
+
colorHover: string;
|
|
1650
|
+
railInsetHorizontalBottom: string;
|
|
1651
|
+
railInsetHorizontalTop: string;
|
|
1652
|
+
railInsetVerticalRight: string;
|
|
1653
|
+
railInsetVerticalLeft: string;
|
|
1654
|
+
railColor: string;
|
|
1655
|
+
}, any>> | undefined;
|
|
1593
1656
|
} | undefined;
|
|
1594
1657
|
} | undefined;
|
|
1595
1658
|
Button?: {
|
|
@@ -1615,12 +1678,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1615
1678
|
themeClass: import('vue').Ref<string, string> | undefined;
|
|
1616
1679
|
onRender: (() => void) | undefined;
|
|
1617
1680
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1618
|
-
type: "error" | "default" | "primary" | "info" | "success" | "warning";
|
|
1619
|
-
size: "small" | "medium" | "large";
|
|
1620
1681
|
disabled: boolean | undefined;
|
|
1621
|
-
|
|
1682
|
+
type: "default" | "info" | "warning" | "error" | "success" | "primary";
|
|
1683
|
+
size: "small" | "medium" | "large";
|
|
1622
1684
|
closable: boolean;
|
|
1623
1685
|
defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
|
|
1686
|
+
round: boolean;
|
|
1624
1687
|
onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
|
|
1625
1688
|
}, true, {}, import('vue').SlotsType<import('naive-ui').DynamicTagsSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1626
1689
|
P: {};
|
|
@@ -1731,7 +1794,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1731
1794
|
paddingMedium: string;
|
|
1732
1795
|
paddingLarge: string;
|
|
1733
1796
|
clearSize: string;
|
|
1734
|
-
},
|
|
1797
|
+
}, {
|
|
1798
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1799
|
+
height: string;
|
|
1800
|
+
width: string;
|
|
1801
|
+
borderRadius: string;
|
|
1802
|
+
color: string;
|
|
1803
|
+
colorHover: string;
|
|
1804
|
+
railInsetHorizontalBottom: string;
|
|
1805
|
+
railInsetHorizontalTop: string;
|
|
1806
|
+
railInsetVerticalRight: string;
|
|
1807
|
+
railInsetVerticalLeft: string;
|
|
1808
|
+
railColor: string;
|
|
1809
|
+
}, any>;
|
|
1810
|
+
}>;
|
|
1735
1811
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
1736
1812
|
heightTiny: string;
|
|
1737
1813
|
heightSmall: string;
|
|
@@ -2094,7 +2170,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
2094
2170
|
paddingMedium: string;
|
|
2095
2171
|
paddingLarge: string;
|
|
2096
2172
|
clearSize: string;
|
|
2097
|
-
},
|
|
2173
|
+
}, {
|
|
2174
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2175
|
+
height: string;
|
|
2176
|
+
width: string;
|
|
2177
|
+
borderRadius: string;
|
|
2178
|
+
color: string;
|
|
2179
|
+
colorHover: string;
|
|
2180
|
+
railInsetHorizontalBottom: string;
|
|
2181
|
+
railInsetHorizontalTop: string;
|
|
2182
|
+
railInsetVerticalRight: string;
|
|
2183
|
+
railInsetVerticalLeft: string;
|
|
2184
|
+
railColor: string;
|
|
2185
|
+
}, any>;
|
|
2186
|
+
}>;
|
|
2098
2187
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2099
2188
|
heightTiny: string;
|
|
2100
2189
|
heightSmall: string;
|
|
@@ -2457,7 +2546,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
2457
2546
|
paddingMedium: string;
|
|
2458
2547
|
paddingLarge: string;
|
|
2459
2548
|
clearSize: string;
|
|
2460
|
-
},
|
|
2549
|
+
}, {
|
|
2550
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2551
|
+
height: string;
|
|
2552
|
+
width: string;
|
|
2553
|
+
borderRadius: string;
|
|
2554
|
+
color: string;
|
|
2555
|
+
colorHover: string;
|
|
2556
|
+
railInsetHorizontalBottom: string;
|
|
2557
|
+
railInsetHorizontalTop: string;
|
|
2558
|
+
railInsetVerticalRight: string;
|
|
2559
|
+
railInsetVerticalLeft: string;
|
|
2560
|
+
railColor: string;
|
|
2561
|
+
}, any>;
|
|
2562
|
+
}>;
|
|
2461
2563
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2462
2564
|
heightTiny: string;
|
|
2463
2565
|
heightSmall: string;
|
|
@@ -2796,7 +2898,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
2796
2898
|
scrollTo: (options: ScrollToOptions) => void;
|
|
2797
2899
|
} | null>;
|
|
2798
2900
|
localizedAdd: import('vue').ComputedRef<string>;
|
|
2799
|
-
inputSize: import('vue').ComputedRef<"
|
|
2901
|
+
inputSize: import('vue').ComputedRef<"tiny" | "small" | "medium">;
|
|
2800
2902
|
inputValue: import('vue').Ref<string, string>;
|
|
2801
2903
|
showInput: import('vue').Ref<boolean, boolean>;
|
|
2802
2904
|
inputForceFocused: import('vue').Ref<boolean, boolean>;
|
|
@@ -2878,7 +2980,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
2878
2980
|
paddingMedium: string;
|
|
2879
2981
|
paddingLarge: string;
|
|
2880
2982
|
clearSize: string;
|
|
2881
|
-
},
|
|
2983
|
+
}, {
|
|
2984
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2985
|
+
height: string;
|
|
2986
|
+
width: string;
|
|
2987
|
+
borderRadius: string;
|
|
2988
|
+
color: string;
|
|
2989
|
+
colorHover: string;
|
|
2990
|
+
railInsetHorizontalBottom: string;
|
|
2991
|
+
railInsetHorizontalTop: string;
|
|
2992
|
+
railInsetVerticalRight: string;
|
|
2993
|
+
railInsetVerticalLeft: string;
|
|
2994
|
+
railColor: string;
|
|
2995
|
+
}, any>;
|
|
2996
|
+
}>;
|
|
2882
2997
|
Button: import('naive-ui/es/_mixins').Theme<"Button", {
|
|
2883
2998
|
heightTiny: string;
|
|
2884
2999
|
heightSmall: string;
|
|
@@ -3180,7 +3295,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3180
3295
|
peerOverrides: {
|
|
3181
3296
|
Input?: {
|
|
3182
3297
|
peers?: {
|
|
3183
|
-
|
|
3298
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3299
|
+
height: string;
|
|
3300
|
+
width: string;
|
|
3301
|
+
borderRadius: string;
|
|
3302
|
+
color: string;
|
|
3303
|
+
colorHover: string;
|
|
3304
|
+
railInsetHorizontalBottom: string;
|
|
3305
|
+
railInsetHorizontalTop: string;
|
|
3306
|
+
railInsetVerticalRight: string;
|
|
3307
|
+
railInsetVerticalLeft: string;
|
|
3308
|
+
railColor: string;
|
|
3309
|
+
}, any>> | undefined;
|
|
3184
3310
|
} | undefined;
|
|
3185
3311
|
} | undefined;
|
|
3186
3312
|
Button?: {
|
|
@@ -3206,12 +3332,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3206
3332
|
themeClass: import('vue').Ref<string, string> | undefined;
|
|
3207
3333
|
onRender: (() => void) | undefined;
|
|
3208
3334
|
}, {}, {}, {}, {
|
|
3209
|
-
type: "error" | "default" | "primary" | "info" | "success" | "warning";
|
|
3210
|
-
size: "small" | "medium" | "large";
|
|
3211
3335
|
disabled: boolean | undefined;
|
|
3212
|
-
|
|
3336
|
+
type: "default" | "info" | "warning" | "error" | "success" | "primary";
|
|
3337
|
+
size: "small" | "medium" | "large";
|
|
3213
3338
|
closable: boolean;
|
|
3214
3339
|
defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
|
|
3340
|
+
round: boolean;
|
|
3215
3341
|
onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
|
|
3216
3342
|
}> | null;
|
|
3217
3343
|
autoCompleteRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -3398,7 +3524,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3398
3524
|
paddingMedium: string;
|
|
3399
3525
|
paddingLarge: string;
|
|
3400
3526
|
clearSize: string;
|
|
3401
|
-
},
|
|
3527
|
+
}, {
|
|
3528
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3529
|
+
height: string;
|
|
3530
|
+
width: string;
|
|
3531
|
+
borderRadius: string;
|
|
3532
|
+
color: string;
|
|
3533
|
+
colorHover: string;
|
|
3534
|
+
railInsetHorizontalBottom: string;
|
|
3535
|
+
railInsetHorizontalTop: string;
|
|
3536
|
+
railInsetVerticalRight: string;
|
|
3537
|
+
railInsetVerticalLeft: string;
|
|
3538
|
+
railColor: string;
|
|
3539
|
+
}, any>;
|
|
3540
|
+
}>;
|
|
3402
3541
|
}>>;
|
|
3403
3542
|
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
3404
3543
|
menuBoxShadow: string;
|
|
@@ -3531,7 +3670,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3531
3670
|
paddingMedium: string;
|
|
3532
3671
|
paddingLarge: string;
|
|
3533
3672
|
clearSize: string;
|
|
3534
|
-
},
|
|
3673
|
+
}, {
|
|
3674
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3675
|
+
height: string;
|
|
3676
|
+
width: string;
|
|
3677
|
+
borderRadius: string;
|
|
3678
|
+
color: string;
|
|
3679
|
+
colorHover: string;
|
|
3680
|
+
railInsetHorizontalBottom: string;
|
|
3681
|
+
railInsetHorizontalTop: string;
|
|
3682
|
+
railInsetVerticalRight: string;
|
|
3683
|
+
railInsetVerticalLeft: string;
|
|
3684
|
+
railColor: string;
|
|
3685
|
+
}, any>;
|
|
3686
|
+
}>;
|
|
3535
3687
|
}>>>;
|
|
3536
3688
|
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
3537
3689
|
menuBoxShadow: string;
|
|
@@ -3664,7 +3816,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3664
3816
|
paddingMedium: string;
|
|
3665
3817
|
paddingLarge: string;
|
|
3666
3818
|
clearSize: string;
|
|
3667
|
-
},
|
|
3819
|
+
}, {
|
|
3820
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
3821
|
+
height: string;
|
|
3822
|
+
width: string;
|
|
3823
|
+
borderRadius: string;
|
|
3824
|
+
color: string;
|
|
3825
|
+
colorHover: string;
|
|
3826
|
+
railInsetHorizontalBottom: string;
|
|
3827
|
+
railInsetHorizontalTop: string;
|
|
3828
|
+
railInsetVerticalRight: string;
|
|
3829
|
+
railInsetVerticalLeft: string;
|
|
3830
|
+
railColor: string;
|
|
3831
|
+
}, any>;
|
|
3832
|
+
}>;
|
|
3668
3833
|
}>>>;
|
|
3669
3834
|
}>> & Readonly<{}>, {
|
|
3670
3835
|
focus: () => void;
|
|
@@ -3875,7 +4040,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3875
4040
|
paddingMedium: string;
|
|
3876
4041
|
paddingLarge: string;
|
|
3877
4042
|
clearSize: string;
|
|
3878
|
-
},
|
|
4043
|
+
}, {
|
|
4044
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4045
|
+
height: string;
|
|
4046
|
+
width: string;
|
|
4047
|
+
borderRadius: string;
|
|
4048
|
+
color: string;
|
|
4049
|
+
colorHover: string;
|
|
4050
|
+
railInsetHorizontalBottom: string;
|
|
4051
|
+
railInsetHorizontalTop: string;
|
|
4052
|
+
railInsetVerticalRight: string;
|
|
4053
|
+
railInsetVerticalLeft: string;
|
|
4054
|
+
railColor: string;
|
|
4055
|
+
}, any>;
|
|
4056
|
+
}>;
|
|
3879
4057
|
};
|
|
3880
4058
|
peerOverrides: {
|
|
3881
4059
|
InternalSelectMenu?: {
|
|
@@ -3911,7 +4089,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3911
4089
|
} | undefined;
|
|
3912
4090
|
Input?: {
|
|
3913
4091
|
peers?: {
|
|
3914
|
-
|
|
4092
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4093
|
+
height: string;
|
|
4094
|
+
width: string;
|
|
4095
|
+
borderRadius: string;
|
|
4096
|
+
color: string;
|
|
4097
|
+
colorHover: string;
|
|
4098
|
+
railInsetHorizontalBottom: string;
|
|
4099
|
+
railInsetHorizontalTop: string;
|
|
4100
|
+
railInsetVerticalRight: string;
|
|
4101
|
+
railInsetVerticalLeft: string;
|
|
4102
|
+
railColor: string;
|
|
4103
|
+
}, any>> | undefined;
|
|
3915
4104
|
} | undefined;
|
|
3916
4105
|
} | undefined;
|
|
3917
4106
|
};
|
|
@@ -3926,18 +4115,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
3926
4115
|
namespace: import('vue').ComputedRef<string | undefined>;
|
|
3927
4116
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
3928
4117
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
3929
|
-
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
3930
|
-
readonly to: string | boolean | HTMLElement;
|
|
3931
4118
|
readonly disabled: boolean | undefined;
|
|
3932
|
-
readonly loading: boolean;
|
|
3933
4119
|
readonly bordered: boolean | undefined;
|
|
3934
|
-
readonly
|
|
4120
|
+
readonly to: string | boolean | HTMLElement;
|
|
4121
|
+
readonly append: boolean;
|
|
3935
4122
|
readonly clearable: boolean;
|
|
3936
4123
|
readonly defaultValue: string | null;
|
|
3937
|
-
readonly
|
|
4124
|
+
readonly loading: boolean;
|
|
4125
|
+
readonly placement: import('vueuc').FollowerPlacement;
|
|
3938
4126
|
readonly blurAfterSelect: boolean;
|
|
3939
4127
|
readonly clearAfterSelect: boolean;
|
|
3940
4128
|
readonly showEmpty: boolean;
|
|
4129
|
+
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
3941
4130
|
}, true, {}, import('vue').SlotsType<import('naive-ui').AutoCompleteSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
3942
4131
|
P: {};
|
|
3943
4132
|
B: {};
|
|
@@ -4129,7 +4318,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4129
4318
|
paddingMedium: string;
|
|
4130
4319
|
paddingLarge: string;
|
|
4131
4320
|
clearSize: string;
|
|
4132
|
-
},
|
|
4321
|
+
}, {
|
|
4322
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4323
|
+
height: string;
|
|
4324
|
+
width: string;
|
|
4325
|
+
borderRadius: string;
|
|
4326
|
+
color: string;
|
|
4327
|
+
colorHover: string;
|
|
4328
|
+
railInsetHorizontalBottom: string;
|
|
4329
|
+
railInsetHorizontalTop: string;
|
|
4330
|
+
railInsetVerticalRight: string;
|
|
4331
|
+
railInsetVerticalLeft: string;
|
|
4332
|
+
railColor: string;
|
|
4333
|
+
}, any>;
|
|
4334
|
+
}>;
|
|
4133
4335
|
}>>;
|
|
4134
4336
|
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
4135
4337
|
menuBoxShadow: string;
|
|
@@ -4262,7 +4464,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4262
4464
|
paddingMedium: string;
|
|
4263
4465
|
paddingLarge: string;
|
|
4264
4466
|
clearSize: string;
|
|
4265
|
-
},
|
|
4467
|
+
}, {
|
|
4468
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4469
|
+
height: string;
|
|
4470
|
+
width: string;
|
|
4471
|
+
borderRadius: string;
|
|
4472
|
+
color: string;
|
|
4473
|
+
colorHover: string;
|
|
4474
|
+
railInsetHorizontalBottom: string;
|
|
4475
|
+
railInsetHorizontalTop: string;
|
|
4476
|
+
railInsetVerticalRight: string;
|
|
4477
|
+
railInsetVerticalLeft: string;
|
|
4478
|
+
railColor: string;
|
|
4479
|
+
}, any>;
|
|
4480
|
+
}>;
|
|
4266
4481
|
}>>>;
|
|
4267
4482
|
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
|
|
4268
4483
|
menuBoxShadow: string;
|
|
@@ -4395,7 +4610,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4395
4610
|
paddingMedium: string;
|
|
4396
4611
|
paddingLarge: string;
|
|
4397
4612
|
clearSize: string;
|
|
4398
|
-
},
|
|
4613
|
+
}, {
|
|
4614
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4615
|
+
height: string;
|
|
4616
|
+
width: string;
|
|
4617
|
+
borderRadius: string;
|
|
4618
|
+
color: string;
|
|
4619
|
+
colorHover: string;
|
|
4620
|
+
railInsetHorizontalBottom: string;
|
|
4621
|
+
railInsetHorizontalTop: string;
|
|
4622
|
+
railInsetVerticalRight: string;
|
|
4623
|
+
railInsetVerticalLeft: string;
|
|
4624
|
+
railColor: string;
|
|
4625
|
+
}, any>;
|
|
4626
|
+
}>;
|
|
4399
4627
|
}>>>;
|
|
4400
4628
|
}>> & Readonly<{}>, {
|
|
4401
4629
|
focus: () => void;
|
|
@@ -4606,7 +4834,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4606
4834
|
paddingMedium: string;
|
|
4607
4835
|
paddingLarge: string;
|
|
4608
4836
|
clearSize: string;
|
|
4609
|
-
},
|
|
4837
|
+
}, {
|
|
4838
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4839
|
+
height: string;
|
|
4840
|
+
width: string;
|
|
4841
|
+
borderRadius: string;
|
|
4842
|
+
color: string;
|
|
4843
|
+
colorHover: string;
|
|
4844
|
+
railInsetHorizontalBottom: string;
|
|
4845
|
+
railInsetHorizontalTop: string;
|
|
4846
|
+
railInsetVerticalRight: string;
|
|
4847
|
+
railInsetVerticalLeft: string;
|
|
4848
|
+
railColor: string;
|
|
4849
|
+
}, any>;
|
|
4850
|
+
}>;
|
|
4610
4851
|
};
|
|
4611
4852
|
peerOverrides: {
|
|
4612
4853
|
InternalSelectMenu?: {
|
|
@@ -4642,7 +4883,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4642
4883
|
} | undefined;
|
|
4643
4884
|
Input?: {
|
|
4644
4885
|
peers?: {
|
|
4645
|
-
|
|
4886
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
4887
|
+
height: string;
|
|
4888
|
+
width: string;
|
|
4889
|
+
borderRadius: string;
|
|
4890
|
+
color: string;
|
|
4891
|
+
colorHover: string;
|
|
4892
|
+
railInsetHorizontalBottom: string;
|
|
4893
|
+
railInsetHorizontalTop: string;
|
|
4894
|
+
railInsetVerticalRight: string;
|
|
4895
|
+
railInsetVerticalLeft: string;
|
|
4896
|
+
railColor: string;
|
|
4897
|
+
}, any>> | undefined;
|
|
4646
4898
|
} | undefined;
|
|
4647
4899
|
} | undefined;
|
|
4648
4900
|
};
|
|
@@ -4657,18 +4909,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
4657
4909
|
namespace: import('vue').ComputedRef<string | undefined>;
|
|
4658
4910
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
4659
4911
|
}, {}, {}, {}, {
|
|
4660
|
-
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
4661
|
-
readonly to: string | boolean | HTMLElement;
|
|
4662
4912
|
readonly disabled: boolean | undefined;
|
|
4663
|
-
readonly loading: boolean;
|
|
4664
4913
|
readonly bordered: boolean | undefined;
|
|
4665
|
-
readonly
|
|
4914
|
+
readonly to: string | boolean | HTMLElement;
|
|
4915
|
+
readonly append: boolean;
|
|
4666
4916
|
readonly clearable: boolean;
|
|
4667
4917
|
readonly defaultValue: string | null;
|
|
4668
|
-
readonly
|
|
4918
|
+
readonly loading: boolean;
|
|
4919
|
+
readonly placement: import('vueuc').FollowerPlacement;
|
|
4669
4920
|
readonly blurAfterSelect: boolean;
|
|
4670
4921
|
readonly clearAfterSelect: boolean;
|
|
4671
4922
|
readonly showEmpty: boolean;
|
|
4923
|
+
readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
|
|
4672
4924
|
}> | null;
|
|
4673
4925
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
4674
4926
|
P: {};
|