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