@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
|
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
40
40
|
pair: BooleanConstructor;
|
|
41
41
|
separator: StringConstructor;
|
|
42
42
|
readonly: {
|
|
43
|
-
type: (
|
|
43
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
44
44
|
default: boolean;
|
|
45
45
|
};
|
|
46
46
|
passivelyActivated: BooleanConstructor;
|
|
@@ -156,7 +156,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
156
156
|
paddingMedium: string;
|
|
157
157
|
paddingLarge: string;
|
|
158
158
|
clearSize: string;
|
|
159
|
-
},
|
|
159
|
+
}, {
|
|
160
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
161
|
+
height: string;
|
|
162
|
+
width: string;
|
|
163
|
+
borderRadius: string;
|
|
164
|
+
color: string;
|
|
165
|
+
colorHover: string;
|
|
166
|
+
railInsetHorizontalBottom: string;
|
|
167
|
+
railInsetHorizontalTop: string;
|
|
168
|
+
railInsetVerticalRight: string;
|
|
169
|
+
railInsetVerticalLeft: string;
|
|
170
|
+
railColor: string;
|
|
171
|
+
}, any>;
|
|
172
|
+
}>>;
|
|
160
173
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
161
174
|
fontWeight: string;
|
|
162
175
|
countTextColorDisabled: string;
|
|
@@ -218,7 +231,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
218
231
|
paddingMedium: string;
|
|
219
232
|
paddingLarge: string;
|
|
220
233
|
clearSize: string;
|
|
221
|
-
},
|
|
234
|
+
}, {
|
|
235
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
236
|
+
height: string;
|
|
237
|
+
width: string;
|
|
238
|
+
borderRadius: string;
|
|
239
|
+
color: string;
|
|
240
|
+
colorHover: string;
|
|
241
|
+
railInsetHorizontalBottom: string;
|
|
242
|
+
railInsetHorizontalTop: string;
|
|
243
|
+
railInsetVerticalRight: string;
|
|
244
|
+
railInsetVerticalLeft: string;
|
|
245
|
+
railColor: string;
|
|
246
|
+
}, any>;
|
|
247
|
+
}>>>;
|
|
222
248
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
223
249
|
fontWeight: string;
|
|
224
250
|
countTextColorDisabled: string;
|
|
@@ -280,7 +306,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
280
306
|
paddingMedium: string;
|
|
281
307
|
paddingLarge: string;
|
|
282
308
|
clearSize: string;
|
|
283
|
-
},
|
|
309
|
+
}, {
|
|
310
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
311
|
+
height: string;
|
|
312
|
+
width: string;
|
|
313
|
+
borderRadius: string;
|
|
314
|
+
color: string;
|
|
315
|
+
colorHover: string;
|
|
316
|
+
railInsetHorizontalBottom: string;
|
|
317
|
+
railInsetHorizontalTop: string;
|
|
318
|
+
railInsetVerticalRight: string;
|
|
319
|
+
railInsetVerticalLeft: string;
|
|
320
|
+
railColor: string;
|
|
321
|
+
}, any>;
|
|
322
|
+
}>>>;
|
|
284
323
|
}>> & Readonly<{}>, {
|
|
285
324
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
286
325
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -315,14 +354,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
315
354
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
316
355
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
317
356
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
318
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
357
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
319
358
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
320
359
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
321
360
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
322
361
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
323
362
|
activated: import('vue').Ref<boolean, boolean>;
|
|
324
363
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
325
|
-
mergedSize: import('vue').ComputedRef<"
|
|
364
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
326
365
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
327
366
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
328
367
|
textDecoration: string;
|
|
@@ -423,9 +462,26 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
423
462
|
paddingLarge: string;
|
|
424
463
|
clearSize: string;
|
|
425
464
|
};
|
|
426
|
-
peers:
|
|
465
|
+
peers: {
|
|
466
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
467
|
+
height: string;
|
|
468
|
+
width: string;
|
|
469
|
+
borderRadius: string;
|
|
470
|
+
color: string;
|
|
471
|
+
colorHover: string;
|
|
472
|
+
railInsetHorizontalBottom: string;
|
|
473
|
+
railInsetHorizontalTop: string;
|
|
474
|
+
railInsetVerticalRight: string;
|
|
475
|
+
railInsetVerticalLeft: string;
|
|
476
|
+
railColor: string;
|
|
477
|
+
}, any>;
|
|
478
|
+
};
|
|
427
479
|
peerOverrides: {
|
|
428
|
-
|
|
480
|
+
Scrollbar?: {
|
|
481
|
+
peers?: {
|
|
482
|
+
[x: string]: any;
|
|
483
|
+
} | undefined;
|
|
484
|
+
} | undefined;
|
|
429
485
|
};
|
|
430
486
|
}>;
|
|
431
487
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -490,24 +546,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
490
546
|
deactivate: () => void;
|
|
491
547
|
scrollTo: (options: ScrollToOptions) => void;
|
|
492
548
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
493
|
-
type: "textarea" | "text" | "password";
|
|
494
|
-
readonly: string | boolean;
|
|
495
549
|
disabled: boolean | undefined;
|
|
496
|
-
|
|
497
|
-
autofocus: boolean;
|
|
498
|
-
loading: boolean;
|
|
499
|
-
autosize: boolean | {
|
|
500
|
-
minRows?: number;
|
|
501
|
-
maxRows?: number;
|
|
502
|
-
};
|
|
550
|
+
type: "text" | "textarea" | "password";
|
|
503
551
|
bordered: boolean | undefined;
|
|
504
552
|
clearable: boolean;
|
|
505
553
|
defaultValue: string | [string, string] | null;
|
|
554
|
+
loading: boolean;
|
|
555
|
+
round: boolean;
|
|
506
556
|
resizable: boolean;
|
|
557
|
+
stateful: boolean;
|
|
507
558
|
pair: boolean;
|
|
508
559
|
rows: string | number;
|
|
560
|
+
autosize: boolean | {
|
|
561
|
+
minRows?: number;
|
|
562
|
+
maxRows?: number;
|
|
563
|
+
};
|
|
564
|
+
readonly: string | boolean;
|
|
509
565
|
passivelyActivated: boolean;
|
|
510
|
-
|
|
566
|
+
autofocus: boolean;
|
|
511
567
|
showCount: boolean;
|
|
512
568
|
attrSize: number;
|
|
513
569
|
internalDeactivateOnEnter: boolean;
|
|
@@ -559,7 +615,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
559
615
|
pair: BooleanConstructor;
|
|
560
616
|
separator: StringConstructor;
|
|
561
617
|
readonly: {
|
|
562
|
-
type: (
|
|
618
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
563
619
|
default: boolean;
|
|
564
620
|
};
|
|
565
621
|
passivelyActivated: BooleanConstructor;
|
|
@@ -675,7 +731,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
675
731
|
paddingMedium: string;
|
|
676
732
|
paddingLarge: string;
|
|
677
733
|
clearSize: string;
|
|
678
|
-
},
|
|
734
|
+
}, {
|
|
735
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
736
|
+
height: string;
|
|
737
|
+
width: string;
|
|
738
|
+
borderRadius: string;
|
|
739
|
+
color: string;
|
|
740
|
+
colorHover: string;
|
|
741
|
+
railInsetHorizontalBottom: string;
|
|
742
|
+
railInsetHorizontalTop: string;
|
|
743
|
+
railInsetVerticalRight: string;
|
|
744
|
+
railInsetVerticalLeft: string;
|
|
745
|
+
railColor: string;
|
|
746
|
+
}, any>;
|
|
747
|
+
}>>;
|
|
679
748
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
680
749
|
fontWeight: string;
|
|
681
750
|
countTextColorDisabled: string;
|
|
@@ -737,7 +806,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
737
806
|
paddingMedium: string;
|
|
738
807
|
paddingLarge: string;
|
|
739
808
|
clearSize: string;
|
|
740
|
-
},
|
|
809
|
+
}, {
|
|
810
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
811
|
+
height: string;
|
|
812
|
+
width: string;
|
|
813
|
+
borderRadius: string;
|
|
814
|
+
color: string;
|
|
815
|
+
colorHover: string;
|
|
816
|
+
railInsetHorizontalBottom: string;
|
|
817
|
+
railInsetHorizontalTop: string;
|
|
818
|
+
railInsetVerticalRight: string;
|
|
819
|
+
railInsetVerticalLeft: string;
|
|
820
|
+
railColor: string;
|
|
821
|
+
}, any>;
|
|
822
|
+
}>>>;
|
|
741
823
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
742
824
|
fontWeight: string;
|
|
743
825
|
countTextColorDisabled: string;
|
|
@@ -799,7 +881,20 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
799
881
|
paddingMedium: string;
|
|
800
882
|
paddingLarge: string;
|
|
801
883
|
clearSize: string;
|
|
802
|
-
},
|
|
884
|
+
}, {
|
|
885
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
886
|
+
height: string;
|
|
887
|
+
width: string;
|
|
888
|
+
borderRadius: string;
|
|
889
|
+
color: string;
|
|
890
|
+
colorHover: string;
|
|
891
|
+
railInsetHorizontalBottom: string;
|
|
892
|
+
railInsetHorizontalTop: string;
|
|
893
|
+
railInsetVerticalRight: string;
|
|
894
|
+
railInsetVerticalLeft: string;
|
|
895
|
+
railColor: string;
|
|
896
|
+
}, any>;
|
|
897
|
+
}>>>;
|
|
803
898
|
}>> & Readonly<{}>, {
|
|
804
899
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
805
900
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -834,14 +929,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
834
929
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
835
930
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
836
931
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
837
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
932
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
838
933
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
839
934
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
840
935
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
841
936
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
842
937
|
activated: import('vue').Ref<boolean, boolean>;
|
|
843
938
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
844
|
-
mergedSize: import('vue').ComputedRef<"
|
|
939
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
845
940
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
846
941
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
847
942
|
textDecoration: string;
|
|
@@ -942,9 +1037,26 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
942
1037
|
paddingLarge: string;
|
|
943
1038
|
clearSize: string;
|
|
944
1039
|
};
|
|
945
|
-
peers:
|
|
1040
|
+
peers: {
|
|
1041
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1042
|
+
height: string;
|
|
1043
|
+
width: string;
|
|
1044
|
+
borderRadius: string;
|
|
1045
|
+
color: string;
|
|
1046
|
+
colorHover: string;
|
|
1047
|
+
railInsetHorizontalBottom: string;
|
|
1048
|
+
railInsetHorizontalTop: string;
|
|
1049
|
+
railInsetVerticalRight: string;
|
|
1050
|
+
railInsetVerticalLeft: string;
|
|
1051
|
+
railColor: string;
|
|
1052
|
+
}, any>;
|
|
1053
|
+
};
|
|
946
1054
|
peerOverrides: {
|
|
947
|
-
|
|
1055
|
+
Scrollbar?: {
|
|
1056
|
+
peers?: {
|
|
1057
|
+
[x: string]: any;
|
|
1058
|
+
} | undefined;
|
|
1059
|
+
} | undefined;
|
|
948
1060
|
};
|
|
949
1061
|
}>;
|
|
950
1062
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1009,24 +1121,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<CI
|
|
|
1009
1121
|
deactivate: () => void;
|
|
1010
1122
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1011
1123
|
}, {}, {}, {}, {
|
|
1012
|
-
type: "textarea" | "text" | "password";
|
|
1013
|
-
readonly: string | boolean;
|
|
1014
1124
|
disabled: boolean | undefined;
|
|
1015
|
-
|
|
1016
|
-
autofocus: boolean;
|
|
1017
|
-
loading: boolean;
|
|
1018
|
-
autosize: boolean | {
|
|
1019
|
-
minRows?: number;
|
|
1020
|
-
maxRows?: number;
|
|
1021
|
-
};
|
|
1125
|
+
type: "text" | "textarea" | "password";
|
|
1022
1126
|
bordered: boolean | undefined;
|
|
1023
1127
|
clearable: boolean;
|
|
1024
1128
|
defaultValue: string | [string, string] | null;
|
|
1129
|
+
loading: boolean;
|
|
1130
|
+
round: boolean;
|
|
1025
1131
|
resizable: boolean;
|
|
1132
|
+
stateful: boolean;
|
|
1026
1133
|
pair: boolean;
|
|
1027
1134
|
rows: string | number;
|
|
1135
|
+
autosize: boolean | {
|
|
1136
|
+
minRows?: number;
|
|
1137
|
+
maxRows?: number;
|
|
1138
|
+
};
|
|
1139
|
+
readonly: string | boolean;
|
|
1028
1140
|
passivelyActivated: boolean;
|
|
1029
|
-
|
|
1141
|
+
autofocus: boolean;
|
|
1030
1142
|
showCount: boolean;
|
|
1031
1143
|
attrSize: number;
|
|
1032
1144
|
internalDeactivateOnEnter: boolean;
|
|
@@ -2,6 +2,7 @@ type __VLS_Props = {
|
|
|
2
2
|
modelValue: string;
|
|
3
3
|
height?: number;
|
|
4
4
|
readonly?: boolean;
|
|
5
|
+
language?: string;
|
|
5
6
|
};
|
|
6
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
7
8
|
focus: () => void | undefined;
|
|
@@ -21,6 +22,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
21
22
|
}>, {
|
|
22
23
|
height: number;
|
|
23
24
|
readonly: boolean;
|
|
25
|
+
language: string;
|
|
24
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
25
27
|
editorContainer: HTMLDivElement;
|
|
26
28
|
}, HTMLDivElement>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
preset?: string;
|
|
3
|
+
width?: string;
|
|
4
|
+
height?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
defaultWidth?: string;
|
|
7
|
+
defaultHeight?: string;
|
|
8
|
+
showRatioWarning?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
+
"update:preset": (value: string | undefined) => any;
|
|
12
|
+
"update:width": (value: string | undefined) => any;
|
|
13
|
+
"update:height": (value: string | undefined) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
15
|
+
"onUpdate:preset"?: ((value: string | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:width"?: ((value: string | undefined) => any) | undefined;
|
|
17
|
+
"onUpdate:height"?: ((value: string | undefined) => any) | undefined;
|
|
18
|
+
}>, {
|
|
19
|
+
height: string;
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
width: string;
|
|
22
|
+
defaultWidth: string;
|
|
23
|
+
defaultHeight: string;
|
|
24
|
+
preset: string;
|
|
25
|
+
showRatioWarning: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface PillOption {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string | number | null;
|
|
4
|
+
}
|
|
5
|
+
type __VLS_Props = {
|
|
6
|
+
options: PillOption[];
|
|
7
|
+
modelValue: string | number | null | undefined;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts
CHANGED
|
@@ -10,5 +10,5 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
10
10
|
isRecommended: boolean;
|
|
11
11
|
views: number;
|
|
12
12
|
variation: "extended" | "compact" | "minimal";
|
|
13
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
14
|
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
message?: string;
|
|
3
|
+
opacity?: number;
|
|
4
|
+
spinSize?: 'small' | 'medium' | 'large';
|
|
5
|
+
spinColor?: string;
|
|
6
|
+
textSize?: 'sm' | 'base' | 'lg' | 'xl';
|
|
7
|
+
textColor?: string;
|
|
8
|
+
rounded?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
11
|
+
textColor: string;
|
|
12
|
+
message: string;
|
|
13
|
+
opacity: number;
|
|
14
|
+
spinSize: "small" | "medium" | "large";
|
|
15
|
+
spinColor: string;
|
|
16
|
+
textSize: "sm" | "base" | "lg" | "xl";
|
|
17
|
+
rounded: boolean;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
nameLabel?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
cancelText?: string;
|
|
8
|
+
confirmText?: string;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
cancel: () => any;
|
|
13
|
+
"update:modelValue": (value: string) => any;
|
|
14
|
+
confirm: (value: string) => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
16
|
+
onCancel?: (() => any) | undefined;
|
|
17
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
18
|
+
onConfirm?: ((value: string) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
placeholder: string;
|
|
21
|
+
title: string;
|
|
22
|
+
required: boolean;
|
|
23
|
+
description: string;
|
|
24
|
+
nameLabel: string;
|
|
25
|
+
cancelText: string;
|
|
26
|
+
confirmText: string;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
export default _default;
|