@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.
Files changed (523) hide show
  1. package/README.md +3 -3
  2. package/impact-js-api.spec.json +212 -0
  3. package/js-api.esm.js +2431 -2360
  4. package/js-api.esm.js.map +1 -1
  5. package/js-api.umd.min.js +10 -10
  6. package/js-api.umd.min.js.map +1 -1
  7. package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +4 -4
  8. package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +6 -11
  9. package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +1 -1
  10. package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +1 -1
  11. package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +1 -1
  12. package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +1036 -5
  13. package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +4 -6
  14. package/lib/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +1 -1
  15. package/lib/apps/agenda-selector/composables/content-warning.use.d.ts +7 -0
  16. package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +10 -2
  17. package/lib/apps/agenda-selector/constants.d.ts +10 -0
  18. package/lib/apps/agenda-selector/export.d.ts +2 -0
  19. package/lib/apps/agenda-selector/stores/app.store.d.ts +7 -3
  20. package/lib/apps/agenda-selector/types/agenda.type.d.ts +4 -5
  21. package/lib/apps/agenda-selector/types/common.type.d.ts +6 -2
  22. package/lib/apps/agenda-selector/utils/data.util.d.ts +7 -1
  23. package/lib/apps/browser/App.vue.d.ts +18 -155
  24. package/lib/apps/browser/appTypes.d.ts +22 -0
  25. package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +174 -1
  26. package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
  27. package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +1 -1
  28. package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +15 -22
  29. package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +37 -0
  30. package/lib/apps/browser/components/Content/Content.vue.d.ts +4 -3
  31. package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +1 -1
  32. package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +1 -1
  33. package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +1 -1
  34. package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +1 -1
  35. package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +1 -1
  36. package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +8 -8
  37. package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +7 -6
  38. package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +4 -0
  39. package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +3 -4
  40. package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +3 -4
  41. package/lib/{components/CFileViewer/CFileViewerShare.vue.d.ts → apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts} +2 -4
  42. package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +6 -0
  43. package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +12 -0
  44. package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +5 -4
  45. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +372 -1
  46. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +5 -6
  47. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +4 -5
  48. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +3 -1
  49. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +4 -5
  50. package/lib/apps/browser/stores/api.d.ts +50 -18
  51. package/lib/apps/browser/stores/app.d.ts +11 -3
  52. package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
  53. package/lib/apps/browser/stores/upload.d.ts +24 -12
  54. package/lib/apps/browser/util/file.d.ts +1 -0
  55. package/lib/apps/canvas-builder/App.helpers.d.ts +6 -1
  56. package/lib/apps/canvas-builder/App.vue.d.ts +75 -32
  57. package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
  58. package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +11 -0
  59. package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +4 -0
  60. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +467 -1
  61. package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +2 -1
  62. package/lib/apps/{browser/components/BatchMoveItemsModal/BatchMoveItemsModal.vue.d.ts → canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts} +1 -1
  63. package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +3 -1
  64. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -4
  65. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +4 -5
  66. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +3 -4
  67. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +1 -1
  68. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +23 -51
  69. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +36 -44
  70. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentRevamp.vue.d.ts +30 -53
  71. package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +5 -8
  72. package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +31 -0
  73. package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +1 -1
  74. package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +3 -2
  75. package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +9 -10
  76. package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +1 -1
  77. package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +4 -7
  78. package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +5 -6
  79. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +1 -1
  80. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +3 -5
  81. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +296 -9
  82. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +8 -15
  83. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +61 -16
  84. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +5 -6
  85. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +1 -1
  86. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +7 -6
  87. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +7 -14
  88. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +323 -4
  89. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +1 -1
  90. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +4 -6
  91. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +7 -9
  92. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +5 -9
  93. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +5 -0
  94. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +16 -0
  95. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +7 -0
  96. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +26 -0
  97. package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +57 -0
  98. package/lib/apps/{browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts → canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts} +1 -1
  99. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +17 -0
  100. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +19 -0
  101. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +27 -0
  102. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +18 -0
  103. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +8 -0
  104. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +26 -0
  105. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +3 -4
  106. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +9 -11
  107. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +641 -6
  108. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +7 -13
  109. package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +13 -19
  110. package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +3 -4
  111. package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +6 -12
  112. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +3 -4
  113. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +8 -10
  114. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +294 -6
  115. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +8 -15
  116. package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +1 -1
  117. package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +5 -6
  118. package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +293 -5
  119. package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +8 -13
  120. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +1 -1
  121. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +14 -10
  122. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +295 -8
  123. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +10 -16
  124. package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +293 -5
  125. package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +12 -18
  126. package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +5 -9
  127. package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +350 -1
  128. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +13 -16
  129. package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
  130. package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +12 -0
  131. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +18 -11
  132. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +50 -13
  133. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +13 -12
  134. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +21 -0
  135. package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +5 -7
  136. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -1
  137. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +12 -8
  138. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +12 -21
  139. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +5 -6
  140. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -18
  141. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +42 -9
  142. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +3 -4
  143. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +7 -13
  144. package/lib/apps/canvas-builder/composables/useAiPrompt.d.ts +6 -0
  145. package/lib/apps/canvas-builder/composables/useCanvas.d.ts +353 -119
  146. package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +68 -36
  147. package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +56 -24
  148. package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +616 -20
  149. package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -2
  150. package/lib/apps/canvas-builder/composables/useComponentStyle.d.ts +34 -7
  151. package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +10 -1
  152. package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +2 -0
  153. package/lib/apps/canvas-builder/composables/usePrintMode.d.ts +9 -0
  154. package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
  155. package/lib/apps/canvas-builder/types/canvas.d.ts +125 -54
  156. package/lib/apps/canvas-builder/util/print.util.d.ts +1 -0
  157. package/lib/apps/canvas-selector/appTypes.d.ts +2 -0
  158. package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +4 -14
  159. package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +3 -1
  160. package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +1 -1
  161. package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +3 -1
  162. package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +3 -1
  163. package/lib/apps/canvas-selector/components/Sections.vue.d.ts +3 -1
  164. package/lib/apps/canvas-selector/stores/app.d.ts +70 -98
  165. package/lib/apps/collection-player/App.vue.d.ts +9 -14
  166. package/lib/apps/collection-player/components/AppFooter.vue.d.ts +1 -1
  167. package/lib/apps/collection-player/components/AppHeader.vue.d.ts +1 -1
  168. package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +2 -1
  169. package/lib/apps/collection-player/components/MainContent.vue.d.ts +4 -1
  170. package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -7
  171. package/lib/apps/collection-player/components/SlideContent.vue.d.ts +8 -0
  172. package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +1 -1
  173. package/lib/apps/collection-player/composables/fullscreen.use.d.ts +2 -6
  174. package/lib/apps/collection-player/composables/image-cache.use.d.ts +1 -0
  175. package/lib/apps/collection-player/composables/keyboard-bindings.use.d.ts +6 -0
  176. package/lib/apps/collection-player/composables/moving-group-gestures.use.d.ts +5 -5
  177. package/lib/apps/collection-player/composables/navigation-cache.use.d.ts +10 -0
  178. package/lib/apps/collection-player/export.d.ts +1 -0
  179. package/lib/apps/collection-player/stores/app.store.d.ts +9 -4
  180. package/lib/apps/collection-player/types/collection-player.type.d.ts +2 -0
  181. package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +1 -1
  182. package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +6 -3
  183. package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +4 -4
  184. package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +5 -9
  185. package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +4 -1
  186. package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +4 -6
  187. package/lib/apps/collection-selector/composables/content-warning.use.d.ts +6 -0
  188. package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
  189. package/lib/apps/collection-selector/constants.d.ts +5 -0
  190. package/lib/apps/collection-selector/export.d.ts +2 -0
  191. package/lib/apps/collection-selector/stores/app.store.d.ts +18 -122
  192. package/lib/apps/collection-selector/types/collection-selector.type.d.ts +10 -0
  193. package/lib/apps/collection-selector/types/common.type.d.ts +5 -4
  194. package/lib/apps/collection-selector/utils/data.util.d.ts +1 -1
  195. package/lib/apps/content-selector/App.vue.d.ts +3 -1
  196. package/lib/apps/content-selector/appTypes.d.ts +5 -1
  197. package/lib/apps/content-selector/components/AiImages.vue.d.ts +2 -0
  198. package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +3 -1
  199. package/lib/apps/content-selector/components/Assets.vue.d.ts +1 -1
  200. package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +1 -1
  201. package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +1 -1
  202. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +176 -1
  203. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +9 -18
  204. package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +1 -1
  205. package/lib/apps/content-selector/components/Content.vue.d.ts +1 -1
  206. package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +12 -0
  207. package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +10 -27
  208. package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +1 -1
  209. package/lib/apps/content-selector/stores/api.d.ts +13 -12
  210. package/lib/apps/content-selector/stores/app.d.ts +18 -2
  211. package/lib/apps/content-selector/util/file.d.ts +8 -0
  212. package/lib/apps/notes/NotesApp.vue.d.ts +7 -11
  213. package/lib/apps/ppt-conversion-selector/App.vue.d.ts +25 -0
  214. package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +11 -0
  215. package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +6 -0
  216. package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +6 -0
  217. package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +17 -0
  218. package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +2 -0
  219. package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +14 -0
  220. package/lib/apps/ppt-conversion-selector/composables/canvas.use.d.ts +34 -0
  221. package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +70 -0
  222. package/lib/apps/ppt-conversion-selector/composables/table-input.use.d.ts +15 -0
  223. package/lib/apps/ppt-conversion-selector/constants.d.ts +5 -0
  224. package/lib/apps/ppt-conversion-selector/export.d.ts +1 -0
  225. package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +148 -0
  226. package/lib/apps/ppt-conversion-selector/types/model.type.d.ts +11 -0
  227. package/lib/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +5 -0
  228. package/lib/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +1 -0
  229. package/lib/apps/ppt-conversion-selector/utils/data.util.d.ts +19 -0
  230. package/lib/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +8 -0
  231. package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +7 -6
  232. package/lib/components/CApexChart/CApexChartLine.vue.d.ts +3 -7
  233. package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +17 -0
  234. package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +3 -2
  235. package/lib/components/CAvatar/CAvatar.vue.d.ts +3 -2
  236. package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +9 -19
  237. package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +31 -0
  238. package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +19 -0
  239. package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +3 -7
  240. package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +21 -33
  241. package/lib/components/CButton/CButton.vue.d.ts +2 -1
  242. package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +2 -1
  243. package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +5 -12
  244. package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +5 -8
  245. package/lib/components/CCard/CCard.vue.d.ts +3 -2
  246. package/lib/components/CCarousel/CCarousel.vue.d.ts +326 -9
  247. package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +1 -1
  248. package/lib/components/CCheckbox/CCheckbox.vue.d.ts +9 -1
  249. package/lib/components/CChip/CChip.vue.d.ts +12 -16
  250. package/lib/components/CCollapse/CCollapse.vue.d.ts +3 -2
  251. package/lib/components/CCollapse/CCollapseItem.vue.d.ts +3 -2
  252. package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +2 -1
  253. package/lib/components/CColorPicker/CColorPicker.vue.d.ts +3 -2
  254. package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +4 -2
  255. package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +17 -22
  256. package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +300 -17
  257. package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +1 -1
  258. package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +3 -2
  259. package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +3 -2
  260. package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +2 -1
  261. package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -15
  262. package/lib/components/CContactSelector/CContactSelector.vue.d.ts +5 -22
  263. package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +23 -25
  264. package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +4 -10
  265. package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +14 -23
  266. package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +5 -13
  267. package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +290 -1
  268. package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +19 -0
  269. package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +10 -0
  270. package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +319 -0
  271. package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +13 -0
  272. package/lib/components/CDataTable/CDataTable.vue.d.ts +7834 -1
  273. package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +1 -1
  274. package/lib/components/CDivider/CDivider.vue.d.ts +10 -2
  275. package/lib/components/CDrawer/CDrawer.vue.d.ts +9 -1
  276. package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +9 -1
  277. package/lib/components/CDropdown/CDropdown.vue.d.ts +3 -2
  278. package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +3 -8
  279. package/lib/components/CEmpty/CEmpty.vue.d.ts +3 -2
  280. package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +52 -4
  281. package/lib/components/CError/CErrorFullScreen.vue.d.ts +13 -21
  282. package/lib/components/CFeedback/CFeedback.vue.d.ts +9 -10
  283. package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +4 -10
  284. package/lib/components/CFilePanel/BasicInfo.vue.d.ts +1 -1
  285. package/lib/components/CFilePanel/CFilePanel.vue.d.ts +4 -7
  286. package/lib/components/CFilePanel/Details.vue.d.ts +1 -1
  287. package/lib/components/CFilePanel/Tags.vue.d.ts +1 -1
  288. package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +4 -9
  289. package/lib/components/CFileViewer/CFileViewer.vue.d.ts +214 -58
  290. package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
  291. package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +2 -0
  292. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +350 -1
  293. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +3 -8
  294. package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +1 -1
  295. package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +10 -12
  296. package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +2 -1
  297. package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +2 -2
  298. package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +3 -5
  299. package/lib/components/CFontSelect/CFontSelect.vue.d.ts +11 -14
  300. package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +4 -7
  301. package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +4 -1
  302. package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +48 -1
  303. package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +1 -1
  304. package/lib/components/CGlobalSearch/CResult.vue.d.ts +1 -1
  305. package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +3 -2
  306. package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +2 -1
  307. package/lib/components/CHeightInput/CHeightInput.vue.d.ts +10 -0
  308. package/lib/components/CHelpText/CHelpText.vue.d.ts +2 -1
  309. package/lib/components/CIcon/CIcon.vue.d.ts +2 -0
  310. package/lib/components/CImage/CBrokenImage.vue.d.ts +6 -6
  311. package/lib/components/CImage/CImage.vue.d.ts +300 -7
  312. package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -13
  313. package/lib/components/CInput/CInput.vue.d.ts +1034 -1
  314. package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +7 -7
  315. package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +4 -6
  316. package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +3 -1
  317. package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +6 -6
  318. package/lib/components/CList/CList.vue.d.ts +15 -17
  319. package/lib/components/CList/CListItem.vue.d.ts +6 -5
  320. package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +9 -0
  321. package/lib/components/CModal/CModal.vue.d.ts +3 -2
  322. package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +10 -9
  323. package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +4 -7
  324. package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +22 -0
  325. package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +5 -7
  326. package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +5 -10
  327. package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +69 -6
  328. package/lib/components/CPopover/CPopover.vue.d.ts +3 -2
  329. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +5 -10
  330. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +1 -1
  331. package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +18 -0
  332. package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +5 -9
  333. package/lib/components/CRate/CRate.vue.d.ts +3 -2
  334. package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +4 -7
  335. package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +31 -3
  336. package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +1 -1
  337. package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2440 -11
  338. package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +2 -1
  339. package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +44 -1
  340. package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +2443 -0
  341. package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +1034 -1
  342. package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +9 -0
  343. package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +3 -8
  344. package/lib/components/CSearch/CSearchOnClick.vue.d.ts +11 -14
  345. package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +23 -0
  346. package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +95 -25
  347. package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +3 -2
  348. package/lib/components/CSelect/CSelect.vue.d.ts +3 -2
  349. package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +5 -7
  350. package/lib/components/CShortcut/CShortcut.vue.d.ts +3 -2
  351. package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +1 -1
  352. package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +5 -13
  353. package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +5 -7
  354. package/lib/components/CSlider/CSlider.vue.d.ts +3 -2
  355. package/lib/components/CSpin/CSpin.vue.d.ts +3 -2
  356. package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +5 -8
  357. package/lib/components/CSwitch/CSwitch.vue.d.ts +18 -1
  358. package/lib/components/CTable/CTable.vue.d.ts +18 -20
  359. package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +1 -0
  360. package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +1 -1
  361. package/lib/components/CTableInput/CTableInput.vue.d.ts +1128 -60
  362. package/lib/components/CTableMore/CTableMore.vue.d.ts +6 -14
  363. package/lib/components/CTableSelect/CTableSelect.vue.d.ts +1 -1
  364. package/lib/components/CTag/CTag.vue.d.ts +9 -1
  365. package/lib/components/CTags/CTags.vue.d.ts +4634 -1
  366. package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +3 -1
  367. package/lib/components/CThemePreview/CThemePreview.vue.d.ts +20 -0
  368. package/lib/components/CTimeline/CTimeline.vue.d.ts +4 -5
  369. package/lib/components/CTimeline/CTimelineControl.vue.d.ts +1 -1
  370. package/lib/components/CTimeline/CTimelineModal.vue.d.ts +4 -5
  371. package/lib/components/CTooltip/CTooltip.vue.d.ts +3 -2
  372. package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +7 -7
  373. package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +6 -7
  374. package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +6 -7
  375. package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +303 -0
  376. package/lib/components/CUserMenu/CUserMenu.vue.d.ts +370 -9
  377. package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +3 -1
  378. package/lib/components/CVideo/CVideo.vue.d.ts +10 -22
  379. package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +13 -14
  380. package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +3 -2
  381. package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +11 -0
  382. package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +252 -44
  383. package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +9 -16
  384. package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +5 -15
  385. package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +770 -55
  386. package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +25 -21
  387. package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +3 -8
  388. package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +54 -0
  389. package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +220 -19
  390. package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +5 -8
  391. package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +5 -11
  392. package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +27 -3
  393. package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
  394. package/lib/components/filters/CSearchFilter.vue.d.ts +90 -2
  395. package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
  396. package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +533 -64
  397. package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +11 -22
  398. package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +3 -4
  399. package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +1722 -3
  400. package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +6 -18
  401. package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +7 -10
  402. package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +5 -6
  403. package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +25 -30
  404. package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +130 -7
  405. package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +1 -1
  406. package/lib/components/sections/CSectionManagement.vue.d.ts +237 -50
  407. package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +11 -18
  408. package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +5 -12
  409. package/lib/components/themes/CThemeManagement.vue.d.ts +354 -0
  410. package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +24 -0
  411. package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +10 -0
  412. package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +16 -0
  413. package/lib/composables/appsDb.use.d.ts +8 -1
  414. package/lib/composables/useCanvasLocks.d.ts +54 -0
  415. package/lib/composables/useCanvasOverlay.d.ts +13 -1
  416. package/lib/composables/useCoreApi.d.ts +7 -0
  417. package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
  418. package/lib/composables/useMetadataSearch.d.ts +19 -0
  419. package/lib/composables/useMetadataTemplates.d.ts +246 -0
  420. package/lib/composables/useWindowEvents.d.ts +5 -3
  421. package/lib/constants/appsDb.const.d.ts +4 -0
  422. package/lib/constants/cdp.const.d.ts +2 -2
  423. package/lib/constants/color.const.d.ts +1 -0
  424. package/lib/constants/query-builder.const.d.ts +1 -0
  425. package/lib/main.lib.d.ts +25 -1
  426. package/lib/sdk/api/HighLevelApi.d.ts +20 -1
  427. package/lib/sdk/api/modules/admin/canvas.admin.d.ts +20 -0
  428. package/lib/sdk/api/modules/admin/content.admin.d.ts +21 -3
  429. package/lib/sdk/api/modules/admin/files.admin.d.ts +0 -19
  430. package/lib/sdk/api/modules/admin/index.d.ts +7 -1
  431. package/lib/sdk/api/modules/admin/types.admin.d.ts +55 -6
  432. package/lib/sdk/api/modules/canvas.d.ts +7 -0
  433. package/lib/sdk/api/modules/env.d.ts +1 -1
  434. package/lib/sdk/api/modules/folders.core.d.ts +7 -0
  435. package/lib/sdk/api/modules/index.d.ts +2 -0
  436. package/lib/sdk/api/modules/theme.d.ts +10 -0
  437. package/lib/sdk/api/modules/ui/canvas.ui.d.ts +20 -0
  438. package/lib/sdk/api/modules/ui/content.ui.d.ts +2 -2
  439. package/lib/sdk/api/modules/ui/index.d.ts +6 -0
  440. package/lib/sdk/api/modules/ui/types.ui.d.ts +28 -4
  441. package/lib/sdk/interfaces.d.ts +24 -1
  442. package/lib/sdk/main.d.ts +92 -5
  443. package/lib/sdk/payload.types.d.ts +8 -0
  444. package/lib/theme/light.d.ts +6 -0
  445. package/lib/theme/theme.types.d.ts +7 -0
  446. package/lib/types/app.d.ts +4 -0
  447. package/lib/types/canvasTheme.d.ts +37 -0
  448. package/lib/types/canvases.d.ts +9 -0
  449. package/lib/types/core/MetadataFilter.d.ts +44 -0
  450. package/lib/types/core/UpsertPptxSlideImages.d.ts +12 -0
  451. package/lib/types/core/index.d.ts +2 -0
  452. package/lib/types/files.d.ts +5 -2
  453. package/lib/types/folder.d.ts +35 -0
  454. package/lib/types/instanceSettings.types.d.ts +8 -0
  455. package/lib/types/launchDarkly.types.d.ts +4 -1
  456. package/lib/types/organizationSettings.types.d.ts +9 -0
  457. package/lib/types/query-builder.types.d.ts +7 -0
  458. package/lib/types/recentFiles.types.d.ts +2 -1
  459. package/lib/types/search.d.ts +5 -0
  460. package/lib/util/anchor.d.ts +1 -1
  461. package/lib/util/array.d.ts +1 -1
  462. package/lib/util/color.d.ts +2 -0
  463. package/lib/util/file.util.d.ts +4 -0
  464. package/lib/util/image.d.ts +6 -0
  465. package/lib/util/query-builder.util.d.ts +2 -0
  466. package/lib/util/style.util.d.ts +1 -0
  467. package/lib/util/tree-transformation.util.d.ts +6 -0
  468. package/lib/util/url.d.ts +3 -0
  469. package/package.json +1 -1
  470. package/types/openapi/index.d.ts +0 -4
  471. package/types/openapi/models/AuthToken.d.ts +1 -0
  472. package/types/openapi/models/AuthTokenRequest.d.ts +1 -0
  473. package/types/openapi/models/Canvas.d.ts +0 -2
  474. package/types/openapi/models/CanvasCreate.d.ts +0 -2
  475. package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -2
  476. package/types/openapi/models/CanvasRetrieve.d.ts +0 -2
  477. package/types/openapi/models/CanvasUpdate.d.ts +0 -2
  478. package/types/openapi/models/DeletedCanvas.d.ts +0 -2
  479. package/types/openapi/models/DeletedFile.d.ts +1 -2
  480. package/types/openapi/models/DeletedInstance.d.ts +1 -1
  481. package/types/openapi/models/FavoriteFile.d.ts +1 -0
  482. package/types/openapi/models/FavoriteFileRequest.d.ts +1 -0
  483. package/types/openapi/models/File.d.ts +1 -2
  484. package/types/openapi/models/FileCreate.d.ts +1 -2
  485. package/types/openapi/models/FileCreateRequest.d.ts +1 -0
  486. package/types/openapi/models/FileRetrieve.d.ts +1 -2
  487. package/types/openapi/models/FileStatusEnum.d.ts +3 -1
  488. package/types/openapi/models/FileUpdate.d.ts +1 -2
  489. package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
  490. package/types/openapi/models/FolderFile.d.ts +3 -0
  491. package/types/openapi/models/Instance.d.ts +1 -1
  492. package/types/openapi/models/InstanceAnalytics.d.ts +5 -3
  493. package/types/openapi/models/InstanceMembershipUser.d.ts +1 -0
  494. package/types/openapi/models/InstanceRequest.d.ts +1 -1
  495. package/types/openapi/models/InstanceUpdate.d.ts +1 -1
  496. package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -1
  497. package/types/openapi/models/MetadataTemplateField.d.ts +1 -1
  498. package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +1 -1
  499. package/types/openapi/models/MetadataTemplateSection.d.ts +1 -0
  500. package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +1 -0
  501. package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
  502. package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -1
  503. package/types/openapi/models/PatchedUserRequest.d.ts +1 -1
  504. package/types/openapi/models/SearchCanvas.d.ts +0 -1
  505. package/types/openapi/models/SearchResult.d.ts +1 -3
  506. package/types/openapi/models/SharedLink.d.ts +0 -1
  507. package/types/openapi/models/SharedLinkCreate.d.ts +0 -1
  508. package/types/openapi/models/SharedLinkCreateRequest.d.ts +0 -1
  509. package/types/openapi/models/SharedLinkInstance.d.ts +1 -0
  510. package/types/openapi/models/User.d.ts +1 -1
  511. package/types/openapi/models/UserRequest.d.ts +1 -1
  512. package/lib/apps/browser/components/UpsertFolderModal/UpsertFolderModal.vue.d.ts +0 -9
  513. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentLegacy.vue.d.ts +0 -113
  514. package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -8
  515. package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -31
  516. package/lib/apps/collection-player/composables/arrow-keys.use.d.ts +0 -6
  517. package/lib/apps/collection-selector/App.vue.d.ts +0 -29
  518. package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -17
  519. package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -44
  520. package/types/openapi/models/PaginatedStorageRegionList.d.ts +0 -7
  521. package/types/openapi/models/SearchContentDistributionGroup.d.ts +0 -10
  522. package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +0 -10
  523. package/types/openapi/models/StorageRegion.d.ts +0 -5
@@ -21,5 +21,4638 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
21
21
  value: string[];
22
22
  minCharsToSuggest: number;
23
23
  maxTags: number;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
25
+ dynamicTagsRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
26
+ size: {
27
+ type: import('vue').PropType<"small" | "medium" | "large">;
28
+ default: string;
29
+ };
30
+ closable: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ defaultValue: {
35
+ type: import('vue').PropType<Array<string | import('naive-ui').DynamicTagsOption>>;
36
+ default: () => never[];
37
+ };
38
+ value: import('vue').PropType<Array<string | import('naive-ui').DynamicTagsOption>>;
39
+ inputClass: StringConstructor;
40
+ inputStyle: import('vue').PropType<string | import('vue').CSSProperties>;
41
+ inputProps: import('vue').PropType<import('naive-ui').InputProps>;
42
+ max: import('vue').PropType<number>;
43
+ tagClass: StringConstructor;
44
+ tagStyle: import('vue').PropType<string | import('vue').CSSProperties>;
45
+ renderTag: import('vue').PropType<((tag: string, index: number) => import('vue').VNodeChild) | ((tag: import('naive-ui').DynamicTagsOption, index: number) => import('vue').VNodeChild)>;
46
+ onCreate: {
47
+ type: import('vue').PropType<import('naive-ui/es/dynamic-tags/src/interface').OnCreate>;
48
+ default: (label: string) => string;
49
+ };
50
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue>>;
51
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue>>;
52
+ onChange: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue> | undefined>;
53
+ color: import('vue').PropType<import('naive-ui/es/tag/src/common-props').TagColor>;
54
+ type: {
55
+ readonly type: import('vue').PropType<"default" | "primary" | "success" | "info" | "warning" | "error">;
56
+ readonly default: "default";
57
+ };
58
+ round: BooleanConstructor;
59
+ disabled: {
60
+ readonly type: import('vue').PropType<boolean | undefined>;
61
+ readonly default: undefined;
62
+ };
63
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
64
+ inputWidth: string;
65
+ }, {
66
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
67
+ fontWeight: string;
68
+ countTextColorDisabled: string;
69
+ countTextColor: string;
70
+ heightTiny: string;
71
+ heightSmall: string;
72
+ heightMedium: string;
73
+ heightLarge: string;
74
+ fontSizeTiny: string;
75
+ fontSizeSmall: string;
76
+ fontSizeMedium: string;
77
+ fontSizeLarge: string;
78
+ lineHeight: string;
79
+ lineHeightTextarea: string;
80
+ borderRadius: string;
81
+ iconSize: string;
82
+ groupLabelColor: string;
83
+ groupLabelTextColor: string;
84
+ textColor: string;
85
+ textColorDisabled: string;
86
+ textDecorationColor: string;
87
+ caretColor: string;
88
+ placeholderColor: string;
89
+ placeholderColorDisabled: string;
90
+ color: string;
91
+ colorDisabled: string;
92
+ colorFocus: string;
93
+ groupLabelBorder: string;
94
+ border: string;
95
+ borderHover: string;
96
+ borderDisabled: string;
97
+ borderFocus: string;
98
+ boxShadowFocus: string;
99
+ loadingColor: string;
100
+ loadingColorWarning: string;
101
+ borderWarning: string;
102
+ borderHoverWarning: string;
103
+ colorFocusWarning: string;
104
+ borderFocusWarning: string;
105
+ boxShadowFocusWarning: string;
106
+ caretColorWarning: string;
107
+ loadingColorError: string;
108
+ borderError: string;
109
+ borderHoverError: string;
110
+ colorFocusError: string;
111
+ borderFocusError: string;
112
+ boxShadowFocusError: string;
113
+ caretColorError: string;
114
+ clearColor: string;
115
+ clearColorHover: string;
116
+ clearColorPressed: string;
117
+ iconColor: string;
118
+ iconColorDisabled: string;
119
+ iconColorHover: string;
120
+ iconColorPressed: string;
121
+ suffixTextColor: string;
122
+ paddingTiny: string;
123
+ paddingSmall: string;
124
+ paddingMedium: string;
125
+ paddingLarge: string;
126
+ clearSize: string;
127
+ }, any>;
128
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
129
+ heightTiny: string;
130
+ heightSmall: string;
131
+ heightMedium: string;
132
+ heightLarge: string;
133
+ borderRadiusTiny: string;
134
+ borderRadiusSmall: string;
135
+ borderRadiusMedium: string;
136
+ borderRadiusLarge: string;
137
+ fontSizeTiny: string;
138
+ fontSizeSmall: string;
139
+ fontSizeMedium: string;
140
+ fontSizeLarge: string;
141
+ opacityDisabled: string;
142
+ colorOpacitySecondary: string;
143
+ colorOpacitySecondaryHover: string;
144
+ colorOpacitySecondaryPressed: string;
145
+ colorSecondary: string;
146
+ colorSecondaryHover: string;
147
+ colorSecondaryPressed: string;
148
+ colorTertiary: string;
149
+ colorTertiaryHover: string;
150
+ colorTertiaryPressed: string;
151
+ colorQuaternary: string;
152
+ colorQuaternaryHover: string;
153
+ colorQuaternaryPressed: string;
154
+ color: string;
155
+ colorHover: string;
156
+ colorPressed: string;
157
+ colorFocus: string;
158
+ colorDisabled: string;
159
+ textColor: string;
160
+ textColorTertiary: string;
161
+ textColorHover: string;
162
+ textColorPressed: string;
163
+ textColorFocus: string;
164
+ textColorDisabled: string;
165
+ textColorText: string;
166
+ textColorTextHover: string;
167
+ textColorTextPressed: string;
168
+ textColorTextFocus: string;
169
+ textColorTextDisabled: string;
170
+ textColorGhost: string;
171
+ textColorGhostHover: string;
172
+ textColorGhostPressed: string;
173
+ textColorGhostFocus: string;
174
+ textColorGhostDisabled: string;
175
+ border: string;
176
+ borderHover: string;
177
+ borderPressed: string;
178
+ borderFocus: string;
179
+ borderDisabled: string;
180
+ rippleColor: string;
181
+ colorPrimary: string;
182
+ colorHoverPrimary: string;
183
+ colorPressedPrimary: string;
184
+ colorFocusPrimary: string;
185
+ colorDisabledPrimary: string;
186
+ textColorPrimary: string;
187
+ textColorHoverPrimary: string;
188
+ textColorPressedPrimary: string;
189
+ textColorFocusPrimary: string;
190
+ textColorDisabledPrimary: string;
191
+ textColorTextPrimary: string;
192
+ textColorTextHoverPrimary: string;
193
+ textColorTextPressedPrimary: string;
194
+ textColorTextFocusPrimary: string;
195
+ textColorTextDisabledPrimary: string;
196
+ textColorGhostPrimary: string;
197
+ textColorGhostHoverPrimary: string;
198
+ textColorGhostPressedPrimary: string;
199
+ textColorGhostFocusPrimary: string;
200
+ textColorGhostDisabledPrimary: string;
201
+ borderPrimary: string;
202
+ borderHoverPrimary: string;
203
+ borderPressedPrimary: string;
204
+ borderFocusPrimary: string;
205
+ borderDisabledPrimary: string;
206
+ rippleColorPrimary: string;
207
+ colorInfo: string;
208
+ colorHoverInfo: string;
209
+ colorPressedInfo: string;
210
+ colorFocusInfo: string;
211
+ colorDisabledInfo: string;
212
+ textColorInfo: string;
213
+ textColorHoverInfo: string;
214
+ textColorPressedInfo: string;
215
+ textColorFocusInfo: string;
216
+ textColorDisabledInfo: string;
217
+ textColorTextInfo: string;
218
+ textColorTextHoverInfo: string;
219
+ textColorTextPressedInfo: string;
220
+ textColorTextFocusInfo: string;
221
+ textColorTextDisabledInfo: string;
222
+ textColorGhostInfo: string;
223
+ textColorGhostHoverInfo: string;
224
+ textColorGhostPressedInfo: string;
225
+ textColorGhostFocusInfo: string;
226
+ textColorGhostDisabledInfo: string;
227
+ borderInfo: string;
228
+ borderHoverInfo: string;
229
+ borderPressedInfo: string;
230
+ borderFocusInfo: string;
231
+ borderDisabledInfo: string;
232
+ rippleColorInfo: string;
233
+ colorSuccess: string;
234
+ colorHoverSuccess: string;
235
+ colorPressedSuccess: string;
236
+ colorFocusSuccess: string;
237
+ colorDisabledSuccess: string;
238
+ textColorSuccess: string;
239
+ textColorHoverSuccess: string;
240
+ textColorPressedSuccess: string;
241
+ textColorFocusSuccess: string;
242
+ textColorDisabledSuccess: string;
243
+ textColorTextSuccess: string;
244
+ textColorTextHoverSuccess: string;
245
+ textColorTextPressedSuccess: string;
246
+ textColorTextFocusSuccess: string;
247
+ textColorTextDisabledSuccess: string;
248
+ textColorGhostSuccess: string;
249
+ textColorGhostHoverSuccess: string;
250
+ textColorGhostPressedSuccess: string;
251
+ textColorGhostFocusSuccess: string;
252
+ textColorGhostDisabledSuccess: string;
253
+ borderSuccess: string;
254
+ borderHoverSuccess: string;
255
+ borderPressedSuccess: string;
256
+ borderFocusSuccess: string;
257
+ borderDisabledSuccess: string;
258
+ rippleColorSuccess: string;
259
+ colorWarning: string;
260
+ colorHoverWarning: string;
261
+ colorPressedWarning: string;
262
+ colorFocusWarning: string;
263
+ colorDisabledWarning: string;
264
+ textColorWarning: string;
265
+ textColorHoverWarning: string;
266
+ textColorPressedWarning: string;
267
+ textColorFocusWarning: string;
268
+ textColorDisabledWarning: string;
269
+ textColorTextWarning: string;
270
+ textColorTextHoverWarning: string;
271
+ textColorTextPressedWarning: string;
272
+ textColorTextFocusWarning: string;
273
+ textColorTextDisabledWarning: string;
274
+ textColorGhostWarning: string;
275
+ textColorGhostHoverWarning: string;
276
+ textColorGhostPressedWarning: string;
277
+ textColorGhostFocusWarning: string;
278
+ textColorGhostDisabledWarning: string;
279
+ borderWarning: string;
280
+ borderHoverWarning: string;
281
+ borderPressedWarning: string;
282
+ borderFocusWarning: string;
283
+ borderDisabledWarning: string;
284
+ rippleColorWarning: string;
285
+ colorError: string;
286
+ colorHoverError: string;
287
+ colorPressedError: string;
288
+ colorFocusError: string;
289
+ colorDisabledError: string;
290
+ textColorError: string;
291
+ textColorHoverError: string;
292
+ textColorPressedError: string;
293
+ textColorFocusError: string;
294
+ textColorDisabledError: string;
295
+ textColorTextError: string;
296
+ textColorTextHoverError: string;
297
+ textColorTextPressedError: string;
298
+ textColorTextFocusError: string;
299
+ textColorTextDisabledError: string;
300
+ textColorGhostError: string;
301
+ textColorGhostHoverError: string;
302
+ textColorGhostPressedError: string;
303
+ textColorGhostFocusError: string;
304
+ textColorGhostDisabledError: string;
305
+ borderError: string;
306
+ borderHoverError: string;
307
+ borderPressedError: string;
308
+ borderFocusError: string;
309
+ borderDisabledError: string;
310
+ rippleColorError: string;
311
+ waveOpacity: string;
312
+ fontWeight: string;
313
+ fontWeightStrong: string;
314
+ paddingTiny: string;
315
+ paddingSmall: string;
316
+ paddingMedium: string;
317
+ paddingLarge: string;
318
+ paddingRoundTiny: string;
319
+ paddingRoundSmall: string;
320
+ paddingRoundMedium: string;
321
+ paddingRoundLarge: string;
322
+ iconMarginTiny: string;
323
+ iconMarginSmall: string;
324
+ iconMarginMedium: string;
325
+ iconMarginLarge: string;
326
+ iconSizeTiny: string;
327
+ iconSizeSmall: string;
328
+ iconSizeMedium: string;
329
+ iconSizeLarge: string;
330
+ rippleDuration: string;
331
+ }, any>;
332
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
333
+ closeBorderRadius: string;
334
+ heightTiny: string;
335
+ heightSmall: string;
336
+ heightMedium: string;
337
+ heightLarge: string;
338
+ borderRadius: string;
339
+ opacityDisabled: string;
340
+ fontSizeTiny: string;
341
+ fontSizeSmall: string;
342
+ fontSizeMedium: string;
343
+ fontSizeLarge: string;
344
+ fontWeightStrong: string;
345
+ textColorCheckable: string;
346
+ textColorHoverCheckable: string;
347
+ textColorPressedCheckable: string;
348
+ textColorChecked: string;
349
+ colorCheckable: string;
350
+ colorHoverCheckable: string;
351
+ colorPressedCheckable: string;
352
+ colorChecked: string;
353
+ colorCheckedHover: string;
354
+ colorCheckedPressed: string;
355
+ border: string;
356
+ textColor: string;
357
+ color: string;
358
+ colorBordered: string;
359
+ closeIconColor: string;
360
+ closeIconColorHover: string;
361
+ closeIconColorPressed: string;
362
+ closeColorHover: string;
363
+ closeColorPressed: string;
364
+ borderPrimary: string;
365
+ textColorPrimary: string;
366
+ colorPrimary: string;
367
+ colorBorderedPrimary: string;
368
+ closeIconColorPrimary: string;
369
+ closeIconColorHoverPrimary: string;
370
+ closeIconColorPressedPrimary: string;
371
+ closeColorHoverPrimary: string;
372
+ closeColorPressedPrimary: string;
373
+ borderInfo: string;
374
+ textColorInfo: string;
375
+ colorInfo: string;
376
+ colorBorderedInfo: string;
377
+ closeIconColorInfo: string;
378
+ closeIconColorHoverInfo: string;
379
+ closeIconColorPressedInfo: string;
380
+ closeColorHoverInfo: string;
381
+ closeColorPressedInfo: string;
382
+ borderSuccess: string;
383
+ textColorSuccess: string;
384
+ colorSuccess: string;
385
+ colorBorderedSuccess: string;
386
+ closeIconColorSuccess: string;
387
+ closeIconColorHoverSuccess: string;
388
+ closeIconColorPressedSuccess: string;
389
+ closeColorHoverSuccess: string;
390
+ closeColorPressedSuccess: string;
391
+ borderWarning: string;
392
+ textColorWarning: string;
393
+ colorWarning: string;
394
+ colorBorderedWarning: string;
395
+ closeIconColorWarning: string;
396
+ closeIconColorHoverWarning: string;
397
+ closeIconColorPressedWarning: string;
398
+ closeColorHoverWarning: string;
399
+ closeColorPressedWarning: string;
400
+ borderError: string;
401
+ textColorError: string;
402
+ colorError: string;
403
+ colorBorderedError: string;
404
+ closeIconColorError: string;
405
+ closeIconColorHoverError: string;
406
+ closeIconColorPressedError: string;
407
+ closeColorHoverError: string;
408
+ closeColorPressedError: string;
409
+ closeIconSizeTiny: string;
410
+ closeIconSizeSmall: string;
411
+ closeIconSizeMedium: string;
412
+ closeIconSizeLarge: string;
413
+ closeSizeTiny: string;
414
+ closeSizeSmall: string;
415
+ closeSizeMedium: string;
416
+ closeSizeLarge: string;
417
+ padding: string;
418
+ closeMargin: string;
419
+ }, any>;
420
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
421
+ gapSmall: string;
422
+ gapMedium: string;
423
+ gapLarge: string;
424
+ }, any>;
425
+ }>>;
426
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
427
+ inputWidth: string;
428
+ }, {
429
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
430
+ fontWeight: string;
431
+ countTextColorDisabled: string;
432
+ countTextColor: string;
433
+ heightTiny: string;
434
+ heightSmall: string;
435
+ heightMedium: string;
436
+ heightLarge: string;
437
+ fontSizeTiny: string;
438
+ fontSizeSmall: string;
439
+ fontSizeMedium: string;
440
+ fontSizeLarge: string;
441
+ lineHeight: string;
442
+ lineHeightTextarea: string;
443
+ borderRadius: string;
444
+ iconSize: string;
445
+ groupLabelColor: string;
446
+ groupLabelTextColor: string;
447
+ textColor: string;
448
+ textColorDisabled: string;
449
+ textDecorationColor: string;
450
+ caretColor: string;
451
+ placeholderColor: string;
452
+ placeholderColorDisabled: string;
453
+ color: string;
454
+ colorDisabled: string;
455
+ colorFocus: string;
456
+ groupLabelBorder: string;
457
+ border: string;
458
+ borderHover: string;
459
+ borderDisabled: string;
460
+ borderFocus: string;
461
+ boxShadowFocus: string;
462
+ loadingColor: string;
463
+ loadingColorWarning: string;
464
+ borderWarning: string;
465
+ borderHoverWarning: string;
466
+ colorFocusWarning: string;
467
+ borderFocusWarning: string;
468
+ boxShadowFocusWarning: string;
469
+ caretColorWarning: string;
470
+ loadingColorError: string;
471
+ borderError: string;
472
+ borderHoverError: string;
473
+ colorFocusError: string;
474
+ borderFocusError: string;
475
+ boxShadowFocusError: string;
476
+ caretColorError: string;
477
+ clearColor: string;
478
+ clearColorHover: string;
479
+ clearColorPressed: string;
480
+ iconColor: string;
481
+ iconColorDisabled: string;
482
+ iconColorHover: string;
483
+ iconColorPressed: string;
484
+ suffixTextColor: string;
485
+ paddingTiny: string;
486
+ paddingSmall: string;
487
+ paddingMedium: string;
488
+ paddingLarge: string;
489
+ clearSize: string;
490
+ }, any>;
491
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
492
+ heightTiny: string;
493
+ heightSmall: string;
494
+ heightMedium: string;
495
+ heightLarge: string;
496
+ borderRadiusTiny: string;
497
+ borderRadiusSmall: string;
498
+ borderRadiusMedium: string;
499
+ borderRadiusLarge: string;
500
+ fontSizeTiny: string;
501
+ fontSizeSmall: string;
502
+ fontSizeMedium: string;
503
+ fontSizeLarge: string;
504
+ opacityDisabled: string;
505
+ colorOpacitySecondary: string;
506
+ colorOpacitySecondaryHover: string;
507
+ colorOpacitySecondaryPressed: string;
508
+ colorSecondary: string;
509
+ colorSecondaryHover: string;
510
+ colorSecondaryPressed: string;
511
+ colorTertiary: string;
512
+ colorTertiaryHover: string;
513
+ colorTertiaryPressed: string;
514
+ colorQuaternary: string;
515
+ colorQuaternaryHover: string;
516
+ colorQuaternaryPressed: string;
517
+ color: string;
518
+ colorHover: string;
519
+ colorPressed: string;
520
+ colorFocus: string;
521
+ colorDisabled: string;
522
+ textColor: string;
523
+ textColorTertiary: string;
524
+ textColorHover: string;
525
+ textColorPressed: string;
526
+ textColorFocus: string;
527
+ textColorDisabled: string;
528
+ textColorText: string;
529
+ textColorTextHover: string;
530
+ textColorTextPressed: string;
531
+ textColorTextFocus: string;
532
+ textColorTextDisabled: string;
533
+ textColorGhost: string;
534
+ textColorGhostHover: string;
535
+ textColorGhostPressed: string;
536
+ textColorGhostFocus: string;
537
+ textColorGhostDisabled: string;
538
+ border: string;
539
+ borderHover: string;
540
+ borderPressed: string;
541
+ borderFocus: string;
542
+ borderDisabled: string;
543
+ rippleColor: string;
544
+ colorPrimary: string;
545
+ colorHoverPrimary: string;
546
+ colorPressedPrimary: string;
547
+ colorFocusPrimary: string;
548
+ colorDisabledPrimary: string;
549
+ textColorPrimary: string;
550
+ textColorHoverPrimary: string;
551
+ textColorPressedPrimary: string;
552
+ textColorFocusPrimary: string;
553
+ textColorDisabledPrimary: string;
554
+ textColorTextPrimary: string;
555
+ textColorTextHoverPrimary: string;
556
+ textColorTextPressedPrimary: string;
557
+ textColorTextFocusPrimary: string;
558
+ textColorTextDisabledPrimary: string;
559
+ textColorGhostPrimary: string;
560
+ textColorGhostHoverPrimary: string;
561
+ textColorGhostPressedPrimary: string;
562
+ textColorGhostFocusPrimary: string;
563
+ textColorGhostDisabledPrimary: string;
564
+ borderPrimary: string;
565
+ borderHoverPrimary: string;
566
+ borderPressedPrimary: string;
567
+ borderFocusPrimary: string;
568
+ borderDisabledPrimary: string;
569
+ rippleColorPrimary: string;
570
+ colorInfo: string;
571
+ colorHoverInfo: string;
572
+ colorPressedInfo: string;
573
+ colorFocusInfo: string;
574
+ colorDisabledInfo: string;
575
+ textColorInfo: string;
576
+ textColorHoverInfo: string;
577
+ textColorPressedInfo: string;
578
+ textColorFocusInfo: string;
579
+ textColorDisabledInfo: string;
580
+ textColorTextInfo: string;
581
+ textColorTextHoverInfo: string;
582
+ textColorTextPressedInfo: string;
583
+ textColorTextFocusInfo: string;
584
+ textColorTextDisabledInfo: string;
585
+ textColorGhostInfo: string;
586
+ textColorGhostHoverInfo: string;
587
+ textColorGhostPressedInfo: string;
588
+ textColorGhostFocusInfo: string;
589
+ textColorGhostDisabledInfo: string;
590
+ borderInfo: string;
591
+ borderHoverInfo: string;
592
+ borderPressedInfo: string;
593
+ borderFocusInfo: string;
594
+ borderDisabledInfo: string;
595
+ rippleColorInfo: string;
596
+ colorSuccess: string;
597
+ colorHoverSuccess: string;
598
+ colorPressedSuccess: string;
599
+ colorFocusSuccess: string;
600
+ colorDisabledSuccess: string;
601
+ textColorSuccess: string;
602
+ textColorHoverSuccess: string;
603
+ textColorPressedSuccess: string;
604
+ textColorFocusSuccess: string;
605
+ textColorDisabledSuccess: string;
606
+ textColorTextSuccess: string;
607
+ textColorTextHoverSuccess: string;
608
+ textColorTextPressedSuccess: string;
609
+ textColorTextFocusSuccess: string;
610
+ textColorTextDisabledSuccess: string;
611
+ textColorGhostSuccess: string;
612
+ textColorGhostHoverSuccess: string;
613
+ textColorGhostPressedSuccess: string;
614
+ textColorGhostFocusSuccess: string;
615
+ textColorGhostDisabledSuccess: string;
616
+ borderSuccess: string;
617
+ borderHoverSuccess: string;
618
+ borderPressedSuccess: string;
619
+ borderFocusSuccess: string;
620
+ borderDisabledSuccess: string;
621
+ rippleColorSuccess: string;
622
+ colorWarning: string;
623
+ colorHoverWarning: string;
624
+ colorPressedWarning: string;
625
+ colorFocusWarning: string;
626
+ colorDisabledWarning: string;
627
+ textColorWarning: string;
628
+ textColorHoverWarning: string;
629
+ textColorPressedWarning: string;
630
+ textColorFocusWarning: string;
631
+ textColorDisabledWarning: string;
632
+ textColorTextWarning: string;
633
+ textColorTextHoverWarning: string;
634
+ textColorTextPressedWarning: string;
635
+ textColorTextFocusWarning: string;
636
+ textColorTextDisabledWarning: string;
637
+ textColorGhostWarning: string;
638
+ textColorGhostHoverWarning: string;
639
+ textColorGhostPressedWarning: string;
640
+ textColorGhostFocusWarning: string;
641
+ textColorGhostDisabledWarning: string;
642
+ borderWarning: string;
643
+ borderHoverWarning: string;
644
+ borderPressedWarning: string;
645
+ borderFocusWarning: string;
646
+ borderDisabledWarning: string;
647
+ rippleColorWarning: string;
648
+ colorError: string;
649
+ colorHoverError: string;
650
+ colorPressedError: string;
651
+ colorFocusError: string;
652
+ colorDisabledError: string;
653
+ textColorError: string;
654
+ textColorHoverError: string;
655
+ textColorPressedError: string;
656
+ textColorFocusError: string;
657
+ textColorDisabledError: string;
658
+ textColorTextError: string;
659
+ textColorTextHoverError: string;
660
+ textColorTextPressedError: string;
661
+ textColorTextFocusError: string;
662
+ textColorTextDisabledError: string;
663
+ textColorGhostError: string;
664
+ textColorGhostHoverError: string;
665
+ textColorGhostPressedError: string;
666
+ textColorGhostFocusError: string;
667
+ textColorGhostDisabledError: string;
668
+ borderError: string;
669
+ borderHoverError: string;
670
+ borderPressedError: string;
671
+ borderFocusError: string;
672
+ borderDisabledError: string;
673
+ rippleColorError: string;
674
+ waveOpacity: string;
675
+ fontWeight: string;
676
+ fontWeightStrong: string;
677
+ paddingTiny: string;
678
+ paddingSmall: string;
679
+ paddingMedium: string;
680
+ paddingLarge: string;
681
+ paddingRoundTiny: string;
682
+ paddingRoundSmall: string;
683
+ paddingRoundMedium: string;
684
+ paddingRoundLarge: string;
685
+ iconMarginTiny: string;
686
+ iconMarginSmall: string;
687
+ iconMarginMedium: string;
688
+ iconMarginLarge: string;
689
+ iconSizeTiny: string;
690
+ iconSizeSmall: string;
691
+ iconSizeMedium: string;
692
+ iconSizeLarge: string;
693
+ rippleDuration: string;
694
+ }, any>;
695
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
696
+ closeBorderRadius: string;
697
+ heightTiny: string;
698
+ heightSmall: string;
699
+ heightMedium: string;
700
+ heightLarge: string;
701
+ borderRadius: string;
702
+ opacityDisabled: string;
703
+ fontSizeTiny: string;
704
+ fontSizeSmall: string;
705
+ fontSizeMedium: string;
706
+ fontSizeLarge: string;
707
+ fontWeightStrong: string;
708
+ textColorCheckable: string;
709
+ textColorHoverCheckable: string;
710
+ textColorPressedCheckable: string;
711
+ textColorChecked: string;
712
+ colorCheckable: string;
713
+ colorHoverCheckable: string;
714
+ colorPressedCheckable: string;
715
+ colorChecked: string;
716
+ colorCheckedHover: string;
717
+ colorCheckedPressed: string;
718
+ border: string;
719
+ textColor: string;
720
+ color: string;
721
+ colorBordered: string;
722
+ closeIconColor: string;
723
+ closeIconColorHover: string;
724
+ closeIconColorPressed: string;
725
+ closeColorHover: string;
726
+ closeColorPressed: string;
727
+ borderPrimary: string;
728
+ textColorPrimary: string;
729
+ colorPrimary: string;
730
+ colorBorderedPrimary: string;
731
+ closeIconColorPrimary: string;
732
+ closeIconColorHoverPrimary: string;
733
+ closeIconColorPressedPrimary: string;
734
+ closeColorHoverPrimary: string;
735
+ closeColorPressedPrimary: string;
736
+ borderInfo: string;
737
+ textColorInfo: string;
738
+ colorInfo: string;
739
+ colorBorderedInfo: string;
740
+ closeIconColorInfo: string;
741
+ closeIconColorHoverInfo: string;
742
+ closeIconColorPressedInfo: string;
743
+ closeColorHoverInfo: string;
744
+ closeColorPressedInfo: string;
745
+ borderSuccess: string;
746
+ textColorSuccess: string;
747
+ colorSuccess: string;
748
+ colorBorderedSuccess: string;
749
+ closeIconColorSuccess: string;
750
+ closeIconColorHoverSuccess: string;
751
+ closeIconColorPressedSuccess: string;
752
+ closeColorHoverSuccess: string;
753
+ closeColorPressedSuccess: string;
754
+ borderWarning: string;
755
+ textColorWarning: string;
756
+ colorWarning: string;
757
+ colorBorderedWarning: string;
758
+ closeIconColorWarning: string;
759
+ closeIconColorHoverWarning: string;
760
+ closeIconColorPressedWarning: string;
761
+ closeColorHoverWarning: string;
762
+ closeColorPressedWarning: string;
763
+ borderError: string;
764
+ textColorError: string;
765
+ colorError: string;
766
+ colorBorderedError: string;
767
+ closeIconColorError: string;
768
+ closeIconColorHoverError: string;
769
+ closeIconColorPressedError: string;
770
+ closeColorHoverError: string;
771
+ closeColorPressedError: string;
772
+ closeIconSizeTiny: string;
773
+ closeIconSizeSmall: string;
774
+ closeIconSizeMedium: string;
775
+ closeIconSizeLarge: string;
776
+ closeSizeTiny: string;
777
+ closeSizeSmall: string;
778
+ closeSizeMedium: string;
779
+ closeSizeLarge: string;
780
+ padding: string;
781
+ closeMargin: string;
782
+ }, any>;
783
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
784
+ gapSmall: string;
785
+ gapMedium: string;
786
+ gapLarge: string;
787
+ }, any>;
788
+ }>>>;
789
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
790
+ inputWidth: string;
791
+ }, {
792
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
793
+ fontWeight: string;
794
+ countTextColorDisabled: string;
795
+ countTextColor: string;
796
+ heightTiny: string;
797
+ heightSmall: string;
798
+ heightMedium: string;
799
+ heightLarge: string;
800
+ fontSizeTiny: string;
801
+ fontSizeSmall: string;
802
+ fontSizeMedium: string;
803
+ fontSizeLarge: string;
804
+ lineHeight: string;
805
+ lineHeightTextarea: string;
806
+ borderRadius: string;
807
+ iconSize: string;
808
+ groupLabelColor: string;
809
+ groupLabelTextColor: string;
810
+ textColor: string;
811
+ textColorDisabled: string;
812
+ textDecorationColor: string;
813
+ caretColor: string;
814
+ placeholderColor: string;
815
+ placeholderColorDisabled: string;
816
+ color: string;
817
+ colorDisabled: string;
818
+ colorFocus: string;
819
+ groupLabelBorder: string;
820
+ border: string;
821
+ borderHover: string;
822
+ borderDisabled: string;
823
+ borderFocus: string;
824
+ boxShadowFocus: string;
825
+ loadingColor: string;
826
+ loadingColorWarning: string;
827
+ borderWarning: string;
828
+ borderHoverWarning: string;
829
+ colorFocusWarning: string;
830
+ borderFocusWarning: string;
831
+ boxShadowFocusWarning: string;
832
+ caretColorWarning: string;
833
+ loadingColorError: string;
834
+ borderError: string;
835
+ borderHoverError: string;
836
+ colorFocusError: string;
837
+ borderFocusError: string;
838
+ boxShadowFocusError: string;
839
+ caretColorError: string;
840
+ clearColor: string;
841
+ clearColorHover: string;
842
+ clearColorPressed: string;
843
+ iconColor: string;
844
+ iconColorDisabled: string;
845
+ iconColorHover: string;
846
+ iconColorPressed: string;
847
+ suffixTextColor: string;
848
+ paddingTiny: string;
849
+ paddingSmall: string;
850
+ paddingMedium: string;
851
+ paddingLarge: string;
852
+ clearSize: string;
853
+ }, any>;
854
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
855
+ heightTiny: string;
856
+ heightSmall: string;
857
+ heightMedium: string;
858
+ heightLarge: string;
859
+ borderRadiusTiny: string;
860
+ borderRadiusSmall: string;
861
+ borderRadiusMedium: string;
862
+ borderRadiusLarge: string;
863
+ fontSizeTiny: string;
864
+ fontSizeSmall: string;
865
+ fontSizeMedium: string;
866
+ fontSizeLarge: string;
867
+ opacityDisabled: string;
868
+ colorOpacitySecondary: string;
869
+ colorOpacitySecondaryHover: string;
870
+ colorOpacitySecondaryPressed: string;
871
+ colorSecondary: string;
872
+ colorSecondaryHover: string;
873
+ colorSecondaryPressed: string;
874
+ colorTertiary: string;
875
+ colorTertiaryHover: string;
876
+ colorTertiaryPressed: string;
877
+ colorQuaternary: string;
878
+ colorQuaternaryHover: string;
879
+ colorQuaternaryPressed: string;
880
+ color: string;
881
+ colorHover: string;
882
+ colorPressed: string;
883
+ colorFocus: string;
884
+ colorDisabled: string;
885
+ textColor: string;
886
+ textColorTertiary: string;
887
+ textColorHover: string;
888
+ textColorPressed: string;
889
+ textColorFocus: string;
890
+ textColorDisabled: string;
891
+ textColorText: string;
892
+ textColorTextHover: string;
893
+ textColorTextPressed: string;
894
+ textColorTextFocus: string;
895
+ textColorTextDisabled: string;
896
+ textColorGhost: string;
897
+ textColorGhostHover: string;
898
+ textColorGhostPressed: string;
899
+ textColorGhostFocus: string;
900
+ textColorGhostDisabled: string;
901
+ border: string;
902
+ borderHover: string;
903
+ borderPressed: string;
904
+ borderFocus: string;
905
+ borderDisabled: string;
906
+ rippleColor: string;
907
+ colorPrimary: string;
908
+ colorHoverPrimary: string;
909
+ colorPressedPrimary: string;
910
+ colorFocusPrimary: string;
911
+ colorDisabledPrimary: string;
912
+ textColorPrimary: string;
913
+ textColorHoverPrimary: string;
914
+ textColorPressedPrimary: string;
915
+ textColorFocusPrimary: string;
916
+ textColorDisabledPrimary: string;
917
+ textColorTextPrimary: string;
918
+ textColorTextHoverPrimary: string;
919
+ textColorTextPressedPrimary: string;
920
+ textColorTextFocusPrimary: string;
921
+ textColorTextDisabledPrimary: string;
922
+ textColorGhostPrimary: string;
923
+ textColorGhostHoverPrimary: string;
924
+ textColorGhostPressedPrimary: string;
925
+ textColorGhostFocusPrimary: string;
926
+ textColorGhostDisabledPrimary: string;
927
+ borderPrimary: string;
928
+ borderHoverPrimary: string;
929
+ borderPressedPrimary: string;
930
+ borderFocusPrimary: string;
931
+ borderDisabledPrimary: string;
932
+ rippleColorPrimary: string;
933
+ colorInfo: string;
934
+ colorHoverInfo: string;
935
+ colorPressedInfo: string;
936
+ colorFocusInfo: string;
937
+ colorDisabledInfo: string;
938
+ textColorInfo: string;
939
+ textColorHoverInfo: string;
940
+ textColorPressedInfo: string;
941
+ textColorFocusInfo: string;
942
+ textColorDisabledInfo: string;
943
+ textColorTextInfo: string;
944
+ textColorTextHoverInfo: string;
945
+ textColorTextPressedInfo: string;
946
+ textColorTextFocusInfo: string;
947
+ textColorTextDisabledInfo: string;
948
+ textColorGhostInfo: string;
949
+ textColorGhostHoverInfo: string;
950
+ textColorGhostPressedInfo: string;
951
+ textColorGhostFocusInfo: string;
952
+ textColorGhostDisabledInfo: string;
953
+ borderInfo: string;
954
+ borderHoverInfo: string;
955
+ borderPressedInfo: string;
956
+ borderFocusInfo: string;
957
+ borderDisabledInfo: string;
958
+ rippleColorInfo: string;
959
+ colorSuccess: string;
960
+ colorHoverSuccess: string;
961
+ colorPressedSuccess: string;
962
+ colorFocusSuccess: string;
963
+ colorDisabledSuccess: string;
964
+ textColorSuccess: string;
965
+ textColorHoverSuccess: string;
966
+ textColorPressedSuccess: string;
967
+ textColorFocusSuccess: string;
968
+ textColorDisabledSuccess: string;
969
+ textColorTextSuccess: string;
970
+ textColorTextHoverSuccess: string;
971
+ textColorTextPressedSuccess: string;
972
+ textColorTextFocusSuccess: string;
973
+ textColorTextDisabledSuccess: string;
974
+ textColorGhostSuccess: string;
975
+ textColorGhostHoverSuccess: string;
976
+ textColorGhostPressedSuccess: string;
977
+ textColorGhostFocusSuccess: string;
978
+ textColorGhostDisabledSuccess: string;
979
+ borderSuccess: string;
980
+ borderHoverSuccess: string;
981
+ borderPressedSuccess: string;
982
+ borderFocusSuccess: string;
983
+ borderDisabledSuccess: string;
984
+ rippleColorSuccess: string;
985
+ colorWarning: string;
986
+ colorHoverWarning: string;
987
+ colorPressedWarning: string;
988
+ colorFocusWarning: string;
989
+ colorDisabledWarning: string;
990
+ textColorWarning: string;
991
+ textColorHoverWarning: string;
992
+ textColorPressedWarning: string;
993
+ textColorFocusWarning: string;
994
+ textColorDisabledWarning: string;
995
+ textColorTextWarning: string;
996
+ textColorTextHoverWarning: string;
997
+ textColorTextPressedWarning: string;
998
+ textColorTextFocusWarning: string;
999
+ textColorTextDisabledWarning: string;
1000
+ textColorGhostWarning: string;
1001
+ textColorGhostHoverWarning: string;
1002
+ textColorGhostPressedWarning: string;
1003
+ textColorGhostFocusWarning: string;
1004
+ textColorGhostDisabledWarning: string;
1005
+ borderWarning: string;
1006
+ borderHoverWarning: string;
1007
+ borderPressedWarning: string;
1008
+ borderFocusWarning: string;
1009
+ borderDisabledWarning: string;
1010
+ rippleColorWarning: string;
1011
+ colorError: string;
1012
+ colorHoverError: string;
1013
+ colorPressedError: string;
1014
+ colorFocusError: string;
1015
+ colorDisabledError: string;
1016
+ textColorError: string;
1017
+ textColorHoverError: string;
1018
+ textColorPressedError: string;
1019
+ textColorFocusError: string;
1020
+ textColorDisabledError: string;
1021
+ textColorTextError: string;
1022
+ textColorTextHoverError: string;
1023
+ textColorTextPressedError: string;
1024
+ textColorTextFocusError: string;
1025
+ textColorTextDisabledError: string;
1026
+ textColorGhostError: string;
1027
+ textColorGhostHoverError: string;
1028
+ textColorGhostPressedError: string;
1029
+ textColorGhostFocusError: string;
1030
+ textColorGhostDisabledError: string;
1031
+ borderError: string;
1032
+ borderHoverError: string;
1033
+ borderPressedError: string;
1034
+ borderFocusError: string;
1035
+ borderDisabledError: string;
1036
+ rippleColorError: string;
1037
+ waveOpacity: string;
1038
+ fontWeight: string;
1039
+ fontWeightStrong: string;
1040
+ paddingTiny: string;
1041
+ paddingSmall: string;
1042
+ paddingMedium: string;
1043
+ paddingLarge: string;
1044
+ paddingRoundTiny: string;
1045
+ paddingRoundSmall: string;
1046
+ paddingRoundMedium: string;
1047
+ paddingRoundLarge: string;
1048
+ iconMarginTiny: string;
1049
+ iconMarginSmall: string;
1050
+ iconMarginMedium: string;
1051
+ iconMarginLarge: string;
1052
+ iconSizeTiny: string;
1053
+ iconSizeSmall: string;
1054
+ iconSizeMedium: string;
1055
+ iconSizeLarge: string;
1056
+ rippleDuration: string;
1057
+ }, any>;
1058
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
1059
+ closeBorderRadius: string;
1060
+ heightTiny: string;
1061
+ heightSmall: string;
1062
+ heightMedium: string;
1063
+ heightLarge: string;
1064
+ borderRadius: string;
1065
+ opacityDisabled: string;
1066
+ fontSizeTiny: string;
1067
+ fontSizeSmall: string;
1068
+ fontSizeMedium: string;
1069
+ fontSizeLarge: string;
1070
+ fontWeightStrong: string;
1071
+ textColorCheckable: string;
1072
+ textColorHoverCheckable: string;
1073
+ textColorPressedCheckable: string;
1074
+ textColorChecked: string;
1075
+ colorCheckable: string;
1076
+ colorHoverCheckable: string;
1077
+ colorPressedCheckable: string;
1078
+ colorChecked: string;
1079
+ colorCheckedHover: string;
1080
+ colorCheckedPressed: string;
1081
+ border: string;
1082
+ textColor: string;
1083
+ color: string;
1084
+ colorBordered: string;
1085
+ closeIconColor: string;
1086
+ closeIconColorHover: string;
1087
+ closeIconColorPressed: string;
1088
+ closeColorHover: string;
1089
+ closeColorPressed: string;
1090
+ borderPrimary: string;
1091
+ textColorPrimary: string;
1092
+ colorPrimary: string;
1093
+ colorBorderedPrimary: string;
1094
+ closeIconColorPrimary: string;
1095
+ closeIconColorHoverPrimary: string;
1096
+ closeIconColorPressedPrimary: string;
1097
+ closeColorHoverPrimary: string;
1098
+ closeColorPressedPrimary: string;
1099
+ borderInfo: string;
1100
+ textColorInfo: string;
1101
+ colorInfo: string;
1102
+ colorBorderedInfo: string;
1103
+ closeIconColorInfo: string;
1104
+ closeIconColorHoverInfo: string;
1105
+ closeIconColorPressedInfo: string;
1106
+ closeColorHoverInfo: string;
1107
+ closeColorPressedInfo: string;
1108
+ borderSuccess: string;
1109
+ textColorSuccess: string;
1110
+ colorSuccess: string;
1111
+ colorBorderedSuccess: string;
1112
+ closeIconColorSuccess: string;
1113
+ closeIconColorHoverSuccess: string;
1114
+ closeIconColorPressedSuccess: string;
1115
+ closeColorHoverSuccess: string;
1116
+ closeColorPressedSuccess: string;
1117
+ borderWarning: string;
1118
+ textColorWarning: string;
1119
+ colorWarning: string;
1120
+ colorBorderedWarning: string;
1121
+ closeIconColorWarning: string;
1122
+ closeIconColorHoverWarning: string;
1123
+ closeIconColorPressedWarning: string;
1124
+ closeColorHoverWarning: string;
1125
+ closeColorPressedWarning: string;
1126
+ borderError: string;
1127
+ textColorError: string;
1128
+ colorError: string;
1129
+ colorBorderedError: string;
1130
+ closeIconColorError: string;
1131
+ closeIconColorHoverError: string;
1132
+ closeIconColorPressedError: string;
1133
+ closeColorHoverError: string;
1134
+ closeColorPressedError: string;
1135
+ closeIconSizeTiny: string;
1136
+ closeIconSizeSmall: string;
1137
+ closeIconSizeMedium: string;
1138
+ closeIconSizeLarge: string;
1139
+ closeSizeTiny: string;
1140
+ closeSizeSmall: string;
1141
+ closeSizeMedium: string;
1142
+ closeSizeLarge: string;
1143
+ padding: string;
1144
+ closeMargin: string;
1145
+ }, any>;
1146
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
1147
+ gapSmall: string;
1148
+ gapMedium: string;
1149
+ gapLarge: string;
1150
+ }, any>;
1151
+ }>>>;
1152
+ }>> & Readonly<{}>, {
1153
+ mergedClsPrefix: import('vue').Ref<string, string>;
1154
+ inputInstRef: import('vue').Ref<{
1155
+ wrapperElRef: HTMLElement | null;
1156
+ textareaElRef: HTMLTextAreaElement | null;
1157
+ inputElRef: HTMLInputElement | null;
1158
+ isCompositing: boolean;
1159
+ blur: () => void;
1160
+ clear: () => void;
1161
+ focus: () => void;
1162
+ select: () => void;
1163
+ activate: () => void;
1164
+ deactivate: () => void;
1165
+ scrollTo: (options: ScrollToOptions) => void;
1166
+ } | null, {
1167
+ wrapperElRef: HTMLElement | null;
1168
+ textareaElRef: HTMLTextAreaElement | null;
1169
+ inputElRef: HTMLInputElement | null;
1170
+ isCompositing: boolean;
1171
+ blur: () => void;
1172
+ clear: () => void;
1173
+ focus: () => void;
1174
+ select: () => void;
1175
+ activate: () => void;
1176
+ deactivate: () => void;
1177
+ scrollTo: (options: ScrollToOptions) => void;
1178
+ } | {
1179
+ wrapperElRef: HTMLElement | null;
1180
+ textareaElRef: HTMLTextAreaElement | null;
1181
+ inputElRef: HTMLInputElement | null;
1182
+ isCompositing: boolean;
1183
+ blur: () => void;
1184
+ clear: () => void;
1185
+ focus: () => void;
1186
+ select: () => void;
1187
+ activate: () => void;
1188
+ deactivate: () => void;
1189
+ scrollTo: (options: ScrollToOptions) => void;
1190
+ } | null>;
1191
+ localizedAdd: import('vue').ComputedRef<string>;
1192
+ inputSize: import('vue').ComputedRef<"small" | "medium" | "tiny">;
1193
+ inputValue: import('vue').Ref<string, string>;
1194
+ showInput: import('vue').Ref<boolean, boolean>;
1195
+ inputForceFocused: import('vue').Ref<boolean, boolean>;
1196
+ mergedValue: import('vue').ComputedRef<(string | import('naive-ui').DynamicTagsOption)[] | (string | {
1197
+ label: string;
1198
+ value: string;
1199
+ })[]>;
1200
+ mergedDisabled: import('vue').ComputedRef<boolean>;
1201
+ triggerDisabled: import('vue').ComputedRef<boolean>;
1202
+ handleInputKeyDown: (e: KeyboardEvent) => void;
1203
+ handleAddClick: () => void;
1204
+ handleInputBlur: () => void;
1205
+ handleCloseClick: (index: number) => void;
1206
+ handleInputConfirm: (externalValue?: string) => void;
1207
+ mergedTheme: import('vue').ComputedRef<{
1208
+ common: import('naive-ui').ThemeCommonVars;
1209
+ self: {
1210
+ inputWidth: string;
1211
+ };
1212
+ peers: {
1213
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
1214
+ fontWeight: string;
1215
+ countTextColorDisabled: string;
1216
+ countTextColor: string;
1217
+ heightTiny: string;
1218
+ heightSmall: string;
1219
+ heightMedium: string;
1220
+ heightLarge: string;
1221
+ fontSizeTiny: string;
1222
+ fontSizeSmall: string;
1223
+ fontSizeMedium: string;
1224
+ fontSizeLarge: string;
1225
+ lineHeight: string;
1226
+ lineHeightTextarea: string;
1227
+ borderRadius: string;
1228
+ iconSize: string;
1229
+ groupLabelColor: string;
1230
+ groupLabelTextColor: string;
1231
+ textColor: string;
1232
+ textColorDisabled: string;
1233
+ textDecorationColor: string;
1234
+ caretColor: string;
1235
+ placeholderColor: string;
1236
+ placeholderColorDisabled: string;
1237
+ color: string;
1238
+ colorDisabled: string;
1239
+ colorFocus: string;
1240
+ groupLabelBorder: string;
1241
+ border: string;
1242
+ borderHover: string;
1243
+ borderDisabled: string;
1244
+ borderFocus: string;
1245
+ boxShadowFocus: string;
1246
+ loadingColor: string;
1247
+ loadingColorWarning: string;
1248
+ borderWarning: string;
1249
+ borderHoverWarning: string;
1250
+ colorFocusWarning: string;
1251
+ borderFocusWarning: string;
1252
+ boxShadowFocusWarning: string;
1253
+ caretColorWarning: string;
1254
+ loadingColorError: string;
1255
+ borderError: string;
1256
+ borderHoverError: string;
1257
+ colorFocusError: string;
1258
+ borderFocusError: string;
1259
+ boxShadowFocusError: string;
1260
+ caretColorError: string;
1261
+ clearColor: string;
1262
+ clearColorHover: string;
1263
+ clearColorPressed: string;
1264
+ iconColor: string;
1265
+ iconColorDisabled: string;
1266
+ iconColorHover: string;
1267
+ iconColorPressed: string;
1268
+ suffixTextColor: string;
1269
+ paddingTiny: string;
1270
+ paddingSmall: string;
1271
+ paddingMedium: string;
1272
+ paddingLarge: string;
1273
+ clearSize: string;
1274
+ }, any>;
1275
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1276
+ heightTiny: string;
1277
+ heightSmall: string;
1278
+ heightMedium: string;
1279
+ heightLarge: string;
1280
+ borderRadiusTiny: string;
1281
+ borderRadiusSmall: string;
1282
+ borderRadiusMedium: string;
1283
+ borderRadiusLarge: string;
1284
+ fontSizeTiny: string;
1285
+ fontSizeSmall: string;
1286
+ fontSizeMedium: string;
1287
+ fontSizeLarge: string;
1288
+ opacityDisabled: string;
1289
+ colorOpacitySecondary: string;
1290
+ colorOpacitySecondaryHover: string;
1291
+ colorOpacitySecondaryPressed: string;
1292
+ colorSecondary: string;
1293
+ colorSecondaryHover: string;
1294
+ colorSecondaryPressed: string;
1295
+ colorTertiary: string;
1296
+ colorTertiaryHover: string;
1297
+ colorTertiaryPressed: string;
1298
+ colorQuaternary: string;
1299
+ colorQuaternaryHover: string;
1300
+ colorQuaternaryPressed: string;
1301
+ color: string;
1302
+ colorHover: string;
1303
+ colorPressed: string;
1304
+ colorFocus: string;
1305
+ colorDisabled: string;
1306
+ textColor: string;
1307
+ textColorTertiary: string;
1308
+ textColorHover: string;
1309
+ textColorPressed: string;
1310
+ textColorFocus: string;
1311
+ textColorDisabled: string;
1312
+ textColorText: string;
1313
+ textColorTextHover: string;
1314
+ textColorTextPressed: string;
1315
+ textColorTextFocus: string;
1316
+ textColorTextDisabled: string;
1317
+ textColorGhost: string;
1318
+ textColorGhostHover: string;
1319
+ textColorGhostPressed: string;
1320
+ textColorGhostFocus: string;
1321
+ textColorGhostDisabled: string;
1322
+ border: string;
1323
+ borderHover: string;
1324
+ borderPressed: string;
1325
+ borderFocus: string;
1326
+ borderDisabled: string;
1327
+ rippleColor: string;
1328
+ colorPrimary: string;
1329
+ colorHoverPrimary: string;
1330
+ colorPressedPrimary: string;
1331
+ colorFocusPrimary: string;
1332
+ colorDisabledPrimary: string;
1333
+ textColorPrimary: string;
1334
+ textColorHoverPrimary: string;
1335
+ textColorPressedPrimary: string;
1336
+ textColorFocusPrimary: string;
1337
+ textColorDisabledPrimary: string;
1338
+ textColorTextPrimary: string;
1339
+ textColorTextHoverPrimary: string;
1340
+ textColorTextPressedPrimary: string;
1341
+ textColorTextFocusPrimary: string;
1342
+ textColorTextDisabledPrimary: string;
1343
+ textColorGhostPrimary: string;
1344
+ textColorGhostHoverPrimary: string;
1345
+ textColorGhostPressedPrimary: string;
1346
+ textColorGhostFocusPrimary: string;
1347
+ textColorGhostDisabledPrimary: string;
1348
+ borderPrimary: string;
1349
+ borderHoverPrimary: string;
1350
+ borderPressedPrimary: string;
1351
+ borderFocusPrimary: string;
1352
+ borderDisabledPrimary: string;
1353
+ rippleColorPrimary: string;
1354
+ colorInfo: string;
1355
+ colorHoverInfo: string;
1356
+ colorPressedInfo: string;
1357
+ colorFocusInfo: string;
1358
+ colorDisabledInfo: string;
1359
+ textColorInfo: string;
1360
+ textColorHoverInfo: string;
1361
+ textColorPressedInfo: string;
1362
+ textColorFocusInfo: string;
1363
+ textColorDisabledInfo: string;
1364
+ textColorTextInfo: string;
1365
+ textColorTextHoverInfo: string;
1366
+ textColorTextPressedInfo: string;
1367
+ textColorTextFocusInfo: string;
1368
+ textColorTextDisabledInfo: string;
1369
+ textColorGhostInfo: string;
1370
+ textColorGhostHoverInfo: string;
1371
+ textColorGhostPressedInfo: string;
1372
+ textColorGhostFocusInfo: string;
1373
+ textColorGhostDisabledInfo: string;
1374
+ borderInfo: string;
1375
+ borderHoverInfo: string;
1376
+ borderPressedInfo: string;
1377
+ borderFocusInfo: string;
1378
+ borderDisabledInfo: string;
1379
+ rippleColorInfo: string;
1380
+ colorSuccess: string;
1381
+ colorHoverSuccess: string;
1382
+ colorPressedSuccess: string;
1383
+ colorFocusSuccess: string;
1384
+ colorDisabledSuccess: string;
1385
+ textColorSuccess: string;
1386
+ textColorHoverSuccess: string;
1387
+ textColorPressedSuccess: string;
1388
+ textColorFocusSuccess: string;
1389
+ textColorDisabledSuccess: string;
1390
+ textColorTextSuccess: string;
1391
+ textColorTextHoverSuccess: string;
1392
+ textColorTextPressedSuccess: string;
1393
+ textColorTextFocusSuccess: string;
1394
+ textColorTextDisabledSuccess: string;
1395
+ textColorGhostSuccess: string;
1396
+ textColorGhostHoverSuccess: string;
1397
+ textColorGhostPressedSuccess: string;
1398
+ textColorGhostFocusSuccess: string;
1399
+ textColorGhostDisabledSuccess: string;
1400
+ borderSuccess: string;
1401
+ borderHoverSuccess: string;
1402
+ borderPressedSuccess: string;
1403
+ borderFocusSuccess: string;
1404
+ borderDisabledSuccess: string;
1405
+ rippleColorSuccess: string;
1406
+ colorWarning: string;
1407
+ colorHoverWarning: string;
1408
+ colorPressedWarning: string;
1409
+ colorFocusWarning: string;
1410
+ colorDisabledWarning: string;
1411
+ textColorWarning: string;
1412
+ textColorHoverWarning: string;
1413
+ textColorPressedWarning: string;
1414
+ textColorFocusWarning: string;
1415
+ textColorDisabledWarning: string;
1416
+ textColorTextWarning: string;
1417
+ textColorTextHoverWarning: string;
1418
+ textColorTextPressedWarning: string;
1419
+ textColorTextFocusWarning: string;
1420
+ textColorTextDisabledWarning: string;
1421
+ textColorGhostWarning: string;
1422
+ textColorGhostHoverWarning: string;
1423
+ textColorGhostPressedWarning: string;
1424
+ textColorGhostFocusWarning: string;
1425
+ textColorGhostDisabledWarning: string;
1426
+ borderWarning: string;
1427
+ borderHoverWarning: string;
1428
+ borderPressedWarning: string;
1429
+ borderFocusWarning: string;
1430
+ borderDisabledWarning: string;
1431
+ rippleColorWarning: string;
1432
+ colorError: string;
1433
+ colorHoverError: string;
1434
+ colorPressedError: string;
1435
+ colorFocusError: string;
1436
+ colorDisabledError: string;
1437
+ textColorError: string;
1438
+ textColorHoverError: string;
1439
+ textColorPressedError: string;
1440
+ textColorFocusError: string;
1441
+ textColorDisabledError: string;
1442
+ textColorTextError: string;
1443
+ textColorTextHoverError: string;
1444
+ textColorTextPressedError: string;
1445
+ textColorTextFocusError: string;
1446
+ textColorTextDisabledError: string;
1447
+ textColorGhostError: string;
1448
+ textColorGhostHoverError: string;
1449
+ textColorGhostPressedError: string;
1450
+ textColorGhostFocusError: string;
1451
+ textColorGhostDisabledError: string;
1452
+ borderError: string;
1453
+ borderHoverError: string;
1454
+ borderPressedError: string;
1455
+ borderFocusError: string;
1456
+ borderDisabledError: string;
1457
+ rippleColorError: string;
1458
+ waveOpacity: string;
1459
+ fontWeight: string;
1460
+ fontWeightStrong: string;
1461
+ paddingTiny: string;
1462
+ paddingSmall: string;
1463
+ paddingMedium: string;
1464
+ paddingLarge: string;
1465
+ paddingRoundTiny: string;
1466
+ paddingRoundSmall: string;
1467
+ paddingRoundMedium: string;
1468
+ paddingRoundLarge: string;
1469
+ iconMarginTiny: string;
1470
+ iconMarginSmall: string;
1471
+ iconMarginMedium: string;
1472
+ iconMarginLarge: string;
1473
+ iconSizeTiny: string;
1474
+ iconSizeSmall: string;
1475
+ iconSizeMedium: string;
1476
+ iconSizeLarge: string;
1477
+ rippleDuration: string;
1478
+ }, any>;
1479
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
1480
+ closeBorderRadius: string;
1481
+ heightTiny: string;
1482
+ heightSmall: string;
1483
+ heightMedium: string;
1484
+ heightLarge: string;
1485
+ borderRadius: string;
1486
+ opacityDisabled: string;
1487
+ fontSizeTiny: string;
1488
+ fontSizeSmall: string;
1489
+ fontSizeMedium: string;
1490
+ fontSizeLarge: string;
1491
+ fontWeightStrong: string;
1492
+ textColorCheckable: string;
1493
+ textColorHoverCheckable: string;
1494
+ textColorPressedCheckable: string;
1495
+ textColorChecked: string;
1496
+ colorCheckable: string;
1497
+ colorHoverCheckable: string;
1498
+ colorPressedCheckable: string;
1499
+ colorChecked: string;
1500
+ colorCheckedHover: string;
1501
+ colorCheckedPressed: string;
1502
+ border: string;
1503
+ textColor: string;
1504
+ color: string;
1505
+ colorBordered: string;
1506
+ closeIconColor: string;
1507
+ closeIconColorHover: string;
1508
+ closeIconColorPressed: string;
1509
+ closeColorHover: string;
1510
+ closeColorPressed: string;
1511
+ borderPrimary: string;
1512
+ textColorPrimary: string;
1513
+ colorPrimary: string;
1514
+ colorBorderedPrimary: string;
1515
+ closeIconColorPrimary: string;
1516
+ closeIconColorHoverPrimary: string;
1517
+ closeIconColorPressedPrimary: string;
1518
+ closeColorHoverPrimary: string;
1519
+ closeColorPressedPrimary: string;
1520
+ borderInfo: string;
1521
+ textColorInfo: string;
1522
+ colorInfo: string;
1523
+ colorBorderedInfo: string;
1524
+ closeIconColorInfo: string;
1525
+ closeIconColorHoverInfo: string;
1526
+ closeIconColorPressedInfo: string;
1527
+ closeColorHoverInfo: string;
1528
+ closeColorPressedInfo: string;
1529
+ borderSuccess: string;
1530
+ textColorSuccess: string;
1531
+ colorSuccess: string;
1532
+ colorBorderedSuccess: string;
1533
+ closeIconColorSuccess: string;
1534
+ closeIconColorHoverSuccess: string;
1535
+ closeIconColorPressedSuccess: string;
1536
+ closeColorHoverSuccess: string;
1537
+ closeColorPressedSuccess: string;
1538
+ borderWarning: string;
1539
+ textColorWarning: string;
1540
+ colorWarning: string;
1541
+ colorBorderedWarning: string;
1542
+ closeIconColorWarning: string;
1543
+ closeIconColorHoverWarning: string;
1544
+ closeIconColorPressedWarning: string;
1545
+ closeColorHoverWarning: string;
1546
+ closeColorPressedWarning: string;
1547
+ borderError: string;
1548
+ textColorError: string;
1549
+ colorError: string;
1550
+ colorBorderedError: string;
1551
+ closeIconColorError: string;
1552
+ closeIconColorHoverError: string;
1553
+ closeIconColorPressedError: string;
1554
+ closeColorHoverError: string;
1555
+ closeColorPressedError: string;
1556
+ closeIconSizeTiny: string;
1557
+ closeIconSizeSmall: string;
1558
+ closeIconSizeMedium: string;
1559
+ closeIconSizeLarge: string;
1560
+ closeSizeTiny: string;
1561
+ closeSizeSmall: string;
1562
+ closeSizeMedium: string;
1563
+ closeSizeLarge: string;
1564
+ padding: string;
1565
+ closeMargin: string;
1566
+ }, any>;
1567
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
1568
+ gapSmall: string;
1569
+ gapMedium: string;
1570
+ gapLarge: string;
1571
+ }, any>;
1572
+ };
1573
+ peerOverrides: {
1574
+ Input?: {
1575
+ peers?: {
1576
+ [x: string]: any;
1577
+ } | undefined;
1578
+ } | undefined;
1579
+ Button?: {
1580
+ peers?: {
1581
+ [x: string]: any;
1582
+ } | undefined;
1583
+ } | undefined;
1584
+ Tag?: {
1585
+ peers?: {
1586
+ [x: string]: any;
1587
+ } | undefined;
1588
+ } | undefined;
1589
+ Space?: {
1590
+ peers?: {
1591
+ [x: string]: any;
1592
+ } | undefined;
1593
+ } | undefined;
1594
+ };
1595
+ }>;
1596
+ cssVars: import('vue').ComputedRef<{
1597
+ "--n-input-width": string;
1598
+ }> | undefined;
1599
+ themeClass: import('vue').Ref<string, string> | undefined;
1600
+ onRender: (() => void) | undefined;
1601
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1602
+ type: "error" | "default" | "primary" | "info" | "success" | "warning";
1603
+ size: "small" | "medium" | "large";
1604
+ disabled: boolean | undefined;
1605
+ round: boolean;
1606
+ closable: boolean;
1607
+ defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
1608
+ onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
1609
+ }, true, {}, import('vue').SlotsType<import('naive-ui').DynamicTagsSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1610
+ P: {};
1611
+ B: {};
1612
+ D: {};
1613
+ C: {};
1614
+ M: {};
1615
+ Defaults: {};
1616
+ }, Readonly<import('vue').ExtractPropTypes<{
1617
+ size: {
1618
+ type: import('vue').PropType<"small" | "medium" | "large">;
1619
+ default: string;
1620
+ };
1621
+ closable: {
1622
+ type: BooleanConstructor;
1623
+ default: boolean;
1624
+ };
1625
+ defaultValue: {
1626
+ type: import('vue').PropType<Array<string | import('naive-ui').DynamicTagsOption>>;
1627
+ default: () => never[];
1628
+ };
1629
+ value: import('vue').PropType<Array<string | import('naive-ui').DynamicTagsOption>>;
1630
+ inputClass: StringConstructor;
1631
+ inputStyle: import('vue').PropType<string | import('vue').CSSProperties>;
1632
+ inputProps: import('vue').PropType<import('naive-ui').InputProps>;
1633
+ max: import('vue').PropType<number>;
1634
+ tagClass: StringConstructor;
1635
+ tagStyle: import('vue').PropType<string | import('vue').CSSProperties>;
1636
+ renderTag: import('vue').PropType<((tag: string, index: number) => import('vue').VNodeChild) | ((tag: import('naive-ui').DynamicTagsOption, index: number) => import('vue').VNodeChild)>;
1637
+ onCreate: {
1638
+ type: import('vue').PropType<import('naive-ui/es/dynamic-tags/src/interface').OnCreate>;
1639
+ default: (label: string) => string;
1640
+ };
1641
+ 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue>>;
1642
+ onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue>>;
1643
+ onChange: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/dynamic-tags/src/interface').OnUpdateValue> | undefined>;
1644
+ color: import('vue').PropType<import('naive-ui/es/tag/src/common-props').TagColor>;
1645
+ type: {
1646
+ readonly type: import('vue').PropType<"default" | "primary" | "success" | "info" | "warning" | "error">;
1647
+ readonly default: "default";
1648
+ };
1649
+ round: BooleanConstructor;
1650
+ disabled: {
1651
+ readonly type: import('vue').PropType<boolean | undefined>;
1652
+ readonly default: undefined;
1653
+ };
1654
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
1655
+ inputWidth: string;
1656
+ }, {
1657
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
1658
+ fontWeight: string;
1659
+ countTextColorDisabled: string;
1660
+ countTextColor: string;
1661
+ heightTiny: string;
1662
+ heightSmall: string;
1663
+ heightMedium: string;
1664
+ heightLarge: string;
1665
+ fontSizeTiny: string;
1666
+ fontSizeSmall: string;
1667
+ fontSizeMedium: string;
1668
+ fontSizeLarge: string;
1669
+ lineHeight: string;
1670
+ lineHeightTextarea: string;
1671
+ borderRadius: string;
1672
+ iconSize: string;
1673
+ groupLabelColor: string;
1674
+ groupLabelTextColor: string;
1675
+ textColor: string;
1676
+ textColorDisabled: string;
1677
+ textDecorationColor: string;
1678
+ caretColor: string;
1679
+ placeholderColor: string;
1680
+ placeholderColorDisabled: string;
1681
+ color: string;
1682
+ colorDisabled: string;
1683
+ colorFocus: string;
1684
+ groupLabelBorder: string;
1685
+ border: string;
1686
+ borderHover: string;
1687
+ borderDisabled: string;
1688
+ borderFocus: string;
1689
+ boxShadowFocus: string;
1690
+ loadingColor: string;
1691
+ loadingColorWarning: string;
1692
+ borderWarning: string;
1693
+ borderHoverWarning: string;
1694
+ colorFocusWarning: string;
1695
+ borderFocusWarning: string;
1696
+ boxShadowFocusWarning: string;
1697
+ caretColorWarning: string;
1698
+ loadingColorError: string;
1699
+ borderError: string;
1700
+ borderHoverError: string;
1701
+ colorFocusError: string;
1702
+ borderFocusError: string;
1703
+ boxShadowFocusError: string;
1704
+ caretColorError: string;
1705
+ clearColor: string;
1706
+ clearColorHover: string;
1707
+ clearColorPressed: string;
1708
+ iconColor: string;
1709
+ iconColorDisabled: string;
1710
+ iconColorHover: string;
1711
+ iconColorPressed: string;
1712
+ suffixTextColor: string;
1713
+ paddingTiny: string;
1714
+ paddingSmall: string;
1715
+ paddingMedium: string;
1716
+ paddingLarge: string;
1717
+ clearSize: string;
1718
+ }, any>;
1719
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1720
+ heightTiny: string;
1721
+ heightSmall: string;
1722
+ heightMedium: string;
1723
+ heightLarge: string;
1724
+ borderRadiusTiny: string;
1725
+ borderRadiusSmall: string;
1726
+ borderRadiusMedium: string;
1727
+ borderRadiusLarge: string;
1728
+ fontSizeTiny: string;
1729
+ fontSizeSmall: string;
1730
+ fontSizeMedium: string;
1731
+ fontSizeLarge: string;
1732
+ opacityDisabled: string;
1733
+ colorOpacitySecondary: string;
1734
+ colorOpacitySecondaryHover: string;
1735
+ colorOpacitySecondaryPressed: string;
1736
+ colorSecondary: string;
1737
+ colorSecondaryHover: string;
1738
+ colorSecondaryPressed: string;
1739
+ colorTertiary: string;
1740
+ colorTertiaryHover: string;
1741
+ colorTertiaryPressed: string;
1742
+ colorQuaternary: string;
1743
+ colorQuaternaryHover: string;
1744
+ colorQuaternaryPressed: string;
1745
+ color: string;
1746
+ colorHover: string;
1747
+ colorPressed: string;
1748
+ colorFocus: string;
1749
+ colorDisabled: string;
1750
+ textColor: string;
1751
+ textColorTertiary: string;
1752
+ textColorHover: string;
1753
+ textColorPressed: string;
1754
+ textColorFocus: string;
1755
+ textColorDisabled: string;
1756
+ textColorText: string;
1757
+ textColorTextHover: string;
1758
+ textColorTextPressed: string;
1759
+ textColorTextFocus: string;
1760
+ textColorTextDisabled: string;
1761
+ textColorGhost: string;
1762
+ textColorGhostHover: string;
1763
+ textColorGhostPressed: string;
1764
+ textColorGhostFocus: string;
1765
+ textColorGhostDisabled: string;
1766
+ border: string;
1767
+ borderHover: string;
1768
+ borderPressed: string;
1769
+ borderFocus: string;
1770
+ borderDisabled: string;
1771
+ rippleColor: string;
1772
+ colorPrimary: string;
1773
+ colorHoverPrimary: string;
1774
+ colorPressedPrimary: string;
1775
+ colorFocusPrimary: string;
1776
+ colorDisabledPrimary: string;
1777
+ textColorPrimary: string;
1778
+ textColorHoverPrimary: string;
1779
+ textColorPressedPrimary: string;
1780
+ textColorFocusPrimary: string;
1781
+ textColorDisabledPrimary: string;
1782
+ textColorTextPrimary: string;
1783
+ textColorTextHoverPrimary: string;
1784
+ textColorTextPressedPrimary: string;
1785
+ textColorTextFocusPrimary: string;
1786
+ textColorTextDisabledPrimary: string;
1787
+ textColorGhostPrimary: string;
1788
+ textColorGhostHoverPrimary: string;
1789
+ textColorGhostPressedPrimary: string;
1790
+ textColorGhostFocusPrimary: string;
1791
+ textColorGhostDisabledPrimary: string;
1792
+ borderPrimary: string;
1793
+ borderHoverPrimary: string;
1794
+ borderPressedPrimary: string;
1795
+ borderFocusPrimary: string;
1796
+ borderDisabledPrimary: string;
1797
+ rippleColorPrimary: string;
1798
+ colorInfo: string;
1799
+ colorHoverInfo: string;
1800
+ colorPressedInfo: string;
1801
+ colorFocusInfo: string;
1802
+ colorDisabledInfo: string;
1803
+ textColorInfo: string;
1804
+ textColorHoverInfo: string;
1805
+ textColorPressedInfo: string;
1806
+ textColorFocusInfo: string;
1807
+ textColorDisabledInfo: string;
1808
+ textColorTextInfo: string;
1809
+ textColorTextHoverInfo: string;
1810
+ textColorTextPressedInfo: string;
1811
+ textColorTextFocusInfo: string;
1812
+ textColorTextDisabledInfo: string;
1813
+ textColorGhostInfo: string;
1814
+ textColorGhostHoverInfo: string;
1815
+ textColorGhostPressedInfo: string;
1816
+ textColorGhostFocusInfo: string;
1817
+ textColorGhostDisabledInfo: string;
1818
+ borderInfo: string;
1819
+ borderHoverInfo: string;
1820
+ borderPressedInfo: string;
1821
+ borderFocusInfo: string;
1822
+ borderDisabledInfo: string;
1823
+ rippleColorInfo: string;
1824
+ colorSuccess: string;
1825
+ colorHoverSuccess: string;
1826
+ colorPressedSuccess: string;
1827
+ colorFocusSuccess: string;
1828
+ colorDisabledSuccess: string;
1829
+ textColorSuccess: string;
1830
+ textColorHoverSuccess: string;
1831
+ textColorPressedSuccess: string;
1832
+ textColorFocusSuccess: string;
1833
+ textColorDisabledSuccess: string;
1834
+ textColorTextSuccess: string;
1835
+ textColorTextHoverSuccess: string;
1836
+ textColorTextPressedSuccess: string;
1837
+ textColorTextFocusSuccess: string;
1838
+ textColorTextDisabledSuccess: string;
1839
+ textColorGhostSuccess: string;
1840
+ textColorGhostHoverSuccess: string;
1841
+ textColorGhostPressedSuccess: string;
1842
+ textColorGhostFocusSuccess: string;
1843
+ textColorGhostDisabledSuccess: string;
1844
+ borderSuccess: string;
1845
+ borderHoverSuccess: string;
1846
+ borderPressedSuccess: string;
1847
+ borderFocusSuccess: string;
1848
+ borderDisabledSuccess: string;
1849
+ rippleColorSuccess: string;
1850
+ colorWarning: string;
1851
+ colorHoverWarning: string;
1852
+ colorPressedWarning: string;
1853
+ colorFocusWarning: string;
1854
+ colorDisabledWarning: string;
1855
+ textColorWarning: string;
1856
+ textColorHoverWarning: string;
1857
+ textColorPressedWarning: string;
1858
+ textColorFocusWarning: string;
1859
+ textColorDisabledWarning: string;
1860
+ textColorTextWarning: string;
1861
+ textColorTextHoverWarning: string;
1862
+ textColorTextPressedWarning: string;
1863
+ textColorTextFocusWarning: string;
1864
+ textColorTextDisabledWarning: string;
1865
+ textColorGhostWarning: string;
1866
+ textColorGhostHoverWarning: string;
1867
+ textColorGhostPressedWarning: string;
1868
+ textColorGhostFocusWarning: string;
1869
+ textColorGhostDisabledWarning: string;
1870
+ borderWarning: string;
1871
+ borderHoverWarning: string;
1872
+ borderPressedWarning: string;
1873
+ borderFocusWarning: string;
1874
+ borderDisabledWarning: string;
1875
+ rippleColorWarning: string;
1876
+ colorError: string;
1877
+ colorHoverError: string;
1878
+ colorPressedError: string;
1879
+ colorFocusError: string;
1880
+ colorDisabledError: string;
1881
+ textColorError: string;
1882
+ textColorHoverError: string;
1883
+ textColorPressedError: string;
1884
+ textColorFocusError: string;
1885
+ textColorDisabledError: string;
1886
+ textColorTextError: string;
1887
+ textColorTextHoverError: string;
1888
+ textColorTextPressedError: string;
1889
+ textColorTextFocusError: string;
1890
+ textColorTextDisabledError: string;
1891
+ textColorGhostError: string;
1892
+ textColorGhostHoverError: string;
1893
+ textColorGhostPressedError: string;
1894
+ textColorGhostFocusError: string;
1895
+ textColorGhostDisabledError: string;
1896
+ borderError: string;
1897
+ borderHoverError: string;
1898
+ borderPressedError: string;
1899
+ borderFocusError: string;
1900
+ borderDisabledError: string;
1901
+ rippleColorError: string;
1902
+ waveOpacity: string;
1903
+ fontWeight: string;
1904
+ fontWeightStrong: string;
1905
+ paddingTiny: string;
1906
+ paddingSmall: string;
1907
+ paddingMedium: string;
1908
+ paddingLarge: string;
1909
+ paddingRoundTiny: string;
1910
+ paddingRoundSmall: string;
1911
+ paddingRoundMedium: string;
1912
+ paddingRoundLarge: string;
1913
+ iconMarginTiny: string;
1914
+ iconMarginSmall: string;
1915
+ iconMarginMedium: string;
1916
+ iconMarginLarge: string;
1917
+ iconSizeTiny: string;
1918
+ iconSizeSmall: string;
1919
+ iconSizeMedium: string;
1920
+ iconSizeLarge: string;
1921
+ rippleDuration: string;
1922
+ }, any>;
1923
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
1924
+ closeBorderRadius: string;
1925
+ heightTiny: string;
1926
+ heightSmall: string;
1927
+ heightMedium: string;
1928
+ heightLarge: string;
1929
+ borderRadius: string;
1930
+ opacityDisabled: string;
1931
+ fontSizeTiny: string;
1932
+ fontSizeSmall: string;
1933
+ fontSizeMedium: string;
1934
+ fontSizeLarge: string;
1935
+ fontWeightStrong: string;
1936
+ textColorCheckable: string;
1937
+ textColorHoverCheckable: string;
1938
+ textColorPressedCheckable: string;
1939
+ textColorChecked: string;
1940
+ colorCheckable: string;
1941
+ colorHoverCheckable: string;
1942
+ colorPressedCheckable: string;
1943
+ colorChecked: string;
1944
+ colorCheckedHover: string;
1945
+ colorCheckedPressed: string;
1946
+ border: string;
1947
+ textColor: string;
1948
+ color: string;
1949
+ colorBordered: string;
1950
+ closeIconColor: string;
1951
+ closeIconColorHover: string;
1952
+ closeIconColorPressed: string;
1953
+ closeColorHover: string;
1954
+ closeColorPressed: string;
1955
+ borderPrimary: string;
1956
+ textColorPrimary: string;
1957
+ colorPrimary: string;
1958
+ colorBorderedPrimary: string;
1959
+ closeIconColorPrimary: string;
1960
+ closeIconColorHoverPrimary: string;
1961
+ closeIconColorPressedPrimary: string;
1962
+ closeColorHoverPrimary: string;
1963
+ closeColorPressedPrimary: string;
1964
+ borderInfo: string;
1965
+ textColorInfo: string;
1966
+ colorInfo: string;
1967
+ colorBorderedInfo: string;
1968
+ closeIconColorInfo: string;
1969
+ closeIconColorHoverInfo: string;
1970
+ closeIconColorPressedInfo: string;
1971
+ closeColorHoverInfo: string;
1972
+ closeColorPressedInfo: string;
1973
+ borderSuccess: string;
1974
+ textColorSuccess: string;
1975
+ colorSuccess: string;
1976
+ colorBorderedSuccess: string;
1977
+ closeIconColorSuccess: string;
1978
+ closeIconColorHoverSuccess: string;
1979
+ closeIconColorPressedSuccess: string;
1980
+ closeColorHoverSuccess: string;
1981
+ closeColorPressedSuccess: string;
1982
+ borderWarning: string;
1983
+ textColorWarning: string;
1984
+ colorWarning: string;
1985
+ colorBorderedWarning: string;
1986
+ closeIconColorWarning: string;
1987
+ closeIconColorHoverWarning: string;
1988
+ closeIconColorPressedWarning: string;
1989
+ closeColorHoverWarning: string;
1990
+ closeColorPressedWarning: string;
1991
+ borderError: string;
1992
+ textColorError: string;
1993
+ colorError: string;
1994
+ colorBorderedError: string;
1995
+ closeIconColorError: string;
1996
+ closeIconColorHoverError: string;
1997
+ closeIconColorPressedError: string;
1998
+ closeColorHoverError: string;
1999
+ closeColorPressedError: string;
2000
+ closeIconSizeTiny: string;
2001
+ closeIconSizeSmall: string;
2002
+ closeIconSizeMedium: string;
2003
+ closeIconSizeLarge: string;
2004
+ closeSizeTiny: string;
2005
+ closeSizeSmall: string;
2006
+ closeSizeMedium: string;
2007
+ closeSizeLarge: string;
2008
+ padding: string;
2009
+ closeMargin: string;
2010
+ }, any>;
2011
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
2012
+ gapSmall: string;
2013
+ gapMedium: string;
2014
+ gapLarge: string;
2015
+ }, any>;
2016
+ }>>;
2017
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
2018
+ inputWidth: string;
2019
+ }, {
2020
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
2021
+ fontWeight: string;
2022
+ countTextColorDisabled: string;
2023
+ countTextColor: string;
2024
+ heightTiny: string;
2025
+ heightSmall: string;
2026
+ heightMedium: string;
2027
+ heightLarge: string;
2028
+ fontSizeTiny: string;
2029
+ fontSizeSmall: string;
2030
+ fontSizeMedium: string;
2031
+ fontSizeLarge: string;
2032
+ lineHeight: string;
2033
+ lineHeightTextarea: string;
2034
+ borderRadius: string;
2035
+ iconSize: string;
2036
+ groupLabelColor: string;
2037
+ groupLabelTextColor: string;
2038
+ textColor: string;
2039
+ textColorDisabled: string;
2040
+ textDecorationColor: string;
2041
+ caretColor: string;
2042
+ placeholderColor: string;
2043
+ placeholderColorDisabled: string;
2044
+ color: string;
2045
+ colorDisabled: string;
2046
+ colorFocus: string;
2047
+ groupLabelBorder: string;
2048
+ border: string;
2049
+ borderHover: string;
2050
+ borderDisabled: string;
2051
+ borderFocus: string;
2052
+ boxShadowFocus: string;
2053
+ loadingColor: string;
2054
+ loadingColorWarning: string;
2055
+ borderWarning: string;
2056
+ borderHoverWarning: string;
2057
+ colorFocusWarning: string;
2058
+ borderFocusWarning: string;
2059
+ boxShadowFocusWarning: string;
2060
+ caretColorWarning: string;
2061
+ loadingColorError: string;
2062
+ borderError: string;
2063
+ borderHoverError: string;
2064
+ colorFocusError: string;
2065
+ borderFocusError: string;
2066
+ boxShadowFocusError: string;
2067
+ caretColorError: string;
2068
+ clearColor: string;
2069
+ clearColorHover: string;
2070
+ clearColorPressed: string;
2071
+ iconColor: string;
2072
+ iconColorDisabled: string;
2073
+ iconColorHover: string;
2074
+ iconColorPressed: string;
2075
+ suffixTextColor: string;
2076
+ paddingTiny: string;
2077
+ paddingSmall: string;
2078
+ paddingMedium: string;
2079
+ paddingLarge: string;
2080
+ clearSize: string;
2081
+ }, any>;
2082
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2083
+ heightTiny: string;
2084
+ heightSmall: string;
2085
+ heightMedium: string;
2086
+ heightLarge: string;
2087
+ borderRadiusTiny: string;
2088
+ borderRadiusSmall: string;
2089
+ borderRadiusMedium: string;
2090
+ borderRadiusLarge: string;
2091
+ fontSizeTiny: string;
2092
+ fontSizeSmall: string;
2093
+ fontSizeMedium: string;
2094
+ fontSizeLarge: string;
2095
+ opacityDisabled: string;
2096
+ colorOpacitySecondary: string;
2097
+ colorOpacitySecondaryHover: string;
2098
+ colorOpacitySecondaryPressed: string;
2099
+ colorSecondary: string;
2100
+ colorSecondaryHover: string;
2101
+ colorSecondaryPressed: string;
2102
+ colorTertiary: string;
2103
+ colorTertiaryHover: string;
2104
+ colorTertiaryPressed: string;
2105
+ colorQuaternary: string;
2106
+ colorQuaternaryHover: string;
2107
+ colorQuaternaryPressed: string;
2108
+ color: string;
2109
+ colorHover: string;
2110
+ colorPressed: string;
2111
+ colorFocus: string;
2112
+ colorDisabled: string;
2113
+ textColor: string;
2114
+ textColorTertiary: string;
2115
+ textColorHover: string;
2116
+ textColorPressed: string;
2117
+ textColorFocus: string;
2118
+ textColorDisabled: string;
2119
+ textColorText: string;
2120
+ textColorTextHover: string;
2121
+ textColorTextPressed: string;
2122
+ textColorTextFocus: string;
2123
+ textColorTextDisabled: string;
2124
+ textColorGhost: string;
2125
+ textColorGhostHover: string;
2126
+ textColorGhostPressed: string;
2127
+ textColorGhostFocus: string;
2128
+ textColorGhostDisabled: string;
2129
+ border: string;
2130
+ borderHover: string;
2131
+ borderPressed: string;
2132
+ borderFocus: string;
2133
+ borderDisabled: string;
2134
+ rippleColor: string;
2135
+ colorPrimary: string;
2136
+ colorHoverPrimary: string;
2137
+ colorPressedPrimary: string;
2138
+ colorFocusPrimary: string;
2139
+ colorDisabledPrimary: string;
2140
+ textColorPrimary: string;
2141
+ textColorHoverPrimary: string;
2142
+ textColorPressedPrimary: string;
2143
+ textColorFocusPrimary: string;
2144
+ textColorDisabledPrimary: string;
2145
+ textColorTextPrimary: string;
2146
+ textColorTextHoverPrimary: string;
2147
+ textColorTextPressedPrimary: string;
2148
+ textColorTextFocusPrimary: string;
2149
+ textColorTextDisabledPrimary: string;
2150
+ textColorGhostPrimary: string;
2151
+ textColorGhostHoverPrimary: string;
2152
+ textColorGhostPressedPrimary: string;
2153
+ textColorGhostFocusPrimary: string;
2154
+ textColorGhostDisabledPrimary: string;
2155
+ borderPrimary: string;
2156
+ borderHoverPrimary: string;
2157
+ borderPressedPrimary: string;
2158
+ borderFocusPrimary: string;
2159
+ borderDisabledPrimary: string;
2160
+ rippleColorPrimary: string;
2161
+ colorInfo: string;
2162
+ colorHoverInfo: string;
2163
+ colorPressedInfo: string;
2164
+ colorFocusInfo: string;
2165
+ colorDisabledInfo: string;
2166
+ textColorInfo: string;
2167
+ textColorHoverInfo: string;
2168
+ textColorPressedInfo: string;
2169
+ textColorFocusInfo: string;
2170
+ textColorDisabledInfo: string;
2171
+ textColorTextInfo: string;
2172
+ textColorTextHoverInfo: string;
2173
+ textColorTextPressedInfo: string;
2174
+ textColorTextFocusInfo: string;
2175
+ textColorTextDisabledInfo: string;
2176
+ textColorGhostInfo: string;
2177
+ textColorGhostHoverInfo: string;
2178
+ textColorGhostPressedInfo: string;
2179
+ textColorGhostFocusInfo: string;
2180
+ textColorGhostDisabledInfo: string;
2181
+ borderInfo: string;
2182
+ borderHoverInfo: string;
2183
+ borderPressedInfo: string;
2184
+ borderFocusInfo: string;
2185
+ borderDisabledInfo: string;
2186
+ rippleColorInfo: string;
2187
+ colorSuccess: string;
2188
+ colorHoverSuccess: string;
2189
+ colorPressedSuccess: string;
2190
+ colorFocusSuccess: string;
2191
+ colorDisabledSuccess: string;
2192
+ textColorSuccess: string;
2193
+ textColorHoverSuccess: string;
2194
+ textColorPressedSuccess: string;
2195
+ textColorFocusSuccess: string;
2196
+ textColorDisabledSuccess: string;
2197
+ textColorTextSuccess: string;
2198
+ textColorTextHoverSuccess: string;
2199
+ textColorTextPressedSuccess: string;
2200
+ textColorTextFocusSuccess: string;
2201
+ textColorTextDisabledSuccess: string;
2202
+ textColorGhostSuccess: string;
2203
+ textColorGhostHoverSuccess: string;
2204
+ textColorGhostPressedSuccess: string;
2205
+ textColorGhostFocusSuccess: string;
2206
+ textColorGhostDisabledSuccess: string;
2207
+ borderSuccess: string;
2208
+ borderHoverSuccess: string;
2209
+ borderPressedSuccess: string;
2210
+ borderFocusSuccess: string;
2211
+ borderDisabledSuccess: string;
2212
+ rippleColorSuccess: string;
2213
+ colorWarning: string;
2214
+ colorHoverWarning: string;
2215
+ colorPressedWarning: string;
2216
+ colorFocusWarning: string;
2217
+ colorDisabledWarning: string;
2218
+ textColorWarning: string;
2219
+ textColorHoverWarning: string;
2220
+ textColorPressedWarning: string;
2221
+ textColorFocusWarning: string;
2222
+ textColorDisabledWarning: string;
2223
+ textColorTextWarning: string;
2224
+ textColorTextHoverWarning: string;
2225
+ textColorTextPressedWarning: string;
2226
+ textColorTextFocusWarning: string;
2227
+ textColorTextDisabledWarning: string;
2228
+ textColorGhostWarning: string;
2229
+ textColorGhostHoverWarning: string;
2230
+ textColorGhostPressedWarning: string;
2231
+ textColorGhostFocusWarning: string;
2232
+ textColorGhostDisabledWarning: string;
2233
+ borderWarning: string;
2234
+ borderHoverWarning: string;
2235
+ borderPressedWarning: string;
2236
+ borderFocusWarning: string;
2237
+ borderDisabledWarning: string;
2238
+ rippleColorWarning: string;
2239
+ colorError: string;
2240
+ colorHoverError: string;
2241
+ colorPressedError: string;
2242
+ colorFocusError: string;
2243
+ colorDisabledError: string;
2244
+ textColorError: string;
2245
+ textColorHoverError: string;
2246
+ textColorPressedError: string;
2247
+ textColorFocusError: string;
2248
+ textColorDisabledError: string;
2249
+ textColorTextError: string;
2250
+ textColorTextHoverError: string;
2251
+ textColorTextPressedError: string;
2252
+ textColorTextFocusError: string;
2253
+ textColorTextDisabledError: string;
2254
+ textColorGhostError: string;
2255
+ textColorGhostHoverError: string;
2256
+ textColorGhostPressedError: string;
2257
+ textColorGhostFocusError: string;
2258
+ textColorGhostDisabledError: string;
2259
+ borderError: string;
2260
+ borderHoverError: string;
2261
+ borderPressedError: string;
2262
+ borderFocusError: string;
2263
+ borderDisabledError: string;
2264
+ rippleColorError: string;
2265
+ waveOpacity: string;
2266
+ fontWeight: string;
2267
+ fontWeightStrong: string;
2268
+ paddingTiny: string;
2269
+ paddingSmall: string;
2270
+ paddingMedium: string;
2271
+ paddingLarge: string;
2272
+ paddingRoundTiny: string;
2273
+ paddingRoundSmall: string;
2274
+ paddingRoundMedium: string;
2275
+ paddingRoundLarge: string;
2276
+ iconMarginTiny: string;
2277
+ iconMarginSmall: string;
2278
+ iconMarginMedium: string;
2279
+ iconMarginLarge: string;
2280
+ iconSizeTiny: string;
2281
+ iconSizeSmall: string;
2282
+ iconSizeMedium: string;
2283
+ iconSizeLarge: string;
2284
+ rippleDuration: string;
2285
+ }, any>;
2286
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
2287
+ closeBorderRadius: string;
2288
+ heightTiny: string;
2289
+ heightSmall: string;
2290
+ heightMedium: string;
2291
+ heightLarge: string;
2292
+ borderRadius: string;
2293
+ opacityDisabled: string;
2294
+ fontSizeTiny: string;
2295
+ fontSizeSmall: string;
2296
+ fontSizeMedium: string;
2297
+ fontSizeLarge: string;
2298
+ fontWeightStrong: string;
2299
+ textColorCheckable: string;
2300
+ textColorHoverCheckable: string;
2301
+ textColorPressedCheckable: string;
2302
+ textColorChecked: string;
2303
+ colorCheckable: string;
2304
+ colorHoverCheckable: string;
2305
+ colorPressedCheckable: string;
2306
+ colorChecked: string;
2307
+ colorCheckedHover: string;
2308
+ colorCheckedPressed: string;
2309
+ border: string;
2310
+ textColor: string;
2311
+ color: string;
2312
+ colorBordered: string;
2313
+ closeIconColor: string;
2314
+ closeIconColorHover: string;
2315
+ closeIconColorPressed: string;
2316
+ closeColorHover: string;
2317
+ closeColorPressed: string;
2318
+ borderPrimary: string;
2319
+ textColorPrimary: string;
2320
+ colorPrimary: string;
2321
+ colorBorderedPrimary: string;
2322
+ closeIconColorPrimary: string;
2323
+ closeIconColorHoverPrimary: string;
2324
+ closeIconColorPressedPrimary: string;
2325
+ closeColorHoverPrimary: string;
2326
+ closeColorPressedPrimary: string;
2327
+ borderInfo: string;
2328
+ textColorInfo: string;
2329
+ colorInfo: string;
2330
+ colorBorderedInfo: string;
2331
+ closeIconColorInfo: string;
2332
+ closeIconColorHoverInfo: string;
2333
+ closeIconColorPressedInfo: string;
2334
+ closeColorHoverInfo: string;
2335
+ closeColorPressedInfo: string;
2336
+ borderSuccess: string;
2337
+ textColorSuccess: string;
2338
+ colorSuccess: string;
2339
+ colorBorderedSuccess: string;
2340
+ closeIconColorSuccess: string;
2341
+ closeIconColorHoverSuccess: string;
2342
+ closeIconColorPressedSuccess: string;
2343
+ closeColorHoverSuccess: string;
2344
+ closeColorPressedSuccess: string;
2345
+ borderWarning: string;
2346
+ textColorWarning: string;
2347
+ colorWarning: string;
2348
+ colorBorderedWarning: string;
2349
+ closeIconColorWarning: string;
2350
+ closeIconColorHoverWarning: string;
2351
+ closeIconColorPressedWarning: string;
2352
+ closeColorHoverWarning: string;
2353
+ closeColorPressedWarning: string;
2354
+ borderError: string;
2355
+ textColorError: string;
2356
+ colorError: string;
2357
+ colorBorderedError: string;
2358
+ closeIconColorError: string;
2359
+ closeIconColorHoverError: string;
2360
+ closeIconColorPressedError: string;
2361
+ closeColorHoverError: string;
2362
+ closeColorPressedError: string;
2363
+ closeIconSizeTiny: string;
2364
+ closeIconSizeSmall: string;
2365
+ closeIconSizeMedium: string;
2366
+ closeIconSizeLarge: string;
2367
+ closeSizeTiny: string;
2368
+ closeSizeSmall: string;
2369
+ closeSizeMedium: string;
2370
+ closeSizeLarge: string;
2371
+ padding: string;
2372
+ closeMargin: string;
2373
+ }, any>;
2374
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
2375
+ gapSmall: string;
2376
+ gapMedium: string;
2377
+ gapLarge: string;
2378
+ }, any>;
2379
+ }>>>;
2380
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"DynamicTags", {
2381
+ inputWidth: string;
2382
+ }, {
2383
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
2384
+ fontWeight: string;
2385
+ countTextColorDisabled: string;
2386
+ countTextColor: string;
2387
+ heightTiny: string;
2388
+ heightSmall: string;
2389
+ heightMedium: string;
2390
+ heightLarge: string;
2391
+ fontSizeTiny: string;
2392
+ fontSizeSmall: string;
2393
+ fontSizeMedium: string;
2394
+ fontSizeLarge: string;
2395
+ lineHeight: string;
2396
+ lineHeightTextarea: string;
2397
+ borderRadius: string;
2398
+ iconSize: string;
2399
+ groupLabelColor: string;
2400
+ groupLabelTextColor: string;
2401
+ textColor: string;
2402
+ textColorDisabled: string;
2403
+ textDecorationColor: string;
2404
+ caretColor: string;
2405
+ placeholderColor: string;
2406
+ placeholderColorDisabled: string;
2407
+ color: string;
2408
+ colorDisabled: string;
2409
+ colorFocus: string;
2410
+ groupLabelBorder: string;
2411
+ border: string;
2412
+ borderHover: string;
2413
+ borderDisabled: string;
2414
+ borderFocus: string;
2415
+ boxShadowFocus: string;
2416
+ loadingColor: string;
2417
+ loadingColorWarning: string;
2418
+ borderWarning: string;
2419
+ borderHoverWarning: string;
2420
+ colorFocusWarning: string;
2421
+ borderFocusWarning: string;
2422
+ boxShadowFocusWarning: string;
2423
+ caretColorWarning: string;
2424
+ loadingColorError: string;
2425
+ borderError: string;
2426
+ borderHoverError: string;
2427
+ colorFocusError: string;
2428
+ borderFocusError: string;
2429
+ boxShadowFocusError: string;
2430
+ caretColorError: string;
2431
+ clearColor: string;
2432
+ clearColorHover: string;
2433
+ clearColorPressed: string;
2434
+ iconColor: string;
2435
+ iconColorDisabled: string;
2436
+ iconColorHover: string;
2437
+ iconColorPressed: string;
2438
+ suffixTextColor: string;
2439
+ paddingTiny: string;
2440
+ paddingSmall: string;
2441
+ paddingMedium: string;
2442
+ paddingLarge: string;
2443
+ clearSize: string;
2444
+ }, any>;
2445
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2446
+ heightTiny: string;
2447
+ heightSmall: string;
2448
+ heightMedium: string;
2449
+ heightLarge: string;
2450
+ borderRadiusTiny: string;
2451
+ borderRadiusSmall: string;
2452
+ borderRadiusMedium: string;
2453
+ borderRadiusLarge: string;
2454
+ fontSizeTiny: string;
2455
+ fontSizeSmall: string;
2456
+ fontSizeMedium: string;
2457
+ fontSizeLarge: string;
2458
+ opacityDisabled: string;
2459
+ colorOpacitySecondary: string;
2460
+ colorOpacitySecondaryHover: string;
2461
+ colorOpacitySecondaryPressed: string;
2462
+ colorSecondary: string;
2463
+ colorSecondaryHover: string;
2464
+ colorSecondaryPressed: string;
2465
+ colorTertiary: string;
2466
+ colorTertiaryHover: string;
2467
+ colorTertiaryPressed: string;
2468
+ colorQuaternary: string;
2469
+ colorQuaternaryHover: string;
2470
+ colorQuaternaryPressed: string;
2471
+ color: string;
2472
+ colorHover: string;
2473
+ colorPressed: string;
2474
+ colorFocus: string;
2475
+ colorDisabled: string;
2476
+ textColor: string;
2477
+ textColorTertiary: string;
2478
+ textColorHover: string;
2479
+ textColorPressed: string;
2480
+ textColorFocus: string;
2481
+ textColorDisabled: string;
2482
+ textColorText: string;
2483
+ textColorTextHover: string;
2484
+ textColorTextPressed: string;
2485
+ textColorTextFocus: string;
2486
+ textColorTextDisabled: string;
2487
+ textColorGhost: string;
2488
+ textColorGhostHover: string;
2489
+ textColorGhostPressed: string;
2490
+ textColorGhostFocus: string;
2491
+ textColorGhostDisabled: string;
2492
+ border: string;
2493
+ borderHover: string;
2494
+ borderPressed: string;
2495
+ borderFocus: string;
2496
+ borderDisabled: string;
2497
+ rippleColor: string;
2498
+ colorPrimary: string;
2499
+ colorHoverPrimary: string;
2500
+ colorPressedPrimary: string;
2501
+ colorFocusPrimary: string;
2502
+ colorDisabledPrimary: string;
2503
+ textColorPrimary: string;
2504
+ textColorHoverPrimary: string;
2505
+ textColorPressedPrimary: string;
2506
+ textColorFocusPrimary: string;
2507
+ textColorDisabledPrimary: string;
2508
+ textColorTextPrimary: string;
2509
+ textColorTextHoverPrimary: string;
2510
+ textColorTextPressedPrimary: string;
2511
+ textColorTextFocusPrimary: string;
2512
+ textColorTextDisabledPrimary: string;
2513
+ textColorGhostPrimary: string;
2514
+ textColorGhostHoverPrimary: string;
2515
+ textColorGhostPressedPrimary: string;
2516
+ textColorGhostFocusPrimary: string;
2517
+ textColorGhostDisabledPrimary: string;
2518
+ borderPrimary: string;
2519
+ borderHoverPrimary: string;
2520
+ borderPressedPrimary: string;
2521
+ borderFocusPrimary: string;
2522
+ borderDisabledPrimary: string;
2523
+ rippleColorPrimary: string;
2524
+ colorInfo: string;
2525
+ colorHoverInfo: string;
2526
+ colorPressedInfo: string;
2527
+ colorFocusInfo: string;
2528
+ colorDisabledInfo: string;
2529
+ textColorInfo: string;
2530
+ textColorHoverInfo: string;
2531
+ textColorPressedInfo: string;
2532
+ textColorFocusInfo: string;
2533
+ textColorDisabledInfo: string;
2534
+ textColorTextInfo: string;
2535
+ textColorTextHoverInfo: string;
2536
+ textColorTextPressedInfo: string;
2537
+ textColorTextFocusInfo: string;
2538
+ textColorTextDisabledInfo: string;
2539
+ textColorGhostInfo: string;
2540
+ textColorGhostHoverInfo: string;
2541
+ textColorGhostPressedInfo: string;
2542
+ textColorGhostFocusInfo: string;
2543
+ textColorGhostDisabledInfo: string;
2544
+ borderInfo: string;
2545
+ borderHoverInfo: string;
2546
+ borderPressedInfo: string;
2547
+ borderFocusInfo: string;
2548
+ borderDisabledInfo: string;
2549
+ rippleColorInfo: string;
2550
+ colorSuccess: string;
2551
+ colorHoverSuccess: string;
2552
+ colorPressedSuccess: string;
2553
+ colorFocusSuccess: string;
2554
+ colorDisabledSuccess: string;
2555
+ textColorSuccess: string;
2556
+ textColorHoverSuccess: string;
2557
+ textColorPressedSuccess: string;
2558
+ textColorFocusSuccess: string;
2559
+ textColorDisabledSuccess: string;
2560
+ textColorTextSuccess: string;
2561
+ textColorTextHoverSuccess: string;
2562
+ textColorTextPressedSuccess: string;
2563
+ textColorTextFocusSuccess: string;
2564
+ textColorTextDisabledSuccess: string;
2565
+ textColorGhostSuccess: string;
2566
+ textColorGhostHoverSuccess: string;
2567
+ textColorGhostPressedSuccess: string;
2568
+ textColorGhostFocusSuccess: string;
2569
+ textColorGhostDisabledSuccess: string;
2570
+ borderSuccess: string;
2571
+ borderHoverSuccess: string;
2572
+ borderPressedSuccess: string;
2573
+ borderFocusSuccess: string;
2574
+ borderDisabledSuccess: string;
2575
+ rippleColorSuccess: string;
2576
+ colorWarning: string;
2577
+ colorHoverWarning: string;
2578
+ colorPressedWarning: string;
2579
+ colorFocusWarning: string;
2580
+ colorDisabledWarning: string;
2581
+ textColorWarning: string;
2582
+ textColorHoverWarning: string;
2583
+ textColorPressedWarning: string;
2584
+ textColorFocusWarning: string;
2585
+ textColorDisabledWarning: string;
2586
+ textColorTextWarning: string;
2587
+ textColorTextHoverWarning: string;
2588
+ textColorTextPressedWarning: string;
2589
+ textColorTextFocusWarning: string;
2590
+ textColorTextDisabledWarning: string;
2591
+ textColorGhostWarning: string;
2592
+ textColorGhostHoverWarning: string;
2593
+ textColorGhostPressedWarning: string;
2594
+ textColorGhostFocusWarning: string;
2595
+ textColorGhostDisabledWarning: string;
2596
+ borderWarning: string;
2597
+ borderHoverWarning: string;
2598
+ borderPressedWarning: string;
2599
+ borderFocusWarning: string;
2600
+ borderDisabledWarning: string;
2601
+ rippleColorWarning: string;
2602
+ colorError: string;
2603
+ colorHoverError: string;
2604
+ colorPressedError: string;
2605
+ colorFocusError: string;
2606
+ colorDisabledError: string;
2607
+ textColorError: string;
2608
+ textColorHoverError: string;
2609
+ textColorPressedError: string;
2610
+ textColorFocusError: string;
2611
+ textColorDisabledError: string;
2612
+ textColorTextError: string;
2613
+ textColorTextHoverError: string;
2614
+ textColorTextPressedError: string;
2615
+ textColorTextFocusError: string;
2616
+ textColorTextDisabledError: string;
2617
+ textColorGhostError: string;
2618
+ textColorGhostHoverError: string;
2619
+ textColorGhostPressedError: string;
2620
+ textColorGhostFocusError: string;
2621
+ textColorGhostDisabledError: string;
2622
+ borderError: string;
2623
+ borderHoverError: string;
2624
+ borderPressedError: string;
2625
+ borderFocusError: string;
2626
+ borderDisabledError: string;
2627
+ rippleColorError: string;
2628
+ waveOpacity: string;
2629
+ fontWeight: string;
2630
+ fontWeightStrong: string;
2631
+ paddingTiny: string;
2632
+ paddingSmall: string;
2633
+ paddingMedium: string;
2634
+ paddingLarge: string;
2635
+ paddingRoundTiny: string;
2636
+ paddingRoundSmall: string;
2637
+ paddingRoundMedium: string;
2638
+ paddingRoundLarge: string;
2639
+ iconMarginTiny: string;
2640
+ iconMarginSmall: string;
2641
+ iconMarginMedium: string;
2642
+ iconMarginLarge: string;
2643
+ iconSizeTiny: string;
2644
+ iconSizeSmall: string;
2645
+ iconSizeMedium: string;
2646
+ iconSizeLarge: string;
2647
+ rippleDuration: string;
2648
+ }, any>;
2649
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
2650
+ closeBorderRadius: string;
2651
+ heightTiny: string;
2652
+ heightSmall: string;
2653
+ heightMedium: string;
2654
+ heightLarge: string;
2655
+ borderRadius: string;
2656
+ opacityDisabled: string;
2657
+ fontSizeTiny: string;
2658
+ fontSizeSmall: string;
2659
+ fontSizeMedium: string;
2660
+ fontSizeLarge: string;
2661
+ fontWeightStrong: string;
2662
+ textColorCheckable: string;
2663
+ textColorHoverCheckable: string;
2664
+ textColorPressedCheckable: string;
2665
+ textColorChecked: string;
2666
+ colorCheckable: string;
2667
+ colorHoverCheckable: string;
2668
+ colorPressedCheckable: string;
2669
+ colorChecked: string;
2670
+ colorCheckedHover: string;
2671
+ colorCheckedPressed: string;
2672
+ border: string;
2673
+ textColor: string;
2674
+ color: string;
2675
+ colorBordered: string;
2676
+ closeIconColor: string;
2677
+ closeIconColorHover: string;
2678
+ closeIconColorPressed: string;
2679
+ closeColorHover: string;
2680
+ closeColorPressed: string;
2681
+ borderPrimary: string;
2682
+ textColorPrimary: string;
2683
+ colorPrimary: string;
2684
+ colorBorderedPrimary: string;
2685
+ closeIconColorPrimary: string;
2686
+ closeIconColorHoverPrimary: string;
2687
+ closeIconColorPressedPrimary: string;
2688
+ closeColorHoverPrimary: string;
2689
+ closeColorPressedPrimary: string;
2690
+ borderInfo: string;
2691
+ textColorInfo: string;
2692
+ colorInfo: string;
2693
+ colorBorderedInfo: string;
2694
+ closeIconColorInfo: string;
2695
+ closeIconColorHoverInfo: string;
2696
+ closeIconColorPressedInfo: string;
2697
+ closeColorHoverInfo: string;
2698
+ closeColorPressedInfo: string;
2699
+ borderSuccess: string;
2700
+ textColorSuccess: string;
2701
+ colorSuccess: string;
2702
+ colorBorderedSuccess: string;
2703
+ closeIconColorSuccess: string;
2704
+ closeIconColorHoverSuccess: string;
2705
+ closeIconColorPressedSuccess: string;
2706
+ closeColorHoverSuccess: string;
2707
+ closeColorPressedSuccess: string;
2708
+ borderWarning: string;
2709
+ textColorWarning: string;
2710
+ colorWarning: string;
2711
+ colorBorderedWarning: string;
2712
+ closeIconColorWarning: string;
2713
+ closeIconColorHoverWarning: string;
2714
+ closeIconColorPressedWarning: string;
2715
+ closeColorHoverWarning: string;
2716
+ closeColorPressedWarning: string;
2717
+ borderError: string;
2718
+ textColorError: string;
2719
+ colorError: string;
2720
+ colorBorderedError: string;
2721
+ closeIconColorError: string;
2722
+ closeIconColorHoverError: string;
2723
+ closeIconColorPressedError: string;
2724
+ closeColorHoverError: string;
2725
+ closeColorPressedError: string;
2726
+ closeIconSizeTiny: string;
2727
+ closeIconSizeSmall: string;
2728
+ closeIconSizeMedium: string;
2729
+ closeIconSizeLarge: string;
2730
+ closeSizeTiny: string;
2731
+ closeSizeSmall: string;
2732
+ closeSizeMedium: string;
2733
+ closeSizeLarge: string;
2734
+ padding: string;
2735
+ closeMargin: string;
2736
+ }, any>;
2737
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
2738
+ gapSmall: string;
2739
+ gapMedium: string;
2740
+ gapLarge: string;
2741
+ }, any>;
2742
+ }>>>;
2743
+ }>> & Readonly<{}>, {
2744
+ mergedClsPrefix: import('vue').Ref<string, string>;
2745
+ inputInstRef: import('vue').Ref<{
2746
+ wrapperElRef: HTMLElement | null;
2747
+ textareaElRef: HTMLTextAreaElement | null;
2748
+ inputElRef: HTMLInputElement | null;
2749
+ isCompositing: boolean;
2750
+ blur: () => void;
2751
+ clear: () => void;
2752
+ focus: () => void;
2753
+ select: () => void;
2754
+ activate: () => void;
2755
+ deactivate: () => void;
2756
+ scrollTo: (options: ScrollToOptions) => void;
2757
+ } | null, {
2758
+ wrapperElRef: HTMLElement | null;
2759
+ textareaElRef: HTMLTextAreaElement | null;
2760
+ inputElRef: HTMLInputElement | null;
2761
+ isCompositing: boolean;
2762
+ blur: () => void;
2763
+ clear: () => void;
2764
+ focus: () => void;
2765
+ select: () => void;
2766
+ activate: () => void;
2767
+ deactivate: () => void;
2768
+ scrollTo: (options: ScrollToOptions) => void;
2769
+ } | {
2770
+ wrapperElRef: HTMLElement | null;
2771
+ textareaElRef: HTMLTextAreaElement | null;
2772
+ inputElRef: HTMLInputElement | null;
2773
+ isCompositing: boolean;
2774
+ blur: () => void;
2775
+ clear: () => void;
2776
+ focus: () => void;
2777
+ select: () => void;
2778
+ activate: () => void;
2779
+ deactivate: () => void;
2780
+ scrollTo: (options: ScrollToOptions) => void;
2781
+ } | null>;
2782
+ localizedAdd: import('vue').ComputedRef<string>;
2783
+ inputSize: import('vue').ComputedRef<"small" | "medium" | "tiny">;
2784
+ inputValue: import('vue').Ref<string, string>;
2785
+ showInput: import('vue').Ref<boolean, boolean>;
2786
+ inputForceFocused: import('vue').Ref<boolean, boolean>;
2787
+ mergedValue: import('vue').ComputedRef<(string | import('naive-ui').DynamicTagsOption)[] | (string | {
2788
+ label: string;
2789
+ value: string;
2790
+ })[]>;
2791
+ mergedDisabled: import('vue').ComputedRef<boolean>;
2792
+ triggerDisabled: import('vue').ComputedRef<boolean>;
2793
+ handleInputKeyDown: (e: KeyboardEvent) => void;
2794
+ handleAddClick: () => void;
2795
+ handleInputBlur: () => void;
2796
+ handleCloseClick: (index: number) => void;
2797
+ handleInputConfirm: (externalValue?: string) => void;
2798
+ mergedTheme: import('vue').ComputedRef<{
2799
+ common: import('naive-ui').ThemeCommonVars;
2800
+ self: {
2801
+ inputWidth: string;
2802
+ };
2803
+ peers: {
2804
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
2805
+ fontWeight: string;
2806
+ countTextColorDisabled: string;
2807
+ countTextColor: string;
2808
+ heightTiny: string;
2809
+ heightSmall: string;
2810
+ heightMedium: string;
2811
+ heightLarge: string;
2812
+ fontSizeTiny: string;
2813
+ fontSizeSmall: string;
2814
+ fontSizeMedium: string;
2815
+ fontSizeLarge: string;
2816
+ lineHeight: string;
2817
+ lineHeightTextarea: string;
2818
+ borderRadius: string;
2819
+ iconSize: string;
2820
+ groupLabelColor: string;
2821
+ groupLabelTextColor: string;
2822
+ textColor: string;
2823
+ textColorDisabled: string;
2824
+ textDecorationColor: string;
2825
+ caretColor: string;
2826
+ placeholderColor: string;
2827
+ placeholderColorDisabled: string;
2828
+ color: string;
2829
+ colorDisabled: string;
2830
+ colorFocus: string;
2831
+ groupLabelBorder: string;
2832
+ border: string;
2833
+ borderHover: string;
2834
+ borderDisabled: string;
2835
+ borderFocus: string;
2836
+ boxShadowFocus: string;
2837
+ loadingColor: string;
2838
+ loadingColorWarning: string;
2839
+ borderWarning: string;
2840
+ borderHoverWarning: string;
2841
+ colorFocusWarning: string;
2842
+ borderFocusWarning: string;
2843
+ boxShadowFocusWarning: string;
2844
+ caretColorWarning: string;
2845
+ loadingColorError: string;
2846
+ borderError: string;
2847
+ borderHoverError: string;
2848
+ colorFocusError: string;
2849
+ borderFocusError: string;
2850
+ boxShadowFocusError: string;
2851
+ caretColorError: string;
2852
+ clearColor: string;
2853
+ clearColorHover: string;
2854
+ clearColorPressed: string;
2855
+ iconColor: string;
2856
+ iconColorDisabled: string;
2857
+ iconColorHover: string;
2858
+ iconColorPressed: string;
2859
+ suffixTextColor: string;
2860
+ paddingTiny: string;
2861
+ paddingSmall: string;
2862
+ paddingMedium: string;
2863
+ paddingLarge: string;
2864
+ clearSize: string;
2865
+ }, any>;
2866
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2867
+ heightTiny: string;
2868
+ heightSmall: string;
2869
+ heightMedium: string;
2870
+ heightLarge: string;
2871
+ borderRadiusTiny: string;
2872
+ borderRadiusSmall: string;
2873
+ borderRadiusMedium: string;
2874
+ borderRadiusLarge: string;
2875
+ fontSizeTiny: string;
2876
+ fontSizeSmall: string;
2877
+ fontSizeMedium: string;
2878
+ fontSizeLarge: string;
2879
+ opacityDisabled: string;
2880
+ colorOpacitySecondary: string;
2881
+ colorOpacitySecondaryHover: string;
2882
+ colorOpacitySecondaryPressed: string;
2883
+ colorSecondary: string;
2884
+ colorSecondaryHover: string;
2885
+ colorSecondaryPressed: string;
2886
+ colorTertiary: string;
2887
+ colorTertiaryHover: string;
2888
+ colorTertiaryPressed: string;
2889
+ colorQuaternary: string;
2890
+ colorQuaternaryHover: string;
2891
+ colorQuaternaryPressed: string;
2892
+ color: string;
2893
+ colorHover: string;
2894
+ colorPressed: string;
2895
+ colorFocus: string;
2896
+ colorDisabled: string;
2897
+ textColor: string;
2898
+ textColorTertiary: string;
2899
+ textColorHover: string;
2900
+ textColorPressed: string;
2901
+ textColorFocus: string;
2902
+ textColorDisabled: string;
2903
+ textColorText: string;
2904
+ textColorTextHover: string;
2905
+ textColorTextPressed: string;
2906
+ textColorTextFocus: string;
2907
+ textColorTextDisabled: string;
2908
+ textColorGhost: string;
2909
+ textColorGhostHover: string;
2910
+ textColorGhostPressed: string;
2911
+ textColorGhostFocus: string;
2912
+ textColorGhostDisabled: string;
2913
+ border: string;
2914
+ borderHover: string;
2915
+ borderPressed: string;
2916
+ borderFocus: string;
2917
+ borderDisabled: string;
2918
+ rippleColor: string;
2919
+ colorPrimary: string;
2920
+ colorHoverPrimary: string;
2921
+ colorPressedPrimary: string;
2922
+ colorFocusPrimary: string;
2923
+ colorDisabledPrimary: string;
2924
+ textColorPrimary: string;
2925
+ textColorHoverPrimary: string;
2926
+ textColorPressedPrimary: string;
2927
+ textColorFocusPrimary: string;
2928
+ textColorDisabledPrimary: string;
2929
+ textColorTextPrimary: string;
2930
+ textColorTextHoverPrimary: string;
2931
+ textColorTextPressedPrimary: string;
2932
+ textColorTextFocusPrimary: string;
2933
+ textColorTextDisabledPrimary: string;
2934
+ textColorGhostPrimary: string;
2935
+ textColorGhostHoverPrimary: string;
2936
+ textColorGhostPressedPrimary: string;
2937
+ textColorGhostFocusPrimary: string;
2938
+ textColorGhostDisabledPrimary: string;
2939
+ borderPrimary: string;
2940
+ borderHoverPrimary: string;
2941
+ borderPressedPrimary: string;
2942
+ borderFocusPrimary: string;
2943
+ borderDisabledPrimary: string;
2944
+ rippleColorPrimary: string;
2945
+ colorInfo: string;
2946
+ colorHoverInfo: string;
2947
+ colorPressedInfo: string;
2948
+ colorFocusInfo: string;
2949
+ colorDisabledInfo: string;
2950
+ textColorInfo: string;
2951
+ textColorHoverInfo: string;
2952
+ textColorPressedInfo: string;
2953
+ textColorFocusInfo: string;
2954
+ textColorDisabledInfo: string;
2955
+ textColorTextInfo: string;
2956
+ textColorTextHoverInfo: string;
2957
+ textColorTextPressedInfo: string;
2958
+ textColorTextFocusInfo: string;
2959
+ textColorTextDisabledInfo: string;
2960
+ textColorGhostInfo: string;
2961
+ textColorGhostHoverInfo: string;
2962
+ textColorGhostPressedInfo: string;
2963
+ textColorGhostFocusInfo: string;
2964
+ textColorGhostDisabledInfo: string;
2965
+ borderInfo: string;
2966
+ borderHoverInfo: string;
2967
+ borderPressedInfo: string;
2968
+ borderFocusInfo: string;
2969
+ borderDisabledInfo: string;
2970
+ rippleColorInfo: string;
2971
+ colorSuccess: string;
2972
+ colorHoverSuccess: string;
2973
+ colorPressedSuccess: string;
2974
+ colorFocusSuccess: string;
2975
+ colorDisabledSuccess: string;
2976
+ textColorSuccess: string;
2977
+ textColorHoverSuccess: string;
2978
+ textColorPressedSuccess: string;
2979
+ textColorFocusSuccess: string;
2980
+ textColorDisabledSuccess: string;
2981
+ textColorTextSuccess: string;
2982
+ textColorTextHoverSuccess: string;
2983
+ textColorTextPressedSuccess: string;
2984
+ textColorTextFocusSuccess: string;
2985
+ textColorTextDisabledSuccess: string;
2986
+ textColorGhostSuccess: string;
2987
+ textColorGhostHoverSuccess: string;
2988
+ textColorGhostPressedSuccess: string;
2989
+ textColorGhostFocusSuccess: string;
2990
+ textColorGhostDisabledSuccess: string;
2991
+ borderSuccess: string;
2992
+ borderHoverSuccess: string;
2993
+ borderPressedSuccess: string;
2994
+ borderFocusSuccess: string;
2995
+ borderDisabledSuccess: string;
2996
+ rippleColorSuccess: string;
2997
+ colorWarning: string;
2998
+ colorHoverWarning: string;
2999
+ colorPressedWarning: string;
3000
+ colorFocusWarning: string;
3001
+ colorDisabledWarning: string;
3002
+ textColorWarning: string;
3003
+ textColorHoverWarning: string;
3004
+ textColorPressedWarning: string;
3005
+ textColorFocusWarning: string;
3006
+ textColorDisabledWarning: string;
3007
+ textColorTextWarning: string;
3008
+ textColorTextHoverWarning: string;
3009
+ textColorTextPressedWarning: string;
3010
+ textColorTextFocusWarning: string;
3011
+ textColorTextDisabledWarning: string;
3012
+ textColorGhostWarning: string;
3013
+ textColorGhostHoverWarning: string;
3014
+ textColorGhostPressedWarning: string;
3015
+ textColorGhostFocusWarning: string;
3016
+ textColorGhostDisabledWarning: string;
3017
+ borderWarning: string;
3018
+ borderHoverWarning: string;
3019
+ borderPressedWarning: string;
3020
+ borderFocusWarning: string;
3021
+ borderDisabledWarning: string;
3022
+ rippleColorWarning: string;
3023
+ colorError: string;
3024
+ colorHoverError: string;
3025
+ colorPressedError: string;
3026
+ colorFocusError: string;
3027
+ colorDisabledError: string;
3028
+ textColorError: string;
3029
+ textColorHoverError: string;
3030
+ textColorPressedError: string;
3031
+ textColorFocusError: string;
3032
+ textColorDisabledError: string;
3033
+ textColorTextError: string;
3034
+ textColorTextHoverError: string;
3035
+ textColorTextPressedError: string;
3036
+ textColorTextFocusError: string;
3037
+ textColorTextDisabledError: string;
3038
+ textColorGhostError: string;
3039
+ textColorGhostHoverError: string;
3040
+ textColorGhostPressedError: string;
3041
+ textColorGhostFocusError: string;
3042
+ textColorGhostDisabledError: string;
3043
+ borderError: string;
3044
+ borderHoverError: string;
3045
+ borderPressedError: string;
3046
+ borderFocusError: string;
3047
+ borderDisabledError: string;
3048
+ rippleColorError: string;
3049
+ waveOpacity: string;
3050
+ fontWeight: string;
3051
+ fontWeightStrong: string;
3052
+ paddingTiny: string;
3053
+ paddingSmall: string;
3054
+ paddingMedium: string;
3055
+ paddingLarge: string;
3056
+ paddingRoundTiny: string;
3057
+ paddingRoundSmall: string;
3058
+ paddingRoundMedium: string;
3059
+ paddingRoundLarge: string;
3060
+ iconMarginTiny: string;
3061
+ iconMarginSmall: string;
3062
+ iconMarginMedium: string;
3063
+ iconMarginLarge: string;
3064
+ iconSizeTiny: string;
3065
+ iconSizeSmall: string;
3066
+ iconSizeMedium: string;
3067
+ iconSizeLarge: string;
3068
+ rippleDuration: string;
3069
+ }, any>;
3070
+ Tag: import('naive-ui/es/_mixins').Theme<"Tag", {
3071
+ closeBorderRadius: string;
3072
+ heightTiny: string;
3073
+ heightSmall: string;
3074
+ heightMedium: string;
3075
+ heightLarge: string;
3076
+ borderRadius: string;
3077
+ opacityDisabled: string;
3078
+ fontSizeTiny: string;
3079
+ fontSizeSmall: string;
3080
+ fontSizeMedium: string;
3081
+ fontSizeLarge: string;
3082
+ fontWeightStrong: string;
3083
+ textColorCheckable: string;
3084
+ textColorHoverCheckable: string;
3085
+ textColorPressedCheckable: string;
3086
+ textColorChecked: string;
3087
+ colorCheckable: string;
3088
+ colorHoverCheckable: string;
3089
+ colorPressedCheckable: string;
3090
+ colorChecked: string;
3091
+ colorCheckedHover: string;
3092
+ colorCheckedPressed: string;
3093
+ border: string;
3094
+ textColor: string;
3095
+ color: string;
3096
+ colorBordered: string;
3097
+ closeIconColor: string;
3098
+ closeIconColorHover: string;
3099
+ closeIconColorPressed: string;
3100
+ closeColorHover: string;
3101
+ closeColorPressed: string;
3102
+ borderPrimary: string;
3103
+ textColorPrimary: string;
3104
+ colorPrimary: string;
3105
+ colorBorderedPrimary: string;
3106
+ closeIconColorPrimary: string;
3107
+ closeIconColorHoverPrimary: string;
3108
+ closeIconColorPressedPrimary: string;
3109
+ closeColorHoverPrimary: string;
3110
+ closeColorPressedPrimary: string;
3111
+ borderInfo: string;
3112
+ textColorInfo: string;
3113
+ colorInfo: string;
3114
+ colorBorderedInfo: string;
3115
+ closeIconColorInfo: string;
3116
+ closeIconColorHoverInfo: string;
3117
+ closeIconColorPressedInfo: string;
3118
+ closeColorHoverInfo: string;
3119
+ closeColorPressedInfo: string;
3120
+ borderSuccess: string;
3121
+ textColorSuccess: string;
3122
+ colorSuccess: string;
3123
+ colorBorderedSuccess: string;
3124
+ closeIconColorSuccess: string;
3125
+ closeIconColorHoverSuccess: string;
3126
+ closeIconColorPressedSuccess: string;
3127
+ closeColorHoverSuccess: string;
3128
+ closeColorPressedSuccess: string;
3129
+ borderWarning: string;
3130
+ textColorWarning: string;
3131
+ colorWarning: string;
3132
+ colorBorderedWarning: string;
3133
+ closeIconColorWarning: string;
3134
+ closeIconColorHoverWarning: string;
3135
+ closeIconColorPressedWarning: string;
3136
+ closeColorHoverWarning: string;
3137
+ closeColorPressedWarning: string;
3138
+ borderError: string;
3139
+ textColorError: string;
3140
+ colorError: string;
3141
+ colorBorderedError: string;
3142
+ closeIconColorError: string;
3143
+ closeIconColorHoverError: string;
3144
+ closeIconColorPressedError: string;
3145
+ closeColorHoverError: string;
3146
+ closeColorPressedError: string;
3147
+ closeIconSizeTiny: string;
3148
+ closeIconSizeSmall: string;
3149
+ closeIconSizeMedium: string;
3150
+ closeIconSizeLarge: string;
3151
+ closeSizeTiny: string;
3152
+ closeSizeSmall: string;
3153
+ closeSizeMedium: string;
3154
+ closeSizeLarge: string;
3155
+ padding: string;
3156
+ closeMargin: string;
3157
+ }, any>;
3158
+ Space: import('naive-ui/es/_mixins').Theme<"Space", {
3159
+ gapSmall: string;
3160
+ gapMedium: string;
3161
+ gapLarge: string;
3162
+ }, any>;
3163
+ };
3164
+ peerOverrides: {
3165
+ Input?: {
3166
+ peers?: {
3167
+ [x: string]: any;
3168
+ } | undefined;
3169
+ } | undefined;
3170
+ Button?: {
3171
+ peers?: {
3172
+ [x: string]: any;
3173
+ } | undefined;
3174
+ } | undefined;
3175
+ Tag?: {
3176
+ peers?: {
3177
+ [x: string]: any;
3178
+ } | undefined;
3179
+ } | undefined;
3180
+ Space?: {
3181
+ peers?: {
3182
+ [x: string]: any;
3183
+ } | undefined;
3184
+ } | undefined;
3185
+ };
3186
+ }>;
3187
+ cssVars: import('vue').ComputedRef<{
3188
+ "--n-input-width": string;
3189
+ }> | undefined;
3190
+ themeClass: import('vue').Ref<string, string> | undefined;
3191
+ onRender: (() => void) | undefined;
3192
+ }, {}, {}, {}, {
3193
+ type: "error" | "default" | "primary" | "info" | "success" | "warning";
3194
+ size: "small" | "medium" | "large";
3195
+ disabled: boolean | undefined;
3196
+ round: boolean;
3197
+ closable: boolean;
3198
+ defaultValue: (string | import('naive-ui').DynamicTagsOption)[];
3199
+ onCreate: import('naive-ui/es/dynamic-tags/src/interface').OnCreate;
3200
+ }> | null;
3201
+ autoCompleteRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3202
+ readonly to: {
3203
+ type: import('vue').PropType<HTMLElement | string | boolean>;
3204
+ default: undefined;
3205
+ };
3206
+ readonly menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
3207
+ readonly append: BooleanConstructor;
3208
+ readonly bordered: {
3209
+ readonly type: import('vue').PropType<boolean | undefined>;
3210
+ readonly default: undefined;
3211
+ };
3212
+ readonly clearable: {
3213
+ readonly type: BooleanConstructor;
3214
+ readonly default: undefined;
3215
+ };
3216
+ readonly defaultValue: {
3217
+ readonly type: import('vue').PropType<string | null>;
3218
+ readonly default: null;
3219
+ };
3220
+ readonly loading: {
3221
+ readonly type: BooleanConstructor;
3222
+ readonly default: undefined;
3223
+ };
3224
+ readonly disabled: {
3225
+ readonly type: import('vue').PropType<boolean | undefined>;
3226
+ readonly default: undefined;
3227
+ };
3228
+ readonly placeholder: StringConstructor;
3229
+ readonly placement: {
3230
+ readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
3231
+ readonly default: "bottom-start";
3232
+ };
3233
+ readonly value: StringConstructor;
3234
+ readonly blurAfterSelect: BooleanConstructor;
3235
+ readonly clearAfterSelect: BooleanConstructor;
3236
+ readonly getShow: import('vue').PropType<(inputValue: string) => boolean>;
3237
+ readonly showEmpty: BooleanConstructor;
3238
+ readonly inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
3239
+ readonly renderOption: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderOption>;
3240
+ readonly renderLabel: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderLabel>;
3241
+ readonly size: import('vue').PropType<"small" | "medium" | "large">;
3242
+ readonly options: {
3243
+ readonly type: import('vue').PropType<import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions>;
3244
+ readonly default: () => never[];
3245
+ };
3246
+ readonly zIndex: NumberConstructor;
3247
+ readonly status: import('vue').PropType<import('naive-ui/es/form/src/interface').FormValidationStatus>;
3248
+ readonly 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue>>;
3249
+ readonly onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue>>;
3250
+ readonly onSelect: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnSelect>>;
3251
+ readonly onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
3252
+ readonly onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
3253
+ readonly onInput: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue> | undefined>;
3254
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
3255
+ menuBoxShadow: string;
3256
+ }, {
3257
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
3258
+ optionFontSizeTiny: string;
3259
+ optionFontSizeSmall: string;
3260
+ optionFontSizeMedium: string;
3261
+ optionFontSizeLarge: string;
3262
+ optionFontSizeHuge: string;
3263
+ optionHeightTiny: string;
3264
+ optionHeightSmall: string;
3265
+ optionHeightMedium: string;
3266
+ optionHeightLarge: string;
3267
+ optionHeightHuge: string;
3268
+ borderRadius: string;
3269
+ color: string;
3270
+ groupHeaderTextColor: string;
3271
+ actionDividerColor: string;
3272
+ optionTextColor: string;
3273
+ optionTextColorPressed: string;
3274
+ optionTextColorDisabled: string;
3275
+ optionTextColorActive: string;
3276
+ optionOpacityDisabled: string;
3277
+ optionCheckColor: string;
3278
+ optionColorPending: string;
3279
+ optionColorActive: string;
3280
+ optionColorActivePending: string;
3281
+ actionTextColor: string;
3282
+ loadingColor: string;
3283
+ height: string;
3284
+ paddingTiny: string;
3285
+ paddingSmall: string;
3286
+ paddingMedium: string;
3287
+ paddingLarge: string;
3288
+ paddingHuge: string;
3289
+ optionPaddingTiny: string;
3290
+ optionPaddingSmall: string;
3291
+ optionPaddingMedium: string;
3292
+ optionPaddingLarge: string;
3293
+ optionPaddingHuge: string;
3294
+ loadingSize: string;
3295
+ }, {
3296
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
3297
+ height: string;
3298
+ width: string;
3299
+ borderRadius: string;
3300
+ color: string;
3301
+ colorHover: string;
3302
+ railInsetHorizontalBottom: string;
3303
+ railInsetHorizontalTop: string;
3304
+ railInsetVerticalRight: string;
3305
+ railInsetVerticalLeft: string;
3306
+ railColor: string;
3307
+ }, any>;
3308
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
3309
+ fontSizeTiny: string;
3310
+ fontSizeSmall: string;
3311
+ fontSizeMedium: string;
3312
+ fontSizeLarge: string;
3313
+ fontSizeHuge: string;
3314
+ textColor: string;
3315
+ iconColor: string;
3316
+ extraTextColor: string;
3317
+ iconSizeTiny: string;
3318
+ iconSizeSmall: string;
3319
+ iconSizeMedium: string;
3320
+ iconSizeLarge: string;
3321
+ iconSizeHuge: string;
3322
+ }, any>;
3323
+ }>;
3324
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
3325
+ fontWeight: string;
3326
+ countTextColorDisabled: string;
3327
+ countTextColor: string;
3328
+ heightTiny: string;
3329
+ heightSmall: string;
3330
+ heightMedium: string;
3331
+ heightLarge: string;
3332
+ fontSizeTiny: string;
3333
+ fontSizeSmall: string;
3334
+ fontSizeMedium: string;
3335
+ fontSizeLarge: string;
3336
+ lineHeight: string;
3337
+ lineHeightTextarea: string;
3338
+ borderRadius: string;
3339
+ iconSize: string;
3340
+ groupLabelColor: string;
3341
+ groupLabelTextColor: string;
3342
+ textColor: string;
3343
+ textColorDisabled: string;
3344
+ textDecorationColor: string;
3345
+ caretColor: string;
3346
+ placeholderColor: string;
3347
+ placeholderColorDisabled: string;
3348
+ color: string;
3349
+ colorDisabled: string;
3350
+ colorFocus: string;
3351
+ groupLabelBorder: string;
3352
+ border: string;
3353
+ borderHover: string;
3354
+ borderDisabled: string;
3355
+ borderFocus: string;
3356
+ boxShadowFocus: string;
3357
+ loadingColor: string;
3358
+ loadingColorWarning: string;
3359
+ borderWarning: string;
3360
+ borderHoverWarning: string;
3361
+ colorFocusWarning: string;
3362
+ borderFocusWarning: string;
3363
+ boxShadowFocusWarning: string;
3364
+ caretColorWarning: string;
3365
+ loadingColorError: string;
3366
+ borderError: string;
3367
+ borderHoverError: string;
3368
+ colorFocusError: string;
3369
+ borderFocusError: string;
3370
+ boxShadowFocusError: string;
3371
+ caretColorError: string;
3372
+ clearColor: string;
3373
+ clearColorHover: string;
3374
+ clearColorPressed: string;
3375
+ iconColor: string;
3376
+ iconColorDisabled: string;
3377
+ iconColorHover: string;
3378
+ iconColorPressed: string;
3379
+ suffixTextColor: string;
3380
+ paddingTiny: string;
3381
+ paddingSmall: string;
3382
+ paddingMedium: string;
3383
+ paddingLarge: string;
3384
+ clearSize: string;
3385
+ }, any>;
3386
+ }>>;
3387
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
3388
+ menuBoxShadow: string;
3389
+ }, {
3390
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
3391
+ optionFontSizeTiny: string;
3392
+ optionFontSizeSmall: string;
3393
+ optionFontSizeMedium: string;
3394
+ optionFontSizeLarge: string;
3395
+ optionFontSizeHuge: string;
3396
+ optionHeightTiny: string;
3397
+ optionHeightSmall: string;
3398
+ optionHeightMedium: string;
3399
+ optionHeightLarge: string;
3400
+ optionHeightHuge: string;
3401
+ borderRadius: string;
3402
+ color: string;
3403
+ groupHeaderTextColor: string;
3404
+ actionDividerColor: string;
3405
+ optionTextColor: string;
3406
+ optionTextColorPressed: string;
3407
+ optionTextColorDisabled: string;
3408
+ optionTextColorActive: string;
3409
+ optionOpacityDisabled: string;
3410
+ optionCheckColor: string;
3411
+ optionColorPending: string;
3412
+ optionColorActive: string;
3413
+ optionColorActivePending: string;
3414
+ actionTextColor: string;
3415
+ loadingColor: string;
3416
+ height: string;
3417
+ paddingTiny: string;
3418
+ paddingSmall: string;
3419
+ paddingMedium: string;
3420
+ paddingLarge: string;
3421
+ paddingHuge: string;
3422
+ optionPaddingTiny: string;
3423
+ optionPaddingSmall: string;
3424
+ optionPaddingMedium: string;
3425
+ optionPaddingLarge: string;
3426
+ optionPaddingHuge: string;
3427
+ loadingSize: string;
3428
+ }, {
3429
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
3430
+ height: string;
3431
+ width: string;
3432
+ borderRadius: string;
3433
+ color: string;
3434
+ colorHover: string;
3435
+ railInsetHorizontalBottom: string;
3436
+ railInsetHorizontalTop: string;
3437
+ railInsetVerticalRight: string;
3438
+ railInsetVerticalLeft: string;
3439
+ railColor: string;
3440
+ }, any>;
3441
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
3442
+ fontSizeTiny: string;
3443
+ fontSizeSmall: string;
3444
+ fontSizeMedium: string;
3445
+ fontSizeLarge: string;
3446
+ fontSizeHuge: string;
3447
+ textColor: string;
3448
+ iconColor: string;
3449
+ extraTextColor: string;
3450
+ iconSizeTiny: string;
3451
+ iconSizeSmall: string;
3452
+ iconSizeMedium: string;
3453
+ iconSizeLarge: string;
3454
+ iconSizeHuge: string;
3455
+ }, any>;
3456
+ }>;
3457
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
3458
+ fontWeight: string;
3459
+ countTextColorDisabled: string;
3460
+ countTextColor: string;
3461
+ heightTiny: string;
3462
+ heightSmall: string;
3463
+ heightMedium: string;
3464
+ heightLarge: string;
3465
+ fontSizeTiny: string;
3466
+ fontSizeSmall: string;
3467
+ fontSizeMedium: string;
3468
+ fontSizeLarge: string;
3469
+ lineHeight: string;
3470
+ lineHeightTextarea: string;
3471
+ borderRadius: string;
3472
+ iconSize: string;
3473
+ groupLabelColor: string;
3474
+ groupLabelTextColor: string;
3475
+ textColor: string;
3476
+ textColorDisabled: string;
3477
+ textDecorationColor: string;
3478
+ caretColor: string;
3479
+ placeholderColor: string;
3480
+ placeholderColorDisabled: string;
3481
+ color: string;
3482
+ colorDisabled: string;
3483
+ colorFocus: string;
3484
+ groupLabelBorder: string;
3485
+ border: string;
3486
+ borderHover: string;
3487
+ borderDisabled: string;
3488
+ borderFocus: string;
3489
+ boxShadowFocus: string;
3490
+ loadingColor: string;
3491
+ loadingColorWarning: string;
3492
+ borderWarning: string;
3493
+ borderHoverWarning: string;
3494
+ colorFocusWarning: string;
3495
+ borderFocusWarning: string;
3496
+ boxShadowFocusWarning: string;
3497
+ caretColorWarning: string;
3498
+ loadingColorError: string;
3499
+ borderError: string;
3500
+ borderHoverError: string;
3501
+ colorFocusError: string;
3502
+ borderFocusError: string;
3503
+ boxShadowFocusError: string;
3504
+ caretColorError: string;
3505
+ clearColor: string;
3506
+ clearColorHover: string;
3507
+ clearColorPressed: string;
3508
+ iconColor: string;
3509
+ iconColorDisabled: string;
3510
+ iconColorHover: string;
3511
+ iconColorPressed: string;
3512
+ suffixTextColor: string;
3513
+ paddingTiny: string;
3514
+ paddingSmall: string;
3515
+ paddingMedium: string;
3516
+ paddingLarge: string;
3517
+ clearSize: string;
3518
+ }, any>;
3519
+ }>>>;
3520
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
3521
+ menuBoxShadow: string;
3522
+ }, {
3523
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
3524
+ optionFontSizeTiny: string;
3525
+ optionFontSizeSmall: string;
3526
+ optionFontSizeMedium: string;
3527
+ optionFontSizeLarge: string;
3528
+ optionFontSizeHuge: string;
3529
+ optionHeightTiny: string;
3530
+ optionHeightSmall: string;
3531
+ optionHeightMedium: string;
3532
+ optionHeightLarge: string;
3533
+ optionHeightHuge: string;
3534
+ borderRadius: string;
3535
+ color: string;
3536
+ groupHeaderTextColor: string;
3537
+ actionDividerColor: string;
3538
+ optionTextColor: string;
3539
+ optionTextColorPressed: string;
3540
+ optionTextColorDisabled: string;
3541
+ optionTextColorActive: string;
3542
+ optionOpacityDisabled: string;
3543
+ optionCheckColor: string;
3544
+ optionColorPending: string;
3545
+ optionColorActive: string;
3546
+ optionColorActivePending: string;
3547
+ actionTextColor: string;
3548
+ loadingColor: string;
3549
+ height: string;
3550
+ paddingTiny: string;
3551
+ paddingSmall: string;
3552
+ paddingMedium: string;
3553
+ paddingLarge: string;
3554
+ paddingHuge: string;
3555
+ optionPaddingTiny: string;
3556
+ optionPaddingSmall: string;
3557
+ optionPaddingMedium: string;
3558
+ optionPaddingLarge: string;
3559
+ optionPaddingHuge: string;
3560
+ loadingSize: string;
3561
+ }, {
3562
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
3563
+ height: string;
3564
+ width: string;
3565
+ borderRadius: string;
3566
+ color: string;
3567
+ colorHover: string;
3568
+ railInsetHorizontalBottom: string;
3569
+ railInsetHorizontalTop: string;
3570
+ railInsetVerticalRight: string;
3571
+ railInsetVerticalLeft: string;
3572
+ railColor: string;
3573
+ }, any>;
3574
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
3575
+ fontSizeTiny: string;
3576
+ fontSizeSmall: string;
3577
+ fontSizeMedium: string;
3578
+ fontSizeLarge: string;
3579
+ fontSizeHuge: string;
3580
+ textColor: string;
3581
+ iconColor: string;
3582
+ extraTextColor: string;
3583
+ iconSizeTiny: string;
3584
+ iconSizeSmall: string;
3585
+ iconSizeMedium: string;
3586
+ iconSizeLarge: string;
3587
+ iconSizeHuge: string;
3588
+ }, any>;
3589
+ }>;
3590
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
3591
+ fontWeight: string;
3592
+ countTextColorDisabled: string;
3593
+ countTextColor: string;
3594
+ heightTiny: string;
3595
+ heightSmall: string;
3596
+ heightMedium: string;
3597
+ heightLarge: string;
3598
+ fontSizeTiny: string;
3599
+ fontSizeSmall: string;
3600
+ fontSizeMedium: string;
3601
+ fontSizeLarge: string;
3602
+ lineHeight: string;
3603
+ lineHeightTextarea: string;
3604
+ borderRadius: string;
3605
+ iconSize: string;
3606
+ groupLabelColor: string;
3607
+ groupLabelTextColor: string;
3608
+ textColor: string;
3609
+ textColorDisabled: string;
3610
+ textDecorationColor: string;
3611
+ caretColor: string;
3612
+ placeholderColor: string;
3613
+ placeholderColorDisabled: string;
3614
+ color: string;
3615
+ colorDisabled: string;
3616
+ colorFocus: string;
3617
+ groupLabelBorder: string;
3618
+ border: string;
3619
+ borderHover: string;
3620
+ borderDisabled: string;
3621
+ borderFocus: string;
3622
+ boxShadowFocus: string;
3623
+ loadingColor: string;
3624
+ loadingColorWarning: string;
3625
+ borderWarning: string;
3626
+ borderHoverWarning: string;
3627
+ colorFocusWarning: string;
3628
+ borderFocusWarning: string;
3629
+ boxShadowFocusWarning: string;
3630
+ caretColorWarning: string;
3631
+ loadingColorError: string;
3632
+ borderError: string;
3633
+ borderHoverError: string;
3634
+ colorFocusError: string;
3635
+ borderFocusError: string;
3636
+ boxShadowFocusError: string;
3637
+ caretColorError: string;
3638
+ clearColor: string;
3639
+ clearColorHover: string;
3640
+ clearColorPressed: string;
3641
+ iconColor: string;
3642
+ iconColorDisabled: string;
3643
+ iconColorHover: string;
3644
+ iconColorPressed: string;
3645
+ suffixTextColor: string;
3646
+ paddingTiny: string;
3647
+ paddingSmall: string;
3648
+ paddingMedium: string;
3649
+ paddingLarge: string;
3650
+ clearSize: string;
3651
+ }, any>;
3652
+ }>>>;
3653
+ }>> & Readonly<{}>, {
3654
+ focus: () => void;
3655
+ blur: () => void;
3656
+ inputInstRef: import('vue').Ref<{
3657
+ wrapperElRef: HTMLElement | null;
3658
+ textareaElRef: HTMLTextAreaElement | null;
3659
+ inputElRef: HTMLInputElement | null;
3660
+ isCompositing: boolean;
3661
+ blur: () => void;
3662
+ clear: () => void;
3663
+ focus: () => void;
3664
+ select: () => void;
3665
+ activate: () => void;
3666
+ deactivate: () => void;
3667
+ scrollTo: (options: ScrollToOptions) => void;
3668
+ } | null, {
3669
+ wrapperElRef: HTMLElement | null;
3670
+ textareaElRef: HTMLTextAreaElement | null;
3671
+ inputElRef: HTMLInputElement | null;
3672
+ isCompositing: boolean;
3673
+ blur: () => void;
3674
+ clear: () => void;
3675
+ focus: () => void;
3676
+ select: () => void;
3677
+ activate: () => void;
3678
+ deactivate: () => void;
3679
+ scrollTo: (options: ScrollToOptions) => void;
3680
+ } | {
3681
+ wrapperElRef: HTMLElement | null;
3682
+ textareaElRef: HTMLTextAreaElement | null;
3683
+ inputElRef: HTMLInputElement | null;
3684
+ isCompositing: boolean;
3685
+ blur: () => void;
3686
+ clear: () => void;
3687
+ focus: () => void;
3688
+ select: () => void;
3689
+ activate: () => void;
3690
+ deactivate: () => void;
3691
+ scrollTo: (options: ScrollToOptions) => void;
3692
+ } | null>;
3693
+ uncontrolledValue: import('vue').Ref<string | null, string | null>;
3694
+ mergedValue: import('vue').ComputedRef<string | null>;
3695
+ isMounted: Readonly<import('vue').Ref<boolean, boolean>>;
3696
+ adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
3697
+ menuInstRef: import('vue').Ref<{
3698
+ selfRef: HTMLElement | null;
3699
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
3700
+ prev: () => void;
3701
+ next: () => void;
3702
+ } | null, {
3703
+ selfRef: HTMLElement | null;
3704
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
3705
+ prev: () => void;
3706
+ next: () => void;
3707
+ } | {
3708
+ selfRef: HTMLElement | null;
3709
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
3710
+ prev: () => void;
3711
+ next: () => void;
3712
+ } | null>;
3713
+ triggerElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
3714
+ treeMate: import('vue').ComputedRef<import('treemate').TreeMate<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)>, import('naive-ui').SelectGroupOption, import('naive-ui/es/select/src/interface').SelectIgnoredOption>>;
3715
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large">;
3716
+ mergedDisabled: import('vue').ComputedRef<boolean>;
3717
+ active: import('vue').ComputedRef<boolean>;
3718
+ mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
3719
+ handleClear: () => void;
3720
+ handleFocus: (e: FocusEvent) => void;
3721
+ handleBlur: (e: FocusEvent) => void;
3722
+ handleInput: (value: string) => void;
3723
+ handleToggle: (option: import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption>) => void;
3724
+ handleClickOutsideMenu: (e: MouseEvent) => void;
3725
+ handleCompositionStart: () => void;
3726
+ handleCompositionEnd: () => void;
3727
+ handleKeyDown: (e: KeyboardEvent) => void;
3728
+ mergedTheme: import('vue').ComputedRef<{
3729
+ common: import('naive-ui').ThemeCommonVars;
3730
+ self: {
3731
+ menuBoxShadow: string;
3732
+ };
3733
+ peers: {
3734
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
3735
+ optionFontSizeTiny: string;
3736
+ optionFontSizeSmall: string;
3737
+ optionFontSizeMedium: string;
3738
+ optionFontSizeLarge: string;
3739
+ optionFontSizeHuge: string;
3740
+ optionHeightTiny: string;
3741
+ optionHeightSmall: string;
3742
+ optionHeightMedium: string;
3743
+ optionHeightLarge: string;
3744
+ optionHeightHuge: string;
3745
+ borderRadius: string;
3746
+ color: string;
3747
+ groupHeaderTextColor: string;
3748
+ actionDividerColor: string;
3749
+ optionTextColor: string;
3750
+ optionTextColorPressed: string;
3751
+ optionTextColorDisabled: string;
3752
+ optionTextColorActive: string;
3753
+ optionOpacityDisabled: string;
3754
+ optionCheckColor: string;
3755
+ optionColorPending: string;
3756
+ optionColorActive: string;
3757
+ optionColorActivePending: string;
3758
+ actionTextColor: string;
3759
+ loadingColor: string;
3760
+ height: string;
3761
+ paddingTiny: string;
3762
+ paddingSmall: string;
3763
+ paddingMedium: string;
3764
+ paddingLarge: string;
3765
+ paddingHuge: string;
3766
+ optionPaddingTiny: string;
3767
+ optionPaddingSmall: string;
3768
+ optionPaddingMedium: string;
3769
+ optionPaddingLarge: string;
3770
+ optionPaddingHuge: string;
3771
+ loadingSize: string;
3772
+ }, {
3773
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
3774
+ height: string;
3775
+ width: string;
3776
+ borderRadius: string;
3777
+ color: string;
3778
+ colorHover: string;
3779
+ railInsetHorizontalBottom: string;
3780
+ railInsetHorizontalTop: string;
3781
+ railInsetVerticalRight: string;
3782
+ railInsetVerticalLeft: string;
3783
+ railColor: string;
3784
+ }, any>;
3785
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
3786
+ fontSizeTiny: string;
3787
+ fontSizeSmall: string;
3788
+ fontSizeMedium: string;
3789
+ fontSizeLarge: string;
3790
+ fontSizeHuge: string;
3791
+ textColor: string;
3792
+ iconColor: string;
3793
+ extraTextColor: string;
3794
+ iconSizeTiny: string;
3795
+ iconSizeSmall: string;
3796
+ iconSizeMedium: string;
3797
+ iconSizeLarge: string;
3798
+ iconSizeHuge: string;
3799
+ }, any>;
3800
+ }>;
3801
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
3802
+ fontWeight: string;
3803
+ countTextColorDisabled: string;
3804
+ countTextColor: string;
3805
+ heightTiny: string;
3806
+ heightSmall: string;
3807
+ heightMedium: string;
3808
+ heightLarge: string;
3809
+ fontSizeTiny: string;
3810
+ fontSizeSmall: string;
3811
+ fontSizeMedium: string;
3812
+ fontSizeLarge: string;
3813
+ lineHeight: string;
3814
+ lineHeightTextarea: string;
3815
+ borderRadius: string;
3816
+ iconSize: string;
3817
+ groupLabelColor: string;
3818
+ groupLabelTextColor: string;
3819
+ textColor: string;
3820
+ textColorDisabled: string;
3821
+ textDecorationColor: string;
3822
+ caretColor: string;
3823
+ placeholderColor: string;
3824
+ placeholderColorDisabled: string;
3825
+ color: string;
3826
+ colorDisabled: string;
3827
+ colorFocus: string;
3828
+ groupLabelBorder: string;
3829
+ border: string;
3830
+ borderHover: string;
3831
+ borderDisabled: string;
3832
+ borderFocus: string;
3833
+ boxShadowFocus: string;
3834
+ loadingColor: string;
3835
+ loadingColorWarning: string;
3836
+ borderWarning: string;
3837
+ borderHoverWarning: string;
3838
+ colorFocusWarning: string;
3839
+ borderFocusWarning: string;
3840
+ boxShadowFocusWarning: string;
3841
+ caretColorWarning: string;
3842
+ loadingColorError: string;
3843
+ borderError: string;
3844
+ borderHoverError: string;
3845
+ colorFocusError: string;
3846
+ borderFocusError: string;
3847
+ boxShadowFocusError: string;
3848
+ caretColorError: string;
3849
+ clearColor: string;
3850
+ clearColorHover: string;
3851
+ clearColorPressed: string;
3852
+ iconColor: string;
3853
+ iconColorDisabled: string;
3854
+ iconColorHover: string;
3855
+ iconColorPressed: string;
3856
+ suffixTextColor: string;
3857
+ paddingTiny: string;
3858
+ paddingSmall: string;
3859
+ paddingMedium: string;
3860
+ paddingLarge: string;
3861
+ clearSize: string;
3862
+ }, any>;
3863
+ };
3864
+ peerOverrides: {
3865
+ InternalSelectMenu?: {
3866
+ peers?: {
3867
+ Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
3868
+ height: string;
3869
+ width: string;
3870
+ borderRadius: string;
3871
+ color: string;
3872
+ colorHover: string;
3873
+ railInsetHorizontalBottom: string;
3874
+ railInsetHorizontalTop: string;
3875
+ railInsetVerticalRight: string;
3876
+ railInsetVerticalLeft: string;
3877
+ railColor: string;
3878
+ }, any>> | undefined;
3879
+ Empty?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Empty", {
3880
+ fontSizeTiny: string;
3881
+ fontSizeSmall: string;
3882
+ fontSizeMedium: string;
3883
+ fontSizeLarge: string;
3884
+ fontSizeHuge: string;
3885
+ textColor: string;
3886
+ iconColor: string;
3887
+ extraTextColor: string;
3888
+ iconSizeTiny: string;
3889
+ iconSizeSmall: string;
3890
+ iconSizeMedium: string;
3891
+ iconSizeLarge: string;
3892
+ iconSizeHuge: string;
3893
+ }, any>> | undefined;
3894
+ } | undefined;
3895
+ } | undefined;
3896
+ Input?: {
3897
+ peers?: {
3898
+ [x: string]: any;
3899
+ } | undefined;
3900
+ } | undefined;
3901
+ };
3902
+ }>;
3903
+ cssVars: import('vue').ComputedRef<{
3904
+ "--n-menu-box-shadow": string;
3905
+ "--n-bezier": string;
3906
+ }> | undefined;
3907
+ themeClass: import('vue').Ref<string, string> | undefined;
3908
+ onRender: (() => void) | undefined;
3909
+ mergedBordered: import('vue').ComputedRef<boolean>;
3910
+ namespace: import('vue').ComputedRef<string | undefined>;
3911
+ mergedClsPrefix: import('vue').Ref<string, string>;
3912
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
3913
+ readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
3914
+ readonly to: string | boolean | HTMLElement;
3915
+ readonly disabled: boolean | undefined;
3916
+ readonly loading: boolean;
3917
+ readonly bordered: boolean | undefined;
3918
+ readonly placement: import('naive-ui').PopoverPlacement;
3919
+ readonly clearable: boolean;
3920
+ readonly defaultValue: string | null;
3921
+ readonly append: boolean;
3922
+ readonly blurAfterSelect: boolean;
3923
+ readonly clearAfterSelect: boolean;
3924
+ readonly showEmpty: boolean;
3925
+ }, true, {}, import('vue').SlotsType<import('naive-ui').AutoCompleteSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
3926
+ P: {};
3927
+ B: {};
3928
+ D: {};
3929
+ C: {};
3930
+ M: {};
3931
+ Defaults: {};
3932
+ }, Readonly<import('vue').ExtractPropTypes<{
3933
+ readonly to: {
3934
+ type: import('vue').PropType<HTMLElement | string | boolean>;
3935
+ default: undefined;
3936
+ };
3937
+ readonly menuProps: import('vue').PropType<import('vue').HTMLAttributes>;
3938
+ readonly append: BooleanConstructor;
3939
+ readonly bordered: {
3940
+ readonly type: import('vue').PropType<boolean | undefined>;
3941
+ readonly default: undefined;
3942
+ };
3943
+ readonly clearable: {
3944
+ readonly type: BooleanConstructor;
3945
+ readonly default: undefined;
3946
+ };
3947
+ readonly defaultValue: {
3948
+ readonly type: import('vue').PropType<string | null>;
3949
+ readonly default: null;
3950
+ };
3951
+ readonly loading: {
3952
+ readonly type: BooleanConstructor;
3953
+ readonly default: undefined;
3954
+ };
3955
+ readonly disabled: {
3956
+ readonly type: import('vue').PropType<boolean | undefined>;
3957
+ readonly default: undefined;
3958
+ };
3959
+ readonly placeholder: StringConstructor;
3960
+ readonly placement: {
3961
+ readonly type: import('vue').PropType<import('naive-ui').PopoverPlacement>;
3962
+ readonly default: "bottom-start";
3963
+ };
3964
+ readonly value: StringConstructor;
3965
+ readonly blurAfterSelect: BooleanConstructor;
3966
+ readonly clearAfterSelect: BooleanConstructor;
3967
+ readonly getShow: import('vue').PropType<(inputValue: string) => boolean>;
3968
+ readonly showEmpty: BooleanConstructor;
3969
+ readonly inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
3970
+ readonly renderOption: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderOption>;
3971
+ readonly renderLabel: import('vue').PropType<import('naive-ui/es/_internal/select-menu/src/interface').RenderLabel>;
3972
+ readonly size: import('vue').PropType<"small" | "medium" | "large">;
3973
+ readonly options: {
3974
+ readonly type: import('vue').PropType<import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions>;
3975
+ readonly default: () => never[];
3976
+ };
3977
+ readonly zIndex: NumberConstructor;
3978
+ readonly status: import('vue').PropType<import('naive-ui/es/form/src/interface').FormValidationStatus>;
3979
+ readonly 'onUpdate:value': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue>>;
3980
+ readonly onUpdateValue: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue>>;
3981
+ readonly onSelect: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnSelect>>;
3982
+ readonly onBlur: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
3983
+ readonly onFocus: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: FocusEvent) => void>>;
3984
+ readonly onInput: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/auto-complete/src/interface').OnUpdateValue> | undefined>;
3985
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
3986
+ menuBoxShadow: string;
3987
+ }, {
3988
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
3989
+ optionFontSizeTiny: string;
3990
+ optionFontSizeSmall: string;
3991
+ optionFontSizeMedium: string;
3992
+ optionFontSizeLarge: string;
3993
+ optionFontSizeHuge: string;
3994
+ optionHeightTiny: string;
3995
+ optionHeightSmall: string;
3996
+ optionHeightMedium: string;
3997
+ optionHeightLarge: string;
3998
+ optionHeightHuge: string;
3999
+ borderRadius: string;
4000
+ color: string;
4001
+ groupHeaderTextColor: string;
4002
+ actionDividerColor: string;
4003
+ optionTextColor: string;
4004
+ optionTextColorPressed: string;
4005
+ optionTextColorDisabled: string;
4006
+ optionTextColorActive: string;
4007
+ optionOpacityDisabled: string;
4008
+ optionCheckColor: string;
4009
+ optionColorPending: string;
4010
+ optionColorActive: string;
4011
+ optionColorActivePending: string;
4012
+ actionTextColor: string;
4013
+ loadingColor: string;
4014
+ height: string;
4015
+ paddingTiny: string;
4016
+ paddingSmall: string;
4017
+ paddingMedium: string;
4018
+ paddingLarge: string;
4019
+ paddingHuge: string;
4020
+ optionPaddingTiny: string;
4021
+ optionPaddingSmall: string;
4022
+ optionPaddingMedium: string;
4023
+ optionPaddingLarge: string;
4024
+ optionPaddingHuge: string;
4025
+ loadingSize: string;
4026
+ }, {
4027
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
4028
+ height: string;
4029
+ width: string;
4030
+ borderRadius: string;
4031
+ color: string;
4032
+ colorHover: string;
4033
+ railInsetHorizontalBottom: string;
4034
+ railInsetHorizontalTop: string;
4035
+ railInsetVerticalRight: string;
4036
+ railInsetVerticalLeft: string;
4037
+ railColor: string;
4038
+ }, any>;
4039
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
4040
+ fontSizeTiny: string;
4041
+ fontSizeSmall: string;
4042
+ fontSizeMedium: string;
4043
+ fontSizeLarge: string;
4044
+ fontSizeHuge: string;
4045
+ textColor: string;
4046
+ iconColor: string;
4047
+ extraTextColor: string;
4048
+ iconSizeTiny: string;
4049
+ iconSizeSmall: string;
4050
+ iconSizeMedium: string;
4051
+ iconSizeLarge: string;
4052
+ iconSizeHuge: string;
4053
+ }, any>;
4054
+ }>;
4055
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
4056
+ fontWeight: string;
4057
+ countTextColorDisabled: string;
4058
+ countTextColor: string;
4059
+ heightTiny: string;
4060
+ heightSmall: string;
4061
+ heightMedium: string;
4062
+ heightLarge: string;
4063
+ fontSizeTiny: string;
4064
+ fontSizeSmall: string;
4065
+ fontSizeMedium: string;
4066
+ fontSizeLarge: string;
4067
+ lineHeight: string;
4068
+ lineHeightTextarea: string;
4069
+ borderRadius: string;
4070
+ iconSize: string;
4071
+ groupLabelColor: string;
4072
+ groupLabelTextColor: string;
4073
+ textColor: string;
4074
+ textColorDisabled: string;
4075
+ textDecorationColor: string;
4076
+ caretColor: string;
4077
+ placeholderColor: string;
4078
+ placeholderColorDisabled: string;
4079
+ color: string;
4080
+ colorDisabled: string;
4081
+ colorFocus: string;
4082
+ groupLabelBorder: string;
4083
+ border: string;
4084
+ borderHover: string;
4085
+ borderDisabled: string;
4086
+ borderFocus: string;
4087
+ boxShadowFocus: string;
4088
+ loadingColor: string;
4089
+ loadingColorWarning: string;
4090
+ borderWarning: string;
4091
+ borderHoverWarning: string;
4092
+ colorFocusWarning: string;
4093
+ borderFocusWarning: string;
4094
+ boxShadowFocusWarning: string;
4095
+ caretColorWarning: string;
4096
+ loadingColorError: string;
4097
+ borderError: string;
4098
+ borderHoverError: string;
4099
+ colorFocusError: string;
4100
+ borderFocusError: string;
4101
+ boxShadowFocusError: string;
4102
+ caretColorError: string;
4103
+ clearColor: string;
4104
+ clearColorHover: string;
4105
+ clearColorPressed: string;
4106
+ iconColor: string;
4107
+ iconColorDisabled: string;
4108
+ iconColorHover: string;
4109
+ iconColorPressed: string;
4110
+ suffixTextColor: string;
4111
+ paddingTiny: string;
4112
+ paddingSmall: string;
4113
+ paddingMedium: string;
4114
+ paddingLarge: string;
4115
+ clearSize: string;
4116
+ }, any>;
4117
+ }>>;
4118
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
4119
+ menuBoxShadow: string;
4120
+ }, {
4121
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
4122
+ optionFontSizeTiny: string;
4123
+ optionFontSizeSmall: string;
4124
+ optionFontSizeMedium: string;
4125
+ optionFontSizeLarge: string;
4126
+ optionFontSizeHuge: string;
4127
+ optionHeightTiny: string;
4128
+ optionHeightSmall: string;
4129
+ optionHeightMedium: string;
4130
+ optionHeightLarge: string;
4131
+ optionHeightHuge: string;
4132
+ borderRadius: string;
4133
+ color: string;
4134
+ groupHeaderTextColor: string;
4135
+ actionDividerColor: string;
4136
+ optionTextColor: string;
4137
+ optionTextColorPressed: string;
4138
+ optionTextColorDisabled: string;
4139
+ optionTextColorActive: string;
4140
+ optionOpacityDisabled: string;
4141
+ optionCheckColor: string;
4142
+ optionColorPending: string;
4143
+ optionColorActive: string;
4144
+ optionColorActivePending: string;
4145
+ actionTextColor: string;
4146
+ loadingColor: string;
4147
+ height: string;
4148
+ paddingTiny: string;
4149
+ paddingSmall: string;
4150
+ paddingMedium: string;
4151
+ paddingLarge: string;
4152
+ paddingHuge: string;
4153
+ optionPaddingTiny: string;
4154
+ optionPaddingSmall: string;
4155
+ optionPaddingMedium: string;
4156
+ optionPaddingLarge: string;
4157
+ optionPaddingHuge: string;
4158
+ loadingSize: string;
4159
+ }, {
4160
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
4161
+ height: string;
4162
+ width: string;
4163
+ borderRadius: string;
4164
+ color: string;
4165
+ colorHover: string;
4166
+ railInsetHorizontalBottom: string;
4167
+ railInsetHorizontalTop: string;
4168
+ railInsetVerticalRight: string;
4169
+ railInsetVerticalLeft: string;
4170
+ railColor: string;
4171
+ }, any>;
4172
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
4173
+ fontSizeTiny: string;
4174
+ fontSizeSmall: string;
4175
+ fontSizeMedium: string;
4176
+ fontSizeLarge: string;
4177
+ fontSizeHuge: string;
4178
+ textColor: string;
4179
+ iconColor: string;
4180
+ extraTextColor: string;
4181
+ iconSizeTiny: string;
4182
+ iconSizeSmall: string;
4183
+ iconSizeMedium: string;
4184
+ iconSizeLarge: string;
4185
+ iconSizeHuge: string;
4186
+ }, any>;
4187
+ }>;
4188
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
4189
+ fontWeight: string;
4190
+ countTextColorDisabled: string;
4191
+ countTextColor: string;
4192
+ heightTiny: string;
4193
+ heightSmall: string;
4194
+ heightMedium: string;
4195
+ heightLarge: string;
4196
+ fontSizeTiny: string;
4197
+ fontSizeSmall: string;
4198
+ fontSizeMedium: string;
4199
+ fontSizeLarge: string;
4200
+ lineHeight: string;
4201
+ lineHeightTextarea: string;
4202
+ borderRadius: string;
4203
+ iconSize: string;
4204
+ groupLabelColor: string;
4205
+ groupLabelTextColor: string;
4206
+ textColor: string;
4207
+ textColorDisabled: string;
4208
+ textDecorationColor: string;
4209
+ caretColor: string;
4210
+ placeholderColor: string;
4211
+ placeholderColorDisabled: string;
4212
+ color: string;
4213
+ colorDisabled: string;
4214
+ colorFocus: string;
4215
+ groupLabelBorder: string;
4216
+ border: string;
4217
+ borderHover: string;
4218
+ borderDisabled: string;
4219
+ borderFocus: string;
4220
+ boxShadowFocus: string;
4221
+ loadingColor: string;
4222
+ loadingColorWarning: string;
4223
+ borderWarning: string;
4224
+ borderHoverWarning: string;
4225
+ colorFocusWarning: string;
4226
+ borderFocusWarning: string;
4227
+ boxShadowFocusWarning: string;
4228
+ caretColorWarning: string;
4229
+ loadingColorError: string;
4230
+ borderError: string;
4231
+ borderHoverError: string;
4232
+ colorFocusError: string;
4233
+ borderFocusError: string;
4234
+ boxShadowFocusError: string;
4235
+ caretColorError: string;
4236
+ clearColor: string;
4237
+ clearColorHover: string;
4238
+ clearColorPressed: string;
4239
+ iconColor: string;
4240
+ iconColorDisabled: string;
4241
+ iconColorHover: string;
4242
+ iconColorPressed: string;
4243
+ suffixTextColor: string;
4244
+ paddingTiny: string;
4245
+ paddingSmall: string;
4246
+ paddingMedium: string;
4247
+ paddingLarge: string;
4248
+ clearSize: string;
4249
+ }, any>;
4250
+ }>>>;
4251
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"AutoComplete", {
4252
+ menuBoxShadow: string;
4253
+ }, {
4254
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
4255
+ optionFontSizeTiny: string;
4256
+ optionFontSizeSmall: string;
4257
+ optionFontSizeMedium: string;
4258
+ optionFontSizeLarge: string;
4259
+ optionFontSizeHuge: string;
4260
+ optionHeightTiny: string;
4261
+ optionHeightSmall: string;
4262
+ optionHeightMedium: string;
4263
+ optionHeightLarge: string;
4264
+ optionHeightHuge: string;
4265
+ borderRadius: string;
4266
+ color: string;
4267
+ groupHeaderTextColor: string;
4268
+ actionDividerColor: string;
4269
+ optionTextColor: string;
4270
+ optionTextColorPressed: string;
4271
+ optionTextColorDisabled: string;
4272
+ optionTextColorActive: string;
4273
+ optionOpacityDisabled: string;
4274
+ optionCheckColor: string;
4275
+ optionColorPending: string;
4276
+ optionColorActive: string;
4277
+ optionColorActivePending: string;
4278
+ actionTextColor: string;
4279
+ loadingColor: string;
4280
+ height: string;
4281
+ paddingTiny: string;
4282
+ paddingSmall: string;
4283
+ paddingMedium: string;
4284
+ paddingLarge: string;
4285
+ paddingHuge: string;
4286
+ optionPaddingTiny: string;
4287
+ optionPaddingSmall: string;
4288
+ optionPaddingMedium: string;
4289
+ optionPaddingLarge: string;
4290
+ optionPaddingHuge: string;
4291
+ loadingSize: string;
4292
+ }, {
4293
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
4294
+ height: string;
4295
+ width: string;
4296
+ borderRadius: string;
4297
+ color: string;
4298
+ colorHover: string;
4299
+ railInsetHorizontalBottom: string;
4300
+ railInsetHorizontalTop: string;
4301
+ railInsetVerticalRight: string;
4302
+ railInsetVerticalLeft: string;
4303
+ railColor: string;
4304
+ }, any>;
4305
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
4306
+ fontSizeTiny: string;
4307
+ fontSizeSmall: string;
4308
+ fontSizeMedium: string;
4309
+ fontSizeLarge: string;
4310
+ fontSizeHuge: string;
4311
+ textColor: string;
4312
+ iconColor: string;
4313
+ extraTextColor: string;
4314
+ iconSizeTiny: string;
4315
+ iconSizeSmall: string;
4316
+ iconSizeMedium: string;
4317
+ iconSizeLarge: string;
4318
+ iconSizeHuge: string;
4319
+ }, any>;
4320
+ }>;
4321
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
4322
+ fontWeight: string;
4323
+ countTextColorDisabled: string;
4324
+ countTextColor: string;
4325
+ heightTiny: string;
4326
+ heightSmall: string;
4327
+ heightMedium: string;
4328
+ heightLarge: string;
4329
+ fontSizeTiny: string;
4330
+ fontSizeSmall: string;
4331
+ fontSizeMedium: string;
4332
+ fontSizeLarge: string;
4333
+ lineHeight: string;
4334
+ lineHeightTextarea: string;
4335
+ borderRadius: string;
4336
+ iconSize: string;
4337
+ groupLabelColor: string;
4338
+ groupLabelTextColor: string;
4339
+ textColor: string;
4340
+ textColorDisabled: string;
4341
+ textDecorationColor: string;
4342
+ caretColor: string;
4343
+ placeholderColor: string;
4344
+ placeholderColorDisabled: string;
4345
+ color: string;
4346
+ colorDisabled: string;
4347
+ colorFocus: string;
4348
+ groupLabelBorder: string;
4349
+ border: string;
4350
+ borderHover: string;
4351
+ borderDisabled: string;
4352
+ borderFocus: string;
4353
+ boxShadowFocus: string;
4354
+ loadingColor: string;
4355
+ loadingColorWarning: string;
4356
+ borderWarning: string;
4357
+ borderHoverWarning: string;
4358
+ colorFocusWarning: string;
4359
+ borderFocusWarning: string;
4360
+ boxShadowFocusWarning: string;
4361
+ caretColorWarning: string;
4362
+ loadingColorError: string;
4363
+ borderError: string;
4364
+ borderHoverError: string;
4365
+ colorFocusError: string;
4366
+ borderFocusError: string;
4367
+ boxShadowFocusError: string;
4368
+ caretColorError: string;
4369
+ clearColor: string;
4370
+ clearColorHover: string;
4371
+ clearColorPressed: string;
4372
+ iconColor: string;
4373
+ iconColorDisabled: string;
4374
+ iconColorHover: string;
4375
+ iconColorPressed: string;
4376
+ suffixTextColor: string;
4377
+ paddingTiny: string;
4378
+ paddingSmall: string;
4379
+ paddingMedium: string;
4380
+ paddingLarge: string;
4381
+ clearSize: string;
4382
+ }, any>;
4383
+ }>>>;
4384
+ }>> & Readonly<{}>, {
4385
+ focus: () => void;
4386
+ blur: () => void;
4387
+ inputInstRef: import('vue').Ref<{
4388
+ wrapperElRef: HTMLElement | null;
4389
+ textareaElRef: HTMLTextAreaElement | null;
4390
+ inputElRef: HTMLInputElement | null;
4391
+ isCompositing: boolean;
4392
+ blur: () => void;
4393
+ clear: () => void;
4394
+ focus: () => void;
4395
+ select: () => void;
4396
+ activate: () => void;
4397
+ deactivate: () => void;
4398
+ scrollTo: (options: ScrollToOptions) => void;
4399
+ } | null, {
4400
+ wrapperElRef: HTMLElement | null;
4401
+ textareaElRef: HTMLTextAreaElement | null;
4402
+ inputElRef: HTMLInputElement | null;
4403
+ isCompositing: boolean;
4404
+ blur: () => void;
4405
+ clear: () => void;
4406
+ focus: () => void;
4407
+ select: () => void;
4408
+ activate: () => void;
4409
+ deactivate: () => void;
4410
+ scrollTo: (options: ScrollToOptions) => void;
4411
+ } | {
4412
+ wrapperElRef: HTMLElement | null;
4413
+ textareaElRef: HTMLTextAreaElement | null;
4414
+ inputElRef: HTMLInputElement | null;
4415
+ isCompositing: boolean;
4416
+ blur: () => void;
4417
+ clear: () => void;
4418
+ focus: () => void;
4419
+ select: () => void;
4420
+ activate: () => void;
4421
+ deactivate: () => void;
4422
+ scrollTo: (options: ScrollToOptions) => void;
4423
+ } | null>;
4424
+ uncontrolledValue: import('vue').Ref<string | null, string | null>;
4425
+ mergedValue: import('vue').ComputedRef<string | null>;
4426
+ isMounted: Readonly<import('vue').Ref<boolean, boolean>>;
4427
+ adjustedTo: import('vue').ComputedRef<string | HTMLElement>;
4428
+ menuInstRef: import('vue').Ref<{
4429
+ selfRef: HTMLElement | null;
4430
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
4431
+ prev: () => void;
4432
+ next: () => void;
4433
+ } | null, {
4434
+ selfRef: HTMLElement | null;
4435
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
4436
+ prev: () => void;
4437
+ next: () => void;
4438
+ } | {
4439
+ selfRef: HTMLElement | null;
4440
+ getPendingTmNode: () => import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption> | null;
4441
+ prev: () => void;
4442
+ next: () => void;
4443
+ } | null>;
4444
+ triggerElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
4445
+ treeMate: import('vue').ComputedRef<import('treemate').TreeMate<import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | ((option: import('naive-ui/es/select/src/interface').SelectBaseOption<string | number, string | any>, selected: boolean) => import('vue').VNodeChild)>, import('naive-ui').SelectGroupOption, import('naive-ui/es/select/src/interface').SelectIgnoredOption>>;
4446
+ mergedSize: import('vue').ComputedRef<"small" | "medium" | "large">;
4447
+ mergedDisabled: import('vue').ComputedRef<boolean>;
4448
+ active: import('vue').ComputedRef<boolean>;
4449
+ mergedStatus: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').FormValidationStatus | undefined>;
4450
+ handleClear: () => void;
4451
+ handleFocus: (e: FocusEvent) => void;
4452
+ handleBlur: (e: FocusEvent) => void;
4453
+ handleInput: (value: string) => void;
4454
+ handleToggle: (option: import('treemate').TreeNode<import('naive-ui/es/select/src/interface').SelectBaseOption>) => void;
4455
+ handleClickOutsideMenu: (e: MouseEvent) => void;
4456
+ handleCompositionStart: () => void;
4457
+ handleCompositionEnd: () => void;
4458
+ handleKeyDown: (e: KeyboardEvent) => void;
4459
+ mergedTheme: import('vue').ComputedRef<{
4460
+ common: import('naive-ui').ThemeCommonVars;
4461
+ self: {
4462
+ menuBoxShadow: string;
4463
+ };
4464
+ peers: {
4465
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
4466
+ optionFontSizeTiny: string;
4467
+ optionFontSizeSmall: string;
4468
+ optionFontSizeMedium: string;
4469
+ optionFontSizeLarge: string;
4470
+ optionFontSizeHuge: string;
4471
+ optionHeightTiny: string;
4472
+ optionHeightSmall: string;
4473
+ optionHeightMedium: string;
4474
+ optionHeightLarge: string;
4475
+ optionHeightHuge: string;
4476
+ borderRadius: string;
4477
+ color: string;
4478
+ groupHeaderTextColor: string;
4479
+ actionDividerColor: string;
4480
+ optionTextColor: string;
4481
+ optionTextColorPressed: string;
4482
+ optionTextColorDisabled: string;
4483
+ optionTextColorActive: string;
4484
+ optionOpacityDisabled: string;
4485
+ optionCheckColor: string;
4486
+ optionColorPending: string;
4487
+ optionColorActive: string;
4488
+ optionColorActivePending: string;
4489
+ actionTextColor: string;
4490
+ loadingColor: string;
4491
+ height: string;
4492
+ paddingTiny: string;
4493
+ paddingSmall: string;
4494
+ paddingMedium: string;
4495
+ paddingLarge: string;
4496
+ paddingHuge: string;
4497
+ optionPaddingTiny: string;
4498
+ optionPaddingSmall: string;
4499
+ optionPaddingMedium: string;
4500
+ optionPaddingLarge: string;
4501
+ optionPaddingHuge: string;
4502
+ loadingSize: string;
4503
+ }, {
4504
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
4505
+ height: string;
4506
+ width: string;
4507
+ borderRadius: string;
4508
+ color: string;
4509
+ colorHover: string;
4510
+ railInsetHorizontalBottom: string;
4511
+ railInsetHorizontalTop: string;
4512
+ railInsetVerticalRight: string;
4513
+ railInsetVerticalLeft: string;
4514
+ railColor: string;
4515
+ }, any>;
4516
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
4517
+ fontSizeTiny: string;
4518
+ fontSizeSmall: string;
4519
+ fontSizeMedium: string;
4520
+ fontSizeLarge: string;
4521
+ fontSizeHuge: string;
4522
+ textColor: string;
4523
+ iconColor: string;
4524
+ extraTextColor: string;
4525
+ iconSizeTiny: string;
4526
+ iconSizeSmall: string;
4527
+ iconSizeMedium: string;
4528
+ iconSizeLarge: string;
4529
+ iconSizeHuge: string;
4530
+ }, any>;
4531
+ }>;
4532
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
4533
+ fontWeight: string;
4534
+ countTextColorDisabled: string;
4535
+ countTextColor: string;
4536
+ heightTiny: string;
4537
+ heightSmall: string;
4538
+ heightMedium: string;
4539
+ heightLarge: string;
4540
+ fontSizeTiny: string;
4541
+ fontSizeSmall: string;
4542
+ fontSizeMedium: string;
4543
+ fontSizeLarge: string;
4544
+ lineHeight: string;
4545
+ lineHeightTextarea: string;
4546
+ borderRadius: string;
4547
+ iconSize: string;
4548
+ groupLabelColor: string;
4549
+ groupLabelTextColor: string;
4550
+ textColor: string;
4551
+ textColorDisabled: string;
4552
+ textDecorationColor: string;
4553
+ caretColor: string;
4554
+ placeholderColor: string;
4555
+ placeholderColorDisabled: string;
4556
+ color: string;
4557
+ colorDisabled: string;
4558
+ colorFocus: string;
4559
+ groupLabelBorder: string;
4560
+ border: string;
4561
+ borderHover: string;
4562
+ borderDisabled: string;
4563
+ borderFocus: string;
4564
+ boxShadowFocus: string;
4565
+ loadingColor: string;
4566
+ loadingColorWarning: string;
4567
+ borderWarning: string;
4568
+ borderHoverWarning: string;
4569
+ colorFocusWarning: string;
4570
+ borderFocusWarning: string;
4571
+ boxShadowFocusWarning: string;
4572
+ caretColorWarning: string;
4573
+ loadingColorError: string;
4574
+ borderError: string;
4575
+ borderHoverError: string;
4576
+ colorFocusError: string;
4577
+ borderFocusError: string;
4578
+ boxShadowFocusError: string;
4579
+ caretColorError: string;
4580
+ clearColor: string;
4581
+ clearColorHover: string;
4582
+ clearColorPressed: string;
4583
+ iconColor: string;
4584
+ iconColorDisabled: string;
4585
+ iconColorHover: string;
4586
+ iconColorPressed: string;
4587
+ suffixTextColor: string;
4588
+ paddingTiny: string;
4589
+ paddingSmall: string;
4590
+ paddingMedium: string;
4591
+ paddingLarge: string;
4592
+ clearSize: string;
4593
+ }, any>;
4594
+ };
4595
+ peerOverrides: {
4596
+ InternalSelectMenu?: {
4597
+ peers?: {
4598
+ Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
4599
+ height: string;
4600
+ width: string;
4601
+ borderRadius: string;
4602
+ color: string;
4603
+ colorHover: string;
4604
+ railInsetHorizontalBottom: string;
4605
+ railInsetHorizontalTop: string;
4606
+ railInsetVerticalRight: string;
4607
+ railInsetVerticalLeft: string;
4608
+ railColor: string;
4609
+ }, any>> | undefined;
4610
+ Empty?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Empty", {
4611
+ fontSizeTiny: string;
4612
+ fontSizeSmall: string;
4613
+ fontSizeMedium: string;
4614
+ fontSizeLarge: string;
4615
+ fontSizeHuge: string;
4616
+ textColor: string;
4617
+ iconColor: string;
4618
+ extraTextColor: string;
4619
+ iconSizeTiny: string;
4620
+ iconSizeSmall: string;
4621
+ iconSizeMedium: string;
4622
+ iconSizeLarge: string;
4623
+ iconSizeHuge: string;
4624
+ }, any>> | undefined;
4625
+ } | undefined;
4626
+ } | undefined;
4627
+ Input?: {
4628
+ peers?: {
4629
+ [x: string]: any;
4630
+ } | undefined;
4631
+ } | undefined;
4632
+ };
4633
+ }>;
4634
+ cssVars: import('vue').ComputedRef<{
4635
+ "--n-menu-box-shadow": string;
4636
+ "--n-bezier": string;
4637
+ }> | undefined;
4638
+ themeClass: import('vue').Ref<string, string> | undefined;
4639
+ onRender: (() => void) | undefined;
4640
+ mergedBordered: import('vue').ComputedRef<boolean>;
4641
+ namespace: import('vue').ComputedRef<string | undefined>;
4642
+ mergedClsPrefix: import('vue').Ref<string, string>;
4643
+ }, {}, {}, {}, {
4644
+ readonly options: import('naive-ui/es/auto-complete/src/interface').AutoCompleteOptions;
4645
+ readonly to: string | boolean | HTMLElement;
4646
+ readonly disabled: boolean | undefined;
4647
+ readonly loading: boolean;
4648
+ readonly bordered: boolean | undefined;
4649
+ readonly placement: import('naive-ui').PopoverPlacement;
4650
+ readonly clearable: boolean;
4651
+ readonly defaultValue: string | null;
4652
+ readonly append: boolean;
4653
+ readonly blurAfterSelect: boolean;
4654
+ readonly clearAfterSelect: boolean;
4655
+ readonly showEmpty: boolean;
4656
+ }> | null;
4657
+ }, HTMLDivElement>;
25
4658
  export default _default;