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