@pitcher/js-api 1.24.0-beta.3 → 1.25.0-beta.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/README.md +3 -3
- package/impact-js-api.spec.json +212 -0
- package/js-api.esm.js +2431 -2360
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +4 -4
- package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +6 -11
- package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +1036 -5
- package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +4 -6
- package/lib/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +1 -1
- package/lib/apps/agenda-selector/composables/content-warning.use.d.ts +7 -0
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +10 -2
- package/lib/apps/agenda-selector/constants.d.ts +10 -0
- package/lib/apps/agenda-selector/export.d.ts +2 -0
- package/lib/apps/agenda-selector/stores/app.store.d.ts +7 -3
- package/lib/apps/agenda-selector/types/agenda.type.d.ts +4 -5
- package/lib/apps/agenda-selector/types/common.type.d.ts +6 -2
- package/lib/apps/agenda-selector/utils/data.util.d.ts +7 -1
- package/lib/apps/browser/App.vue.d.ts +18 -155
- package/lib/apps/browser/appTypes.d.ts +22 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +174 -1
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +15 -22
- package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +37 -0
- package/lib/apps/browser/components/Content/Content.vue.d.ts +4 -3
- package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +1 -1
- package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +8 -8
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +7 -6
- package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +4 -0
- package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +3 -4
- package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +3 -4
- package/lib/{components/CFileViewer/CFileViewerShare.vue.d.ts → apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts} +2 -4
- package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +6 -0
- package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +12 -0
- package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +5 -4
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +372 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +5 -6
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +4 -5
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +3 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +4 -5
- package/lib/apps/browser/stores/api.d.ts +50 -18
- package/lib/apps/browser/stores/app.d.ts +11 -3
- package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
- package/lib/apps/browser/stores/upload.d.ts +24 -12
- package/lib/apps/browser/util/file.d.ts +1 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +6 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +75 -32
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
- package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +467 -1
- package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +2 -1
- package/lib/apps/{browser/components/BatchMoveItemsModal/BatchMoveItemsModal.vue.d.ts → canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +4 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +23 -51
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +36 -44
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentRevamp.vue.d.ts +30 -53
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +5 -8
- package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +3 -2
- package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +9 -10
- package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +4 -7
- package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +3 -5
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +296 -9
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +61 -16
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +7 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +7 -14
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +323 -4
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +4 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +7 -9
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +57 -0
- package/lib/apps/{browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts → canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts} +1 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +18 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +26 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +9 -11
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +641 -6
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +13 -19
- package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +6 -12
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +8 -10
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +294 -6
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +8 -15
- package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +8 -13
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +14 -10
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +295 -8
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +10 -16
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +293 -5
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +12 -18
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +5 -9
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +350 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +13 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
- package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +18 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +50 -13
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +13 -12
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +5 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -1
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +12 -8
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +12 -21
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +5 -6
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -18
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +42 -9
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +3 -4
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +7 -13
- package/lib/apps/canvas-builder/composables/useAiPrompt.d.ts +6 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +353 -119
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +68 -36
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +56 -24
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +616 -20
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -2
- package/lib/apps/canvas-builder/composables/useComponentStyle.d.ts +34 -7
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +10 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePrintMode.d.ts +9 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +125 -54
- package/lib/apps/canvas-builder/util/print.util.d.ts +1 -0
- package/lib/apps/canvas-selector/appTypes.d.ts +2 -0
- package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +4 -14
- package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +1 -1
- package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +3 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +70 -98
- package/lib/apps/collection-player/App.vue.d.ts +9 -14
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppHeader.vue.d.ts +1 -1
- package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +2 -1
- package/lib/apps/collection-player/components/MainContent.vue.d.ts +4 -1
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -7
- package/lib/apps/collection-player/components/SlideContent.vue.d.ts +8 -0
- package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +1 -1
- package/lib/apps/collection-player/composables/fullscreen.use.d.ts +2 -6
- package/lib/apps/collection-player/composables/image-cache.use.d.ts +1 -0
- package/lib/apps/collection-player/composables/keyboard-bindings.use.d.ts +6 -0
- package/lib/apps/collection-player/composables/moving-group-gestures.use.d.ts +5 -5
- package/lib/apps/collection-player/composables/navigation-cache.use.d.ts +10 -0
- package/lib/apps/collection-player/export.d.ts +1 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +9 -4
- package/lib/apps/collection-player/types/collection-player.type.d.ts +2 -0
- package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +1 -1
- package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +6 -3
- package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +4 -4
- package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +5 -9
- package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +4 -1
- package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +4 -6
- package/lib/apps/collection-selector/composables/content-warning.use.d.ts +6 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/collection-selector/constants.d.ts +5 -0
- package/lib/apps/collection-selector/export.d.ts +2 -0
- package/lib/apps/collection-selector/stores/app.store.d.ts +18 -122
- package/lib/apps/collection-selector/types/collection-selector.type.d.ts +10 -0
- package/lib/apps/collection-selector/types/common.type.d.ts +5 -4
- package/lib/apps/collection-selector/utils/data.util.d.ts +1 -1
- package/lib/apps/content-selector/App.vue.d.ts +3 -1
- package/lib/apps/content-selector/appTypes.d.ts +5 -1
- package/lib/apps/content-selector/components/AiImages.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +3 -1
- package/lib/apps/content-selector/components/Assets.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +176 -1
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +9 -18
- package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/Content.vue.d.ts +1 -1
- package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +12 -0
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +10 -27
- package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +1 -1
- package/lib/apps/content-selector/stores/api.d.ts +13 -12
- package/lib/apps/content-selector/stores/app.d.ts +18 -2
- package/lib/apps/content-selector/util/file.d.ts +8 -0
- package/lib/apps/notes/NotesApp.vue.d.ts +7 -11
- package/lib/apps/ppt-conversion-selector/App.vue.d.ts +25 -0
- package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +6 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +17 -0
- package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +14 -0
- package/lib/apps/ppt-conversion-selector/composables/canvas.use.d.ts +34 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +70 -0
- package/lib/apps/ppt-conversion-selector/composables/table-input.use.d.ts +15 -0
- package/lib/apps/ppt-conversion-selector/constants.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/export.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +148 -0
- package/lib/apps/ppt-conversion-selector/types/model.type.d.ts +11 -0
- package/lib/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +5 -0
- package/lib/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +1 -0
- package/lib/apps/ppt-conversion-selector/utils/data.util.d.ts +19 -0
- package/lib/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +8 -0
- package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +7 -6
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +3 -7
- package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +17 -0
- package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +3 -2
- package/lib/components/CAvatar/CAvatar.vue.d.ts +3 -2
- package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +9 -19
- package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +31 -0
- package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +19 -0
- package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +3 -7
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +21 -33
- package/lib/components/CButton/CButton.vue.d.ts +2 -1
- package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +2 -1
- package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +5 -12
- package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +5 -8
- package/lib/components/CCard/CCard.vue.d.ts +3 -2
- package/lib/components/CCarousel/CCarousel.vue.d.ts +326 -9
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +1 -1
- package/lib/components/CCheckbox/CCheckbox.vue.d.ts +9 -1
- package/lib/components/CChip/CChip.vue.d.ts +12 -16
- package/lib/components/CCollapse/CCollapse.vue.d.ts +3 -2
- package/lib/components/CCollapse/CCollapseItem.vue.d.ts +3 -2
- package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +2 -1
- package/lib/components/CColorPicker/CColorPicker.vue.d.ts +3 -2
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +4 -2
- package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +17 -22
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +300 -17
- package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +1 -1
- package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +3 -2
- package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +3 -2
- package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +2 -1
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -15
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +5 -22
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +23 -25
- package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +4 -10
- package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +14 -23
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +5 -13
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +290 -1
- package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +19 -0
- package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +10 -0
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +319 -0
- package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +13 -0
- package/lib/components/CDataTable/CDataTable.vue.d.ts +7834 -1
- package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +1 -1
- package/lib/components/CDivider/CDivider.vue.d.ts +10 -2
- package/lib/components/CDrawer/CDrawer.vue.d.ts +9 -1
- package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +9 -1
- package/lib/components/CDropdown/CDropdown.vue.d.ts +3 -2
- package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +3 -8
- package/lib/components/CEmpty/CEmpty.vue.d.ts +3 -2
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +52 -4
- package/lib/components/CError/CErrorFullScreen.vue.d.ts +13 -21
- package/lib/components/CFeedback/CFeedback.vue.d.ts +9 -10
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +4 -10
- package/lib/components/CFilePanel/BasicInfo.vue.d.ts +1 -1
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +4 -7
- package/lib/components/CFilePanel/Details.vue.d.ts +1 -1
- package/lib/components/CFilePanel/Tags.vue.d.ts +1 -1
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +4 -9
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +214 -58
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +2 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +350 -1
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +3 -8
- package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +10 -12
- package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +2 -1
- package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +2 -2
- package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +3 -5
- package/lib/components/CFontSelect/CFontSelect.vue.d.ts +11 -14
- package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +4 -7
- package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +4 -1
- package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +48 -1
- package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResult.vue.d.ts +1 -1
- package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +3 -2
- package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +2 -1
- package/lib/components/CHeightInput/CHeightInput.vue.d.ts +10 -0
- package/lib/components/CHelpText/CHelpText.vue.d.ts +2 -1
- package/lib/components/CIcon/CIcon.vue.d.ts +2 -0
- package/lib/components/CImage/CBrokenImage.vue.d.ts +6 -6
- package/lib/components/CImage/CImage.vue.d.ts +300 -7
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -13
- package/lib/components/CInput/CInput.vue.d.ts +1034 -1
- package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +7 -7
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +4 -6
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +3 -1
- package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +6 -6
- package/lib/components/CList/CList.vue.d.ts +15 -17
- package/lib/components/CList/CListItem.vue.d.ts +6 -5
- package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +9 -0
- package/lib/components/CModal/CModal.vue.d.ts +3 -2
- package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +10 -9
- package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +4 -7
- package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +22 -0
- package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +5 -7
- package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +5 -10
- package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +69 -6
- package/lib/components/CPopover/CPopover.vue.d.ts +3 -2
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +5 -10
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +1 -1
- package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +18 -0
- package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +5 -9
- package/lib/components/CRate/CRate.vue.d.ts +3 -2
- package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +4 -7
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +31 -3
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +1 -1
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2440 -11
- package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +2 -1
- package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +44 -1
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +2443 -0
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +1034 -1
- package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +9 -0
- package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +3 -8
- package/lib/components/CSearch/CSearchOnClick.vue.d.ts +11 -14
- package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +23 -0
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +95 -25
- package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +3 -2
- package/lib/components/CSelect/CSelect.vue.d.ts +3 -2
- package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +5 -7
- package/lib/components/CShortcut/CShortcut.vue.d.ts +3 -2
- package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +1 -1
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +5 -13
- package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +5 -7
- package/lib/components/CSlider/CSlider.vue.d.ts +3 -2
- package/lib/components/CSpin/CSpin.vue.d.ts +3 -2
- package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +5 -8
- package/lib/components/CSwitch/CSwitch.vue.d.ts +18 -1
- package/lib/components/CTable/CTable.vue.d.ts +18 -20
- package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +1 -0
- package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +1 -1
- package/lib/components/CTableInput/CTableInput.vue.d.ts +1128 -60
- package/lib/components/CTableMore/CTableMore.vue.d.ts +6 -14
- package/lib/components/CTableSelect/CTableSelect.vue.d.ts +1 -1
- package/lib/components/CTag/CTag.vue.d.ts +9 -1
- package/lib/components/CTags/CTags.vue.d.ts +4634 -1
- package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +3 -1
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +20 -0
- package/lib/components/CTimeline/CTimeline.vue.d.ts +4 -5
- package/lib/components/CTimeline/CTimelineControl.vue.d.ts +1 -1
- package/lib/components/CTimeline/CTimelineModal.vue.d.ts +4 -5
- package/lib/components/CTooltip/CTooltip.vue.d.ts +3 -2
- package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +7 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +6 -7
- package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +6 -7
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +303 -0
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +370 -9
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +3 -1
- package/lib/components/CVideo/CVideo.vue.d.ts +10 -22
- package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +13 -14
- package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +3 -2
- package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +11 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +252 -44
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +9 -16
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +5 -15
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +770 -55
- package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +25 -21
- package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +3 -8
- package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +54 -0
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +220 -19
- package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +5 -8
- package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +5 -11
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +27 -3
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
- package/lib/components/filters/CSearchFilter.vue.d.ts +90 -2
- package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +533 -64
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +11 -22
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +3 -4
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +1722 -3
- package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +6 -18
- package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +7 -10
- package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +5 -6
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +25 -30
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +130 -7
- package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +1 -1
- package/lib/components/sections/CSectionManagement.vue.d.ts +237 -50
- package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +11 -18
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +5 -12
- package/lib/components/themes/CThemeManagement.vue.d.ts +354 -0
- package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +24 -0
- package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +10 -0
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +16 -0
- package/lib/composables/appsDb.use.d.ts +8 -1
- package/lib/composables/useCanvasLocks.d.ts +54 -0
- package/lib/composables/useCanvasOverlay.d.ts +13 -1
- package/lib/composables/useCoreApi.d.ts +7 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
- package/lib/composables/useMetadataSearch.d.ts +19 -0
- package/lib/composables/useMetadataTemplates.d.ts +246 -0
- package/lib/composables/useWindowEvents.d.ts +5 -3
- package/lib/constants/appsDb.const.d.ts +4 -0
- package/lib/constants/cdp.const.d.ts +2 -2
- package/lib/constants/color.const.d.ts +1 -0
- package/lib/constants/query-builder.const.d.ts +1 -0
- package/lib/main.lib.d.ts +25 -1
- package/lib/sdk/api/HighLevelApi.d.ts +20 -1
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +20 -0
- package/lib/sdk/api/modules/admin/content.admin.d.ts +21 -3
- package/lib/sdk/api/modules/admin/files.admin.d.ts +0 -19
- package/lib/sdk/api/modules/admin/index.d.ts +7 -1
- package/lib/sdk/api/modules/admin/types.admin.d.ts +55 -6
- package/lib/sdk/api/modules/canvas.d.ts +7 -0
- package/lib/sdk/api/modules/env.d.ts +1 -1
- package/lib/sdk/api/modules/folders.core.d.ts +7 -0
- package/lib/sdk/api/modules/index.d.ts +2 -0
- package/lib/sdk/api/modules/theme.d.ts +10 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +20 -0
- package/lib/sdk/api/modules/ui/content.ui.d.ts +2 -2
- package/lib/sdk/api/modules/ui/index.d.ts +6 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +28 -4
- package/lib/sdk/interfaces.d.ts +24 -1
- package/lib/sdk/main.d.ts +92 -5
- package/lib/sdk/payload.types.d.ts +8 -0
- package/lib/theme/light.d.ts +6 -0
- package/lib/theme/theme.types.d.ts +7 -0
- package/lib/types/app.d.ts +4 -0
- package/lib/types/canvasTheme.d.ts +37 -0
- package/lib/types/canvases.d.ts +9 -0
- package/lib/types/core/MetadataFilter.d.ts +44 -0
- package/lib/types/core/UpsertPptxSlideImages.d.ts +12 -0
- package/lib/types/core/index.d.ts +2 -0
- package/lib/types/files.d.ts +5 -2
- package/lib/types/folder.d.ts +35 -0
- package/lib/types/instanceSettings.types.d.ts +8 -0
- package/lib/types/launchDarkly.types.d.ts +4 -1
- package/lib/types/organizationSettings.types.d.ts +9 -0
- package/lib/types/query-builder.types.d.ts +7 -0
- package/lib/types/recentFiles.types.d.ts +2 -1
- package/lib/types/search.d.ts +5 -0
- package/lib/util/anchor.d.ts +1 -1
- package/lib/util/array.d.ts +1 -1
- package/lib/util/color.d.ts +2 -0
- package/lib/util/file.util.d.ts +4 -0
- package/lib/util/image.d.ts +6 -0
- package/lib/util/query-builder.util.d.ts +2 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/tree-transformation.util.d.ts +6 -0
- package/lib/util/url.d.ts +3 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +0 -4
- package/types/openapi/models/AuthToken.d.ts +1 -0
- package/types/openapi/models/AuthTokenRequest.d.ts +1 -0
- package/types/openapi/models/Canvas.d.ts +0 -2
- package/types/openapi/models/CanvasCreate.d.ts +0 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +0 -2
- package/types/openapi/models/CanvasUpdate.d.ts +0 -2
- package/types/openapi/models/DeletedCanvas.d.ts +0 -2
- package/types/openapi/models/DeletedFile.d.ts +1 -2
- package/types/openapi/models/DeletedInstance.d.ts +1 -1
- package/types/openapi/models/FavoriteFile.d.ts +1 -0
- package/types/openapi/models/FavoriteFileRequest.d.ts +1 -0
- package/types/openapi/models/File.d.ts +1 -2
- package/types/openapi/models/FileCreate.d.ts +1 -2
- package/types/openapi/models/FileCreateRequest.d.ts +1 -0
- package/types/openapi/models/FileRetrieve.d.ts +1 -2
- package/types/openapi/models/FileStatusEnum.d.ts +3 -1
- package/types/openapi/models/FileUpdate.d.ts +1 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/FolderFile.d.ts +3 -0
- package/types/openapi/models/Instance.d.ts +1 -1
- package/types/openapi/models/InstanceAnalytics.d.ts +5 -3
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -0
- package/types/openapi/models/InstanceRequest.d.ts +1 -1
- package/types/openapi/models/InstanceUpdate.d.ts +1 -1
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateField.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +1 -1
- package/types/openapi/models/MetadataTemplateSection.d.ts +1 -0
- package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +1 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -1
- package/types/openapi/models/PatchedUserRequest.d.ts +1 -1
- package/types/openapi/models/SearchCanvas.d.ts +0 -1
- package/types/openapi/models/SearchResult.d.ts +1 -3
- package/types/openapi/models/SharedLink.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreate.d.ts +0 -1
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +0 -1
- package/types/openapi/models/SharedLinkInstance.d.ts +1 -0
- package/types/openapi/models/User.d.ts +1 -1
- package/types/openapi/models/UserRequest.d.ts +1 -1
- package/lib/apps/browser/components/UpsertFolderModal/UpsertFolderModal.vue.d.ts +0 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentLegacy.vue.d.ts +0 -113
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -31
- package/lib/apps/collection-player/composables/arrow-keys.use.d.ts +0 -6
- package/lib/apps/collection-selector/App.vue.d.ts +0 -29
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -17
- package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -44
- package/types/openapi/models/PaginatedStorageRegionList.d.ts +0 -7
- package/types/openapi/models/SearchContentDistributionGroup.d.ts +0 -10
- package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +0 -10
- package/types/openapi/models/StorageRegion.d.ts +0 -5
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
type State = 'view' | 'edit';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
maxLength?: number;
|
|
4
|
+
search?: string;
|
|
5
|
+
modelValue: string;
|
|
6
|
+
state?: State;
|
|
7
|
+
readonly?: boolean;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
valueClass?: string;
|
|
10
|
+
alwaysDisplayEditIcon?: boolean;
|
|
11
|
+
useFixedEditWidth?: boolean;
|
|
12
|
+
};
|
|
2
13
|
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
3
15
|
slots: {
|
|
4
16
|
prefix?(_: {}): any;
|
|
5
17
|
prefix?(_: {}): any;
|
|
@@ -44,7 +56,7 @@ declare function __VLS_template(): {
|
|
|
44
56
|
pair: BooleanConstructor;
|
|
45
57
|
separator: StringConstructor;
|
|
46
58
|
readonly: {
|
|
47
|
-
type: (
|
|
59
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
48
60
|
default: boolean;
|
|
49
61
|
};
|
|
50
62
|
passivelyActivated: BooleanConstructor;
|
|
@@ -100,6 +112,7 @@ declare function __VLS_template(): {
|
|
|
100
112
|
};
|
|
101
113
|
showPasswordToggle: BooleanConstructor;
|
|
102
114
|
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
115
|
+
fontWeight: string;
|
|
103
116
|
countTextColorDisabled: string;
|
|
104
117
|
countTextColor: string;
|
|
105
118
|
heightTiny: string;
|
|
@@ -161,6 +174,7 @@ declare function __VLS_template(): {
|
|
|
161
174
|
clearSize: string;
|
|
162
175
|
}, any>>;
|
|
163
176
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
177
|
+
fontWeight: string;
|
|
164
178
|
countTextColorDisabled: string;
|
|
165
179
|
countTextColor: string;
|
|
166
180
|
heightTiny: string;
|
|
@@ -222,6 +236,7 @@ declare function __VLS_template(): {
|
|
|
222
236
|
clearSize: string;
|
|
223
237
|
}, any>>>;
|
|
224
238
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
239
|
+
fontWeight: string;
|
|
225
240
|
countTextColorDisabled: string;
|
|
226
241
|
countTextColor: string;
|
|
227
242
|
heightTiny: string;
|
|
@@ -282,13 +297,13 @@ declare function __VLS_template(): {
|
|
|
282
297
|
paddingLarge: string;
|
|
283
298
|
clearSize: string;
|
|
284
299
|
}, any>>>;
|
|
285
|
-
}
|
|
286
|
-
wrapperElRef: import('vue').Ref<HTMLElement | null>;
|
|
287
|
-
inputElRef: import('vue').Ref<HTMLInputElement | null>;
|
|
288
|
-
inputMirrorElRef: import('vue').Ref<HTMLElement | null>;
|
|
289
|
-
inputEl2Ref: import('vue').Ref<HTMLInputElement | null>;
|
|
290
|
-
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null>;
|
|
291
|
-
textareaMirrorElRef: import('vue').Ref<HTMLElement | null>;
|
|
300
|
+
}>> & Readonly<{}>, {
|
|
301
|
+
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
302
|
+
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
303
|
+
inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
304
|
+
inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
305
|
+
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
|
|
306
|
+
textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
292
307
|
textareaScrollbarInstRef: import('vue').Ref<{
|
|
293
308
|
$el: HTMLElement;
|
|
294
309
|
containerRef: HTMLElement | null;
|
|
@@ -300,31 +315,46 @@ declare function __VLS_template(): {
|
|
|
300
315
|
sync: () => void;
|
|
301
316
|
handleMouseEnterWrapper: () => void;
|
|
302
317
|
handleMouseLeaveWrapper: () => void;
|
|
318
|
+
} | null, import('naive-ui/es/_internal').ScrollbarInst | {
|
|
319
|
+
$el: HTMLElement;
|
|
320
|
+
containerRef: HTMLElement | null;
|
|
321
|
+
contentRef: HTMLElement | null;
|
|
322
|
+
containerScrollTop: number;
|
|
323
|
+
syncUnifiedContainer: () => void;
|
|
324
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
325
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
326
|
+
sync: () => void;
|
|
327
|
+
handleMouseEnterWrapper: () => void;
|
|
328
|
+
handleMouseLeaveWrapper: () => void;
|
|
303
329
|
} | null>;
|
|
304
|
-
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
305
|
-
uncontrolledValue: import('vue').Ref<string | [string, string] | null>;
|
|
330
|
+
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
331
|
+
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
306
332
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
307
|
-
passwordVisible: import('vue').Ref<boolean>;
|
|
333
|
+
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
308
334
|
mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
|
|
309
335
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
310
336
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
311
337
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
312
|
-
isComposing: import('vue').Ref<boolean>;
|
|
313
|
-
activated: import('vue').Ref<boolean>;
|
|
338
|
+
isComposing: import('vue').Ref<boolean, boolean>;
|
|
339
|
+
activated: import('vue').Ref<boolean, boolean>;
|
|
314
340
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
315
341
|
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
|
|
316
342
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
317
343
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
318
344
|
textDecoration: string;
|
|
319
345
|
}[]>;
|
|
320
|
-
mergedClsPrefix: import('vue').Ref<string>;
|
|
346
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
321
347
|
mergedBordered: import('vue').ComputedRef<boolean>;
|
|
322
348
|
mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
|
|
323
349
|
placeholderStyle: import('vue').Ref<{
|
|
324
350
|
top: string;
|
|
351
|
+
}, {
|
|
352
|
+
top: string;
|
|
353
|
+
} | {
|
|
354
|
+
top: string;
|
|
325
355
|
}>;
|
|
326
356
|
mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
|
|
327
|
-
textAreaScrollContainerWidth: import('vue').Ref<number | undefined>;
|
|
357
|
+
textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
|
|
328
358
|
handleTextAreaScroll: (e: Event) => void;
|
|
329
359
|
handleCompositionStart: () => void;
|
|
330
360
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
@@ -348,6 +378,7 @@ declare function __VLS_template(): {
|
|
|
348
378
|
mergedTheme: import('vue').ComputedRef<{
|
|
349
379
|
common: import('naive-ui').ThemeCommonVars;
|
|
350
380
|
self: {
|
|
381
|
+
fontWeight: string;
|
|
351
382
|
countTextColorDisabled: string;
|
|
352
383
|
countTextColor: string;
|
|
353
384
|
heightTiny: string;
|
|
@@ -419,6 +450,7 @@ declare function __VLS_template(): {
|
|
|
419
450
|
"--n-count-text-color-disabled": string;
|
|
420
451
|
"--n-color": string;
|
|
421
452
|
"--n-font-size": string;
|
|
453
|
+
"--n-font-weight": string;
|
|
422
454
|
"--n-border-radius": string;
|
|
423
455
|
"--n-height": string;
|
|
424
456
|
"--n-padding-left": string;
|
|
@@ -463,7 +495,7 @@ declare function __VLS_template(): {
|
|
|
463
495
|
"--n-icon-color-disabled": string;
|
|
464
496
|
"--n-suffix-text-color": string;
|
|
465
497
|
}> | undefined;
|
|
466
|
-
themeClass: import('vue').Ref<string> | undefined;
|
|
498
|
+
themeClass: import('vue').Ref<string, string> | undefined;
|
|
467
499
|
onRender: (() => void) | undefined;
|
|
468
500
|
isCompositing: import('vue').Ref<boolean>;
|
|
469
501
|
blur: () => void;
|
|
@@ -473,11 +505,11 @@ declare function __VLS_template(): {
|
|
|
473
505
|
activate: () => void;
|
|
474
506
|
deactivate: () => void;
|
|
475
507
|
scrollTo: (options: ScrollToOptions) => void;
|
|
476
|
-
},
|
|
508
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
477
509
|
type: "textarea" | "text" | "password";
|
|
478
510
|
readonly: string | boolean;
|
|
479
|
-
round: boolean;
|
|
480
511
|
disabled: boolean | undefined;
|
|
512
|
+
round: boolean;
|
|
481
513
|
autofocus: boolean;
|
|
482
514
|
loading: boolean;
|
|
483
515
|
autosize: boolean | {
|
|
@@ -498,7 +530,7 @@ declare function __VLS_template(): {
|
|
|
498
530
|
internalForceFocus: boolean;
|
|
499
531
|
internalLoadingBeforeSuffix: boolean;
|
|
500
532
|
showPasswordToggle: boolean;
|
|
501
|
-
}, true, {},
|
|
533
|
+
}, true, {}, import('vue').SlotsType<import('naive-ui').InputSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
502
534
|
P: {};
|
|
503
535
|
B: {};
|
|
504
536
|
D: {};
|
|
@@ -543,7 +575,7 @@ declare function __VLS_template(): {
|
|
|
543
575
|
pair: BooleanConstructor;
|
|
544
576
|
separator: StringConstructor;
|
|
545
577
|
readonly: {
|
|
546
|
-
type: (
|
|
578
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
547
579
|
default: boolean;
|
|
548
580
|
};
|
|
549
581
|
passivelyActivated: BooleanConstructor;
|
|
@@ -599,6 +631,7 @@ declare function __VLS_template(): {
|
|
|
599
631
|
};
|
|
600
632
|
showPasswordToggle: BooleanConstructor;
|
|
601
633
|
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
634
|
+
fontWeight: string;
|
|
602
635
|
countTextColorDisabled: string;
|
|
603
636
|
countTextColor: string;
|
|
604
637
|
heightTiny: string;
|
|
@@ -660,6 +693,7 @@ declare function __VLS_template(): {
|
|
|
660
693
|
clearSize: string;
|
|
661
694
|
}, any>>;
|
|
662
695
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
696
|
+
fontWeight: string;
|
|
663
697
|
countTextColorDisabled: string;
|
|
664
698
|
countTextColor: string;
|
|
665
699
|
heightTiny: string;
|
|
@@ -721,6 +755,7 @@ declare function __VLS_template(): {
|
|
|
721
755
|
clearSize: string;
|
|
722
756
|
}, any>>>;
|
|
723
757
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
758
|
+
fontWeight: string;
|
|
724
759
|
countTextColorDisabled: string;
|
|
725
760
|
countTextColor: string;
|
|
726
761
|
heightTiny: string;
|
|
@@ -781,13 +816,13 @@ declare function __VLS_template(): {
|
|
|
781
816
|
paddingLarge: string;
|
|
782
817
|
clearSize: string;
|
|
783
818
|
}, any>>>;
|
|
784
|
-
}
|
|
785
|
-
wrapperElRef: import('vue').Ref<HTMLElement | null>;
|
|
786
|
-
inputElRef: import('vue').Ref<HTMLInputElement | null>;
|
|
787
|
-
inputMirrorElRef: import('vue').Ref<HTMLElement | null>;
|
|
788
|
-
inputEl2Ref: import('vue').Ref<HTMLInputElement | null>;
|
|
789
|
-
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null>;
|
|
790
|
-
textareaMirrorElRef: import('vue').Ref<HTMLElement | null>;
|
|
819
|
+
}>> & Readonly<{}>, {
|
|
820
|
+
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
821
|
+
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
822
|
+
inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
823
|
+
inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
824
|
+
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
|
|
825
|
+
textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
791
826
|
textareaScrollbarInstRef: import('vue').Ref<{
|
|
792
827
|
$el: HTMLElement;
|
|
793
828
|
containerRef: HTMLElement | null;
|
|
@@ -799,31 +834,46 @@ declare function __VLS_template(): {
|
|
|
799
834
|
sync: () => void;
|
|
800
835
|
handleMouseEnterWrapper: () => void;
|
|
801
836
|
handleMouseLeaveWrapper: () => void;
|
|
837
|
+
} | null, import('naive-ui/es/_internal').ScrollbarInst | {
|
|
838
|
+
$el: HTMLElement;
|
|
839
|
+
containerRef: HTMLElement | null;
|
|
840
|
+
contentRef: HTMLElement | null;
|
|
841
|
+
containerScrollTop: number;
|
|
842
|
+
syncUnifiedContainer: () => void;
|
|
843
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
844
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
845
|
+
sync: () => void;
|
|
846
|
+
handleMouseEnterWrapper: () => void;
|
|
847
|
+
handleMouseLeaveWrapper: () => void;
|
|
802
848
|
} | null>;
|
|
803
|
-
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
804
|
-
uncontrolledValue: import('vue').Ref<string | [string, string] | null>;
|
|
849
|
+
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
850
|
+
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
805
851
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
806
|
-
passwordVisible: import('vue').Ref<boolean>;
|
|
852
|
+
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
807
853
|
mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
|
|
808
854
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
809
855
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
810
856
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
811
|
-
isComposing: import('vue').Ref<boolean>;
|
|
812
|
-
activated: import('vue').Ref<boolean>;
|
|
857
|
+
isComposing: import('vue').Ref<boolean, boolean>;
|
|
858
|
+
activated: import('vue').Ref<boolean, boolean>;
|
|
813
859
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
814
860
|
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
|
|
815
861
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
816
862
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
817
863
|
textDecoration: string;
|
|
818
864
|
}[]>;
|
|
819
|
-
mergedClsPrefix: import('vue').Ref<string>;
|
|
865
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
820
866
|
mergedBordered: import('vue').ComputedRef<boolean>;
|
|
821
867
|
mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
|
|
822
868
|
placeholderStyle: import('vue').Ref<{
|
|
823
869
|
top: string;
|
|
870
|
+
}, {
|
|
871
|
+
top: string;
|
|
872
|
+
} | {
|
|
873
|
+
top: string;
|
|
824
874
|
}>;
|
|
825
875
|
mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
|
|
826
|
-
textAreaScrollContainerWidth: import('vue').Ref<number | undefined>;
|
|
876
|
+
textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
|
|
827
877
|
handleTextAreaScroll: (e: Event) => void;
|
|
828
878
|
handleCompositionStart: () => void;
|
|
829
879
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
@@ -847,6 +897,7 @@ declare function __VLS_template(): {
|
|
|
847
897
|
mergedTheme: import('vue').ComputedRef<{
|
|
848
898
|
common: import('naive-ui').ThemeCommonVars;
|
|
849
899
|
self: {
|
|
900
|
+
fontWeight: string;
|
|
850
901
|
countTextColorDisabled: string;
|
|
851
902
|
countTextColor: string;
|
|
852
903
|
heightTiny: string;
|
|
@@ -918,6 +969,7 @@ declare function __VLS_template(): {
|
|
|
918
969
|
"--n-count-text-color-disabled": string;
|
|
919
970
|
"--n-color": string;
|
|
920
971
|
"--n-font-size": string;
|
|
972
|
+
"--n-font-weight": string;
|
|
921
973
|
"--n-border-radius": string;
|
|
922
974
|
"--n-height": string;
|
|
923
975
|
"--n-padding-left": string;
|
|
@@ -962,7 +1014,7 @@ declare function __VLS_template(): {
|
|
|
962
1014
|
"--n-icon-color-disabled": string;
|
|
963
1015
|
"--n-suffix-text-color": string;
|
|
964
1016
|
}> | undefined;
|
|
965
|
-
themeClass: import('vue').Ref<string> | undefined;
|
|
1017
|
+
themeClass: import('vue').Ref<string, string> | undefined;
|
|
966
1018
|
onRender: (() => void) | undefined;
|
|
967
1019
|
isCompositing: import('vue').Ref<boolean>;
|
|
968
1020
|
blur: () => void;
|
|
@@ -975,8 +1027,8 @@ declare function __VLS_template(): {
|
|
|
975
1027
|
}, {}, {}, {}, {
|
|
976
1028
|
type: "textarea" | "text" | "password";
|
|
977
1029
|
readonly: string | boolean;
|
|
978
|
-
round: boolean;
|
|
979
1030
|
disabled: boolean | undefined;
|
|
1031
|
+
round: boolean;
|
|
980
1032
|
autofocus: boolean;
|
|
981
1033
|
loading: boolean;
|
|
982
1034
|
autosize: boolean | {
|
|
@@ -999,41 +1051,1057 @@ declare function __VLS_template(): {
|
|
|
999
1051
|
showPasswordToggle: boolean;
|
|
1000
1052
|
}> | null;
|
|
1001
1053
|
};
|
|
1002
|
-
|
|
1054
|
+
rootEl: HTMLDivElement;
|
|
1003
1055
|
};
|
|
1004
1056
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1005
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
1006
|
-
maxLength?: number;
|
|
1007
|
-
search?: string;
|
|
1008
|
-
modelValue: string;
|
|
1009
|
-
state?: State;
|
|
1010
|
-
readonly?: boolean;
|
|
1011
|
-
placeholder?: string;
|
|
1012
|
-
valueClass?: string;
|
|
1013
|
-
alwaysDisplayEditIcon?: boolean;
|
|
1014
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1015
|
-
edit: () => any;
|
|
1057
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1016
1058
|
cancel: () => any;
|
|
1017
1059
|
click: (value: MouseEvent) => any;
|
|
1060
|
+
edit: () => any;
|
|
1018
1061
|
"update:modelValue": (value: string) => any;
|
|
1019
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
1020
|
-
maxLength?: number;
|
|
1021
|
-
search?: string;
|
|
1022
|
-
modelValue: string;
|
|
1023
|
-
state?: State;
|
|
1024
|
-
readonly?: boolean;
|
|
1025
|
-
placeholder?: string;
|
|
1026
|
-
valueClass?: string;
|
|
1027
|
-
alwaysDisplayEditIcon?: boolean;
|
|
1028
|
-
}> & Readonly<{
|
|
1029
|
-
onEdit?: (() => any) | undefined;
|
|
1062
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
1030
1063
|
onCancel?: (() => any) | undefined;
|
|
1031
1064
|
onClick?: ((value: MouseEvent) => any) | undefined;
|
|
1065
|
+
onEdit?: (() => any) | undefined;
|
|
1032
1066
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1033
1067
|
}>, {
|
|
1034
1068
|
search: string;
|
|
1035
1069
|
state: State;
|
|
1036
|
-
|
|
1070
|
+
useFixedEditWidth: boolean;
|
|
1071
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
1072
|
+
inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1073
|
+
bordered: {
|
|
1074
|
+
type: import('vue').PropType<boolean | undefined>;
|
|
1075
|
+
default: undefined;
|
|
1076
|
+
};
|
|
1077
|
+
type: {
|
|
1078
|
+
type: import('vue').PropType<"text" | "textarea" | "password">;
|
|
1079
|
+
default: string;
|
|
1080
|
+
};
|
|
1081
|
+
placeholder: import('vue').PropType<string | [string, string]>;
|
|
1082
|
+
defaultValue: {
|
|
1083
|
+
type: import('vue').PropType<null | string | [string, string]>;
|
|
1084
|
+
default: null;
|
|
1085
|
+
};
|
|
1086
|
+
value: import('vue').PropType<null | string | [string, string]>;
|
|
1087
|
+
disabled: {
|
|
1088
|
+
type: import('vue').PropType<boolean | undefined>;
|
|
1089
|
+
default: undefined;
|
|
1090
|
+
};
|
|
1091
|
+
size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
|
|
1092
|
+
rows: {
|
|
1093
|
+
type: import('vue').PropType<number | string>;
|
|
1094
|
+
default: number;
|
|
1095
|
+
};
|
|
1096
|
+
round: BooleanConstructor;
|
|
1097
|
+
minlength: import('vue').PropType<number | string>;
|
|
1098
|
+
maxlength: import('vue').PropType<number | string>;
|
|
1099
|
+
clearable: BooleanConstructor;
|
|
1100
|
+
autosize: {
|
|
1101
|
+
type: import('vue').PropType<boolean | {
|
|
1102
|
+
minRows?: number;
|
|
1103
|
+
maxRows?: number;
|
|
1104
|
+
}>;
|
|
1105
|
+
default: boolean;
|
|
1106
|
+
};
|
|
1107
|
+
pair: BooleanConstructor;
|
|
1108
|
+
separator: StringConstructor;
|
|
1109
|
+
readonly: {
|
|
1110
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1111
|
+
default: boolean;
|
|
1112
|
+
};
|
|
1113
|
+
passivelyActivated: BooleanConstructor;
|
|
1114
|
+
showPasswordOn: import('vue').PropType<"mousedown" | "click">;
|
|
1115
|
+
stateful: {
|
|
1116
|
+
type: BooleanConstructor;
|
|
1117
|
+
default: boolean;
|
|
1118
|
+
};
|
|
1119
|
+
autofocus: BooleanConstructor;
|
|
1120
|
+
inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
|
|
1121
|
+
resizable: {
|
|
1122
|
+
type: BooleanConstructor;
|
|
1123
|
+
default: boolean;
|
|
1124
|
+
};
|
|
1125
|
+
showCount: BooleanConstructor;
|
|
1126
|
+
loading: {
|
|
1127
|
+
type: BooleanConstructor;
|
|
1128
|
+
default: undefined;
|
|
1129
|
+
};
|
|
1130
|
+
allowInput: import('vue').PropType<(value: string) => boolean>;
|
|
1131
|
+
renderCount: import('vue').PropType<(props: {
|
|
1132
|
+
value: string;
|
|
1133
|
+
}) => import('vue').VNodeChild>;
|
|
1134
|
+
onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
|
|
1135
|
+
onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
|
|
1136
|
+
onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
|
|
1137
|
+
onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
|
|
1138
|
+
onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1139
|
+
onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1140
|
+
onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
|
|
1141
|
+
onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
|
|
1142
|
+
onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
|
|
1143
|
+
countGraphemes: import('vue').PropType<(value: string) => number>;
|
|
1144
|
+
status: import('vue').PropType<import('naive-ui/es/form/src/interface').FormValidationStatus>;
|
|
1145
|
+
'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
|
|
1146
|
+
onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
|
|
1147
|
+
textDecoration: import('vue').PropType<string | [string, string]>;
|
|
1148
|
+
attrSize: {
|
|
1149
|
+
type: NumberConstructor;
|
|
1150
|
+
default: number;
|
|
1151
|
+
};
|
|
1152
|
+
onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1153
|
+
onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1154
|
+
onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
|
|
1155
|
+
onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
|
|
1156
|
+
onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1157
|
+
onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1158
|
+
internalDeactivateOnEnter: BooleanConstructor;
|
|
1159
|
+
internalForceFocus: BooleanConstructor;
|
|
1160
|
+
internalLoadingBeforeSuffix: {
|
|
1161
|
+
type: BooleanConstructor;
|
|
1162
|
+
default: boolean;
|
|
1163
|
+
};
|
|
1164
|
+
showPasswordToggle: BooleanConstructor;
|
|
1165
|
+
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1166
|
+
fontWeight: string;
|
|
1167
|
+
countTextColorDisabled: string;
|
|
1168
|
+
countTextColor: string;
|
|
1169
|
+
heightTiny: string;
|
|
1170
|
+
heightSmall: string;
|
|
1171
|
+
heightMedium: string;
|
|
1172
|
+
heightLarge: string;
|
|
1173
|
+
fontSizeTiny: string;
|
|
1174
|
+
fontSizeSmall: string;
|
|
1175
|
+
fontSizeMedium: string;
|
|
1176
|
+
fontSizeLarge: string;
|
|
1177
|
+
lineHeight: string;
|
|
1178
|
+
lineHeightTextarea: string;
|
|
1179
|
+
borderRadius: string;
|
|
1180
|
+
iconSize: string;
|
|
1181
|
+
groupLabelColor: string;
|
|
1182
|
+
groupLabelTextColor: string;
|
|
1183
|
+
textColor: string;
|
|
1184
|
+
textColorDisabled: string;
|
|
1185
|
+
textDecorationColor: string;
|
|
1186
|
+
caretColor: string;
|
|
1187
|
+
placeholderColor: string;
|
|
1188
|
+
placeholderColorDisabled: string;
|
|
1189
|
+
color: string;
|
|
1190
|
+
colorDisabled: string;
|
|
1191
|
+
colorFocus: string;
|
|
1192
|
+
groupLabelBorder: string;
|
|
1193
|
+
border: string;
|
|
1194
|
+
borderHover: string;
|
|
1195
|
+
borderDisabled: string;
|
|
1196
|
+
borderFocus: string;
|
|
1197
|
+
boxShadowFocus: string;
|
|
1198
|
+
loadingColor: string;
|
|
1199
|
+
loadingColorWarning: string;
|
|
1200
|
+
borderWarning: string;
|
|
1201
|
+
borderHoverWarning: string;
|
|
1202
|
+
colorFocusWarning: string;
|
|
1203
|
+
borderFocusWarning: string;
|
|
1204
|
+
boxShadowFocusWarning: string;
|
|
1205
|
+
caretColorWarning: string;
|
|
1206
|
+
loadingColorError: string;
|
|
1207
|
+
borderError: string;
|
|
1208
|
+
borderHoverError: string;
|
|
1209
|
+
colorFocusError: string;
|
|
1210
|
+
borderFocusError: string;
|
|
1211
|
+
boxShadowFocusError: string;
|
|
1212
|
+
caretColorError: string;
|
|
1213
|
+
clearColor: string;
|
|
1214
|
+
clearColorHover: string;
|
|
1215
|
+
clearColorPressed: string;
|
|
1216
|
+
iconColor: string;
|
|
1217
|
+
iconColorDisabled: string;
|
|
1218
|
+
iconColorHover: string;
|
|
1219
|
+
iconColorPressed: string;
|
|
1220
|
+
suffixTextColor: string;
|
|
1221
|
+
paddingTiny: string;
|
|
1222
|
+
paddingSmall: string;
|
|
1223
|
+
paddingMedium: string;
|
|
1224
|
+
paddingLarge: string;
|
|
1225
|
+
clearSize: string;
|
|
1226
|
+
}, any>>;
|
|
1227
|
+
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1228
|
+
fontWeight: string;
|
|
1229
|
+
countTextColorDisabled: string;
|
|
1230
|
+
countTextColor: string;
|
|
1231
|
+
heightTiny: string;
|
|
1232
|
+
heightSmall: string;
|
|
1233
|
+
heightMedium: string;
|
|
1234
|
+
heightLarge: string;
|
|
1235
|
+
fontSizeTiny: string;
|
|
1236
|
+
fontSizeSmall: string;
|
|
1237
|
+
fontSizeMedium: string;
|
|
1238
|
+
fontSizeLarge: string;
|
|
1239
|
+
lineHeight: string;
|
|
1240
|
+
lineHeightTextarea: string;
|
|
1241
|
+
borderRadius: string;
|
|
1242
|
+
iconSize: string;
|
|
1243
|
+
groupLabelColor: string;
|
|
1244
|
+
groupLabelTextColor: string;
|
|
1245
|
+
textColor: string;
|
|
1246
|
+
textColorDisabled: string;
|
|
1247
|
+
textDecorationColor: string;
|
|
1248
|
+
caretColor: string;
|
|
1249
|
+
placeholderColor: string;
|
|
1250
|
+
placeholderColorDisabled: string;
|
|
1251
|
+
color: string;
|
|
1252
|
+
colorDisabled: string;
|
|
1253
|
+
colorFocus: string;
|
|
1254
|
+
groupLabelBorder: string;
|
|
1255
|
+
border: string;
|
|
1256
|
+
borderHover: string;
|
|
1257
|
+
borderDisabled: string;
|
|
1258
|
+
borderFocus: string;
|
|
1259
|
+
boxShadowFocus: string;
|
|
1260
|
+
loadingColor: string;
|
|
1261
|
+
loadingColorWarning: string;
|
|
1262
|
+
borderWarning: string;
|
|
1263
|
+
borderHoverWarning: string;
|
|
1264
|
+
colorFocusWarning: string;
|
|
1265
|
+
borderFocusWarning: string;
|
|
1266
|
+
boxShadowFocusWarning: string;
|
|
1267
|
+
caretColorWarning: string;
|
|
1268
|
+
loadingColorError: string;
|
|
1269
|
+
borderError: string;
|
|
1270
|
+
borderHoverError: string;
|
|
1271
|
+
colorFocusError: string;
|
|
1272
|
+
borderFocusError: string;
|
|
1273
|
+
boxShadowFocusError: string;
|
|
1274
|
+
caretColorError: string;
|
|
1275
|
+
clearColor: string;
|
|
1276
|
+
clearColorHover: string;
|
|
1277
|
+
clearColorPressed: string;
|
|
1278
|
+
iconColor: string;
|
|
1279
|
+
iconColorDisabled: string;
|
|
1280
|
+
iconColorHover: string;
|
|
1281
|
+
iconColorPressed: string;
|
|
1282
|
+
suffixTextColor: string;
|
|
1283
|
+
paddingTiny: string;
|
|
1284
|
+
paddingSmall: string;
|
|
1285
|
+
paddingMedium: string;
|
|
1286
|
+
paddingLarge: string;
|
|
1287
|
+
clearSize: string;
|
|
1288
|
+
}, any>>>;
|
|
1289
|
+
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1290
|
+
fontWeight: string;
|
|
1291
|
+
countTextColorDisabled: string;
|
|
1292
|
+
countTextColor: string;
|
|
1293
|
+
heightTiny: string;
|
|
1294
|
+
heightSmall: string;
|
|
1295
|
+
heightMedium: string;
|
|
1296
|
+
heightLarge: string;
|
|
1297
|
+
fontSizeTiny: string;
|
|
1298
|
+
fontSizeSmall: string;
|
|
1299
|
+
fontSizeMedium: string;
|
|
1300
|
+
fontSizeLarge: string;
|
|
1301
|
+
lineHeight: string;
|
|
1302
|
+
lineHeightTextarea: string;
|
|
1303
|
+
borderRadius: string;
|
|
1304
|
+
iconSize: string;
|
|
1305
|
+
groupLabelColor: string;
|
|
1306
|
+
groupLabelTextColor: string;
|
|
1307
|
+
textColor: string;
|
|
1308
|
+
textColorDisabled: string;
|
|
1309
|
+
textDecorationColor: string;
|
|
1310
|
+
caretColor: string;
|
|
1311
|
+
placeholderColor: string;
|
|
1312
|
+
placeholderColorDisabled: string;
|
|
1313
|
+
color: string;
|
|
1314
|
+
colorDisabled: string;
|
|
1315
|
+
colorFocus: string;
|
|
1316
|
+
groupLabelBorder: string;
|
|
1317
|
+
border: string;
|
|
1318
|
+
borderHover: string;
|
|
1319
|
+
borderDisabled: string;
|
|
1320
|
+
borderFocus: string;
|
|
1321
|
+
boxShadowFocus: string;
|
|
1322
|
+
loadingColor: string;
|
|
1323
|
+
loadingColorWarning: string;
|
|
1324
|
+
borderWarning: string;
|
|
1325
|
+
borderHoverWarning: string;
|
|
1326
|
+
colorFocusWarning: string;
|
|
1327
|
+
borderFocusWarning: string;
|
|
1328
|
+
boxShadowFocusWarning: string;
|
|
1329
|
+
caretColorWarning: string;
|
|
1330
|
+
loadingColorError: string;
|
|
1331
|
+
borderError: string;
|
|
1332
|
+
borderHoverError: string;
|
|
1333
|
+
colorFocusError: string;
|
|
1334
|
+
borderFocusError: string;
|
|
1335
|
+
boxShadowFocusError: string;
|
|
1336
|
+
caretColorError: string;
|
|
1337
|
+
clearColor: string;
|
|
1338
|
+
clearColorHover: string;
|
|
1339
|
+
clearColorPressed: string;
|
|
1340
|
+
iconColor: string;
|
|
1341
|
+
iconColorDisabled: string;
|
|
1342
|
+
iconColorHover: string;
|
|
1343
|
+
iconColorPressed: string;
|
|
1344
|
+
suffixTextColor: string;
|
|
1345
|
+
paddingTiny: string;
|
|
1346
|
+
paddingSmall: string;
|
|
1347
|
+
paddingMedium: string;
|
|
1348
|
+
paddingLarge: string;
|
|
1349
|
+
clearSize: string;
|
|
1350
|
+
}, any>>>;
|
|
1351
|
+
}>> & Readonly<{}>, {
|
|
1352
|
+
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1353
|
+
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1354
|
+
inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1355
|
+
inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1356
|
+
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
|
|
1357
|
+
textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1358
|
+
textareaScrollbarInstRef: import('vue').Ref<{
|
|
1359
|
+
$el: HTMLElement;
|
|
1360
|
+
containerRef: HTMLElement | null;
|
|
1361
|
+
contentRef: HTMLElement | null;
|
|
1362
|
+
containerScrollTop: number;
|
|
1363
|
+
syncUnifiedContainer: () => void;
|
|
1364
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
1365
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
1366
|
+
sync: () => void;
|
|
1367
|
+
handleMouseEnterWrapper: () => void;
|
|
1368
|
+
handleMouseLeaveWrapper: () => void;
|
|
1369
|
+
} | null, import('naive-ui/es/_internal').ScrollbarInst | {
|
|
1370
|
+
$el: HTMLElement;
|
|
1371
|
+
containerRef: HTMLElement | null;
|
|
1372
|
+
contentRef: HTMLElement | null;
|
|
1373
|
+
containerScrollTop: number;
|
|
1374
|
+
syncUnifiedContainer: () => void;
|
|
1375
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
1376
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
1377
|
+
sync: () => void;
|
|
1378
|
+
handleMouseEnterWrapper: () => void;
|
|
1379
|
+
handleMouseLeaveWrapper: () => void;
|
|
1380
|
+
} | null>;
|
|
1381
|
+
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
1382
|
+
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
1383
|
+
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
1384
|
+
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
1385
|
+
mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
|
|
1386
|
+
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
1387
|
+
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
1388
|
+
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
1389
|
+
isComposing: import('vue').Ref<boolean, boolean>;
|
|
1390
|
+
activated: import('vue').Ref<boolean, boolean>;
|
|
1391
|
+
showClearButton: import('vue').ComputedRef<boolean>;
|
|
1392
|
+
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
|
|
1393
|
+
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1394
|
+
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
1395
|
+
textDecoration: string;
|
|
1396
|
+
}[]>;
|
|
1397
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1398
|
+
mergedBordered: import('vue').ComputedRef<boolean>;
|
|
1399
|
+
mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
|
|
1400
|
+
placeholderStyle: import('vue').Ref<{
|
|
1401
|
+
top: string;
|
|
1402
|
+
}, {
|
|
1403
|
+
top: string;
|
|
1404
|
+
} | {
|
|
1405
|
+
top: string;
|
|
1406
|
+
}>;
|
|
1407
|
+
mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
|
|
1408
|
+
textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
|
|
1409
|
+
handleTextAreaScroll: (e: Event) => void;
|
|
1410
|
+
handleCompositionStart: () => void;
|
|
1411
|
+
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
1412
|
+
handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
|
|
1413
|
+
handleInputBlur: (e: FocusEvent) => void;
|
|
1414
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
1415
|
+
handleWrapperBlur: (e: FocusEvent) => void;
|
|
1416
|
+
handleWrapperFocus: (e: FocusEvent) => void;
|
|
1417
|
+
handleMouseEnter: () => void;
|
|
1418
|
+
handleMouseLeave: () => void;
|
|
1419
|
+
handleMouseDown: (e: MouseEvent) => void;
|
|
1420
|
+
handleChange: (e: Event, index?: 0 | 1) => void;
|
|
1421
|
+
handleClick: (e: MouseEvent) => void;
|
|
1422
|
+
handleClear: (e: MouseEvent) => void;
|
|
1423
|
+
handlePasswordToggleClick: () => void;
|
|
1424
|
+
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
1425
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
1426
|
+
handleWrapperKeyup: (e: KeyboardEvent) => void;
|
|
1427
|
+
handleTextAreaMirrorResize: () => void;
|
|
1428
|
+
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
1429
|
+
mergedTheme: import('vue').ComputedRef<{
|
|
1430
|
+
common: import('naive-ui').ThemeCommonVars;
|
|
1431
|
+
self: {
|
|
1432
|
+
fontWeight: string;
|
|
1433
|
+
countTextColorDisabled: string;
|
|
1434
|
+
countTextColor: string;
|
|
1435
|
+
heightTiny: string;
|
|
1436
|
+
heightSmall: string;
|
|
1437
|
+
heightMedium: string;
|
|
1438
|
+
heightLarge: string;
|
|
1439
|
+
fontSizeTiny: string;
|
|
1440
|
+
fontSizeSmall: string;
|
|
1441
|
+
fontSizeMedium: string;
|
|
1442
|
+
fontSizeLarge: string;
|
|
1443
|
+
lineHeight: string;
|
|
1444
|
+
lineHeightTextarea: string;
|
|
1445
|
+
borderRadius: string;
|
|
1446
|
+
iconSize: string;
|
|
1447
|
+
groupLabelColor: string;
|
|
1448
|
+
groupLabelTextColor: string;
|
|
1449
|
+
textColor: string;
|
|
1450
|
+
textColorDisabled: string;
|
|
1451
|
+
textDecorationColor: string;
|
|
1452
|
+
caretColor: string;
|
|
1453
|
+
placeholderColor: string;
|
|
1454
|
+
placeholderColorDisabled: string;
|
|
1455
|
+
color: string;
|
|
1456
|
+
colorDisabled: string;
|
|
1457
|
+
colorFocus: string;
|
|
1458
|
+
groupLabelBorder: string;
|
|
1459
|
+
border: string;
|
|
1460
|
+
borderHover: string;
|
|
1461
|
+
borderDisabled: string;
|
|
1462
|
+
borderFocus: string;
|
|
1463
|
+
boxShadowFocus: string;
|
|
1464
|
+
loadingColor: string;
|
|
1465
|
+
loadingColorWarning: string;
|
|
1466
|
+
borderWarning: string;
|
|
1467
|
+
borderHoverWarning: string;
|
|
1468
|
+
colorFocusWarning: string;
|
|
1469
|
+
borderFocusWarning: string;
|
|
1470
|
+
boxShadowFocusWarning: string;
|
|
1471
|
+
caretColorWarning: string;
|
|
1472
|
+
loadingColorError: string;
|
|
1473
|
+
borderError: string;
|
|
1474
|
+
borderHoverError: string;
|
|
1475
|
+
colorFocusError: string;
|
|
1476
|
+
borderFocusError: string;
|
|
1477
|
+
boxShadowFocusError: string;
|
|
1478
|
+
caretColorError: string;
|
|
1479
|
+
clearColor: string;
|
|
1480
|
+
clearColorHover: string;
|
|
1481
|
+
clearColorPressed: string;
|
|
1482
|
+
iconColor: string;
|
|
1483
|
+
iconColorDisabled: string;
|
|
1484
|
+
iconColorHover: string;
|
|
1485
|
+
iconColorPressed: string;
|
|
1486
|
+
suffixTextColor: string;
|
|
1487
|
+
paddingTiny: string;
|
|
1488
|
+
paddingSmall: string;
|
|
1489
|
+
paddingMedium: string;
|
|
1490
|
+
paddingLarge: string;
|
|
1491
|
+
clearSize: string;
|
|
1492
|
+
};
|
|
1493
|
+
peers: any;
|
|
1494
|
+
peerOverrides: {
|
|
1495
|
+
[x: string]: any;
|
|
1496
|
+
};
|
|
1497
|
+
}>;
|
|
1498
|
+
cssVars: import('vue').ComputedRef<{
|
|
1499
|
+
"--n-bezier": string;
|
|
1500
|
+
"--n-count-text-color": string;
|
|
1501
|
+
"--n-count-text-color-disabled": string;
|
|
1502
|
+
"--n-color": string;
|
|
1503
|
+
"--n-font-size": string;
|
|
1504
|
+
"--n-font-weight": string;
|
|
1505
|
+
"--n-border-radius": string;
|
|
1506
|
+
"--n-height": string;
|
|
1507
|
+
"--n-padding-left": string;
|
|
1508
|
+
"--n-padding-right": string;
|
|
1509
|
+
"--n-text-color": string;
|
|
1510
|
+
"--n-caret-color": string;
|
|
1511
|
+
"--n-text-decoration-color": string;
|
|
1512
|
+
"--n-border": string;
|
|
1513
|
+
"--n-border-disabled": string;
|
|
1514
|
+
"--n-border-hover": string;
|
|
1515
|
+
"--n-border-focus": string;
|
|
1516
|
+
"--n-placeholder-color": string;
|
|
1517
|
+
"--n-placeholder-color-disabled": string;
|
|
1518
|
+
"--n-icon-size": string;
|
|
1519
|
+
"--n-line-height-textarea": string;
|
|
1520
|
+
"--n-color-disabled": string;
|
|
1521
|
+
"--n-color-focus": string;
|
|
1522
|
+
"--n-text-color-disabled": string;
|
|
1523
|
+
"--n-box-shadow-focus": string;
|
|
1524
|
+
"--n-loading-color": string;
|
|
1525
|
+
"--n-caret-color-warning": string;
|
|
1526
|
+
"--n-color-focus-warning": string;
|
|
1527
|
+
"--n-box-shadow-focus-warning": string;
|
|
1528
|
+
"--n-border-warning": string;
|
|
1529
|
+
"--n-border-focus-warning": string;
|
|
1530
|
+
"--n-border-hover-warning": string;
|
|
1531
|
+
"--n-loading-color-warning": string;
|
|
1532
|
+
"--n-caret-color-error": string;
|
|
1533
|
+
"--n-color-focus-error": string;
|
|
1534
|
+
"--n-box-shadow-focus-error": string;
|
|
1535
|
+
"--n-border-error": string;
|
|
1536
|
+
"--n-border-focus-error": string;
|
|
1537
|
+
"--n-border-hover-error": string;
|
|
1538
|
+
"--n-loading-color-error": string;
|
|
1539
|
+
"--n-clear-color": string;
|
|
1540
|
+
"--n-clear-size": string;
|
|
1541
|
+
"--n-clear-color-hover": string;
|
|
1542
|
+
"--n-clear-color-pressed": string;
|
|
1543
|
+
"--n-icon-color": string;
|
|
1544
|
+
"--n-icon-color-hover": string;
|
|
1545
|
+
"--n-icon-color-pressed": string;
|
|
1546
|
+
"--n-icon-color-disabled": string;
|
|
1547
|
+
"--n-suffix-text-color": string;
|
|
1548
|
+
}> | undefined;
|
|
1549
|
+
themeClass: import('vue').Ref<string, string> | undefined;
|
|
1550
|
+
onRender: (() => void) | undefined;
|
|
1551
|
+
isCompositing: import('vue').Ref<boolean>;
|
|
1552
|
+
blur: () => void;
|
|
1553
|
+
clear: () => void;
|
|
1554
|
+
focus: () => void;
|
|
1555
|
+
select: () => void;
|
|
1556
|
+
activate: () => void;
|
|
1557
|
+
deactivate: () => void;
|
|
1558
|
+
scrollTo: (options: ScrollToOptions) => void;
|
|
1559
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1560
|
+
type: "textarea" | "text" | "password";
|
|
1561
|
+
readonly: string | boolean;
|
|
1562
|
+
disabled: boolean | undefined;
|
|
1563
|
+
round: boolean;
|
|
1564
|
+
autofocus: boolean;
|
|
1565
|
+
loading: boolean;
|
|
1566
|
+
autosize: boolean | {
|
|
1567
|
+
minRows?: number;
|
|
1568
|
+
maxRows?: number;
|
|
1569
|
+
};
|
|
1570
|
+
bordered: boolean | undefined;
|
|
1571
|
+
clearable: boolean;
|
|
1572
|
+
defaultValue: string | [string, string] | null;
|
|
1573
|
+
resizable: boolean;
|
|
1574
|
+
pair: boolean;
|
|
1575
|
+
rows: string | number;
|
|
1576
|
+
passivelyActivated: boolean;
|
|
1577
|
+
stateful: boolean;
|
|
1578
|
+
showCount: boolean;
|
|
1579
|
+
attrSize: number;
|
|
1580
|
+
internalDeactivateOnEnter: boolean;
|
|
1581
|
+
internalForceFocus: boolean;
|
|
1582
|
+
internalLoadingBeforeSuffix: boolean;
|
|
1583
|
+
showPasswordToggle: boolean;
|
|
1584
|
+
}, true, {}, import('vue').SlotsType<import('naive-ui').InputSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1585
|
+
P: {};
|
|
1586
|
+
B: {};
|
|
1587
|
+
D: {};
|
|
1588
|
+
C: {};
|
|
1589
|
+
M: {};
|
|
1590
|
+
Defaults: {};
|
|
1591
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1592
|
+
bordered: {
|
|
1593
|
+
type: import('vue').PropType<boolean | undefined>;
|
|
1594
|
+
default: undefined;
|
|
1595
|
+
};
|
|
1596
|
+
type: {
|
|
1597
|
+
type: import('vue').PropType<"text" | "textarea" | "password">;
|
|
1598
|
+
default: string;
|
|
1599
|
+
};
|
|
1600
|
+
placeholder: import('vue').PropType<string | [string, string]>;
|
|
1601
|
+
defaultValue: {
|
|
1602
|
+
type: import('vue').PropType<null | string | [string, string]>;
|
|
1603
|
+
default: null;
|
|
1604
|
+
};
|
|
1605
|
+
value: import('vue').PropType<null | string | [string, string]>;
|
|
1606
|
+
disabled: {
|
|
1607
|
+
type: import('vue').PropType<boolean | undefined>;
|
|
1608
|
+
default: undefined;
|
|
1609
|
+
};
|
|
1610
|
+
size: import('vue').PropType<import('naive-ui/es/input/src/interface').Size>;
|
|
1611
|
+
rows: {
|
|
1612
|
+
type: import('vue').PropType<number | string>;
|
|
1613
|
+
default: number;
|
|
1614
|
+
};
|
|
1615
|
+
round: BooleanConstructor;
|
|
1616
|
+
minlength: import('vue').PropType<number | string>;
|
|
1617
|
+
maxlength: import('vue').PropType<number | string>;
|
|
1618
|
+
clearable: BooleanConstructor;
|
|
1619
|
+
autosize: {
|
|
1620
|
+
type: import('vue').PropType<boolean | {
|
|
1621
|
+
minRows?: number;
|
|
1622
|
+
maxRows?: number;
|
|
1623
|
+
}>;
|
|
1624
|
+
default: boolean;
|
|
1625
|
+
};
|
|
1626
|
+
pair: BooleanConstructor;
|
|
1627
|
+
separator: StringConstructor;
|
|
1628
|
+
readonly: {
|
|
1629
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1630
|
+
default: boolean;
|
|
1631
|
+
};
|
|
1632
|
+
passivelyActivated: BooleanConstructor;
|
|
1633
|
+
showPasswordOn: import('vue').PropType<"mousedown" | "click">;
|
|
1634
|
+
stateful: {
|
|
1635
|
+
type: BooleanConstructor;
|
|
1636
|
+
default: boolean;
|
|
1637
|
+
};
|
|
1638
|
+
autofocus: BooleanConstructor;
|
|
1639
|
+
inputProps: import('vue').PropType<import('vue').TextareaHTMLAttributes | import('vue').InputHTMLAttributes>;
|
|
1640
|
+
resizable: {
|
|
1641
|
+
type: BooleanConstructor;
|
|
1642
|
+
default: boolean;
|
|
1643
|
+
};
|
|
1644
|
+
showCount: BooleanConstructor;
|
|
1645
|
+
loading: {
|
|
1646
|
+
type: BooleanConstructor;
|
|
1647
|
+
default: undefined;
|
|
1648
|
+
};
|
|
1649
|
+
allowInput: import('vue').PropType<(value: string) => boolean>;
|
|
1650
|
+
renderCount: import('vue').PropType<(props: {
|
|
1651
|
+
value: string;
|
|
1652
|
+
}) => import('vue').VNodeChild>;
|
|
1653
|
+
onMousedown: import('vue').PropType<(e: MouseEvent) => void>;
|
|
1654
|
+
onKeydown: import('vue').PropType<(e: KeyboardEvent) => void>;
|
|
1655
|
+
onKeyup: import('vue').PropType<(e: KeyboardEvent) => void>;
|
|
1656
|
+
onInput: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
|
|
1657
|
+
onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1658
|
+
onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1659
|
+
onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
|
|
1660
|
+
onChange: import('vue').PropType<import('naive-ui/es/input/src/interface').OnUpdateValue>;
|
|
1661
|
+
onClear: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
|
|
1662
|
+
countGraphemes: import('vue').PropType<(value: string) => number>;
|
|
1663
|
+
status: import('vue').PropType<import('naive-ui/es/form/src/interface').FormValidationStatus>;
|
|
1664
|
+
'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
|
|
1665
|
+
onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/input/src/interface').OnUpdateValue>>;
|
|
1666
|
+
textDecoration: import('vue').PropType<string | [string, string]>;
|
|
1667
|
+
attrSize: {
|
|
1668
|
+
type: NumberConstructor;
|
|
1669
|
+
default: number;
|
|
1670
|
+
};
|
|
1671
|
+
onInputBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1672
|
+
onInputFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1673
|
+
onDeactivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
|
|
1674
|
+
onActivate: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<() => void>>;
|
|
1675
|
+
onWrapperFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1676
|
+
onWrapperBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
|
|
1677
|
+
internalDeactivateOnEnter: BooleanConstructor;
|
|
1678
|
+
internalForceFocus: BooleanConstructor;
|
|
1679
|
+
internalLoadingBeforeSuffix: {
|
|
1680
|
+
type: BooleanConstructor;
|
|
1681
|
+
default: boolean;
|
|
1682
|
+
};
|
|
1683
|
+
showPasswordToggle: BooleanConstructor;
|
|
1684
|
+
theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1685
|
+
fontWeight: string;
|
|
1686
|
+
countTextColorDisabled: string;
|
|
1687
|
+
countTextColor: string;
|
|
1688
|
+
heightTiny: string;
|
|
1689
|
+
heightSmall: string;
|
|
1690
|
+
heightMedium: string;
|
|
1691
|
+
heightLarge: string;
|
|
1692
|
+
fontSizeTiny: string;
|
|
1693
|
+
fontSizeSmall: string;
|
|
1694
|
+
fontSizeMedium: string;
|
|
1695
|
+
fontSizeLarge: string;
|
|
1696
|
+
lineHeight: string;
|
|
1697
|
+
lineHeightTextarea: string;
|
|
1698
|
+
borderRadius: string;
|
|
1699
|
+
iconSize: string;
|
|
1700
|
+
groupLabelColor: string;
|
|
1701
|
+
groupLabelTextColor: string;
|
|
1702
|
+
textColor: string;
|
|
1703
|
+
textColorDisabled: string;
|
|
1704
|
+
textDecorationColor: string;
|
|
1705
|
+
caretColor: string;
|
|
1706
|
+
placeholderColor: string;
|
|
1707
|
+
placeholderColorDisabled: string;
|
|
1708
|
+
color: string;
|
|
1709
|
+
colorDisabled: string;
|
|
1710
|
+
colorFocus: string;
|
|
1711
|
+
groupLabelBorder: string;
|
|
1712
|
+
border: string;
|
|
1713
|
+
borderHover: string;
|
|
1714
|
+
borderDisabled: string;
|
|
1715
|
+
borderFocus: string;
|
|
1716
|
+
boxShadowFocus: string;
|
|
1717
|
+
loadingColor: string;
|
|
1718
|
+
loadingColorWarning: string;
|
|
1719
|
+
borderWarning: string;
|
|
1720
|
+
borderHoverWarning: string;
|
|
1721
|
+
colorFocusWarning: string;
|
|
1722
|
+
borderFocusWarning: string;
|
|
1723
|
+
boxShadowFocusWarning: string;
|
|
1724
|
+
caretColorWarning: string;
|
|
1725
|
+
loadingColorError: string;
|
|
1726
|
+
borderError: string;
|
|
1727
|
+
borderHoverError: string;
|
|
1728
|
+
colorFocusError: string;
|
|
1729
|
+
borderFocusError: string;
|
|
1730
|
+
boxShadowFocusError: string;
|
|
1731
|
+
caretColorError: string;
|
|
1732
|
+
clearColor: string;
|
|
1733
|
+
clearColorHover: string;
|
|
1734
|
+
clearColorPressed: string;
|
|
1735
|
+
iconColor: string;
|
|
1736
|
+
iconColorDisabled: string;
|
|
1737
|
+
iconColorHover: string;
|
|
1738
|
+
iconColorPressed: string;
|
|
1739
|
+
suffixTextColor: string;
|
|
1740
|
+
paddingTiny: string;
|
|
1741
|
+
paddingSmall: string;
|
|
1742
|
+
paddingMedium: string;
|
|
1743
|
+
paddingLarge: string;
|
|
1744
|
+
clearSize: string;
|
|
1745
|
+
}, any>>;
|
|
1746
|
+
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1747
|
+
fontWeight: string;
|
|
1748
|
+
countTextColorDisabled: string;
|
|
1749
|
+
countTextColor: string;
|
|
1750
|
+
heightTiny: string;
|
|
1751
|
+
heightSmall: string;
|
|
1752
|
+
heightMedium: string;
|
|
1753
|
+
heightLarge: string;
|
|
1754
|
+
fontSizeTiny: string;
|
|
1755
|
+
fontSizeSmall: string;
|
|
1756
|
+
fontSizeMedium: string;
|
|
1757
|
+
fontSizeLarge: string;
|
|
1758
|
+
lineHeight: string;
|
|
1759
|
+
lineHeightTextarea: string;
|
|
1760
|
+
borderRadius: string;
|
|
1761
|
+
iconSize: string;
|
|
1762
|
+
groupLabelColor: string;
|
|
1763
|
+
groupLabelTextColor: string;
|
|
1764
|
+
textColor: string;
|
|
1765
|
+
textColorDisabled: string;
|
|
1766
|
+
textDecorationColor: string;
|
|
1767
|
+
caretColor: string;
|
|
1768
|
+
placeholderColor: string;
|
|
1769
|
+
placeholderColorDisabled: string;
|
|
1770
|
+
color: string;
|
|
1771
|
+
colorDisabled: string;
|
|
1772
|
+
colorFocus: string;
|
|
1773
|
+
groupLabelBorder: string;
|
|
1774
|
+
border: string;
|
|
1775
|
+
borderHover: string;
|
|
1776
|
+
borderDisabled: string;
|
|
1777
|
+
borderFocus: string;
|
|
1778
|
+
boxShadowFocus: string;
|
|
1779
|
+
loadingColor: string;
|
|
1780
|
+
loadingColorWarning: string;
|
|
1781
|
+
borderWarning: string;
|
|
1782
|
+
borderHoverWarning: string;
|
|
1783
|
+
colorFocusWarning: string;
|
|
1784
|
+
borderFocusWarning: string;
|
|
1785
|
+
boxShadowFocusWarning: string;
|
|
1786
|
+
caretColorWarning: string;
|
|
1787
|
+
loadingColorError: string;
|
|
1788
|
+
borderError: string;
|
|
1789
|
+
borderHoverError: string;
|
|
1790
|
+
colorFocusError: string;
|
|
1791
|
+
borderFocusError: string;
|
|
1792
|
+
boxShadowFocusError: string;
|
|
1793
|
+
caretColorError: string;
|
|
1794
|
+
clearColor: string;
|
|
1795
|
+
clearColorHover: string;
|
|
1796
|
+
clearColorPressed: string;
|
|
1797
|
+
iconColor: string;
|
|
1798
|
+
iconColorDisabled: string;
|
|
1799
|
+
iconColorHover: string;
|
|
1800
|
+
iconColorPressed: string;
|
|
1801
|
+
suffixTextColor: string;
|
|
1802
|
+
paddingTiny: string;
|
|
1803
|
+
paddingSmall: string;
|
|
1804
|
+
paddingMedium: string;
|
|
1805
|
+
paddingLarge: string;
|
|
1806
|
+
clearSize: string;
|
|
1807
|
+
}, any>>>;
|
|
1808
|
+
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1809
|
+
fontWeight: string;
|
|
1810
|
+
countTextColorDisabled: string;
|
|
1811
|
+
countTextColor: string;
|
|
1812
|
+
heightTiny: string;
|
|
1813
|
+
heightSmall: string;
|
|
1814
|
+
heightMedium: string;
|
|
1815
|
+
heightLarge: string;
|
|
1816
|
+
fontSizeTiny: string;
|
|
1817
|
+
fontSizeSmall: string;
|
|
1818
|
+
fontSizeMedium: string;
|
|
1819
|
+
fontSizeLarge: string;
|
|
1820
|
+
lineHeight: string;
|
|
1821
|
+
lineHeightTextarea: string;
|
|
1822
|
+
borderRadius: string;
|
|
1823
|
+
iconSize: string;
|
|
1824
|
+
groupLabelColor: string;
|
|
1825
|
+
groupLabelTextColor: string;
|
|
1826
|
+
textColor: string;
|
|
1827
|
+
textColorDisabled: string;
|
|
1828
|
+
textDecorationColor: string;
|
|
1829
|
+
caretColor: string;
|
|
1830
|
+
placeholderColor: string;
|
|
1831
|
+
placeholderColorDisabled: string;
|
|
1832
|
+
color: string;
|
|
1833
|
+
colorDisabled: string;
|
|
1834
|
+
colorFocus: string;
|
|
1835
|
+
groupLabelBorder: string;
|
|
1836
|
+
border: string;
|
|
1837
|
+
borderHover: string;
|
|
1838
|
+
borderDisabled: string;
|
|
1839
|
+
borderFocus: string;
|
|
1840
|
+
boxShadowFocus: string;
|
|
1841
|
+
loadingColor: string;
|
|
1842
|
+
loadingColorWarning: string;
|
|
1843
|
+
borderWarning: string;
|
|
1844
|
+
borderHoverWarning: string;
|
|
1845
|
+
colorFocusWarning: string;
|
|
1846
|
+
borderFocusWarning: string;
|
|
1847
|
+
boxShadowFocusWarning: string;
|
|
1848
|
+
caretColorWarning: string;
|
|
1849
|
+
loadingColorError: string;
|
|
1850
|
+
borderError: string;
|
|
1851
|
+
borderHoverError: string;
|
|
1852
|
+
colorFocusError: string;
|
|
1853
|
+
borderFocusError: string;
|
|
1854
|
+
boxShadowFocusError: string;
|
|
1855
|
+
caretColorError: string;
|
|
1856
|
+
clearColor: string;
|
|
1857
|
+
clearColorHover: string;
|
|
1858
|
+
clearColorPressed: string;
|
|
1859
|
+
iconColor: string;
|
|
1860
|
+
iconColorDisabled: string;
|
|
1861
|
+
iconColorHover: string;
|
|
1862
|
+
iconColorPressed: string;
|
|
1863
|
+
suffixTextColor: string;
|
|
1864
|
+
paddingTiny: string;
|
|
1865
|
+
paddingSmall: string;
|
|
1866
|
+
paddingMedium: string;
|
|
1867
|
+
paddingLarge: string;
|
|
1868
|
+
clearSize: string;
|
|
1869
|
+
}, any>>>;
|
|
1870
|
+
}>> & Readonly<{}>, {
|
|
1871
|
+
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1872
|
+
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1873
|
+
inputMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1874
|
+
inputEl2Ref: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1875
|
+
textareaElRef: import('vue').Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
|
|
1876
|
+
textareaMirrorElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1877
|
+
textareaScrollbarInstRef: import('vue').Ref<{
|
|
1878
|
+
$el: HTMLElement;
|
|
1879
|
+
containerRef: HTMLElement | null;
|
|
1880
|
+
contentRef: HTMLElement | null;
|
|
1881
|
+
containerScrollTop: number;
|
|
1882
|
+
syncUnifiedContainer: () => void;
|
|
1883
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
1884
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
1885
|
+
sync: () => void;
|
|
1886
|
+
handleMouseEnterWrapper: () => void;
|
|
1887
|
+
handleMouseLeaveWrapper: () => void;
|
|
1888
|
+
} | null, import('naive-ui/es/_internal').ScrollbarInst | {
|
|
1889
|
+
$el: HTMLElement;
|
|
1890
|
+
containerRef: HTMLElement | null;
|
|
1891
|
+
contentRef: HTMLElement | null;
|
|
1892
|
+
containerScrollTop: number;
|
|
1893
|
+
syncUnifiedContainer: () => void;
|
|
1894
|
+
scrollTo: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollTo;
|
|
1895
|
+
scrollBy: import('naive-ui/es/_internal/scrollbar/src/Scrollbar').ScrollBy;
|
|
1896
|
+
sync: () => void;
|
|
1897
|
+
handleMouseEnterWrapper: () => void;
|
|
1898
|
+
handleMouseLeaveWrapper: () => void;
|
|
1899
|
+
} | null>;
|
|
1900
|
+
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
1901
|
+
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
1902
|
+
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
1903
|
+
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
1904
|
+
mergedPlaceholder: import('vue').ComputedRef<[string] | [string, string]>;
|
|
1905
|
+
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
1906
|
+
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
1907
|
+
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
1908
|
+
isComposing: import('vue').Ref<boolean, boolean>;
|
|
1909
|
+
activated: import('vue').Ref<boolean, boolean>;
|
|
1910
|
+
showClearButton: import('vue').ComputedRef<boolean>;
|
|
1911
|
+
mergedSize: import('vue').ComputedRef<"small" | "medium" | "large" | "tiny">;
|
|
1912
|
+
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1913
|
+
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
1914
|
+
textDecoration: string;
|
|
1915
|
+
}[]>;
|
|
1916
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1917
|
+
mergedBordered: import('vue').ComputedRef<boolean>;
|
|
1918
|
+
mergedShowPasswordOn: import('vue').ComputedRef<"click" | "mousedown" | undefined>;
|
|
1919
|
+
placeholderStyle: import('vue').Ref<{
|
|
1920
|
+
top: string;
|
|
1921
|
+
}, {
|
|
1922
|
+
top: string;
|
|
1923
|
+
} | {
|
|
1924
|
+
top: string;
|
|
1925
|
+
}>;
|
|
1926
|
+
mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
|
|
1927
|
+
textAreaScrollContainerWidth: import('vue').Ref<number | undefined, number | undefined>;
|
|
1928
|
+
handleTextAreaScroll: (e: Event) => void;
|
|
1929
|
+
handleCompositionStart: () => void;
|
|
1930
|
+
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
1931
|
+
handleInput: (e: InputEvent | CompositionEvent | Event, index?: 0 | 1, event?: string) => void;
|
|
1932
|
+
handleInputBlur: (e: FocusEvent) => void;
|
|
1933
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
1934
|
+
handleWrapperBlur: (e: FocusEvent) => void;
|
|
1935
|
+
handleWrapperFocus: (e: FocusEvent) => void;
|
|
1936
|
+
handleMouseEnter: () => void;
|
|
1937
|
+
handleMouseLeave: () => void;
|
|
1938
|
+
handleMouseDown: (e: MouseEvent) => void;
|
|
1939
|
+
handleChange: (e: Event, index?: 0 | 1) => void;
|
|
1940
|
+
handleClick: (e: MouseEvent) => void;
|
|
1941
|
+
handleClear: (e: MouseEvent) => void;
|
|
1942
|
+
handlePasswordToggleClick: () => void;
|
|
1943
|
+
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
1944
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
1945
|
+
handleWrapperKeyup: (e: KeyboardEvent) => void;
|
|
1946
|
+
handleTextAreaMirrorResize: () => void;
|
|
1947
|
+
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
1948
|
+
mergedTheme: import('vue').ComputedRef<{
|
|
1949
|
+
common: import('naive-ui').ThemeCommonVars;
|
|
1950
|
+
self: {
|
|
1951
|
+
fontWeight: string;
|
|
1952
|
+
countTextColorDisabled: string;
|
|
1953
|
+
countTextColor: string;
|
|
1954
|
+
heightTiny: string;
|
|
1955
|
+
heightSmall: string;
|
|
1956
|
+
heightMedium: string;
|
|
1957
|
+
heightLarge: string;
|
|
1958
|
+
fontSizeTiny: string;
|
|
1959
|
+
fontSizeSmall: string;
|
|
1960
|
+
fontSizeMedium: string;
|
|
1961
|
+
fontSizeLarge: string;
|
|
1962
|
+
lineHeight: string;
|
|
1963
|
+
lineHeightTextarea: string;
|
|
1964
|
+
borderRadius: string;
|
|
1965
|
+
iconSize: string;
|
|
1966
|
+
groupLabelColor: string;
|
|
1967
|
+
groupLabelTextColor: string;
|
|
1968
|
+
textColor: string;
|
|
1969
|
+
textColorDisabled: string;
|
|
1970
|
+
textDecorationColor: string;
|
|
1971
|
+
caretColor: string;
|
|
1972
|
+
placeholderColor: string;
|
|
1973
|
+
placeholderColorDisabled: string;
|
|
1974
|
+
color: string;
|
|
1975
|
+
colorDisabled: string;
|
|
1976
|
+
colorFocus: string;
|
|
1977
|
+
groupLabelBorder: string;
|
|
1978
|
+
border: string;
|
|
1979
|
+
borderHover: string;
|
|
1980
|
+
borderDisabled: string;
|
|
1981
|
+
borderFocus: string;
|
|
1982
|
+
boxShadowFocus: string;
|
|
1983
|
+
loadingColor: string;
|
|
1984
|
+
loadingColorWarning: string;
|
|
1985
|
+
borderWarning: string;
|
|
1986
|
+
borderHoverWarning: string;
|
|
1987
|
+
colorFocusWarning: string;
|
|
1988
|
+
borderFocusWarning: string;
|
|
1989
|
+
boxShadowFocusWarning: string;
|
|
1990
|
+
caretColorWarning: string;
|
|
1991
|
+
loadingColorError: string;
|
|
1992
|
+
borderError: string;
|
|
1993
|
+
borderHoverError: string;
|
|
1994
|
+
colorFocusError: string;
|
|
1995
|
+
borderFocusError: string;
|
|
1996
|
+
boxShadowFocusError: string;
|
|
1997
|
+
caretColorError: string;
|
|
1998
|
+
clearColor: string;
|
|
1999
|
+
clearColorHover: string;
|
|
2000
|
+
clearColorPressed: string;
|
|
2001
|
+
iconColor: string;
|
|
2002
|
+
iconColorDisabled: string;
|
|
2003
|
+
iconColorHover: string;
|
|
2004
|
+
iconColorPressed: string;
|
|
2005
|
+
suffixTextColor: string;
|
|
2006
|
+
paddingTiny: string;
|
|
2007
|
+
paddingSmall: string;
|
|
2008
|
+
paddingMedium: string;
|
|
2009
|
+
paddingLarge: string;
|
|
2010
|
+
clearSize: string;
|
|
2011
|
+
};
|
|
2012
|
+
peers: any;
|
|
2013
|
+
peerOverrides: {
|
|
2014
|
+
[x: string]: any;
|
|
2015
|
+
};
|
|
2016
|
+
}>;
|
|
2017
|
+
cssVars: import('vue').ComputedRef<{
|
|
2018
|
+
"--n-bezier": string;
|
|
2019
|
+
"--n-count-text-color": string;
|
|
2020
|
+
"--n-count-text-color-disabled": string;
|
|
2021
|
+
"--n-color": string;
|
|
2022
|
+
"--n-font-size": string;
|
|
2023
|
+
"--n-font-weight": string;
|
|
2024
|
+
"--n-border-radius": string;
|
|
2025
|
+
"--n-height": string;
|
|
2026
|
+
"--n-padding-left": string;
|
|
2027
|
+
"--n-padding-right": string;
|
|
2028
|
+
"--n-text-color": string;
|
|
2029
|
+
"--n-caret-color": string;
|
|
2030
|
+
"--n-text-decoration-color": string;
|
|
2031
|
+
"--n-border": string;
|
|
2032
|
+
"--n-border-disabled": string;
|
|
2033
|
+
"--n-border-hover": string;
|
|
2034
|
+
"--n-border-focus": string;
|
|
2035
|
+
"--n-placeholder-color": string;
|
|
2036
|
+
"--n-placeholder-color-disabled": string;
|
|
2037
|
+
"--n-icon-size": string;
|
|
2038
|
+
"--n-line-height-textarea": string;
|
|
2039
|
+
"--n-color-disabled": string;
|
|
2040
|
+
"--n-color-focus": string;
|
|
2041
|
+
"--n-text-color-disabled": string;
|
|
2042
|
+
"--n-box-shadow-focus": string;
|
|
2043
|
+
"--n-loading-color": string;
|
|
2044
|
+
"--n-caret-color-warning": string;
|
|
2045
|
+
"--n-color-focus-warning": string;
|
|
2046
|
+
"--n-box-shadow-focus-warning": string;
|
|
2047
|
+
"--n-border-warning": string;
|
|
2048
|
+
"--n-border-focus-warning": string;
|
|
2049
|
+
"--n-border-hover-warning": string;
|
|
2050
|
+
"--n-loading-color-warning": string;
|
|
2051
|
+
"--n-caret-color-error": string;
|
|
2052
|
+
"--n-color-focus-error": string;
|
|
2053
|
+
"--n-box-shadow-focus-error": string;
|
|
2054
|
+
"--n-border-error": string;
|
|
2055
|
+
"--n-border-focus-error": string;
|
|
2056
|
+
"--n-border-hover-error": string;
|
|
2057
|
+
"--n-loading-color-error": string;
|
|
2058
|
+
"--n-clear-color": string;
|
|
2059
|
+
"--n-clear-size": string;
|
|
2060
|
+
"--n-clear-color-hover": string;
|
|
2061
|
+
"--n-clear-color-pressed": string;
|
|
2062
|
+
"--n-icon-color": string;
|
|
2063
|
+
"--n-icon-color-hover": string;
|
|
2064
|
+
"--n-icon-color-pressed": string;
|
|
2065
|
+
"--n-icon-color-disabled": string;
|
|
2066
|
+
"--n-suffix-text-color": string;
|
|
2067
|
+
}> | undefined;
|
|
2068
|
+
themeClass: import('vue').Ref<string, string> | undefined;
|
|
2069
|
+
onRender: (() => void) | undefined;
|
|
2070
|
+
isCompositing: import('vue').Ref<boolean>;
|
|
2071
|
+
blur: () => void;
|
|
2072
|
+
clear: () => void;
|
|
2073
|
+
focus: () => void;
|
|
2074
|
+
select: () => void;
|
|
2075
|
+
activate: () => void;
|
|
2076
|
+
deactivate: () => void;
|
|
2077
|
+
scrollTo: (options: ScrollToOptions) => void;
|
|
2078
|
+
}, {}, {}, {}, {
|
|
2079
|
+
type: "textarea" | "text" | "password";
|
|
2080
|
+
readonly: string | boolean;
|
|
2081
|
+
disabled: boolean | undefined;
|
|
2082
|
+
round: boolean;
|
|
2083
|
+
autofocus: boolean;
|
|
2084
|
+
loading: boolean;
|
|
2085
|
+
autosize: boolean | {
|
|
2086
|
+
minRows?: number;
|
|
2087
|
+
maxRows?: number;
|
|
2088
|
+
};
|
|
2089
|
+
bordered: boolean | undefined;
|
|
2090
|
+
clearable: boolean;
|
|
2091
|
+
defaultValue: string | [string, string] | null;
|
|
2092
|
+
resizable: boolean;
|
|
2093
|
+
pair: boolean;
|
|
2094
|
+
rows: string | number;
|
|
2095
|
+
passivelyActivated: boolean;
|
|
2096
|
+
stateful: boolean;
|
|
2097
|
+
showCount: boolean;
|
|
2098
|
+
attrSize: number;
|
|
2099
|
+
internalDeactivateOnEnter: boolean;
|
|
2100
|
+
internalForceFocus: boolean;
|
|
2101
|
+
internalLoadingBeforeSuffix: boolean;
|
|
2102
|
+
showPasswordToggle: boolean;
|
|
2103
|
+
}> | null;
|
|
2104
|
+
}, HTMLDivElement>;
|
|
1037
2105
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1038
2106
|
export default _default;
|
|
1039
2107
|
type __VLS_WithTemplateSlots<T, S> = T & {
|