@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
|
@@ -45,7 +45,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
45
45
|
pair: BooleanConstructor;
|
|
46
46
|
separator: StringConstructor;
|
|
47
47
|
readonly: {
|
|
48
|
-
type: (
|
|
48
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
49
49
|
default: boolean;
|
|
50
50
|
};
|
|
51
51
|
passivelyActivated: BooleanConstructor;
|
|
@@ -161,7 +161,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
161
161
|
paddingMedium: string;
|
|
162
162
|
paddingLarge: string;
|
|
163
163
|
clearSize: string;
|
|
164
|
-
},
|
|
164
|
+
}, {
|
|
165
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
166
|
+
height: string;
|
|
167
|
+
width: string;
|
|
168
|
+
borderRadius: string;
|
|
169
|
+
color: string;
|
|
170
|
+
colorHover: string;
|
|
171
|
+
railInsetHorizontalBottom: string;
|
|
172
|
+
railInsetHorizontalTop: string;
|
|
173
|
+
railInsetVerticalRight: string;
|
|
174
|
+
railInsetVerticalLeft: string;
|
|
175
|
+
railColor: string;
|
|
176
|
+
}, any>;
|
|
177
|
+
}>>;
|
|
165
178
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
166
179
|
fontWeight: string;
|
|
167
180
|
countTextColorDisabled: string;
|
|
@@ -223,7 +236,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
223
236
|
paddingMedium: string;
|
|
224
237
|
paddingLarge: string;
|
|
225
238
|
clearSize: string;
|
|
226
|
-
},
|
|
239
|
+
}, {
|
|
240
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
241
|
+
height: string;
|
|
242
|
+
width: string;
|
|
243
|
+
borderRadius: string;
|
|
244
|
+
color: string;
|
|
245
|
+
colorHover: string;
|
|
246
|
+
railInsetHorizontalBottom: string;
|
|
247
|
+
railInsetHorizontalTop: string;
|
|
248
|
+
railInsetVerticalRight: string;
|
|
249
|
+
railInsetVerticalLeft: string;
|
|
250
|
+
railColor: string;
|
|
251
|
+
}, any>;
|
|
252
|
+
}>>>;
|
|
227
253
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
228
254
|
fontWeight: string;
|
|
229
255
|
countTextColorDisabled: string;
|
|
@@ -285,7 +311,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
285
311
|
paddingMedium: string;
|
|
286
312
|
paddingLarge: string;
|
|
287
313
|
clearSize: string;
|
|
288
|
-
},
|
|
314
|
+
}, {
|
|
315
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
316
|
+
height: string;
|
|
317
|
+
width: string;
|
|
318
|
+
borderRadius: string;
|
|
319
|
+
color: string;
|
|
320
|
+
colorHover: string;
|
|
321
|
+
railInsetHorizontalBottom: string;
|
|
322
|
+
railInsetHorizontalTop: string;
|
|
323
|
+
railInsetVerticalRight: string;
|
|
324
|
+
railInsetVerticalLeft: string;
|
|
325
|
+
railColor: string;
|
|
326
|
+
}, any>;
|
|
327
|
+
}>>>;
|
|
289
328
|
}>> & Readonly<{}>, {
|
|
290
329
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
291
330
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -320,14 +359,14 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
320
359
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
321
360
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
322
361
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
323
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
362
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
324
363
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
325
364
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
326
365
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
327
366
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
328
367
|
activated: import('vue').Ref<boolean, boolean>;
|
|
329
368
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
330
|
-
mergedSize: import('vue').ComputedRef<"
|
|
369
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
331
370
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
332
371
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
333
372
|
textDecoration: string;
|
|
@@ -428,9 +467,26 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
428
467
|
paddingLarge: string;
|
|
429
468
|
clearSize: string;
|
|
430
469
|
};
|
|
431
|
-
peers:
|
|
470
|
+
peers: {
|
|
471
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
472
|
+
height: string;
|
|
473
|
+
width: string;
|
|
474
|
+
borderRadius: string;
|
|
475
|
+
color: string;
|
|
476
|
+
colorHover: string;
|
|
477
|
+
railInsetHorizontalBottom: string;
|
|
478
|
+
railInsetHorizontalTop: string;
|
|
479
|
+
railInsetVerticalRight: string;
|
|
480
|
+
railInsetVerticalLeft: string;
|
|
481
|
+
railColor: string;
|
|
482
|
+
}, any>;
|
|
483
|
+
};
|
|
432
484
|
peerOverrides: {
|
|
433
|
-
|
|
485
|
+
Scrollbar?: {
|
|
486
|
+
peers?: {
|
|
487
|
+
[x: string]: any;
|
|
488
|
+
} | undefined;
|
|
489
|
+
} | undefined;
|
|
434
490
|
};
|
|
435
491
|
}>;
|
|
436
492
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -495,24 +551,24 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
495
551
|
deactivate: () => void;
|
|
496
552
|
scrollTo: (options: ScrollToOptions) => void;
|
|
497
553
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
498
|
-
type: "textarea" | "text" | "password";
|
|
499
|
-
readonly: string | boolean;
|
|
500
554
|
disabled: boolean | undefined;
|
|
501
|
-
|
|
502
|
-
autofocus: boolean;
|
|
503
|
-
loading: boolean;
|
|
504
|
-
autosize: boolean | {
|
|
505
|
-
minRows?: number;
|
|
506
|
-
maxRows?: number;
|
|
507
|
-
};
|
|
555
|
+
type: "text" | "textarea" | "password";
|
|
508
556
|
bordered: boolean | undefined;
|
|
509
557
|
clearable: boolean;
|
|
510
558
|
defaultValue: string | [string, string] | null;
|
|
559
|
+
loading: boolean;
|
|
560
|
+
round: boolean;
|
|
511
561
|
resizable: boolean;
|
|
562
|
+
stateful: boolean;
|
|
512
563
|
pair: boolean;
|
|
513
564
|
rows: string | number;
|
|
565
|
+
autosize: boolean | {
|
|
566
|
+
minRows?: number;
|
|
567
|
+
maxRows?: number;
|
|
568
|
+
};
|
|
569
|
+
readonly: string | boolean;
|
|
514
570
|
passivelyActivated: boolean;
|
|
515
|
-
|
|
571
|
+
autofocus: boolean;
|
|
516
572
|
showCount: boolean;
|
|
517
573
|
attrSize: number;
|
|
518
574
|
internalDeactivateOnEnter: boolean;
|
|
@@ -564,7 +620,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
564
620
|
pair: BooleanConstructor;
|
|
565
621
|
separator: StringConstructor;
|
|
566
622
|
readonly: {
|
|
567
|
-
type: (
|
|
623
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
568
624
|
default: boolean;
|
|
569
625
|
};
|
|
570
626
|
passivelyActivated: BooleanConstructor;
|
|
@@ -680,7 +736,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
680
736
|
paddingMedium: string;
|
|
681
737
|
paddingLarge: string;
|
|
682
738
|
clearSize: string;
|
|
683
|
-
},
|
|
739
|
+
}, {
|
|
740
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
741
|
+
height: string;
|
|
742
|
+
width: string;
|
|
743
|
+
borderRadius: string;
|
|
744
|
+
color: string;
|
|
745
|
+
colorHover: string;
|
|
746
|
+
railInsetHorizontalBottom: string;
|
|
747
|
+
railInsetHorizontalTop: string;
|
|
748
|
+
railInsetVerticalRight: string;
|
|
749
|
+
railInsetVerticalLeft: string;
|
|
750
|
+
railColor: string;
|
|
751
|
+
}, any>;
|
|
752
|
+
}>>;
|
|
684
753
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
685
754
|
fontWeight: string;
|
|
686
755
|
countTextColorDisabled: string;
|
|
@@ -742,7 +811,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
742
811
|
paddingMedium: string;
|
|
743
812
|
paddingLarge: string;
|
|
744
813
|
clearSize: string;
|
|
745
|
-
},
|
|
814
|
+
}, {
|
|
815
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
816
|
+
height: string;
|
|
817
|
+
width: string;
|
|
818
|
+
borderRadius: string;
|
|
819
|
+
color: string;
|
|
820
|
+
colorHover: string;
|
|
821
|
+
railInsetHorizontalBottom: string;
|
|
822
|
+
railInsetHorizontalTop: string;
|
|
823
|
+
railInsetVerticalRight: string;
|
|
824
|
+
railInsetVerticalLeft: string;
|
|
825
|
+
railColor: string;
|
|
826
|
+
}, any>;
|
|
827
|
+
}>>>;
|
|
746
828
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
747
829
|
fontWeight: string;
|
|
748
830
|
countTextColorDisabled: string;
|
|
@@ -804,7 +886,20 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
804
886
|
paddingMedium: string;
|
|
805
887
|
paddingLarge: string;
|
|
806
888
|
clearSize: string;
|
|
807
|
-
},
|
|
889
|
+
}, {
|
|
890
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
891
|
+
height: string;
|
|
892
|
+
width: string;
|
|
893
|
+
borderRadius: string;
|
|
894
|
+
color: string;
|
|
895
|
+
colorHover: string;
|
|
896
|
+
railInsetHorizontalBottom: string;
|
|
897
|
+
railInsetHorizontalTop: string;
|
|
898
|
+
railInsetVerticalRight: string;
|
|
899
|
+
railInsetVerticalLeft: string;
|
|
900
|
+
railColor: string;
|
|
901
|
+
}, any>;
|
|
902
|
+
}>>>;
|
|
808
903
|
}>> & Readonly<{}>, {
|
|
809
904
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
810
905
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -839,14 +934,14 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
839
934
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
840
935
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
841
936
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
842
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
937
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
843
938
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
844
939
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
845
940
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
846
941
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
847
942
|
activated: import('vue').Ref<boolean, boolean>;
|
|
848
943
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
849
|
-
mergedSize: import('vue').ComputedRef<"
|
|
944
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
850
945
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
851
946
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
852
947
|
textDecoration: string;
|
|
@@ -947,9 +1042,26 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
947
1042
|
paddingLarge: string;
|
|
948
1043
|
clearSize: string;
|
|
949
1044
|
};
|
|
950
|
-
peers:
|
|
1045
|
+
peers: {
|
|
1046
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1047
|
+
height: string;
|
|
1048
|
+
width: string;
|
|
1049
|
+
borderRadius: string;
|
|
1050
|
+
color: string;
|
|
1051
|
+
colorHover: string;
|
|
1052
|
+
railInsetHorizontalBottom: string;
|
|
1053
|
+
railInsetHorizontalTop: string;
|
|
1054
|
+
railInsetVerticalRight: string;
|
|
1055
|
+
railInsetVerticalLeft: string;
|
|
1056
|
+
railColor: string;
|
|
1057
|
+
}, any>;
|
|
1058
|
+
};
|
|
951
1059
|
peerOverrides: {
|
|
952
|
-
|
|
1060
|
+
Scrollbar?: {
|
|
1061
|
+
peers?: {
|
|
1062
|
+
[x: string]: any;
|
|
1063
|
+
} | undefined;
|
|
1064
|
+
} | undefined;
|
|
953
1065
|
};
|
|
954
1066
|
}>;
|
|
955
1067
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1014,24 +1126,24 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
1014
1126
|
deactivate: () => void;
|
|
1015
1127
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1016
1128
|
}, {}, {}, {}, {
|
|
1017
|
-
type: "textarea" | "text" | "password";
|
|
1018
|
-
readonly: string | boolean;
|
|
1019
1129
|
disabled: boolean | undefined;
|
|
1020
|
-
|
|
1021
|
-
autofocus: boolean;
|
|
1022
|
-
loading: boolean;
|
|
1023
|
-
autosize: boolean | {
|
|
1024
|
-
minRows?: number;
|
|
1025
|
-
maxRows?: number;
|
|
1026
|
-
};
|
|
1130
|
+
type: "text" | "textarea" | "password";
|
|
1027
1131
|
bordered: boolean | undefined;
|
|
1028
1132
|
clearable: boolean;
|
|
1029
1133
|
defaultValue: string | [string, string] | null;
|
|
1134
|
+
loading: boolean;
|
|
1135
|
+
round: boolean;
|
|
1030
1136
|
resizable: boolean;
|
|
1137
|
+
stateful: boolean;
|
|
1031
1138
|
pair: boolean;
|
|
1032
1139
|
rows: string | number;
|
|
1140
|
+
autosize: boolean | {
|
|
1141
|
+
minRows?: number;
|
|
1142
|
+
maxRows?: number;
|
|
1143
|
+
};
|
|
1144
|
+
readonly: string | boolean;
|
|
1033
1145
|
passivelyActivated: boolean;
|
|
1034
|
-
|
|
1146
|
+
autofocus: boolean;
|
|
1035
1147
|
showCount: boolean;
|
|
1036
1148
|
attrSize: number;
|
|
1037
1149
|
internalDeactivateOnEnter: boolean;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CanvasRetrieve } from '../../../types/openapi';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
totalSelected: number;
|
|
4
|
+
addedItemIds?: CanvasRetrieve['id'][];
|
|
5
|
+
selectedItemIds?: CanvasRetrieve['id'][];
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
"clear-selection": () => any;
|
|
9
|
+
"items-added": (itemIds: string[], position?: "bottom" | "top" | undefined) => any;
|
|
10
|
+
"items-removed": (itemIds: string[]) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onClear-selection"?: (() => any) | undefined;
|
|
13
|
+
"onItems-added"?: ((itemIds: string[], position?: "bottom" | "top" | undefined) => any) | undefined;
|
|
14
|
+
"onItems-removed"?: ((itemIds: string[]) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
addedItemIds: CanvasRetrieve["id"][];
|
|
17
|
+
selectedItemIds: CanvasRetrieve["id"][];
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -1,17 +1,43 @@
|
|
|
1
|
+
import { nextTick } from 'vue';
|
|
1
2
|
import { CanvasRetrieve } from '../../../types/openapi';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
storageKey: string;
|
|
5
|
+
mode: 'management' | 'selector';
|
|
6
|
+
selectedSectionIds?: CanvasRetrieve['id'][];
|
|
7
|
+
addedSectionIds?: CanvasRetrieve['id'][];
|
|
4
8
|
};
|
|
5
9
|
declare function onSmartFoldersConfigure(): void;
|
|
10
|
+
declare function getSelectedSections(): CanvasRetrieve[];
|
|
11
|
+
declare function calculateContentHeight(): void;
|
|
12
|
+
declare function addSelectedSections(position?: 'top' | 'bottom'): void;
|
|
13
|
+
declare function removeSelectedSections(): void;
|
|
6
14
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
7
15
|
showConfigurationModal: typeof onSmartFoldersConfigure;
|
|
16
|
+
addSelectedSections: typeof addSelectedSections;
|
|
17
|
+
removeSelectedSections: typeof removeSelectedSections;
|
|
18
|
+
getSelectedSections: typeof getSelectedSections;
|
|
19
|
+
calculateContentHeight: typeof calculateContentHeight;
|
|
8
20
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
"clear-selection": () => any;
|
|
9
22
|
"open-section": (section: CanvasRetrieve) => any;
|
|
10
23
|
"edit-section": (section: CanvasRetrieve) => any;
|
|
24
|
+
"section-select": (section: CanvasRetrieve) => any;
|
|
25
|
+
"section-add": (section: CanvasRetrieve) => any;
|
|
26
|
+
"section-remove": (section: CanvasRetrieve) => any;
|
|
27
|
+
"sections-bulk-add": (sections: CanvasRetrieve[], position?: "bottom" | "top" | undefined, targetIndex?: number | undefined) => any;
|
|
28
|
+
"sections-bulk-remove": (sections: CanvasRetrieve[]) => any;
|
|
11
29
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
30
|
+
"onClear-selection"?: (() => any) | undefined;
|
|
12
31
|
"onOpen-section"?: ((section: CanvasRetrieve) => any) | undefined;
|
|
13
32
|
"onEdit-section"?: ((section: CanvasRetrieve) => any) | undefined;
|
|
33
|
+
"onSection-select"?: ((section: CanvasRetrieve) => any) | undefined;
|
|
34
|
+
"onSection-add"?: ((section: CanvasRetrieve) => any) | undefined;
|
|
35
|
+
"onSection-remove"?: ((section: CanvasRetrieve) => any) | undefined;
|
|
36
|
+
"onSections-bulk-add"?: ((sections: CanvasRetrieve[], position?: "bottom" | "top" | undefined, targetIndex?: number | undefined) => any) | undefined;
|
|
37
|
+
"onSections-bulk-remove"?: ((sections: CanvasRetrieve[]) => any) | undefined;
|
|
14
38
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
39
|
+
containerRef: HTMLDivElement;
|
|
40
|
+
toolbarRef: HTMLDivElement;
|
|
15
41
|
listRef: ({
|
|
16
42
|
$: import('vue').ComponentInternalInstance;
|
|
17
43
|
$data: {};
|
|
@@ -72,7 +98,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
72
98
|
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
73
99
|
};
|
|
74
100
|
$forceUpdate: () => void;
|
|
75
|
-
$nextTick: typeof
|
|
101
|
+
$nextTick: typeof nextTick;
|
|
76
102
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
77
103
|
} & Readonly<{}> & Omit<Readonly<{
|
|
78
104
|
data: import('../CList/CList.vue').ListDataItem[];
|
|
@@ -4,10 +4,16 @@ type Props = {
|
|
|
4
4
|
field: string;
|
|
5
5
|
order: 'asc' | 'desc';
|
|
6
6
|
};
|
|
7
|
+
mode: 'management' | 'selector';
|
|
8
|
+
selectedItemIds?: string[];
|
|
9
|
+
addedItemIds?: string[];
|
|
7
10
|
};
|
|
8
11
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
12
|
search: (value: string) => any;
|
|
10
13
|
"update:search": (value: string) => any;
|
|
14
|
+
"clear-selection": () => any;
|
|
15
|
+
"items-added": (itemIds: string[], position?: "bottom" | "top" | undefined) => any;
|
|
16
|
+
"items-removed": (itemIds: string[]) => any;
|
|
11
17
|
"breadcrumb-click": (index: number) => any;
|
|
12
18
|
"breadcrumb-reset": () => any;
|
|
13
19
|
"sort-changed": (sort: {
|
|
@@ -17,6 +23,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
17
23
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
18
24
|
onSearch?: ((value: string) => any) | undefined;
|
|
19
25
|
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
26
|
+
"onClear-selection"?: (() => any) | undefined;
|
|
27
|
+
"onItems-added"?: ((itemIds: string[], position?: "bottom" | "top" | undefined) => any) | undefined;
|
|
28
|
+
"onItems-removed"?: ((itemIds: string[]) => any) | undefined;
|
|
20
29
|
"onBreadcrumb-click"?: ((index: number) => any) | undefined;
|
|
21
30
|
"onBreadcrumb-reset"?: (() => any) | undefined;
|
|
22
31
|
"onSort-changed"?: ((sort: {
|
|
@@ -25,6 +34,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
25
34
|
}) => any) | undefined;
|
|
26
35
|
}>, {
|
|
27
36
|
search: string;
|
|
37
|
+
addedItemIds: string[];
|
|
38
|
+
selectedItemIds: string[];
|
|
28
39
|
currentSort: {
|
|
29
40
|
field: string;
|
|
30
41
|
order: "asc" | "desc";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
pageIndex?: number;
|
|
3
|
+
useClientSide?: boolean;
|
|
4
|
+
pdfUrl?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
pdfLoaded: () => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
onPdfLoaded?: (() => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
pageIndex: number;
|
|
12
|
+
pdfUrl: string;
|
|
13
|
+
useClientSide: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
|
+
containerRef: HTMLDivElement;
|
|
16
|
+
canvasRef: HTMLCanvasElement;
|
|
17
|
+
}, HTMLDivElement>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
pageIndex?: number;
|
|
3
|
+
pdfUrl: string;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
pdfLoaded: () => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
8
|
+
onPdfLoaded?: (() => any) | undefined;
|
|
9
|
+
}>, {
|
|
10
|
+
pageIndex: number;
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
12
|
+
iframeRef: HTMLIFrameElement;
|
|
13
|
+
}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
|
-
pdfUrl: string | null;
|
|
3
2
|
pageIndex?: number;
|
|
4
|
-
|
|
3
|
+
pdfUrl: string;
|
|
5
4
|
};
|
|
6
5
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
6
|
pdfLoaded: () => any;
|
|
@@ -9,9 +8,5 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
9
8
|
onPdfLoaded?: (() => any) | undefined;
|
|
10
9
|
}>, {
|
|
11
10
|
pageIndex: number;
|
|
12
|
-
|
|
13
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
14
|
-
containerRef: HTMLDivElement;
|
|
15
|
-
canvasRef: HTMLCanvasElement;
|
|
16
|
-
}, HTMLDivElement>;
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
12
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SortingState, PaginationState, ColumnDef } from '@tanstack/table-core';
|
|
2
|
-
import { StyleValue } from 'vue';
|
|
2
|
+
import { ComputedRef, StyleValue } from 'vue';
|
|
3
3
|
type RowItem = Record<string, any>;
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
selectedRows?: Record<string, boolean>;
|
|
@@ -25,11 +25,11 @@ type __VLS_Props = {
|
|
|
25
25
|
declare function isRowDisabled(id: string | number): boolean;
|
|
26
26
|
declare function handleSelectAll(): void;
|
|
27
27
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
28
|
-
isNoneSelected:
|
|
29
|
-
areAllSelected:
|
|
28
|
+
isNoneSelected: ComputedRef<boolean>;
|
|
29
|
+
areAllSelected: ComputedRef<boolean>;
|
|
30
30
|
selectAll: typeof handleSelectAll;
|
|
31
|
-
selectedRowsCount:
|
|
32
|
-
pageRowsCount:
|
|
31
|
+
selectedRowsCount: ComputedRef<number>;
|
|
32
|
+
pageRowsCount: ComputedRef<number>;
|
|
33
33
|
isRowDisabled: typeof isRowDisabled;
|
|
34
34
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
35
|
sortChanged: (s: SortingState) => any;
|
|
@@ -56,5 +56,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
56
56
|
disabledIds: Array<string | number>;
|
|
57
57
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
58
58
|
tableScroller: HTMLDivElement;
|
|
59
|
+
tableElement: HTMLTableElement;
|
|
59
60
|
}, HTMLDivElement>;
|
|
60
61
|
export default _default;
|