@pitcher/js-api 1.26.0 → 1.27.0
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 +37 -34
- package/js-api.esm.d.ts +1 -2
- package/js-api.esm.js +149 -24
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +17 -10
- package/js-api.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/apps/browser/appTypes.d.ts +50 -0
- package/{lib → src/lib}/apps/browser/stores/api.d.ts +68 -128
- package/{lib → src/lib}/apps/browser/stores/app.d.ts +12 -28
- package/{lib → src/lib}/apps/browser/stores/fileSmartFolderStore.d.ts +0 -2
- package/{lib → src/lib}/apps/browser/stores/upload.d.ts +24 -4
- package/src/lib/apps/browser/stores/upload.types.d.ts +34 -0
- package/{lib → src/lib}/apps/browser/types/actionKeys.d.ts +0 -2
- package/src/lib/apps/browser/util/sortOrder.d.ts +36 -0
- package/src/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +21 -0
- package/src/lib/apps/canvas-builder/components/ui/ContentList/contentList.helpers.d.ts +28 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DataCharts/types.d.ts +7 -1
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.d.ts +14 -4
- package/src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.d.ts +17 -0
- package/src/lib/apps/canvas-builder/composables/lazySections.d.ts +53 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvas.d.ts +169 -64
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasBlocks.d.ts +8 -4
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasDnd.d.ts +1 -1
- package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShape.d.ts +1 -0
- package/src/lib/apps/canvas-builder/composables/useHtmlUserPropertyFields.d.ts +4 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleChild.d.ts +4 -2
- package/{lib → src/lib}/apps/canvas-builder/types/canvas.d.ts +78 -9
- package/{lib → src/lib}/apps/canvas-selector/stores/app.d.ts +14 -0
- package/{lib → src/lib}/apps/collection-player/stores/app.store.d.ts +1 -0
- package/{lib → src/lib}/apps/content-selector/appTypes.d.ts +1 -3
- package/{lib → src/lib}/apps/content-selector/stores/api.d.ts +2 -11
- package/{lib → src/lib}/apps/content-selector/stores/app.d.ts +4 -17
- package/{lib → src/lib}/apps/content-selector/util/file.d.ts +2 -2
- package/{lib → src/lib}/apps/ppt-conversion-selector/stores/app.store.d.ts +1 -1
- package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +8 -1
- package/{lib → src/lib}/components/CRichTextEditor/extensions/contentLink.d.ts +3 -1
- package/src/lib/components/CSideBar/index.d.ts +6 -0
- package/src/lib/components/CSideBar/types.d.ts +25 -0
- package/src/lib/components/HomeCustomizeCog/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizeEmptyState/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizePanel/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizeRow/index.d.ts +1 -0
- package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +2 -0
- package/{lib → src/lib}/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +8 -0
- package/{lib → src/lib}/composables/bulkActions.use.d.ts +0 -1
- package/{lib → src/lib}/composables/presentationHistory.use.d.ts +2 -6
- package/src/lib/composables/useCanvasRendererExcludedTags.d.ts +15 -0
- package/src/lib/composables/useHomeCustomization.d.ts +32 -0
- package/{lib → src/lib}/composables/useMetadataFilters.d.ts +1 -1
- package/{lib → src/lib}/composables/useMetadataTemplates.d.ts +1 -1
- package/{lib → src/lib}/composables/useThemeVars.d.ts +2 -0
- package/{lib → src/lib}/composables/useWindowEvents.d.ts +1 -1
- package/{lib → src/lib}/constants/cdp.const.d.ts +1 -0
- package/{lib → src/lib}/main.lib.d.ts +18 -3
- package/{lib → src/lib}/sdk/api/HighLevelApi.d.ts +19 -8
- package/src/lib/sdk/api/modules/ai.d.ts +52 -0
- package/{lib → src/lib}/sdk/api/modules/canvas.d.ts +43 -2
- package/{lib → src/lib}/sdk/api/modules/files.d.ts +1 -2
- package/{lib → src/lib}/sdk/api/modules/index.d.ts +1 -1
- package/{lib → src/lib}/sdk/interfaces.d.ts +31 -7
- package/{lib → src/lib}/sdk/main.d.ts +42 -21
- package/{lib → src/lib}/sdk/payload.types.d.ts +121 -9
- package/src/lib/sdk/utils/assert.spec.d.ts +1 -0
- package/src/lib/sdk/utils/eventEmitter.spec.d.ts +1 -0
- package/src/lib/sdk/utils/isodate.spec.d.ts +1 -0
- package/src/lib/sdk/utils/object.spec.d.ts +1 -0
- package/{lib → src/lib}/theme/light.d.ts +2 -0
- package/{lib → src/lib}/theme/theme.types.d.ts +1 -0
- package/src/lib/types/ai-tasks.const.d.ts +80 -0
- package/{lib → src/lib}/types/files.d.ts +16 -8
- package/{lib → src/lib}/types/instanceSettings.types.d.ts +4 -2
- package/src/lib/types/launchDarkly.types.d.ts +69 -0
- package/{lib → src/lib}/types/organizationSettings.types.d.ts +20 -0
- package/{lib → src/lib}/util/array.d.ts +1 -1
- package/src/lib/util/array.spec.d.ts +1 -0
- package/src/lib/util/casing.spec.d.ts +1 -0
- package/src/lib/util/date.spec.d.ts +1 -0
- package/src/lib/util/font.spec.d.ts +1 -0
- package/{lib → src/lib}/util/fullscreen.util.d.ts +12 -1
- package/{lib → src/lib}/util/handlebars.d.ts +19 -0
- package/src/lib/util/location.spec.d.ts +1 -0
- package/src/lib/util/message-event.spec.d.ts +1 -0
- package/src/lib/util/network.d.ts +42 -0
- package/src/lib/util/network.spec.d.ts +1 -0
- package/src/lib/util/network.test.d.ts +1 -0
- package/src/lib/util/number.spec.d.ts +1 -0
- package/src/lib/util/object.spec.d.ts +1 -0
- package/src/lib/util/reactive.spec.d.ts +1 -0
- package/src/lib/util/sfdc.util.spec.d.ts +1 -0
- package/src/lib/util/smart-store.util.spec.d.ts +1 -0
- package/src/lib/util/soql.util.d.ts +48 -0
- package/src/lib/util/soql.util.spec.d.ts +1 -0
- package/src/lib/util/string.d.ts +18 -0
- package/src/lib/util/timer.spec.d.ts +1 -0
- package/src/lib/util/translations.spec.d.ts +1 -0
- package/src/lib/util/tree-transformation.util.spec.d.ts +1 -0
- package/src/lib/util/user.d.ts +54 -0
- package/{lib → src/lib}/utils/defaultThumbnail.util.d.ts +1 -0
- package/{types → src/types}/openapi/index.d.ts +1 -0
- package/{types → src/types}/openapi/models/Canvas.d.ts +2 -2
- package/{types → src/types}/openapi/models/CanvasCreate.d.ts +2 -2
- package/{types → src/types}/openapi/models/CanvasRetrieve.d.ts +10 -2
- package/{types → src/types}/openapi/models/CanvasUpdate.d.ts +2 -2
- package/{types → src/types}/openapi/models/DeletedCanvas.d.ts +2 -2
- package/{types → src/types}/openapi/models/FolderFolder.d.ts +4 -0
- package/{types → src/types}/openapi/models/FolderRetrieve.d.ts +1 -0
- package/{types → src/types}/openapi/models/MetadataTemplateFieldTypeEnum.d.ts +3 -1
- package/src/types/openapi/models/MiniCanvasWithTags.d.ts +5 -0
- package/lib/apps/agenda-selector/App.vue.d.ts +0 -9
- package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +0 -7
- package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +0 -24
- package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +0 -2
- package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +0 -8
- package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +0 -6
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +0 -1151
- package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +0 -13
- package/lib/apps/assets-manager/App.vue.d.ts +0 -75
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +0 -22
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +0 -16
- package/lib/apps/browser/App.vue.d.ts +0 -190
- package/lib/apps/browser/appTypes.d.ts +0 -26
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -258
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +0 -15
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/AllContent.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts +0 -96
- package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +0 -38
- package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +0 -41
- package/lib/apps/browser/components/Content/Content.vue.d.ts +0 -18
- package/lib/apps/browser/components/Content/Favorites/FavoritesTable.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/DetailsDrawer/DetailsDrawer.vue.d.ts +0 -18
- package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +0 -17
- package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +0 -24
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +0 -10
- package/lib/apps/browser/components/Content/Recent/RecentTable.vue.d.ts +0 -2
- package/lib/apps/browser/components/ContextMenu/ContextMenu.vue.d.ts +0 -9
- package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +0 -14
- package/lib/apps/browser/components/ContextMenu/ConvertToSlidesButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFolders.vue.d.ts +0 -209
- package/lib/apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +0 -12
- package/lib/apps/browser/components/RepUploads.vue.d.ts +0 -206
- package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +0 -7
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +0 -398
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +0 -11
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +0 -12
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +0 -11
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +0 -18
- package/lib/apps/browser/components/UploadFilesWidget/UploadFilesWidget.vue.d.ts +0 -14
- package/lib/apps/browser/stores/upload.types.d.ts +0 -16
- package/lib/apps/canvas-builder/App.vue.d.ts +0 -1101
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +0 -1151
- package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +0 -60
- package/lib/apps/canvas-builder/components/container/BottomBar/BottomBar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +0 -16
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.paginated.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.single.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +0 -469
- package/lib/apps/canvas-builder/components/container/CanvasContent/page.paginated.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +0 -46
- package/lib/apps/canvas-builder/components/container/CanvasDrawerTheme/CanvasDrawerTheme.vue.d.ts +0 -9
- package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/ComponentDrawerSettings.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/container/ControlBar/AppGrid.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/container/ControlBar/InstalledEmbeddableShortcuts.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/DownloadButton/DownloadButton.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +0 -111
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +0 -112
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentContent.vue.d.ts +0 -124
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +0 -35
- package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -1355
- package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +0 -15
- package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +0 -17
- package/lib/apps/canvas-builder/components/container/PopupApps/PopupAppsButtons.vue.d.ts +0 -18
- package/lib/apps/canvas-builder/components/container/Search/Search.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/SectionInfoProvider/SectionInfoProvider.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +0 -304
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +0 -84
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +0 -326
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +0 -15
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridList.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridListItem.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +0 -14
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +0 -30
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +0 -77
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +0 -21
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +0 -19
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +0 -32
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +0 -20
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.settings.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContentList.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +0 -32
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +0 -650
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +0 -28
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +0 -34
- package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +0 -26
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +0 -299
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +0 -297
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +0 -20
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +0 -301
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +0 -297
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +0 -40
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +0 -358
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +0 -37
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +0 -37
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +0 -41
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +0 -30
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +0 -72
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +0 -25
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCompact.vue.d.ts +0 -18
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListItem.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +0 -21
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +0 -19
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +0 -34
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +0 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +0 -39
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +0 -202
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +0 -28
- package/lib/apps/canvas-selector/App.vue.d.ts +0 -12
- package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +0 -19
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +0 -172
- package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +0 -2
- package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +0 -163
- package/lib/apps/collection-player/App.vue.d.ts +0 -29
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +0 -57
- package/lib/apps/collection-player/components/AppHeader.vue.d.ts +0 -2
- package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +0 -18
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +0 -19
- package/lib/apps/collection-player/components/MainContent.vue.d.ts +0 -5
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +0 -11
- package/lib/apps/collection-player/components/SlideContent.vue.d.ts +0 -8
- package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +0 -2
- package/lib/apps/collection-selector/App.vue.d.ts +0 -33
- package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +0 -8
- package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +0 -9
- package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +0 -7
- package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +0 -17
- package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +0 -5
- package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +0 -13
- package/lib/apps/content-selector/App.vue.d.ts +0 -20
- package/lib/apps/content-selector/components/AiImages.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +0 -8
- package/lib/apps/content-selector/components/Assets.vue.d.ts +0 -76
- package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/AllContent.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +0 -260
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +0 -43
- package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content.vue.d.ts +0 -75
- package/lib/apps/content-selector/components/ExternalLinks.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/MultimediaSelectorApp.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/Navbar.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/ThemeImages.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +0 -68
- package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +0 -11
- package/lib/apps/notes/NotesApp.vue.d.ts +0 -26
- package/lib/apps/notes/components/CustomerReaction.vue.d.ts +0 -2
- package/lib/apps/ppt-conversion-selector/App.vue.d.ts +0 -25
- package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +0 -11
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +0 -8
- package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +0 -6
- package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +0 -17
- package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +0 -2
- package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +0 -14
- package/lib/canvas-comments/components/CommentButton.vue.d.ts +0 -6
- package/lib/canvas-comments/components/CommentableComponent.vue.d.ts +0 -25
- package/lib/canvas-comments/components/SimpleComments.vue.d.ts +0 -14
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +0 -18
- package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +0 -13
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +0 -12
- package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +0 -17
- package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +0 -15
- package/lib/components/CAvatar/CAvatar.vue.d.ts +0 -15
- package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +0 -32
- package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +0 -31
- package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +0 -19
- package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +0 -13
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +0 -71
- package/lib/components/CButton/CButton.vue.d.ts +0 -23
- package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +0 -29
- package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +0 -24
- package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +0 -11
- package/lib/components/CCard/CCard.vue.d.ts +0 -15
- package/lib/components/CCarousel/CCarousel.vue.d.ts +0 -434
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcher.vue.d.ts +0 -5
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +0 -7
- package/lib/components/CCheckbox/CCheckbox.vue.d.ts +0 -15
- package/lib/components/CChip/CChip.vue.d.ts +0 -30
- package/lib/components/CCollapse/CCollapse.vue.d.ts +0 -26
- package/lib/components/CCollapse/CCollapseItem.vue.d.ts +0 -15
- package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +0 -17
- package/lib/components/CColorPicker/CColorPicker.vue.d.ts +0 -15
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +0 -45
- package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +0 -54
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +0 -322
- package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +0 -24
- package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +0 -17
- package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +0 -17
- package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +0 -40
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +0 -32
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +0 -56
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +0 -847
- package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +0 -21
- package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +0 -50
- package/lib/components/CContentError/CContentError.vue.d.ts +0 -11
- package/lib/components/CCreateCanvasModal/CCreateCanvasModal.vue.d.ts +0 -2
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +0 -23
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +0 -307
- package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +0 -19
- package/lib/components/CCreateThemeModal/steps/CThemeAssetsStep.vue.d.ts +0 -19
- package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +0 -10
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +0 -2579
- package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +0 -13
- package/lib/components/CDataTable/CDataTable.vue.d.ts +0 -8637
- package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +0 -19
- package/lib/components/CDivider/CDivider.vue.d.ts +0 -18
- package/lib/components/CDrawer/CDrawer.vue.d.ts +0 -15
- package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +0 -15
- package/lib/components/CDropdown/CDropdown.vue.d.ts +0 -15
- package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +0 -10
- package/lib/components/CEmpty/CEmpty.vue.d.ts +0 -15
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +0 -153
- package/lib/components/CError/CErrorFullScreen.vue.d.ts +0 -38
- package/lib/components/CFeedback/CFeedback.vue.d.ts +0 -30
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +0 -6
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +0 -46
- package/lib/components/CFilePanel/BasicInfo.vue.d.ts +0 -2
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +0 -11
- package/lib/components/CFilePanel/Details.vue.d.ts +0 -2
- package/lib/components/CFilePanel/Metadata.vue.d.ts +0 -2
- package/lib/components/CFilePanel/Tags.vue.d.ts +0 -9
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +0 -15
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +0 -431
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +0 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -53
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +0 -63
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -69
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +0 -379
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +0 -10
- package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +0 -6
- package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +0 -23
- package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +0 -25
- package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +0 -35
- package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +0 -25
- package/lib/components/CFontSelect/CFontSelect.vue.d.ts +0 -12
- package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +0 -11
- package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +0 -5
- package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +0 -72
- package/lib/components/CGlobalSearch/CGlobalSearchResults.vue.d.ts +0 -20
- package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +0 -2
- package/lib/components/CGlobalSearch/CResult.vue.d.ts +0 -15
- package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +0 -23
- package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +0 -33
- package/lib/components/CHeightInput/CHeightInput.vue.d.ts +0 -10
- package/lib/components/CHelpText/CHelpText.vue.d.ts +0 -17
- package/lib/components/CIcon/CIcon.vue.d.ts +0 -13
- package/lib/components/CImage/CImage.vue.d.ts +0 -395
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +0 -23
- package/lib/components/CInput/CInput.vue.d.ts +0 -1157
- package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +0 -24
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +0 -14
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +0 -12
- package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +0 -20
- package/lib/components/CList/CList.vue.d.ts +0 -56
- package/lib/components/CList/CListItem.vue.d.ts +0 -79
- package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +0 -9
- package/lib/components/CModal/CModal.vue.d.ts +0 -15
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +0 -29
- package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +0 -28
- package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +0 -17
- package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +0 -22
- package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +0 -14
- package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +0 -19
- package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +0 -73
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +0 -27
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +0 -14
- package/lib/components/CPopover/CPopover.vue.d.ts +0 -15
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +0 -14
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +0 -10
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +0 -19
- package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +0 -18
- package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +0 -19
- package/lib/components/CRate/CRate.vue.d.ts +0 -15
- package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +0 -25
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +0 -28
- package/lib/components/CRichTextEditor/components/CAiRichTextActions.vue.d.ts +0 -17
- package/lib/components/CRichTextEditor/components/CAlignmentSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +0 -18
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +0 -2671
- package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +0 -33
- package/lib/components/CRichTextEditor/components/CFontDropdown.vue.d.ts +0 -11
- package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +0 -52
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +0 -4870
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +0 -2661
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +0 -1155
- package/lib/components/CRichTextEditor/components/CInsertDropdown.vue.d.ts +0 -19
- package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CListSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CSuggestionList.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +0 -11
- package/lib/components/CRichTextEditor/components/CTextTypeSelect.vue.d.ts +0 -6
- package/lib/components/CSearch/CSearch.vue.d.ts +0 -25
- package/lib/components/CSearch/CSearchOnClick.vue.d.ts +0 -32
- package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +0 -23
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +0 -224
- package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +0 -39
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +0 -19
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +0 -135
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +0 -44
- package/lib/components/CSelect/CSelect.vue.d.ts +0 -20
- package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +0 -10
- package/lib/components/CShortcut/CShortcut.vue.d.ts +0 -17
- package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +0 -6
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +0 -26
- package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +0 -15
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +0 -18
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +0 -14
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +0 -12
- package/lib/components/CSlider/CSlider.vue.d.ts +0 -42
- package/lib/components/CSpin/CSpin.vue.d.ts +0 -15
- package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +0 -14
- package/lib/components/CSwitch/CSwitch.vue.d.ts +0 -29
- package/lib/components/CTable/CTable.vue.d.ts +0 -61
- package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +0 -35
- package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +0 -8
- package/lib/components/CTableInput/CTableInput.vue.d.ts +0 -2337
- package/lib/components/CTableMore/CTableMore.vue.d.ts +0 -24
- package/lib/components/CTableSelect/CTableSelect.vue.d.ts +0 -21
- package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -4940
- package/lib/components/CTag/CTag.vue.d.ts +0 -15
- package/lib/components/CTags/CTags.vue.d.ts +0 -4910
- package/lib/components/CTagsPlaceholder/CTagsPlaceholder.vue.d.ts +0 -6
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +0 -25
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +0 -26
- package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +0 -4
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +0 -20
- package/lib/components/CThumbnail/CThumbnail.vue.d.ts +0 -44
- package/lib/components/CTimeline/CTimeline.vue.d.ts +0 -15
- package/lib/components/CTimeline/CTimelineControl.vue.d.ts +0 -2
- package/lib/components/CTimeline/CTimelineModal.vue.d.ts +0 -12
- package/lib/components/CToastProvider/CToastProvider.vue.d.ts +0 -2
- package/lib/components/CToolbar/CToolbar.vue.d.ts +0 -18
- package/lib/components/CTooltip/CTooltip.vue.d.ts +0 -18
- package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +0 -22
- package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +0 -13
- package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +0 -13
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +0 -303
- package/lib/components/CUserAvatar/CUserAvatar.vue.d.ts +0 -13
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +0 -472
- package/lib/components/CUsersAccessInfo/CUsersAccessInfo.vue.d.ts +0 -13
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +0 -35
- package/lib/components/CVideo/CVideo.vue.d.ts +0 -48
- package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +0 -49
- package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +0 -40
- package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +0 -11
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +0 -456
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +0 -44
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +0 -463
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +0 -25
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +0 -47
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +0 -1352
- package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +0 -51
- package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +0 -10
- package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +0 -54
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +0 -348
- package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +0 -6
- package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +0 -20
- package/lib/components/filters/CCheckboxFilter.vue.d.ts +0 -11
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +0 -26
- package/lib/components/filters/CSearchFilter.vue.d.ts +0 -1264
- package/lib/components/filters/CSelectFilter.vue.d.ts +0 -27
- package/lib/components/savedCanvases/CCanvasAccountModal.vue.d.ts +0 -23
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +0 -805
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +0 -67
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +0 -6
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +0 -1879
- package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +0 -50
- package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +0 -16
- package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +0 -9
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +0 -140
- package/lib/components/savedCanvases/smartFolders/SmartFoldersConfigurationModal.vue.d.ts +0 -6
- package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +0 -11
- package/lib/components/sections/CSectionManagement.vue.d.ts +0 -468
- package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +0 -30
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +0 -48
- package/lib/components/themes/CThemeManagement.vue.d.ts +0 -460
- package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +0 -27
- package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +0 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +0 -47
- package/lib/composables/recentFiles.use.d.ts +0 -12
- package/lib/constants/recentFiles.const.d.ts +0 -4
- package/lib/sdk/api/modules/favorites.d.ts +0 -16
- package/lib/types/favorites.d.ts +0 -5
- package/lib/types/launchDarkly.types.d.ts +0 -53
- package/lib/types/recentFiles.types.d.ts +0 -8
- package/lib/util/network.d.ts +0 -21
- package/lib/util/soql.util.d.ts +0 -2
- package/lib/util/string.d.ts +0 -5
- package/lib/util/user.d.ts +0 -4
- package/{lib → src/lib}/api/apps/apps.queries.d.ts +0 -0
- package/{lib → src/lib}/api/canvases/canvases.queries.d.ts +0 -0
- package/{lib → src/lib}/api/events/events.helpers.d.ts +0 -0
- package/{lib → src/lib}/api/users/users.queries.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/content-warning.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/move-item-modal.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/table-input.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/constants.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/export.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/stores/app.store.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/agenda.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/common.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/move-item-modal.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/utils/data.util.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/utils/theme-overrides.util.d.ts +0 -0
- package/{lib/apps/browser/stores/api.test.d.ts → src/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/composables/useAppEmit.d.ts +0 -0
- package/{lib/apps/browser/stores/app.test.d.ts → src/lib/apps/browser/stores/api.test.d.ts} +0 -0
- package/{lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.test.d.ts → src/lib/apps/browser/stores/app.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/stores/repUploadsStore.d.ts +0 -0
- package/{lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts → src/lib/apps/browser/stores/upload.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/util/file.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/canvas.util.test.d.ts → src/lib/apps/browser/util/sortOrder.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/App.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/container/CanvasContent/canvas-component-map.const.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.types.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/tree.test.d.ts → src/lib/apps/canvas-builder/components/ui/DataCharts/types.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/dynamicContent.const.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/section-component-map.const.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/url.test.d.ts → src/lib/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Link/Link.util.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Scribble/scribble.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -0
- package/{lib/apps/ppt-conversion-selector/utils/data.util.test.d.ts → src/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.test.d.ts} +0 -0
- package/{lib/components/CMultiSelect/CMultiSelect.test.d.ts → src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.spec.d.ts} +0 -0
- package/{lib/components/CSingleSelect/CSingleSelect.test.d.ts → src/lib/apps/canvas-builder/composables/lazySections.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useAiPrompt.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useAnnotation.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasExit.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHistory.d.ts +4 -4
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHooks.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasNodes.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasPages.d.ts +0 -0
- package/{lib/components/CVirtualTable/CVirtualTable.test.d.ts → src/lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasTheme.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasVisibility.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCollapsibles.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCollectionSelector.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useComponentPermissions.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useComponentStyle.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useContentSelector.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useControlBarCollapse.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +0 -0
- package/{lib/components/CVirtualTable/CVirtualTableRow.test.d.ts → src/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useDataTablePrint.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useEmbeddable.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useFetchMostPopularFiles.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePopularity.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePopupApps.d.ts +4 -4
- /package/{lib → src/lib}/apps/canvas-builder/composables/usePrintMode.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useRecommendations.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useReorderComponent.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleToolbar.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionNavigation.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionPopularity.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useTemporaryContext.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/canvas.const.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/defaults.const.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/index.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/sizes.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/theme.const.d.ts +0 -0
- /package/{lib/components/filters/CDateRangeFilter.test.d.ts → src/lib/apps/canvas-builder/courseMode.spec.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/types/font-awesome.types.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/types/recommendations.types.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/canvas.util.d.ts +0 -0
- /package/{lib/components/filters/CSelectFilter.test.d.ts → src/lib/apps/canvas-builder/util/canvas.util.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/clone.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/fetchAnalyticsPopularity.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/file.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/iframe.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/print.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/tiptap-table.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/tree.d.ts +0 -0
- /package/{lib/components/filters/filter.util.spec.d.ts → src/lib/apps/canvas-builder/util/tree.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/url.d.ts +0 -0
- /package/{lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts → src/lib/apps/canvas-builder/util/url.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-selector/appTypes.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-selector/constants/index.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/annotation-layer.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/focus-trap.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/fullscreen.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/image-cache.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/keyboard-bindings.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/laser-pointer-marker.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/markerjs.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/moving-group-gestures.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/navigation-cache.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/new-zoom.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/slide-direction.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/tracking.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/zoom.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/types/collection-player.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/utils/node.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/utils/slide-type.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/content-warning.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/move-slide-modal.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/table-input.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/constants.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/stores/app.store.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/collection-selector.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/common.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/move-slide-modal.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/content-selector-adapter.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/data.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/theme-overrides.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/composables/useMultimediaSelectorApps.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/composables/useStore.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/util/media-type.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/notes/composables/useFullscreenNotesHeartbeat.d.ts +0 -0
- /package/{lib → src/lib}/apps/notes/composables/useNotesApp.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/canvas.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/table-input.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/constants.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/types/model.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/data.util.d.ts +0 -0
- /package/{lib/sdk/api/HighLevelApi.spec.d.ts → src/lib/apps/ppt-conversion-selector/utils/data.util.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +0 -0
- /package/{lib/sdk/api/LowLevelApi.spec.d.ts → src/lib/components/CBatchMoveItemsModal/__tests__/copy-mode.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CCatalogIqSwitcher/CCatalogIqSwitcher.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.validators.d.ts +0 -0
- /package/{lib → src/lib}/components/CContactSelector/CContactSelector.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CDataTable/CDataTableEdit.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFilePanel/CFilePanel.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/CFileViewer.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.events.pdf.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pageThumbMetadata.pdf.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.overlayItems.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewerFullscreen.pdf.use.d.ts +0 -0
- /package/{lib/sdk/main.spec.d.ts → src/lib/components/CFolderTreeMultiPicker/__tests__/CFolderTreeMultiPicker.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/CGlobalSearch.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/GlobalSearch.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/Shortcuts.use.d.ts +0 -0
- /package/{lib/sdk/utils/assert.spec.d.ts → src/lib/components/CMultiSelect/CMultiSelect.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CQuickFilters/CQuickFilters.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/constants.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/bulletListExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/headingExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/mentionSuggestions.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/paragraphExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/textStyleExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CSearchFilters/CSearchFilters.types.d.ts +0 -0
- /package/{lib/sdk/utils/eventEmitter.spec.d.ts → src/lib/components/CSideBar/CSideBar.spec.d.ts} +0 -0
- /package/{lib/sdk/utils/isodate.spec.d.ts → src/lib/components/CSideBar/CSideBarDivider.spec.d.ts} +0 -0
- /package/{lib/sdk/utils/object.spec.d.ts → src/lib/components/CSideBar/CSideBarItem.spec.d.ts} +0 -0
- /package/{lib/util/array.spec.d.ts → src/lib/components/CSideBar/CSideBarLabel.spec.d.ts} +0 -0
- /package/{lib/util/casing.spec.d.ts → src/lib/components/CSideBar/CSideBarToggle.spec.d.ts} +0 -0
- /package/{lib/util/date.spec.d.ts → src/lib/components/CSingleSelect/CSingleSelect.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CVideo/CVideo.types.d.ts +0 -0
- /package/{lib/util/font.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTable.test.d.ts} +0 -0
- /package/{lib/util/location.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTableRow.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementBulk.use.d.ts +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementFilters.use.d.ts +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementToolbarFilters.use.d.ts +0 -0
- /package/{lib/util/message-event.spec.d.ts → src/lib/components/filters/CDateRangeFilter.test.d.ts} +0 -0
- /package/{lib/util/network.spec.d.ts → src/lib/components/filters/CSelectFilter.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/filters/filter.const.d.ts +0 -0
- /package/{lib → src/lib}/components/filters/filter.util.d.ts +0 -0
- /package/{lib/util/number.spec.d.ts → src/lib/components/filters/filter.util.spec.d.ts} +0 -0
- /package/{lib/util/object.spec.d.ts → src/lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts} +0 -0
- /package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/appEmit.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/appsDb.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/fileViewerSettings.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/instanceTagsActions.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/openFileStack.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/suggestedTags.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/tableColumnsSettings.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/useAdminAndDsrState.d.ts +0 -0
- /package/{lib → src/lib}/composables/useAssetUpload.d.ts +0 -0
- /package/{lib → src/lib}/composables/useBindValidation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useBroadcastRouteChange.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasLocks.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasOverlay.d.ts +0 -0
- /package/{lib/util/reactive.spec.d.ts → src/lib/composables/useCanvasRendererExcludedTags.spec.d.ts} +0 -0
- /package/{lib → src/lib}/composables/useCanvasStandardFilters.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasTablesPagination.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCollectionPlayerOverlay.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCommentTracking.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCommentsStorage.d.ts +0 -0
- /package/{lib → src/lib}/composables/useConfirmation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useConnectUpload.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCoreApi.d.ts +0 -0
- /package/{lib → src/lib}/composables/useDeleteUsedCanvasesConfirmation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useElementHeightResize.d.ts +0 -0
- /package/{lib → src/lib}/composables/useElementSizeAfterDom.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFetchUsers.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFileDisplayHelpers.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFileInfo.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFilterSuggestions.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFolderNameDescription.d.ts +0 -0
- /package/{lib/util/sfdc.util.spec.d.ts → src/lib/composables/useHomeCustomization.spec.d.ts} +0 -0
- /package/{lib → src/lib}/composables/useImageAccessibility.d.ts +0 -0
- /package/{lib → src/lib}/composables/useInfiniteScroll.d.ts +0 -0
- /package/{lib → src/lib}/composables/useInstalledApps.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLegacyCollectionFileLoader.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationAPI.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationListeners.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationManipulation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useMetadataSearch.d.ts +0 -0
- /package/{lib → src/lib}/composables/usePdfInterpolation.d.ts +0 -0
- /package/{lib → src/lib}/composables/usePolling.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSharedCommentsStorage.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSharedTranslations.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSmartStore.d.ts +0 -0
- /package/{lib → src/lib}/composables/useTheme.d.ts +0 -0
- /package/{lib → src/lib}/composables/useToast.d.ts +0 -0
- /package/{lib → src/lib}/constants/appsDb.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/color.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/config.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/conventions.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/dimensions.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/i18n.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/modal.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/more.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/pitcherSettings.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/query-builder.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/roles.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/tables.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/timers.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/uploads.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/url.const.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/el.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/it.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/ja.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/nl.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/pt-br.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/pt.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/th.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/zh.d.ts +0 -0
- /package/{lib → src/lib}/directives/autofocus.d.ts +0 -0
- /package/{lib → src/lib}/directives/clickOutside.d.ts +0 -0
- /package/{lib → src/lib}/directives/draggable.d.ts +0 -0
- /package/{lib → src/lib}/directives/element-mounted.d.ts +0 -0
- /package/{lib → src/lib}/directives/tap.d.ts +0 -0
- /package/{lib → src/lib}/directives/tooltip.d.ts +0 -0
- /package/{lib → src/lib}/directives/vTrustedHtml.d.ts +0 -0
- /package/{lib → src/lib}/plugins/vueQuery.d.ts +0 -0
- /package/{lib/util/smart-store.util.spec.d.ts → src/lib/sdk/api/HighLevelApi.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/api/LowLevelApi.d.ts +0 -0
- /package/{lib/util/timer.spec.d.ts → src/lib/sdk/api/LowLevelApi.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/app-errors.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/canvas.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/content.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/env.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/files.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/metadataTemplates.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/types.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/users.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/env.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/files.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/loading.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/types.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/env.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/feedback.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/filesRevisions.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/folders.core.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/folders.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/languages.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/metadataTemplates.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/notifications.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/open.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/pspdfkit.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/query.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/search.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/share.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/sync.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/theme.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/toast.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/track.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/app-errors.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/canvas.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/content.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/loading.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/location.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/pia.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/post-call.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/sharing.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/types.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/users.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/webView.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/onlineRestApiHandlers.d.ts +0 -0
- /package/{lib/util/translations.spec.d.ts → src/lib/sdk/main.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/main.umd-esm.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.constants.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.types.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/assert.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/cleanUrl.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/eventEmitter.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/httpFetch.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/isodate.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/object.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/postrobot.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/window.d.ts +0 -0
- /package/{lib → src/lib}/stores/sectionSmartFolderStore.d.ts +0 -0
- /package/{lib → src/lib}/theme/canvasUiUnoPreset.d.ts +0 -0
- /package/{lib → src/lib}/theme/daisyUi.d.ts +0 -0
- /package/{lib → src/lib}/theme/light.const.d.ts +0 -0
- /package/{lib → src/lib}/theme/main.d.ts +0 -0
- /package/{lib → src/lib}/theme/theme-overrides.d.ts +0 -0
- /package/{lib → src/lib}/theme/theme.utils.d.ts +0 -0
- /package/{lib → src/lib}/types/app.d.ts +0 -0
- /package/{lib → src/lib}/types/background.d.ts +0 -0
- /package/{lib → src/lib}/types/call.d.ts +0 -0
- /package/{lib → src/lib}/types/canvasActions.d.ts +0 -0
- /package/{lib → src/lib}/types/canvasTheme.d.ts +0 -0
- /package/{lib → src/lib}/types/canvases.d.ts +0 -0
- /package/{lib → src/lib}/types/common.d.ts +0 -0
- /package/{lib → src/lib}/types/core/MetadataFilter.d.ts +0 -0
- /package/{lib → src/lib}/types/core/UpsertPptxSlideImages.d.ts +0 -0
- /package/{lib → src/lib}/types/core/index.d.ts +0 -0
- /package/{lib → src/lib}/types/dataTable.d.ts +0 -0
- /package/{lib → src/lib}/types/file.types.d.ts +0 -0
- /package/{lib → src/lib}/types/fileViewerSettings.types.d.ts +0 -0
- /package/{lib → src/lib}/types/filter.d.ts +0 -0
- /package/{lib → src/lib}/types/folder.d.ts +0 -0
- /package/{lib → src/lib}/types/i18n.types.d.ts +0 -0
- /package/{lib → src/lib}/types/iframes.d.ts +0 -0
- /package/{lib → src/lib}/types/instance.types.d.ts +0 -0
- /package/{lib → src/lib}/types/instanceTags.types.d.ts +0 -0
- /package/{lib → src/lib}/types/metadataHighlightProperty.d.ts +0 -0
- /package/{lib → src/lib}/types/organization.types.d.ts +0 -0
- /package/{lib → src/lib}/types/organizationMetadata.types.d.ts +0 -0
- /package/{lib → src/lib}/types/paginatedData.d.ts +0 -0
- /package/{lib → src/lib}/types/query-builder.types.d.ts +0 -0
- /package/{lib → src/lib}/types/search.d.ts +0 -0
- /package/{lib → src/lib}/types/sectionPopularity.d.ts +0 -0
- /package/{lib → src/lib}/types/selections.d.ts +0 -0
- /package/{lib → src/lib}/types/sfdc.d.ts +0 -0
- /package/{lib → src/lib}/types/toast.d.ts +0 -0
- /package/{lib → src/lib}/types/translations.d.ts +0 -0
- /package/{lib → src/lib}/types/ts.d.ts +0 -0
- /package/{lib → src/lib}/types/users.d.ts +0 -0
- /package/{lib → src/lib}/types/vueVirtualScroller.d.ts +0 -0
- /package/{lib → src/lib}/util/anchor.d.ts +0 -0
- /package/{lib → src/lib}/util/app.util.d.ts +0 -0
- /package/{lib → src/lib}/util/canvas-manager.util.d.ts +0 -0
- /package/{lib → src/lib}/util/casing.d.ts +0 -0
- /package/{lib → src/lib}/util/color.d.ts +0 -0
- /package/{lib → src/lib}/util/date.d.ts +0 -0
- /package/{lib → src/lib}/util/dev.util.d.ts +0 -0
- /package/{lib → src/lib}/util/dom.d.ts +0 -0
- /package/{lib → src/lib}/util/eval.d.ts +0 -0
- /package/{lib → src/lib}/util/file.util.d.ts +0 -0
- /package/{lib → src/lib}/util/font.util.d.ts +0 -0
- /package/{lib → src/lib}/util/image.d.ts +0 -0
- /package/{lib → src/lib}/util/jwt.d.ts +0 -0
- /package/{lib → src/lib}/util/location.util.d.ts +0 -0
- /package/{lib → src/lib}/util/message-event.d.ts +0 -0
- /package/{lib → src/lib}/util/navigation.util.d.ts +0 -0
- /package/{lib → src/lib}/util/number.d.ts +0 -0
- /package/{lib → src/lib}/util/object.d.ts +0 -0
- /package/{lib → src/lib}/util/pitcher-settings.util.d.ts +0 -0
- /package/{lib → src/lib}/util/query-builder.util.d.ts +0 -0
- /package/{lib → src/lib}/util/query.d.ts +0 -0
- /package/{lib → src/lib}/util/reactive.d.ts +0 -0
- /package/{lib → src/lib}/util/sfdc.util.d.ts +0 -0
- /package/{lib → src/lib}/util/smart-store.util.d.ts +0 -0
- /package/{lib → src/lib}/util/storage.util.d.ts +0 -0
- /package/{lib → src/lib}/util/style.util.d.ts +0 -0
- /package/{lib → src/lib}/util/timer.d.ts +0 -0
- /package/{lib → src/lib}/util/toCssClassKey.d.ts +0 -0
- /package/{lib → src/lib}/util/translations.d.ts +0 -0
- /package/{lib → src/lib}/util/tree-transformation.util.d.ts +0 -0
- /package/{lib → src/lib}/util/tsHelpers.d.ts +0 -0
- /package/{lib → src/lib}/util/url.d.ts +0 -0
- /package/{lib → src/lib}/util/userAgents.d.ts +0 -0
- /package/{lib → src/lib}/utils/iframeInitialize.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AccessTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Account.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AccountRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/App.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppInstallationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppOrganization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppPublish.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppRelease.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppsDBEntry.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppsDBEntryRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AuthToken.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AuthTokenRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteErrorDetail.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteMixedObjectsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteResponse.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadata.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataOperationEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTags.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsOperationEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasRecommendedFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasRecommendedFiles.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasSection.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Collaboration.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationRoleEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ConnectedService.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DefaultExpiresAtEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedEnvironment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFavorite.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedInstanceAssignmentGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedMetadataTemplate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedRegion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DownloadTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Environment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Event.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventAttendee.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventAttendeeRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObject.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObjectContentTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObjectRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Favorite.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFolderRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/File.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileAnalyticsResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileContentTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FilePermission.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FilePermissionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRetrieve.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRevision.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileVersion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Folder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderRule.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderRuleRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Instance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsChangePercentages.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsCurrentPeriod.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFileActivity.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsers.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsersRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsLoginResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipRoleEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUserStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Invitation.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InvitationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InvitationStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/LanguageEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateField.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateFieldRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateOption.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateOptionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateSection.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateSectionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniCanvasRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEnvironment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEvent.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFolderRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniInstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniPage.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniRegion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniRegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniSharedLink.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniSharedLinkRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MostActiveUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OfflineSyncFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OperatorEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Organization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsCurrentPeriod.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsers.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsersRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsLoginResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationBranding.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationBrandingColors.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationChangePercentages.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitAuthPayload.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitAuthPayloadRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitToken.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitTokenRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedAppList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedAuthTokenList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedCanvasList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedCollaborationList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedEnvironmentList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedEventList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFavoriteList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFileList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFileRevisionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFolderList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInvitationList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedMetadataTemplateList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedOfflineSyncFolderList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedRegionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedRevisionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedSearchResultList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedUserList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCanvasIndicatorsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCanvasUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCollaborationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedEnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedEventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFavoriteUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFilePublishRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFileRevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFileUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFolderUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceAssignmentGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceMembershipRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedMetadataTemplateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedOrganizationUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedRegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Region.d.ts +0 -0
- /package/{types → src/types}/openapi/models/RegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Revision.d.ts +0 -0
- /package/{types → src/types}/openapi/models/RevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchApp.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLink.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCanvasRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkInstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkOrganization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkOrganizationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/StorageRegionEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Tag.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UploadCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UploadCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/User.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UserRoleEnum.d.ts +0 -0
|
@@ -1,2671 +0,0 @@
|
|
|
1
|
-
import { StyleValue } from 'vue';
|
|
2
|
-
import { TreeSelectOverrideNodeClickBehavior } from 'naive-ui';
|
|
3
|
-
type __VLS_Props = {
|
|
4
|
-
allowMultiple?: boolean;
|
|
5
|
-
data: Record<string, any>;
|
|
6
|
-
themeOverrides?: {
|
|
7
|
-
active: StyleValue;
|
|
8
|
-
default: StyleValue;
|
|
9
|
-
};
|
|
10
|
-
allowArrays?: boolean;
|
|
11
|
-
};
|
|
12
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
-
select: (value: string) => any;
|
|
14
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
-
onSelect?: ((value: string) => any) | undefined;
|
|
16
|
-
}>, {
|
|
17
|
-
allowMultiple: boolean;
|
|
18
|
-
allowArrays: boolean;
|
|
19
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
20
|
-
popoverRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
-
internalOnAfterLeave: import('vue').PropType<() => void>;
|
|
22
|
-
internalRenderBody: import('vue').PropType<import('naive-ui/es/popover/src/interface').InternalRenderBody>;
|
|
23
|
-
show: {
|
|
24
|
-
type: import('vue').PropType<boolean | undefined>;
|
|
25
|
-
default: undefined;
|
|
26
|
-
};
|
|
27
|
-
defaultShow: BooleanConstructor;
|
|
28
|
-
showArrow: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
trigger: {
|
|
33
|
-
type: import('vue').PropType<import('naive-ui').PopoverTrigger>;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
delay: {
|
|
37
|
-
type: NumberConstructor;
|
|
38
|
-
default: number;
|
|
39
|
-
};
|
|
40
|
-
duration: {
|
|
41
|
-
type: NumberConstructor;
|
|
42
|
-
default: number;
|
|
43
|
-
};
|
|
44
|
-
raw: BooleanConstructor;
|
|
45
|
-
placement: {
|
|
46
|
-
type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
x: NumberConstructor;
|
|
50
|
-
y: NumberConstructor;
|
|
51
|
-
arrowPointToCenter: BooleanConstructor;
|
|
52
|
-
disabled: BooleanConstructor;
|
|
53
|
-
getDisabled: import('vue').PropType<() => boolean>;
|
|
54
|
-
displayDirective: {
|
|
55
|
-
type: import('vue').PropType<"if" | "show">;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
arrowClass: StringConstructor;
|
|
59
|
-
arrowStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
60
|
-
arrowWrapperClass: StringConstructor;
|
|
61
|
-
arrowWrapperStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
62
|
-
flip: {
|
|
63
|
-
type: BooleanConstructor;
|
|
64
|
-
default: boolean;
|
|
65
|
-
};
|
|
66
|
-
animated: {
|
|
67
|
-
type: BooleanConstructor;
|
|
68
|
-
default: boolean;
|
|
69
|
-
};
|
|
70
|
-
width: {
|
|
71
|
-
type: import('vue').PropType<number | "trigger">;
|
|
72
|
-
default: undefined;
|
|
73
|
-
};
|
|
74
|
-
overlap: BooleanConstructor;
|
|
75
|
-
keepAliveOnHover: {
|
|
76
|
-
type: BooleanConstructor;
|
|
77
|
-
default: boolean;
|
|
78
|
-
};
|
|
79
|
-
zIndex: NumberConstructor;
|
|
80
|
-
to: {
|
|
81
|
-
type: import('vue').PropType<HTMLElement | string | boolean>;
|
|
82
|
-
default: undefined;
|
|
83
|
-
};
|
|
84
|
-
scrollable: BooleanConstructor;
|
|
85
|
-
contentClass: StringConstructor;
|
|
86
|
-
contentStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
87
|
-
headerClass: StringConstructor;
|
|
88
|
-
headerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
89
|
-
footerClass: StringConstructor;
|
|
90
|
-
footerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
91
|
-
onClickoutside: import('vue').PropType<(e: MouseEvent) => void>;
|
|
92
|
-
'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
|
|
93
|
-
onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
|
|
94
|
-
internalDeactivateImmediately: BooleanConstructor;
|
|
95
|
-
internalSyncTargetWithParent: BooleanConstructor;
|
|
96
|
-
internalInheritedEventHandlers: {
|
|
97
|
-
type: import('vue').PropType<import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[]>;
|
|
98
|
-
default: () => never[];
|
|
99
|
-
};
|
|
100
|
-
internalTrapFocus: BooleanConstructor;
|
|
101
|
-
internalExtraClass: {
|
|
102
|
-
type: import('vue').PropType<string[]>;
|
|
103
|
-
default: () => never[];
|
|
104
|
-
};
|
|
105
|
-
onShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void> | undefined>;
|
|
106
|
-
onHide: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void> | undefined>;
|
|
107
|
-
arrow: {
|
|
108
|
-
type: import('vue').PropType<boolean | undefined>;
|
|
109
|
-
default: undefined;
|
|
110
|
-
};
|
|
111
|
-
minWidth: NumberConstructor;
|
|
112
|
-
maxWidth: NumberConstructor;
|
|
113
|
-
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
114
|
-
fontSize: string;
|
|
115
|
-
borderRadius: string;
|
|
116
|
-
color: string;
|
|
117
|
-
dividerColor: string;
|
|
118
|
-
textColor: string;
|
|
119
|
-
boxShadow: string;
|
|
120
|
-
space: string;
|
|
121
|
-
spaceArrow: string;
|
|
122
|
-
arrowOffset: string;
|
|
123
|
-
arrowOffsetVertical: string;
|
|
124
|
-
arrowHeight: string;
|
|
125
|
-
padding: string;
|
|
126
|
-
}, {
|
|
127
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
128
|
-
height: string;
|
|
129
|
-
width: string;
|
|
130
|
-
borderRadius: string;
|
|
131
|
-
color: string;
|
|
132
|
-
colorHover: string;
|
|
133
|
-
railInsetHorizontalBottom: string;
|
|
134
|
-
railInsetHorizontalTop: string;
|
|
135
|
-
railInsetVerticalRight: string;
|
|
136
|
-
railInsetVerticalLeft: string;
|
|
137
|
-
railColor: string;
|
|
138
|
-
}, any>;
|
|
139
|
-
}>>;
|
|
140
|
-
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
141
|
-
fontSize: string;
|
|
142
|
-
borderRadius: string;
|
|
143
|
-
color: string;
|
|
144
|
-
dividerColor: string;
|
|
145
|
-
textColor: string;
|
|
146
|
-
boxShadow: string;
|
|
147
|
-
space: string;
|
|
148
|
-
spaceArrow: string;
|
|
149
|
-
arrowOffset: string;
|
|
150
|
-
arrowOffsetVertical: string;
|
|
151
|
-
arrowHeight: string;
|
|
152
|
-
padding: string;
|
|
153
|
-
}, {
|
|
154
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
155
|
-
height: string;
|
|
156
|
-
width: string;
|
|
157
|
-
borderRadius: string;
|
|
158
|
-
color: string;
|
|
159
|
-
colorHover: string;
|
|
160
|
-
railInsetHorizontalBottom: string;
|
|
161
|
-
railInsetHorizontalTop: string;
|
|
162
|
-
railInsetVerticalRight: string;
|
|
163
|
-
railInsetVerticalLeft: string;
|
|
164
|
-
railColor: string;
|
|
165
|
-
}, any>;
|
|
166
|
-
}>>>;
|
|
167
|
-
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
168
|
-
fontSize: string;
|
|
169
|
-
borderRadius: string;
|
|
170
|
-
color: string;
|
|
171
|
-
dividerColor: string;
|
|
172
|
-
textColor: string;
|
|
173
|
-
boxShadow: string;
|
|
174
|
-
space: string;
|
|
175
|
-
spaceArrow: string;
|
|
176
|
-
arrowOffset: string;
|
|
177
|
-
arrowOffsetVertical: string;
|
|
178
|
-
arrowHeight: string;
|
|
179
|
-
padding: string;
|
|
180
|
-
}, {
|
|
181
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
182
|
-
height: string;
|
|
183
|
-
width: string;
|
|
184
|
-
borderRadius: string;
|
|
185
|
-
color: string;
|
|
186
|
-
colorHover: string;
|
|
187
|
-
railInsetHorizontalBottom: string;
|
|
188
|
-
railInsetHorizontalTop: string;
|
|
189
|
-
railInsetVerticalRight: string;
|
|
190
|
-
railInsetVerticalLeft: string;
|
|
191
|
-
railColor: string;
|
|
192
|
-
}, any>;
|
|
193
|
-
}>>>;
|
|
194
|
-
}>> & Readonly<{}>, {
|
|
195
|
-
binderInstRef: import('vue').Ref<{
|
|
196
|
-
targetRef: HTMLElement | null;
|
|
197
|
-
} | null, import('vueuc').BinderInst | {
|
|
198
|
-
targetRef: HTMLElement | null;
|
|
199
|
-
} | null>;
|
|
200
|
-
positionManually: import('vue').ComputedRef<boolean>;
|
|
201
|
-
mergedShowConsideringDisabledProp: import('vue').ComputedRef<boolean>;
|
|
202
|
-
uncontrolledShow: import('vue').Ref<boolean, boolean>;
|
|
203
|
-
mergedShowArrow: import('vue').ComputedRef<boolean>;
|
|
204
|
-
getMergedShow: () => boolean;
|
|
205
|
-
setShow: (value: boolean) => void;
|
|
206
|
-
handleClick: () => void;
|
|
207
|
-
handleMouseEnter: () => void;
|
|
208
|
-
handleMouseLeave: () => void;
|
|
209
|
-
handleFocus: () => void;
|
|
210
|
-
handleBlur: () => void;
|
|
211
|
-
syncPosition: () => void;
|
|
212
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
213
|
-
disabled: boolean;
|
|
214
|
-
raw: boolean;
|
|
215
|
-
to: string | boolean | HTMLElement;
|
|
216
|
-
placement: import('naive-ui').PopoverPlacement;
|
|
217
|
-
width: number | "trigger";
|
|
218
|
-
show: boolean | undefined;
|
|
219
|
-
showArrow: boolean;
|
|
220
|
-
trigger: import('naive-ui').PopoverTrigger;
|
|
221
|
-
arrow: boolean | undefined;
|
|
222
|
-
defaultShow: boolean;
|
|
223
|
-
delay: number;
|
|
224
|
-
duration: number;
|
|
225
|
-
arrowPointToCenter: boolean;
|
|
226
|
-
displayDirective: "show" | "if";
|
|
227
|
-
flip: boolean;
|
|
228
|
-
animated: boolean;
|
|
229
|
-
overlap: boolean;
|
|
230
|
-
keepAliveOnHover: boolean;
|
|
231
|
-
scrollable: boolean;
|
|
232
|
-
internalDeactivateImmediately: boolean;
|
|
233
|
-
internalSyncTargetWithParent: boolean;
|
|
234
|
-
internalInheritedEventHandlers: import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[];
|
|
235
|
-
internalTrapFocus: boolean;
|
|
236
|
-
internalExtraClass: string[];
|
|
237
|
-
}, true, {}, import('vue').SlotsType<import('naive-ui').PopoverSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
238
|
-
P: {};
|
|
239
|
-
B: {};
|
|
240
|
-
D: {};
|
|
241
|
-
C: {};
|
|
242
|
-
M: {};
|
|
243
|
-
Defaults: {};
|
|
244
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
245
|
-
internalOnAfterLeave: import('vue').PropType<() => void>;
|
|
246
|
-
internalRenderBody: import('vue').PropType<import('naive-ui/es/popover/src/interface').InternalRenderBody>;
|
|
247
|
-
show: {
|
|
248
|
-
type: import('vue').PropType<boolean | undefined>;
|
|
249
|
-
default: undefined;
|
|
250
|
-
};
|
|
251
|
-
defaultShow: BooleanConstructor;
|
|
252
|
-
showArrow: {
|
|
253
|
-
type: BooleanConstructor;
|
|
254
|
-
default: boolean;
|
|
255
|
-
};
|
|
256
|
-
trigger: {
|
|
257
|
-
type: import('vue').PropType<import('naive-ui').PopoverTrigger>;
|
|
258
|
-
default: string;
|
|
259
|
-
};
|
|
260
|
-
delay: {
|
|
261
|
-
type: NumberConstructor;
|
|
262
|
-
default: number;
|
|
263
|
-
};
|
|
264
|
-
duration: {
|
|
265
|
-
type: NumberConstructor;
|
|
266
|
-
default: number;
|
|
267
|
-
};
|
|
268
|
-
raw: BooleanConstructor;
|
|
269
|
-
placement: {
|
|
270
|
-
type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
|
|
271
|
-
default: string;
|
|
272
|
-
};
|
|
273
|
-
x: NumberConstructor;
|
|
274
|
-
y: NumberConstructor;
|
|
275
|
-
arrowPointToCenter: BooleanConstructor;
|
|
276
|
-
disabled: BooleanConstructor;
|
|
277
|
-
getDisabled: import('vue').PropType<() => boolean>;
|
|
278
|
-
displayDirective: {
|
|
279
|
-
type: import('vue').PropType<"if" | "show">;
|
|
280
|
-
default: string;
|
|
281
|
-
};
|
|
282
|
-
arrowClass: StringConstructor;
|
|
283
|
-
arrowStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
284
|
-
arrowWrapperClass: StringConstructor;
|
|
285
|
-
arrowWrapperStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
286
|
-
flip: {
|
|
287
|
-
type: BooleanConstructor;
|
|
288
|
-
default: boolean;
|
|
289
|
-
};
|
|
290
|
-
animated: {
|
|
291
|
-
type: BooleanConstructor;
|
|
292
|
-
default: boolean;
|
|
293
|
-
};
|
|
294
|
-
width: {
|
|
295
|
-
type: import('vue').PropType<number | "trigger">;
|
|
296
|
-
default: undefined;
|
|
297
|
-
};
|
|
298
|
-
overlap: BooleanConstructor;
|
|
299
|
-
keepAliveOnHover: {
|
|
300
|
-
type: BooleanConstructor;
|
|
301
|
-
default: boolean;
|
|
302
|
-
};
|
|
303
|
-
zIndex: NumberConstructor;
|
|
304
|
-
to: {
|
|
305
|
-
type: import('vue').PropType<HTMLElement | string | boolean>;
|
|
306
|
-
default: undefined;
|
|
307
|
-
};
|
|
308
|
-
scrollable: BooleanConstructor;
|
|
309
|
-
contentClass: StringConstructor;
|
|
310
|
-
contentStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
311
|
-
headerClass: StringConstructor;
|
|
312
|
-
headerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
313
|
-
footerClass: StringConstructor;
|
|
314
|
-
footerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
315
|
-
onClickoutside: import('vue').PropType<(e: MouseEvent) => void>;
|
|
316
|
-
'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
|
|
317
|
-
onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void>>;
|
|
318
|
-
internalDeactivateImmediately: BooleanConstructor;
|
|
319
|
-
internalSyncTargetWithParent: BooleanConstructor;
|
|
320
|
-
internalInheritedEventHandlers: {
|
|
321
|
-
type: import('vue').PropType<import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[]>;
|
|
322
|
-
default: () => never[];
|
|
323
|
-
};
|
|
324
|
-
internalTrapFocus: BooleanConstructor;
|
|
325
|
-
internalExtraClass: {
|
|
326
|
-
type: import('vue').PropType<string[]>;
|
|
327
|
-
default: () => never[];
|
|
328
|
-
};
|
|
329
|
-
onShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void> | undefined>;
|
|
330
|
-
onHide: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(value: boolean) => void> | undefined>;
|
|
331
|
-
arrow: {
|
|
332
|
-
type: import('vue').PropType<boolean | undefined>;
|
|
333
|
-
default: undefined;
|
|
334
|
-
};
|
|
335
|
-
minWidth: NumberConstructor;
|
|
336
|
-
maxWidth: NumberConstructor;
|
|
337
|
-
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
338
|
-
fontSize: string;
|
|
339
|
-
borderRadius: string;
|
|
340
|
-
color: string;
|
|
341
|
-
dividerColor: string;
|
|
342
|
-
textColor: string;
|
|
343
|
-
boxShadow: string;
|
|
344
|
-
space: string;
|
|
345
|
-
spaceArrow: string;
|
|
346
|
-
arrowOffset: string;
|
|
347
|
-
arrowOffsetVertical: string;
|
|
348
|
-
arrowHeight: string;
|
|
349
|
-
padding: string;
|
|
350
|
-
}, {
|
|
351
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
352
|
-
height: string;
|
|
353
|
-
width: string;
|
|
354
|
-
borderRadius: string;
|
|
355
|
-
color: string;
|
|
356
|
-
colorHover: string;
|
|
357
|
-
railInsetHorizontalBottom: string;
|
|
358
|
-
railInsetHorizontalTop: string;
|
|
359
|
-
railInsetVerticalRight: string;
|
|
360
|
-
railInsetVerticalLeft: string;
|
|
361
|
-
railColor: string;
|
|
362
|
-
}, any>;
|
|
363
|
-
}>>;
|
|
364
|
-
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
365
|
-
fontSize: string;
|
|
366
|
-
borderRadius: string;
|
|
367
|
-
color: string;
|
|
368
|
-
dividerColor: string;
|
|
369
|
-
textColor: string;
|
|
370
|
-
boxShadow: string;
|
|
371
|
-
space: string;
|
|
372
|
-
spaceArrow: string;
|
|
373
|
-
arrowOffset: string;
|
|
374
|
-
arrowOffsetVertical: string;
|
|
375
|
-
arrowHeight: string;
|
|
376
|
-
padding: string;
|
|
377
|
-
}, {
|
|
378
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
379
|
-
height: string;
|
|
380
|
-
width: string;
|
|
381
|
-
borderRadius: string;
|
|
382
|
-
color: string;
|
|
383
|
-
colorHover: string;
|
|
384
|
-
railInsetHorizontalBottom: string;
|
|
385
|
-
railInsetHorizontalTop: string;
|
|
386
|
-
railInsetVerticalRight: string;
|
|
387
|
-
railInsetVerticalLeft: string;
|
|
388
|
-
railColor: string;
|
|
389
|
-
}, any>;
|
|
390
|
-
}>>>;
|
|
391
|
-
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
392
|
-
fontSize: string;
|
|
393
|
-
borderRadius: string;
|
|
394
|
-
color: string;
|
|
395
|
-
dividerColor: string;
|
|
396
|
-
textColor: string;
|
|
397
|
-
boxShadow: string;
|
|
398
|
-
space: string;
|
|
399
|
-
spaceArrow: string;
|
|
400
|
-
arrowOffset: string;
|
|
401
|
-
arrowOffsetVertical: string;
|
|
402
|
-
arrowHeight: string;
|
|
403
|
-
padding: string;
|
|
404
|
-
}, {
|
|
405
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
406
|
-
height: string;
|
|
407
|
-
width: string;
|
|
408
|
-
borderRadius: string;
|
|
409
|
-
color: string;
|
|
410
|
-
colorHover: string;
|
|
411
|
-
railInsetHorizontalBottom: string;
|
|
412
|
-
railInsetHorizontalTop: string;
|
|
413
|
-
railInsetVerticalRight: string;
|
|
414
|
-
railInsetVerticalLeft: string;
|
|
415
|
-
railColor: string;
|
|
416
|
-
}, any>;
|
|
417
|
-
}>>>;
|
|
418
|
-
}>> & Readonly<{}>, {
|
|
419
|
-
binderInstRef: import('vue').Ref<{
|
|
420
|
-
targetRef: HTMLElement | null;
|
|
421
|
-
} | null, import('vueuc').BinderInst | {
|
|
422
|
-
targetRef: HTMLElement | null;
|
|
423
|
-
} | null>;
|
|
424
|
-
positionManually: import('vue').ComputedRef<boolean>;
|
|
425
|
-
mergedShowConsideringDisabledProp: import('vue').ComputedRef<boolean>;
|
|
426
|
-
uncontrolledShow: import('vue').Ref<boolean, boolean>;
|
|
427
|
-
mergedShowArrow: import('vue').ComputedRef<boolean>;
|
|
428
|
-
getMergedShow: () => boolean;
|
|
429
|
-
setShow: (value: boolean) => void;
|
|
430
|
-
handleClick: () => void;
|
|
431
|
-
handleMouseEnter: () => void;
|
|
432
|
-
handleMouseLeave: () => void;
|
|
433
|
-
handleFocus: () => void;
|
|
434
|
-
handleBlur: () => void;
|
|
435
|
-
syncPosition: () => void;
|
|
436
|
-
}, {}, {}, {}, {
|
|
437
|
-
disabled: boolean;
|
|
438
|
-
raw: boolean;
|
|
439
|
-
to: string | boolean | HTMLElement;
|
|
440
|
-
placement: import('naive-ui').PopoverPlacement;
|
|
441
|
-
width: number | "trigger";
|
|
442
|
-
show: boolean | undefined;
|
|
443
|
-
showArrow: boolean;
|
|
444
|
-
trigger: import('naive-ui').PopoverTrigger;
|
|
445
|
-
arrow: boolean | undefined;
|
|
446
|
-
defaultShow: boolean;
|
|
447
|
-
delay: number;
|
|
448
|
-
duration: number;
|
|
449
|
-
arrowPointToCenter: boolean;
|
|
450
|
-
displayDirective: "show" | "if";
|
|
451
|
-
flip: boolean;
|
|
452
|
-
animated: boolean;
|
|
453
|
-
overlap: boolean;
|
|
454
|
-
keepAliveOnHover: boolean;
|
|
455
|
-
scrollable: boolean;
|
|
456
|
-
internalDeactivateImmediately: boolean;
|
|
457
|
-
internalSyncTargetWithParent: boolean;
|
|
458
|
-
internalInheritedEventHandlers: import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[];
|
|
459
|
-
internalTrapFocus: boolean;
|
|
460
|
-
internalExtraClass: string[];
|
|
461
|
-
}> | null;
|
|
462
|
-
treeSelectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
463
|
-
readonly renderLabel: import('vue').PropType<import('naive-ui').TreeSelectRenderLabel>;
|
|
464
|
-
readonly renderPrefix: import('vue').PropType<import('naive-ui').TreeSelectRenderPrefix>;
|
|
465
|
-
readonly renderSuffix: import('vue').PropType<import('naive-ui').TreeSelectRenderSuffix>;
|
|
466
|
-
readonly nodeProps: import('vue').PropType<import('naive-ui').TreeSelectNodeProps>;
|
|
467
|
-
readonly watchProps: import('vue').PropType<Array<"defaultCheckedKeys" | "defaultSelectedKeys" | "defaultExpandedKeys">>;
|
|
468
|
-
readonly getChildren: import('vue').PropType<import('naive-ui/es/tree/src/interface').GetChildren>;
|
|
469
|
-
readonly onBlur: import('vue').PropType<(e: FocusEvent) => void>;
|
|
470
|
-
readonly onFocus: import('vue').PropType<(e: FocusEvent) => void>;
|
|
471
|
-
readonly onLoad: import('vue').PropType<(node: import('naive-ui').TreeSelectOption) => Promise<void>>;
|
|
472
|
-
readonly onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(show: boolean) => void>>;
|
|
473
|
-
readonly onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree-select/src/interface').OnUpdateValue>>;
|
|
474
|
-
readonly 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree-select/src/interface').OnUpdateValue>>;
|
|
475
|
-
readonly 'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(show: boolean) => void>>;
|
|
476
|
-
readonly leafOnly: BooleanConstructor;
|
|
477
|
-
readonly allowCheckingNotLoaded: BooleanConstructor;
|
|
478
|
-
readonly filter: import('vue').PropType<(pattern: string, node: import('naive-ui').TreeOption) => boolean>;
|
|
479
|
-
readonly defaultExpandAll: BooleanConstructor;
|
|
480
|
-
readonly expandedKeys: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
481
|
-
readonly keyField: {
|
|
482
|
-
readonly type: StringConstructor;
|
|
483
|
-
readonly default: "key";
|
|
484
|
-
};
|
|
485
|
-
readonly labelField: {
|
|
486
|
-
readonly type: StringConstructor;
|
|
487
|
-
readonly default: "label";
|
|
488
|
-
};
|
|
489
|
-
readonly childrenField: {
|
|
490
|
-
readonly type: StringConstructor;
|
|
491
|
-
readonly default: "children";
|
|
492
|
-
};
|
|
493
|
-
readonly disabledField: {
|
|
494
|
-
readonly type: StringConstructor;
|
|
495
|
-
readonly default: "disabled";
|
|
496
|
-
};
|
|
497
|
-
readonly defaultExpandedKeys: {
|
|
498
|
-
readonly type: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
499
|
-
readonly default: () => never[];
|
|
500
|
-
};
|
|
501
|
-
readonly indent: {
|
|
502
|
-
readonly type: NumberConstructor;
|
|
503
|
-
readonly default: 24;
|
|
504
|
-
};
|
|
505
|
-
readonly indeterminateKeys: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
506
|
-
readonly renderSwitcherIcon: import('vue').PropType<import('naive-ui/es/tree/src/interface').RenderSwitcherIcon>;
|
|
507
|
-
readonly onUpdateIndeterminateKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
|
|
508
|
-
readonly 'onUpdate:indeterminateKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
|
|
509
|
-
readonly onUpdateExpandedKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
|
|
510
|
-
readonly 'onUpdate:expandedKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
|
|
511
|
-
readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree-select').TreeSelectOverrideNodeClickBehavior>;
|
|
512
|
-
readonly bordered: {
|
|
513
|
-
readonly type: BooleanConstructor;
|
|
514
|
-
readonly default: true;
|
|
515
|
-
};
|
|
516
|
-
readonly cascade: BooleanConstructor;
|
|
517
|
-
readonly checkable: BooleanConstructor;
|
|
518
|
-
readonly clearable: BooleanConstructor;
|
|
519
|
-
readonly clearFilterAfterSelect: {
|
|
520
|
-
readonly type: BooleanConstructor;
|
|
521
|
-
readonly default: true;
|
|
522
|
-
};
|
|
523
|
-
readonly consistentMenuWidth: {
|
|
524
|
-
readonly type: BooleanConstructor;
|
|
525
|
-
readonly default: true;
|
|
526
|
-
};
|
|
527
|
-
readonly defaultShow: BooleanConstructor;
|
|
528
|
-
readonly defaultValue: {
|
|
529
|
-
readonly type: import('vue').PropType<string | number | Array<string | number> | null>;
|
|
530
|
-
readonly default: null;
|
|
531
|
-
};
|
|
532
|
-
readonly disabled: {
|
|
533
|
-
readonly type: import('vue').PropType<boolean | undefined>;
|
|
534
|
-
readonly default: undefined;
|
|
535
|
-
};
|
|
536
|
-
readonly filterable: BooleanConstructor;
|
|
537
|
-
readonly checkStrategy: {
|
|
538
|
-
readonly type: import('vue').PropType<import('treemate').CheckStrategy>;
|
|
539
|
-
readonly default: "all";
|
|
540
|
-
};
|
|
541
|
-
readonly loading: BooleanConstructor;
|
|
542
|
-
readonly maxTagCount: import('vue').PropType<number | "responsive">;
|
|
543
|
-
readonly multiple: BooleanConstructor;
|
|
544
|
-
readonly showPath: BooleanConstructor;
|
|
545
|
-
readonly separator: {
|
|
546
|
-
readonly type: StringConstructor;
|
|
547
|
-
readonly default: " / ";
|
|
548
|
-
};
|
|
549
|
-
readonly options: {
|
|
550
|
-
readonly type: import('vue').PropType<import('naive-ui').TreeSelectOption[]>;
|
|
551
|
-
readonly default: () => never[];
|
|
552
|
-
};
|
|
553
|
-
readonly placeholder: StringConstructor;
|
|
554
|
-
readonly placement: {
|
|
555
|
-
readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
|
|
556
|
-
readonly default: "bottom-start";
|
|
557
|
-
};
|
|
558
|
-
readonly show: {
|
|
559
|
-
readonly type: import('vue').PropType<boolean | undefined>;
|
|
560
|
-
readonly default: undefined;
|
|
561
|
-
};
|
|
562
|
-
readonly size: import('vue').PropType<"small" | "medium" | "large">;
|
|
563
|
-
readonly value: import('vue').PropType<string | number | Array<string | number> | null>;
|
|
564
|
-
readonly to: {
|
|
565
|
-
type: import('vue').PropType<HTMLElement | string | boolean>;
|
|
566
|
-
default: undefined;
|
|
567
|
-
};
|
|
568
|
-
readonly menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
|
|
569
|
-
readonly virtualScroll: {
|
|
570
|
-
readonly type: BooleanConstructor;
|
|
571
|
-
readonly default: true;
|
|
572
|
-
};
|
|
573
|
-
readonly status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
|
|
574
|
-
readonly renderTag: import('vue').PropType<import('naive-ui').TreeSelectRenderTag>;
|
|
575
|
-
readonly ellipsisTagPopoverProps: import('vue').PropType<import('naive-ui').PopoverProps>;
|
|
576
|
-
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
577
|
-
menuPadding: string;
|
|
578
|
-
menuColor: string;
|
|
579
|
-
menuBoxShadow: string;
|
|
580
|
-
menuBorderRadius: string;
|
|
581
|
-
menuHeight: string;
|
|
582
|
-
actionDividerColor: string;
|
|
583
|
-
actionTextColor: string;
|
|
584
|
-
actionPadding: string;
|
|
585
|
-
headerDividerColor: string;
|
|
586
|
-
headerTextColor: string;
|
|
587
|
-
headerPadding: string;
|
|
588
|
-
}, {
|
|
589
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
590
|
-
fontSize: string;
|
|
591
|
-
lineHeight: string;
|
|
592
|
-
nodeHeight: string;
|
|
593
|
-
nodeWrapperPadding: string;
|
|
594
|
-
nodeBorderRadius: string;
|
|
595
|
-
nodeColorHover: string;
|
|
596
|
-
nodeColorPressed: string;
|
|
597
|
-
nodeColorActive: string;
|
|
598
|
-
arrowColor: string;
|
|
599
|
-
nodeTextColor: string;
|
|
600
|
-
nodeTextColorDisabled: string;
|
|
601
|
-
loadingColor: string;
|
|
602
|
-
dropMarkColor: string;
|
|
603
|
-
lineColor: string;
|
|
604
|
-
}, {
|
|
605
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
606
|
-
labelLineHeight: string;
|
|
607
|
-
fontSizeSmall: string;
|
|
608
|
-
fontSizeMedium: string;
|
|
609
|
-
fontSizeLarge: string;
|
|
610
|
-
borderRadius: string;
|
|
611
|
-
color: string;
|
|
612
|
-
colorChecked: string;
|
|
613
|
-
colorDisabled: string;
|
|
614
|
-
colorDisabledChecked: string;
|
|
615
|
-
colorTableHeader: string;
|
|
616
|
-
colorTableHeaderModal: string;
|
|
617
|
-
colorTableHeaderPopover: string;
|
|
618
|
-
checkMarkColor: string;
|
|
619
|
-
checkMarkColorDisabled: string;
|
|
620
|
-
checkMarkColorDisabledChecked: string;
|
|
621
|
-
border: string;
|
|
622
|
-
borderDisabled: string;
|
|
623
|
-
borderDisabledChecked: string;
|
|
624
|
-
borderChecked: string;
|
|
625
|
-
borderFocus: string;
|
|
626
|
-
boxShadowFocus: string;
|
|
627
|
-
textColor: string;
|
|
628
|
-
textColorDisabled: string;
|
|
629
|
-
sizeSmall: string;
|
|
630
|
-
sizeMedium: string;
|
|
631
|
-
sizeLarge: string;
|
|
632
|
-
labelPadding: string;
|
|
633
|
-
labelFontWeight: string;
|
|
634
|
-
}, any>;
|
|
635
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
636
|
-
height: string;
|
|
637
|
-
width: string;
|
|
638
|
-
borderRadius: string;
|
|
639
|
-
color: string;
|
|
640
|
-
colorHover: string;
|
|
641
|
-
railInsetHorizontalBottom: string;
|
|
642
|
-
railInsetHorizontalTop: string;
|
|
643
|
-
railInsetVerticalRight: string;
|
|
644
|
-
railInsetVerticalLeft: string;
|
|
645
|
-
railColor: string;
|
|
646
|
-
}, any>;
|
|
647
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
648
|
-
fontSizeTiny: string;
|
|
649
|
-
fontSizeSmall: string;
|
|
650
|
-
fontSizeMedium: string;
|
|
651
|
-
fontSizeLarge: string;
|
|
652
|
-
fontSizeHuge: string;
|
|
653
|
-
textColor: string;
|
|
654
|
-
iconColor: string;
|
|
655
|
-
extraTextColor: string;
|
|
656
|
-
iconSizeTiny: string;
|
|
657
|
-
iconSizeSmall: string;
|
|
658
|
-
iconSizeMedium: string;
|
|
659
|
-
iconSizeLarge: string;
|
|
660
|
-
iconSizeHuge: string;
|
|
661
|
-
}, any>;
|
|
662
|
-
}>;
|
|
663
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
664
|
-
fontSizeTiny: string;
|
|
665
|
-
fontSizeSmall: string;
|
|
666
|
-
fontSizeMedium: string;
|
|
667
|
-
fontSizeLarge: string;
|
|
668
|
-
fontSizeHuge: string;
|
|
669
|
-
textColor: string;
|
|
670
|
-
iconColor: string;
|
|
671
|
-
extraTextColor: string;
|
|
672
|
-
iconSizeTiny: string;
|
|
673
|
-
iconSizeSmall: string;
|
|
674
|
-
iconSizeMedium: string;
|
|
675
|
-
iconSizeLarge: string;
|
|
676
|
-
iconSizeHuge: string;
|
|
677
|
-
}, any>;
|
|
678
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
679
|
-
fontSizeTiny: string;
|
|
680
|
-
fontSizeSmall: string;
|
|
681
|
-
fontSizeMedium: string;
|
|
682
|
-
fontSizeLarge: string;
|
|
683
|
-
heightTiny: string;
|
|
684
|
-
heightSmall: string;
|
|
685
|
-
heightMedium: string;
|
|
686
|
-
heightLarge: string;
|
|
687
|
-
borderRadius: string;
|
|
688
|
-
fontWeight: string;
|
|
689
|
-
textColor: string;
|
|
690
|
-
textColorDisabled: string;
|
|
691
|
-
placeholderColor: string;
|
|
692
|
-
placeholderColorDisabled: string;
|
|
693
|
-
color: string;
|
|
694
|
-
colorDisabled: string;
|
|
695
|
-
colorActive: string;
|
|
696
|
-
border: string;
|
|
697
|
-
borderHover: string;
|
|
698
|
-
borderActive: string;
|
|
699
|
-
borderFocus: string;
|
|
700
|
-
boxShadowHover: string;
|
|
701
|
-
boxShadowActive: string;
|
|
702
|
-
boxShadowFocus: string;
|
|
703
|
-
caretColor: string;
|
|
704
|
-
arrowColor: string;
|
|
705
|
-
arrowColorDisabled: string;
|
|
706
|
-
loadingColor: string;
|
|
707
|
-
borderWarning: string;
|
|
708
|
-
borderHoverWarning: string;
|
|
709
|
-
borderActiveWarning: string;
|
|
710
|
-
borderFocusWarning: string;
|
|
711
|
-
boxShadowHoverWarning: string;
|
|
712
|
-
boxShadowActiveWarning: string;
|
|
713
|
-
boxShadowFocusWarning: string;
|
|
714
|
-
colorActiveWarning: string;
|
|
715
|
-
caretColorWarning: string;
|
|
716
|
-
borderError: string;
|
|
717
|
-
borderHoverError: string;
|
|
718
|
-
borderActiveError: string;
|
|
719
|
-
borderFocusError: string;
|
|
720
|
-
boxShadowHoverError: string;
|
|
721
|
-
boxShadowActiveError: string;
|
|
722
|
-
boxShadowFocusError: string;
|
|
723
|
-
colorActiveError: string;
|
|
724
|
-
caretColorError: string;
|
|
725
|
-
clearColor: string;
|
|
726
|
-
clearColorHover: string;
|
|
727
|
-
clearColorPressed: string;
|
|
728
|
-
paddingSingle: string;
|
|
729
|
-
paddingMultiple: string;
|
|
730
|
-
clearSize: string;
|
|
731
|
-
arrowSize: string;
|
|
732
|
-
}, {
|
|
733
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
734
|
-
fontSize: string;
|
|
735
|
-
borderRadius: string;
|
|
736
|
-
color: string;
|
|
737
|
-
dividerColor: string;
|
|
738
|
-
textColor: string;
|
|
739
|
-
boxShadow: string;
|
|
740
|
-
space: string;
|
|
741
|
-
spaceArrow: string;
|
|
742
|
-
arrowOffset: string;
|
|
743
|
-
arrowOffsetVertical: string;
|
|
744
|
-
arrowHeight: string;
|
|
745
|
-
padding: string;
|
|
746
|
-
}, {
|
|
747
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
748
|
-
height: string;
|
|
749
|
-
width: string;
|
|
750
|
-
borderRadius: string;
|
|
751
|
-
color: string;
|
|
752
|
-
colorHover: string;
|
|
753
|
-
railInsetHorizontalBottom: string;
|
|
754
|
-
railInsetHorizontalTop: string;
|
|
755
|
-
railInsetVerticalRight: string;
|
|
756
|
-
railInsetVerticalLeft: string;
|
|
757
|
-
railColor: string;
|
|
758
|
-
}, any>;
|
|
759
|
-
}>;
|
|
760
|
-
}>;
|
|
761
|
-
}>>;
|
|
762
|
-
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
763
|
-
menuPadding: string;
|
|
764
|
-
menuColor: string;
|
|
765
|
-
menuBoxShadow: string;
|
|
766
|
-
menuBorderRadius: string;
|
|
767
|
-
menuHeight: string;
|
|
768
|
-
actionDividerColor: string;
|
|
769
|
-
actionTextColor: string;
|
|
770
|
-
actionPadding: string;
|
|
771
|
-
headerDividerColor: string;
|
|
772
|
-
headerTextColor: string;
|
|
773
|
-
headerPadding: string;
|
|
774
|
-
}, {
|
|
775
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
776
|
-
fontSize: string;
|
|
777
|
-
lineHeight: string;
|
|
778
|
-
nodeHeight: string;
|
|
779
|
-
nodeWrapperPadding: string;
|
|
780
|
-
nodeBorderRadius: string;
|
|
781
|
-
nodeColorHover: string;
|
|
782
|
-
nodeColorPressed: string;
|
|
783
|
-
nodeColorActive: string;
|
|
784
|
-
arrowColor: string;
|
|
785
|
-
nodeTextColor: string;
|
|
786
|
-
nodeTextColorDisabled: string;
|
|
787
|
-
loadingColor: string;
|
|
788
|
-
dropMarkColor: string;
|
|
789
|
-
lineColor: string;
|
|
790
|
-
}, {
|
|
791
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
792
|
-
labelLineHeight: string;
|
|
793
|
-
fontSizeSmall: string;
|
|
794
|
-
fontSizeMedium: string;
|
|
795
|
-
fontSizeLarge: string;
|
|
796
|
-
borderRadius: string;
|
|
797
|
-
color: string;
|
|
798
|
-
colorChecked: string;
|
|
799
|
-
colorDisabled: string;
|
|
800
|
-
colorDisabledChecked: string;
|
|
801
|
-
colorTableHeader: string;
|
|
802
|
-
colorTableHeaderModal: string;
|
|
803
|
-
colorTableHeaderPopover: string;
|
|
804
|
-
checkMarkColor: string;
|
|
805
|
-
checkMarkColorDisabled: string;
|
|
806
|
-
checkMarkColorDisabledChecked: string;
|
|
807
|
-
border: string;
|
|
808
|
-
borderDisabled: string;
|
|
809
|
-
borderDisabledChecked: string;
|
|
810
|
-
borderChecked: string;
|
|
811
|
-
borderFocus: string;
|
|
812
|
-
boxShadowFocus: string;
|
|
813
|
-
textColor: string;
|
|
814
|
-
textColorDisabled: string;
|
|
815
|
-
sizeSmall: string;
|
|
816
|
-
sizeMedium: string;
|
|
817
|
-
sizeLarge: string;
|
|
818
|
-
labelPadding: string;
|
|
819
|
-
labelFontWeight: string;
|
|
820
|
-
}, any>;
|
|
821
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
822
|
-
height: string;
|
|
823
|
-
width: string;
|
|
824
|
-
borderRadius: string;
|
|
825
|
-
color: string;
|
|
826
|
-
colorHover: string;
|
|
827
|
-
railInsetHorizontalBottom: string;
|
|
828
|
-
railInsetHorizontalTop: string;
|
|
829
|
-
railInsetVerticalRight: string;
|
|
830
|
-
railInsetVerticalLeft: string;
|
|
831
|
-
railColor: string;
|
|
832
|
-
}, any>;
|
|
833
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
834
|
-
fontSizeTiny: string;
|
|
835
|
-
fontSizeSmall: string;
|
|
836
|
-
fontSizeMedium: string;
|
|
837
|
-
fontSizeLarge: string;
|
|
838
|
-
fontSizeHuge: string;
|
|
839
|
-
textColor: string;
|
|
840
|
-
iconColor: string;
|
|
841
|
-
extraTextColor: string;
|
|
842
|
-
iconSizeTiny: string;
|
|
843
|
-
iconSizeSmall: string;
|
|
844
|
-
iconSizeMedium: string;
|
|
845
|
-
iconSizeLarge: string;
|
|
846
|
-
iconSizeHuge: string;
|
|
847
|
-
}, any>;
|
|
848
|
-
}>;
|
|
849
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
850
|
-
fontSizeTiny: string;
|
|
851
|
-
fontSizeSmall: string;
|
|
852
|
-
fontSizeMedium: string;
|
|
853
|
-
fontSizeLarge: string;
|
|
854
|
-
fontSizeHuge: string;
|
|
855
|
-
textColor: string;
|
|
856
|
-
iconColor: string;
|
|
857
|
-
extraTextColor: string;
|
|
858
|
-
iconSizeTiny: string;
|
|
859
|
-
iconSizeSmall: string;
|
|
860
|
-
iconSizeMedium: string;
|
|
861
|
-
iconSizeLarge: string;
|
|
862
|
-
iconSizeHuge: string;
|
|
863
|
-
}, any>;
|
|
864
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
865
|
-
fontSizeTiny: string;
|
|
866
|
-
fontSizeSmall: string;
|
|
867
|
-
fontSizeMedium: string;
|
|
868
|
-
fontSizeLarge: string;
|
|
869
|
-
heightTiny: string;
|
|
870
|
-
heightSmall: string;
|
|
871
|
-
heightMedium: string;
|
|
872
|
-
heightLarge: string;
|
|
873
|
-
borderRadius: string;
|
|
874
|
-
fontWeight: string;
|
|
875
|
-
textColor: string;
|
|
876
|
-
textColorDisabled: string;
|
|
877
|
-
placeholderColor: string;
|
|
878
|
-
placeholderColorDisabled: string;
|
|
879
|
-
color: string;
|
|
880
|
-
colorDisabled: string;
|
|
881
|
-
colorActive: string;
|
|
882
|
-
border: string;
|
|
883
|
-
borderHover: string;
|
|
884
|
-
borderActive: string;
|
|
885
|
-
borderFocus: string;
|
|
886
|
-
boxShadowHover: string;
|
|
887
|
-
boxShadowActive: string;
|
|
888
|
-
boxShadowFocus: string;
|
|
889
|
-
caretColor: string;
|
|
890
|
-
arrowColor: string;
|
|
891
|
-
arrowColorDisabled: string;
|
|
892
|
-
loadingColor: string;
|
|
893
|
-
borderWarning: string;
|
|
894
|
-
borderHoverWarning: string;
|
|
895
|
-
borderActiveWarning: string;
|
|
896
|
-
borderFocusWarning: string;
|
|
897
|
-
boxShadowHoverWarning: string;
|
|
898
|
-
boxShadowActiveWarning: string;
|
|
899
|
-
boxShadowFocusWarning: string;
|
|
900
|
-
colorActiveWarning: string;
|
|
901
|
-
caretColorWarning: string;
|
|
902
|
-
borderError: string;
|
|
903
|
-
borderHoverError: string;
|
|
904
|
-
borderActiveError: string;
|
|
905
|
-
borderFocusError: string;
|
|
906
|
-
boxShadowHoverError: string;
|
|
907
|
-
boxShadowActiveError: string;
|
|
908
|
-
boxShadowFocusError: string;
|
|
909
|
-
colorActiveError: string;
|
|
910
|
-
caretColorError: string;
|
|
911
|
-
clearColor: string;
|
|
912
|
-
clearColorHover: string;
|
|
913
|
-
clearColorPressed: string;
|
|
914
|
-
paddingSingle: string;
|
|
915
|
-
paddingMultiple: string;
|
|
916
|
-
clearSize: string;
|
|
917
|
-
arrowSize: string;
|
|
918
|
-
}, {
|
|
919
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
920
|
-
fontSize: string;
|
|
921
|
-
borderRadius: string;
|
|
922
|
-
color: string;
|
|
923
|
-
dividerColor: string;
|
|
924
|
-
textColor: string;
|
|
925
|
-
boxShadow: string;
|
|
926
|
-
space: string;
|
|
927
|
-
spaceArrow: string;
|
|
928
|
-
arrowOffset: string;
|
|
929
|
-
arrowOffsetVertical: string;
|
|
930
|
-
arrowHeight: string;
|
|
931
|
-
padding: string;
|
|
932
|
-
}, {
|
|
933
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
934
|
-
height: string;
|
|
935
|
-
width: string;
|
|
936
|
-
borderRadius: string;
|
|
937
|
-
color: string;
|
|
938
|
-
colorHover: string;
|
|
939
|
-
railInsetHorizontalBottom: string;
|
|
940
|
-
railInsetHorizontalTop: string;
|
|
941
|
-
railInsetVerticalRight: string;
|
|
942
|
-
railInsetVerticalLeft: string;
|
|
943
|
-
railColor: string;
|
|
944
|
-
}, any>;
|
|
945
|
-
}>;
|
|
946
|
-
}>;
|
|
947
|
-
}>>>;
|
|
948
|
-
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
949
|
-
menuPadding: string;
|
|
950
|
-
menuColor: string;
|
|
951
|
-
menuBoxShadow: string;
|
|
952
|
-
menuBorderRadius: string;
|
|
953
|
-
menuHeight: string;
|
|
954
|
-
actionDividerColor: string;
|
|
955
|
-
actionTextColor: string;
|
|
956
|
-
actionPadding: string;
|
|
957
|
-
headerDividerColor: string;
|
|
958
|
-
headerTextColor: string;
|
|
959
|
-
headerPadding: string;
|
|
960
|
-
}, {
|
|
961
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
962
|
-
fontSize: string;
|
|
963
|
-
lineHeight: string;
|
|
964
|
-
nodeHeight: string;
|
|
965
|
-
nodeWrapperPadding: string;
|
|
966
|
-
nodeBorderRadius: string;
|
|
967
|
-
nodeColorHover: string;
|
|
968
|
-
nodeColorPressed: string;
|
|
969
|
-
nodeColorActive: string;
|
|
970
|
-
arrowColor: string;
|
|
971
|
-
nodeTextColor: string;
|
|
972
|
-
nodeTextColorDisabled: string;
|
|
973
|
-
loadingColor: string;
|
|
974
|
-
dropMarkColor: string;
|
|
975
|
-
lineColor: string;
|
|
976
|
-
}, {
|
|
977
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
978
|
-
labelLineHeight: string;
|
|
979
|
-
fontSizeSmall: string;
|
|
980
|
-
fontSizeMedium: string;
|
|
981
|
-
fontSizeLarge: string;
|
|
982
|
-
borderRadius: string;
|
|
983
|
-
color: string;
|
|
984
|
-
colorChecked: string;
|
|
985
|
-
colorDisabled: string;
|
|
986
|
-
colorDisabledChecked: string;
|
|
987
|
-
colorTableHeader: string;
|
|
988
|
-
colorTableHeaderModal: string;
|
|
989
|
-
colorTableHeaderPopover: string;
|
|
990
|
-
checkMarkColor: string;
|
|
991
|
-
checkMarkColorDisabled: string;
|
|
992
|
-
checkMarkColorDisabledChecked: string;
|
|
993
|
-
border: string;
|
|
994
|
-
borderDisabled: string;
|
|
995
|
-
borderDisabledChecked: string;
|
|
996
|
-
borderChecked: string;
|
|
997
|
-
borderFocus: string;
|
|
998
|
-
boxShadowFocus: string;
|
|
999
|
-
textColor: string;
|
|
1000
|
-
textColorDisabled: string;
|
|
1001
|
-
sizeSmall: string;
|
|
1002
|
-
sizeMedium: string;
|
|
1003
|
-
sizeLarge: string;
|
|
1004
|
-
labelPadding: string;
|
|
1005
|
-
labelFontWeight: string;
|
|
1006
|
-
}, any>;
|
|
1007
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1008
|
-
height: string;
|
|
1009
|
-
width: string;
|
|
1010
|
-
borderRadius: string;
|
|
1011
|
-
color: string;
|
|
1012
|
-
colorHover: string;
|
|
1013
|
-
railInsetHorizontalBottom: string;
|
|
1014
|
-
railInsetHorizontalTop: string;
|
|
1015
|
-
railInsetVerticalRight: string;
|
|
1016
|
-
railInsetVerticalLeft: string;
|
|
1017
|
-
railColor: string;
|
|
1018
|
-
}, any>;
|
|
1019
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1020
|
-
fontSizeTiny: string;
|
|
1021
|
-
fontSizeSmall: string;
|
|
1022
|
-
fontSizeMedium: string;
|
|
1023
|
-
fontSizeLarge: string;
|
|
1024
|
-
fontSizeHuge: string;
|
|
1025
|
-
textColor: string;
|
|
1026
|
-
iconColor: string;
|
|
1027
|
-
extraTextColor: string;
|
|
1028
|
-
iconSizeTiny: string;
|
|
1029
|
-
iconSizeSmall: string;
|
|
1030
|
-
iconSizeMedium: string;
|
|
1031
|
-
iconSizeLarge: string;
|
|
1032
|
-
iconSizeHuge: string;
|
|
1033
|
-
}, any>;
|
|
1034
|
-
}>;
|
|
1035
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1036
|
-
fontSizeTiny: string;
|
|
1037
|
-
fontSizeSmall: string;
|
|
1038
|
-
fontSizeMedium: string;
|
|
1039
|
-
fontSizeLarge: string;
|
|
1040
|
-
fontSizeHuge: string;
|
|
1041
|
-
textColor: string;
|
|
1042
|
-
iconColor: string;
|
|
1043
|
-
extraTextColor: string;
|
|
1044
|
-
iconSizeTiny: string;
|
|
1045
|
-
iconSizeSmall: string;
|
|
1046
|
-
iconSizeMedium: string;
|
|
1047
|
-
iconSizeLarge: string;
|
|
1048
|
-
iconSizeHuge: string;
|
|
1049
|
-
}, any>;
|
|
1050
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
1051
|
-
fontSizeTiny: string;
|
|
1052
|
-
fontSizeSmall: string;
|
|
1053
|
-
fontSizeMedium: string;
|
|
1054
|
-
fontSizeLarge: string;
|
|
1055
|
-
heightTiny: string;
|
|
1056
|
-
heightSmall: string;
|
|
1057
|
-
heightMedium: string;
|
|
1058
|
-
heightLarge: string;
|
|
1059
|
-
borderRadius: string;
|
|
1060
|
-
fontWeight: string;
|
|
1061
|
-
textColor: string;
|
|
1062
|
-
textColorDisabled: string;
|
|
1063
|
-
placeholderColor: string;
|
|
1064
|
-
placeholderColorDisabled: string;
|
|
1065
|
-
color: string;
|
|
1066
|
-
colorDisabled: string;
|
|
1067
|
-
colorActive: string;
|
|
1068
|
-
border: string;
|
|
1069
|
-
borderHover: string;
|
|
1070
|
-
borderActive: string;
|
|
1071
|
-
borderFocus: string;
|
|
1072
|
-
boxShadowHover: string;
|
|
1073
|
-
boxShadowActive: string;
|
|
1074
|
-
boxShadowFocus: string;
|
|
1075
|
-
caretColor: string;
|
|
1076
|
-
arrowColor: string;
|
|
1077
|
-
arrowColorDisabled: string;
|
|
1078
|
-
loadingColor: string;
|
|
1079
|
-
borderWarning: string;
|
|
1080
|
-
borderHoverWarning: string;
|
|
1081
|
-
borderActiveWarning: string;
|
|
1082
|
-
borderFocusWarning: string;
|
|
1083
|
-
boxShadowHoverWarning: string;
|
|
1084
|
-
boxShadowActiveWarning: string;
|
|
1085
|
-
boxShadowFocusWarning: string;
|
|
1086
|
-
colorActiveWarning: string;
|
|
1087
|
-
caretColorWarning: string;
|
|
1088
|
-
borderError: string;
|
|
1089
|
-
borderHoverError: string;
|
|
1090
|
-
borderActiveError: string;
|
|
1091
|
-
borderFocusError: string;
|
|
1092
|
-
boxShadowHoverError: string;
|
|
1093
|
-
boxShadowActiveError: string;
|
|
1094
|
-
boxShadowFocusError: string;
|
|
1095
|
-
colorActiveError: string;
|
|
1096
|
-
caretColorError: string;
|
|
1097
|
-
clearColor: string;
|
|
1098
|
-
clearColorHover: string;
|
|
1099
|
-
clearColorPressed: string;
|
|
1100
|
-
paddingSingle: string;
|
|
1101
|
-
paddingMultiple: string;
|
|
1102
|
-
clearSize: string;
|
|
1103
|
-
arrowSize: string;
|
|
1104
|
-
}, {
|
|
1105
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1106
|
-
fontSize: string;
|
|
1107
|
-
borderRadius: string;
|
|
1108
|
-
color: string;
|
|
1109
|
-
dividerColor: string;
|
|
1110
|
-
textColor: string;
|
|
1111
|
-
boxShadow: string;
|
|
1112
|
-
space: string;
|
|
1113
|
-
spaceArrow: string;
|
|
1114
|
-
arrowOffset: string;
|
|
1115
|
-
arrowOffsetVertical: string;
|
|
1116
|
-
arrowHeight: string;
|
|
1117
|
-
padding: string;
|
|
1118
|
-
}, {
|
|
1119
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1120
|
-
height: string;
|
|
1121
|
-
width: string;
|
|
1122
|
-
borderRadius: string;
|
|
1123
|
-
color: string;
|
|
1124
|
-
colorHover: string;
|
|
1125
|
-
railInsetHorizontalBottom: string;
|
|
1126
|
-
railInsetHorizontalTop: string;
|
|
1127
|
-
railInsetVerticalRight: string;
|
|
1128
|
-
railInsetVerticalLeft: string;
|
|
1129
|
-
railColor: string;
|
|
1130
|
-
}, any>;
|
|
1131
|
-
}>;
|
|
1132
|
-
}>;
|
|
1133
|
-
}>>>;
|
|
1134
|
-
}>> & Readonly<{}>, {
|
|
1135
|
-
menuElRef: import('vue').Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
1136
|
-
mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
|
|
1137
|
-
triggerInstRef: import('vue').Ref<{
|
|
1138
|
-
isComposing: boolean;
|
|
1139
|
-
focus: () => void;
|
|
1140
|
-
focusInput: () => void;
|
|
1141
|
-
blur: () => void;
|
|
1142
|
-
blurInput: () => void;
|
|
1143
|
-
$el: HTMLElement;
|
|
1144
|
-
} | null, import('naive-ui/es/_internal').InternalSelectionInst | {
|
|
1145
|
-
isComposing: boolean;
|
|
1146
|
-
focus: () => void;
|
|
1147
|
-
focusInput: () => void;
|
|
1148
|
-
blur: () => void;
|
|
1149
|
-
blurInput: () => void;
|
|
1150
|
-
$el: HTMLElement;
|
|
1151
|
-
} | null>;
|
|
1152
|
-
followerInstRef: import('vue').Ref<{
|
|
1153
|
-
syncPosition: () => void;
|
|
1154
|
-
} | null, import('vueuc').FollowerInst | {
|
|
1155
|
-
syncPosition: () => void;
|
|
1156
|
-
} | null>;
|
|
1157
|
-
treeInstRef: import('vue').Ref<{
|
|
1158
|
-
handleKeydown: (e: KeyboardEvent) => {
|
|
1159
|
-
enterBehavior: import('naive-ui').TreeOverrideNodeClickBehaviorReturn | null;
|
|
1160
|
-
};
|
|
1161
|
-
} | null, import('naive-ui/es/tree/src/interface').InternalTreeInst | {
|
|
1162
|
-
handleKeydown: (e: KeyboardEvent) => {
|
|
1163
|
-
enterBehavior: import('naive-ui').TreeOverrideNodeClickBehaviorReturn | null;
|
|
1164
|
-
};
|
|
1165
|
-
} | null>;
|
|
1166
|
-
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1167
|
-
mergedValue: import('vue').ComputedRef<string | number | (string | number)[] | null>;
|
|
1168
|
-
mergedShow: import('vue').ComputedRef<boolean>;
|
|
1169
|
-
namespace: import('vue').ComputedRef<string | undefined>;
|
|
1170
|
-
adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
|
|
1171
|
-
isMounted: Readonly<import('vue').Ref<boolean, boolean>>;
|
|
1172
|
-
focused: import('vue').Ref<boolean, boolean>;
|
|
1173
|
-
menuPadding: import('vue').ComputedRef<string>;
|
|
1174
|
-
mergedPlaceholder: import('vue').ComputedRef<string>;
|
|
1175
|
-
mergedExpandedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[] | undefined>;
|
|
1176
|
-
treeSelectedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
1177
|
-
treeCheckedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
1178
|
-
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large">;
|
|
1179
|
-
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1180
|
-
selectedOption: import('vue').ComputedRef<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)> | null>;
|
|
1181
|
-
selectedOptions: import('vue').ComputedRef<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)>[] | null>;
|
|
1182
|
-
pattern: import('vue').Ref<string, string>;
|
|
1183
|
-
pendingNodeKey: import('vue').Ref<string | number | null, string | number | null>;
|
|
1184
|
-
mergedCascade: import('vue').ComputedRef<boolean>;
|
|
1185
|
-
mergedFilter: import('vue').ComputedRef<(pattern: string, node: import('naive-ui').TreeOption) => boolean>;
|
|
1186
|
-
selectionRenderTag: import('vue').ComputedRef<(({ option, handleClose }: {
|
|
1187
|
-
option: import('naive-ui').SelectOption;
|
|
1188
|
-
handleClose: () => void;
|
|
1189
|
-
}) => import('vue').VNodeChild) | undefined>;
|
|
1190
|
-
handleTriggerOrMenuResize: () => void;
|
|
1191
|
-
doUpdateExpandedKeys: (keys: import('naive-ui/es/tree/src/interface').Key[], option: Array<import('naive-ui').TreeSelectOption | null>, meta: {
|
|
1192
|
-
node: import('naive-ui').TreeSelectOption;
|
|
1193
|
-
action: "expand" | "collapse";
|
|
1194
|
-
} | {
|
|
1195
|
-
node: null;
|
|
1196
|
-
action: "filter";
|
|
1197
|
-
}) => void;
|
|
1198
|
-
handleMenuLeave: () => void;
|
|
1199
|
-
handleTriggerClick: () => void;
|
|
1200
|
-
handleMenuClickoutside: (e: MouseEvent) => void;
|
|
1201
|
-
handleUpdateCheckedKeys: (keys: import('naive-ui/es/tree/src/interface').Key[], _: unknown, meta: {
|
|
1202
|
-
node: import('naive-ui').TreeOption | null;
|
|
1203
|
-
action: "check" | "uncheck";
|
|
1204
|
-
}) => void;
|
|
1205
|
-
handleUpdateIndeterminateKeys: (keys: import('naive-ui/es/tree/src/interface').Key[]) => void;
|
|
1206
|
-
handleTriggerFocus: (e: FocusEvent) => void;
|
|
1207
|
-
handleTriggerBlur: (e: FocusEvent) => void;
|
|
1208
|
-
handleMenuFocusin: (e: FocusEvent) => void;
|
|
1209
|
-
handleMenuFocusout: (e: FocusEvent) => void;
|
|
1210
|
-
handleClear: (e: MouseEvent) => void;
|
|
1211
|
-
handleDeleteOption: (option: import('naive-ui/es/select/src/interface').SelectBaseOption) => void;
|
|
1212
|
-
handlePatternInput: (e: InputEvent) => void;
|
|
1213
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
1214
|
-
handleTabOut: () => void;
|
|
1215
|
-
handleMenuMousedown: (e: MouseEvent) => void;
|
|
1216
|
-
mergedTheme: import('vue').ComputedRef<{
|
|
1217
|
-
common: import('naive-ui').ThemeCommonVars;
|
|
1218
|
-
self: {
|
|
1219
|
-
menuPadding: string;
|
|
1220
|
-
menuColor: string;
|
|
1221
|
-
menuBoxShadow: string;
|
|
1222
|
-
menuBorderRadius: string;
|
|
1223
|
-
menuHeight: string;
|
|
1224
|
-
actionDividerColor: string;
|
|
1225
|
-
actionTextColor: string;
|
|
1226
|
-
actionPadding: string;
|
|
1227
|
-
headerDividerColor: string;
|
|
1228
|
-
headerTextColor: string;
|
|
1229
|
-
headerPadding: string;
|
|
1230
|
-
};
|
|
1231
|
-
peers: {
|
|
1232
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
1233
|
-
fontSize: string;
|
|
1234
|
-
lineHeight: string;
|
|
1235
|
-
nodeHeight: string;
|
|
1236
|
-
nodeWrapperPadding: string;
|
|
1237
|
-
nodeBorderRadius: string;
|
|
1238
|
-
nodeColorHover: string;
|
|
1239
|
-
nodeColorPressed: string;
|
|
1240
|
-
nodeColorActive: string;
|
|
1241
|
-
arrowColor: string;
|
|
1242
|
-
nodeTextColor: string;
|
|
1243
|
-
nodeTextColorDisabled: string;
|
|
1244
|
-
loadingColor: string;
|
|
1245
|
-
dropMarkColor: string;
|
|
1246
|
-
lineColor: string;
|
|
1247
|
-
}, {
|
|
1248
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
1249
|
-
labelLineHeight: string;
|
|
1250
|
-
fontSizeSmall: string;
|
|
1251
|
-
fontSizeMedium: string;
|
|
1252
|
-
fontSizeLarge: string;
|
|
1253
|
-
borderRadius: string;
|
|
1254
|
-
color: string;
|
|
1255
|
-
colorChecked: string;
|
|
1256
|
-
colorDisabled: string;
|
|
1257
|
-
colorDisabledChecked: string;
|
|
1258
|
-
colorTableHeader: string;
|
|
1259
|
-
colorTableHeaderModal: string;
|
|
1260
|
-
colorTableHeaderPopover: string;
|
|
1261
|
-
checkMarkColor: string;
|
|
1262
|
-
checkMarkColorDisabled: string;
|
|
1263
|
-
checkMarkColorDisabledChecked: string;
|
|
1264
|
-
border: string;
|
|
1265
|
-
borderDisabled: string;
|
|
1266
|
-
borderDisabledChecked: string;
|
|
1267
|
-
borderChecked: string;
|
|
1268
|
-
borderFocus: string;
|
|
1269
|
-
boxShadowFocus: string;
|
|
1270
|
-
textColor: string;
|
|
1271
|
-
textColorDisabled: string;
|
|
1272
|
-
sizeSmall: string;
|
|
1273
|
-
sizeMedium: string;
|
|
1274
|
-
sizeLarge: string;
|
|
1275
|
-
labelPadding: string;
|
|
1276
|
-
labelFontWeight: string;
|
|
1277
|
-
}, any>;
|
|
1278
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1279
|
-
height: string;
|
|
1280
|
-
width: string;
|
|
1281
|
-
borderRadius: string;
|
|
1282
|
-
color: string;
|
|
1283
|
-
colorHover: string;
|
|
1284
|
-
railInsetHorizontalBottom: string;
|
|
1285
|
-
railInsetHorizontalTop: string;
|
|
1286
|
-
railInsetVerticalRight: string;
|
|
1287
|
-
railInsetVerticalLeft: string;
|
|
1288
|
-
railColor: string;
|
|
1289
|
-
}, any>;
|
|
1290
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1291
|
-
fontSizeTiny: string;
|
|
1292
|
-
fontSizeSmall: string;
|
|
1293
|
-
fontSizeMedium: string;
|
|
1294
|
-
fontSizeLarge: string;
|
|
1295
|
-
fontSizeHuge: string;
|
|
1296
|
-
textColor: string;
|
|
1297
|
-
iconColor: string;
|
|
1298
|
-
extraTextColor: string;
|
|
1299
|
-
iconSizeTiny: string;
|
|
1300
|
-
iconSizeSmall: string;
|
|
1301
|
-
iconSizeMedium: string;
|
|
1302
|
-
iconSizeLarge: string;
|
|
1303
|
-
iconSizeHuge: string;
|
|
1304
|
-
}, any>;
|
|
1305
|
-
}>;
|
|
1306
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1307
|
-
fontSizeTiny: string;
|
|
1308
|
-
fontSizeSmall: string;
|
|
1309
|
-
fontSizeMedium: string;
|
|
1310
|
-
fontSizeLarge: string;
|
|
1311
|
-
fontSizeHuge: string;
|
|
1312
|
-
textColor: string;
|
|
1313
|
-
iconColor: string;
|
|
1314
|
-
extraTextColor: string;
|
|
1315
|
-
iconSizeTiny: string;
|
|
1316
|
-
iconSizeSmall: string;
|
|
1317
|
-
iconSizeMedium: string;
|
|
1318
|
-
iconSizeLarge: string;
|
|
1319
|
-
iconSizeHuge: string;
|
|
1320
|
-
}, any>;
|
|
1321
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
1322
|
-
fontSizeTiny: string;
|
|
1323
|
-
fontSizeSmall: string;
|
|
1324
|
-
fontSizeMedium: string;
|
|
1325
|
-
fontSizeLarge: string;
|
|
1326
|
-
heightTiny: string;
|
|
1327
|
-
heightSmall: string;
|
|
1328
|
-
heightMedium: string;
|
|
1329
|
-
heightLarge: string;
|
|
1330
|
-
borderRadius: string;
|
|
1331
|
-
fontWeight: string;
|
|
1332
|
-
textColor: string;
|
|
1333
|
-
textColorDisabled: string;
|
|
1334
|
-
placeholderColor: string;
|
|
1335
|
-
placeholderColorDisabled: string;
|
|
1336
|
-
color: string;
|
|
1337
|
-
colorDisabled: string;
|
|
1338
|
-
colorActive: string;
|
|
1339
|
-
border: string;
|
|
1340
|
-
borderHover: string;
|
|
1341
|
-
borderActive: string;
|
|
1342
|
-
borderFocus: string;
|
|
1343
|
-
boxShadowHover: string;
|
|
1344
|
-
boxShadowActive: string;
|
|
1345
|
-
boxShadowFocus: string;
|
|
1346
|
-
caretColor: string;
|
|
1347
|
-
arrowColor: string;
|
|
1348
|
-
arrowColorDisabled: string;
|
|
1349
|
-
loadingColor: string;
|
|
1350
|
-
borderWarning: string;
|
|
1351
|
-
borderHoverWarning: string;
|
|
1352
|
-
borderActiveWarning: string;
|
|
1353
|
-
borderFocusWarning: string;
|
|
1354
|
-
boxShadowHoverWarning: string;
|
|
1355
|
-
boxShadowActiveWarning: string;
|
|
1356
|
-
boxShadowFocusWarning: string;
|
|
1357
|
-
colorActiveWarning: string;
|
|
1358
|
-
caretColorWarning: string;
|
|
1359
|
-
borderError: string;
|
|
1360
|
-
borderHoverError: string;
|
|
1361
|
-
borderActiveError: string;
|
|
1362
|
-
borderFocusError: string;
|
|
1363
|
-
boxShadowHoverError: string;
|
|
1364
|
-
boxShadowActiveError: string;
|
|
1365
|
-
boxShadowFocusError: string;
|
|
1366
|
-
colorActiveError: string;
|
|
1367
|
-
caretColorError: string;
|
|
1368
|
-
clearColor: string;
|
|
1369
|
-
clearColorHover: string;
|
|
1370
|
-
clearColorPressed: string;
|
|
1371
|
-
paddingSingle: string;
|
|
1372
|
-
paddingMultiple: string;
|
|
1373
|
-
clearSize: string;
|
|
1374
|
-
arrowSize: string;
|
|
1375
|
-
}, {
|
|
1376
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1377
|
-
fontSize: string;
|
|
1378
|
-
borderRadius: string;
|
|
1379
|
-
color: string;
|
|
1380
|
-
dividerColor: string;
|
|
1381
|
-
textColor: string;
|
|
1382
|
-
boxShadow: string;
|
|
1383
|
-
space: string;
|
|
1384
|
-
spaceArrow: string;
|
|
1385
|
-
arrowOffset: string;
|
|
1386
|
-
arrowOffsetVertical: string;
|
|
1387
|
-
arrowHeight: string;
|
|
1388
|
-
padding: string;
|
|
1389
|
-
}, {
|
|
1390
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1391
|
-
height: string;
|
|
1392
|
-
width: string;
|
|
1393
|
-
borderRadius: string;
|
|
1394
|
-
color: string;
|
|
1395
|
-
colorHover: string;
|
|
1396
|
-
railInsetHorizontalBottom: string;
|
|
1397
|
-
railInsetHorizontalTop: string;
|
|
1398
|
-
railInsetVerticalRight: string;
|
|
1399
|
-
railInsetVerticalLeft: string;
|
|
1400
|
-
railColor: string;
|
|
1401
|
-
}, any>;
|
|
1402
|
-
}>;
|
|
1403
|
-
}>;
|
|
1404
|
-
};
|
|
1405
|
-
peerOverrides: {
|
|
1406
|
-
Tree?: {
|
|
1407
|
-
peers?: {
|
|
1408
|
-
Checkbox?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
1409
|
-
labelLineHeight: string;
|
|
1410
|
-
fontSizeSmall: string;
|
|
1411
|
-
fontSizeMedium: string;
|
|
1412
|
-
fontSizeLarge: string;
|
|
1413
|
-
borderRadius: string;
|
|
1414
|
-
color: string;
|
|
1415
|
-
colorChecked: string;
|
|
1416
|
-
colorDisabled: string;
|
|
1417
|
-
colorDisabledChecked: string;
|
|
1418
|
-
colorTableHeader: string;
|
|
1419
|
-
colorTableHeaderModal: string;
|
|
1420
|
-
colorTableHeaderPopover: string;
|
|
1421
|
-
checkMarkColor: string;
|
|
1422
|
-
checkMarkColorDisabled: string;
|
|
1423
|
-
checkMarkColorDisabledChecked: string;
|
|
1424
|
-
border: string;
|
|
1425
|
-
borderDisabled: string;
|
|
1426
|
-
borderDisabledChecked: string;
|
|
1427
|
-
borderChecked: string;
|
|
1428
|
-
borderFocus: string;
|
|
1429
|
-
boxShadowFocus: string;
|
|
1430
|
-
textColor: string;
|
|
1431
|
-
textColorDisabled: string;
|
|
1432
|
-
sizeSmall: string;
|
|
1433
|
-
sizeMedium: string;
|
|
1434
|
-
sizeLarge: string;
|
|
1435
|
-
labelPadding: string;
|
|
1436
|
-
labelFontWeight: string;
|
|
1437
|
-
}, any>> | undefined;
|
|
1438
|
-
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1439
|
-
height: string;
|
|
1440
|
-
width: string;
|
|
1441
|
-
borderRadius: string;
|
|
1442
|
-
color: string;
|
|
1443
|
-
colorHover: string;
|
|
1444
|
-
railInsetHorizontalBottom: string;
|
|
1445
|
-
railInsetHorizontalTop: string;
|
|
1446
|
-
railInsetVerticalRight: string;
|
|
1447
|
-
railInsetVerticalLeft: string;
|
|
1448
|
-
railColor: string;
|
|
1449
|
-
}, any>> | undefined;
|
|
1450
|
-
Empty?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1451
|
-
fontSizeTiny: string;
|
|
1452
|
-
fontSizeSmall: string;
|
|
1453
|
-
fontSizeMedium: string;
|
|
1454
|
-
fontSizeLarge: string;
|
|
1455
|
-
fontSizeHuge: string;
|
|
1456
|
-
textColor: string;
|
|
1457
|
-
iconColor: string;
|
|
1458
|
-
extraTextColor: string;
|
|
1459
|
-
iconSizeTiny: string;
|
|
1460
|
-
iconSizeSmall: string;
|
|
1461
|
-
iconSizeMedium: string;
|
|
1462
|
-
iconSizeLarge: string;
|
|
1463
|
-
iconSizeHuge: string;
|
|
1464
|
-
}, any>> | undefined;
|
|
1465
|
-
} | undefined;
|
|
1466
|
-
} | undefined;
|
|
1467
|
-
Empty?: {
|
|
1468
|
-
peers?: {
|
|
1469
|
-
[x: string]: any;
|
|
1470
|
-
} | undefined;
|
|
1471
|
-
} | undefined;
|
|
1472
|
-
InternalSelection?: {
|
|
1473
|
-
peers?: {
|
|
1474
|
-
Popover?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1475
|
-
fontSize: string;
|
|
1476
|
-
borderRadius: string;
|
|
1477
|
-
color: string;
|
|
1478
|
-
dividerColor: string;
|
|
1479
|
-
textColor: string;
|
|
1480
|
-
boxShadow: string;
|
|
1481
|
-
space: string;
|
|
1482
|
-
spaceArrow: string;
|
|
1483
|
-
arrowOffset: string;
|
|
1484
|
-
arrowOffsetVertical: string;
|
|
1485
|
-
arrowHeight: string;
|
|
1486
|
-
padding: string;
|
|
1487
|
-
}, {
|
|
1488
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1489
|
-
height: string;
|
|
1490
|
-
width: string;
|
|
1491
|
-
borderRadius: string;
|
|
1492
|
-
color: string;
|
|
1493
|
-
colorHover: string;
|
|
1494
|
-
railInsetHorizontalBottom: string;
|
|
1495
|
-
railInsetHorizontalTop: string;
|
|
1496
|
-
railInsetVerticalRight: string;
|
|
1497
|
-
railInsetVerticalLeft: string;
|
|
1498
|
-
railColor: string;
|
|
1499
|
-
}, any>;
|
|
1500
|
-
}>> | undefined;
|
|
1501
|
-
} | undefined;
|
|
1502
|
-
} | undefined;
|
|
1503
|
-
};
|
|
1504
|
-
}>;
|
|
1505
|
-
cssVars: import('vue').ComputedRef<{
|
|
1506
|
-
"--n-menu-box-shadow": string;
|
|
1507
|
-
"--n-menu-border-radius": string;
|
|
1508
|
-
"--n-menu-color": string;
|
|
1509
|
-
"--n-menu-height": string;
|
|
1510
|
-
"--n-bezier": string;
|
|
1511
|
-
"--n-action-padding": string;
|
|
1512
|
-
"--n-action-text-color": string;
|
|
1513
|
-
"--n-action-divider-color": string;
|
|
1514
|
-
"--n-header-padding": string;
|
|
1515
|
-
"--n-header-text-color": string;
|
|
1516
|
-
"--n-header-divider-color": string;
|
|
1517
|
-
}> | undefined;
|
|
1518
|
-
themeClass: import('vue').Ref<string, string> | undefined;
|
|
1519
|
-
onRender: (() => void) | undefined;
|
|
1520
|
-
getCheckedData: () => {
|
|
1521
|
-
keys: Array<string | number>;
|
|
1522
|
-
options: Array<import('naive-ui').TreeSelectOption | null>;
|
|
1523
|
-
};
|
|
1524
|
-
getIndeterminateData: () => {
|
|
1525
|
-
keys: Array<string | number>;
|
|
1526
|
-
options: Array<import('naive-ui').TreeSelectOption | null>;
|
|
1527
|
-
};
|
|
1528
|
-
focus: () => void;
|
|
1529
|
-
focusInput: () => void;
|
|
1530
|
-
blur: () => void;
|
|
1531
|
-
blurInput: () => void;
|
|
1532
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1533
|
-
readonly disabled: boolean | undefined;
|
|
1534
|
-
readonly bordered: boolean;
|
|
1535
|
-
readonly to: string | boolean | HTMLElement;
|
|
1536
|
-
readonly clearable: boolean;
|
|
1537
|
-
readonly defaultValue: string | number | (string | number)[] | null;
|
|
1538
|
-
readonly loading: boolean;
|
|
1539
|
-
readonly placement: import('naive-ui').PopoverPlacement;
|
|
1540
|
-
readonly options: import('naive-ui').TreeSelectOption[];
|
|
1541
|
-
readonly show: boolean | undefined;
|
|
1542
|
-
readonly separator: string;
|
|
1543
|
-
readonly defaultShow: boolean;
|
|
1544
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
1545
|
-
readonly multiple: boolean;
|
|
1546
|
-
readonly filterable: boolean;
|
|
1547
|
-
readonly disabledField: string;
|
|
1548
|
-
readonly clearFilterAfterSelect: boolean;
|
|
1549
|
-
readonly cascade: boolean;
|
|
1550
|
-
readonly leafOnly: boolean;
|
|
1551
|
-
readonly showPath: boolean;
|
|
1552
|
-
readonly virtualScroll: boolean;
|
|
1553
|
-
readonly checkStrategy: import('treemate').CheckStrategy;
|
|
1554
|
-
readonly labelField: string;
|
|
1555
|
-
readonly childrenField: string;
|
|
1556
|
-
readonly consistentMenuWidth: boolean;
|
|
1557
|
-
readonly defaultExpandAll: boolean;
|
|
1558
|
-
readonly indent: number;
|
|
1559
|
-
readonly keyField: string;
|
|
1560
|
-
readonly defaultExpandedKeys: import('naive-ui/es/tree/src/interface').Key[];
|
|
1561
|
-
readonly checkable: boolean;
|
|
1562
|
-
}, true, {}, import('vue').SlotsType<import('naive-ui').TreeSelectSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1563
|
-
P: {};
|
|
1564
|
-
B: {};
|
|
1565
|
-
D: {};
|
|
1566
|
-
C: {};
|
|
1567
|
-
M: {};
|
|
1568
|
-
Defaults: {};
|
|
1569
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1570
|
-
readonly renderLabel: import('vue').PropType<import('naive-ui').TreeSelectRenderLabel>;
|
|
1571
|
-
readonly renderPrefix: import('vue').PropType<import('naive-ui').TreeSelectRenderPrefix>;
|
|
1572
|
-
readonly renderSuffix: import('vue').PropType<import('naive-ui').TreeSelectRenderSuffix>;
|
|
1573
|
-
readonly nodeProps: import('vue').PropType<import('naive-ui').TreeSelectNodeProps>;
|
|
1574
|
-
readonly watchProps: import('vue').PropType<Array<"defaultCheckedKeys" | "defaultSelectedKeys" | "defaultExpandedKeys">>;
|
|
1575
|
-
readonly getChildren: import('vue').PropType<import('naive-ui/es/tree/src/interface').GetChildren>;
|
|
1576
|
-
readonly onBlur: import('vue').PropType<(e: FocusEvent) => void>;
|
|
1577
|
-
readonly onFocus: import('vue').PropType<(e: FocusEvent) => void>;
|
|
1578
|
-
readonly onLoad: import('vue').PropType<(node: import('naive-ui').TreeSelectOption) => Promise<void>>;
|
|
1579
|
-
readonly onUpdateShow: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(show: boolean) => void>>;
|
|
1580
|
-
readonly onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree-select/src/interface').OnUpdateValue>>;
|
|
1581
|
-
readonly 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree-select/src/interface').OnUpdateValue>>;
|
|
1582
|
-
readonly 'onUpdate:show': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(show: boolean) => void>>;
|
|
1583
|
-
readonly leafOnly: BooleanConstructor;
|
|
1584
|
-
readonly allowCheckingNotLoaded: BooleanConstructor;
|
|
1585
|
-
readonly filter: import('vue').PropType<(pattern: string, node: import('naive-ui').TreeOption) => boolean>;
|
|
1586
|
-
readonly defaultExpandAll: BooleanConstructor;
|
|
1587
|
-
readonly expandedKeys: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
1588
|
-
readonly keyField: {
|
|
1589
|
-
readonly type: StringConstructor;
|
|
1590
|
-
readonly default: "key";
|
|
1591
|
-
};
|
|
1592
|
-
readonly labelField: {
|
|
1593
|
-
readonly type: StringConstructor;
|
|
1594
|
-
readonly default: "label";
|
|
1595
|
-
};
|
|
1596
|
-
readonly childrenField: {
|
|
1597
|
-
readonly type: StringConstructor;
|
|
1598
|
-
readonly default: "children";
|
|
1599
|
-
};
|
|
1600
|
-
readonly disabledField: {
|
|
1601
|
-
readonly type: StringConstructor;
|
|
1602
|
-
readonly default: "disabled";
|
|
1603
|
-
};
|
|
1604
|
-
readonly defaultExpandedKeys: {
|
|
1605
|
-
readonly type: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
1606
|
-
readonly default: () => never[];
|
|
1607
|
-
};
|
|
1608
|
-
readonly indent: {
|
|
1609
|
-
readonly type: NumberConstructor;
|
|
1610
|
-
readonly default: 24;
|
|
1611
|
-
};
|
|
1612
|
-
readonly indeterminateKeys: import('vue').PropType<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
1613
|
-
readonly renderSwitcherIcon: import('vue').PropType<import('naive-ui/es/tree/src/interface').RenderSwitcherIcon>;
|
|
1614
|
-
readonly onUpdateIndeterminateKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
|
|
1615
|
-
readonly 'onUpdate:indeterminateKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
|
|
1616
|
-
readonly onUpdateExpandedKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
|
|
1617
|
-
readonly 'onUpdate:expandedKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
|
|
1618
|
-
readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree-select').TreeSelectOverrideNodeClickBehavior>;
|
|
1619
|
-
readonly bordered: {
|
|
1620
|
-
readonly type: BooleanConstructor;
|
|
1621
|
-
readonly default: true;
|
|
1622
|
-
};
|
|
1623
|
-
readonly cascade: BooleanConstructor;
|
|
1624
|
-
readonly checkable: BooleanConstructor;
|
|
1625
|
-
readonly clearable: BooleanConstructor;
|
|
1626
|
-
readonly clearFilterAfterSelect: {
|
|
1627
|
-
readonly type: BooleanConstructor;
|
|
1628
|
-
readonly default: true;
|
|
1629
|
-
};
|
|
1630
|
-
readonly consistentMenuWidth: {
|
|
1631
|
-
readonly type: BooleanConstructor;
|
|
1632
|
-
readonly default: true;
|
|
1633
|
-
};
|
|
1634
|
-
readonly defaultShow: BooleanConstructor;
|
|
1635
|
-
readonly defaultValue: {
|
|
1636
|
-
readonly type: import('vue').PropType<string | number | Array<string | number> | null>;
|
|
1637
|
-
readonly default: null;
|
|
1638
|
-
};
|
|
1639
|
-
readonly disabled: {
|
|
1640
|
-
readonly type: import('vue').PropType<boolean | undefined>;
|
|
1641
|
-
readonly default: undefined;
|
|
1642
|
-
};
|
|
1643
|
-
readonly filterable: BooleanConstructor;
|
|
1644
|
-
readonly checkStrategy: {
|
|
1645
|
-
readonly type: import('vue').PropType<import('treemate').CheckStrategy>;
|
|
1646
|
-
readonly default: "all";
|
|
1647
|
-
};
|
|
1648
|
-
readonly loading: BooleanConstructor;
|
|
1649
|
-
readonly maxTagCount: import('vue').PropType<number | "responsive">;
|
|
1650
|
-
readonly multiple: BooleanConstructor;
|
|
1651
|
-
readonly showPath: BooleanConstructor;
|
|
1652
|
-
readonly separator: {
|
|
1653
|
-
readonly type: StringConstructor;
|
|
1654
|
-
readonly default: " / ";
|
|
1655
|
-
};
|
|
1656
|
-
readonly options: {
|
|
1657
|
-
readonly type: import('vue').PropType<import('naive-ui').TreeSelectOption[]>;
|
|
1658
|
-
readonly default: () => never[];
|
|
1659
|
-
};
|
|
1660
|
-
readonly placeholder: StringConstructor;
|
|
1661
|
-
readonly placement: {
|
|
1662
|
-
readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
|
|
1663
|
-
readonly default: "bottom-start";
|
|
1664
|
-
};
|
|
1665
|
-
readonly show: {
|
|
1666
|
-
readonly type: import('vue').PropType<boolean | undefined>;
|
|
1667
|
-
readonly default: undefined;
|
|
1668
|
-
};
|
|
1669
|
-
readonly size: import('vue').PropType<"small" | "medium" | "large">;
|
|
1670
|
-
readonly value: import('vue').PropType<string | number | Array<string | number> | null>;
|
|
1671
|
-
readonly to: {
|
|
1672
|
-
type: import('vue').PropType<HTMLElement | string | boolean>;
|
|
1673
|
-
default: undefined;
|
|
1674
|
-
};
|
|
1675
|
-
readonly menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
|
|
1676
|
-
readonly virtualScroll: {
|
|
1677
|
-
readonly type: BooleanConstructor;
|
|
1678
|
-
readonly default: true;
|
|
1679
|
-
};
|
|
1680
|
-
readonly status: import('vue').PropType<import('naive-ui').FormValidationStatus>;
|
|
1681
|
-
readonly renderTag: import('vue').PropType<import('naive-ui').TreeSelectRenderTag>;
|
|
1682
|
-
readonly ellipsisTagPopoverProps: import('vue').PropType<import('naive-ui').PopoverProps>;
|
|
1683
|
-
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
1684
|
-
menuPadding: string;
|
|
1685
|
-
menuColor: string;
|
|
1686
|
-
menuBoxShadow: string;
|
|
1687
|
-
menuBorderRadius: string;
|
|
1688
|
-
menuHeight: string;
|
|
1689
|
-
actionDividerColor: string;
|
|
1690
|
-
actionTextColor: string;
|
|
1691
|
-
actionPadding: string;
|
|
1692
|
-
headerDividerColor: string;
|
|
1693
|
-
headerTextColor: string;
|
|
1694
|
-
headerPadding: string;
|
|
1695
|
-
}, {
|
|
1696
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
1697
|
-
fontSize: string;
|
|
1698
|
-
lineHeight: string;
|
|
1699
|
-
nodeHeight: string;
|
|
1700
|
-
nodeWrapperPadding: string;
|
|
1701
|
-
nodeBorderRadius: string;
|
|
1702
|
-
nodeColorHover: string;
|
|
1703
|
-
nodeColorPressed: string;
|
|
1704
|
-
nodeColorActive: string;
|
|
1705
|
-
arrowColor: string;
|
|
1706
|
-
nodeTextColor: string;
|
|
1707
|
-
nodeTextColorDisabled: string;
|
|
1708
|
-
loadingColor: string;
|
|
1709
|
-
dropMarkColor: string;
|
|
1710
|
-
lineColor: string;
|
|
1711
|
-
}, {
|
|
1712
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
1713
|
-
labelLineHeight: string;
|
|
1714
|
-
fontSizeSmall: string;
|
|
1715
|
-
fontSizeMedium: string;
|
|
1716
|
-
fontSizeLarge: string;
|
|
1717
|
-
borderRadius: string;
|
|
1718
|
-
color: string;
|
|
1719
|
-
colorChecked: string;
|
|
1720
|
-
colorDisabled: string;
|
|
1721
|
-
colorDisabledChecked: string;
|
|
1722
|
-
colorTableHeader: string;
|
|
1723
|
-
colorTableHeaderModal: string;
|
|
1724
|
-
colorTableHeaderPopover: string;
|
|
1725
|
-
checkMarkColor: string;
|
|
1726
|
-
checkMarkColorDisabled: string;
|
|
1727
|
-
checkMarkColorDisabledChecked: string;
|
|
1728
|
-
border: string;
|
|
1729
|
-
borderDisabled: string;
|
|
1730
|
-
borderDisabledChecked: string;
|
|
1731
|
-
borderChecked: string;
|
|
1732
|
-
borderFocus: string;
|
|
1733
|
-
boxShadowFocus: string;
|
|
1734
|
-
textColor: string;
|
|
1735
|
-
textColorDisabled: string;
|
|
1736
|
-
sizeSmall: string;
|
|
1737
|
-
sizeMedium: string;
|
|
1738
|
-
sizeLarge: string;
|
|
1739
|
-
labelPadding: string;
|
|
1740
|
-
labelFontWeight: string;
|
|
1741
|
-
}, any>;
|
|
1742
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1743
|
-
height: string;
|
|
1744
|
-
width: string;
|
|
1745
|
-
borderRadius: string;
|
|
1746
|
-
color: string;
|
|
1747
|
-
colorHover: string;
|
|
1748
|
-
railInsetHorizontalBottom: string;
|
|
1749
|
-
railInsetHorizontalTop: string;
|
|
1750
|
-
railInsetVerticalRight: string;
|
|
1751
|
-
railInsetVerticalLeft: string;
|
|
1752
|
-
railColor: string;
|
|
1753
|
-
}, any>;
|
|
1754
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1755
|
-
fontSizeTiny: string;
|
|
1756
|
-
fontSizeSmall: string;
|
|
1757
|
-
fontSizeMedium: string;
|
|
1758
|
-
fontSizeLarge: string;
|
|
1759
|
-
fontSizeHuge: string;
|
|
1760
|
-
textColor: string;
|
|
1761
|
-
iconColor: string;
|
|
1762
|
-
extraTextColor: string;
|
|
1763
|
-
iconSizeTiny: string;
|
|
1764
|
-
iconSizeSmall: string;
|
|
1765
|
-
iconSizeMedium: string;
|
|
1766
|
-
iconSizeLarge: string;
|
|
1767
|
-
iconSizeHuge: string;
|
|
1768
|
-
}, any>;
|
|
1769
|
-
}>;
|
|
1770
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1771
|
-
fontSizeTiny: string;
|
|
1772
|
-
fontSizeSmall: string;
|
|
1773
|
-
fontSizeMedium: string;
|
|
1774
|
-
fontSizeLarge: string;
|
|
1775
|
-
fontSizeHuge: string;
|
|
1776
|
-
textColor: string;
|
|
1777
|
-
iconColor: string;
|
|
1778
|
-
extraTextColor: string;
|
|
1779
|
-
iconSizeTiny: string;
|
|
1780
|
-
iconSizeSmall: string;
|
|
1781
|
-
iconSizeMedium: string;
|
|
1782
|
-
iconSizeLarge: string;
|
|
1783
|
-
iconSizeHuge: string;
|
|
1784
|
-
}, any>;
|
|
1785
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
1786
|
-
fontSizeTiny: string;
|
|
1787
|
-
fontSizeSmall: string;
|
|
1788
|
-
fontSizeMedium: string;
|
|
1789
|
-
fontSizeLarge: string;
|
|
1790
|
-
heightTiny: string;
|
|
1791
|
-
heightSmall: string;
|
|
1792
|
-
heightMedium: string;
|
|
1793
|
-
heightLarge: string;
|
|
1794
|
-
borderRadius: string;
|
|
1795
|
-
fontWeight: string;
|
|
1796
|
-
textColor: string;
|
|
1797
|
-
textColorDisabled: string;
|
|
1798
|
-
placeholderColor: string;
|
|
1799
|
-
placeholderColorDisabled: string;
|
|
1800
|
-
color: string;
|
|
1801
|
-
colorDisabled: string;
|
|
1802
|
-
colorActive: string;
|
|
1803
|
-
border: string;
|
|
1804
|
-
borderHover: string;
|
|
1805
|
-
borderActive: string;
|
|
1806
|
-
borderFocus: string;
|
|
1807
|
-
boxShadowHover: string;
|
|
1808
|
-
boxShadowActive: string;
|
|
1809
|
-
boxShadowFocus: string;
|
|
1810
|
-
caretColor: string;
|
|
1811
|
-
arrowColor: string;
|
|
1812
|
-
arrowColorDisabled: string;
|
|
1813
|
-
loadingColor: string;
|
|
1814
|
-
borderWarning: string;
|
|
1815
|
-
borderHoverWarning: string;
|
|
1816
|
-
borderActiveWarning: string;
|
|
1817
|
-
borderFocusWarning: string;
|
|
1818
|
-
boxShadowHoverWarning: string;
|
|
1819
|
-
boxShadowActiveWarning: string;
|
|
1820
|
-
boxShadowFocusWarning: string;
|
|
1821
|
-
colorActiveWarning: string;
|
|
1822
|
-
caretColorWarning: string;
|
|
1823
|
-
borderError: string;
|
|
1824
|
-
borderHoverError: string;
|
|
1825
|
-
borderActiveError: string;
|
|
1826
|
-
borderFocusError: string;
|
|
1827
|
-
boxShadowHoverError: string;
|
|
1828
|
-
boxShadowActiveError: string;
|
|
1829
|
-
boxShadowFocusError: string;
|
|
1830
|
-
colorActiveError: string;
|
|
1831
|
-
caretColorError: string;
|
|
1832
|
-
clearColor: string;
|
|
1833
|
-
clearColorHover: string;
|
|
1834
|
-
clearColorPressed: string;
|
|
1835
|
-
paddingSingle: string;
|
|
1836
|
-
paddingMultiple: string;
|
|
1837
|
-
clearSize: string;
|
|
1838
|
-
arrowSize: string;
|
|
1839
|
-
}, {
|
|
1840
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1841
|
-
fontSize: string;
|
|
1842
|
-
borderRadius: string;
|
|
1843
|
-
color: string;
|
|
1844
|
-
dividerColor: string;
|
|
1845
|
-
textColor: string;
|
|
1846
|
-
boxShadow: string;
|
|
1847
|
-
space: string;
|
|
1848
|
-
spaceArrow: string;
|
|
1849
|
-
arrowOffset: string;
|
|
1850
|
-
arrowOffsetVertical: string;
|
|
1851
|
-
arrowHeight: string;
|
|
1852
|
-
padding: string;
|
|
1853
|
-
}, {
|
|
1854
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1855
|
-
height: string;
|
|
1856
|
-
width: string;
|
|
1857
|
-
borderRadius: string;
|
|
1858
|
-
color: string;
|
|
1859
|
-
colorHover: string;
|
|
1860
|
-
railInsetHorizontalBottom: string;
|
|
1861
|
-
railInsetHorizontalTop: string;
|
|
1862
|
-
railInsetVerticalRight: string;
|
|
1863
|
-
railInsetVerticalLeft: string;
|
|
1864
|
-
railColor: string;
|
|
1865
|
-
}, any>;
|
|
1866
|
-
}>;
|
|
1867
|
-
}>;
|
|
1868
|
-
}>>;
|
|
1869
|
-
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
1870
|
-
menuPadding: string;
|
|
1871
|
-
menuColor: string;
|
|
1872
|
-
menuBoxShadow: string;
|
|
1873
|
-
menuBorderRadius: string;
|
|
1874
|
-
menuHeight: string;
|
|
1875
|
-
actionDividerColor: string;
|
|
1876
|
-
actionTextColor: string;
|
|
1877
|
-
actionPadding: string;
|
|
1878
|
-
headerDividerColor: string;
|
|
1879
|
-
headerTextColor: string;
|
|
1880
|
-
headerPadding: string;
|
|
1881
|
-
}, {
|
|
1882
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
1883
|
-
fontSize: string;
|
|
1884
|
-
lineHeight: string;
|
|
1885
|
-
nodeHeight: string;
|
|
1886
|
-
nodeWrapperPadding: string;
|
|
1887
|
-
nodeBorderRadius: string;
|
|
1888
|
-
nodeColorHover: string;
|
|
1889
|
-
nodeColorPressed: string;
|
|
1890
|
-
nodeColorActive: string;
|
|
1891
|
-
arrowColor: string;
|
|
1892
|
-
nodeTextColor: string;
|
|
1893
|
-
nodeTextColorDisabled: string;
|
|
1894
|
-
loadingColor: string;
|
|
1895
|
-
dropMarkColor: string;
|
|
1896
|
-
lineColor: string;
|
|
1897
|
-
}, {
|
|
1898
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
1899
|
-
labelLineHeight: string;
|
|
1900
|
-
fontSizeSmall: string;
|
|
1901
|
-
fontSizeMedium: string;
|
|
1902
|
-
fontSizeLarge: string;
|
|
1903
|
-
borderRadius: string;
|
|
1904
|
-
color: string;
|
|
1905
|
-
colorChecked: string;
|
|
1906
|
-
colorDisabled: string;
|
|
1907
|
-
colorDisabledChecked: string;
|
|
1908
|
-
colorTableHeader: string;
|
|
1909
|
-
colorTableHeaderModal: string;
|
|
1910
|
-
colorTableHeaderPopover: string;
|
|
1911
|
-
checkMarkColor: string;
|
|
1912
|
-
checkMarkColorDisabled: string;
|
|
1913
|
-
checkMarkColorDisabledChecked: string;
|
|
1914
|
-
border: string;
|
|
1915
|
-
borderDisabled: string;
|
|
1916
|
-
borderDisabledChecked: string;
|
|
1917
|
-
borderChecked: string;
|
|
1918
|
-
borderFocus: string;
|
|
1919
|
-
boxShadowFocus: string;
|
|
1920
|
-
textColor: string;
|
|
1921
|
-
textColorDisabled: string;
|
|
1922
|
-
sizeSmall: string;
|
|
1923
|
-
sizeMedium: string;
|
|
1924
|
-
sizeLarge: string;
|
|
1925
|
-
labelPadding: string;
|
|
1926
|
-
labelFontWeight: string;
|
|
1927
|
-
}, any>;
|
|
1928
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1929
|
-
height: string;
|
|
1930
|
-
width: string;
|
|
1931
|
-
borderRadius: string;
|
|
1932
|
-
color: string;
|
|
1933
|
-
colorHover: string;
|
|
1934
|
-
railInsetHorizontalBottom: string;
|
|
1935
|
-
railInsetHorizontalTop: string;
|
|
1936
|
-
railInsetVerticalRight: string;
|
|
1937
|
-
railInsetVerticalLeft: string;
|
|
1938
|
-
railColor: string;
|
|
1939
|
-
}, any>;
|
|
1940
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1941
|
-
fontSizeTiny: string;
|
|
1942
|
-
fontSizeSmall: string;
|
|
1943
|
-
fontSizeMedium: string;
|
|
1944
|
-
fontSizeLarge: string;
|
|
1945
|
-
fontSizeHuge: string;
|
|
1946
|
-
textColor: string;
|
|
1947
|
-
iconColor: string;
|
|
1948
|
-
extraTextColor: string;
|
|
1949
|
-
iconSizeTiny: string;
|
|
1950
|
-
iconSizeSmall: string;
|
|
1951
|
-
iconSizeMedium: string;
|
|
1952
|
-
iconSizeLarge: string;
|
|
1953
|
-
iconSizeHuge: string;
|
|
1954
|
-
}, any>;
|
|
1955
|
-
}>;
|
|
1956
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1957
|
-
fontSizeTiny: string;
|
|
1958
|
-
fontSizeSmall: string;
|
|
1959
|
-
fontSizeMedium: string;
|
|
1960
|
-
fontSizeLarge: string;
|
|
1961
|
-
fontSizeHuge: string;
|
|
1962
|
-
textColor: string;
|
|
1963
|
-
iconColor: string;
|
|
1964
|
-
extraTextColor: string;
|
|
1965
|
-
iconSizeTiny: string;
|
|
1966
|
-
iconSizeSmall: string;
|
|
1967
|
-
iconSizeMedium: string;
|
|
1968
|
-
iconSizeLarge: string;
|
|
1969
|
-
iconSizeHuge: string;
|
|
1970
|
-
}, any>;
|
|
1971
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
1972
|
-
fontSizeTiny: string;
|
|
1973
|
-
fontSizeSmall: string;
|
|
1974
|
-
fontSizeMedium: string;
|
|
1975
|
-
fontSizeLarge: string;
|
|
1976
|
-
heightTiny: string;
|
|
1977
|
-
heightSmall: string;
|
|
1978
|
-
heightMedium: string;
|
|
1979
|
-
heightLarge: string;
|
|
1980
|
-
borderRadius: string;
|
|
1981
|
-
fontWeight: string;
|
|
1982
|
-
textColor: string;
|
|
1983
|
-
textColorDisabled: string;
|
|
1984
|
-
placeholderColor: string;
|
|
1985
|
-
placeholderColorDisabled: string;
|
|
1986
|
-
color: string;
|
|
1987
|
-
colorDisabled: string;
|
|
1988
|
-
colorActive: string;
|
|
1989
|
-
border: string;
|
|
1990
|
-
borderHover: string;
|
|
1991
|
-
borderActive: string;
|
|
1992
|
-
borderFocus: string;
|
|
1993
|
-
boxShadowHover: string;
|
|
1994
|
-
boxShadowActive: string;
|
|
1995
|
-
boxShadowFocus: string;
|
|
1996
|
-
caretColor: string;
|
|
1997
|
-
arrowColor: string;
|
|
1998
|
-
arrowColorDisabled: string;
|
|
1999
|
-
loadingColor: string;
|
|
2000
|
-
borderWarning: string;
|
|
2001
|
-
borderHoverWarning: string;
|
|
2002
|
-
borderActiveWarning: string;
|
|
2003
|
-
borderFocusWarning: string;
|
|
2004
|
-
boxShadowHoverWarning: string;
|
|
2005
|
-
boxShadowActiveWarning: string;
|
|
2006
|
-
boxShadowFocusWarning: string;
|
|
2007
|
-
colorActiveWarning: string;
|
|
2008
|
-
caretColorWarning: string;
|
|
2009
|
-
borderError: string;
|
|
2010
|
-
borderHoverError: string;
|
|
2011
|
-
borderActiveError: string;
|
|
2012
|
-
borderFocusError: string;
|
|
2013
|
-
boxShadowHoverError: string;
|
|
2014
|
-
boxShadowActiveError: string;
|
|
2015
|
-
boxShadowFocusError: string;
|
|
2016
|
-
colorActiveError: string;
|
|
2017
|
-
caretColorError: string;
|
|
2018
|
-
clearColor: string;
|
|
2019
|
-
clearColorHover: string;
|
|
2020
|
-
clearColorPressed: string;
|
|
2021
|
-
paddingSingle: string;
|
|
2022
|
-
paddingMultiple: string;
|
|
2023
|
-
clearSize: string;
|
|
2024
|
-
arrowSize: string;
|
|
2025
|
-
}, {
|
|
2026
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
2027
|
-
fontSize: string;
|
|
2028
|
-
borderRadius: string;
|
|
2029
|
-
color: string;
|
|
2030
|
-
dividerColor: string;
|
|
2031
|
-
textColor: string;
|
|
2032
|
-
boxShadow: string;
|
|
2033
|
-
space: string;
|
|
2034
|
-
spaceArrow: string;
|
|
2035
|
-
arrowOffset: string;
|
|
2036
|
-
arrowOffsetVertical: string;
|
|
2037
|
-
arrowHeight: string;
|
|
2038
|
-
padding: string;
|
|
2039
|
-
}, {
|
|
2040
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2041
|
-
height: string;
|
|
2042
|
-
width: string;
|
|
2043
|
-
borderRadius: string;
|
|
2044
|
-
color: string;
|
|
2045
|
-
colorHover: string;
|
|
2046
|
-
railInsetHorizontalBottom: string;
|
|
2047
|
-
railInsetHorizontalTop: string;
|
|
2048
|
-
railInsetVerticalRight: string;
|
|
2049
|
-
railInsetVerticalLeft: string;
|
|
2050
|
-
railColor: string;
|
|
2051
|
-
}, any>;
|
|
2052
|
-
}>;
|
|
2053
|
-
}>;
|
|
2054
|
-
}>>>;
|
|
2055
|
-
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
|
|
2056
|
-
menuPadding: string;
|
|
2057
|
-
menuColor: string;
|
|
2058
|
-
menuBoxShadow: string;
|
|
2059
|
-
menuBorderRadius: string;
|
|
2060
|
-
menuHeight: string;
|
|
2061
|
-
actionDividerColor: string;
|
|
2062
|
-
actionTextColor: string;
|
|
2063
|
-
actionPadding: string;
|
|
2064
|
-
headerDividerColor: string;
|
|
2065
|
-
headerTextColor: string;
|
|
2066
|
-
headerPadding: string;
|
|
2067
|
-
}, {
|
|
2068
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
2069
|
-
fontSize: string;
|
|
2070
|
-
lineHeight: string;
|
|
2071
|
-
nodeHeight: string;
|
|
2072
|
-
nodeWrapperPadding: string;
|
|
2073
|
-
nodeBorderRadius: string;
|
|
2074
|
-
nodeColorHover: string;
|
|
2075
|
-
nodeColorPressed: string;
|
|
2076
|
-
nodeColorActive: string;
|
|
2077
|
-
arrowColor: string;
|
|
2078
|
-
nodeTextColor: string;
|
|
2079
|
-
nodeTextColorDisabled: string;
|
|
2080
|
-
loadingColor: string;
|
|
2081
|
-
dropMarkColor: string;
|
|
2082
|
-
lineColor: string;
|
|
2083
|
-
}, {
|
|
2084
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
2085
|
-
labelLineHeight: string;
|
|
2086
|
-
fontSizeSmall: string;
|
|
2087
|
-
fontSizeMedium: string;
|
|
2088
|
-
fontSizeLarge: string;
|
|
2089
|
-
borderRadius: string;
|
|
2090
|
-
color: string;
|
|
2091
|
-
colorChecked: string;
|
|
2092
|
-
colorDisabled: string;
|
|
2093
|
-
colorDisabledChecked: string;
|
|
2094
|
-
colorTableHeader: string;
|
|
2095
|
-
colorTableHeaderModal: string;
|
|
2096
|
-
colorTableHeaderPopover: string;
|
|
2097
|
-
checkMarkColor: string;
|
|
2098
|
-
checkMarkColorDisabled: string;
|
|
2099
|
-
checkMarkColorDisabledChecked: string;
|
|
2100
|
-
border: string;
|
|
2101
|
-
borderDisabled: string;
|
|
2102
|
-
borderDisabledChecked: string;
|
|
2103
|
-
borderChecked: string;
|
|
2104
|
-
borderFocus: string;
|
|
2105
|
-
boxShadowFocus: string;
|
|
2106
|
-
textColor: string;
|
|
2107
|
-
textColorDisabled: string;
|
|
2108
|
-
sizeSmall: string;
|
|
2109
|
-
sizeMedium: string;
|
|
2110
|
-
sizeLarge: string;
|
|
2111
|
-
labelPadding: string;
|
|
2112
|
-
labelFontWeight: string;
|
|
2113
|
-
}, any>;
|
|
2114
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2115
|
-
height: string;
|
|
2116
|
-
width: string;
|
|
2117
|
-
borderRadius: string;
|
|
2118
|
-
color: string;
|
|
2119
|
-
colorHover: string;
|
|
2120
|
-
railInsetHorizontalBottom: string;
|
|
2121
|
-
railInsetHorizontalTop: string;
|
|
2122
|
-
railInsetVerticalRight: string;
|
|
2123
|
-
railInsetVerticalLeft: string;
|
|
2124
|
-
railColor: string;
|
|
2125
|
-
}, any>;
|
|
2126
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
2127
|
-
fontSizeTiny: string;
|
|
2128
|
-
fontSizeSmall: string;
|
|
2129
|
-
fontSizeMedium: string;
|
|
2130
|
-
fontSizeLarge: string;
|
|
2131
|
-
fontSizeHuge: string;
|
|
2132
|
-
textColor: string;
|
|
2133
|
-
iconColor: string;
|
|
2134
|
-
extraTextColor: string;
|
|
2135
|
-
iconSizeTiny: string;
|
|
2136
|
-
iconSizeSmall: string;
|
|
2137
|
-
iconSizeMedium: string;
|
|
2138
|
-
iconSizeLarge: string;
|
|
2139
|
-
iconSizeHuge: string;
|
|
2140
|
-
}, any>;
|
|
2141
|
-
}>;
|
|
2142
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
2143
|
-
fontSizeTiny: string;
|
|
2144
|
-
fontSizeSmall: string;
|
|
2145
|
-
fontSizeMedium: string;
|
|
2146
|
-
fontSizeLarge: string;
|
|
2147
|
-
fontSizeHuge: string;
|
|
2148
|
-
textColor: string;
|
|
2149
|
-
iconColor: string;
|
|
2150
|
-
extraTextColor: string;
|
|
2151
|
-
iconSizeTiny: string;
|
|
2152
|
-
iconSizeSmall: string;
|
|
2153
|
-
iconSizeMedium: string;
|
|
2154
|
-
iconSizeLarge: string;
|
|
2155
|
-
iconSizeHuge: string;
|
|
2156
|
-
}, any>;
|
|
2157
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
2158
|
-
fontSizeTiny: string;
|
|
2159
|
-
fontSizeSmall: string;
|
|
2160
|
-
fontSizeMedium: string;
|
|
2161
|
-
fontSizeLarge: string;
|
|
2162
|
-
heightTiny: string;
|
|
2163
|
-
heightSmall: string;
|
|
2164
|
-
heightMedium: string;
|
|
2165
|
-
heightLarge: string;
|
|
2166
|
-
borderRadius: string;
|
|
2167
|
-
fontWeight: string;
|
|
2168
|
-
textColor: string;
|
|
2169
|
-
textColorDisabled: string;
|
|
2170
|
-
placeholderColor: string;
|
|
2171
|
-
placeholderColorDisabled: string;
|
|
2172
|
-
color: string;
|
|
2173
|
-
colorDisabled: string;
|
|
2174
|
-
colorActive: string;
|
|
2175
|
-
border: string;
|
|
2176
|
-
borderHover: string;
|
|
2177
|
-
borderActive: string;
|
|
2178
|
-
borderFocus: string;
|
|
2179
|
-
boxShadowHover: string;
|
|
2180
|
-
boxShadowActive: string;
|
|
2181
|
-
boxShadowFocus: string;
|
|
2182
|
-
caretColor: string;
|
|
2183
|
-
arrowColor: string;
|
|
2184
|
-
arrowColorDisabled: string;
|
|
2185
|
-
loadingColor: string;
|
|
2186
|
-
borderWarning: string;
|
|
2187
|
-
borderHoverWarning: string;
|
|
2188
|
-
borderActiveWarning: string;
|
|
2189
|
-
borderFocusWarning: string;
|
|
2190
|
-
boxShadowHoverWarning: string;
|
|
2191
|
-
boxShadowActiveWarning: string;
|
|
2192
|
-
boxShadowFocusWarning: string;
|
|
2193
|
-
colorActiveWarning: string;
|
|
2194
|
-
caretColorWarning: string;
|
|
2195
|
-
borderError: string;
|
|
2196
|
-
borderHoverError: string;
|
|
2197
|
-
borderActiveError: string;
|
|
2198
|
-
borderFocusError: string;
|
|
2199
|
-
boxShadowHoverError: string;
|
|
2200
|
-
boxShadowActiveError: string;
|
|
2201
|
-
boxShadowFocusError: string;
|
|
2202
|
-
colorActiveError: string;
|
|
2203
|
-
caretColorError: string;
|
|
2204
|
-
clearColor: string;
|
|
2205
|
-
clearColorHover: string;
|
|
2206
|
-
clearColorPressed: string;
|
|
2207
|
-
paddingSingle: string;
|
|
2208
|
-
paddingMultiple: string;
|
|
2209
|
-
clearSize: string;
|
|
2210
|
-
arrowSize: string;
|
|
2211
|
-
}, {
|
|
2212
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
2213
|
-
fontSize: string;
|
|
2214
|
-
borderRadius: string;
|
|
2215
|
-
color: string;
|
|
2216
|
-
dividerColor: string;
|
|
2217
|
-
textColor: string;
|
|
2218
|
-
boxShadow: string;
|
|
2219
|
-
space: string;
|
|
2220
|
-
spaceArrow: string;
|
|
2221
|
-
arrowOffset: string;
|
|
2222
|
-
arrowOffsetVertical: string;
|
|
2223
|
-
arrowHeight: string;
|
|
2224
|
-
padding: string;
|
|
2225
|
-
}, {
|
|
2226
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2227
|
-
height: string;
|
|
2228
|
-
width: string;
|
|
2229
|
-
borderRadius: string;
|
|
2230
|
-
color: string;
|
|
2231
|
-
colorHover: string;
|
|
2232
|
-
railInsetHorizontalBottom: string;
|
|
2233
|
-
railInsetHorizontalTop: string;
|
|
2234
|
-
railInsetVerticalRight: string;
|
|
2235
|
-
railInsetVerticalLeft: string;
|
|
2236
|
-
railColor: string;
|
|
2237
|
-
}, any>;
|
|
2238
|
-
}>;
|
|
2239
|
-
}>;
|
|
2240
|
-
}>>>;
|
|
2241
|
-
}>> & Readonly<{}>, {
|
|
2242
|
-
menuElRef: import('vue').Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
2243
|
-
mergedStatus: import('vue').ComputedRef<import('naive-ui').FormValidationStatus | undefined>;
|
|
2244
|
-
triggerInstRef: import('vue').Ref<{
|
|
2245
|
-
isComposing: boolean;
|
|
2246
|
-
focus: () => void;
|
|
2247
|
-
focusInput: () => void;
|
|
2248
|
-
blur: () => void;
|
|
2249
|
-
blurInput: () => void;
|
|
2250
|
-
$el: HTMLElement;
|
|
2251
|
-
} | null, import('naive-ui/es/_internal').InternalSelectionInst | {
|
|
2252
|
-
isComposing: boolean;
|
|
2253
|
-
focus: () => void;
|
|
2254
|
-
focusInput: () => void;
|
|
2255
|
-
blur: () => void;
|
|
2256
|
-
blurInput: () => void;
|
|
2257
|
-
$el: HTMLElement;
|
|
2258
|
-
} | null>;
|
|
2259
|
-
followerInstRef: import('vue').Ref<{
|
|
2260
|
-
syncPosition: () => void;
|
|
2261
|
-
} | null, import('vueuc').FollowerInst | {
|
|
2262
|
-
syncPosition: () => void;
|
|
2263
|
-
} | null>;
|
|
2264
|
-
treeInstRef: import('vue').Ref<{
|
|
2265
|
-
handleKeydown: (e: KeyboardEvent) => {
|
|
2266
|
-
enterBehavior: import('naive-ui').TreeOverrideNodeClickBehaviorReturn | null;
|
|
2267
|
-
};
|
|
2268
|
-
} | null, import('naive-ui/es/tree/src/interface').InternalTreeInst | {
|
|
2269
|
-
handleKeydown: (e: KeyboardEvent) => {
|
|
2270
|
-
enterBehavior: import('naive-ui').TreeOverrideNodeClickBehaviorReturn | null;
|
|
2271
|
-
};
|
|
2272
|
-
} | null>;
|
|
2273
|
-
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2274
|
-
mergedValue: import('vue').ComputedRef<string | number | (string | number)[] | null>;
|
|
2275
|
-
mergedShow: import('vue').ComputedRef<boolean>;
|
|
2276
|
-
namespace: import('vue').ComputedRef<string | undefined>;
|
|
2277
|
-
adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
|
|
2278
|
-
isMounted: Readonly<import('vue').Ref<boolean, boolean>>;
|
|
2279
|
-
focused: import('vue').Ref<boolean, boolean>;
|
|
2280
|
-
menuPadding: import('vue').ComputedRef<string>;
|
|
2281
|
-
mergedPlaceholder: import('vue').ComputedRef<string>;
|
|
2282
|
-
mergedExpandedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[] | undefined>;
|
|
2283
|
-
treeSelectedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
2284
|
-
treeCheckedKeys: import('vue').ComputedRef<import('naive-ui/es/tree/src/interface').Key[]>;
|
|
2285
|
-
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large">;
|
|
2286
|
-
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
2287
|
-
selectedOption: import('vue').ComputedRef<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)> | null>;
|
|
2288
|
-
selectedOptions: import('vue').ComputedRef<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)>[] | null>;
|
|
2289
|
-
pattern: import('vue').Ref<string, string>;
|
|
2290
|
-
pendingNodeKey: import('vue').Ref<string | number | null, string | number | null>;
|
|
2291
|
-
mergedCascade: import('vue').ComputedRef<boolean>;
|
|
2292
|
-
mergedFilter: import('vue').ComputedRef<(pattern: string, node: import('naive-ui').TreeOption) => boolean>;
|
|
2293
|
-
selectionRenderTag: import('vue').ComputedRef<(({ option, handleClose }: {
|
|
2294
|
-
option: import('naive-ui').SelectOption;
|
|
2295
|
-
handleClose: () => void;
|
|
2296
|
-
}) => import('vue').VNodeChild) | undefined>;
|
|
2297
|
-
handleTriggerOrMenuResize: () => void;
|
|
2298
|
-
doUpdateExpandedKeys: (keys: import('naive-ui/es/tree/src/interface').Key[], option: Array<import('naive-ui').TreeSelectOption | null>, meta: {
|
|
2299
|
-
node: import('naive-ui').TreeSelectOption;
|
|
2300
|
-
action: "expand" | "collapse";
|
|
2301
|
-
} | {
|
|
2302
|
-
node: null;
|
|
2303
|
-
action: "filter";
|
|
2304
|
-
}) => void;
|
|
2305
|
-
handleMenuLeave: () => void;
|
|
2306
|
-
handleTriggerClick: () => void;
|
|
2307
|
-
handleMenuClickoutside: (e: MouseEvent) => void;
|
|
2308
|
-
handleUpdateCheckedKeys: (keys: import('naive-ui/es/tree/src/interface').Key[], _: unknown, meta: {
|
|
2309
|
-
node: import('naive-ui').TreeOption | null;
|
|
2310
|
-
action: "check" | "uncheck";
|
|
2311
|
-
}) => void;
|
|
2312
|
-
handleUpdateIndeterminateKeys: (keys: import('naive-ui/es/tree/src/interface').Key[]) => void;
|
|
2313
|
-
handleTriggerFocus: (e: FocusEvent) => void;
|
|
2314
|
-
handleTriggerBlur: (e: FocusEvent) => void;
|
|
2315
|
-
handleMenuFocusin: (e: FocusEvent) => void;
|
|
2316
|
-
handleMenuFocusout: (e: FocusEvent) => void;
|
|
2317
|
-
handleClear: (e: MouseEvent) => void;
|
|
2318
|
-
handleDeleteOption: (option: import('naive-ui/es/select/src/interface').SelectBaseOption) => void;
|
|
2319
|
-
handlePatternInput: (e: InputEvent) => void;
|
|
2320
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
2321
|
-
handleTabOut: () => void;
|
|
2322
|
-
handleMenuMousedown: (e: MouseEvent) => void;
|
|
2323
|
-
mergedTheme: import('vue').ComputedRef<{
|
|
2324
|
-
common: import('naive-ui').ThemeCommonVars;
|
|
2325
|
-
self: {
|
|
2326
|
-
menuPadding: string;
|
|
2327
|
-
menuColor: string;
|
|
2328
|
-
menuBoxShadow: string;
|
|
2329
|
-
menuBorderRadius: string;
|
|
2330
|
-
menuHeight: string;
|
|
2331
|
-
actionDividerColor: string;
|
|
2332
|
-
actionTextColor: string;
|
|
2333
|
-
actionPadding: string;
|
|
2334
|
-
headerDividerColor: string;
|
|
2335
|
-
headerTextColor: string;
|
|
2336
|
-
headerPadding: string;
|
|
2337
|
-
};
|
|
2338
|
-
peers: {
|
|
2339
|
-
Tree: import('naive-ui/es/_mixins').Theme<"Tree", {
|
|
2340
|
-
fontSize: string;
|
|
2341
|
-
lineHeight: string;
|
|
2342
|
-
nodeHeight: string;
|
|
2343
|
-
nodeWrapperPadding: string;
|
|
2344
|
-
nodeBorderRadius: string;
|
|
2345
|
-
nodeColorHover: string;
|
|
2346
|
-
nodeColorPressed: string;
|
|
2347
|
-
nodeColorActive: string;
|
|
2348
|
-
arrowColor: string;
|
|
2349
|
-
nodeTextColor: string;
|
|
2350
|
-
nodeTextColorDisabled: string;
|
|
2351
|
-
loadingColor: string;
|
|
2352
|
-
dropMarkColor: string;
|
|
2353
|
-
lineColor: string;
|
|
2354
|
-
}, {
|
|
2355
|
-
Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
2356
|
-
labelLineHeight: string;
|
|
2357
|
-
fontSizeSmall: string;
|
|
2358
|
-
fontSizeMedium: string;
|
|
2359
|
-
fontSizeLarge: string;
|
|
2360
|
-
borderRadius: string;
|
|
2361
|
-
color: string;
|
|
2362
|
-
colorChecked: string;
|
|
2363
|
-
colorDisabled: string;
|
|
2364
|
-
colorDisabledChecked: string;
|
|
2365
|
-
colorTableHeader: string;
|
|
2366
|
-
colorTableHeaderModal: string;
|
|
2367
|
-
colorTableHeaderPopover: string;
|
|
2368
|
-
checkMarkColor: string;
|
|
2369
|
-
checkMarkColorDisabled: string;
|
|
2370
|
-
checkMarkColorDisabledChecked: string;
|
|
2371
|
-
border: string;
|
|
2372
|
-
borderDisabled: string;
|
|
2373
|
-
borderDisabledChecked: string;
|
|
2374
|
-
borderChecked: string;
|
|
2375
|
-
borderFocus: string;
|
|
2376
|
-
boxShadowFocus: string;
|
|
2377
|
-
textColor: string;
|
|
2378
|
-
textColorDisabled: string;
|
|
2379
|
-
sizeSmall: string;
|
|
2380
|
-
sizeMedium: string;
|
|
2381
|
-
sizeLarge: string;
|
|
2382
|
-
labelPadding: string;
|
|
2383
|
-
labelFontWeight: string;
|
|
2384
|
-
}, any>;
|
|
2385
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2386
|
-
height: string;
|
|
2387
|
-
width: string;
|
|
2388
|
-
borderRadius: string;
|
|
2389
|
-
color: string;
|
|
2390
|
-
colorHover: string;
|
|
2391
|
-
railInsetHorizontalBottom: string;
|
|
2392
|
-
railInsetHorizontalTop: string;
|
|
2393
|
-
railInsetVerticalRight: string;
|
|
2394
|
-
railInsetVerticalLeft: string;
|
|
2395
|
-
railColor: string;
|
|
2396
|
-
}, any>;
|
|
2397
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
2398
|
-
fontSizeTiny: string;
|
|
2399
|
-
fontSizeSmall: string;
|
|
2400
|
-
fontSizeMedium: string;
|
|
2401
|
-
fontSizeLarge: string;
|
|
2402
|
-
fontSizeHuge: string;
|
|
2403
|
-
textColor: string;
|
|
2404
|
-
iconColor: string;
|
|
2405
|
-
extraTextColor: string;
|
|
2406
|
-
iconSizeTiny: string;
|
|
2407
|
-
iconSizeSmall: string;
|
|
2408
|
-
iconSizeMedium: string;
|
|
2409
|
-
iconSizeLarge: string;
|
|
2410
|
-
iconSizeHuge: string;
|
|
2411
|
-
}, any>;
|
|
2412
|
-
}>;
|
|
2413
|
-
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
2414
|
-
fontSizeTiny: string;
|
|
2415
|
-
fontSizeSmall: string;
|
|
2416
|
-
fontSizeMedium: string;
|
|
2417
|
-
fontSizeLarge: string;
|
|
2418
|
-
fontSizeHuge: string;
|
|
2419
|
-
textColor: string;
|
|
2420
|
-
iconColor: string;
|
|
2421
|
-
extraTextColor: string;
|
|
2422
|
-
iconSizeTiny: string;
|
|
2423
|
-
iconSizeSmall: string;
|
|
2424
|
-
iconSizeMedium: string;
|
|
2425
|
-
iconSizeLarge: string;
|
|
2426
|
-
iconSizeHuge: string;
|
|
2427
|
-
}, any>;
|
|
2428
|
-
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
2429
|
-
fontSizeTiny: string;
|
|
2430
|
-
fontSizeSmall: string;
|
|
2431
|
-
fontSizeMedium: string;
|
|
2432
|
-
fontSizeLarge: string;
|
|
2433
|
-
heightTiny: string;
|
|
2434
|
-
heightSmall: string;
|
|
2435
|
-
heightMedium: string;
|
|
2436
|
-
heightLarge: string;
|
|
2437
|
-
borderRadius: string;
|
|
2438
|
-
fontWeight: string;
|
|
2439
|
-
textColor: string;
|
|
2440
|
-
textColorDisabled: string;
|
|
2441
|
-
placeholderColor: string;
|
|
2442
|
-
placeholderColorDisabled: string;
|
|
2443
|
-
color: string;
|
|
2444
|
-
colorDisabled: string;
|
|
2445
|
-
colorActive: string;
|
|
2446
|
-
border: string;
|
|
2447
|
-
borderHover: string;
|
|
2448
|
-
borderActive: string;
|
|
2449
|
-
borderFocus: string;
|
|
2450
|
-
boxShadowHover: string;
|
|
2451
|
-
boxShadowActive: string;
|
|
2452
|
-
boxShadowFocus: string;
|
|
2453
|
-
caretColor: string;
|
|
2454
|
-
arrowColor: string;
|
|
2455
|
-
arrowColorDisabled: string;
|
|
2456
|
-
loadingColor: string;
|
|
2457
|
-
borderWarning: string;
|
|
2458
|
-
borderHoverWarning: string;
|
|
2459
|
-
borderActiveWarning: string;
|
|
2460
|
-
borderFocusWarning: string;
|
|
2461
|
-
boxShadowHoverWarning: string;
|
|
2462
|
-
boxShadowActiveWarning: string;
|
|
2463
|
-
boxShadowFocusWarning: string;
|
|
2464
|
-
colorActiveWarning: string;
|
|
2465
|
-
caretColorWarning: string;
|
|
2466
|
-
borderError: string;
|
|
2467
|
-
borderHoverError: string;
|
|
2468
|
-
borderActiveError: string;
|
|
2469
|
-
borderFocusError: string;
|
|
2470
|
-
boxShadowHoverError: string;
|
|
2471
|
-
boxShadowActiveError: string;
|
|
2472
|
-
boxShadowFocusError: string;
|
|
2473
|
-
colorActiveError: string;
|
|
2474
|
-
caretColorError: string;
|
|
2475
|
-
clearColor: string;
|
|
2476
|
-
clearColorHover: string;
|
|
2477
|
-
clearColorPressed: string;
|
|
2478
|
-
paddingSingle: string;
|
|
2479
|
-
paddingMultiple: string;
|
|
2480
|
-
clearSize: string;
|
|
2481
|
-
arrowSize: string;
|
|
2482
|
-
}, {
|
|
2483
|
-
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
2484
|
-
fontSize: string;
|
|
2485
|
-
borderRadius: string;
|
|
2486
|
-
color: string;
|
|
2487
|
-
dividerColor: string;
|
|
2488
|
-
textColor: string;
|
|
2489
|
-
boxShadow: string;
|
|
2490
|
-
space: string;
|
|
2491
|
-
spaceArrow: string;
|
|
2492
|
-
arrowOffset: string;
|
|
2493
|
-
arrowOffsetVertical: string;
|
|
2494
|
-
arrowHeight: string;
|
|
2495
|
-
padding: string;
|
|
2496
|
-
}, {
|
|
2497
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2498
|
-
height: string;
|
|
2499
|
-
width: string;
|
|
2500
|
-
borderRadius: string;
|
|
2501
|
-
color: string;
|
|
2502
|
-
colorHover: string;
|
|
2503
|
-
railInsetHorizontalBottom: string;
|
|
2504
|
-
railInsetHorizontalTop: string;
|
|
2505
|
-
railInsetVerticalRight: string;
|
|
2506
|
-
railInsetVerticalLeft: string;
|
|
2507
|
-
railColor: string;
|
|
2508
|
-
}, any>;
|
|
2509
|
-
}>;
|
|
2510
|
-
}>;
|
|
2511
|
-
};
|
|
2512
|
-
peerOverrides: {
|
|
2513
|
-
Tree?: {
|
|
2514
|
-
peers?: {
|
|
2515
|
-
Checkbox?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
2516
|
-
labelLineHeight: string;
|
|
2517
|
-
fontSizeSmall: string;
|
|
2518
|
-
fontSizeMedium: string;
|
|
2519
|
-
fontSizeLarge: string;
|
|
2520
|
-
borderRadius: string;
|
|
2521
|
-
color: string;
|
|
2522
|
-
colorChecked: string;
|
|
2523
|
-
colorDisabled: string;
|
|
2524
|
-
colorDisabledChecked: string;
|
|
2525
|
-
colorTableHeader: string;
|
|
2526
|
-
colorTableHeaderModal: string;
|
|
2527
|
-
colorTableHeaderPopover: string;
|
|
2528
|
-
checkMarkColor: string;
|
|
2529
|
-
checkMarkColorDisabled: string;
|
|
2530
|
-
checkMarkColorDisabledChecked: string;
|
|
2531
|
-
border: string;
|
|
2532
|
-
borderDisabled: string;
|
|
2533
|
-
borderDisabledChecked: string;
|
|
2534
|
-
borderChecked: string;
|
|
2535
|
-
borderFocus: string;
|
|
2536
|
-
boxShadowFocus: string;
|
|
2537
|
-
textColor: string;
|
|
2538
|
-
textColorDisabled: string;
|
|
2539
|
-
sizeSmall: string;
|
|
2540
|
-
sizeMedium: string;
|
|
2541
|
-
sizeLarge: string;
|
|
2542
|
-
labelPadding: string;
|
|
2543
|
-
labelFontWeight: string;
|
|
2544
|
-
}, any>> | undefined;
|
|
2545
|
-
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2546
|
-
height: string;
|
|
2547
|
-
width: string;
|
|
2548
|
-
borderRadius: string;
|
|
2549
|
-
color: string;
|
|
2550
|
-
colorHover: string;
|
|
2551
|
-
railInsetHorizontalBottom: string;
|
|
2552
|
-
railInsetHorizontalTop: string;
|
|
2553
|
-
railInsetVerticalRight: string;
|
|
2554
|
-
railInsetVerticalLeft: string;
|
|
2555
|
-
railColor: string;
|
|
2556
|
-
}, any>> | undefined;
|
|
2557
|
-
Empty?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
2558
|
-
fontSizeTiny: string;
|
|
2559
|
-
fontSizeSmall: string;
|
|
2560
|
-
fontSizeMedium: string;
|
|
2561
|
-
fontSizeLarge: string;
|
|
2562
|
-
fontSizeHuge: string;
|
|
2563
|
-
textColor: string;
|
|
2564
|
-
iconColor: string;
|
|
2565
|
-
extraTextColor: string;
|
|
2566
|
-
iconSizeTiny: string;
|
|
2567
|
-
iconSizeSmall: string;
|
|
2568
|
-
iconSizeMedium: string;
|
|
2569
|
-
iconSizeLarge: string;
|
|
2570
|
-
iconSizeHuge: string;
|
|
2571
|
-
}, any>> | undefined;
|
|
2572
|
-
} | undefined;
|
|
2573
|
-
} | undefined;
|
|
2574
|
-
Empty?: {
|
|
2575
|
-
peers?: {
|
|
2576
|
-
[x: string]: any;
|
|
2577
|
-
} | undefined;
|
|
2578
|
-
} | undefined;
|
|
2579
|
-
InternalSelection?: {
|
|
2580
|
-
peers?: {
|
|
2581
|
-
Popover?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
2582
|
-
fontSize: string;
|
|
2583
|
-
borderRadius: string;
|
|
2584
|
-
color: string;
|
|
2585
|
-
dividerColor: string;
|
|
2586
|
-
textColor: string;
|
|
2587
|
-
boxShadow: string;
|
|
2588
|
-
space: string;
|
|
2589
|
-
spaceArrow: string;
|
|
2590
|
-
arrowOffset: string;
|
|
2591
|
-
arrowOffsetVertical: string;
|
|
2592
|
-
arrowHeight: string;
|
|
2593
|
-
padding: string;
|
|
2594
|
-
}, {
|
|
2595
|
-
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2596
|
-
height: string;
|
|
2597
|
-
width: string;
|
|
2598
|
-
borderRadius: string;
|
|
2599
|
-
color: string;
|
|
2600
|
-
colorHover: string;
|
|
2601
|
-
railInsetHorizontalBottom: string;
|
|
2602
|
-
railInsetHorizontalTop: string;
|
|
2603
|
-
railInsetVerticalRight: string;
|
|
2604
|
-
railInsetVerticalLeft: string;
|
|
2605
|
-
railColor: string;
|
|
2606
|
-
}, any>;
|
|
2607
|
-
}>> | undefined;
|
|
2608
|
-
} | undefined;
|
|
2609
|
-
} | undefined;
|
|
2610
|
-
};
|
|
2611
|
-
}>;
|
|
2612
|
-
cssVars: import('vue').ComputedRef<{
|
|
2613
|
-
"--n-menu-box-shadow": string;
|
|
2614
|
-
"--n-menu-border-radius": string;
|
|
2615
|
-
"--n-menu-color": string;
|
|
2616
|
-
"--n-menu-height": string;
|
|
2617
|
-
"--n-bezier": string;
|
|
2618
|
-
"--n-action-padding": string;
|
|
2619
|
-
"--n-action-text-color": string;
|
|
2620
|
-
"--n-action-divider-color": string;
|
|
2621
|
-
"--n-header-padding": string;
|
|
2622
|
-
"--n-header-text-color": string;
|
|
2623
|
-
"--n-header-divider-color": string;
|
|
2624
|
-
}> | undefined;
|
|
2625
|
-
themeClass: import('vue').Ref<string, string> | undefined;
|
|
2626
|
-
onRender: (() => void) | undefined;
|
|
2627
|
-
getCheckedData: () => {
|
|
2628
|
-
keys: Array<string | number>;
|
|
2629
|
-
options: Array<import('naive-ui').TreeSelectOption | null>;
|
|
2630
|
-
};
|
|
2631
|
-
getIndeterminateData: () => {
|
|
2632
|
-
keys: Array<string | number>;
|
|
2633
|
-
options: Array<import('naive-ui').TreeSelectOption | null>;
|
|
2634
|
-
};
|
|
2635
|
-
focus: () => void;
|
|
2636
|
-
focusInput: () => void;
|
|
2637
|
-
blur: () => void;
|
|
2638
|
-
blurInput: () => void;
|
|
2639
|
-
}, {}, {}, {}, {
|
|
2640
|
-
readonly disabled: boolean | undefined;
|
|
2641
|
-
readonly bordered: boolean;
|
|
2642
|
-
readonly to: string | boolean | HTMLElement;
|
|
2643
|
-
readonly clearable: boolean;
|
|
2644
|
-
readonly defaultValue: string | number | (string | number)[] | null;
|
|
2645
|
-
readonly loading: boolean;
|
|
2646
|
-
readonly placement: import('naive-ui').PopoverPlacement;
|
|
2647
|
-
readonly options: import('naive-ui').TreeSelectOption[];
|
|
2648
|
-
readonly show: boolean | undefined;
|
|
2649
|
-
readonly separator: string;
|
|
2650
|
-
readonly defaultShow: boolean;
|
|
2651
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
2652
|
-
readonly multiple: boolean;
|
|
2653
|
-
readonly filterable: boolean;
|
|
2654
|
-
readonly disabledField: string;
|
|
2655
|
-
readonly clearFilterAfterSelect: boolean;
|
|
2656
|
-
readonly cascade: boolean;
|
|
2657
|
-
readonly leafOnly: boolean;
|
|
2658
|
-
readonly showPath: boolean;
|
|
2659
|
-
readonly virtualScroll: boolean;
|
|
2660
|
-
readonly checkStrategy: import('treemate').CheckStrategy;
|
|
2661
|
-
readonly labelField: string;
|
|
2662
|
-
readonly childrenField: string;
|
|
2663
|
-
readonly consistentMenuWidth: boolean;
|
|
2664
|
-
readonly defaultExpandAll: boolean;
|
|
2665
|
-
readonly indent: number;
|
|
2666
|
-
readonly keyField: string;
|
|
2667
|
-
readonly defaultExpandedKeys: import('naive-ui/es/tree/src/interface').Key[];
|
|
2668
|
-
readonly checkable: boolean;
|
|
2669
|
-
}> | null;
|
|
2670
|
-
}, any>;
|
|
2671
|
-
export default _default;
|