cnhis-design-vue 3.1.14-beta.2 → 3.1.14-beta.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (686) hide show
  1. package/README.md +22 -22
  2. package/es/node_modules/css.escape/css.escape.js +110 -0
  3. package/es/node_modules/date-fns/esm/_lib/defaultOptions/index.js +6 -0
  4. package/es/node_modules/date-fns/esm/_lib/getTimezoneOffsetInMilliseconds/index.js +18 -0
  5. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeek/index.js +17 -0
  6. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeekYear/index.js +27 -0
  7. package/es/node_modules/date-fns/esm/_lib/getUTCWeek/index.js +17 -0
  8. package/es/node_modules/date-fns/esm/_lib/getUTCWeekYear/index.js +38 -0
  9. package/es/node_modules/date-fns/esm/_lib/requiredArgs/index.js +7 -0
  10. package/es/node_modules/date-fns/esm/_lib/setUTCDay/index.js +27 -0
  11. package/es/node_modules/date-fns/esm/_lib/setUTCISODay/index.js +23 -0
  12. package/es/node_modules/date-fns/esm/_lib/setUTCISOWeek/index.js +15 -0
  13. package/es/node_modules/date-fns/esm/_lib/setUTCWeek/index.js +15 -0
  14. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeek/index.js +15 -0
  15. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeekYear/index.js +15 -0
  16. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeek/index.js +25 -0
  17. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeekYear/index.js +21 -0
  18. package/es/node_modules/date-fns/esm/_lib/toInteger/index.js +15 -0
  19. package/es/node_modules/date-fns/esm/compareAsc/index.js +52 -0
  20. package/es/node_modules/date-fns/esm/constants/index.js +40 -0
  21. package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.js +49 -0
  22. package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.js +35 -0
  23. package/es/node_modules/date-fns/esm/differenceInCalendarYears/index.js +33 -0
  24. package/es/node_modules/date-fns/esm/differenceInDays/index.js +86 -0
  25. package/es/node_modules/date-fns/esm/differenceInMonths/index.js +59 -0
  26. package/es/node_modules/date-fns/esm/differenceInYears/index.js +43 -0
  27. package/es/node_modules/date-fns/esm/endOfDay/index.js +30 -0
  28. package/es/node_modules/date-fns/esm/endOfMonth/index.js +32 -0
  29. package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.js +30 -0
  30. package/es/node_modules/date-fns/esm/parse/_lib/Parser.js +32 -0
  31. package/es/node_modules/date-fns/esm/parse/_lib/Setter.js +37 -0
  32. package/es/node_modules/date-fns/esm/parse/_lib/constants.js +48 -0
  33. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMMidnightParser.js +55 -0
  34. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMParser.js +55 -0
  35. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DateParser.js +55 -0
  36. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayOfYearParser.js +52 -0
  37. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayParser.js +80 -0
  38. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayPeriodParser.js +56 -0
  39. package/es/node_modules/date-fns/esm/parse/_lib/parsers/EraParser.js +53 -0
  40. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ExtendedYearParser.js +30 -0
  41. package/es/node_modules/date-fns/esm/parse/_lib/parsers/FractionOfSecondParser.js +29 -0
  42. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js +48 -0
  43. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0to23Parser.js +41 -0
  44. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1To24Parser.js +42 -0
  45. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1to12Parser.js +50 -0
  46. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISODayParser.js +99 -0
  47. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneParser.js +46 -0
  48. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneWithZParser.js +46 -0
  49. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekParser.js +43 -0
  50. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekYearParser.js +33 -0
  51. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalDayParser.js +96 -0
  52. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekParser.js +43 -0
  53. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekYearParser.js +61 -0
  54. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MinuteParser.js +41 -0
  55. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MonthParser.js +80 -0
  56. package/es/node_modules/date-fns/esm/parse/_lib/parsers/QuarterParser.js +73 -0
  57. package/es/node_modules/date-fns/esm/parse/_lib/parsers/SecondParser.js +41 -0
  58. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneLocalDayParser.js +96 -0
  59. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneMonthParser.js +80 -0
  60. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneQuarterParser.js +73 -0
  61. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampMillisecondsParser.js +26 -0
  62. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampSecondsParser.js +26 -0
  63. package/es/node_modules/date-fns/esm/parse/_lib/parsers/YearParser.js +66 -0
  64. package/es/node_modules/date-fns/esm/parse/_lib/parsers/index.js +109 -0
  65. package/es/node_modules/date-fns/esm/parse/_lib/utils.js +133 -0
  66. package/es/node_modules/date-fns/esm/startOfDay/index.js +30 -0
  67. package/es/node_modules/date-fns/esm/toDate/index.js +55 -0
  68. package/es/node_modules/diagram-js/lib/command/CommandInterceptor.js +139 -0
  69. package/es/node_modules/diagram-js/lib/draw/BaseRenderer.js +88 -0
  70. package/es/node_modules/diagram-js/lib/features/popup-menu/PopupMenu.js +591 -0
  71. package/es/node_modules/diagram-js/lib/features/rules/RuleProvider.js +88 -0
  72. package/es/node_modules/diagram-js/lib/navigation/movecanvas/MoveCanvas.js +120 -0
  73. package/es/node_modules/diagram-js/lib/navigation/movecanvas/index.js +8 -0
  74. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomScroll.js +227 -0
  75. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomUtil.js +24 -0
  76. package/es/node_modules/diagram-js/lib/util/ClickTrap.js +23 -0
  77. package/es/node_modules/diagram-js/lib/util/Cursor.js +20 -0
  78. package/es/node_modules/diagram-js/lib/util/Event.js +22 -0
  79. package/es/node_modules/diagram-js/lib/util/Math.js +9 -0
  80. package/es/node_modules/diagram-js/lib/util/Mouse.js +30 -0
  81. package/es/node_modules/diagram-js/lib/util/Platform.js +5 -0
  82. package/es/node_modules/diagram-js/lib/util/PositionUtil.js +8 -0
  83. package/es/node_modules/diagram-js/lib/util/RenderUtil.js +25 -0
  84. package/es/node_modules/diagram-js/lib/util/SvgTransformUtil.js +48 -0
  85. package/es/node_modules/ids/dist/index.esm.js +164 -0
  86. package/es/node_modules/inherits/inherits.js +19 -0
  87. package/es/node_modules/inherits/inherits_browser.js +38 -0
  88. package/es/node_modules/inherits-browser/dist/index.es.js +3 -0
  89. package/es/node_modules/min-dash/dist/index.esm.js +169 -0
  90. package/es/node_modules/min-dom/dist/index.esm.js +588 -0
  91. package/es/node_modules/tiny-svg/dist/index.esm.js +525 -0
  92. package/es/packages/big-table/index.d.ts +4323 -0
  93. package/es/packages/big-table/index.js +18 -0
  94. package/es/packages/big-table/src/BigTable.js +4 -0
  95. package/es/packages/big-table/src/BigTable.vue.d.ts +4346 -0
  96. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +2406 -0
  97. package/es/packages/big-table/src/bigTableEmits.d.ts +2 -0
  98. package/es/packages/big-table/src/bigTableEmits.js +53 -0
  99. package/es/packages/big-table/src/bigTableProps.d.ts +198 -0
  100. package/es/packages/big-table/src/bigTableProps.js +117 -0
  101. package/es/packages/big-table/src/bigTableState.d.ts +56 -0
  102. package/es/packages/big-table/src/bigTableState.js +60 -0
  103. package/es/packages/big-table/src/components/NoData.js +4 -0
  104. package/es/packages/big-table/src/components/NoData.vue.d.ts +51 -0
  105. package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.js +72 -0
  106. package/es/packages/big-table/src/components/edit-form/edit-date.d.ts +34 -0
  107. package/es/packages/big-table/src/components/edit-form/edit-date.js +114 -0
  108. package/es/packages/big-table/src/components/edit-form/edit-input.d.ts +43 -0
  109. package/es/packages/big-table/src/components/edit-form/edit-input.js +54 -0
  110. package/es/packages/big-table/src/components/edit-form/edit-select-table.d.ts +35 -0
  111. package/es/packages/big-table/src/components/edit-form/edit-select-table.js +148 -0
  112. package/es/packages/big-table/src/components/edit-form/edit-select.d.ts +35 -0
  113. package/es/packages/big-table/src/components/edit-form/edit-select.js +91 -0
  114. package/es/packages/big-table/src/components/edit-form/edit-separate.js +4 -0
  115. package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +1247 -0
  116. package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +69 -0
  117. package/es/packages/big-table/src/components/input-button.js +4 -0
  118. package/es/packages/big-table/src/components/input-button.vue.d.ts +2252 -0
  119. package/es/packages/big-table/src/components/input-button.vue_vue_type_script_setup_true_lang.js +33 -0
  120. package/es/packages/big-table/src/components/separate.js +4 -0
  121. package/es/packages/big-table/src/components/separate.vue.d.ts +43 -0
  122. package/es/packages/big-table/src/components/separate.vue_vue_type_script_setup_true_lang.js +24 -0
  123. package/es/packages/big-table/src/constants/index.d.ts +3 -0
  124. package/es/packages/big-table/src/constants/index.js +3 -0
  125. package/es/packages/big-table/src/hooks/export.d.ts +1 -0
  126. package/es/packages/big-table/src/hooks/export.js +1 -0
  127. package/es/packages/big-table/src/hooks/useBatchEditing.d.ts +17 -0
  128. package/es/packages/big-table/src/hooks/useBatchEditing.js +289 -0
  129. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.d.ts +11 -0
  130. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +94 -0
  131. package/es/packages/big-table/src/hooks/useEdit.d.ts +1414 -0
  132. package/es/packages/big-table/src/hooks/useEdit.js +133 -0
  133. package/es/packages/big-table/src/hooks/useEvent.d.ts +6 -0
  134. package/es/packages/big-table/src/hooks/useEvent.js +70 -0
  135. package/es/packages/big-table/src/hooks/useFormat.d.ts +28 -0
  136. package/es/packages/big-table/src/hooks/useFormat.js +484 -0
  137. package/es/packages/big-table/src/hooks/useNestTable.d.ts +8 -0
  138. package/es/packages/big-table/src/hooks/useNestTable.js +85 -0
  139. package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +30 -0
  140. package/es/packages/big-table/src/hooks/useSeparateRow.js +157 -0
  141. package/es/packages/big-table/src/hooks/useTableParse.d.ts +6 -0
  142. package/es/packages/big-table/src/hooks/useTableParse.js +135 -0
  143. package/es/packages/big-table/src/utils.d.ts +59 -0
  144. package/es/packages/big-table/src/utils.js +628 -0
  145. package/es/packages/big-table/style/index.css +449 -0
  146. package/es/packages/bpmn-workflow/index.d.ts +74 -0
  147. package/es/packages/bpmn-workflow/index.js +11 -0
  148. package/es/packages/bpmn-workflow/src/BpmnWorkflow.d.ts +5 -0
  149. package/es/packages/bpmn-workflow/src/BpmnWorkflow.js +4 -0
  150. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +77 -0
  151. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.js +252 -0
  152. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +75 -0
  153. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +1420 -0
  154. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.d.ts +24 -0
  155. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.js +373 -0
  156. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.d.ts +19 -0
  157. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.js +131 -0
  158. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.d.ts +70 -0
  159. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.js +99 -0
  160. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.d.ts +21 -0
  161. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +111 -0
  162. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.d.ts +12 -0
  163. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.js +40 -0
  164. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.d.ts +16 -0
  165. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.js +18 -0
  166. package/es/packages/bpmn-workflow/src/custom/customModeler/index.d.ts +6 -0
  167. package/es/packages/bpmn-workflow/src/custom/customModeler/index.js +12 -0
  168. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.d.ts +5 -0
  169. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.js +47 -0
  170. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.d.ts +12 -0
  171. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.js +14 -0
  172. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.d.ts +5 -0
  173. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.js +10 -0
  174. package/es/packages/bpmn-workflow/src/custom/customRules/no-task.d.ts +4 -0
  175. package/es/packages/bpmn-workflow/src/custom/customRules/no-task.js +1 -0
  176. package/es/packages/bpmn-workflow/src/custom/customRules/no-task2.js +16 -0
  177. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.d.ts +1 -0
  178. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.js +15 -0
  179. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.d.ts +226 -0
  180. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.js +227 -0
  181. package/es/packages/bpmn-workflow/style/index.css +29 -0
  182. package/es/packages/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  183. package/es/packages/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  184. package/es/packages/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  185. package/es/packages/button-print/index.d.ts +7373 -0
  186. package/es/packages/button-print/index.js +11 -0
  187. package/es/packages/button-print/src/ButtonPrint.js +4 -0
  188. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +7381 -0
  189. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +480 -0
  190. package/es/packages/button-print/src/components/IdentityVerification.js +4 -0
  191. package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +4793 -0
  192. package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.js +128 -0
  193. package/es/packages/button-print/src/utils/index.d.ts +1 -0
  194. package/es/packages/button-print/src/utils/index.js +1 -0
  195. package/es/packages/button-print/src/utils/print.d.ts +41 -0
  196. package/es/packages/button-print/src/utils/print.js +325 -0
  197. package/es/packages/button-print/style/index.css +24 -0
  198. package/es/packages/chunk-upload/index.d.ts +1775 -0
  199. package/es/packages/chunk-upload/index.js +15 -0
  200. package/es/packages/chunk-upload/src/chunk-upload-new.js +4 -0
  201. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +1935 -0
  202. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.js +473 -0
  203. package/es/packages/chunk-upload/src/hooks/upload-computed.d.ts +11 -0
  204. package/es/packages/chunk-upload/src/hooks/upload-computed.js +70 -0
  205. package/es/packages/chunk-upload/src/hooks/upload-data.d.ts +63 -0
  206. package/es/packages/chunk-upload/src/hooks/upload-data.js +96 -0
  207. package/es/packages/chunk-upload/src/hooks/vod-computed.d.ts +10 -0
  208. package/es/packages/chunk-upload/src/hooks/vod-computed.js +79 -0
  209. package/es/packages/chunk-upload/src/hooks/vod-data.d.ts +23 -0
  210. package/es/packages/chunk-upload/src/hooks/vod-data.js +28 -0
  211. package/es/packages/chunk-upload/src/vod-chunk-upload/index.d.ts +2 -0
  212. package/es/packages/chunk-upload/src/vod-chunk-upload/index.js +3 -0
  213. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +4 -0
  214. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +1774 -0
  215. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.js +327 -0
  216. package/es/packages/chunk-upload/src/vod-upload-modal.d.ts +25 -0
  217. package/es/packages/chunk-upload/src/vod-upload-modal.js +95 -0
  218. package/es/packages/chunk-upload/style/index.css +365 -0
  219. package/es/packages/drag-layout/index.d.ts +20115 -0
  220. package/es/packages/drag-layout/index.js +13 -0
  221. package/es/packages/drag-layout/src/DragFormLeftItem.js +4 -0
  222. package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +7990 -0
  223. package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.js +122 -0
  224. package/es/packages/drag-layout/src/DragFormRightItem.js +4 -0
  225. package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +3226 -0
  226. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.js +267 -0
  227. package/es/packages/drag-layout/src/DragLayout.js +4 -0
  228. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +20115 -0
  229. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.js +659 -0
  230. package/es/packages/drag-layout/style/index.css +175 -0
  231. package/es/packages/editor/index.d.ts +30 -0
  232. package/es/packages/editor/index.js +10 -0
  233. package/es/packages/editor/src/Editor.d.ts +30 -0
  234. package/es/packages/editor/src/Editor.js +77 -0
  235. package/es/packages/editor/style/index.css +0 -0
  236. package/es/packages/fabric-chart/index.d.ts +199 -0
  237. package/es/packages/fabric-chart/index.js +11 -0
  238. package/es/packages/fabric-chart/src/FabricChart.js +4 -0
  239. package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +199 -0
  240. package/es/packages/fabric-chart/src/FabricChart.vue_vue_type_script_setup_true_lang.js +305 -0
  241. package/es/packages/fabric-chart/src/components/PopupMenu.d.ts +46 -0
  242. package/es/packages/fabric-chart/src/components/PopupMenu.js +105 -0
  243. package/es/packages/fabric-chart/src/components/PopupTip.js +4 -0
  244. package/es/packages/fabric-chart/src/components/PopupTip.vue.d.ts +63 -0
  245. package/es/packages/fabric-chart/src/components/PopupTip.vue_vue_type_script_setup_true_lang.js +32 -0
  246. package/es/packages/fabric-chart/src/components/useStyle.d.ts +7 -0
  247. package/es/packages/fabric-chart/src/components/useStyle.js +36 -0
  248. package/es/packages/fabric-chart/src/hooks/constant.d.ts +14 -0
  249. package/es/packages/fabric-chart/src/hooks/constant.js +36 -0
  250. package/es/packages/fabric-chart/src/hooks/index.d.ts +9 -0
  251. package/es/packages/fabric-chart/src/hooks/index.js +9 -0
  252. package/es/packages/fabric-chart/src/hooks/useBottom.d.ts +4 -0
  253. package/es/packages/fabric-chart/src/hooks/useBottom.js +85 -0
  254. package/es/packages/fabric-chart/src/hooks/useCenter.d.ts +29 -0
  255. package/es/packages/fabric-chart/src/hooks/useCenter.js +549 -0
  256. package/es/packages/fabric-chart/src/hooks/useCumputedPoint.d.ts +7 -0
  257. package/es/packages/fabric-chart/src/hooks/useCumputedPoint.js +58 -0
  258. package/es/packages/fabric-chart/src/hooks/useDraw.d.ts +42 -0
  259. package/es/packages/fabric-chart/src/hooks/useDraw.js +144 -0
  260. package/es/packages/fabric-chart/src/hooks/useEvent.d.ts +7 -0
  261. package/es/packages/fabric-chart/src/hooks/useEvent.js +75 -0
  262. package/es/packages/fabric-chart/src/hooks/useGrid.d.ts +4 -0
  263. package/es/packages/fabric-chart/src/hooks/useGrid.js +50 -0
  264. package/es/packages/fabric-chart/src/hooks/useLeft.d.ts +4 -0
  265. package/es/packages/fabric-chart/src/hooks/useLeft.js +243 -0
  266. package/es/packages/fabric-chart/src/hooks/useOther.d.ts +4 -0
  267. package/es/packages/fabric-chart/src/hooks/useOther.js +35 -0
  268. package/es/packages/fabric-chart/src/hooks/useRight.d.ts +4 -0
  269. package/es/packages/fabric-chart/src/hooks/useRight.js +90 -0
  270. package/es/packages/fabric-chart/src/hooks/useShadow.d.ts +6 -0
  271. package/es/packages/fabric-chart/src/hooks/useShadow.js +127 -0
  272. package/es/packages/fabric-chart/src/hooks/useTop.d.ts +4 -0
  273. package/es/packages/fabric-chart/src/hooks/useTop.js +142 -0
  274. package/es/packages/fabric-chart/src/interface.d.ts +122 -0
  275. package/es/packages/fabric-chart/src/interface.js +4 -0
  276. package/es/packages/fabric-chart/src/utils/index.d.ts +6823 -0
  277. package/es/packages/fabric-chart/src/utils/index.js +15081 -0
  278. package/es/packages/fabric-chart/style/index.css +43 -0
  279. package/es/packages/field-set/index.d.ts +5300 -0
  280. package/es/packages/field-set/index.js +11 -0
  281. package/es/packages/field-set/src/FieldSet.js +4 -0
  282. package/es/packages/field-set/src/FieldSet.vue.d.ts +5300 -0
  283. package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.js +22 -0
  284. package/es/packages/field-set/src/NewFieldSet.js +4 -0
  285. package/es/packages/field-set/src/NewFieldSet.vue.d.ts +2607 -0
  286. package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.js +299 -0
  287. package/es/packages/field-set/src/OldFieldSet.js +4 -0
  288. package/es/packages/field-set/src/OldFieldSet.vue.d.ts +2610 -0
  289. package/es/packages/field-set/src/OldFieldSet.vue_vue_type_script_setup_true_lang.js +330 -0
  290. package/es/packages/field-set/style/index.css +148 -0
  291. package/es/packages/form-render/index.d.ts +1729 -0
  292. package/es/packages/form-render/index.js +25 -0
  293. package/es/packages/form-render/src/FormRender.js +4 -0
  294. package/es/packages/form-render/src/FormRender.vue.d.ts +1729 -0
  295. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +187 -0
  296. package/es/packages/form-render/src/components/index.d.ts +0 -0
  297. package/es/packages/form-render/src/components/index.js +1 -0
  298. package/es/packages/form-render/src/components/renderer/cascader.d.ts +54 -0
  299. package/es/packages/form-render/src/components/renderer/cascader.js +188 -0
  300. package/es/packages/form-render/src/components/renderer/checkbox.d.ts +26 -0
  301. package/es/packages/form-render/src/components/renderer/checkbox.js +41 -0
  302. package/es/packages/form-render/src/components/renderer/combination.d.ts +32 -0
  303. package/es/packages/form-render/src/components/renderer/combination.js +112 -0
  304. package/es/packages/form-render/src/components/renderer/complex.d.ts +32 -0
  305. package/es/packages/form-render/src/components/renderer/complex.js +39 -0
  306. package/es/packages/form-render/src/components/renderer/date.d.ts +7 -0
  307. package/es/packages/form-render/src/components/renderer/date.js +83 -0
  308. package/es/packages/form-render/src/components/renderer/formItem.d.ts +9 -0
  309. package/es/packages/form-render/src/components/renderer/formItem.js +157 -0
  310. package/es/packages/form-render/src/components/renderer/index.d.ts +17 -0
  311. package/es/packages/form-render/src/components/renderer/index.js +17 -0
  312. package/es/packages/form-render/src/components/renderer/input.d.ts +15 -0
  313. package/es/packages/form-render/src/components/renderer/input.js +40 -0
  314. package/es/packages/form-render/src/components/renderer/inputGroup.d.ts +11 -0
  315. package/es/packages/form-render/src/components/renderer/inputGroup.js +8 -0
  316. package/es/packages/form-render/src/components/renderer/inputNumber.d.ts +5 -0
  317. package/es/packages/form-render/src/components/renderer/inputNumber.js +18 -0
  318. package/es/packages/form-render/src/components/renderer/labelSelect.d.ts +1 -0
  319. package/es/packages/form-render/src/components/renderer/labelSelect.js +18 -0
  320. package/es/packages/form-render/src/components/renderer/linebar.d.ts +40 -0
  321. package/es/packages/form-render/src/components/renderer/linebar.js +75 -0
  322. package/es/packages/form-render/src/components/renderer/radio.d.ts +26 -0
  323. package/es/packages/form-render/src/components/renderer/radio.js +45 -0
  324. package/es/packages/form-render/src/components/renderer/select.d.ts +47 -0
  325. package/es/packages/form-render/src/components/renderer/select.js +142 -0
  326. package/es/packages/form-render/src/components/renderer/simpleComponent.d.ts +2 -0
  327. package/es/packages/form-render/src/components/renderer/simpleComponent.js +51 -0
  328. package/es/packages/form-render/src/components/renderer/slider.d.ts +347 -0
  329. package/es/packages/form-render/src/components/renderer/slider.js +16 -0
  330. package/es/packages/form-render/src/components/renderer/switch.d.ts +23 -0
  331. package/es/packages/form-render/src/components/renderer/switch.js +47 -0
  332. package/es/packages/form-render/src/components/renderer/textarea.d.ts +848 -0
  333. package/es/packages/form-render/src/components/renderer/textarea.js +11 -0
  334. package/es/packages/form-render/src/constants/index.d.ts +40 -0
  335. package/es/packages/form-render/src/constants/index.js +41 -0
  336. package/es/packages/form-render/src/hooks/index.d.ts +14 -0
  337. package/es/packages/form-render/src/hooks/index.js +14 -0
  338. package/es/packages/form-render/src/hooks/useAnchor.d.ts +15 -0
  339. package/es/packages/form-render/src/hooks/useAnchor.js +85 -0
  340. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +40 -0
  341. package/es/packages/form-render/src/hooks/useAsyncQueue.js +137 -0
  342. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +20 -0
  343. package/es/packages/form-render/src/hooks/useBusinessBinding.js +89 -0
  344. package/es/packages/form-render/src/hooks/useChangeContext.d.ts +11 -0
  345. package/es/packages/form-render/src/hooks/useChangeContext.js +23 -0
  346. package/es/packages/form-render/src/hooks/useCommonLog.d.ts +3 -0
  347. package/es/packages/form-render/src/hooks/useCommonLog.js +10 -0
  348. package/es/packages/form-render/src/hooks/useFieldListAdaptor.d.ts +64 -0
  349. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +225 -0
  350. package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +4 -0
  351. package/es/packages/form-render/src/hooks/useFieldVisitor.js +41 -0
  352. package/es/packages/form-render/src/hooks/useFormContext.d.ts +10 -0
  353. package/es/packages/form-render/src/hooks/useFormContext.js +47 -0
  354. package/es/packages/form-render/src/hooks/useFormField.d.ts +5 -0
  355. package/es/packages/form-render/src/hooks/useFormField.js +13 -0
  356. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +9 -0
  357. package/es/packages/form-render/src/hooks/useFormItemDeps.js +28 -0
  358. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +7 -0
  359. package/es/packages/form-render/src/hooks/useFormRequest.js +12 -0
  360. package/es/packages/form-render/src/hooks/useFormValidator.d.ts +5 -0
  361. package/es/packages/form-render/src/hooks/useFormValidator.js +42 -0
  362. package/es/packages/form-render/src/hooks/useInitialData.d.ts +5 -0
  363. package/es/packages/form-render/src/hooks/useInitialData.js +11 -0
  364. package/es/packages/form-render/src/hooks/usePresetScope.d.ts +6 -0
  365. package/es/packages/form-render/src/hooks/usePresetScope.js +21 -0
  366. package/es/packages/form-render/src/hooks/useTypeNormalize.d.ts +4 -0
  367. package/es/packages/form-render/src/hooks/useTypeNormalize.js +45 -0
  368. package/es/packages/form-render/src/types/fieldItem.d.ts +99 -0
  369. package/es/packages/form-render/src/types/fieldItem.js +1 -0
  370. package/es/packages/form-render/src/types/index.d.ts +50 -0
  371. package/es/packages/form-render/src/types/index.js +1 -0
  372. package/es/packages/form-render/src/utils/index.d.ts +30 -0
  373. package/es/packages/form-render/src/utils/index.js +146 -0
  374. package/es/packages/form-render/style/index.css +140 -0
  375. package/es/packages/form-table/index.d.ts +36024 -0
  376. package/es/packages/form-table/index.js +11 -0
  377. package/es/packages/form-table/src/FormTable.js +4 -0
  378. package/es/packages/form-table/src/FormTable.vue.d.ts +36024 -0
  379. package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.js +474 -0
  380. package/es/packages/form-table/src/components/index.d.ts +35783 -0
  381. package/es/packages/form-table/src/components/index.js +54 -0
  382. package/es/packages/form-table/src/components/table-age.js +4 -0
  383. package/es/packages/form-table/src/components/table-age.vue.d.ts +4310 -0
  384. package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.js +232 -0
  385. package/es/packages/form-table/src/components/table-date-picker.js +4 -0
  386. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +5315 -0
  387. package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.js +175 -0
  388. package/es/packages/form-table/src/components/table-digital.js +4 -0
  389. package/es/packages/form-table/src/components/table-digital.vue.d.ts +2921 -0
  390. package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.js +138 -0
  391. package/es/packages/form-table/src/components/table-input-password.js +4 -0
  392. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +1629 -0
  393. package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.js +138 -0
  394. package/es/packages/form-table/src/components/table-input.js +4 -0
  395. package/es/packages/form-table/src/components/table-input.vue.d.ts +1586 -0
  396. package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.js +124 -0
  397. package/es/packages/form-table/src/components/table-month-picker.js +4 -0
  398. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +5258 -0
  399. package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.js +99 -0
  400. package/es/packages/form-table/src/components/table-search-more.js +4 -0
  401. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +1791 -0
  402. package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.js +276 -0
  403. package/es/packages/form-table/src/components/table-search.js +4 -0
  404. package/es/packages/form-table/src/components/table-search.vue.d.ts +3117 -0
  405. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +276 -0
  406. package/es/packages/form-table/src/components/table-select-multiple.js +4 -0
  407. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +1567 -0
  408. package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.js +160 -0
  409. package/es/packages/form-table/src/components/table-select.js +4 -0
  410. package/es/packages/form-table/src/components/table-select.vue.d.ts +1566 -0
  411. package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.js +155 -0
  412. package/es/packages/form-table/src/components/table-textarea.js +4 -0
  413. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +1645 -0
  414. package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.js +153 -0
  415. package/es/packages/form-table/src/components/table-time-picker.js +4 -0
  416. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +2674 -0
  417. package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.js +145 -0
  418. package/es/packages/form-table/src/components/table-tree-select.js +4 -0
  419. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +1897 -0
  420. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.js +281 -0
  421. package/es/packages/form-table/src/components/text-over-tooltip.js +4 -0
  422. package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +548 -0
  423. package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.js +62 -0
  424. package/es/packages/form-table/src/configs/index.d.ts +35 -0
  425. package/es/packages/form-table/src/configs/index.js +67 -0
  426. package/es/packages/form-table/src/hooks/index.d.ts +5 -0
  427. package/es/packages/form-table/src/hooks/index.js +5 -0
  428. package/es/packages/form-table/src/hooks/useBoundDate.d.ts +21 -0
  429. package/es/packages/form-table/src/hooks/useBoundDate.js +414 -0
  430. package/es/packages/form-table/src/hooks/useDateType.d.ts +17 -0
  431. package/es/packages/form-table/src/hooks/useDateType.js +160 -0
  432. package/es/packages/form-table/src/hooks/useFormCommon.d.ts +14 -0
  433. package/es/packages/form-table/src/hooks/useFormCommon.js +100 -0
  434. package/es/packages/form-table/src/hooks/useFormEvent.d.ts +9 -0
  435. package/es/packages/form-table/src/hooks/useFormEvent.js +67 -0
  436. package/es/packages/form-table/src/hooks/useItemDefault.d.ts +53 -0
  437. package/es/packages/form-table/src/hooks/useItemDefault.js +218 -0
  438. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.d.ts +4 -0
  439. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +18 -0
  440. package/es/packages/form-table/src/hooks/useSearch.d.ts +165 -0
  441. package/es/packages/form-table/src/hooks/useSearch.js +1153 -0
  442. package/es/packages/form-table/src/hooks/useValidate.d.ts +24 -0
  443. package/es/packages/form-table/src/hooks/useValidate.js +480 -0
  444. package/es/packages/form-table/src/types/index.d.ts +11 -0
  445. package/es/packages/form-table/src/types/index.js +1 -0
  446. package/es/packages/form-table/style/index.css +214 -0
  447. package/es/packages/grid/index.d.ts +3 -0
  448. package/es/packages/grid/index.js +14 -0
  449. package/es/packages/grid/src/Grid.d.ts +2 -0
  450. package/es/packages/grid/src/Grid.js +28 -0
  451. package/es/packages/grid/src/hooks.d.ts +1 -0
  452. package/es/packages/grid/src/hooks.js +165 -0
  453. package/es/packages/grid/style/index.css +10 -0
  454. package/es/packages/index.css +3003 -0
  455. package/es/packages/index.d.ts +30 -0
  456. package/es/packages/info-header/index.d.ts +1866 -0
  457. package/es/packages/info-header/index.js +11 -0
  458. package/es/packages/info-header/src/HiddenContent.js +4 -0
  459. package/es/packages/info-header/src/HiddenContent.vue.d.ts +379 -0
  460. package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.js +66 -0
  461. package/es/packages/info-header/src/InfoHeader.js +4 -0
  462. package/es/packages/info-header/src/InfoHeader.vue.d.ts +1867 -0
  463. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.js +233 -0
  464. package/es/packages/info-header/src/SlotRender.d.ts +22 -0
  465. package/es/packages/info-header/src/SlotRender.js +35 -0
  466. package/es/packages/info-header/style/iconfont.ttf +0 -0
  467. package/es/packages/info-header/style/index.css +118 -0
  468. package/es/packages/map/index.d.ts +2321 -0
  469. package/es/packages/map/index.js +11 -0
  470. package/es/packages/map/src/Map.js +4 -0
  471. package/es/packages/map/src/Map.vue.d.ts +2321 -0
  472. package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.js +336 -0
  473. package/es/packages/map/style/index.css +61 -0
  474. package/es/packages/scale-view/index.d.ts +4464 -0
  475. package/es/packages/scale-view/index.js +37 -0
  476. package/es/packages/scale-view/src/ScaleView.js +4 -0
  477. package/es/packages/scale-view/src/ScaleView.vue.d.ts +4287 -0
  478. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +422 -0
  479. package/es/packages/scale-view/src/components/AnswerParse.js +4 -0
  480. package/es/packages/scale-view/src/components/AnswerParse.vue.d.ts +72 -0
  481. package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.js +78 -0
  482. package/es/packages/scale-view/src/components/EvaluateCountdown.js +4 -0
  483. package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +154 -0
  484. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.js +107 -0
  485. package/es/packages/scale-view/src/components/EvaluatePage.js +4 -0
  486. package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +1509 -0
  487. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.js +139 -0
  488. package/es/packages/scale-view/src/components/LoadingCom.js +7 -0
  489. package/es/packages/scale-view/src/components/LoadingCom.vue_vue_type_template_id_413329b0_lang.js +16 -0
  490. package/es/packages/scale-view/src/components/NoData.js +4 -0
  491. package/es/packages/scale-view/src/components/NoData.vue.d.ts +51 -0
  492. package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.js +72 -0
  493. package/es/packages/scale-view/src/components/ScaleScore.d.ts +23 -0
  494. package/es/packages/scale-view/src/components/ScaleScore.js +63 -0
  495. package/es/packages/scale-view/src/components/composables/choose-common.d.ts +11 -0
  496. package/es/packages/scale-view/src/components/composables/choose-common.js +83 -0
  497. package/es/packages/scale-view/src/components/formitem/address.d.ts +3992 -0
  498. package/es/packages/scale-view/src/components/formitem/address.js +3993 -0
  499. package/es/packages/scale-view/src/components/formitem/r-address.d.ts +34 -0
  500. package/es/packages/scale-view/src/components/formitem/r-address.js +225 -0
  501. package/es/packages/scale-view/src/components/formitem/r-cascader.d.ts +43 -0
  502. package/es/packages/scale-view/src/components/formitem/r-cascader.js +133 -0
  503. package/es/packages/scale-view/src/components/formitem/r-checkbox.d.ts +43 -0
  504. package/es/packages/scale-view/src/components/formitem/r-checkbox.js +280 -0
  505. package/es/packages/scale-view/src/components/formitem/r-collection.d.ts +32 -0
  506. package/es/packages/scale-view/src/components/formitem/r-collection.js +111 -0
  507. package/es/packages/scale-view/src/components/formitem/r-datetime.d.ts +34 -0
  508. package/es/packages/scale-view/src/components/formitem/r-datetime.js +212 -0
  509. package/es/packages/scale-view/src/components/formitem/r-input.d.ts +34 -0
  510. package/es/packages/scale-view/src/components/formitem/r-input.js +86 -0
  511. package/es/packages/scale-view/src/components/formitem/r-map.d.ts +52 -0
  512. package/es/packages/scale-view/src/components/formitem/r-map.js +105 -0
  513. package/es/packages/scale-view/src/components/formitem/r-radio.d.ts +43 -0
  514. package/es/packages/scale-view/src/components/formitem/r-radio.js +240 -0
  515. package/es/packages/scale-view/src/components/formitem/r-select.d.ts +61 -0
  516. package/es/packages/scale-view/src/components/formitem/r-select.js +202 -0
  517. package/es/packages/scale-view/src/components/formitem/r-upload.d.ts +52 -0
  518. package/es/packages/scale-view/src/components/formitem/r-upload.js +221 -0
  519. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.js +4 -0
  520. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +565 -0
  521. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.js +77 -0
  522. package/es/packages/scale-view/src/hooks/scaleview-computed.d.ts +43 -0
  523. package/es/packages/scale-view/src/hooks/scaleview-computed.js +309 -0
  524. package/es/packages/scale-view/src/hooks/scaleview-init.d.ts +3 -0
  525. package/es/packages/scale-view/src/hooks/scaleview-init.js +436 -0
  526. package/es/packages/scale-view/src/hooks/scaleview-props.d.ts +115 -0
  527. package/es/packages/scale-view/src/hooks/scaleview-props.js +81 -0
  528. package/es/packages/scale-view/src/hooks/scaleview-state.d.ts +34 -0
  529. package/es/packages/scale-view/src/hooks/scaleview-state.js +38 -0
  530. package/es/packages/scale-view/src/hooks/scaleview-submit.d.ts +3 -0
  531. package/es/packages/scale-view/src/hooks/scaleview-submit.js +154 -0
  532. package/es/packages/scale-view/src/hooks/scaleview-validate.d.ts +3 -0
  533. package/es/packages/scale-view/src/hooks/scaleview-validate.js +187 -0
  534. package/es/packages/scale-view/src/hooks/use-component.d.ts +10300 -0
  535. package/es/packages/scale-view/src/hooks/use-component.js +82 -0
  536. package/es/packages/scale-view/src/hooks/use-evaluate.d.ts +21 -0
  537. package/es/packages/scale-view/src/hooks/use-evaluate.js +150 -0
  538. package/es/packages/scale-view/src/hooks/use-event.d.ts +4 -0
  539. package/es/packages/scale-view/src/hooks/use-event.js +128 -0
  540. package/es/packages/scale-view/src/hooks/use-noData.d.ts +9 -0
  541. package/es/packages/scale-view/src/hooks/use-noData.js +41 -0
  542. package/es/packages/scale-view/src/utils/judge-types.d.ts +5 -0
  543. package/es/packages/scale-view/src/utils/judge-types.js +36 -0
  544. package/es/packages/scale-view/style/index.css +738 -0
  545. package/es/packages/select-label/index.d.ts +12185 -0
  546. package/es/packages/select-label/index.js +17 -0
  547. package/es/packages/select-label/src/LabelFormContent.js +4 -0
  548. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +4592 -0
  549. package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.js +441 -0
  550. package/es/packages/select-label/src/SelectLabel.js +4 -0
  551. package/es/packages/select-label/src/SelectLabel.vue.d.ts +7609 -0
  552. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +455 -0
  553. package/es/packages/select-label/src/components/label-classify.js +4 -0
  554. package/es/packages/select-label/src/components/label-classify.vue.d.ts +3584 -0
  555. package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.js +127 -0
  556. package/es/packages/select-label/style/index.css +164 -0
  557. package/es/packages/select-person/index.d.ts +3508 -0
  558. package/es/packages/select-person/index.js +11 -0
  559. package/es/packages/select-person/src/SearchTree.js +4 -0
  560. package/es/packages/select-person/src/SearchTree.vue.d.ts +344 -0
  561. package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.js +233 -0
  562. package/es/packages/select-person/src/SelectPerson.js +4 -0
  563. package/es/packages/select-person/src/SelectPerson.vue.d.ts +3509 -0
  564. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +937 -0
  565. package/es/packages/select-person/src/utils/index.d.ts +12 -0
  566. package/es/packages/select-person/src/utils/index.js +84 -0
  567. package/es/packages/select-person/style/index.css +193 -0
  568. package/es/packages/shortcut-provider/index.d.ts +17 -0
  569. package/es/packages/shortcut-provider/index.js +13 -0
  570. package/es/packages/shortcut-provider/src/ShortcutProvider.js +4 -0
  571. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +15 -0
  572. package/es/packages/shortcut-provider/src/ShortcutProvider.vue_vue_type_script_setup_true_lang.js +32 -0
  573. package/es/packages/shortcut-provider/src/constants/index.d.ts +7 -0
  574. package/es/packages/shortcut-provider/src/constants/index.js +8 -0
  575. package/es/packages/shortcut-provider/src/hooks/index.d.ts +2 -0
  576. package/es/packages/shortcut-provider/src/hooks/index.js +2 -0
  577. package/es/packages/shortcut-provider/src/hooks/useShortcutSignature.d.ts +4 -0
  578. package/es/packages/shortcut-provider/src/hooks/useShortcutSignature.js +12 -0
  579. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +30 -0
  580. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +157 -0
  581. package/es/packages/shortcut-provider/src/types/index.d.ts +30 -0
  582. package/es/packages/shortcut-provider/src/types/index.js +1 -0
  583. package/es/packages/shortcut-provider/src/utils/index.d.ts +7 -0
  584. package/es/packages/shortcut-provider/src/utils/index.js +49 -0
  585. package/es/packages/shortcut-provider/style/index.css +3 -0
  586. package/es/packages/shortcut-setter/constant/index.d.ts +4 -0
  587. package/es/packages/shortcut-setter/constant/index.js +7 -0
  588. package/es/packages/shortcut-setter/index.d.ts +4258 -0
  589. package/es/packages/shortcut-setter/index.js +11 -0
  590. package/es/packages/shortcut-setter/src/ShortcutSetter.js +4 -0
  591. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +4258 -0
  592. package/es/packages/shortcut-setter/src/ShortcutSetter.vue_vue_type_script_setup_true_lang.js +38 -0
  593. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +4 -0
  594. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +4238 -0
  595. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue_vue_type_script_setup_true_lang.js +125 -0
  596. package/es/packages/shortcut-setter/style/index.css +8 -0
  597. package/es/packages/steps-wheel/index.d.ts +562 -0
  598. package/es/packages/steps-wheel/index.js +11 -0
  599. package/es/packages/steps-wheel/src/StepsWheel.js +4 -0
  600. package/es/packages/steps-wheel/src/StepsWheel.vue.d.ts +561 -0
  601. package/es/packages/steps-wheel/src/StepsWheel.vue_vue_type_script_setup_true_lang.js +263 -0
  602. package/es/packages/steps-wheel/style/index.css +161 -0
  603. package/es/packages/time-line/index.d.ts +1746 -0
  604. package/es/packages/time-line/index.js +11 -0
  605. package/es/packages/time-line/src/TimeLine.js +4 -0
  606. package/es/packages/time-line/src/TimeLine.vue.d.ts +1749 -0
  607. package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.js +68 -0
  608. package/es/packages/time-line/style/index.css +37 -0
  609. package/es/src/assets/iconfont/iconfont.ttf +0 -0
  610. package/es/src/assets/img/failure.d.ts +2 -0
  611. package/es/src/assets/img/failure.js +1 -0
  612. package/es/src/assets/img/icon-asc.d.ts +2 -0
  613. package/es/src/assets/img/icon-asc.js +1 -0
  614. package/es/src/assets/img/icon-desc.d.ts +2 -0
  615. package/es/src/assets/img/icon-desc.js +1 -0
  616. package/es/src/assets/img/no-permission.d.ts +2 -0
  617. package/es/src/assets/img/no-permission.js +1 -0
  618. package/es/src/assets/img/nodata.d.ts +2 -0
  619. package/es/src/assets/img/nodata.js +1 -0
  620. package/es/src/assets/img/notfound.d.ts +2 -0
  621. package/es/src/assets/img/notfound.js +1 -0
  622. package/es/src/assets/img/qr.d.ts +2 -0
  623. package/es/src/assets/img/qr.js +1 -0
  624. package/es/src/assets/img/success.d.ts +2 -0
  625. package/es/src/assets/img/success.js +1 -0
  626. package/es/src/assets/img/video.d.ts +2 -0
  627. package/es/src/assets/img/video.js +1 -0
  628. package/es/src/assets/img/video_default_cover.d.ts +2 -0
  629. package/es/src/assets/img/video_default_cover.js +1 -0
  630. package/es/src/assets/img/video_hover.d.ts +2 -0
  631. package/es/src/assets/img/video_hover.js +1 -0
  632. package/es/src/assets/img/video_play_hover.d.ts +2 -0
  633. package/es/src/assets/img/video_play_hover.js +1 -0
  634. package/es/src/assets/img/xb_big.d.ts +2 -0
  635. package/es/src/assets/img/xb_big.js +1 -0
  636. package/es/src/assets/img/xb_small.d.ts +2 -0
  637. package/es/src/assets/img/xb_small.js +1 -0
  638. package/es/src/components/SelectPage/SelectPage.js +4 -0
  639. package/es/src/components/SelectPage/SelectPage.vue.d.ts +1452 -0
  640. package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.js +61 -0
  641. package/es/src/components/SelectPage/index.d.ts +2 -0
  642. package/es/src/components/SelectPage/index.js +3 -0
  643. package/es/src/components/SvgIcon/SvgIcon.js +4 -0
  644. package/es/src/components/SvgIcon/SvgIcon.vue.d.ts +43 -0
  645. package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.js +34 -0
  646. package/es/src/components/SvgIcon/index.d.ts +2 -0
  647. package/es/src/components/SvgIcon/index.js +3 -0
  648. package/es/src/components/TextOverTooltip/TextOverTooltip.js +4 -0
  649. package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +565 -0
  650. package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.js +74 -0
  651. package/es/src/components/TextOverTooltip/index.d.ts +2 -0
  652. package/es/src/components/TextOverTooltip/index.js +3 -0
  653. package/es/src/components/player-vod/index.js +4 -0
  654. package/es/src/components/player-vod/index.vue.d.ts +2 -0
  655. package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.js +12 -0
  656. package/es/src/components/player-vod/player.d.ts +17 -0
  657. package/es/src/components/player-vod/player.js +121 -0
  658. package/es/src/components/player-vod/video-list.d.ts +32 -0
  659. package/es/src/components/player-vod/video-list.js +125 -0
  660. package/es/src/components/player-vod/video-modal.d.ts +54 -0
  661. package/es/src/components/player-vod/video-modal.js +91 -0
  662. package/es/src/core/create.d.ts +1 -0
  663. package/es/src/core/create.js +8 -0
  664. package/es/src/global/variable.d.ts +2 -0
  665. package/es/src/global/variable.js +4 -0
  666. package/es/src/types/index.d.ts +10 -0
  667. package/es/src/types/index.js +1 -0
  668. package/es/src/utils/anime.d.ts +35 -0
  669. package/es/src/utils/anime.js +129 -0
  670. package/es/src/utils/clickoutside.d.ts +18 -0
  671. package/es/src/utils/clickoutside.js +48 -0
  672. package/es/src/utils/crypto.d.ts +7 -0
  673. package/es/src/utils/crypto.js +25 -0
  674. package/es/src/utils/index.d.ts +2 -0
  675. package/es/src/utils/index.js +15 -0
  676. package/es/src/utils/loadViewer.d.ts +2 -0
  677. package/es/src/utils/loadViewer.js +11 -0
  678. package/es/src/utils/loadVxe.d.ts +2 -0
  679. package/es/src/utils/loadVxe.js +12 -0
  680. package/es/src/utils/utilExpand.d.ts +1 -0
  681. package/es/src/utils/utilExpand.js +714 -0
  682. package/es/src/utils/vexutils.d.ts +10 -0
  683. package/es/src/utils/vexutils.js +80 -0
  684. package/global.d.ts +8 -8
  685. package/package.json +1 -1
  686. package/CHANGELOG.md +0 -483
@@ -0,0 +1,3584 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ classifyItem: {
3
+ type: null;
4
+ required: false;
5
+ default: () => {};
6
+ };
7
+ handleLabelChange: {
8
+ type: FunctionConstructor;
9
+ required: false;
10
+ default: () => void;
11
+ };
12
+ handleLabelColor: {
13
+ type: FunctionConstructor;
14
+ required: false;
15
+ default: () => void;
16
+ };
17
+ handleDelLabel: {
18
+ type: FunctionConstructor;
19
+ required: false;
20
+ default: () => void;
21
+ };
22
+ handleAddLabel: {
23
+ type: FunctionConstructor;
24
+ required: false;
25
+ default: () => void;
26
+ };
27
+ hanldeBlur: {
28
+ type: FunctionConstructor;
29
+ required: false;
30
+ default: () => void;
31
+ };
32
+ clearaddVal: {
33
+ type: FunctionConstructor;
34
+ required: false;
35
+ default: () => void;
36
+ };
37
+ isEdit: {
38
+ type: BooleanConstructor;
39
+ required: false;
40
+ default: boolean;
41
+ };
42
+ sourceType: {
43
+ type: StringConstructor;
44
+ required: false;
45
+ };
46
+ }, {
47
+ props: {
48
+ classifyItem: any;
49
+ handleLabelChange: Function;
50
+ handleLabelColor: Function;
51
+ handleDelLabel: Function;
52
+ handleAddLabel: Function;
53
+ hanldeBlur: Function;
54
+ clearaddVal: Function;
55
+ isEdit: boolean;
56
+ sourceType?: string | undefined;
57
+ };
58
+ itemList: any;
59
+ onHandleLabelChange: (value?: any, item?: any, classifyItem?: any) => void;
60
+ NTag: import("vue").DefineComponent<{
61
+ bordered: {
62
+ type: import("vue").PropType<boolean | undefined>;
63
+ default: undefined;
64
+ };
65
+ checked: BooleanConstructor;
66
+ checkable: BooleanConstructor;
67
+ strong: BooleanConstructor;
68
+ onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
69
+ onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
70
+ onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
71
+ 'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
72
+ onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
73
+ internalCloseFocusable: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ internalStopClickPropagation: BooleanConstructor;
78
+ onCheckedChange: {
79
+ type: import("vue").PropType<(checked: boolean) => void>;
80
+ validator: () => boolean;
81
+ default: undefined;
82
+ };
83
+ color: import("vue").PropType<import("naive-ui/es/tag/src/common-props").TagColor>;
84
+ type: {
85
+ readonly type: import("vue").PropType<"default" | "primary" | "info" | "success" | "warning" | "error">;
86
+ readonly default: "default";
87
+ };
88
+ round: BooleanConstructor;
89
+ size: {
90
+ readonly type: import("vue").PropType<"small" | "medium" | "tiny" | "large">;
91
+ readonly default: "medium";
92
+ };
93
+ closable: BooleanConstructor;
94
+ disabled: {
95
+ readonly type: import("vue").PropType<boolean | undefined>;
96
+ readonly default: undefined;
97
+ };
98
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
99
+ closeBorderRadius: string;
100
+ heightTiny: string;
101
+ heightSmall: string;
102
+ heightMedium: string;
103
+ heightLarge: string;
104
+ borderRadius: string;
105
+ opacityDisabled: string;
106
+ fontSizeTiny: string;
107
+ fontSizeSmall: string;
108
+ fontSizeMedium: string;
109
+ fontSizeLarge: string;
110
+ fontWeightStrong: string;
111
+ textColorCheckable: string;
112
+ textColorHoverCheckable: string;
113
+ textColorPressedCheckable: string;
114
+ textColorChecked: string;
115
+ colorCheckable: string;
116
+ colorHoverCheckable: string;
117
+ colorPressedCheckable: string;
118
+ colorChecked: string;
119
+ colorCheckedHover: string;
120
+ colorCheckedPressed: string;
121
+ border: string;
122
+ textColor: string;
123
+ color: string;
124
+ colorBordered: string;
125
+ closeIconColor: string;
126
+ closeIconColorHover: string;
127
+ closeIconColorPressed: string;
128
+ closeColorHover: string;
129
+ closeColorPressed: string;
130
+ borderPrimary: string;
131
+ textColorPrimary: string;
132
+ colorPrimary: string;
133
+ colorBorderedPrimary: string;
134
+ closeIconColorPrimary: string;
135
+ closeIconColorHoverPrimary: string;
136
+ closeIconColorPressedPrimary: string;
137
+ closeColorHoverPrimary: string;
138
+ closeColorPressedPrimary: string;
139
+ borderInfo: string;
140
+ textColorInfo: string;
141
+ colorInfo: string;
142
+ colorBorderedInfo: string;
143
+ closeIconColorInfo: string;
144
+ closeIconColorHoverInfo: string;
145
+ closeIconColorPressedInfo: string;
146
+ closeColorHoverInfo: string;
147
+ closeColorPressedInfo: string;
148
+ borderSuccess: string;
149
+ textColorSuccess: string;
150
+ colorSuccess: string;
151
+ colorBorderedSuccess: string;
152
+ closeIconColorSuccess: string;
153
+ closeIconColorHoverSuccess: string;
154
+ closeIconColorPressedSuccess: string;
155
+ closeColorHoverSuccess: string;
156
+ closeColorPressedSuccess: string;
157
+ borderWarning: string;
158
+ textColorWarning: string;
159
+ colorWarning: string;
160
+ colorBorderedWarning: string;
161
+ closeIconColorWarning: string;
162
+ closeIconColorHoverWarning: string;
163
+ closeIconColorPressedWarning: string;
164
+ closeColorHoverWarning: string;
165
+ closeColorPressedWarning: string;
166
+ borderError: string;
167
+ textColorError: string;
168
+ colorError: string;
169
+ colorBorderedError: string;
170
+ closeIconColorError: string;
171
+ closeIconColorHoverError: string;
172
+ closeIconColorPressedError: string;
173
+ closeColorHoverError: string;
174
+ closeColorPressedError: string;
175
+ closeIconSizeTiny: string;
176
+ closeIconSizeSmall: string;
177
+ closeIconSizeMedium: string;
178
+ closeIconSizeLarge: string;
179
+ closeSizeTiny: string;
180
+ closeSizeSmall: string;
181
+ closeSizeMedium: string;
182
+ closeSizeLarge: string;
183
+ padding: string;
184
+ closeMargin: string;
185
+ closeMarginRtl: string;
186
+ }, any>>;
187
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
188
+ closeBorderRadius: string;
189
+ heightTiny: string;
190
+ heightSmall: string;
191
+ heightMedium: string;
192
+ heightLarge: string;
193
+ borderRadius: string;
194
+ opacityDisabled: string;
195
+ fontSizeTiny: string;
196
+ fontSizeSmall: string;
197
+ fontSizeMedium: string;
198
+ fontSizeLarge: string;
199
+ fontWeightStrong: string;
200
+ textColorCheckable: string;
201
+ textColorHoverCheckable: string;
202
+ textColorPressedCheckable: string;
203
+ textColorChecked: string;
204
+ colorCheckable: string;
205
+ colorHoverCheckable: string;
206
+ colorPressedCheckable: string;
207
+ colorChecked: string;
208
+ colorCheckedHover: string;
209
+ colorCheckedPressed: string;
210
+ border: string;
211
+ textColor: string;
212
+ color: string;
213
+ colorBordered: string;
214
+ closeIconColor: string;
215
+ closeIconColorHover: string;
216
+ closeIconColorPressed: string;
217
+ closeColorHover: string;
218
+ closeColorPressed: string;
219
+ borderPrimary: string;
220
+ textColorPrimary: string;
221
+ colorPrimary: string;
222
+ colorBorderedPrimary: string;
223
+ closeIconColorPrimary: string;
224
+ closeIconColorHoverPrimary: string;
225
+ closeIconColorPressedPrimary: string;
226
+ closeColorHoverPrimary: string;
227
+ closeColorPressedPrimary: string;
228
+ borderInfo: string;
229
+ textColorInfo: string;
230
+ colorInfo: string;
231
+ colorBorderedInfo: string;
232
+ closeIconColorInfo: string;
233
+ closeIconColorHoverInfo: string;
234
+ closeIconColorPressedInfo: string;
235
+ closeColorHoverInfo: string;
236
+ closeColorPressedInfo: string;
237
+ borderSuccess: string;
238
+ textColorSuccess: string;
239
+ colorSuccess: string;
240
+ colorBorderedSuccess: string;
241
+ closeIconColorSuccess: string;
242
+ closeIconColorHoverSuccess: string;
243
+ closeIconColorPressedSuccess: string;
244
+ closeColorHoverSuccess: string;
245
+ closeColorPressedSuccess: string;
246
+ borderWarning: string;
247
+ textColorWarning: string;
248
+ colorWarning: string;
249
+ colorBorderedWarning: string;
250
+ closeIconColorWarning: string;
251
+ closeIconColorHoverWarning: string;
252
+ closeIconColorPressedWarning: string;
253
+ closeColorHoverWarning: string;
254
+ closeColorPressedWarning: string;
255
+ borderError: string;
256
+ textColorError: string;
257
+ colorError: string;
258
+ colorBorderedError: string;
259
+ closeIconColorError: string;
260
+ closeIconColorHoverError: string;
261
+ closeIconColorPressedError: string;
262
+ closeColorHoverError: string;
263
+ closeColorPressedError: string;
264
+ closeIconSizeTiny: string;
265
+ closeIconSizeSmall: string;
266
+ closeIconSizeMedium: string;
267
+ closeIconSizeLarge: string;
268
+ closeSizeTiny: string;
269
+ closeSizeSmall: string;
270
+ closeSizeMedium: string;
271
+ closeSizeLarge: string;
272
+ padding: string;
273
+ closeMargin: string;
274
+ closeMarginRtl: string;
275
+ }, any>>>;
276
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
277
+ closeBorderRadius: string;
278
+ heightTiny: string;
279
+ heightSmall: string;
280
+ heightMedium: string;
281
+ heightLarge: string;
282
+ borderRadius: string;
283
+ opacityDisabled: string;
284
+ fontSizeTiny: string;
285
+ fontSizeSmall: string;
286
+ fontSizeMedium: string;
287
+ fontSizeLarge: string;
288
+ fontWeightStrong: string;
289
+ textColorCheckable: string;
290
+ textColorHoverCheckable: string;
291
+ textColorPressedCheckable: string;
292
+ textColorChecked: string;
293
+ colorCheckable: string;
294
+ colorHoverCheckable: string;
295
+ colorPressedCheckable: string;
296
+ colorChecked: string;
297
+ colorCheckedHover: string;
298
+ colorCheckedPressed: string;
299
+ border: string;
300
+ textColor: string;
301
+ color: string;
302
+ colorBordered: string;
303
+ closeIconColor: string;
304
+ closeIconColorHover: string;
305
+ closeIconColorPressed: string;
306
+ closeColorHover: string;
307
+ closeColorPressed: string;
308
+ borderPrimary: string;
309
+ textColorPrimary: string;
310
+ colorPrimary: string;
311
+ colorBorderedPrimary: string;
312
+ closeIconColorPrimary: string;
313
+ closeIconColorHoverPrimary: string;
314
+ closeIconColorPressedPrimary: string;
315
+ closeColorHoverPrimary: string;
316
+ closeColorPressedPrimary: string;
317
+ borderInfo: string;
318
+ textColorInfo: string;
319
+ colorInfo: string;
320
+ colorBorderedInfo: string;
321
+ closeIconColorInfo: string;
322
+ closeIconColorHoverInfo: string;
323
+ closeIconColorPressedInfo: string;
324
+ closeColorHoverInfo: string;
325
+ closeColorPressedInfo: string;
326
+ borderSuccess: string;
327
+ textColorSuccess: string;
328
+ colorSuccess: string;
329
+ colorBorderedSuccess: string;
330
+ closeIconColorSuccess: string;
331
+ closeIconColorHoverSuccess: string;
332
+ closeIconColorPressedSuccess: string;
333
+ closeColorHoverSuccess: string;
334
+ closeColorPressedSuccess: string;
335
+ borderWarning: string;
336
+ textColorWarning: string;
337
+ colorWarning: string;
338
+ colorBorderedWarning: string;
339
+ closeIconColorWarning: string;
340
+ closeIconColorHoverWarning: string;
341
+ closeIconColorPressedWarning: string;
342
+ closeColorHoverWarning: string;
343
+ closeColorPressedWarning: string;
344
+ borderError: string;
345
+ textColorError: string;
346
+ colorError: string;
347
+ colorBorderedError: string;
348
+ closeIconColorError: string;
349
+ closeIconColorHoverError: string;
350
+ closeIconColorPressedError: string;
351
+ closeColorHoverError: string;
352
+ closeColorPressedError: string;
353
+ closeIconSizeTiny: string;
354
+ closeIconSizeSmall: string;
355
+ closeIconSizeMedium: string;
356
+ closeIconSizeLarge: string;
357
+ closeSizeTiny: string;
358
+ closeSizeSmall: string;
359
+ closeSizeMedium: string;
360
+ closeSizeLarge: string;
361
+ padding: string;
362
+ closeMargin: string;
363
+ closeMarginRtl: string;
364
+ }, any>>>;
365
+ }, {
366
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
367
+ mergedClsPrefix: import("vue").ComputedRef<string>;
368
+ contentRef: import("vue").Ref<HTMLElement | null>;
369
+ mergedBordered: import("vue").ComputedRef<boolean>;
370
+ handleClick: (e: MouseEvent) => void;
371
+ handleCloseClick: (e: MouseEvent) => void;
372
+ cssVars: import("vue").ComputedRef<{
373
+ '--n-font-weight-strong': string;
374
+ '--n-avatar-size-override': string;
375
+ '--n-bezier': string;
376
+ '--n-border-radius': string;
377
+ '--n-border': string;
378
+ '--n-close-icon-size': string;
379
+ '--n-close-color-pressed': string;
380
+ '--n-close-color-hover': string;
381
+ '--n-close-border-radius': string;
382
+ '--n-close-icon-color': string;
383
+ '--n-close-icon-color-hover': string;
384
+ '--n-close-icon-color-pressed': string;
385
+ '--n-close-icon-color-disabled': string;
386
+ '--n-close-margin': string;
387
+ '--n-close-margin-rtl': string;
388
+ '--n-close-size': string;
389
+ '--n-color': string;
390
+ '--n-color-checkable': string;
391
+ '--n-color-checked': string;
392
+ '--n-color-checked-hover': string;
393
+ '--n-color-checked-pressed': string;
394
+ '--n-color-hover-checkable': string;
395
+ '--n-color-pressed-checkable': string;
396
+ '--n-font-size': string;
397
+ '--n-height': string;
398
+ '--n-opacity-disabled': string;
399
+ '--n-padding': string;
400
+ '--n-text-color': string;
401
+ '--n-text-color-checkable': string;
402
+ '--n-text-color-checked': string;
403
+ '--n-text-color-hover-checkable': string;
404
+ '--n-text-color-pressed-checkable': string;
405
+ }> | undefined;
406
+ themeClass: import("vue").Ref<string> | undefined;
407
+ onRender: (() => void) | undefined;
408
+ setTextContent: (textContent: string) => void;
409
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
410
+ bordered: {
411
+ type: import("vue").PropType<boolean | undefined>;
412
+ default: undefined;
413
+ };
414
+ checked: BooleanConstructor;
415
+ checkable: BooleanConstructor;
416
+ strong: BooleanConstructor;
417
+ onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
418
+ onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
419
+ onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
420
+ 'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
421
+ onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
422
+ internalCloseFocusable: {
423
+ type: BooleanConstructor;
424
+ default: boolean;
425
+ };
426
+ internalStopClickPropagation: BooleanConstructor;
427
+ onCheckedChange: {
428
+ type: import("vue").PropType<(checked: boolean) => void>;
429
+ validator: () => boolean;
430
+ default: undefined;
431
+ };
432
+ color: import("vue").PropType<import("naive-ui/es/tag/src/common-props").TagColor>;
433
+ type: {
434
+ readonly type: import("vue").PropType<"default" | "primary" | "info" | "success" | "warning" | "error">;
435
+ readonly default: "default";
436
+ };
437
+ round: BooleanConstructor;
438
+ size: {
439
+ readonly type: import("vue").PropType<"small" | "medium" | "tiny" | "large">;
440
+ readonly default: "medium";
441
+ };
442
+ closable: BooleanConstructor;
443
+ disabled: {
444
+ readonly type: import("vue").PropType<boolean | undefined>;
445
+ readonly default: undefined;
446
+ };
447
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
448
+ closeBorderRadius: string;
449
+ heightTiny: string;
450
+ heightSmall: string;
451
+ heightMedium: string;
452
+ heightLarge: string;
453
+ borderRadius: string;
454
+ opacityDisabled: string;
455
+ fontSizeTiny: string;
456
+ fontSizeSmall: string;
457
+ fontSizeMedium: string;
458
+ fontSizeLarge: string;
459
+ fontWeightStrong: string;
460
+ textColorCheckable: string;
461
+ textColorHoverCheckable: string;
462
+ textColorPressedCheckable: string;
463
+ textColorChecked: string;
464
+ colorCheckable: string;
465
+ colorHoverCheckable: string;
466
+ colorPressedCheckable: string;
467
+ colorChecked: string;
468
+ colorCheckedHover: string;
469
+ colorCheckedPressed: string;
470
+ border: string;
471
+ textColor: string;
472
+ color: string;
473
+ colorBordered: string;
474
+ closeIconColor: string;
475
+ closeIconColorHover: string;
476
+ closeIconColorPressed: string;
477
+ closeColorHover: string;
478
+ closeColorPressed: string;
479
+ borderPrimary: string;
480
+ textColorPrimary: string;
481
+ colorPrimary: string;
482
+ colorBorderedPrimary: string;
483
+ closeIconColorPrimary: string;
484
+ closeIconColorHoverPrimary: string;
485
+ closeIconColorPressedPrimary: string;
486
+ closeColorHoverPrimary: string;
487
+ closeColorPressedPrimary: string;
488
+ borderInfo: string;
489
+ textColorInfo: string;
490
+ colorInfo: string;
491
+ colorBorderedInfo: string;
492
+ closeIconColorInfo: string;
493
+ closeIconColorHoverInfo: string;
494
+ closeIconColorPressedInfo: string;
495
+ closeColorHoverInfo: string;
496
+ closeColorPressedInfo: string;
497
+ borderSuccess: string;
498
+ textColorSuccess: string;
499
+ colorSuccess: string;
500
+ colorBorderedSuccess: string;
501
+ closeIconColorSuccess: string;
502
+ closeIconColorHoverSuccess: string;
503
+ closeIconColorPressedSuccess: string;
504
+ closeColorHoverSuccess: string;
505
+ closeColorPressedSuccess: string;
506
+ borderWarning: string;
507
+ textColorWarning: string;
508
+ colorWarning: string;
509
+ colorBorderedWarning: string;
510
+ closeIconColorWarning: string;
511
+ closeIconColorHoverWarning: string;
512
+ closeIconColorPressedWarning: string;
513
+ closeColorHoverWarning: string;
514
+ closeColorPressedWarning: string;
515
+ borderError: string;
516
+ textColorError: string;
517
+ colorError: string;
518
+ colorBorderedError: string;
519
+ closeIconColorError: string;
520
+ closeIconColorHoverError: string;
521
+ closeIconColorPressedError: string;
522
+ closeColorHoverError: string;
523
+ closeColorPressedError: string;
524
+ closeIconSizeTiny: string;
525
+ closeIconSizeSmall: string;
526
+ closeIconSizeMedium: string;
527
+ closeIconSizeLarge: string;
528
+ closeSizeTiny: string;
529
+ closeSizeSmall: string;
530
+ closeSizeMedium: string;
531
+ closeSizeLarge: string;
532
+ padding: string;
533
+ closeMargin: string;
534
+ closeMarginRtl: string;
535
+ }, any>>;
536
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
537
+ closeBorderRadius: string;
538
+ heightTiny: string;
539
+ heightSmall: string;
540
+ heightMedium: string;
541
+ heightLarge: string;
542
+ borderRadius: string;
543
+ opacityDisabled: string;
544
+ fontSizeTiny: string;
545
+ fontSizeSmall: string;
546
+ fontSizeMedium: string;
547
+ fontSizeLarge: string;
548
+ fontWeightStrong: string;
549
+ textColorCheckable: string;
550
+ textColorHoverCheckable: string;
551
+ textColorPressedCheckable: string;
552
+ textColorChecked: string;
553
+ colorCheckable: string;
554
+ colorHoverCheckable: string;
555
+ colorPressedCheckable: string;
556
+ colorChecked: string;
557
+ colorCheckedHover: string;
558
+ colorCheckedPressed: string;
559
+ border: string;
560
+ textColor: string;
561
+ color: string;
562
+ colorBordered: string;
563
+ closeIconColor: string;
564
+ closeIconColorHover: string;
565
+ closeIconColorPressed: string;
566
+ closeColorHover: string;
567
+ closeColorPressed: string;
568
+ borderPrimary: string;
569
+ textColorPrimary: string;
570
+ colorPrimary: string;
571
+ colorBorderedPrimary: string;
572
+ closeIconColorPrimary: string;
573
+ closeIconColorHoverPrimary: string;
574
+ closeIconColorPressedPrimary: string;
575
+ closeColorHoverPrimary: string;
576
+ closeColorPressedPrimary: string;
577
+ borderInfo: string;
578
+ textColorInfo: string;
579
+ colorInfo: string;
580
+ colorBorderedInfo: string;
581
+ closeIconColorInfo: string;
582
+ closeIconColorHoverInfo: string;
583
+ closeIconColorPressedInfo: string;
584
+ closeColorHoverInfo: string;
585
+ closeColorPressedInfo: string;
586
+ borderSuccess: string;
587
+ textColorSuccess: string;
588
+ colorSuccess: string;
589
+ colorBorderedSuccess: string;
590
+ closeIconColorSuccess: string;
591
+ closeIconColorHoverSuccess: string;
592
+ closeIconColorPressedSuccess: string;
593
+ closeColorHoverSuccess: string;
594
+ closeColorPressedSuccess: string;
595
+ borderWarning: string;
596
+ textColorWarning: string;
597
+ colorWarning: string;
598
+ colorBorderedWarning: string;
599
+ closeIconColorWarning: string;
600
+ closeIconColorHoverWarning: string;
601
+ closeIconColorPressedWarning: string;
602
+ closeColorHoverWarning: string;
603
+ closeColorPressedWarning: string;
604
+ borderError: string;
605
+ textColorError: string;
606
+ colorError: string;
607
+ colorBorderedError: string;
608
+ closeIconColorError: string;
609
+ closeIconColorHoverError: string;
610
+ closeIconColorPressedError: string;
611
+ closeColorHoverError: string;
612
+ closeColorPressedError: string;
613
+ closeIconSizeTiny: string;
614
+ closeIconSizeSmall: string;
615
+ closeIconSizeMedium: string;
616
+ closeIconSizeLarge: string;
617
+ closeSizeTiny: string;
618
+ closeSizeSmall: string;
619
+ closeSizeMedium: string;
620
+ closeSizeLarge: string;
621
+ padding: string;
622
+ closeMargin: string;
623
+ closeMarginRtl: string;
624
+ }, any>>>;
625
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
626
+ closeBorderRadius: string;
627
+ heightTiny: string;
628
+ heightSmall: string;
629
+ heightMedium: string;
630
+ heightLarge: string;
631
+ borderRadius: string;
632
+ opacityDisabled: string;
633
+ fontSizeTiny: string;
634
+ fontSizeSmall: string;
635
+ fontSizeMedium: string;
636
+ fontSizeLarge: string;
637
+ fontWeightStrong: string;
638
+ textColorCheckable: string;
639
+ textColorHoverCheckable: string;
640
+ textColorPressedCheckable: string;
641
+ textColorChecked: string;
642
+ colorCheckable: string;
643
+ colorHoverCheckable: string;
644
+ colorPressedCheckable: string;
645
+ colorChecked: string;
646
+ colorCheckedHover: string;
647
+ colorCheckedPressed: string;
648
+ border: string;
649
+ textColor: string;
650
+ color: string;
651
+ colorBordered: string;
652
+ closeIconColor: string;
653
+ closeIconColorHover: string;
654
+ closeIconColorPressed: string;
655
+ closeColorHover: string;
656
+ closeColorPressed: string;
657
+ borderPrimary: string;
658
+ textColorPrimary: string;
659
+ colorPrimary: string;
660
+ colorBorderedPrimary: string;
661
+ closeIconColorPrimary: string;
662
+ closeIconColorHoverPrimary: string;
663
+ closeIconColorPressedPrimary: string;
664
+ closeColorHoverPrimary: string;
665
+ closeColorPressedPrimary: string;
666
+ borderInfo: string;
667
+ textColorInfo: string;
668
+ colorInfo: string;
669
+ colorBorderedInfo: string;
670
+ closeIconColorInfo: string;
671
+ closeIconColorHoverInfo: string;
672
+ closeIconColorPressedInfo: string;
673
+ closeColorHoverInfo: string;
674
+ closeColorPressedInfo: string;
675
+ borderSuccess: string;
676
+ textColorSuccess: string;
677
+ colorSuccess: string;
678
+ colorBorderedSuccess: string;
679
+ closeIconColorSuccess: string;
680
+ closeIconColorHoverSuccess: string;
681
+ closeIconColorPressedSuccess: string;
682
+ closeColorHoverSuccess: string;
683
+ closeColorPressedSuccess: string;
684
+ borderWarning: string;
685
+ textColorWarning: string;
686
+ colorWarning: string;
687
+ colorBorderedWarning: string;
688
+ closeIconColorWarning: string;
689
+ closeIconColorHoverWarning: string;
690
+ closeIconColorPressedWarning: string;
691
+ closeColorHoverWarning: string;
692
+ closeColorPressedWarning: string;
693
+ borderError: string;
694
+ textColorError: string;
695
+ colorError: string;
696
+ colorBorderedError: string;
697
+ closeIconColorError: string;
698
+ closeIconColorHoverError: string;
699
+ closeIconColorPressedError: string;
700
+ closeColorHoverError: string;
701
+ closeColorPressedError: string;
702
+ closeIconSizeTiny: string;
703
+ closeIconSizeSmall: string;
704
+ closeIconSizeMedium: string;
705
+ closeIconSizeLarge: string;
706
+ closeSizeTiny: string;
707
+ closeSizeSmall: string;
708
+ closeSizeMedium: string;
709
+ closeSizeLarge: string;
710
+ padding: string;
711
+ closeMargin: string;
712
+ closeMarginRtl: string;
713
+ }, any>>>;
714
+ }>>, {
715
+ type: "default" | "primary" | "info" | "success" | "warning" | "error";
716
+ round: boolean;
717
+ size: "small" | "medium" | "tiny" | "large";
718
+ disabled: boolean | undefined;
719
+ checked: boolean;
720
+ strong: boolean;
721
+ bordered: boolean | undefined;
722
+ closable: boolean;
723
+ checkable: boolean;
724
+ internalCloseFocusable: boolean;
725
+ internalStopClickPropagation: boolean;
726
+ onCheckedChange: (checked: boolean) => void;
727
+ }>;
728
+ NTooltip: import("vue").DefineComponent<{
729
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
730
+ borderRadius: string;
731
+ boxShadow: string;
732
+ color: string;
733
+ textColor: string;
734
+ padding: string;
735
+ }, {
736
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
737
+ fontSize: string;
738
+ borderRadius: string;
739
+ color: string;
740
+ dividerColor: string;
741
+ textColor: string;
742
+ boxShadow: string;
743
+ space: string;
744
+ spaceArrow: string;
745
+ arrowOffset: string;
746
+ arrowOffsetVertical: string;
747
+ arrowHeight: string;
748
+ padding: string;
749
+ }, any>;
750
+ }>>;
751
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
752
+ borderRadius: string;
753
+ boxShadow: string;
754
+ color: string;
755
+ textColor: string;
756
+ padding: string;
757
+ }, {
758
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
759
+ fontSize: string;
760
+ borderRadius: string;
761
+ color: string;
762
+ dividerColor: string;
763
+ textColor: string;
764
+ boxShadow: string;
765
+ space: string;
766
+ spaceArrow: string;
767
+ arrowOffset: string;
768
+ arrowOffsetVertical: string;
769
+ arrowHeight: string;
770
+ padding: string;
771
+ }, any>;
772
+ }>>>;
773
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
774
+ borderRadius: string;
775
+ boxShadow: string;
776
+ color: string;
777
+ textColor: string;
778
+ padding: string;
779
+ }, {
780
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
781
+ fontSize: string;
782
+ borderRadius: string;
783
+ color: string;
784
+ dividerColor: string;
785
+ textColor: string;
786
+ boxShadow: string;
787
+ space: string;
788
+ spaceArrow: string;
789
+ arrowOffset: string;
790
+ arrowOffsetVertical: string;
791
+ arrowHeight: string;
792
+ padding: string;
793
+ }, any>;
794
+ }>>>;
795
+ show: {
796
+ type: import("vue").PropType<boolean | undefined>;
797
+ default: undefined;
798
+ };
799
+ defaultShow: BooleanConstructor;
800
+ showArrow: {
801
+ type: BooleanConstructor;
802
+ default: boolean;
803
+ };
804
+ trigger: {
805
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
806
+ default: string;
807
+ };
808
+ delay: {
809
+ type: NumberConstructor;
810
+ default: number;
811
+ };
812
+ duration: {
813
+ type: NumberConstructor;
814
+ default: number;
815
+ };
816
+ raw: BooleanConstructor;
817
+ placement: {
818
+ type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
819
+ default: string;
820
+ };
821
+ x: NumberConstructor;
822
+ y: NumberConstructor;
823
+ arrowPointToCenter: BooleanConstructor;
824
+ disabled: BooleanConstructor;
825
+ getDisabled: import("vue").PropType<() => boolean>;
826
+ displayDirective: {
827
+ type: import("vue").PropType<"show" | "if">;
828
+ default: string;
829
+ };
830
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
831
+ flip: {
832
+ type: BooleanConstructor;
833
+ default: boolean;
834
+ };
835
+ animated: {
836
+ type: BooleanConstructor;
837
+ default: boolean;
838
+ };
839
+ width: {
840
+ type: import("vue").PropType<number | "trigger">;
841
+ default: undefined;
842
+ };
843
+ overlap: BooleanConstructor;
844
+ keepAliveOnHover: {
845
+ type: BooleanConstructor;
846
+ default: boolean;
847
+ };
848
+ zIndex: NumberConstructor;
849
+ to: {
850
+ type: import("vue").PropType<string | boolean | HTMLElement>;
851
+ default: undefined;
852
+ };
853
+ scrollable: BooleanConstructor;
854
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
855
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
856
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
857
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
858
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
859
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
860
+ internalDeactivateImmediately: BooleanConstructor;
861
+ internalSyncTargetWithParent: BooleanConstructor;
862
+ internalInheritedEventHandlers: {
863
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
864
+ default: () => never[];
865
+ };
866
+ internalTrapFocus: BooleanConstructor;
867
+ internalExtraClass: {
868
+ type: import("vue").PropType<string[]>;
869
+ default: () => never[];
870
+ };
871
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
872
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
873
+ arrow: {
874
+ type: import("vue").PropType<boolean | undefined>;
875
+ default: undefined;
876
+ };
877
+ minWidth: NumberConstructor;
878
+ maxWidth: NumberConstructor;
879
+ }, {
880
+ popoverRef: import("vue").Ref<{
881
+ syncPosition: () => void;
882
+ setShow: (value: boolean) => void;
883
+ } | null>;
884
+ mergedTheme: import("vue").ComputedRef<{
885
+ common: {
886
+ baseColor: string;
887
+ primaryColor: string;
888
+ primaryColorHover: string;
889
+ primaryColorPressed: string;
890
+ primaryColorSuppl: string;
891
+ infoColor: string;
892
+ infoColorHover: string;
893
+ infoColorPressed: string;
894
+ infoColorSuppl: string;
895
+ successColor: string;
896
+ successColorHover: string;
897
+ successColorPressed: string;
898
+ successColorSuppl: string;
899
+ warningColor: string;
900
+ warningColorHover: string;
901
+ warningColorPressed: string;
902
+ warningColorSuppl: string;
903
+ errorColor: string;
904
+ errorColorHover: string;
905
+ errorColorPressed: string;
906
+ errorColorSuppl: string;
907
+ textColorBase: string;
908
+ textColor1: string;
909
+ textColor2: string;
910
+ textColor3: string;
911
+ textColorDisabled: string;
912
+ placeholderColor: string;
913
+ placeholderColorDisabled: string;
914
+ iconColor: string;
915
+ iconColorHover: string;
916
+ iconColorPressed: string;
917
+ iconColorDisabled: string;
918
+ opacity1: string;
919
+ opacity2: string;
920
+ opacity3: string;
921
+ opacity4: string;
922
+ opacity5: string;
923
+ dividerColor: string;
924
+ borderColor: string;
925
+ closeIconColor: string;
926
+ closeIconColorHover: string;
927
+ closeIconColorPressed: string;
928
+ closeColorHover: string;
929
+ closeColorPressed: string;
930
+ clearColor: string;
931
+ clearColorHover: string;
932
+ clearColorPressed: string;
933
+ scrollbarColor: string;
934
+ scrollbarColorHover: string;
935
+ scrollbarWidth: string;
936
+ scrollbarHeight: string;
937
+ scrollbarBorderRadius: string;
938
+ progressRailColor: string;
939
+ railColor: string;
940
+ popoverColor: string;
941
+ tableColor: string;
942
+ cardColor: string;
943
+ modalColor: string;
944
+ bodyColor: string;
945
+ tagColor: string;
946
+ avatarColor: string;
947
+ invertedColor: string;
948
+ inputColor: string;
949
+ codeColor: string;
950
+ tabColor: string;
951
+ actionColor: string;
952
+ tableHeaderColor: string;
953
+ hoverColor: string;
954
+ tableColorHover: string;
955
+ tableColorStriped: string;
956
+ pressedColor: string;
957
+ opacityDisabled: string;
958
+ inputColorDisabled: string;
959
+ buttonColor2: string;
960
+ buttonColor2Hover: string;
961
+ buttonColor2Pressed: string;
962
+ boxShadow1: string;
963
+ boxShadow2: string;
964
+ boxShadow3: string;
965
+ fontFamily: string;
966
+ fontFamilyMono: string;
967
+ fontWeight: string;
968
+ fontWeightStrong: string;
969
+ cubicBezierEaseInOut: string;
970
+ cubicBezierEaseOut: string;
971
+ cubicBezierEaseIn: string;
972
+ borderRadius: string;
973
+ borderRadiusSmall: string;
974
+ fontSize: string;
975
+ fontSizeMini: string;
976
+ fontSizeTiny: string;
977
+ fontSizeSmall: string;
978
+ fontSizeMedium: string;
979
+ fontSizeLarge: string;
980
+ fontSizeHuge: string;
981
+ lineHeight: string;
982
+ heightMini: string;
983
+ heightTiny: string;
984
+ heightSmall: string;
985
+ heightMedium: string;
986
+ heightLarge: string;
987
+ heightHuge: string;
988
+ name: "common";
989
+ };
990
+ self: {
991
+ borderRadius: string;
992
+ boxShadow: string;
993
+ color: string;
994
+ textColor: string;
995
+ padding: string;
996
+ };
997
+ peers: {
998
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
999
+ fontSize: string;
1000
+ borderRadius: string;
1001
+ color: string;
1002
+ dividerColor: string;
1003
+ textColor: string;
1004
+ boxShadow: string;
1005
+ space: string;
1006
+ spaceArrow: string;
1007
+ arrowOffset: string;
1008
+ arrowOffsetVertical: string;
1009
+ arrowHeight: string;
1010
+ padding: string;
1011
+ }, any>;
1012
+ };
1013
+ peerOverrides: {
1014
+ Popover?: {
1015
+ peers?: {
1016
+ [x: string]: any;
1017
+ } | undefined;
1018
+ } | undefined;
1019
+ };
1020
+ }>;
1021
+ popoverThemeOverrides: import("vue").ComputedRef<{
1022
+ borderRadius: string;
1023
+ boxShadow: string;
1024
+ color: string;
1025
+ textColor: string;
1026
+ padding: string;
1027
+ }>;
1028
+ syncPosition: () => void;
1029
+ setShow: (value: boolean) => void;
1030
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1031
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1032
+ borderRadius: string;
1033
+ boxShadow: string;
1034
+ color: string;
1035
+ textColor: string;
1036
+ padding: string;
1037
+ }, {
1038
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1039
+ fontSize: string;
1040
+ borderRadius: string;
1041
+ color: string;
1042
+ dividerColor: string;
1043
+ textColor: string;
1044
+ boxShadow: string;
1045
+ space: string;
1046
+ spaceArrow: string;
1047
+ arrowOffset: string;
1048
+ arrowOffsetVertical: string;
1049
+ arrowHeight: string;
1050
+ padding: string;
1051
+ }, any>;
1052
+ }>>;
1053
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1054
+ borderRadius: string;
1055
+ boxShadow: string;
1056
+ color: string;
1057
+ textColor: string;
1058
+ padding: string;
1059
+ }, {
1060
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1061
+ fontSize: string;
1062
+ borderRadius: string;
1063
+ color: string;
1064
+ dividerColor: string;
1065
+ textColor: string;
1066
+ boxShadow: string;
1067
+ space: string;
1068
+ spaceArrow: string;
1069
+ arrowOffset: string;
1070
+ arrowOffsetVertical: string;
1071
+ arrowHeight: string;
1072
+ padding: string;
1073
+ }, any>;
1074
+ }>>>;
1075
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1076
+ borderRadius: string;
1077
+ boxShadow: string;
1078
+ color: string;
1079
+ textColor: string;
1080
+ padding: string;
1081
+ }, {
1082
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1083
+ fontSize: string;
1084
+ borderRadius: string;
1085
+ color: string;
1086
+ dividerColor: string;
1087
+ textColor: string;
1088
+ boxShadow: string;
1089
+ space: string;
1090
+ spaceArrow: string;
1091
+ arrowOffset: string;
1092
+ arrowOffsetVertical: string;
1093
+ arrowHeight: string;
1094
+ padding: string;
1095
+ }, any>;
1096
+ }>>>;
1097
+ show: {
1098
+ type: import("vue").PropType<boolean | undefined>;
1099
+ default: undefined;
1100
+ };
1101
+ defaultShow: BooleanConstructor;
1102
+ showArrow: {
1103
+ type: BooleanConstructor;
1104
+ default: boolean;
1105
+ };
1106
+ trigger: {
1107
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
1108
+ default: string;
1109
+ };
1110
+ delay: {
1111
+ type: NumberConstructor;
1112
+ default: number;
1113
+ };
1114
+ duration: {
1115
+ type: NumberConstructor;
1116
+ default: number;
1117
+ };
1118
+ raw: BooleanConstructor;
1119
+ placement: {
1120
+ type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
1121
+ default: string;
1122
+ };
1123
+ x: NumberConstructor;
1124
+ y: NumberConstructor;
1125
+ arrowPointToCenter: BooleanConstructor;
1126
+ disabled: BooleanConstructor;
1127
+ getDisabled: import("vue").PropType<() => boolean>;
1128
+ displayDirective: {
1129
+ type: import("vue").PropType<"show" | "if">;
1130
+ default: string;
1131
+ };
1132
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1133
+ flip: {
1134
+ type: BooleanConstructor;
1135
+ default: boolean;
1136
+ };
1137
+ animated: {
1138
+ type: BooleanConstructor;
1139
+ default: boolean;
1140
+ };
1141
+ width: {
1142
+ type: import("vue").PropType<number | "trigger">;
1143
+ default: undefined;
1144
+ };
1145
+ overlap: BooleanConstructor;
1146
+ keepAliveOnHover: {
1147
+ type: BooleanConstructor;
1148
+ default: boolean;
1149
+ };
1150
+ zIndex: NumberConstructor;
1151
+ to: {
1152
+ type: import("vue").PropType<string | boolean | HTMLElement>;
1153
+ default: undefined;
1154
+ };
1155
+ scrollable: BooleanConstructor;
1156
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1157
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1158
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1159
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
1160
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1161
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1162
+ internalDeactivateImmediately: BooleanConstructor;
1163
+ internalSyncTargetWithParent: BooleanConstructor;
1164
+ internalInheritedEventHandlers: {
1165
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
1166
+ default: () => never[];
1167
+ };
1168
+ internalTrapFocus: BooleanConstructor;
1169
+ internalExtraClass: {
1170
+ type: import("vue").PropType<string[]>;
1171
+ default: () => never[];
1172
+ };
1173
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1174
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1175
+ arrow: {
1176
+ type: import("vue").PropType<boolean | undefined>;
1177
+ default: undefined;
1178
+ };
1179
+ minWidth: NumberConstructor;
1180
+ maxWidth: NumberConstructor;
1181
+ }>>, {
1182
+ show: boolean | undefined;
1183
+ flip: boolean;
1184
+ width: number | "trigger";
1185
+ disabled: boolean;
1186
+ duration: number;
1187
+ to: string | boolean | HTMLElement;
1188
+ raw: boolean;
1189
+ placement: import("naive-ui").PopoverPlacement;
1190
+ overlap: boolean;
1191
+ scrollable: boolean;
1192
+ trigger: import("naive-ui").PopoverTrigger;
1193
+ showArrow: boolean;
1194
+ delay: number;
1195
+ arrowPointToCenter: boolean;
1196
+ displayDirective: "show" | "if";
1197
+ keepAliveOnHover: boolean;
1198
+ internalDeactivateImmediately: boolean;
1199
+ animated: boolean;
1200
+ internalTrapFocus: boolean;
1201
+ defaultShow: boolean;
1202
+ internalSyncTargetWithParent: boolean;
1203
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
1204
+ internalExtraClass: string[];
1205
+ arrow: boolean | undefined;
1206
+ }>;
1207
+ NIcon: import("vue").DefineComponent<{
1208
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1209
+ readonly size: import("vue").PropType<string | number>;
1210
+ readonly color: StringConstructor;
1211
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1212
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1213
+ color: string;
1214
+ opacity1Depth: string;
1215
+ opacity2Depth: string;
1216
+ opacity3Depth: string;
1217
+ opacity4Depth: string;
1218
+ opacity5Depth: string;
1219
+ }, any>>;
1220
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1221
+ color: string;
1222
+ opacity1Depth: string;
1223
+ opacity2Depth: string;
1224
+ opacity3Depth: string;
1225
+ opacity4Depth: string;
1226
+ opacity5Depth: string;
1227
+ }, any>>>;
1228
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1229
+ color: string;
1230
+ opacity1Depth: string;
1231
+ opacity2Depth: string;
1232
+ opacity3Depth: string;
1233
+ opacity4Depth: string;
1234
+ opacity5Depth: string;
1235
+ }, any>>>;
1236
+ }, {
1237
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1238
+ mergedStyle: import("vue").ComputedRef<{
1239
+ fontSize: string | undefined;
1240
+ color: string | undefined;
1241
+ }>;
1242
+ cssVars: import("vue").ComputedRef<{
1243
+ '--n-bezier': string;
1244
+ '--n-color': string;
1245
+ '--n-opacity': string;
1246
+ }> | undefined;
1247
+ themeClass: import("vue").Ref<string> | undefined;
1248
+ onRender: (() => void) | undefined;
1249
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1250
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1251
+ readonly size: import("vue").PropType<string | number>;
1252
+ readonly color: StringConstructor;
1253
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1254
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1255
+ color: string;
1256
+ opacity1Depth: string;
1257
+ opacity2Depth: string;
1258
+ opacity3Depth: string;
1259
+ opacity4Depth: string;
1260
+ opacity5Depth: string;
1261
+ }, any>>;
1262
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1263
+ color: string;
1264
+ opacity1Depth: string;
1265
+ opacity2Depth: string;
1266
+ opacity3Depth: string;
1267
+ opacity4Depth: string;
1268
+ opacity5Depth: string;
1269
+ }, any>>>;
1270
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1271
+ color: string;
1272
+ opacity1Depth: string;
1273
+ opacity2Depth: string;
1274
+ opacity3Depth: string;
1275
+ opacity4Depth: string;
1276
+ opacity5Depth: string;
1277
+ }, any>>>;
1278
+ }>>, {}>;
1279
+ NButton: import("vue").DefineComponent<{
1280
+ readonly color: StringConstructor;
1281
+ readonly textColor: StringConstructor;
1282
+ readonly text: BooleanConstructor;
1283
+ readonly block: BooleanConstructor;
1284
+ readonly loading: BooleanConstructor;
1285
+ readonly disabled: BooleanConstructor;
1286
+ readonly circle: BooleanConstructor;
1287
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
1288
+ readonly ghost: BooleanConstructor;
1289
+ readonly round: BooleanConstructor;
1290
+ readonly secondary: BooleanConstructor;
1291
+ readonly tertiary: BooleanConstructor;
1292
+ readonly quaternary: BooleanConstructor;
1293
+ readonly strong: BooleanConstructor;
1294
+ readonly focusable: {
1295
+ readonly type: BooleanConstructor;
1296
+ readonly default: true;
1297
+ };
1298
+ readonly keyboard: {
1299
+ readonly type: BooleanConstructor;
1300
+ readonly default: true;
1301
+ };
1302
+ readonly tag: {
1303
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
1304
+ readonly default: "button";
1305
+ };
1306
+ readonly type: {
1307
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
1308
+ readonly default: "default";
1309
+ };
1310
+ readonly dashed: BooleanConstructor;
1311
+ readonly iconPlacement: {
1312
+ readonly type: import("vue").PropType<"left" | "right">;
1313
+ readonly default: "left";
1314
+ };
1315
+ readonly attrType: {
1316
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
1317
+ readonly default: "button";
1318
+ };
1319
+ readonly bordered: {
1320
+ readonly type: BooleanConstructor;
1321
+ readonly default: true;
1322
+ };
1323
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1324
+ readonly nativeFocusBehavior: {
1325
+ readonly type: BooleanConstructor;
1326
+ readonly default: boolean;
1327
+ };
1328
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1329
+ heightTiny: string;
1330
+ heightSmall: string;
1331
+ heightMedium: string;
1332
+ heightLarge: string;
1333
+ borderRadiusTiny: string;
1334
+ borderRadiusSmall: string;
1335
+ borderRadiusMedium: string;
1336
+ borderRadiusLarge: string;
1337
+ fontSizeTiny: string;
1338
+ fontSizeSmall: string;
1339
+ fontSizeMedium: string;
1340
+ fontSizeLarge: string;
1341
+ opacityDisabled: string;
1342
+ colorOpacitySecondary: string;
1343
+ colorOpacitySecondaryHover: string;
1344
+ colorOpacitySecondaryPressed: string;
1345
+ colorSecondary: string;
1346
+ colorSecondaryHover: string;
1347
+ colorSecondaryPressed: string;
1348
+ colorTertiary: string;
1349
+ colorTertiaryHover: string;
1350
+ colorTertiaryPressed: string;
1351
+ colorQuaternary: string;
1352
+ colorQuaternaryHover: string;
1353
+ colorQuaternaryPressed: string;
1354
+ color: string;
1355
+ colorHover: string;
1356
+ colorPressed: string;
1357
+ colorFocus: string;
1358
+ colorDisabled: string;
1359
+ textColor: string;
1360
+ textColorTertiary: string;
1361
+ textColorHover: string;
1362
+ textColorPressed: string;
1363
+ textColorFocus: string;
1364
+ textColorDisabled: string;
1365
+ textColorText: string;
1366
+ textColorTextHover: string;
1367
+ textColorTextPressed: string;
1368
+ textColorTextFocus: string;
1369
+ textColorTextDisabled: string;
1370
+ textColorGhost: string;
1371
+ textColorGhostHover: string;
1372
+ textColorGhostPressed: string;
1373
+ textColorGhostFocus: string;
1374
+ textColorGhostDisabled: string;
1375
+ border: string;
1376
+ borderHover: string;
1377
+ borderPressed: string;
1378
+ borderFocus: string;
1379
+ borderDisabled: string;
1380
+ rippleColor: string;
1381
+ colorPrimary: string;
1382
+ colorHoverPrimary: string;
1383
+ colorPressedPrimary: string;
1384
+ colorFocusPrimary: string;
1385
+ colorDisabledPrimary: string;
1386
+ textColorPrimary: string;
1387
+ textColorHoverPrimary: string;
1388
+ textColorPressedPrimary: string;
1389
+ textColorFocusPrimary: string;
1390
+ textColorDisabledPrimary: string;
1391
+ textColorTextPrimary: string;
1392
+ textColorTextHoverPrimary: string;
1393
+ textColorTextPressedPrimary: string;
1394
+ textColorTextFocusPrimary: string;
1395
+ textColorTextDisabledPrimary: string;
1396
+ textColorGhostPrimary: string;
1397
+ textColorGhostHoverPrimary: string;
1398
+ textColorGhostPressedPrimary: string;
1399
+ textColorGhostFocusPrimary: string;
1400
+ textColorGhostDisabledPrimary: string;
1401
+ borderPrimary: string;
1402
+ borderHoverPrimary: string;
1403
+ borderPressedPrimary: string;
1404
+ borderFocusPrimary: string;
1405
+ borderDisabledPrimary: string;
1406
+ rippleColorPrimary: string;
1407
+ colorInfo: string;
1408
+ colorHoverInfo: string;
1409
+ colorPressedInfo: string;
1410
+ colorFocusInfo: string;
1411
+ colorDisabledInfo: string;
1412
+ textColorInfo: string;
1413
+ textColorHoverInfo: string;
1414
+ textColorPressedInfo: string;
1415
+ textColorFocusInfo: string;
1416
+ textColorDisabledInfo: string;
1417
+ textColorTextInfo: string;
1418
+ textColorTextHoverInfo: string;
1419
+ textColorTextPressedInfo: string;
1420
+ textColorTextFocusInfo: string;
1421
+ textColorTextDisabledInfo: string;
1422
+ textColorGhostInfo: string;
1423
+ textColorGhostHoverInfo: string;
1424
+ textColorGhostPressedInfo: string;
1425
+ textColorGhostFocusInfo: string;
1426
+ textColorGhostDisabledInfo: string;
1427
+ borderInfo: string;
1428
+ borderHoverInfo: string;
1429
+ borderPressedInfo: string;
1430
+ borderFocusInfo: string;
1431
+ borderDisabledInfo: string;
1432
+ rippleColorInfo: string;
1433
+ colorSuccess: string;
1434
+ colorHoverSuccess: string;
1435
+ colorPressedSuccess: string;
1436
+ colorFocusSuccess: string;
1437
+ colorDisabledSuccess: string;
1438
+ textColorSuccess: string;
1439
+ textColorHoverSuccess: string;
1440
+ textColorPressedSuccess: string;
1441
+ textColorFocusSuccess: string;
1442
+ textColorDisabledSuccess: string;
1443
+ textColorTextSuccess: string;
1444
+ textColorTextHoverSuccess: string;
1445
+ textColorTextPressedSuccess: string;
1446
+ textColorTextFocusSuccess: string;
1447
+ textColorTextDisabledSuccess: string;
1448
+ textColorGhostSuccess: string;
1449
+ textColorGhostHoverSuccess: string;
1450
+ textColorGhostPressedSuccess: string;
1451
+ textColorGhostFocusSuccess: string;
1452
+ textColorGhostDisabledSuccess: string;
1453
+ borderSuccess: string;
1454
+ borderHoverSuccess: string;
1455
+ borderPressedSuccess: string;
1456
+ borderFocusSuccess: string;
1457
+ borderDisabledSuccess: string;
1458
+ rippleColorSuccess: string;
1459
+ colorWarning: string;
1460
+ colorHoverWarning: string;
1461
+ colorPressedWarning: string;
1462
+ colorFocusWarning: string;
1463
+ colorDisabledWarning: string;
1464
+ textColorWarning: string;
1465
+ textColorHoverWarning: string;
1466
+ textColorPressedWarning: string;
1467
+ textColorFocusWarning: string;
1468
+ textColorDisabledWarning: string;
1469
+ textColorTextWarning: string;
1470
+ textColorTextHoverWarning: string;
1471
+ textColorTextPressedWarning: string;
1472
+ textColorTextFocusWarning: string;
1473
+ textColorTextDisabledWarning: string;
1474
+ textColorGhostWarning: string;
1475
+ textColorGhostHoverWarning: string;
1476
+ textColorGhostPressedWarning: string;
1477
+ textColorGhostFocusWarning: string;
1478
+ textColorGhostDisabledWarning: string;
1479
+ borderWarning: string;
1480
+ borderHoverWarning: string;
1481
+ borderPressedWarning: string;
1482
+ borderFocusWarning: string;
1483
+ borderDisabledWarning: string;
1484
+ rippleColorWarning: string;
1485
+ colorError: string;
1486
+ colorHoverError: string;
1487
+ colorPressedError: string;
1488
+ colorFocusError: string;
1489
+ colorDisabledError: string;
1490
+ textColorError: string;
1491
+ textColorHoverError: string;
1492
+ textColorPressedError: string;
1493
+ textColorFocusError: string;
1494
+ textColorDisabledError: string;
1495
+ textColorTextError: string;
1496
+ textColorTextHoverError: string;
1497
+ textColorTextPressedError: string;
1498
+ textColorTextFocusError: string;
1499
+ textColorTextDisabledError: string;
1500
+ textColorGhostError: string;
1501
+ textColorGhostHoverError: string;
1502
+ textColorGhostPressedError: string;
1503
+ textColorGhostFocusError: string;
1504
+ textColorGhostDisabledError: string;
1505
+ borderError: string;
1506
+ borderHoverError: string;
1507
+ borderPressedError: string;
1508
+ borderFocusError: string;
1509
+ borderDisabledError: string;
1510
+ rippleColorError: string;
1511
+ waveOpacity: string;
1512
+ fontWeight: string;
1513
+ fontWeightStrong: string;
1514
+ paddingTiny: string;
1515
+ paddingSmall: string;
1516
+ paddingMedium: string;
1517
+ paddingLarge: string;
1518
+ paddingRoundTiny: string;
1519
+ paddingRoundSmall: string;
1520
+ paddingRoundMedium: string;
1521
+ paddingRoundLarge: string;
1522
+ iconMarginTiny: string;
1523
+ iconMarginSmall: string;
1524
+ iconMarginMedium: string;
1525
+ iconMarginLarge: string;
1526
+ iconSizeTiny: string;
1527
+ iconSizeSmall: string;
1528
+ iconSizeMedium: string;
1529
+ iconSizeLarge: string;
1530
+ rippleDuration: string;
1531
+ }, any>>;
1532
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1533
+ heightTiny: string;
1534
+ heightSmall: string;
1535
+ heightMedium: string;
1536
+ heightLarge: string;
1537
+ borderRadiusTiny: string;
1538
+ borderRadiusSmall: string;
1539
+ borderRadiusMedium: string;
1540
+ borderRadiusLarge: string;
1541
+ fontSizeTiny: string;
1542
+ fontSizeSmall: string;
1543
+ fontSizeMedium: string;
1544
+ fontSizeLarge: string;
1545
+ opacityDisabled: string;
1546
+ colorOpacitySecondary: string;
1547
+ colorOpacitySecondaryHover: string;
1548
+ colorOpacitySecondaryPressed: string;
1549
+ colorSecondary: string;
1550
+ colorSecondaryHover: string;
1551
+ colorSecondaryPressed: string;
1552
+ colorTertiary: string;
1553
+ colorTertiaryHover: string;
1554
+ colorTertiaryPressed: string;
1555
+ colorQuaternary: string;
1556
+ colorQuaternaryHover: string;
1557
+ colorQuaternaryPressed: string;
1558
+ color: string;
1559
+ colorHover: string;
1560
+ colorPressed: string;
1561
+ colorFocus: string;
1562
+ colorDisabled: string;
1563
+ textColor: string;
1564
+ textColorTertiary: string;
1565
+ textColorHover: string;
1566
+ textColorPressed: string;
1567
+ textColorFocus: string;
1568
+ textColorDisabled: string;
1569
+ textColorText: string;
1570
+ textColorTextHover: string;
1571
+ textColorTextPressed: string;
1572
+ textColorTextFocus: string;
1573
+ textColorTextDisabled: string;
1574
+ textColorGhost: string;
1575
+ textColorGhostHover: string;
1576
+ textColorGhostPressed: string;
1577
+ textColorGhostFocus: string;
1578
+ textColorGhostDisabled: string;
1579
+ border: string;
1580
+ borderHover: string;
1581
+ borderPressed: string;
1582
+ borderFocus: string;
1583
+ borderDisabled: string;
1584
+ rippleColor: string;
1585
+ colorPrimary: string;
1586
+ colorHoverPrimary: string;
1587
+ colorPressedPrimary: string;
1588
+ colorFocusPrimary: string;
1589
+ colorDisabledPrimary: string;
1590
+ textColorPrimary: string;
1591
+ textColorHoverPrimary: string;
1592
+ textColorPressedPrimary: string;
1593
+ textColorFocusPrimary: string;
1594
+ textColorDisabledPrimary: string;
1595
+ textColorTextPrimary: string;
1596
+ textColorTextHoverPrimary: string;
1597
+ textColorTextPressedPrimary: string;
1598
+ textColorTextFocusPrimary: string;
1599
+ textColorTextDisabledPrimary: string;
1600
+ textColorGhostPrimary: string;
1601
+ textColorGhostHoverPrimary: string;
1602
+ textColorGhostPressedPrimary: string;
1603
+ textColorGhostFocusPrimary: string;
1604
+ textColorGhostDisabledPrimary: string;
1605
+ borderPrimary: string;
1606
+ borderHoverPrimary: string;
1607
+ borderPressedPrimary: string;
1608
+ borderFocusPrimary: string;
1609
+ borderDisabledPrimary: string;
1610
+ rippleColorPrimary: string;
1611
+ colorInfo: string;
1612
+ colorHoverInfo: string;
1613
+ colorPressedInfo: string;
1614
+ colorFocusInfo: string;
1615
+ colorDisabledInfo: string;
1616
+ textColorInfo: string;
1617
+ textColorHoverInfo: string;
1618
+ textColorPressedInfo: string;
1619
+ textColorFocusInfo: string;
1620
+ textColorDisabledInfo: string;
1621
+ textColorTextInfo: string;
1622
+ textColorTextHoverInfo: string;
1623
+ textColorTextPressedInfo: string;
1624
+ textColorTextFocusInfo: string;
1625
+ textColorTextDisabledInfo: string;
1626
+ textColorGhostInfo: string;
1627
+ textColorGhostHoverInfo: string;
1628
+ textColorGhostPressedInfo: string;
1629
+ textColorGhostFocusInfo: string;
1630
+ textColorGhostDisabledInfo: string;
1631
+ borderInfo: string;
1632
+ borderHoverInfo: string;
1633
+ borderPressedInfo: string;
1634
+ borderFocusInfo: string;
1635
+ borderDisabledInfo: string;
1636
+ rippleColorInfo: string;
1637
+ colorSuccess: string;
1638
+ colorHoverSuccess: string;
1639
+ colorPressedSuccess: string;
1640
+ colorFocusSuccess: string;
1641
+ colorDisabledSuccess: string;
1642
+ textColorSuccess: string;
1643
+ textColorHoverSuccess: string;
1644
+ textColorPressedSuccess: string;
1645
+ textColorFocusSuccess: string;
1646
+ textColorDisabledSuccess: string;
1647
+ textColorTextSuccess: string;
1648
+ textColorTextHoverSuccess: string;
1649
+ textColorTextPressedSuccess: string;
1650
+ textColorTextFocusSuccess: string;
1651
+ textColorTextDisabledSuccess: string;
1652
+ textColorGhostSuccess: string;
1653
+ textColorGhostHoverSuccess: string;
1654
+ textColorGhostPressedSuccess: string;
1655
+ textColorGhostFocusSuccess: string;
1656
+ textColorGhostDisabledSuccess: string;
1657
+ borderSuccess: string;
1658
+ borderHoverSuccess: string;
1659
+ borderPressedSuccess: string;
1660
+ borderFocusSuccess: string;
1661
+ borderDisabledSuccess: string;
1662
+ rippleColorSuccess: string;
1663
+ colorWarning: string;
1664
+ colorHoverWarning: string;
1665
+ colorPressedWarning: string;
1666
+ colorFocusWarning: string;
1667
+ colorDisabledWarning: string;
1668
+ textColorWarning: string;
1669
+ textColorHoverWarning: string;
1670
+ textColorPressedWarning: string;
1671
+ textColorFocusWarning: string;
1672
+ textColorDisabledWarning: string;
1673
+ textColorTextWarning: string;
1674
+ textColorTextHoverWarning: string;
1675
+ textColorTextPressedWarning: string;
1676
+ textColorTextFocusWarning: string;
1677
+ textColorTextDisabledWarning: string;
1678
+ textColorGhostWarning: string;
1679
+ textColorGhostHoverWarning: string;
1680
+ textColorGhostPressedWarning: string;
1681
+ textColorGhostFocusWarning: string;
1682
+ textColorGhostDisabledWarning: string;
1683
+ borderWarning: string;
1684
+ borderHoverWarning: string;
1685
+ borderPressedWarning: string;
1686
+ borderFocusWarning: string;
1687
+ borderDisabledWarning: string;
1688
+ rippleColorWarning: string;
1689
+ colorError: string;
1690
+ colorHoverError: string;
1691
+ colorPressedError: string;
1692
+ colorFocusError: string;
1693
+ colorDisabledError: string;
1694
+ textColorError: string;
1695
+ textColorHoverError: string;
1696
+ textColorPressedError: string;
1697
+ textColorFocusError: string;
1698
+ textColorDisabledError: string;
1699
+ textColorTextError: string;
1700
+ textColorTextHoverError: string;
1701
+ textColorTextPressedError: string;
1702
+ textColorTextFocusError: string;
1703
+ textColorTextDisabledError: string;
1704
+ textColorGhostError: string;
1705
+ textColorGhostHoverError: string;
1706
+ textColorGhostPressedError: string;
1707
+ textColorGhostFocusError: string;
1708
+ textColorGhostDisabledError: string;
1709
+ borderError: string;
1710
+ borderHoverError: string;
1711
+ borderPressedError: string;
1712
+ borderFocusError: string;
1713
+ borderDisabledError: string;
1714
+ rippleColorError: string;
1715
+ waveOpacity: string;
1716
+ fontWeight: string;
1717
+ fontWeightStrong: string;
1718
+ paddingTiny: string;
1719
+ paddingSmall: string;
1720
+ paddingMedium: string;
1721
+ paddingLarge: string;
1722
+ paddingRoundTiny: string;
1723
+ paddingRoundSmall: string;
1724
+ paddingRoundMedium: string;
1725
+ paddingRoundLarge: string;
1726
+ iconMarginTiny: string;
1727
+ iconMarginSmall: string;
1728
+ iconMarginMedium: string;
1729
+ iconMarginLarge: string;
1730
+ iconSizeTiny: string;
1731
+ iconSizeSmall: string;
1732
+ iconSizeMedium: string;
1733
+ iconSizeLarge: string;
1734
+ rippleDuration: string;
1735
+ }, any>>>;
1736
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1737
+ heightTiny: string;
1738
+ heightSmall: string;
1739
+ heightMedium: string;
1740
+ heightLarge: string;
1741
+ borderRadiusTiny: string;
1742
+ borderRadiusSmall: string;
1743
+ borderRadiusMedium: string;
1744
+ borderRadiusLarge: string;
1745
+ fontSizeTiny: string;
1746
+ fontSizeSmall: string;
1747
+ fontSizeMedium: string;
1748
+ fontSizeLarge: string;
1749
+ opacityDisabled: string;
1750
+ colorOpacitySecondary: string;
1751
+ colorOpacitySecondaryHover: string;
1752
+ colorOpacitySecondaryPressed: string;
1753
+ colorSecondary: string;
1754
+ colorSecondaryHover: string;
1755
+ colorSecondaryPressed: string;
1756
+ colorTertiary: string;
1757
+ colorTertiaryHover: string;
1758
+ colorTertiaryPressed: string;
1759
+ colorQuaternary: string;
1760
+ colorQuaternaryHover: string;
1761
+ colorQuaternaryPressed: string;
1762
+ color: string;
1763
+ colorHover: string;
1764
+ colorPressed: string;
1765
+ colorFocus: string;
1766
+ colorDisabled: string;
1767
+ textColor: string;
1768
+ textColorTertiary: string;
1769
+ textColorHover: string;
1770
+ textColorPressed: string;
1771
+ textColorFocus: string;
1772
+ textColorDisabled: string;
1773
+ textColorText: string;
1774
+ textColorTextHover: string;
1775
+ textColorTextPressed: string;
1776
+ textColorTextFocus: string;
1777
+ textColorTextDisabled: string;
1778
+ textColorGhost: string;
1779
+ textColorGhostHover: string;
1780
+ textColorGhostPressed: string;
1781
+ textColorGhostFocus: string;
1782
+ textColorGhostDisabled: string;
1783
+ border: string;
1784
+ borderHover: string;
1785
+ borderPressed: string;
1786
+ borderFocus: string;
1787
+ borderDisabled: string;
1788
+ rippleColor: string;
1789
+ colorPrimary: string;
1790
+ colorHoverPrimary: string;
1791
+ colorPressedPrimary: string;
1792
+ colorFocusPrimary: string;
1793
+ colorDisabledPrimary: string;
1794
+ textColorPrimary: string;
1795
+ textColorHoverPrimary: string;
1796
+ textColorPressedPrimary: string;
1797
+ textColorFocusPrimary: string;
1798
+ textColorDisabledPrimary: string;
1799
+ textColorTextPrimary: string;
1800
+ textColorTextHoverPrimary: string;
1801
+ textColorTextPressedPrimary: string;
1802
+ textColorTextFocusPrimary: string;
1803
+ textColorTextDisabledPrimary: string;
1804
+ textColorGhostPrimary: string;
1805
+ textColorGhostHoverPrimary: string;
1806
+ textColorGhostPressedPrimary: string;
1807
+ textColorGhostFocusPrimary: string;
1808
+ textColorGhostDisabledPrimary: string;
1809
+ borderPrimary: string;
1810
+ borderHoverPrimary: string;
1811
+ borderPressedPrimary: string;
1812
+ borderFocusPrimary: string;
1813
+ borderDisabledPrimary: string;
1814
+ rippleColorPrimary: string;
1815
+ colorInfo: string;
1816
+ colorHoverInfo: string;
1817
+ colorPressedInfo: string;
1818
+ colorFocusInfo: string;
1819
+ colorDisabledInfo: string;
1820
+ textColorInfo: string;
1821
+ textColorHoverInfo: string;
1822
+ textColorPressedInfo: string;
1823
+ textColorFocusInfo: string;
1824
+ textColorDisabledInfo: string;
1825
+ textColorTextInfo: string;
1826
+ textColorTextHoverInfo: string;
1827
+ textColorTextPressedInfo: string;
1828
+ textColorTextFocusInfo: string;
1829
+ textColorTextDisabledInfo: string;
1830
+ textColorGhostInfo: string;
1831
+ textColorGhostHoverInfo: string;
1832
+ textColorGhostPressedInfo: string;
1833
+ textColorGhostFocusInfo: string;
1834
+ textColorGhostDisabledInfo: string;
1835
+ borderInfo: string;
1836
+ borderHoverInfo: string;
1837
+ borderPressedInfo: string;
1838
+ borderFocusInfo: string;
1839
+ borderDisabledInfo: string;
1840
+ rippleColorInfo: string;
1841
+ colorSuccess: string;
1842
+ colorHoverSuccess: string;
1843
+ colorPressedSuccess: string;
1844
+ colorFocusSuccess: string;
1845
+ colorDisabledSuccess: string;
1846
+ textColorSuccess: string;
1847
+ textColorHoverSuccess: string;
1848
+ textColorPressedSuccess: string;
1849
+ textColorFocusSuccess: string;
1850
+ textColorDisabledSuccess: string;
1851
+ textColorTextSuccess: string;
1852
+ textColorTextHoverSuccess: string;
1853
+ textColorTextPressedSuccess: string;
1854
+ textColorTextFocusSuccess: string;
1855
+ textColorTextDisabledSuccess: string;
1856
+ textColorGhostSuccess: string;
1857
+ textColorGhostHoverSuccess: string;
1858
+ textColorGhostPressedSuccess: string;
1859
+ textColorGhostFocusSuccess: string;
1860
+ textColorGhostDisabledSuccess: string;
1861
+ borderSuccess: string;
1862
+ borderHoverSuccess: string;
1863
+ borderPressedSuccess: string;
1864
+ borderFocusSuccess: string;
1865
+ borderDisabledSuccess: string;
1866
+ rippleColorSuccess: string;
1867
+ colorWarning: string;
1868
+ colorHoverWarning: string;
1869
+ colorPressedWarning: string;
1870
+ colorFocusWarning: string;
1871
+ colorDisabledWarning: string;
1872
+ textColorWarning: string;
1873
+ textColorHoverWarning: string;
1874
+ textColorPressedWarning: string;
1875
+ textColorFocusWarning: string;
1876
+ textColorDisabledWarning: string;
1877
+ textColorTextWarning: string;
1878
+ textColorTextHoverWarning: string;
1879
+ textColorTextPressedWarning: string;
1880
+ textColorTextFocusWarning: string;
1881
+ textColorTextDisabledWarning: string;
1882
+ textColorGhostWarning: string;
1883
+ textColorGhostHoverWarning: string;
1884
+ textColorGhostPressedWarning: string;
1885
+ textColorGhostFocusWarning: string;
1886
+ textColorGhostDisabledWarning: string;
1887
+ borderWarning: string;
1888
+ borderHoverWarning: string;
1889
+ borderPressedWarning: string;
1890
+ borderFocusWarning: string;
1891
+ borderDisabledWarning: string;
1892
+ rippleColorWarning: string;
1893
+ colorError: string;
1894
+ colorHoverError: string;
1895
+ colorPressedError: string;
1896
+ colorFocusError: string;
1897
+ colorDisabledError: string;
1898
+ textColorError: string;
1899
+ textColorHoverError: string;
1900
+ textColorPressedError: string;
1901
+ textColorFocusError: string;
1902
+ textColorDisabledError: string;
1903
+ textColorTextError: string;
1904
+ textColorTextHoverError: string;
1905
+ textColorTextPressedError: string;
1906
+ textColorTextFocusError: string;
1907
+ textColorTextDisabledError: string;
1908
+ textColorGhostError: string;
1909
+ textColorGhostHoverError: string;
1910
+ textColorGhostPressedError: string;
1911
+ textColorGhostFocusError: string;
1912
+ textColorGhostDisabledError: string;
1913
+ borderError: string;
1914
+ borderHoverError: string;
1915
+ borderPressedError: string;
1916
+ borderFocusError: string;
1917
+ borderDisabledError: string;
1918
+ rippleColorError: string;
1919
+ waveOpacity: string;
1920
+ fontWeight: string;
1921
+ fontWeightStrong: string;
1922
+ paddingTiny: string;
1923
+ paddingSmall: string;
1924
+ paddingMedium: string;
1925
+ paddingLarge: string;
1926
+ paddingRoundTiny: string;
1927
+ paddingRoundSmall: string;
1928
+ paddingRoundMedium: string;
1929
+ paddingRoundLarge: string;
1930
+ iconMarginTiny: string;
1931
+ iconMarginSmall: string;
1932
+ iconMarginMedium: string;
1933
+ iconMarginLarge: string;
1934
+ iconSizeTiny: string;
1935
+ iconSizeSmall: string;
1936
+ iconSizeMedium: string;
1937
+ iconSizeLarge: string;
1938
+ rippleDuration: string;
1939
+ }, any>>>;
1940
+ }, {
1941
+ selfElRef: import("vue").Ref<HTMLElement | null>;
1942
+ waveElRef: import("vue").Ref<{
1943
+ play: () => void;
1944
+ } | null>;
1945
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1946
+ mergedFocusable: import("vue").ComputedRef<boolean>;
1947
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
1948
+ showBorder: import("vue").ComputedRef<boolean>;
1949
+ enterPressed: import("vue").Ref<boolean>;
1950
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1951
+ handleMousedown: (e: MouseEvent) => void;
1952
+ handleKeydown: (e: KeyboardEvent) => void;
1953
+ handleBlur: () => void;
1954
+ handleKeyup: (e: KeyboardEvent) => void;
1955
+ handleClick: (e: MouseEvent) => void;
1956
+ customColorCssVars: import("vue").ComputedRef<{
1957
+ '--n-border-color': string;
1958
+ '--n-border-color-hover': string;
1959
+ '--n-border-color-pressed': string;
1960
+ '--n-border-color-focus': string;
1961
+ '--n-border-color-disabled': string;
1962
+ } | null>;
1963
+ cssVars: import("vue").ComputedRef<{
1964
+ '--n-width': string;
1965
+ '--n-height': string;
1966
+ '--n-font-size': string;
1967
+ '--n-padding': string;
1968
+ '--n-icon-size': string;
1969
+ '--n-icon-margin': string;
1970
+ '--n-border-radius': string;
1971
+ '--n-border': string;
1972
+ '--n-border-hover': string;
1973
+ '--n-border-pressed': string;
1974
+ '--n-border-focus': string;
1975
+ '--n-border-disabled': string;
1976
+ '--n-color': string;
1977
+ '--n-color-hover': string;
1978
+ '--n-color-pressed': string;
1979
+ '--n-color-focus': string;
1980
+ '--n-color-disabled': string;
1981
+ '--n-ripple-color': string;
1982
+ '--n-text-color': string;
1983
+ '--n-text-color-hover': string;
1984
+ '--n-text-color-pressed': string;
1985
+ '--n-text-color-focus': string;
1986
+ '--n-text-color-disabled': string;
1987
+ 'font-weight': string;
1988
+ '--n-bezier': string;
1989
+ '--n-bezier-ease-out': string;
1990
+ '--n-ripple-duration': string;
1991
+ '--n-opacity-disabled': string;
1992
+ '--n-wave-opacity': string;
1993
+ }> | undefined;
1994
+ themeClass: import("vue").Ref<string> | undefined;
1995
+ onRender: (() => void) | undefined;
1996
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1997
+ readonly color: StringConstructor;
1998
+ readonly textColor: StringConstructor;
1999
+ readonly text: BooleanConstructor;
2000
+ readonly block: BooleanConstructor;
2001
+ readonly loading: BooleanConstructor;
2002
+ readonly disabled: BooleanConstructor;
2003
+ readonly circle: BooleanConstructor;
2004
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
2005
+ readonly ghost: BooleanConstructor;
2006
+ readonly round: BooleanConstructor;
2007
+ readonly secondary: BooleanConstructor;
2008
+ readonly tertiary: BooleanConstructor;
2009
+ readonly quaternary: BooleanConstructor;
2010
+ readonly strong: BooleanConstructor;
2011
+ readonly focusable: {
2012
+ readonly type: BooleanConstructor;
2013
+ readonly default: true;
2014
+ };
2015
+ readonly keyboard: {
2016
+ readonly type: BooleanConstructor;
2017
+ readonly default: true;
2018
+ };
2019
+ readonly tag: {
2020
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
2021
+ readonly default: "button";
2022
+ };
2023
+ readonly type: {
2024
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
2025
+ readonly default: "default";
2026
+ };
2027
+ readonly dashed: BooleanConstructor;
2028
+ readonly iconPlacement: {
2029
+ readonly type: import("vue").PropType<"left" | "right">;
2030
+ readonly default: "left";
2031
+ };
2032
+ readonly attrType: {
2033
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
2034
+ readonly default: "button";
2035
+ };
2036
+ readonly bordered: {
2037
+ readonly type: BooleanConstructor;
2038
+ readonly default: true;
2039
+ };
2040
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2041
+ readonly nativeFocusBehavior: {
2042
+ readonly type: BooleanConstructor;
2043
+ readonly default: boolean;
2044
+ };
2045
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
2046
+ heightTiny: string;
2047
+ heightSmall: string;
2048
+ heightMedium: string;
2049
+ heightLarge: string;
2050
+ borderRadiusTiny: string;
2051
+ borderRadiusSmall: string;
2052
+ borderRadiusMedium: string;
2053
+ borderRadiusLarge: string;
2054
+ fontSizeTiny: string;
2055
+ fontSizeSmall: string;
2056
+ fontSizeMedium: string;
2057
+ fontSizeLarge: string;
2058
+ opacityDisabled: string;
2059
+ colorOpacitySecondary: string;
2060
+ colorOpacitySecondaryHover: string;
2061
+ colorOpacitySecondaryPressed: string;
2062
+ colorSecondary: string;
2063
+ colorSecondaryHover: string;
2064
+ colorSecondaryPressed: string;
2065
+ colorTertiary: string;
2066
+ colorTertiaryHover: string;
2067
+ colorTertiaryPressed: string;
2068
+ colorQuaternary: string;
2069
+ colorQuaternaryHover: string;
2070
+ colorQuaternaryPressed: string;
2071
+ color: string;
2072
+ colorHover: string;
2073
+ colorPressed: string;
2074
+ colorFocus: string;
2075
+ colorDisabled: string;
2076
+ textColor: string;
2077
+ textColorTertiary: string;
2078
+ textColorHover: string;
2079
+ textColorPressed: string;
2080
+ textColorFocus: string;
2081
+ textColorDisabled: string;
2082
+ textColorText: string;
2083
+ textColorTextHover: string;
2084
+ textColorTextPressed: string;
2085
+ textColorTextFocus: string;
2086
+ textColorTextDisabled: string;
2087
+ textColorGhost: string;
2088
+ textColorGhostHover: string;
2089
+ textColorGhostPressed: string;
2090
+ textColorGhostFocus: string;
2091
+ textColorGhostDisabled: string;
2092
+ border: string;
2093
+ borderHover: string;
2094
+ borderPressed: string;
2095
+ borderFocus: string;
2096
+ borderDisabled: string;
2097
+ rippleColor: string;
2098
+ colorPrimary: string;
2099
+ colorHoverPrimary: string;
2100
+ colorPressedPrimary: string;
2101
+ colorFocusPrimary: string;
2102
+ colorDisabledPrimary: string;
2103
+ textColorPrimary: string;
2104
+ textColorHoverPrimary: string;
2105
+ textColorPressedPrimary: string;
2106
+ textColorFocusPrimary: string;
2107
+ textColorDisabledPrimary: string;
2108
+ textColorTextPrimary: string;
2109
+ textColorTextHoverPrimary: string;
2110
+ textColorTextPressedPrimary: string;
2111
+ textColorTextFocusPrimary: string;
2112
+ textColorTextDisabledPrimary: string;
2113
+ textColorGhostPrimary: string;
2114
+ textColorGhostHoverPrimary: string;
2115
+ textColorGhostPressedPrimary: string;
2116
+ textColorGhostFocusPrimary: string;
2117
+ textColorGhostDisabledPrimary: string;
2118
+ borderPrimary: string;
2119
+ borderHoverPrimary: string;
2120
+ borderPressedPrimary: string;
2121
+ borderFocusPrimary: string;
2122
+ borderDisabledPrimary: string;
2123
+ rippleColorPrimary: string;
2124
+ colorInfo: string;
2125
+ colorHoverInfo: string;
2126
+ colorPressedInfo: string;
2127
+ colorFocusInfo: string;
2128
+ colorDisabledInfo: string;
2129
+ textColorInfo: string;
2130
+ textColorHoverInfo: string;
2131
+ textColorPressedInfo: string;
2132
+ textColorFocusInfo: string;
2133
+ textColorDisabledInfo: string;
2134
+ textColorTextInfo: string;
2135
+ textColorTextHoverInfo: string;
2136
+ textColorTextPressedInfo: string;
2137
+ textColorTextFocusInfo: string;
2138
+ textColorTextDisabledInfo: string;
2139
+ textColorGhostInfo: string;
2140
+ textColorGhostHoverInfo: string;
2141
+ textColorGhostPressedInfo: string;
2142
+ textColorGhostFocusInfo: string;
2143
+ textColorGhostDisabledInfo: string;
2144
+ borderInfo: string;
2145
+ borderHoverInfo: string;
2146
+ borderPressedInfo: string;
2147
+ borderFocusInfo: string;
2148
+ borderDisabledInfo: string;
2149
+ rippleColorInfo: string;
2150
+ colorSuccess: string;
2151
+ colorHoverSuccess: string;
2152
+ colorPressedSuccess: string;
2153
+ colorFocusSuccess: string;
2154
+ colorDisabledSuccess: string;
2155
+ textColorSuccess: string;
2156
+ textColorHoverSuccess: string;
2157
+ textColorPressedSuccess: string;
2158
+ textColorFocusSuccess: string;
2159
+ textColorDisabledSuccess: string;
2160
+ textColorTextSuccess: string;
2161
+ textColorTextHoverSuccess: string;
2162
+ textColorTextPressedSuccess: string;
2163
+ textColorTextFocusSuccess: string;
2164
+ textColorTextDisabledSuccess: string;
2165
+ textColorGhostSuccess: string;
2166
+ textColorGhostHoverSuccess: string;
2167
+ textColorGhostPressedSuccess: string;
2168
+ textColorGhostFocusSuccess: string;
2169
+ textColorGhostDisabledSuccess: string;
2170
+ borderSuccess: string;
2171
+ borderHoverSuccess: string;
2172
+ borderPressedSuccess: string;
2173
+ borderFocusSuccess: string;
2174
+ borderDisabledSuccess: string;
2175
+ rippleColorSuccess: string;
2176
+ colorWarning: string;
2177
+ colorHoverWarning: string;
2178
+ colorPressedWarning: string;
2179
+ colorFocusWarning: string;
2180
+ colorDisabledWarning: string;
2181
+ textColorWarning: string;
2182
+ textColorHoverWarning: string;
2183
+ textColorPressedWarning: string;
2184
+ textColorFocusWarning: string;
2185
+ textColorDisabledWarning: string;
2186
+ textColorTextWarning: string;
2187
+ textColorTextHoverWarning: string;
2188
+ textColorTextPressedWarning: string;
2189
+ textColorTextFocusWarning: string;
2190
+ textColorTextDisabledWarning: string;
2191
+ textColorGhostWarning: string;
2192
+ textColorGhostHoverWarning: string;
2193
+ textColorGhostPressedWarning: string;
2194
+ textColorGhostFocusWarning: string;
2195
+ textColorGhostDisabledWarning: string;
2196
+ borderWarning: string;
2197
+ borderHoverWarning: string;
2198
+ borderPressedWarning: string;
2199
+ borderFocusWarning: string;
2200
+ borderDisabledWarning: string;
2201
+ rippleColorWarning: string;
2202
+ colorError: string;
2203
+ colorHoverError: string;
2204
+ colorPressedError: string;
2205
+ colorFocusError: string;
2206
+ colorDisabledError: string;
2207
+ textColorError: string;
2208
+ textColorHoverError: string;
2209
+ textColorPressedError: string;
2210
+ textColorFocusError: string;
2211
+ textColorDisabledError: string;
2212
+ textColorTextError: string;
2213
+ textColorTextHoverError: string;
2214
+ textColorTextPressedError: string;
2215
+ textColorTextFocusError: string;
2216
+ textColorTextDisabledError: string;
2217
+ textColorGhostError: string;
2218
+ textColorGhostHoverError: string;
2219
+ textColorGhostPressedError: string;
2220
+ textColorGhostFocusError: string;
2221
+ textColorGhostDisabledError: string;
2222
+ borderError: string;
2223
+ borderHoverError: string;
2224
+ borderPressedError: string;
2225
+ borderFocusError: string;
2226
+ borderDisabledError: string;
2227
+ rippleColorError: string;
2228
+ waveOpacity: string;
2229
+ fontWeight: string;
2230
+ fontWeightStrong: string;
2231
+ paddingTiny: string;
2232
+ paddingSmall: string;
2233
+ paddingMedium: string;
2234
+ paddingLarge: string;
2235
+ paddingRoundTiny: string;
2236
+ paddingRoundSmall: string;
2237
+ paddingRoundMedium: string;
2238
+ paddingRoundLarge: string;
2239
+ iconMarginTiny: string;
2240
+ iconMarginSmall: string;
2241
+ iconMarginMedium: string;
2242
+ iconMarginLarge: string;
2243
+ iconSizeTiny: string;
2244
+ iconSizeSmall: string;
2245
+ iconSizeMedium: string;
2246
+ iconSizeLarge: string;
2247
+ rippleDuration: string;
2248
+ }, any>>;
2249
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2250
+ heightTiny: string;
2251
+ heightSmall: string;
2252
+ heightMedium: string;
2253
+ heightLarge: string;
2254
+ borderRadiusTiny: string;
2255
+ borderRadiusSmall: string;
2256
+ borderRadiusMedium: string;
2257
+ borderRadiusLarge: string;
2258
+ fontSizeTiny: string;
2259
+ fontSizeSmall: string;
2260
+ fontSizeMedium: string;
2261
+ fontSizeLarge: string;
2262
+ opacityDisabled: string;
2263
+ colorOpacitySecondary: string;
2264
+ colorOpacitySecondaryHover: string;
2265
+ colorOpacitySecondaryPressed: string;
2266
+ colorSecondary: string;
2267
+ colorSecondaryHover: string;
2268
+ colorSecondaryPressed: string;
2269
+ colorTertiary: string;
2270
+ colorTertiaryHover: string;
2271
+ colorTertiaryPressed: string;
2272
+ colorQuaternary: string;
2273
+ colorQuaternaryHover: string;
2274
+ colorQuaternaryPressed: string;
2275
+ color: string;
2276
+ colorHover: string;
2277
+ colorPressed: string;
2278
+ colorFocus: string;
2279
+ colorDisabled: string;
2280
+ textColor: string;
2281
+ textColorTertiary: string;
2282
+ textColorHover: string;
2283
+ textColorPressed: string;
2284
+ textColorFocus: string;
2285
+ textColorDisabled: string;
2286
+ textColorText: string;
2287
+ textColorTextHover: string;
2288
+ textColorTextPressed: string;
2289
+ textColorTextFocus: string;
2290
+ textColorTextDisabled: string;
2291
+ textColorGhost: string;
2292
+ textColorGhostHover: string;
2293
+ textColorGhostPressed: string;
2294
+ textColorGhostFocus: string;
2295
+ textColorGhostDisabled: string;
2296
+ border: string;
2297
+ borderHover: string;
2298
+ borderPressed: string;
2299
+ borderFocus: string;
2300
+ borderDisabled: string;
2301
+ rippleColor: string;
2302
+ colorPrimary: string;
2303
+ colorHoverPrimary: string;
2304
+ colorPressedPrimary: string;
2305
+ colorFocusPrimary: string;
2306
+ colorDisabledPrimary: string;
2307
+ textColorPrimary: string;
2308
+ textColorHoverPrimary: string;
2309
+ textColorPressedPrimary: string;
2310
+ textColorFocusPrimary: string;
2311
+ textColorDisabledPrimary: string;
2312
+ textColorTextPrimary: string;
2313
+ textColorTextHoverPrimary: string;
2314
+ textColorTextPressedPrimary: string;
2315
+ textColorTextFocusPrimary: string;
2316
+ textColorTextDisabledPrimary: string;
2317
+ textColorGhostPrimary: string;
2318
+ textColorGhostHoverPrimary: string;
2319
+ textColorGhostPressedPrimary: string;
2320
+ textColorGhostFocusPrimary: string;
2321
+ textColorGhostDisabledPrimary: string;
2322
+ borderPrimary: string;
2323
+ borderHoverPrimary: string;
2324
+ borderPressedPrimary: string;
2325
+ borderFocusPrimary: string;
2326
+ borderDisabledPrimary: string;
2327
+ rippleColorPrimary: string;
2328
+ colorInfo: string;
2329
+ colorHoverInfo: string;
2330
+ colorPressedInfo: string;
2331
+ colorFocusInfo: string;
2332
+ colorDisabledInfo: string;
2333
+ textColorInfo: string;
2334
+ textColorHoverInfo: string;
2335
+ textColorPressedInfo: string;
2336
+ textColorFocusInfo: string;
2337
+ textColorDisabledInfo: string;
2338
+ textColorTextInfo: string;
2339
+ textColorTextHoverInfo: string;
2340
+ textColorTextPressedInfo: string;
2341
+ textColorTextFocusInfo: string;
2342
+ textColorTextDisabledInfo: string;
2343
+ textColorGhostInfo: string;
2344
+ textColorGhostHoverInfo: string;
2345
+ textColorGhostPressedInfo: string;
2346
+ textColorGhostFocusInfo: string;
2347
+ textColorGhostDisabledInfo: string;
2348
+ borderInfo: string;
2349
+ borderHoverInfo: string;
2350
+ borderPressedInfo: string;
2351
+ borderFocusInfo: string;
2352
+ borderDisabledInfo: string;
2353
+ rippleColorInfo: string;
2354
+ colorSuccess: string;
2355
+ colorHoverSuccess: string;
2356
+ colorPressedSuccess: string;
2357
+ colorFocusSuccess: string;
2358
+ colorDisabledSuccess: string;
2359
+ textColorSuccess: string;
2360
+ textColorHoverSuccess: string;
2361
+ textColorPressedSuccess: string;
2362
+ textColorFocusSuccess: string;
2363
+ textColorDisabledSuccess: string;
2364
+ textColorTextSuccess: string;
2365
+ textColorTextHoverSuccess: string;
2366
+ textColorTextPressedSuccess: string;
2367
+ textColorTextFocusSuccess: string;
2368
+ textColorTextDisabledSuccess: string;
2369
+ textColorGhostSuccess: string;
2370
+ textColorGhostHoverSuccess: string;
2371
+ textColorGhostPressedSuccess: string;
2372
+ textColorGhostFocusSuccess: string;
2373
+ textColorGhostDisabledSuccess: string;
2374
+ borderSuccess: string;
2375
+ borderHoverSuccess: string;
2376
+ borderPressedSuccess: string;
2377
+ borderFocusSuccess: string;
2378
+ borderDisabledSuccess: string;
2379
+ rippleColorSuccess: string;
2380
+ colorWarning: string;
2381
+ colorHoverWarning: string;
2382
+ colorPressedWarning: string;
2383
+ colorFocusWarning: string;
2384
+ colorDisabledWarning: string;
2385
+ textColorWarning: string;
2386
+ textColorHoverWarning: string;
2387
+ textColorPressedWarning: string;
2388
+ textColorFocusWarning: string;
2389
+ textColorDisabledWarning: string;
2390
+ textColorTextWarning: string;
2391
+ textColorTextHoverWarning: string;
2392
+ textColorTextPressedWarning: string;
2393
+ textColorTextFocusWarning: string;
2394
+ textColorTextDisabledWarning: string;
2395
+ textColorGhostWarning: string;
2396
+ textColorGhostHoverWarning: string;
2397
+ textColorGhostPressedWarning: string;
2398
+ textColorGhostFocusWarning: string;
2399
+ textColorGhostDisabledWarning: string;
2400
+ borderWarning: string;
2401
+ borderHoverWarning: string;
2402
+ borderPressedWarning: string;
2403
+ borderFocusWarning: string;
2404
+ borderDisabledWarning: string;
2405
+ rippleColorWarning: string;
2406
+ colorError: string;
2407
+ colorHoverError: string;
2408
+ colorPressedError: string;
2409
+ colorFocusError: string;
2410
+ colorDisabledError: string;
2411
+ textColorError: string;
2412
+ textColorHoverError: string;
2413
+ textColorPressedError: string;
2414
+ textColorFocusError: string;
2415
+ textColorDisabledError: string;
2416
+ textColorTextError: string;
2417
+ textColorTextHoverError: string;
2418
+ textColorTextPressedError: string;
2419
+ textColorTextFocusError: string;
2420
+ textColorTextDisabledError: string;
2421
+ textColorGhostError: string;
2422
+ textColorGhostHoverError: string;
2423
+ textColorGhostPressedError: string;
2424
+ textColorGhostFocusError: string;
2425
+ textColorGhostDisabledError: string;
2426
+ borderError: string;
2427
+ borderHoverError: string;
2428
+ borderPressedError: string;
2429
+ borderFocusError: string;
2430
+ borderDisabledError: string;
2431
+ rippleColorError: string;
2432
+ waveOpacity: string;
2433
+ fontWeight: string;
2434
+ fontWeightStrong: string;
2435
+ paddingTiny: string;
2436
+ paddingSmall: string;
2437
+ paddingMedium: string;
2438
+ paddingLarge: string;
2439
+ paddingRoundTiny: string;
2440
+ paddingRoundSmall: string;
2441
+ paddingRoundMedium: string;
2442
+ paddingRoundLarge: string;
2443
+ iconMarginTiny: string;
2444
+ iconMarginSmall: string;
2445
+ iconMarginMedium: string;
2446
+ iconMarginLarge: string;
2447
+ iconSizeTiny: string;
2448
+ iconSizeSmall: string;
2449
+ iconSizeMedium: string;
2450
+ iconSizeLarge: string;
2451
+ rippleDuration: string;
2452
+ }, any>>>;
2453
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2454
+ heightTiny: string;
2455
+ heightSmall: string;
2456
+ heightMedium: string;
2457
+ heightLarge: string;
2458
+ borderRadiusTiny: string;
2459
+ borderRadiusSmall: string;
2460
+ borderRadiusMedium: string;
2461
+ borderRadiusLarge: string;
2462
+ fontSizeTiny: string;
2463
+ fontSizeSmall: string;
2464
+ fontSizeMedium: string;
2465
+ fontSizeLarge: string;
2466
+ opacityDisabled: string;
2467
+ colorOpacitySecondary: string;
2468
+ colorOpacitySecondaryHover: string;
2469
+ colorOpacitySecondaryPressed: string;
2470
+ colorSecondary: string;
2471
+ colorSecondaryHover: string;
2472
+ colorSecondaryPressed: string;
2473
+ colorTertiary: string;
2474
+ colorTertiaryHover: string;
2475
+ colorTertiaryPressed: string;
2476
+ colorQuaternary: string;
2477
+ colorQuaternaryHover: string;
2478
+ colorQuaternaryPressed: string;
2479
+ color: string;
2480
+ colorHover: string;
2481
+ colorPressed: string;
2482
+ colorFocus: string;
2483
+ colorDisabled: string;
2484
+ textColor: string;
2485
+ textColorTertiary: string;
2486
+ textColorHover: string;
2487
+ textColorPressed: string;
2488
+ textColorFocus: string;
2489
+ textColorDisabled: string;
2490
+ textColorText: string;
2491
+ textColorTextHover: string;
2492
+ textColorTextPressed: string;
2493
+ textColorTextFocus: string;
2494
+ textColorTextDisabled: string;
2495
+ textColorGhost: string;
2496
+ textColorGhostHover: string;
2497
+ textColorGhostPressed: string;
2498
+ textColorGhostFocus: string;
2499
+ textColorGhostDisabled: string;
2500
+ border: string;
2501
+ borderHover: string;
2502
+ borderPressed: string;
2503
+ borderFocus: string;
2504
+ borderDisabled: string;
2505
+ rippleColor: string;
2506
+ colorPrimary: string;
2507
+ colorHoverPrimary: string;
2508
+ colorPressedPrimary: string;
2509
+ colorFocusPrimary: string;
2510
+ colorDisabledPrimary: string;
2511
+ textColorPrimary: string;
2512
+ textColorHoverPrimary: string;
2513
+ textColorPressedPrimary: string;
2514
+ textColorFocusPrimary: string;
2515
+ textColorDisabledPrimary: string;
2516
+ textColorTextPrimary: string;
2517
+ textColorTextHoverPrimary: string;
2518
+ textColorTextPressedPrimary: string;
2519
+ textColorTextFocusPrimary: string;
2520
+ textColorTextDisabledPrimary: string;
2521
+ textColorGhostPrimary: string;
2522
+ textColorGhostHoverPrimary: string;
2523
+ textColorGhostPressedPrimary: string;
2524
+ textColorGhostFocusPrimary: string;
2525
+ textColorGhostDisabledPrimary: string;
2526
+ borderPrimary: string;
2527
+ borderHoverPrimary: string;
2528
+ borderPressedPrimary: string;
2529
+ borderFocusPrimary: string;
2530
+ borderDisabledPrimary: string;
2531
+ rippleColorPrimary: string;
2532
+ colorInfo: string;
2533
+ colorHoverInfo: string;
2534
+ colorPressedInfo: string;
2535
+ colorFocusInfo: string;
2536
+ colorDisabledInfo: string;
2537
+ textColorInfo: string;
2538
+ textColorHoverInfo: string;
2539
+ textColorPressedInfo: string;
2540
+ textColorFocusInfo: string;
2541
+ textColorDisabledInfo: string;
2542
+ textColorTextInfo: string;
2543
+ textColorTextHoverInfo: string;
2544
+ textColorTextPressedInfo: string;
2545
+ textColorTextFocusInfo: string;
2546
+ textColorTextDisabledInfo: string;
2547
+ textColorGhostInfo: string;
2548
+ textColorGhostHoverInfo: string;
2549
+ textColorGhostPressedInfo: string;
2550
+ textColorGhostFocusInfo: string;
2551
+ textColorGhostDisabledInfo: string;
2552
+ borderInfo: string;
2553
+ borderHoverInfo: string;
2554
+ borderPressedInfo: string;
2555
+ borderFocusInfo: string;
2556
+ borderDisabledInfo: string;
2557
+ rippleColorInfo: string;
2558
+ colorSuccess: string;
2559
+ colorHoverSuccess: string;
2560
+ colorPressedSuccess: string;
2561
+ colorFocusSuccess: string;
2562
+ colorDisabledSuccess: string;
2563
+ textColorSuccess: string;
2564
+ textColorHoverSuccess: string;
2565
+ textColorPressedSuccess: string;
2566
+ textColorFocusSuccess: string;
2567
+ textColorDisabledSuccess: string;
2568
+ textColorTextSuccess: string;
2569
+ textColorTextHoverSuccess: string;
2570
+ textColorTextPressedSuccess: string;
2571
+ textColorTextFocusSuccess: string;
2572
+ textColorTextDisabledSuccess: string;
2573
+ textColorGhostSuccess: string;
2574
+ textColorGhostHoverSuccess: string;
2575
+ textColorGhostPressedSuccess: string;
2576
+ textColorGhostFocusSuccess: string;
2577
+ textColorGhostDisabledSuccess: string;
2578
+ borderSuccess: string;
2579
+ borderHoverSuccess: string;
2580
+ borderPressedSuccess: string;
2581
+ borderFocusSuccess: string;
2582
+ borderDisabledSuccess: string;
2583
+ rippleColorSuccess: string;
2584
+ colorWarning: string;
2585
+ colorHoverWarning: string;
2586
+ colorPressedWarning: string;
2587
+ colorFocusWarning: string;
2588
+ colorDisabledWarning: string;
2589
+ textColorWarning: string;
2590
+ textColorHoverWarning: string;
2591
+ textColorPressedWarning: string;
2592
+ textColorFocusWarning: string;
2593
+ textColorDisabledWarning: string;
2594
+ textColorTextWarning: string;
2595
+ textColorTextHoverWarning: string;
2596
+ textColorTextPressedWarning: string;
2597
+ textColorTextFocusWarning: string;
2598
+ textColorTextDisabledWarning: string;
2599
+ textColorGhostWarning: string;
2600
+ textColorGhostHoverWarning: string;
2601
+ textColorGhostPressedWarning: string;
2602
+ textColorGhostFocusWarning: string;
2603
+ textColorGhostDisabledWarning: string;
2604
+ borderWarning: string;
2605
+ borderHoverWarning: string;
2606
+ borderPressedWarning: string;
2607
+ borderFocusWarning: string;
2608
+ borderDisabledWarning: string;
2609
+ rippleColorWarning: string;
2610
+ colorError: string;
2611
+ colorHoverError: string;
2612
+ colorPressedError: string;
2613
+ colorFocusError: string;
2614
+ colorDisabledError: string;
2615
+ textColorError: string;
2616
+ textColorHoverError: string;
2617
+ textColorPressedError: string;
2618
+ textColorFocusError: string;
2619
+ textColorDisabledError: string;
2620
+ textColorTextError: string;
2621
+ textColorTextHoverError: string;
2622
+ textColorTextPressedError: string;
2623
+ textColorTextFocusError: string;
2624
+ textColorTextDisabledError: string;
2625
+ textColorGhostError: string;
2626
+ textColorGhostHoverError: string;
2627
+ textColorGhostPressedError: string;
2628
+ textColorGhostFocusError: string;
2629
+ textColorGhostDisabledError: string;
2630
+ borderError: string;
2631
+ borderHoverError: string;
2632
+ borderPressedError: string;
2633
+ borderFocusError: string;
2634
+ borderDisabledError: string;
2635
+ rippleColorError: string;
2636
+ waveOpacity: string;
2637
+ fontWeight: string;
2638
+ fontWeightStrong: string;
2639
+ paddingTiny: string;
2640
+ paddingSmall: string;
2641
+ paddingMedium: string;
2642
+ paddingLarge: string;
2643
+ paddingRoundTiny: string;
2644
+ paddingRoundSmall: string;
2645
+ paddingRoundMedium: string;
2646
+ paddingRoundLarge: string;
2647
+ iconMarginTiny: string;
2648
+ iconMarginSmall: string;
2649
+ iconMarginMedium: string;
2650
+ iconMarginLarge: string;
2651
+ iconSizeTiny: string;
2652
+ iconSizeSmall: string;
2653
+ iconSizeMedium: string;
2654
+ iconSizeLarge: string;
2655
+ rippleDuration: string;
2656
+ }, any>>>;
2657
+ }>>, {
2658
+ readonly type: import("naive-ui/es/button/src/interface").Type;
2659
+ readonly tag: keyof HTMLElementTagNameMap;
2660
+ readonly block: boolean;
2661
+ readonly round: boolean;
2662
+ readonly dashed: boolean;
2663
+ readonly text: boolean;
2664
+ readonly circle: boolean;
2665
+ readonly disabled: boolean;
2666
+ readonly focusable: boolean;
2667
+ readonly strong: boolean;
2668
+ readonly loading: boolean;
2669
+ readonly bordered: boolean;
2670
+ readonly tertiary: boolean;
2671
+ readonly ghost: boolean;
2672
+ readonly keyboard: boolean;
2673
+ readonly secondary: boolean;
2674
+ readonly quaternary: boolean;
2675
+ readonly iconPlacement: "left" | "right";
2676
+ readonly attrType: "button" | "reset" | "submit";
2677
+ readonly nativeFocusBehavior: boolean;
2678
+ }>;
2679
+ NInput: import("vue").DefineComponent<{
2680
+ bordered: {
2681
+ type: import("vue").PropType<boolean | undefined>;
2682
+ default: undefined;
2683
+ };
2684
+ type: {
2685
+ type: import("vue").PropType<"text" | "textarea" | "password">;
2686
+ default: string;
2687
+ };
2688
+ placeholder: import("vue").PropType<string | [string, string]>;
2689
+ defaultValue: {
2690
+ type: import("vue").PropType<string | [string, string] | null>;
2691
+ default: null;
2692
+ };
2693
+ value: import("vue").PropType<string | [string, string] | null>;
2694
+ disabled: {
2695
+ type: import("vue").PropType<boolean | undefined>;
2696
+ default: undefined;
2697
+ };
2698
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
2699
+ rows: {
2700
+ type: import("vue").PropType<string | number>;
2701
+ default: number;
2702
+ };
2703
+ round: BooleanConstructor;
2704
+ minlength: import("vue").PropType<string | number>;
2705
+ maxlength: import("vue").PropType<string | number>;
2706
+ clearable: BooleanConstructor;
2707
+ autosize: {
2708
+ type: import("vue").PropType<boolean | {
2709
+ minRows?: number | undefined;
2710
+ maxRows?: number | undefined;
2711
+ }>;
2712
+ default: boolean;
2713
+ };
2714
+ pair: BooleanConstructor;
2715
+ separator: StringConstructor;
2716
+ readonly: {
2717
+ type: (BooleanConstructor | StringConstructor)[];
2718
+ default: boolean;
2719
+ };
2720
+ passivelyActivated: BooleanConstructor;
2721
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
2722
+ stateful: {
2723
+ type: BooleanConstructor;
2724
+ default: boolean;
2725
+ };
2726
+ autofocus: BooleanConstructor;
2727
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
2728
+ resizable: {
2729
+ type: BooleanConstructor;
2730
+ default: boolean;
2731
+ };
2732
+ showCount: BooleanConstructor;
2733
+ loading: {
2734
+ type: BooleanConstructor;
2735
+ default: undefined;
2736
+ };
2737
+ allowInput: import("vue").PropType<(value: string) => boolean>;
2738
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
2739
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
2740
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
2741
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
2742
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2743
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2744
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2745
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
2746
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2747
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
2748
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
2749
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
2750
+ textDecoration: import("vue").PropType<string | [string, string]>;
2751
+ attrSize: {
2752
+ type: NumberConstructor;
2753
+ default: number;
2754
+ };
2755
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2756
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2757
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
2758
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
2759
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2760
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2761
+ internalDeactivateOnEnter: BooleanConstructor;
2762
+ internalForceFocus: BooleanConstructor;
2763
+ internalLoadingBeforeSuffix: BooleanConstructor;
2764
+ showPasswordToggle: BooleanConstructor;
2765
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
2766
+ countTextColor: string;
2767
+ heightTiny: string;
2768
+ heightSmall: string;
2769
+ heightMedium: string;
2770
+ heightLarge: string;
2771
+ fontSizeTiny: string;
2772
+ fontSizeSmall: string;
2773
+ fontSizeMedium: string;
2774
+ fontSizeLarge: string;
2775
+ lineHeight: string;
2776
+ lineHeightTextarea: string;
2777
+ borderRadius: string;
2778
+ iconSize: string;
2779
+ groupLabelColor: string;
2780
+ groupLabelTextColor: string;
2781
+ textColor: string;
2782
+ textColorDisabled: string;
2783
+ textDecorationColor: string;
2784
+ caretColor: string;
2785
+ placeholderColor: string;
2786
+ placeholderColorDisabled: string;
2787
+ color: string;
2788
+ colorDisabled: string;
2789
+ colorFocus: string;
2790
+ groupLabelBorder: string;
2791
+ border: string;
2792
+ borderHover: string;
2793
+ borderDisabled: string;
2794
+ borderFocus: string;
2795
+ boxShadowFocus: string;
2796
+ loadingColor: string;
2797
+ loadingColorWarning: string;
2798
+ borderWarning: string;
2799
+ borderHoverWarning: string;
2800
+ colorFocusWarning: string;
2801
+ borderFocusWarning: string;
2802
+ boxShadowFocusWarning: string;
2803
+ caretColorWarning: string;
2804
+ loadingColorError: string;
2805
+ borderError: string;
2806
+ borderHoverError: string;
2807
+ colorFocusError: string;
2808
+ borderFocusError: string;
2809
+ boxShadowFocusError: string;
2810
+ caretColorError: string;
2811
+ clearColor: string;
2812
+ clearColorHover: string;
2813
+ clearColorPressed: string;
2814
+ iconColor: string;
2815
+ iconColorDisabled: string;
2816
+ iconColorHover: string;
2817
+ iconColorPressed: string;
2818
+ suffixTextColor: string;
2819
+ paddingTiny: string;
2820
+ paddingSmall: string;
2821
+ paddingMedium: string;
2822
+ paddingLarge: string;
2823
+ clearSize: string;
2824
+ }, any>>;
2825
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
2826
+ countTextColor: string;
2827
+ heightTiny: string;
2828
+ heightSmall: string;
2829
+ heightMedium: string;
2830
+ heightLarge: string;
2831
+ fontSizeTiny: string;
2832
+ fontSizeSmall: string;
2833
+ fontSizeMedium: string;
2834
+ fontSizeLarge: string;
2835
+ lineHeight: string;
2836
+ lineHeightTextarea: string;
2837
+ borderRadius: string;
2838
+ iconSize: string;
2839
+ groupLabelColor: string;
2840
+ groupLabelTextColor: string;
2841
+ textColor: string;
2842
+ textColorDisabled: string;
2843
+ textDecorationColor: string;
2844
+ caretColor: string;
2845
+ placeholderColor: string;
2846
+ placeholderColorDisabled: string;
2847
+ color: string;
2848
+ colorDisabled: string;
2849
+ colorFocus: string;
2850
+ groupLabelBorder: string;
2851
+ border: string;
2852
+ borderHover: string;
2853
+ borderDisabled: string;
2854
+ borderFocus: string;
2855
+ boxShadowFocus: string;
2856
+ loadingColor: string;
2857
+ loadingColorWarning: string;
2858
+ borderWarning: string;
2859
+ borderHoverWarning: string;
2860
+ colorFocusWarning: string;
2861
+ borderFocusWarning: string;
2862
+ boxShadowFocusWarning: string;
2863
+ caretColorWarning: string;
2864
+ loadingColorError: string;
2865
+ borderError: string;
2866
+ borderHoverError: string;
2867
+ colorFocusError: string;
2868
+ borderFocusError: string;
2869
+ boxShadowFocusError: string;
2870
+ caretColorError: string;
2871
+ clearColor: string;
2872
+ clearColorHover: string;
2873
+ clearColorPressed: string;
2874
+ iconColor: string;
2875
+ iconColorDisabled: string;
2876
+ iconColorHover: string;
2877
+ iconColorPressed: string;
2878
+ suffixTextColor: string;
2879
+ paddingTiny: string;
2880
+ paddingSmall: string;
2881
+ paddingMedium: string;
2882
+ paddingLarge: string;
2883
+ clearSize: string;
2884
+ }, any>>>;
2885
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
2886
+ countTextColor: string;
2887
+ heightTiny: string;
2888
+ heightSmall: string;
2889
+ heightMedium: string;
2890
+ heightLarge: string;
2891
+ fontSizeTiny: string;
2892
+ fontSizeSmall: string;
2893
+ fontSizeMedium: string;
2894
+ fontSizeLarge: string;
2895
+ lineHeight: string;
2896
+ lineHeightTextarea: string;
2897
+ borderRadius: string;
2898
+ iconSize: string;
2899
+ groupLabelColor: string;
2900
+ groupLabelTextColor: string;
2901
+ textColor: string;
2902
+ textColorDisabled: string;
2903
+ textDecorationColor: string;
2904
+ caretColor: string;
2905
+ placeholderColor: string;
2906
+ placeholderColorDisabled: string;
2907
+ color: string;
2908
+ colorDisabled: string;
2909
+ colorFocus: string;
2910
+ groupLabelBorder: string;
2911
+ border: string;
2912
+ borderHover: string;
2913
+ borderDisabled: string;
2914
+ borderFocus: string;
2915
+ boxShadowFocus: string;
2916
+ loadingColor: string;
2917
+ loadingColorWarning: string;
2918
+ borderWarning: string;
2919
+ borderHoverWarning: string;
2920
+ colorFocusWarning: string;
2921
+ borderFocusWarning: string;
2922
+ boxShadowFocusWarning: string;
2923
+ caretColorWarning: string;
2924
+ loadingColorError: string;
2925
+ borderError: string;
2926
+ borderHoverError: string;
2927
+ colorFocusError: string;
2928
+ borderFocusError: string;
2929
+ boxShadowFocusError: string;
2930
+ caretColorError: string;
2931
+ clearColor: string;
2932
+ clearColorHover: string;
2933
+ clearColorPressed: string;
2934
+ iconColor: string;
2935
+ iconColorDisabled: string;
2936
+ iconColorHover: string;
2937
+ iconColorPressed: string;
2938
+ suffixTextColor: string;
2939
+ paddingTiny: string;
2940
+ paddingSmall: string;
2941
+ paddingMedium: string;
2942
+ paddingLarge: string;
2943
+ clearSize: string;
2944
+ }, any>>>;
2945
+ }, {
2946
+ wrapperElRef: import("vue").Ref<HTMLElement | null>;
2947
+ inputElRef: import("vue").Ref<HTMLInputElement | null>;
2948
+ inputMirrorElRef: import("vue").Ref<HTMLElement | null>;
2949
+ inputEl2Ref: import("vue").Ref<HTMLInputElement | null>;
2950
+ textareaElRef: import("vue").Ref<HTMLTextAreaElement | null>;
2951
+ textareaMirrorElRef: import("vue").Ref<HTMLElement | null>;
2952
+ textareaScrollbarInstRef: import("vue").Ref<{
2953
+ $el: HTMLElement;
2954
+ containerRef: HTMLElement | null;
2955
+ contentRef: HTMLElement | null;
2956
+ containerScrollTop: number;
2957
+ syncUnifiedContainer: () => void;
2958
+ scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
2959
+ scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
2960
+ sync: () => void;
2961
+ handleMouseEnterWrapper: () => void;
2962
+ handleMouseLeaveWrapper: () => void;
2963
+ } | null>;
2964
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
2965
+ uncontrolledValue: import("vue").Ref<string | [string, string] | null>;
2966
+ mergedValue: import("vue").ComputedRef<string | [string, string] | null>;
2967
+ passwordVisible: import("vue").Ref<boolean>;
2968
+ mergedPlaceholder: import("vue").ComputedRef<[string, string] | [string]>;
2969
+ showPlaceholder1: import("vue").ComputedRef<string | false>;
2970
+ showPlaceholder2: import("vue").ComputedRef<boolean | "" | undefined>;
2971
+ mergedFocus: import("vue").ComputedRef<boolean>;
2972
+ isComposing: import("vue").Ref<boolean>;
2973
+ activated: import("vue").Ref<boolean>;
2974
+ showClearButton: import("vue").ComputedRef<boolean>;
2975
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
2976
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2977
+ textDecorationStyle: import("vue").ComputedRef<string[] | {
2978
+ textDecoration: string;
2979
+ }[]>;
2980
+ mergedClsPrefix: import("vue").ComputedRef<string>;
2981
+ mergedBordered: import("vue").ComputedRef<boolean>;
2982
+ mergedShowPasswordOn: import("vue").ComputedRef<"click" | "mousedown" | undefined>;
2983
+ placeholderStyle: import("vue").Ref<{
2984
+ top: string;
2985
+ }>;
2986
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
2987
+ textAreaScrollContainerWidth: import("vue").Ref<number | undefined>;
2988
+ handleTextAreaScroll: (e: Event) => void;
2989
+ handleCompositionStart: () => void;
2990
+ handleCompositionEnd: (e: CompositionEvent) => void;
2991
+ handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
2992
+ handleInputBlur: (e: FocusEvent) => void;
2993
+ handleInputFocus: (e: FocusEvent, index: number) => void;
2994
+ handleWrapperBlur: (e: FocusEvent) => void;
2995
+ handleWrapperFocus: (e: FocusEvent) => void;
2996
+ handleMouseEnter: () => void;
2997
+ handleMouseLeave: () => void;
2998
+ handleMouseDown: (e: MouseEvent) => void;
2999
+ handleChange: (e: Event, index?: 0 | 1 | undefined) => void;
3000
+ handleClick: (e: MouseEvent) => void;
3001
+ handleClear: (e: MouseEvent) => void;
3002
+ handlePasswordToggleClick: () => void;
3003
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
3004
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
3005
+ handleTextAreaMirrorResize: () => void;
3006
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
3007
+ mergedTheme: import("vue").ComputedRef<{
3008
+ common: {
3009
+ baseColor: string;
3010
+ primaryColor: string;
3011
+ primaryColorHover: string;
3012
+ primaryColorPressed: string;
3013
+ primaryColorSuppl: string;
3014
+ infoColor: string;
3015
+ infoColorHover: string;
3016
+ infoColorPressed: string;
3017
+ infoColorSuppl: string;
3018
+ successColor: string;
3019
+ successColorHover: string;
3020
+ successColorPressed: string;
3021
+ successColorSuppl: string;
3022
+ warningColor: string;
3023
+ warningColorHover: string;
3024
+ warningColorPressed: string;
3025
+ warningColorSuppl: string;
3026
+ errorColor: string;
3027
+ errorColorHover: string;
3028
+ errorColorPressed: string;
3029
+ errorColorSuppl: string;
3030
+ textColorBase: string;
3031
+ textColor1: string;
3032
+ textColor2: string;
3033
+ textColor3: string;
3034
+ textColorDisabled: string;
3035
+ placeholderColor: string;
3036
+ placeholderColorDisabled: string;
3037
+ iconColor: string;
3038
+ iconColorHover: string;
3039
+ iconColorPressed: string;
3040
+ iconColorDisabled: string;
3041
+ opacity1: string;
3042
+ opacity2: string;
3043
+ opacity3: string;
3044
+ opacity4: string;
3045
+ opacity5: string;
3046
+ dividerColor: string;
3047
+ borderColor: string;
3048
+ closeIconColor: string;
3049
+ closeIconColorHover: string;
3050
+ closeIconColorPressed: string;
3051
+ closeColorHover: string;
3052
+ closeColorPressed: string;
3053
+ clearColor: string;
3054
+ clearColorHover: string;
3055
+ clearColorPressed: string;
3056
+ scrollbarColor: string;
3057
+ scrollbarColorHover: string;
3058
+ scrollbarWidth: string;
3059
+ scrollbarHeight: string;
3060
+ scrollbarBorderRadius: string;
3061
+ progressRailColor: string;
3062
+ railColor: string;
3063
+ popoverColor: string;
3064
+ tableColor: string;
3065
+ cardColor: string;
3066
+ modalColor: string;
3067
+ bodyColor: string;
3068
+ tagColor: string;
3069
+ avatarColor: string;
3070
+ invertedColor: string;
3071
+ inputColor: string;
3072
+ codeColor: string;
3073
+ tabColor: string;
3074
+ actionColor: string;
3075
+ tableHeaderColor: string;
3076
+ hoverColor: string;
3077
+ tableColorHover: string;
3078
+ tableColorStriped: string;
3079
+ pressedColor: string;
3080
+ opacityDisabled: string;
3081
+ inputColorDisabled: string;
3082
+ buttonColor2: string;
3083
+ buttonColor2Hover: string;
3084
+ buttonColor2Pressed: string;
3085
+ boxShadow1: string;
3086
+ boxShadow2: string;
3087
+ boxShadow3: string;
3088
+ fontFamily: string;
3089
+ fontFamilyMono: string;
3090
+ fontWeight: string;
3091
+ fontWeightStrong: string;
3092
+ cubicBezierEaseInOut: string;
3093
+ cubicBezierEaseOut: string;
3094
+ cubicBezierEaseIn: string;
3095
+ borderRadius: string;
3096
+ borderRadiusSmall: string;
3097
+ fontSize: string;
3098
+ fontSizeMini: string;
3099
+ fontSizeTiny: string;
3100
+ fontSizeSmall: string;
3101
+ fontSizeMedium: string;
3102
+ fontSizeLarge: string;
3103
+ fontSizeHuge: string;
3104
+ lineHeight: string;
3105
+ heightMini: string;
3106
+ heightTiny: string;
3107
+ heightSmall: string;
3108
+ heightMedium: string;
3109
+ heightLarge: string;
3110
+ heightHuge: string;
3111
+ name: "common";
3112
+ };
3113
+ self: {
3114
+ countTextColor: string;
3115
+ heightTiny: string;
3116
+ heightSmall: string;
3117
+ heightMedium: string;
3118
+ heightLarge: string;
3119
+ fontSizeTiny: string;
3120
+ fontSizeSmall: string;
3121
+ fontSizeMedium: string;
3122
+ fontSizeLarge: string;
3123
+ lineHeight: string;
3124
+ lineHeightTextarea: string;
3125
+ borderRadius: string;
3126
+ iconSize: string;
3127
+ groupLabelColor: string;
3128
+ groupLabelTextColor: string;
3129
+ textColor: string;
3130
+ textColorDisabled: string;
3131
+ textDecorationColor: string;
3132
+ caretColor: string;
3133
+ placeholderColor: string;
3134
+ placeholderColorDisabled: string;
3135
+ color: string;
3136
+ colorDisabled: string;
3137
+ colorFocus: string;
3138
+ groupLabelBorder: string;
3139
+ border: string;
3140
+ borderHover: string;
3141
+ borderDisabled: string;
3142
+ borderFocus: string;
3143
+ boxShadowFocus: string;
3144
+ loadingColor: string;
3145
+ loadingColorWarning: string;
3146
+ borderWarning: string;
3147
+ borderHoverWarning: string;
3148
+ colorFocusWarning: string;
3149
+ borderFocusWarning: string;
3150
+ boxShadowFocusWarning: string;
3151
+ caretColorWarning: string;
3152
+ loadingColorError: string;
3153
+ borderError: string;
3154
+ borderHoverError: string;
3155
+ colorFocusError: string;
3156
+ borderFocusError: string;
3157
+ boxShadowFocusError: string;
3158
+ caretColorError: string;
3159
+ clearColor: string;
3160
+ clearColorHover: string;
3161
+ clearColorPressed: string;
3162
+ iconColor: string;
3163
+ iconColorDisabled: string;
3164
+ iconColorHover: string;
3165
+ iconColorPressed: string;
3166
+ suffixTextColor: string;
3167
+ paddingTiny: string;
3168
+ paddingSmall: string;
3169
+ paddingMedium: string;
3170
+ paddingLarge: string;
3171
+ clearSize: string;
3172
+ };
3173
+ peers: any;
3174
+ peerOverrides: {
3175
+ [x: string]: any;
3176
+ };
3177
+ }>;
3178
+ cssVars: import("vue").ComputedRef<{
3179
+ '--n-bezier': string;
3180
+ '--n-count-text-color': string;
3181
+ '--n-color': string;
3182
+ '--n-font-size': string;
3183
+ '--n-border-radius': string;
3184
+ '--n-height': string;
3185
+ '--n-padding-left': string;
3186
+ '--n-padding-right': string;
3187
+ '--n-text-color': string;
3188
+ '--n-caret-color': string;
3189
+ '--n-text-decoration-color': string;
3190
+ '--n-border': string;
3191
+ '--n-border-disabled': string;
3192
+ '--n-border-hover': string;
3193
+ '--n-border-focus': string;
3194
+ '--n-placeholder-color': string;
3195
+ '--n-placeholder-color-disabled': string;
3196
+ '--n-icon-size': string;
3197
+ '--n-line-height-textarea': string;
3198
+ '--n-color-disabled': string;
3199
+ '--n-color-focus': string;
3200
+ '--n-text-color-disabled': string;
3201
+ '--n-box-shadow-focus': string;
3202
+ '--n-loading-color': string;
3203
+ '--n-caret-color-warning': string;
3204
+ '--n-color-focus-warning': string;
3205
+ '--n-box-shadow-focus-warning': string;
3206
+ '--n-border-warning': string;
3207
+ '--n-border-focus-warning': string;
3208
+ '--n-border-hover-warning': string;
3209
+ '--n-loading-color-warning': string;
3210
+ '--n-caret-color-error': string;
3211
+ '--n-color-focus-error': string;
3212
+ '--n-box-shadow-focus-error': string;
3213
+ '--n-border-error': string;
3214
+ '--n-border-focus-error': string;
3215
+ '--n-border-hover-error': string;
3216
+ '--n-loading-color-error': string;
3217
+ '--n-clear-color': string;
3218
+ '--n-clear-size': string;
3219
+ '--n-clear-color-hover': string;
3220
+ '--n-clear-color-pressed': string;
3221
+ '--n-icon-color': string;
3222
+ '--n-icon-color-hover': string;
3223
+ '--n-icon-color-pressed': string;
3224
+ '--n-icon-color-disabled': string;
3225
+ '--n-suffix-text-color': string;
3226
+ }> | undefined;
3227
+ themeClass: import("vue").Ref<string> | undefined;
3228
+ onRender: (() => void) | undefined;
3229
+ isCompositing: import("vue").Ref<boolean>;
3230
+ blur: () => void;
3231
+ focus: () => void;
3232
+ select: () => void;
3233
+ activate: () => void;
3234
+ deactivate: () => void;
3235
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3236
+ bordered: {
3237
+ type: import("vue").PropType<boolean | undefined>;
3238
+ default: undefined;
3239
+ };
3240
+ type: {
3241
+ type: import("vue").PropType<"text" | "textarea" | "password">;
3242
+ default: string;
3243
+ };
3244
+ placeholder: import("vue").PropType<string | [string, string]>;
3245
+ defaultValue: {
3246
+ type: import("vue").PropType<string | [string, string] | null>;
3247
+ default: null;
3248
+ };
3249
+ value: import("vue").PropType<string | [string, string] | null>;
3250
+ disabled: {
3251
+ type: import("vue").PropType<boolean | undefined>;
3252
+ default: undefined;
3253
+ };
3254
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
3255
+ rows: {
3256
+ type: import("vue").PropType<string | number>;
3257
+ default: number;
3258
+ };
3259
+ round: BooleanConstructor;
3260
+ minlength: import("vue").PropType<string | number>;
3261
+ maxlength: import("vue").PropType<string | number>;
3262
+ clearable: BooleanConstructor;
3263
+ autosize: {
3264
+ type: import("vue").PropType<boolean | {
3265
+ minRows?: number | undefined;
3266
+ maxRows?: number | undefined;
3267
+ }>;
3268
+ default: boolean;
3269
+ };
3270
+ pair: BooleanConstructor;
3271
+ separator: StringConstructor;
3272
+ readonly: {
3273
+ type: (BooleanConstructor | StringConstructor)[];
3274
+ default: boolean;
3275
+ };
3276
+ passivelyActivated: BooleanConstructor;
3277
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
3278
+ stateful: {
3279
+ type: BooleanConstructor;
3280
+ default: boolean;
3281
+ };
3282
+ autofocus: BooleanConstructor;
3283
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
3284
+ resizable: {
3285
+ type: BooleanConstructor;
3286
+ default: boolean;
3287
+ };
3288
+ showCount: BooleanConstructor;
3289
+ loading: {
3290
+ type: BooleanConstructor;
3291
+ default: undefined;
3292
+ };
3293
+ allowInput: import("vue").PropType<(value: string) => boolean>;
3294
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
3295
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
3296
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
3297
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
3298
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3299
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3300
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
3301
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
3302
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
3303
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
3304
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
3305
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
3306
+ textDecoration: import("vue").PropType<string | [string, string]>;
3307
+ attrSize: {
3308
+ type: NumberConstructor;
3309
+ default: number;
3310
+ };
3311
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3312
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3313
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
3314
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
3315
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3316
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3317
+ internalDeactivateOnEnter: BooleanConstructor;
3318
+ internalForceFocus: BooleanConstructor;
3319
+ internalLoadingBeforeSuffix: BooleanConstructor;
3320
+ showPasswordToggle: BooleanConstructor;
3321
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
3322
+ countTextColor: string;
3323
+ heightTiny: string;
3324
+ heightSmall: string;
3325
+ heightMedium: string;
3326
+ heightLarge: string;
3327
+ fontSizeTiny: string;
3328
+ fontSizeSmall: string;
3329
+ fontSizeMedium: string;
3330
+ fontSizeLarge: string;
3331
+ lineHeight: string;
3332
+ lineHeightTextarea: string;
3333
+ borderRadius: string;
3334
+ iconSize: string;
3335
+ groupLabelColor: string;
3336
+ groupLabelTextColor: string;
3337
+ textColor: string;
3338
+ textColorDisabled: string;
3339
+ textDecorationColor: string;
3340
+ caretColor: string;
3341
+ placeholderColor: string;
3342
+ placeholderColorDisabled: string;
3343
+ color: string;
3344
+ colorDisabled: string;
3345
+ colorFocus: string;
3346
+ groupLabelBorder: string;
3347
+ border: string;
3348
+ borderHover: string;
3349
+ borderDisabled: string;
3350
+ borderFocus: string;
3351
+ boxShadowFocus: string;
3352
+ loadingColor: string;
3353
+ loadingColorWarning: string;
3354
+ borderWarning: string;
3355
+ borderHoverWarning: string;
3356
+ colorFocusWarning: string;
3357
+ borderFocusWarning: string;
3358
+ boxShadowFocusWarning: string;
3359
+ caretColorWarning: string;
3360
+ loadingColorError: string;
3361
+ borderError: string;
3362
+ borderHoverError: string;
3363
+ colorFocusError: string;
3364
+ borderFocusError: string;
3365
+ boxShadowFocusError: string;
3366
+ caretColorError: string;
3367
+ clearColor: string;
3368
+ clearColorHover: string;
3369
+ clearColorPressed: string;
3370
+ iconColor: string;
3371
+ iconColorDisabled: string;
3372
+ iconColorHover: string;
3373
+ iconColorPressed: string;
3374
+ suffixTextColor: string;
3375
+ paddingTiny: string;
3376
+ paddingSmall: string;
3377
+ paddingMedium: string;
3378
+ paddingLarge: string;
3379
+ clearSize: string;
3380
+ }, any>>;
3381
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
3382
+ countTextColor: string;
3383
+ heightTiny: string;
3384
+ heightSmall: string;
3385
+ heightMedium: string;
3386
+ heightLarge: string;
3387
+ fontSizeTiny: string;
3388
+ fontSizeSmall: string;
3389
+ fontSizeMedium: string;
3390
+ fontSizeLarge: string;
3391
+ lineHeight: string;
3392
+ lineHeightTextarea: string;
3393
+ borderRadius: string;
3394
+ iconSize: string;
3395
+ groupLabelColor: string;
3396
+ groupLabelTextColor: string;
3397
+ textColor: string;
3398
+ textColorDisabled: string;
3399
+ textDecorationColor: string;
3400
+ caretColor: string;
3401
+ placeholderColor: string;
3402
+ placeholderColorDisabled: string;
3403
+ color: string;
3404
+ colorDisabled: string;
3405
+ colorFocus: string;
3406
+ groupLabelBorder: string;
3407
+ border: string;
3408
+ borderHover: string;
3409
+ borderDisabled: string;
3410
+ borderFocus: string;
3411
+ boxShadowFocus: string;
3412
+ loadingColor: string;
3413
+ loadingColorWarning: string;
3414
+ borderWarning: string;
3415
+ borderHoverWarning: string;
3416
+ colorFocusWarning: string;
3417
+ borderFocusWarning: string;
3418
+ boxShadowFocusWarning: string;
3419
+ caretColorWarning: string;
3420
+ loadingColorError: string;
3421
+ borderError: string;
3422
+ borderHoverError: string;
3423
+ colorFocusError: string;
3424
+ borderFocusError: string;
3425
+ boxShadowFocusError: string;
3426
+ caretColorError: string;
3427
+ clearColor: string;
3428
+ clearColorHover: string;
3429
+ clearColorPressed: string;
3430
+ iconColor: string;
3431
+ iconColorDisabled: string;
3432
+ iconColorHover: string;
3433
+ iconColorPressed: string;
3434
+ suffixTextColor: string;
3435
+ paddingTiny: string;
3436
+ paddingSmall: string;
3437
+ paddingMedium: string;
3438
+ paddingLarge: string;
3439
+ clearSize: string;
3440
+ }, any>>>;
3441
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
3442
+ countTextColor: string;
3443
+ heightTiny: string;
3444
+ heightSmall: string;
3445
+ heightMedium: string;
3446
+ heightLarge: string;
3447
+ fontSizeTiny: string;
3448
+ fontSizeSmall: string;
3449
+ fontSizeMedium: string;
3450
+ fontSizeLarge: string;
3451
+ lineHeight: string;
3452
+ lineHeightTextarea: string;
3453
+ borderRadius: string;
3454
+ iconSize: string;
3455
+ groupLabelColor: string;
3456
+ groupLabelTextColor: string;
3457
+ textColor: string;
3458
+ textColorDisabled: string;
3459
+ textDecorationColor: string;
3460
+ caretColor: string;
3461
+ placeholderColor: string;
3462
+ placeholderColorDisabled: string;
3463
+ color: string;
3464
+ colorDisabled: string;
3465
+ colorFocus: string;
3466
+ groupLabelBorder: string;
3467
+ border: string;
3468
+ borderHover: string;
3469
+ borderDisabled: string;
3470
+ borderFocus: string;
3471
+ boxShadowFocus: string;
3472
+ loadingColor: string;
3473
+ loadingColorWarning: string;
3474
+ borderWarning: string;
3475
+ borderHoverWarning: string;
3476
+ colorFocusWarning: string;
3477
+ borderFocusWarning: string;
3478
+ boxShadowFocusWarning: string;
3479
+ caretColorWarning: string;
3480
+ loadingColorError: string;
3481
+ borderError: string;
3482
+ borderHoverError: string;
3483
+ colorFocusError: string;
3484
+ borderFocusError: string;
3485
+ boxShadowFocusError: string;
3486
+ caretColorError: string;
3487
+ clearColor: string;
3488
+ clearColorHover: string;
3489
+ clearColorPressed: string;
3490
+ iconColor: string;
3491
+ iconColorDisabled: string;
3492
+ iconColorHover: string;
3493
+ iconColorPressed: string;
3494
+ suffixTextColor: string;
3495
+ paddingTiny: string;
3496
+ paddingSmall: string;
3497
+ paddingMedium: string;
3498
+ paddingLarge: string;
3499
+ clearSize: string;
3500
+ }, any>>>;
3501
+ }>>, {
3502
+ type: "text" | "textarea" | "password";
3503
+ readonly: string | boolean;
3504
+ round: boolean;
3505
+ disabled: boolean | undefined;
3506
+ autofocus: boolean;
3507
+ autosize: boolean | {
3508
+ minRows?: number | undefined;
3509
+ maxRows?: number | undefined;
3510
+ };
3511
+ loading: boolean;
3512
+ bordered: boolean | undefined;
3513
+ clearable: boolean;
3514
+ defaultValue: string | [string, string] | null;
3515
+ resizable: boolean;
3516
+ pair: boolean;
3517
+ rows: string | number;
3518
+ passivelyActivated: boolean;
3519
+ stateful: boolean;
3520
+ showCount: boolean;
3521
+ attrSize: number;
3522
+ internalDeactivateOnEnter: boolean;
3523
+ internalForceFocus: boolean;
3524
+ internalLoadingBeforeSuffix: boolean;
3525
+ showPasswordToggle: boolean;
3526
+ }>;
3527
+ Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3528
+ Add: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3529
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3530
+ classifyItem: {
3531
+ type: null;
3532
+ required: false;
3533
+ default: () => {};
3534
+ };
3535
+ handleLabelChange: {
3536
+ type: FunctionConstructor;
3537
+ required: false;
3538
+ default: () => void;
3539
+ };
3540
+ handleLabelColor: {
3541
+ type: FunctionConstructor;
3542
+ required: false;
3543
+ default: () => void;
3544
+ };
3545
+ handleDelLabel: {
3546
+ type: FunctionConstructor;
3547
+ required: false;
3548
+ default: () => void;
3549
+ };
3550
+ handleAddLabel: {
3551
+ type: FunctionConstructor;
3552
+ required: false;
3553
+ default: () => void;
3554
+ };
3555
+ hanldeBlur: {
3556
+ type: FunctionConstructor;
3557
+ required: false;
3558
+ default: () => void;
3559
+ };
3560
+ clearaddVal: {
3561
+ type: FunctionConstructor;
3562
+ required: false;
3563
+ default: () => void;
3564
+ };
3565
+ isEdit: {
3566
+ type: BooleanConstructor;
3567
+ required: false;
3568
+ default: boolean;
3569
+ };
3570
+ sourceType: {
3571
+ type: StringConstructor;
3572
+ required: false;
3573
+ };
3574
+ }>>, {
3575
+ isEdit: boolean;
3576
+ classifyItem: any;
3577
+ handleLabelChange: Function;
3578
+ handleLabelColor: Function;
3579
+ handleDelLabel: Function;
3580
+ handleAddLabel: Function;
3581
+ hanldeBlur: Function;
3582
+ clearaddVal: Function;
3583
+ }>;
3584
+ export default _default;