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,2252 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ content: import("vue").Ref<string>;
3
+ NButton: import("vue").DefineComponent<{
4
+ readonly color: StringConstructor;
5
+ readonly textColor: StringConstructor;
6
+ readonly text: BooleanConstructor;
7
+ readonly block: BooleanConstructor;
8
+ readonly loading: BooleanConstructor;
9
+ readonly disabled: BooleanConstructor;
10
+ readonly circle: BooleanConstructor;
11
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
12
+ readonly ghost: BooleanConstructor;
13
+ readonly round: BooleanConstructor;
14
+ readonly secondary: BooleanConstructor;
15
+ readonly tertiary: BooleanConstructor;
16
+ readonly quaternary: BooleanConstructor;
17
+ readonly strong: BooleanConstructor;
18
+ readonly focusable: {
19
+ readonly type: BooleanConstructor;
20
+ readonly default: true;
21
+ };
22
+ readonly keyboard: {
23
+ readonly type: BooleanConstructor;
24
+ readonly default: true;
25
+ };
26
+ readonly tag: {
27
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
28
+ readonly default: "button";
29
+ };
30
+ readonly type: {
31
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
32
+ readonly default: "default";
33
+ };
34
+ readonly dashed: BooleanConstructor;
35
+ readonly iconPlacement: {
36
+ readonly type: import("vue").PropType<"left" | "right">;
37
+ readonly default: "left";
38
+ };
39
+ readonly attrType: {
40
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
41
+ readonly default: "button";
42
+ };
43
+ readonly bordered: {
44
+ readonly type: BooleanConstructor;
45
+ readonly default: true;
46
+ };
47
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
48
+ readonly nativeFocusBehavior: {
49
+ readonly type: BooleanConstructor;
50
+ readonly default: boolean;
51
+ };
52
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
53
+ heightTiny: string;
54
+ heightSmall: string;
55
+ heightMedium: string;
56
+ heightLarge: string;
57
+ borderRadiusTiny: string;
58
+ borderRadiusSmall: string;
59
+ borderRadiusMedium: string;
60
+ borderRadiusLarge: string;
61
+ fontSizeTiny: string;
62
+ fontSizeSmall: string;
63
+ fontSizeMedium: string;
64
+ fontSizeLarge: string;
65
+ opacityDisabled: string;
66
+ colorOpacitySecondary: string;
67
+ colorOpacitySecondaryHover: string;
68
+ colorOpacitySecondaryPressed: string;
69
+ colorSecondary: string;
70
+ colorSecondaryHover: string;
71
+ colorSecondaryPressed: string;
72
+ colorTertiary: string;
73
+ colorTertiaryHover: string;
74
+ colorTertiaryPressed: string;
75
+ colorQuaternary: string;
76
+ colorQuaternaryHover: string;
77
+ colorQuaternaryPressed: string;
78
+ color: string;
79
+ colorHover: string;
80
+ colorPressed: string;
81
+ colorFocus: string;
82
+ colorDisabled: string;
83
+ textColor: string;
84
+ textColorTertiary: string;
85
+ textColorHover: string;
86
+ textColorPressed: string;
87
+ textColorFocus: string;
88
+ textColorDisabled: string;
89
+ textColorText: string;
90
+ textColorTextHover: string;
91
+ textColorTextPressed: string;
92
+ textColorTextFocus: string;
93
+ textColorTextDisabled: string;
94
+ textColorGhost: string;
95
+ textColorGhostHover: string;
96
+ textColorGhostPressed: string;
97
+ textColorGhostFocus: string;
98
+ textColorGhostDisabled: string;
99
+ border: string;
100
+ borderHover: string;
101
+ borderPressed: string;
102
+ borderFocus: string;
103
+ borderDisabled: string;
104
+ rippleColor: string;
105
+ colorPrimary: string;
106
+ colorHoverPrimary: string;
107
+ colorPressedPrimary: string;
108
+ colorFocusPrimary: string;
109
+ colorDisabledPrimary: string;
110
+ textColorPrimary: string;
111
+ textColorHoverPrimary: string;
112
+ textColorPressedPrimary: string;
113
+ textColorFocusPrimary: string;
114
+ textColorDisabledPrimary: string;
115
+ textColorTextPrimary: string;
116
+ textColorTextHoverPrimary: string;
117
+ textColorTextPressedPrimary: string;
118
+ textColorTextFocusPrimary: string;
119
+ textColorTextDisabledPrimary: string;
120
+ textColorGhostPrimary: string;
121
+ textColorGhostHoverPrimary: string;
122
+ textColorGhostPressedPrimary: string;
123
+ textColorGhostFocusPrimary: string;
124
+ textColorGhostDisabledPrimary: string;
125
+ borderPrimary: string;
126
+ borderHoverPrimary: string;
127
+ borderPressedPrimary: string;
128
+ borderFocusPrimary: string;
129
+ borderDisabledPrimary: string;
130
+ rippleColorPrimary: string;
131
+ colorInfo: string;
132
+ colorHoverInfo: string;
133
+ colorPressedInfo: string;
134
+ colorFocusInfo: string;
135
+ colorDisabledInfo: string;
136
+ textColorInfo: string;
137
+ textColorHoverInfo: string;
138
+ textColorPressedInfo: string;
139
+ textColorFocusInfo: string;
140
+ textColorDisabledInfo: string;
141
+ textColorTextInfo: string;
142
+ textColorTextHoverInfo: string;
143
+ textColorTextPressedInfo: string;
144
+ textColorTextFocusInfo: string;
145
+ textColorTextDisabledInfo: string;
146
+ textColorGhostInfo: string;
147
+ textColorGhostHoverInfo: string;
148
+ textColorGhostPressedInfo: string;
149
+ textColorGhostFocusInfo: string;
150
+ textColorGhostDisabledInfo: string;
151
+ borderInfo: string;
152
+ borderHoverInfo: string;
153
+ borderPressedInfo: string;
154
+ borderFocusInfo: string;
155
+ borderDisabledInfo: string;
156
+ rippleColorInfo: string;
157
+ colorSuccess: string;
158
+ colorHoverSuccess: string;
159
+ colorPressedSuccess: string;
160
+ colorFocusSuccess: string;
161
+ colorDisabledSuccess: string;
162
+ textColorSuccess: string;
163
+ textColorHoverSuccess: string;
164
+ textColorPressedSuccess: string;
165
+ textColorFocusSuccess: string;
166
+ textColorDisabledSuccess: string;
167
+ textColorTextSuccess: string;
168
+ textColorTextHoverSuccess: string;
169
+ textColorTextPressedSuccess: string;
170
+ textColorTextFocusSuccess: string;
171
+ textColorTextDisabledSuccess: string;
172
+ textColorGhostSuccess: string;
173
+ textColorGhostHoverSuccess: string;
174
+ textColorGhostPressedSuccess: string;
175
+ textColorGhostFocusSuccess: string;
176
+ textColorGhostDisabledSuccess: string;
177
+ borderSuccess: string;
178
+ borderHoverSuccess: string;
179
+ borderPressedSuccess: string;
180
+ borderFocusSuccess: string;
181
+ borderDisabledSuccess: string;
182
+ rippleColorSuccess: string;
183
+ colorWarning: string;
184
+ colorHoverWarning: string;
185
+ colorPressedWarning: string;
186
+ colorFocusWarning: string;
187
+ colorDisabledWarning: string;
188
+ textColorWarning: string;
189
+ textColorHoverWarning: string;
190
+ textColorPressedWarning: string;
191
+ textColorFocusWarning: string;
192
+ textColorDisabledWarning: string;
193
+ textColorTextWarning: string;
194
+ textColorTextHoverWarning: string;
195
+ textColorTextPressedWarning: string;
196
+ textColorTextFocusWarning: string;
197
+ textColorTextDisabledWarning: string;
198
+ textColorGhostWarning: string;
199
+ textColorGhostHoverWarning: string;
200
+ textColorGhostPressedWarning: string;
201
+ textColorGhostFocusWarning: string;
202
+ textColorGhostDisabledWarning: string;
203
+ borderWarning: string;
204
+ borderHoverWarning: string;
205
+ borderPressedWarning: string;
206
+ borderFocusWarning: string;
207
+ borderDisabledWarning: string;
208
+ rippleColorWarning: string;
209
+ colorError: string;
210
+ colorHoverError: string;
211
+ colorPressedError: string;
212
+ colorFocusError: string;
213
+ colorDisabledError: string;
214
+ textColorError: string;
215
+ textColorHoverError: string;
216
+ textColorPressedError: string;
217
+ textColorFocusError: string;
218
+ textColorDisabledError: string;
219
+ textColorTextError: string;
220
+ textColorTextHoverError: string;
221
+ textColorTextPressedError: string;
222
+ textColorTextFocusError: string;
223
+ textColorTextDisabledError: string;
224
+ textColorGhostError: string;
225
+ textColorGhostHoverError: string;
226
+ textColorGhostPressedError: string;
227
+ textColorGhostFocusError: string;
228
+ textColorGhostDisabledError: string;
229
+ borderError: string;
230
+ borderHoverError: string;
231
+ borderPressedError: string;
232
+ borderFocusError: string;
233
+ borderDisabledError: string;
234
+ rippleColorError: string;
235
+ waveOpacity: string;
236
+ fontWeight: string;
237
+ fontWeightStrong: string;
238
+ paddingTiny: string;
239
+ paddingSmall: string;
240
+ paddingMedium: string;
241
+ paddingLarge: string;
242
+ paddingRoundTiny: string;
243
+ paddingRoundSmall: string;
244
+ paddingRoundMedium: string;
245
+ paddingRoundLarge: string;
246
+ iconMarginTiny: string;
247
+ iconMarginSmall: string;
248
+ iconMarginMedium: string;
249
+ iconMarginLarge: string;
250
+ iconSizeTiny: string;
251
+ iconSizeSmall: string;
252
+ iconSizeMedium: string;
253
+ iconSizeLarge: string;
254
+ rippleDuration: string;
255
+ }, any>>;
256
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
257
+ heightTiny: string;
258
+ heightSmall: string;
259
+ heightMedium: string;
260
+ heightLarge: string;
261
+ borderRadiusTiny: string;
262
+ borderRadiusSmall: string;
263
+ borderRadiusMedium: string;
264
+ borderRadiusLarge: string;
265
+ fontSizeTiny: string;
266
+ fontSizeSmall: string;
267
+ fontSizeMedium: string;
268
+ fontSizeLarge: string;
269
+ opacityDisabled: string;
270
+ colorOpacitySecondary: string;
271
+ colorOpacitySecondaryHover: string;
272
+ colorOpacitySecondaryPressed: string;
273
+ colorSecondary: string;
274
+ colorSecondaryHover: string;
275
+ colorSecondaryPressed: string;
276
+ colorTertiary: string;
277
+ colorTertiaryHover: string;
278
+ colorTertiaryPressed: string;
279
+ colorQuaternary: string;
280
+ colorQuaternaryHover: string;
281
+ colorQuaternaryPressed: string;
282
+ color: string;
283
+ colorHover: string;
284
+ colorPressed: string;
285
+ colorFocus: string;
286
+ colorDisabled: string;
287
+ textColor: string;
288
+ textColorTertiary: string;
289
+ textColorHover: string;
290
+ textColorPressed: string;
291
+ textColorFocus: string;
292
+ textColorDisabled: string;
293
+ textColorText: string;
294
+ textColorTextHover: string;
295
+ textColorTextPressed: string;
296
+ textColorTextFocus: string;
297
+ textColorTextDisabled: string;
298
+ textColorGhost: string;
299
+ textColorGhostHover: string;
300
+ textColorGhostPressed: string;
301
+ textColorGhostFocus: string;
302
+ textColorGhostDisabled: string;
303
+ border: string;
304
+ borderHover: string;
305
+ borderPressed: string;
306
+ borderFocus: string;
307
+ borderDisabled: string;
308
+ rippleColor: string;
309
+ colorPrimary: string;
310
+ colorHoverPrimary: string;
311
+ colorPressedPrimary: string;
312
+ colorFocusPrimary: string;
313
+ colorDisabledPrimary: string;
314
+ textColorPrimary: string;
315
+ textColorHoverPrimary: string;
316
+ textColorPressedPrimary: string;
317
+ textColorFocusPrimary: string;
318
+ textColorDisabledPrimary: string;
319
+ textColorTextPrimary: string;
320
+ textColorTextHoverPrimary: string;
321
+ textColorTextPressedPrimary: string;
322
+ textColorTextFocusPrimary: string;
323
+ textColorTextDisabledPrimary: string;
324
+ textColorGhostPrimary: string;
325
+ textColorGhostHoverPrimary: string;
326
+ textColorGhostPressedPrimary: string;
327
+ textColorGhostFocusPrimary: string;
328
+ textColorGhostDisabledPrimary: string;
329
+ borderPrimary: string;
330
+ borderHoverPrimary: string;
331
+ borderPressedPrimary: string;
332
+ borderFocusPrimary: string;
333
+ borderDisabledPrimary: string;
334
+ rippleColorPrimary: string;
335
+ colorInfo: string;
336
+ colorHoverInfo: string;
337
+ colorPressedInfo: string;
338
+ colorFocusInfo: string;
339
+ colorDisabledInfo: string;
340
+ textColorInfo: string;
341
+ textColorHoverInfo: string;
342
+ textColorPressedInfo: string;
343
+ textColorFocusInfo: string;
344
+ textColorDisabledInfo: string;
345
+ textColorTextInfo: string;
346
+ textColorTextHoverInfo: string;
347
+ textColorTextPressedInfo: string;
348
+ textColorTextFocusInfo: string;
349
+ textColorTextDisabledInfo: string;
350
+ textColorGhostInfo: string;
351
+ textColorGhostHoverInfo: string;
352
+ textColorGhostPressedInfo: string;
353
+ textColorGhostFocusInfo: string;
354
+ textColorGhostDisabledInfo: string;
355
+ borderInfo: string;
356
+ borderHoverInfo: string;
357
+ borderPressedInfo: string;
358
+ borderFocusInfo: string;
359
+ borderDisabledInfo: string;
360
+ rippleColorInfo: string;
361
+ colorSuccess: string;
362
+ colorHoverSuccess: string;
363
+ colorPressedSuccess: string;
364
+ colorFocusSuccess: string;
365
+ colorDisabledSuccess: string;
366
+ textColorSuccess: string;
367
+ textColorHoverSuccess: string;
368
+ textColorPressedSuccess: string;
369
+ textColorFocusSuccess: string;
370
+ textColorDisabledSuccess: string;
371
+ textColorTextSuccess: string;
372
+ textColorTextHoverSuccess: string;
373
+ textColorTextPressedSuccess: string;
374
+ textColorTextFocusSuccess: string;
375
+ textColorTextDisabledSuccess: string;
376
+ textColorGhostSuccess: string;
377
+ textColorGhostHoverSuccess: string;
378
+ textColorGhostPressedSuccess: string;
379
+ textColorGhostFocusSuccess: string;
380
+ textColorGhostDisabledSuccess: string;
381
+ borderSuccess: string;
382
+ borderHoverSuccess: string;
383
+ borderPressedSuccess: string;
384
+ borderFocusSuccess: string;
385
+ borderDisabledSuccess: string;
386
+ rippleColorSuccess: string;
387
+ colorWarning: string;
388
+ colorHoverWarning: string;
389
+ colorPressedWarning: string;
390
+ colorFocusWarning: string;
391
+ colorDisabledWarning: string;
392
+ textColorWarning: string;
393
+ textColorHoverWarning: string;
394
+ textColorPressedWarning: string;
395
+ textColorFocusWarning: string;
396
+ textColorDisabledWarning: string;
397
+ textColorTextWarning: string;
398
+ textColorTextHoverWarning: string;
399
+ textColorTextPressedWarning: string;
400
+ textColorTextFocusWarning: string;
401
+ textColorTextDisabledWarning: string;
402
+ textColorGhostWarning: string;
403
+ textColorGhostHoverWarning: string;
404
+ textColorGhostPressedWarning: string;
405
+ textColorGhostFocusWarning: string;
406
+ textColorGhostDisabledWarning: string;
407
+ borderWarning: string;
408
+ borderHoverWarning: string;
409
+ borderPressedWarning: string;
410
+ borderFocusWarning: string;
411
+ borderDisabledWarning: string;
412
+ rippleColorWarning: string;
413
+ colorError: string;
414
+ colorHoverError: string;
415
+ colorPressedError: string;
416
+ colorFocusError: string;
417
+ colorDisabledError: string;
418
+ textColorError: string;
419
+ textColorHoverError: string;
420
+ textColorPressedError: string;
421
+ textColorFocusError: string;
422
+ textColorDisabledError: string;
423
+ textColorTextError: string;
424
+ textColorTextHoverError: string;
425
+ textColorTextPressedError: string;
426
+ textColorTextFocusError: string;
427
+ textColorTextDisabledError: string;
428
+ textColorGhostError: string;
429
+ textColorGhostHoverError: string;
430
+ textColorGhostPressedError: string;
431
+ textColorGhostFocusError: string;
432
+ textColorGhostDisabledError: string;
433
+ borderError: string;
434
+ borderHoverError: string;
435
+ borderPressedError: string;
436
+ borderFocusError: string;
437
+ borderDisabledError: string;
438
+ rippleColorError: string;
439
+ waveOpacity: string;
440
+ fontWeight: string;
441
+ fontWeightStrong: string;
442
+ paddingTiny: string;
443
+ paddingSmall: string;
444
+ paddingMedium: string;
445
+ paddingLarge: string;
446
+ paddingRoundTiny: string;
447
+ paddingRoundSmall: string;
448
+ paddingRoundMedium: string;
449
+ paddingRoundLarge: string;
450
+ iconMarginTiny: string;
451
+ iconMarginSmall: string;
452
+ iconMarginMedium: string;
453
+ iconMarginLarge: string;
454
+ iconSizeTiny: string;
455
+ iconSizeSmall: string;
456
+ iconSizeMedium: string;
457
+ iconSizeLarge: string;
458
+ rippleDuration: string;
459
+ }, any>>>;
460
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
461
+ heightTiny: string;
462
+ heightSmall: string;
463
+ heightMedium: string;
464
+ heightLarge: string;
465
+ borderRadiusTiny: string;
466
+ borderRadiusSmall: string;
467
+ borderRadiusMedium: string;
468
+ borderRadiusLarge: string;
469
+ fontSizeTiny: string;
470
+ fontSizeSmall: string;
471
+ fontSizeMedium: string;
472
+ fontSizeLarge: string;
473
+ opacityDisabled: string;
474
+ colorOpacitySecondary: string;
475
+ colorOpacitySecondaryHover: string;
476
+ colorOpacitySecondaryPressed: string;
477
+ colorSecondary: string;
478
+ colorSecondaryHover: string;
479
+ colorSecondaryPressed: string;
480
+ colorTertiary: string;
481
+ colorTertiaryHover: string;
482
+ colorTertiaryPressed: string;
483
+ colorQuaternary: string;
484
+ colorQuaternaryHover: string;
485
+ colorQuaternaryPressed: string;
486
+ color: string;
487
+ colorHover: string;
488
+ colorPressed: string;
489
+ colorFocus: string;
490
+ colorDisabled: string;
491
+ textColor: string;
492
+ textColorTertiary: string;
493
+ textColorHover: string;
494
+ textColorPressed: string;
495
+ textColorFocus: string;
496
+ textColorDisabled: string;
497
+ textColorText: string;
498
+ textColorTextHover: string;
499
+ textColorTextPressed: string;
500
+ textColorTextFocus: string;
501
+ textColorTextDisabled: string;
502
+ textColorGhost: string;
503
+ textColorGhostHover: string;
504
+ textColorGhostPressed: string;
505
+ textColorGhostFocus: string;
506
+ textColorGhostDisabled: string;
507
+ border: string;
508
+ borderHover: string;
509
+ borderPressed: string;
510
+ borderFocus: string;
511
+ borderDisabled: string;
512
+ rippleColor: string;
513
+ colorPrimary: string;
514
+ colorHoverPrimary: string;
515
+ colorPressedPrimary: string;
516
+ colorFocusPrimary: string;
517
+ colorDisabledPrimary: string;
518
+ textColorPrimary: string;
519
+ textColorHoverPrimary: string;
520
+ textColorPressedPrimary: string;
521
+ textColorFocusPrimary: string;
522
+ textColorDisabledPrimary: string;
523
+ textColorTextPrimary: string;
524
+ textColorTextHoverPrimary: string;
525
+ textColorTextPressedPrimary: string;
526
+ textColorTextFocusPrimary: string;
527
+ textColorTextDisabledPrimary: string;
528
+ textColorGhostPrimary: string;
529
+ textColorGhostHoverPrimary: string;
530
+ textColorGhostPressedPrimary: string;
531
+ textColorGhostFocusPrimary: string;
532
+ textColorGhostDisabledPrimary: string;
533
+ borderPrimary: string;
534
+ borderHoverPrimary: string;
535
+ borderPressedPrimary: string;
536
+ borderFocusPrimary: string;
537
+ borderDisabledPrimary: string;
538
+ rippleColorPrimary: string;
539
+ colorInfo: string;
540
+ colorHoverInfo: string;
541
+ colorPressedInfo: string;
542
+ colorFocusInfo: string;
543
+ colorDisabledInfo: string;
544
+ textColorInfo: string;
545
+ textColorHoverInfo: string;
546
+ textColorPressedInfo: string;
547
+ textColorFocusInfo: string;
548
+ textColorDisabledInfo: string;
549
+ textColorTextInfo: string;
550
+ textColorTextHoverInfo: string;
551
+ textColorTextPressedInfo: string;
552
+ textColorTextFocusInfo: string;
553
+ textColorTextDisabledInfo: string;
554
+ textColorGhostInfo: string;
555
+ textColorGhostHoverInfo: string;
556
+ textColorGhostPressedInfo: string;
557
+ textColorGhostFocusInfo: string;
558
+ textColorGhostDisabledInfo: string;
559
+ borderInfo: string;
560
+ borderHoverInfo: string;
561
+ borderPressedInfo: string;
562
+ borderFocusInfo: string;
563
+ borderDisabledInfo: string;
564
+ rippleColorInfo: string;
565
+ colorSuccess: string;
566
+ colorHoverSuccess: string;
567
+ colorPressedSuccess: string;
568
+ colorFocusSuccess: string;
569
+ colorDisabledSuccess: string;
570
+ textColorSuccess: string;
571
+ textColorHoverSuccess: string;
572
+ textColorPressedSuccess: string;
573
+ textColorFocusSuccess: string;
574
+ textColorDisabledSuccess: string;
575
+ textColorTextSuccess: string;
576
+ textColorTextHoverSuccess: string;
577
+ textColorTextPressedSuccess: string;
578
+ textColorTextFocusSuccess: string;
579
+ textColorTextDisabledSuccess: string;
580
+ textColorGhostSuccess: string;
581
+ textColorGhostHoverSuccess: string;
582
+ textColorGhostPressedSuccess: string;
583
+ textColorGhostFocusSuccess: string;
584
+ textColorGhostDisabledSuccess: string;
585
+ borderSuccess: string;
586
+ borderHoverSuccess: string;
587
+ borderPressedSuccess: string;
588
+ borderFocusSuccess: string;
589
+ borderDisabledSuccess: string;
590
+ rippleColorSuccess: string;
591
+ colorWarning: string;
592
+ colorHoverWarning: string;
593
+ colorPressedWarning: string;
594
+ colorFocusWarning: string;
595
+ colorDisabledWarning: string;
596
+ textColorWarning: string;
597
+ textColorHoverWarning: string;
598
+ textColorPressedWarning: string;
599
+ textColorFocusWarning: string;
600
+ textColorDisabledWarning: string;
601
+ textColorTextWarning: string;
602
+ textColorTextHoverWarning: string;
603
+ textColorTextPressedWarning: string;
604
+ textColorTextFocusWarning: string;
605
+ textColorTextDisabledWarning: string;
606
+ textColorGhostWarning: string;
607
+ textColorGhostHoverWarning: string;
608
+ textColorGhostPressedWarning: string;
609
+ textColorGhostFocusWarning: string;
610
+ textColorGhostDisabledWarning: string;
611
+ borderWarning: string;
612
+ borderHoverWarning: string;
613
+ borderPressedWarning: string;
614
+ borderFocusWarning: string;
615
+ borderDisabledWarning: string;
616
+ rippleColorWarning: string;
617
+ colorError: string;
618
+ colorHoverError: string;
619
+ colorPressedError: string;
620
+ colorFocusError: string;
621
+ colorDisabledError: string;
622
+ textColorError: string;
623
+ textColorHoverError: string;
624
+ textColorPressedError: string;
625
+ textColorFocusError: string;
626
+ textColorDisabledError: string;
627
+ textColorTextError: string;
628
+ textColorTextHoverError: string;
629
+ textColorTextPressedError: string;
630
+ textColorTextFocusError: string;
631
+ textColorTextDisabledError: string;
632
+ textColorGhostError: string;
633
+ textColorGhostHoverError: string;
634
+ textColorGhostPressedError: string;
635
+ textColorGhostFocusError: string;
636
+ textColorGhostDisabledError: string;
637
+ borderError: string;
638
+ borderHoverError: string;
639
+ borderPressedError: string;
640
+ borderFocusError: string;
641
+ borderDisabledError: string;
642
+ rippleColorError: string;
643
+ waveOpacity: string;
644
+ fontWeight: string;
645
+ fontWeightStrong: string;
646
+ paddingTiny: string;
647
+ paddingSmall: string;
648
+ paddingMedium: string;
649
+ paddingLarge: string;
650
+ paddingRoundTiny: string;
651
+ paddingRoundSmall: string;
652
+ paddingRoundMedium: string;
653
+ paddingRoundLarge: string;
654
+ iconMarginTiny: string;
655
+ iconMarginSmall: string;
656
+ iconMarginMedium: string;
657
+ iconMarginLarge: string;
658
+ iconSizeTiny: string;
659
+ iconSizeSmall: string;
660
+ iconSizeMedium: string;
661
+ iconSizeLarge: string;
662
+ rippleDuration: string;
663
+ }, any>>>;
664
+ }, {
665
+ selfElRef: import("vue").Ref<HTMLElement | null>;
666
+ waveElRef: import("vue").Ref<{
667
+ play: () => void;
668
+ } | null>;
669
+ mergedClsPrefix: import("vue").ComputedRef<string>;
670
+ mergedFocusable: import("vue").ComputedRef<boolean>;
671
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
672
+ showBorder: import("vue").ComputedRef<boolean>;
673
+ enterPressed: import("vue").Ref<boolean>;
674
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
675
+ handleMousedown: (e: MouseEvent) => void;
676
+ handleKeydown: (e: KeyboardEvent) => void;
677
+ handleBlur: () => void;
678
+ handleKeyup: (e: KeyboardEvent) => void;
679
+ handleClick: (e: MouseEvent) => void;
680
+ customColorCssVars: import("vue").ComputedRef<{
681
+ '--n-border-color': string;
682
+ '--n-border-color-hover': string;
683
+ '--n-border-color-pressed': string;
684
+ '--n-border-color-focus': string;
685
+ '--n-border-color-disabled': string;
686
+ } | null>;
687
+ cssVars: import("vue").ComputedRef<{
688
+ '--n-width': string;
689
+ '--n-height': string;
690
+ '--n-font-size': string;
691
+ '--n-padding': string;
692
+ '--n-icon-size': string;
693
+ '--n-icon-margin': string;
694
+ '--n-border-radius': string;
695
+ '--n-border': string;
696
+ '--n-border-hover': string;
697
+ '--n-border-pressed': string;
698
+ '--n-border-focus': string;
699
+ '--n-border-disabled': string;
700
+ '--n-color': string;
701
+ '--n-color-hover': string;
702
+ '--n-color-pressed': string;
703
+ '--n-color-focus': string;
704
+ '--n-color-disabled': string;
705
+ '--n-ripple-color': string;
706
+ '--n-text-color': string;
707
+ '--n-text-color-hover': string;
708
+ '--n-text-color-pressed': string;
709
+ '--n-text-color-focus': string;
710
+ '--n-text-color-disabled': string;
711
+ 'font-weight': string;
712
+ '--n-bezier': string;
713
+ '--n-bezier-ease-out': string;
714
+ '--n-ripple-duration': string;
715
+ '--n-opacity-disabled': string;
716
+ '--n-wave-opacity': string;
717
+ }> | undefined;
718
+ themeClass: import("vue").Ref<string> | undefined;
719
+ onRender: (() => void) | undefined;
720
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
721
+ readonly color: StringConstructor;
722
+ readonly textColor: StringConstructor;
723
+ readonly text: BooleanConstructor;
724
+ readonly block: BooleanConstructor;
725
+ readonly loading: BooleanConstructor;
726
+ readonly disabled: BooleanConstructor;
727
+ readonly circle: BooleanConstructor;
728
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
729
+ readonly ghost: BooleanConstructor;
730
+ readonly round: BooleanConstructor;
731
+ readonly secondary: BooleanConstructor;
732
+ readonly tertiary: BooleanConstructor;
733
+ readonly quaternary: BooleanConstructor;
734
+ readonly strong: BooleanConstructor;
735
+ readonly focusable: {
736
+ readonly type: BooleanConstructor;
737
+ readonly default: true;
738
+ };
739
+ readonly keyboard: {
740
+ readonly type: BooleanConstructor;
741
+ readonly default: true;
742
+ };
743
+ readonly tag: {
744
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
745
+ readonly default: "button";
746
+ };
747
+ readonly type: {
748
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
749
+ readonly default: "default";
750
+ };
751
+ readonly dashed: BooleanConstructor;
752
+ readonly iconPlacement: {
753
+ readonly type: import("vue").PropType<"left" | "right">;
754
+ readonly default: "left";
755
+ };
756
+ readonly attrType: {
757
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
758
+ readonly default: "button";
759
+ };
760
+ readonly bordered: {
761
+ readonly type: BooleanConstructor;
762
+ readonly default: true;
763
+ };
764
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
765
+ readonly nativeFocusBehavior: {
766
+ readonly type: BooleanConstructor;
767
+ readonly default: boolean;
768
+ };
769
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
770
+ heightTiny: string;
771
+ heightSmall: string;
772
+ heightMedium: string;
773
+ heightLarge: string;
774
+ borderRadiusTiny: string;
775
+ borderRadiusSmall: string;
776
+ borderRadiusMedium: string;
777
+ borderRadiusLarge: string;
778
+ fontSizeTiny: string;
779
+ fontSizeSmall: string;
780
+ fontSizeMedium: string;
781
+ fontSizeLarge: string;
782
+ opacityDisabled: string;
783
+ colorOpacitySecondary: string;
784
+ colorOpacitySecondaryHover: string;
785
+ colorOpacitySecondaryPressed: string;
786
+ colorSecondary: string;
787
+ colorSecondaryHover: string;
788
+ colorSecondaryPressed: string;
789
+ colorTertiary: string;
790
+ colorTertiaryHover: string;
791
+ colorTertiaryPressed: string;
792
+ colorQuaternary: string;
793
+ colorQuaternaryHover: string;
794
+ colorQuaternaryPressed: string;
795
+ color: string;
796
+ colorHover: string;
797
+ colorPressed: string;
798
+ colorFocus: string;
799
+ colorDisabled: string;
800
+ textColor: string;
801
+ textColorTertiary: string;
802
+ textColorHover: string;
803
+ textColorPressed: string;
804
+ textColorFocus: string;
805
+ textColorDisabled: string;
806
+ textColorText: string;
807
+ textColorTextHover: string;
808
+ textColorTextPressed: string;
809
+ textColorTextFocus: string;
810
+ textColorTextDisabled: string;
811
+ textColorGhost: string;
812
+ textColorGhostHover: string;
813
+ textColorGhostPressed: string;
814
+ textColorGhostFocus: string;
815
+ textColorGhostDisabled: string;
816
+ border: string;
817
+ borderHover: string;
818
+ borderPressed: string;
819
+ borderFocus: string;
820
+ borderDisabled: string;
821
+ rippleColor: string;
822
+ colorPrimary: string;
823
+ colorHoverPrimary: string;
824
+ colorPressedPrimary: string;
825
+ colorFocusPrimary: string;
826
+ colorDisabledPrimary: string;
827
+ textColorPrimary: string;
828
+ textColorHoverPrimary: string;
829
+ textColorPressedPrimary: string;
830
+ textColorFocusPrimary: string;
831
+ textColorDisabledPrimary: string;
832
+ textColorTextPrimary: string;
833
+ textColorTextHoverPrimary: string;
834
+ textColorTextPressedPrimary: string;
835
+ textColorTextFocusPrimary: string;
836
+ textColorTextDisabledPrimary: string;
837
+ textColorGhostPrimary: string;
838
+ textColorGhostHoverPrimary: string;
839
+ textColorGhostPressedPrimary: string;
840
+ textColorGhostFocusPrimary: string;
841
+ textColorGhostDisabledPrimary: string;
842
+ borderPrimary: string;
843
+ borderHoverPrimary: string;
844
+ borderPressedPrimary: string;
845
+ borderFocusPrimary: string;
846
+ borderDisabledPrimary: string;
847
+ rippleColorPrimary: string;
848
+ colorInfo: string;
849
+ colorHoverInfo: string;
850
+ colorPressedInfo: string;
851
+ colorFocusInfo: string;
852
+ colorDisabledInfo: string;
853
+ textColorInfo: string;
854
+ textColorHoverInfo: string;
855
+ textColorPressedInfo: string;
856
+ textColorFocusInfo: string;
857
+ textColorDisabledInfo: string;
858
+ textColorTextInfo: string;
859
+ textColorTextHoverInfo: string;
860
+ textColorTextPressedInfo: string;
861
+ textColorTextFocusInfo: string;
862
+ textColorTextDisabledInfo: string;
863
+ textColorGhostInfo: string;
864
+ textColorGhostHoverInfo: string;
865
+ textColorGhostPressedInfo: string;
866
+ textColorGhostFocusInfo: string;
867
+ textColorGhostDisabledInfo: string;
868
+ borderInfo: string;
869
+ borderHoverInfo: string;
870
+ borderPressedInfo: string;
871
+ borderFocusInfo: string;
872
+ borderDisabledInfo: string;
873
+ rippleColorInfo: string;
874
+ colorSuccess: string;
875
+ colorHoverSuccess: string;
876
+ colorPressedSuccess: string;
877
+ colorFocusSuccess: string;
878
+ colorDisabledSuccess: string;
879
+ textColorSuccess: string;
880
+ textColorHoverSuccess: string;
881
+ textColorPressedSuccess: string;
882
+ textColorFocusSuccess: string;
883
+ textColorDisabledSuccess: string;
884
+ textColorTextSuccess: string;
885
+ textColorTextHoverSuccess: string;
886
+ textColorTextPressedSuccess: string;
887
+ textColorTextFocusSuccess: string;
888
+ textColorTextDisabledSuccess: string;
889
+ textColorGhostSuccess: string;
890
+ textColorGhostHoverSuccess: string;
891
+ textColorGhostPressedSuccess: string;
892
+ textColorGhostFocusSuccess: string;
893
+ textColorGhostDisabledSuccess: string;
894
+ borderSuccess: string;
895
+ borderHoverSuccess: string;
896
+ borderPressedSuccess: string;
897
+ borderFocusSuccess: string;
898
+ borderDisabledSuccess: string;
899
+ rippleColorSuccess: string;
900
+ colorWarning: string;
901
+ colorHoverWarning: string;
902
+ colorPressedWarning: string;
903
+ colorFocusWarning: string;
904
+ colorDisabledWarning: string;
905
+ textColorWarning: string;
906
+ textColorHoverWarning: string;
907
+ textColorPressedWarning: string;
908
+ textColorFocusWarning: string;
909
+ textColorDisabledWarning: string;
910
+ textColorTextWarning: string;
911
+ textColorTextHoverWarning: string;
912
+ textColorTextPressedWarning: string;
913
+ textColorTextFocusWarning: string;
914
+ textColorTextDisabledWarning: string;
915
+ textColorGhostWarning: string;
916
+ textColorGhostHoverWarning: string;
917
+ textColorGhostPressedWarning: string;
918
+ textColorGhostFocusWarning: string;
919
+ textColorGhostDisabledWarning: string;
920
+ borderWarning: string;
921
+ borderHoverWarning: string;
922
+ borderPressedWarning: string;
923
+ borderFocusWarning: string;
924
+ borderDisabledWarning: string;
925
+ rippleColorWarning: string;
926
+ colorError: string;
927
+ colorHoverError: string;
928
+ colorPressedError: string;
929
+ colorFocusError: string;
930
+ colorDisabledError: string;
931
+ textColorError: string;
932
+ textColorHoverError: string;
933
+ textColorPressedError: string;
934
+ textColorFocusError: string;
935
+ textColorDisabledError: string;
936
+ textColorTextError: string;
937
+ textColorTextHoverError: string;
938
+ textColorTextPressedError: string;
939
+ textColorTextFocusError: string;
940
+ textColorTextDisabledError: string;
941
+ textColorGhostError: string;
942
+ textColorGhostHoverError: string;
943
+ textColorGhostPressedError: string;
944
+ textColorGhostFocusError: string;
945
+ textColorGhostDisabledError: string;
946
+ borderError: string;
947
+ borderHoverError: string;
948
+ borderPressedError: string;
949
+ borderFocusError: string;
950
+ borderDisabledError: string;
951
+ rippleColorError: string;
952
+ waveOpacity: string;
953
+ fontWeight: string;
954
+ fontWeightStrong: string;
955
+ paddingTiny: string;
956
+ paddingSmall: string;
957
+ paddingMedium: string;
958
+ paddingLarge: string;
959
+ paddingRoundTiny: string;
960
+ paddingRoundSmall: string;
961
+ paddingRoundMedium: string;
962
+ paddingRoundLarge: string;
963
+ iconMarginTiny: string;
964
+ iconMarginSmall: string;
965
+ iconMarginMedium: string;
966
+ iconMarginLarge: string;
967
+ iconSizeTiny: string;
968
+ iconSizeSmall: string;
969
+ iconSizeMedium: string;
970
+ iconSizeLarge: string;
971
+ rippleDuration: string;
972
+ }, any>>;
973
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
974
+ heightTiny: string;
975
+ heightSmall: string;
976
+ heightMedium: string;
977
+ heightLarge: string;
978
+ borderRadiusTiny: string;
979
+ borderRadiusSmall: string;
980
+ borderRadiusMedium: string;
981
+ borderRadiusLarge: string;
982
+ fontSizeTiny: string;
983
+ fontSizeSmall: string;
984
+ fontSizeMedium: string;
985
+ fontSizeLarge: string;
986
+ opacityDisabled: string;
987
+ colorOpacitySecondary: string;
988
+ colorOpacitySecondaryHover: string;
989
+ colorOpacitySecondaryPressed: string;
990
+ colorSecondary: string;
991
+ colorSecondaryHover: string;
992
+ colorSecondaryPressed: string;
993
+ colorTertiary: string;
994
+ colorTertiaryHover: string;
995
+ colorTertiaryPressed: string;
996
+ colorQuaternary: string;
997
+ colorQuaternaryHover: string;
998
+ colorQuaternaryPressed: string;
999
+ color: string;
1000
+ colorHover: string;
1001
+ colorPressed: string;
1002
+ colorFocus: string;
1003
+ colorDisabled: string;
1004
+ textColor: string;
1005
+ textColorTertiary: string;
1006
+ textColorHover: string;
1007
+ textColorPressed: string;
1008
+ textColorFocus: string;
1009
+ textColorDisabled: string;
1010
+ textColorText: string;
1011
+ textColorTextHover: string;
1012
+ textColorTextPressed: string;
1013
+ textColorTextFocus: string;
1014
+ textColorTextDisabled: string;
1015
+ textColorGhost: string;
1016
+ textColorGhostHover: string;
1017
+ textColorGhostPressed: string;
1018
+ textColorGhostFocus: string;
1019
+ textColorGhostDisabled: string;
1020
+ border: string;
1021
+ borderHover: string;
1022
+ borderPressed: string;
1023
+ borderFocus: string;
1024
+ borderDisabled: string;
1025
+ rippleColor: string;
1026
+ colorPrimary: string;
1027
+ colorHoverPrimary: string;
1028
+ colorPressedPrimary: string;
1029
+ colorFocusPrimary: string;
1030
+ colorDisabledPrimary: string;
1031
+ textColorPrimary: string;
1032
+ textColorHoverPrimary: string;
1033
+ textColorPressedPrimary: string;
1034
+ textColorFocusPrimary: string;
1035
+ textColorDisabledPrimary: string;
1036
+ textColorTextPrimary: string;
1037
+ textColorTextHoverPrimary: string;
1038
+ textColorTextPressedPrimary: string;
1039
+ textColorTextFocusPrimary: string;
1040
+ textColorTextDisabledPrimary: string;
1041
+ textColorGhostPrimary: string;
1042
+ textColorGhostHoverPrimary: string;
1043
+ textColorGhostPressedPrimary: string;
1044
+ textColorGhostFocusPrimary: string;
1045
+ textColorGhostDisabledPrimary: string;
1046
+ borderPrimary: string;
1047
+ borderHoverPrimary: string;
1048
+ borderPressedPrimary: string;
1049
+ borderFocusPrimary: string;
1050
+ borderDisabledPrimary: string;
1051
+ rippleColorPrimary: string;
1052
+ colorInfo: string;
1053
+ colorHoverInfo: string;
1054
+ colorPressedInfo: string;
1055
+ colorFocusInfo: string;
1056
+ colorDisabledInfo: string;
1057
+ textColorInfo: string;
1058
+ textColorHoverInfo: string;
1059
+ textColorPressedInfo: string;
1060
+ textColorFocusInfo: string;
1061
+ textColorDisabledInfo: string;
1062
+ textColorTextInfo: string;
1063
+ textColorTextHoverInfo: string;
1064
+ textColorTextPressedInfo: string;
1065
+ textColorTextFocusInfo: string;
1066
+ textColorTextDisabledInfo: string;
1067
+ textColorGhostInfo: string;
1068
+ textColorGhostHoverInfo: string;
1069
+ textColorGhostPressedInfo: string;
1070
+ textColorGhostFocusInfo: string;
1071
+ textColorGhostDisabledInfo: string;
1072
+ borderInfo: string;
1073
+ borderHoverInfo: string;
1074
+ borderPressedInfo: string;
1075
+ borderFocusInfo: string;
1076
+ borderDisabledInfo: string;
1077
+ rippleColorInfo: string;
1078
+ colorSuccess: string;
1079
+ colorHoverSuccess: string;
1080
+ colorPressedSuccess: string;
1081
+ colorFocusSuccess: string;
1082
+ colorDisabledSuccess: string;
1083
+ textColorSuccess: string;
1084
+ textColorHoverSuccess: string;
1085
+ textColorPressedSuccess: string;
1086
+ textColorFocusSuccess: string;
1087
+ textColorDisabledSuccess: string;
1088
+ textColorTextSuccess: string;
1089
+ textColorTextHoverSuccess: string;
1090
+ textColorTextPressedSuccess: string;
1091
+ textColorTextFocusSuccess: string;
1092
+ textColorTextDisabledSuccess: string;
1093
+ textColorGhostSuccess: string;
1094
+ textColorGhostHoverSuccess: string;
1095
+ textColorGhostPressedSuccess: string;
1096
+ textColorGhostFocusSuccess: string;
1097
+ textColorGhostDisabledSuccess: string;
1098
+ borderSuccess: string;
1099
+ borderHoverSuccess: string;
1100
+ borderPressedSuccess: string;
1101
+ borderFocusSuccess: string;
1102
+ borderDisabledSuccess: string;
1103
+ rippleColorSuccess: string;
1104
+ colorWarning: string;
1105
+ colorHoverWarning: string;
1106
+ colorPressedWarning: string;
1107
+ colorFocusWarning: string;
1108
+ colorDisabledWarning: string;
1109
+ textColorWarning: string;
1110
+ textColorHoverWarning: string;
1111
+ textColorPressedWarning: string;
1112
+ textColorFocusWarning: string;
1113
+ textColorDisabledWarning: string;
1114
+ textColorTextWarning: string;
1115
+ textColorTextHoverWarning: string;
1116
+ textColorTextPressedWarning: string;
1117
+ textColorTextFocusWarning: string;
1118
+ textColorTextDisabledWarning: string;
1119
+ textColorGhostWarning: string;
1120
+ textColorGhostHoverWarning: string;
1121
+ textColorGhostPressedWarning: string;
1122
+ textColorGhostFocusWarning: string;
1123
+ textColorGhostDisabledWarning: string;
1124
+ borderWarning: string;
1125
+ borderHoverWarning: string;
1126
+ borderPressedWarning: string;
1127
+ borderFocusWarning: string;
1128
+ borderDisabledWarning: string;
1129
+ rippleColorWarning: string;
1130
+ colorError: string;
1131
+ colorHoverError: string;
1132
+ colorPressedError: string;
1133
+ colorFocusError: string;
1134
+ colorDisabledError: string;
1135
+ textColorError: string;
1136
+ textColorHoverError: string;
1137
+ textColorPressedError: string;
1138
+ textColorFocusError: string;
1139
+ textColorDisabledError: string;
1140
+ textColorTextError: string;
1141
+ textColorTextHoverError: string;
1142
+ textColorTextPressedError: string;
1143
+ textColorTextFocusError: string;
1144
+ textColorTextDisabledError: string;
1145
+ textColorGhostError: string;
1146
+ textColorGhostHoverError: string;
1147
+ textColorGhostPressedError: string;
1148
+ textColorGhostFocusError: string;
1149
+ textColorGhostDisabledError: string;
1150
+ borderError: string;
1151
+ borderHoverError: string;
1152
+ borderPressedError: string;
1153
+ borderFocusError: string;
1154
+ borderDisabledError: string;
1155
+ rippleColorError: string;
1156
+ waveOpacity: string;
1157
+ fontWeight: string;
1158
+ fontWeightStrong: string;
1159
+ paddingTiny: string;
1160
+ paddingSmall: string;
1161
+ paddingMedium: string;
1162
+ paddingLarge: string;
1163
+ paddingRoundTiny: string;
1164
+ paddingRoundSmall: string;
1165
+ paddingRoundMedium: string;
1166
+ paddingRoundLarge: string;
1167
+ iconMarginTiny: string;
1168
+ iconMarginSmall: string;
1169
+ iconMarginMedium: string;
1170
+ iconMarginLarge: string;
1171
+ iconSizeTiny: string;
1172
+ iconSizeSmall: string;
1173
+ iconSizeMedium: string;
1174
+ iconSizeLarge: string;
1175
+ rippleDuration: string;
1176
+ }, any>>>;
1177
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1178
+ heightTiny: string;
1179
+ heightSmall: string;
1180
+ heightMedium: string;
1181
+ heightLarge: string;
1182
+ borderRadiusTiny: string;
1183
+ borderRadiusSmall: string;
1184
+ borderRadiusMedium: string;
1185
+ borderRadiusLarge: string;
1186
+ fontSizeTiny: string;
1187
+ fontSizeSmall: string;
1188
+ fontSizeMedium: string;
1189
+ fontSizeLarge: string;
1190
+ opacityDisabled: string;
1191
+ colorOpacitySecondary: string;
1192
+ colorOpacitySecondaryHover: string;
1193
+ colorOpacitySecondaryPressed: string;
1194
+ colorSecondary: string;
1195
+ colorSecondaryHover: string;
1196
+ colorSecondaryPressed: string;
1197
+ colorTertiary: string;
1198
+ colorTertiaryHover: string;
1199
+ colorTertiaryPressed: string;
1200
+ colorQuaternary: string;
1201
+ colorQuaternaryHover: string;
1202
+ colorQuaternaryPressed: string;
1203
+ color: string;
1204
+ colorHover: string;
1205
+ colorPressed: string;
1206
+ colorFocus: string;
1207
+ colorDisabled: string;
1208
+ textColor: string;
1209
+ textColorTertiary: string;
1210
+ textColorHover: string;
1211
+ textColorPressed: string;
1212
+ textColorFocus: string;
1213
+ textColorDisabled: string;
1214
+ textColorText: string;
1215
+ textColorTextHover: string;
1216
+ textColorTextPressed: string;
1217
+ textColorTextFocus: string;
1218
+ textColorTextDisabled: string;
1219
+ textColorGhost: string;
1220
+ textColorGhostHover: string;
1221
+ textColorGhostPressed: string;
1222
+ textColorGhostFocus: string;
1223
+ textColorGhostDisabled: string;
1224
+ border: string;
1225
+ borderHover: string;
1226
+ borderPressed: string;
1227
+ borderFocus: string;
1228
+ borderDisabled: string;
1229
+ rippleColor: string;
1230
+ colorPrimary: string;
1231
+ colorHoverPrimary: string;
1232
+ colorPressedPrimary: string;
1233
+ colorFocusPrimary: string;
1234
+ colorDisabledPrimary: string;
1235
+ textColorPrimary: string;
1236
+ textColorHoverPrimary: string;
1237
+ textColorPressedPrimary: string;
1238
+ textColorFocusPrimary: string;
1239
+ textColorDisabledPrimary: string;
1240
+ textColorTextPrimary: string;
1241
+ textColorTextHoverPrimary: string;
1242
+ textColorTextPressedPrimary: string;
1243
+ textColorTextFocusPrimary: string;
1244
+ textColorTextDisabledPrimary: string;
1245
+ textColorGhostPrimary: string;
1246
+ textColorGhostHoverPrimary: string;
1247
+ textColorGhostPressedPrimary: string;
1248
+ textColorGhostFocusPrimary: string;
1249
+ textColorGhostDisabledPrimary: string;
1250
+ borderPrimary: string;
1251
+ borderHoverPrimary: string;
1252
+ borderPressedPrimary: string;
1253
+ borderFocusPrimary: string;
1254
+ borderDisabledPrimary: string;
1255
+ rippleColorPrimary: string;
1256
+ colorInfo: string;
1257
+ colorHoverInfo: string;
1258
+ colorPressedInfo: string;
1259
+ colorFocusInfo: string;
1260
+ colorDisabledInfo: string;
1261
+ textColorInfo: string;
1262
+ textColorHoverInfo: string;
1263
+ textColorPressedInfo: string;
1264
+ textColorFocusInfo: string;
1265
+ textColorDisabledInfo: string;
1266
+ textColorTextInfo: string;
1267
+ textColorTextHoverInfo: string;
1268
+ textColorTextPressedInfo: string;
1269
+ textColorTextFocusInfo: string;
1270
+ textColorTextDisabledInfo: string;
1271
+ textColorGhostInfo: string;
1272
+ textColorGhostHoverInfo: string;
1273
+ textColorGhostPressedInfo: string;
1274
+ textColorGhostFocusInfo: string;
1275
+ textColorGhostDisabledInfo: string;
1276
+ borderInfo: string;
1277
+ borderHoverInfo: string;
1278
+ borderPressedInfo: string;
1279
+ borderFocusInfo: string;
1280
+ borderDisabledInfo: string;
1281
+ rippleColorInfo: string;
1282
+ colorSuccess: string;
1283
+ colorHoverSuccess: string;
1284
+ colorPressedSuccess: string;
1285
+ colorFocusSuccess: string;
1286
+ colorDisabledSuccess: string;
1287
+ textColorSuccess: string;
1288
+ textColorHoverSuccess: string;
1289
+ textColorPressedSuccess: string;
1290
+ textColorFocusSuccess: string;
1291
+ textColorDisabledSuccess: string;
1292
+ textColorTextSuccess: string;
1293
+ textColorTextHoverSuccess: string;
1294
+ textColorTextPressedSuccess: string;
1295
+ textColorTextFocusSuccess: string;
1296
+ textColorTextDisabledSuccess: string;
1297
+ textColorGhostSuccess: string;
1298
+ textColorGhostHoverSuccess: string;
1299
+ textColorGhostPressedSuccess: string;
1300
+ textColorGhostFocusSuccess: string;
1301
+ textColorGhostDisabledSuccess: string;
1302
+ borderSuccess: string;
1303
+ borderHoverSuccess: string;
1304
+ borderPressedSuccess: string;
1305
+ borderFocusSuccess: string;
1306
+ borderDisabledSuccess: string;
1307
+ rippleColorSuccess: string;
1308
+ colorWarning: string;
1309
+ colorHoverWarning: string;
1310
+ colorPressedWarning: string;
1311
+ colorFocusWarning: string;
1312
+ colorDisabledWarning: string;
1313
+ textColorWarning: string;
1314
+ textColorHoverWarning: string;
1315
+ textColorPressedWarning: string;
1316
+ textColorFocusWarning: string;
1317
+ textColorDisabledWarning: string;
1318
+ textColorTextWarning: string;
1319
+ textColorTextHoverWarning: string;
1320
+ textColorTextPressedWarning: string;
1321
+ textColorTextFocusWarning: string;
1322
+ textColorTextDisabledWarning: string;
1323
+ textColorGhostWarning: string;
1324
+ textColorGhostHoverWarning: string;
1325
+ textColorGhostPressedWarning: string;
1326
+ textColorGhostFocusWarning: string;
1327
+ textColorGhostDisabledWarning: string;
1328
+ borderWarning: string;
1329
+ borderHoverWarning: string;
1330
+ borderPressedWarning: string;
1331
+ borderFocusWarning: string;
1332
+ borderDisabledWarning: string;
1333
+ rippleColorWarning: string;
1334
+ colorError: string;
1335
+ colorHoverError: string;
1336
+ colorPressedError: string;
1337
+ colorFocusError: string;
1338
+ colorDisabledError: string;
1339
+ textColorError: string;
1340
+ textColorHoverError: string;
1341
+ textColorPressedError: string;
1342
+ textColorFocusError: string;
1343
+ textColorDisabledError: string;
1344
+ textColorTextError: string;
1345
+ textColorTextHoverError: string;
1346
+ textColorTextPressedError: string;
1347
+ textColorTextFocusError: string;
1348
+ textColorTextDisabledError: string;
1349
+ textColorGhostError: string;
1350
+ textColorGhostHoverError: string;
1351
+ textColorGhostPressedError: string;
1352
+ textColorGhostFocusError: string;
1353
+ textColorGhostDisabledError: string;
1354
+ borderError: string;
1355
+ borderHoverError: string;
1356
+ borderPressedError: string;
1357
+ borderFocusError: string;
1358
+ borderDisabledError: string;
1359
+ rippleColorError: string;
1360
+ waveOpacity: string;
1361
+ fontWeight: string;
1362
+ fontWeightStrong: string;
1363
+ paddingTiny: string;
1364
+ paddingSmall: string;
1365
+ paddingMedium: string;
1366
+ paddingLarge: string;
1367
+ paddingRoundTiny: string;
1368
+ paddingRoundSmall: string;
1369
+ paddingRoundMedium: string;
1370
+ paddingRoundLarge: string;
1371
+ iconMarginTiny: string;
1372
+ iconMarginSmall: string;
1373
+ iconMarginMedium: string;
1374
+ iconMarginLarge: string;
1375
+ iconSizeTiny: string;
1376
+ iconSizeSmall: string;
1377
+ iconSizeMedium: string;
1378
+ iconSizeLarge: string;
1379
+ rippleDuration: string;
1380
+ }, any>>>;
1381
+ }>>, {
1382
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1383
+ readonly tag: keyof HTMLElementTagNameMap;
1384
+ readonly block: boolean;
1385
+ readonly round: boolean;
1386
+ readonly dashed: boolean;
1387
+ readonly text: boolean;
1388
+ readonly circle: boolean;
1389
+ readonly disabled: boolean;
1390
+ readonly focusable: boolean;
1391
+ readonly strong: boolean;
1392
+ readonly loading: boolean;
1393
+ readonly bordered: boolean;
1394
+ readonly tertiary: boolean;
1395
+ readonly ghost: boolean;
1396
+ readonly keyboard: boolean;
1397
+ readonly secondary: boolean;
1398
+ readonly quaternary: boolean;
1399
+ readonly iconPlacement: "left" | "right";
1400
+ readonly attrType: "button" | "reset" | "submit";
1401
+ readonly nativeFocusBehavior: boolean;
1402
+ }>;
1403
+ NInput: import("vue").DefineComponent<{
1404
+ bordered: {
1405
+ type: import("vue").PropType<boolean | undefined>;
1406
+ default: undefined;
1407
+ };
1408
+ type: {
1409
+ type: import("vue").PropType<"text" | "textarea" | "password">;
1410
+ default: string;
1411
+ };
1412
+ placeholder: import("vue").PropType<string | [string, string]>;
1413
+ defaultValue: {
1414
+ type: import("vue").PropType<string | [string, string] | null>;
1415
+ default: null;
1416
+ };
1417
+ value: import("vue").PropType<string | [string, string] | null>;
1418
+ disabled: {
1419
+ type: import("vue").PropType<boolean | undefined>;
1420
+ default: undefined;
1421
+ };
1422
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
1423
+ rows: {
1424
+ type: import("vue").PropType<string | number>;
1425
+ default: number;
1426
+ };
1427
+ round: BooleanConstructor;
1428
+ minlength: import("vue").PropType<string | number>;
1429
+ maxlength: import("vue").PropType<string | number>;
1430
+ clearable: BooleanConstructor;
1431
+ autosize: {
1432
+ type: import("vue").PropType<boolean | {
1433
+ minRows?: number | undefined;
1434
+ maxRows?: number | undefined;
1435
+ }>;
1436
+ default: boolean;
1437
+ };
1438
+ pair: BooleanConstructor;
1439
+ separator: StringConstructor;
1440
+ readonly: {
1441
+ type: (BooleanConstructor | StringConstructor)[];
1442
+ default: boolean;
1443
+ };
1444
+ passivelyActivated: BooleanConstructor;
1445
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
1446
+ stateful: {
1447
+ type: BooleanConstructor;
1448
+ default: boolean;
1449
+ };
1450
+ autofocus: BooleanConstructor;
1451
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
1452
+ resizable: {
1453
+ type: BooleanConstructor;
1454
+ default: boolean;
1455
+ };
1456
+ showCount: BooleanConstructor;
1457
+ loading: {
1458
+ type: BooleanConstructor;
1459
+ default: undefined;
1460
+ };
1461
+ allowInput: import("vue").PropType<(value: string) => boolean>;
1462
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
1463
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
1464
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
1465
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
1466
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1467
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1468
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1469
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
1470
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1471
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1472
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
1473
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
1474
+ textDecoration: import("vue").PropType<string | [string, string]>;
1475
+ attrSize: {
1476
+ type: NumberConstructor;
1477
+ default: number;
1478
+ };
1479
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1480
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1481
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
1482
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
1483
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1484
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1485
+ internalDeactivateOnEnter: BooleanConstructor;
1486
+ internalForceFocus: BooleanConstructor;
1487
+ internalLoadingBeforeSuffix: BooleanConstructor;
1488
+ showPasswordToggle: BooleanConstructor;
1489
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
1490
+ countTextColor: string;
1491
+ heightTiny: string;
1492
+ heightSmall: string;
1493
+ heightMedium: string;
1494
+ heightLarge: string;
1495
+ fontSizeTiny: string;
1496
+ fontSizeSmall: string;
1497
+ fontSizeMedium: string;
1498
+ fontSizeLarge: string;
1499
+ lineHeight: string;
1500
+ lineHeightTextarea: string;
1501
+ borderRadius: string;
1502
+ iconSize: string;
1503
+ groupLabelColor: string;
1504
+ groupLabelTextColor: string;
1505
+ textColor: string;
1506
+ textColorDisabled: string;
1507
+ textDecorationColor: string;
1508
+ caretColor: string;
1509
+ placeholderColor: string;
1510
+ placeholderColorDisabled: string;
1511
+ color: string;
1512
+ colorDisabled: string;
1513
+ colorFocus: string;
1514
+ groupLabelBorder: string;
1515
+ border: string;
1516
+ borderHover: string;
1517
+ borderDisabled: string;
1518
+ borderFocus: string;
1519
+ boxShadowFocus: string;
1520
+ loadingColor: string;
1521
+ loadingColorWarning: string;
1522
+ borderWarning: string;
1523
+ borderHoverWarning: string;
1524
+ colorFocusWarning: string;
1525
+ borderFocusWarning: string;
1526
+ boxShadowFocusWarning: string;
1527
+ caretColorWarning: string;
1528
+ loadingColorError: string;
1529
+ borderError: string;
1530
+ borderHoverError: string;
1531
+ colorFocusError: string;
1532
+ borderFocusError: string;
1533
+ boxShadowFocusError: string;
1534
+ caretColorError: string;
1535
+ clearColor: string;
1536
+ clearColorHover: string;
1537
+ clearColorPressed: string;
1538
+ iconColor: string;
1539
+ iconColorDisabled: string;
1540
+ iconColorHover: string;
1541
+ iconColorPressed: string;
1542
+ suffixTextColor: string;
1543
+ paddingTiny: string;
1544
+ paddingSmall: string;
1545
+ paddingMedium: string;
1546
+ paddingLarge: string;
1547
+ clearSize: string;
1548
+ }, any>>;
1549
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
1550
+ countTextColor: string;
1551
+ heightTiny: string;
1552
+ heightSmall: string;
1553
+ heightMedium: string;
1554
+ heightLarge: string;
1555
+ fontSizeTiny: string;
1556
+ fontSizeSmall: string;
1557
+ fontSizeMedium: string;
1558
+ fontSizeLarge: string;
1559
+ lineHeight: string;
1560
+ lineHeightTextarea: string;
1561
+ borderRadius: string;
1562
+ iconSize: string;
1563
+ groupLabelColor: string;
1564
+ groupLabelTextColor: string;
1565
+ textColor: string;
1566
+ textColorDisabled: string;
1567
+ textDecorationColor: string;
1568
+ caretColor: string;
1569
+ placeholderColor: string;
1570
+ placeholderColorDisabled: string;
1571
+ color: string;
1572
+ colorDisabled: string;
1573
+ colorFocus: string;
1574
+ groupLabelBorder: string;
1575
+ border: string;
1576
+ borderHover: string;
1577
+ borderDisabled: string;
1578
+ borderFocus: string;
1579
+ boxShadowFocus: string;
1580
+ loadingColor: string;
1581
+ loadingColorWarning: string;
1582
+ borderWarning: string;
1583
+ borderHoverWarning: string;
1584
+ colorFocusWarning: string;
1585
+ borderFocusWarning: string;
1586
+ boxShadowFocusWarning: string;
1587
+ caretColorWarning: string;
1588
+ loadingColorError: string;
1589
+ borderError: string;
1590
+ borderHoverError: string;
1591
+ colorFocusError: string;
1592
+ borderFocusError: string;
1593
+ boxShadowFocusError: string;
1594
+ caretColorError: string;
1595
+ clearColor: string;
1596
+ clearColorHover: string;
1597
+ clearColorPressed: string;
1598
+ iconColor: string;
1599
+ iconColorDisabled: string;
1600
+ iconColorHover: string;
1601
+ iconColorPressed: string;
1602
+ suffixTextColor: string;
1603
+ paddingTiny: string;
1604
+ paddingSmall: string;
1605
+ paddingMedium: string;
1606
+ paddingLarge: string;
1607
+ clearSize: string;
1608
+ }, any>>>;
1609
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
1610
+ countTextColor: string;
1611
+ heightTiny: string;
1612
+ heightSmall: string;
1613
+ heightMedium: string;
1614
+ heightLarge: string;
1615
+ fontSizeTiny: string;
1616
+ fontSizeSmall: string;
1617
+ fontSizeMedium: string;
1618
+ fontSizeLarge: string;
1619
+ lineHeight: string;
1620
+ lineHeightTextarea: string;
1621
+ borderRadius: string;
1622
+ iconSize: string;
1623
+ groupLabelColor: string;
1624
+ groupLabelTextColor: string;
1625
+ textColor: string;
1626
+ textColorDisabled: string;
1627
+ textDecorationColor: string;
1628
+ caretColor: string;
1629
+ placeholderColor: string;
1630
+ placeholderColorDisabled: string;
1631
+ color: string;
1632
+ colorDisabled: string;
1633
+ colorFocus: string;
1634
+ groupLabelBorder: string;
1635
+ border: string;
1636
+ borderHover: string;
1637
+ borderDisabled: string;
1638
+ borderFocus: string;
1639
+ boxShadowFocus: string;
1640
+ loadingColor: string;
1641
+ loadingColorWarning: string;
1642
+ borderWarning: string;
1643
+ borderHoverWarning: string;
1644
+ colorFocusWarning: string;
1645
+ borderFocusWarning: string;
1646
+ boxShadowFocusWarning: string;
1647
+ caretColorWarning: string;
1648
+ loadingColorError: string;
1649
+ borderError: string;
1650
+ borderHoverError: string;
1651
+ colorFocusError: string;
1652
+ borderFocusError: string;
1653
+ boxShadowFocusError: string;
1654
+ caretColorError: string;
1655
+ clearColor: string;
1656
+ clearColorHover: string;
1657
+ clearColorPressed: string;
1658
+ iconColor: string;
1659
+ iconColorDisabled: string;
1660
+ iconColorHover: string;
1661
+ iconColorPressed: string;
1662
+ suffixTextColor: string;
1663
+ paddingTiny: string;
1664
+ paddingSmall: string;
1665
+ paddingMedium: string;
1666
+ paddingLarge: string;
1667
+ clearSize: string;
1668
+ }, any>>>;
1669
+ }, {
1670
+ wrapperElRef: import("vue").Ref<HTMLElement | null>;
1671
+ inputElRef: import("vue").Ref<HTMLInputElement | null>;
1672
+ inputMirrorElRef: import("vue").Ref<HTMLElement | null>;
1673
+ inputEl2Ref: import("vue").Ref<HTMLInputElement | null>;
1674
+ textareaElRef: import("vue").Ref<HTMLTextAreaElement | null>;
1675
+ textareaMirrorElRef: import("vue").Ref<HTMLElement | null>;
1676
+ textareaScrollbarInstRef: import("vue").Ref<{
1677
+ $el: HTMLElement;
1678
+ containerRef: HTMLElement | null;
1679
+ contentRef: HTMLElement | null;
1680
+ containerScrollTop: number;
1681
+ syncUnifiedContainer: () => void;
1682
+ scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
1683
+ scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
1684
+ sync: () => void;
1685
+ handleMouseEnterWrapper: () => void;
1686
+ handleMouseLeaveWrapper: () => void;
1687
+ } | null>;
1688
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1689
+ uncontrolledValue: import("vue").Ref<string | [string, string] | null>;
1690
+ mergedValue: import("vue").ComputedRef<string | [string, string] | null>;
1691
+ passwordVisible: import("vue").Ref<boolean>;
1692
+ mergedPlaceholder: import("vue").ComputedRef<[string, string] | [string]>;
1693
+ showPlaceholder1: import("vue").ComputedRef<string | false>;
1694
+ showPlaceholder2: import("vue").ComputedRef<boolean | "" | undefined>;
1695
+ mergedFocus: import("vue").ComputedRef<boolean>;
1696
+ isComposing: import("vue").Ref<boolean>;
1697
+ activated: import("vue").Ref<boolean>;
1698
+ showClearButton: import("vue").ComputedRef<boolean>;
1699
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
1700
+ mergedDisabled: import("vue").ComputedRef<boolean>;
1701
+ textDecorationStyle: import("vue").ComputedRef<string[] | {
1702
+ textDecoration: string;
1703
+ }[]>;
1704
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1705
+ mergedBordered: import("vue").ComputedRef<boolean>;
1706
+ mergedShowPasswordOn: import("vue").ComputedRef<"click" | "mousedown" | undefined>;
1707
+ placeholderStyle: import("vue").Ref<{
1708
+ top: string;
1709
+ }>;
1710
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
1711
+ textAreaScrollContainerWidth: import("vue").Ref<number | undefined>;
1712
+ handleTextAreaScroll: (e: Event) => void;
1713
+ handleCompositionStart: () => void;
1714
+ handleCompositionEnd: (e: CompositionEvent) => void;
1715
+ handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
1716
+ handleInputBlur: (e: FocusEvent) => void;
1717
+ handleInputFocus: (e: FocusEvent, index: number) => void;
1718
+ handleWrapperBlur: (e: FocusEvent) => void;
1719
+ handleWrapperFocus: (e: FocusEvent) => void;
1720
+ handleMouseEnter: () => void;
1721
+ handleMouseLeave: () => void;
1722
+ handleMouseDown: (e: MouseEvent) => void;
1723
+ handleChange: (e: Event, index?: 0 | 1 | undefined) => void;
1724
+ handleClick: (e: MouseEvent) => void;
1725
+ handleClear: (e: MouseEvent) => void;
1726
+ handlePasswordToggleClick: () => void;
1727
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
1728
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
1729
+ handleTextAreaMirrorResize: () => void;
1730
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
1731
+ mergedTheme: import("vue").ComputedRef<{
1732
+ common: {
1733
+ baseColor: string;
1734
+ primaryColor: string;
1735
+ primaryColorHover: string;
1736
+ primaryColorPressed: string;
1737
+ primaryColorSuppl: string;
1738
+ infoColor: string;
1739
+ infoColorHover: string;
1740
+ infoColorPressed: string;
1741
+ infoColorSuppl: string;
1742
+ successColor: string;
1743
+ successColorHover: string;
1744
+ successColorPressed: string;
1745
+ successColorSuppl: string;
1746
+ warningColor: string;
1747
+ warningColorHover: string;
1748
+ warningColorPressed: string;
1749
+ warningColorSuppl: string;
1750
+ errorColor: string;
1751
+ errorColorHover: string;
1752
+ errorColorPressed: string;
1753
+ errorColorSuppl: string;
1754
+ textColorBase: string;
1755
+ textColor1: string;
1756
+ textColor2: string;
1757
+ textColor3: string;
1758
+ textColorDisabled: string;
1759
+ placeholderColor: string;
1760
+ placeholderColorDisabled: string;
1761
+ iconColor: string;
1762
+ iconColorHover: string;
1763
+ iconColorPressed: string;
1764
+ iconColorDisabled: string;
1765
+ opacity1: string;
1766
+ opacity2: string;
1767
+ opacity3: string;
1768
+ opacity4: string;
1769
+ opacity5: string;
1770
+ dividerColor: string;
1771
+ borderColor: string;
1772
+ closeIconColor: string;
1773
+ closeIconColorHover: string;
1774
+ closeIconColorPressed: string;
1775
+ closeColorHover: string;
1776
+ closeColorPressed: string;
1777
+ clearColor: string;
1778
+ clearColorHover: string;
1779
+ clearColorPressed: string;
1780
+ scrollbarColor: string;
1781
+ scrollbarColorHover: string;
1782
+ scrollbarWidth: string;
1783
+ scrollbarHeight: string;
1784
+ scrollbarBorderRadius: string;
1785
+ progressRailColor: string;
1786
+ railColor: string;
1787
+ popoverColor: string;
1788
+ tableColor: string;
1789
+ cardColor: string;
1790
+ modalColor: string;
1791
+ bodyColor: string;
1792
+ tagColor: string;
1793
+ avatarColor: string;
1794
+ invertedColor: string;
1795
+ inputColor: string;
1796
+ codeColor: string;
1797
+ tabColor: string;
1798
+ actionColor: string;
1799
+ tableHeaderColor: string;
1800
+ hoverColor: string;
1801
+ tableColorHover: string;
1802
+ tableColorStriped: string;
1803
+ pressedColor: string;
1804
+ opacityDisabled: string;
1805
+ inputColorDisabled: string;
1806
+ buttonColor2: string;
1807
+ buttonColor2Hover: string;
1808
+ buttonColor2Pressed: string;
1809
+ boxShadow1: string;
1810
+ boxShadow2: string;
1811
+ boxShadow3: string;
1812
+ fontFamily: string;
1813
+ fontFamilyMono: string;
1814
+ fontWeight: string;
1815
+ fontWeightStrong: string;
1816
+ cubicBezierEaseInOut: string;
1817
+ cubicBezierEaseOut: string;
1818
+ cubicBezierEaseIn: string;
1819
+ borderRadius: string;
1820
+ borderRadiusSmall: string;
1821
+ fontSize: string;
1822
+ fontSizeMini: string;
1823
+ fontSizeTiny: string;
1824
+ fontSizeSmall: string;
1825
+ fontSizeMedium: string;
1826
+ fontSizeLarge: string;
1827
+ fontSizeHuge: string;
1828
+ lineHeight: string;
1829
+ heightMini: string;
1830
+ heightTiny: string;
1831
+ heightSmall: string;
1832
+ heightMedium: string;
1833
+ heightLarge: string;
1834
+ heightHuge: string;
1835
+ name: "common";
1836
+ };
1837
+ self: {
1838
+ countTextColor: string;
1839
+ heightTiny: string;
1840
+ heightSmall: string;
1841
+ heightMedium: string;
1842
+ heightLarge: string;
1843
+ fontSizeTiny: string;
1844
+ fontSizeSmall: string;
1845
+ fontSizeMedium: string;
1846
+ fontSizeLarge: string;
1847
+ lineHeight: string;
1848
+ lineHeightTextarea: string;
1849
+ borderRadius: string;
1850
+ iconSize: string;
1851
+ groupLabelColor: string;
1852
+ groupLabelTextColor: string;
1853
+ textColor: string;
1854
+ textColorDisabled: string;
1855
+ textDecorationColor: string;
1856
+ caretColor: string;
1857
+ placeholderColor: string;
1858
+ placeholderColorDisabled: string;
1859
+ color: string;
1860
+ colorDisabled: string;
1861
+ colorFocus: string;
1862
+ groupLabelBorder: string;
1863
+ border: string;
1864
+ borderHover: string;
1865
+ borderDisabled: string;
1866
+ borderFocus: string;
1867
+ boxShadowFocus: string;
1868
+ loadingColor: string;
1869
+ loadingColorWarning: string;
1870
+ borderWarning: string;
1871
+ borderHoverWarning: string;
1872
+ colorFocusWarning: string;
1873
+ borderFocusWarning: string;
1874
+ boxShadowFocusWarning: string;
1875
+ caretColorWarning: string;
1876
+ loadingColorError: string;
1877
+ borderError: string;
1878
+ borderHoverError: string;
1879
+ colorFocusError: string;
1880
+ borderFocusError: string;
1881
+ boxShadowFocusError: string;
1882
+ caretColorError: string;
1883
+ clearColor: string;
1884
+ clearColorHover: string;
1885
+ clearColorPressed: string;
1886
+ iconColor: string;
1887
+ iconColorDisabled: string;
1888
+ iconColorHover: string;
1889
+ iconColorPressed: string;
1890
+ suffixTextColor: string;
1891
+ paddingTiny: string;
1892
+ paddingSmall: string;
1893
+ paddingMedium: string;
1894
+ paddingLarge: string;
1895
+ clearSize: string;
1896
+ };
1897
+ peers: any;
1898
+ peerOverrides: {
1899
+ [x: string]: any;
1900
+ };
1901
+ }>;
1902
+ cssVars: import("vue").ComputedRef<{
1903
+ '--n-bezier': string;
1904
+ '--n-count-text-color': string;
1905
+ '--n-color': string;
1906
+ '--n-font-size': string;
1907
+ '--n-border-radius': string;
1908
+ '--n-height': string;
1909
+ '--n-padding-left': string;
1910
+ '--n-padding-right': string;
1911
+ '--n-text-color': string;
1912
+ '--n-caret-color': string;
1913
+ '--n-text-decoration-color': string;
1914
+ '--n-border': string;
1915
+ '--n-border-disabled': string;
1916
+ '--n-border-hover': string;
1917
+ '--n-border-focus': string;
1918
+ '--n-placeholder-color': string;
1919
+ '--n-placeholder-color-disabled': string;
1920
+ '--n-icon-size': string;
1921
+ '--n-line-height-textarea': string;
1922
+ '--n-color-disabled': string;
1923
+ '--n-color-focus': string;
1924
+ '--n-text-color-disabled': string;
1925
+ '--n-box-shadow-focus': string;
1926
+ '--n-loading-color': string;
1927
+ '--n-caret-color-warning': string;
1928
+ '--n-color-focus-warning': string;
1929
+ '--n-box-shadow-focus-warning': string;
1930
+ '--n-border-warning': string;
1931
+ '--n-border-focus-warning': string;
1932
+ '--n-border-hover-warning': string;
1933
+ '--n-loading-color-warning': string;
1934
+ '--n-caret-color-error': string;
1935
+ '--n-color-focus-error': string;
1936
+ '--n-box-shadow-focus-error': string;
1937
+ '--n-border-error': string;
1938
+ '--n-border-focus-error': string;
1939
+ '--n-border-hover-error': string;
1940
+ '--n-loading-color-error': string;
1941
+ '--n-clear-color': string;
1942
+ '--n-clear-size': string;
1943
+ '--n-clear-color-hover': string;
1944
+ '--n-clear-color-pressed': string;
1945
+ '--n-icon-color': string;
1946
+ '--n-icon-color-hover': string;
1947
+ '--n-icon-color-pressed': string;
1948
+ '--n-icon-color-disabled': string;
1949
+ '--n-suffix-text-color': string;
1950
+ }> | undefined;
1951
+ themeClass: import("vue").Ref<string> | undefined;
1952
+ onRender: (() => void) | undefined;
1953
+ isCompositing: import("vue").Ref<boolean>;
1954
+ blur: () => void;
1955
+ focus: () => void;
1956
+ select: () => void;
1957
+ activate: () => void;
1958
+ deactivate: () => void;
1959
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1960
+ bordered: {
1961
+ type: import("vue").PropType<boolean | undefined>;
1962
+ default: undefined;
1963
+ };
1964
+ type: {
1965
+ type: import("vue").PropType<"text" | "textarea" | "password">;
1966
+ default: string;
1967
+ };
1968
+ placeholder: import("vue").PropType<string | [string, string]>;
1969
+ defaultValue: {
1970
+ type: import("vue").PropType<string | [string, string] | null>;
1971
+ default: null;
1972
+ };
1973
+ value: import("vue").PropType<string | [string, string] | null>;
1974
+ disabled: {
1975
+ type: import("vue").PropType<boolean | undefined>;
1976
+ default: undefined;
1977
+ };
1978
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
1979
+ rows: {
1980
+ type: import("vue").PropType<string | number>;
1981
+ default: number;
1982
+ };
1983
+ round: BooleanConstructor;
1984
+ minlength: import("vue").PropType<string | number>;
1985
+ maxlength: import("vue").PropType<string | number>;
1986
+ clearable: BooleanConstructor;
1987
+ autosize: {
1988
+ type: import("vue").PropType<boolean | {
1989
+ minRows?: number | undefined;
1990
+ maxRows?: number | undefined;
1991
+ }>;
1992
+ default: boolean;
1993
+ };
1994
+ pair: BooleanConstructor;
1995
+ separator: StringConstructor;
1996
+ readonly: {
1997
+ type: (BooleanConstructor | StringConstructor)[];
1998
+ default: boolean;
1999
+ };
2000
+ passivelyActivated: BooleanConstructor;
2001
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
2002
+ stateful: {
2003
+ type: BooleanConstructor;
2004
+ default: boolean;
2005
+ };
2006
+ autofocus: BooleanConstructor;
2007
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
2008
+ resizable: {
2009
+ type: BooleanConstructor;
2010
+ default: boolean;
2011
+ };
2012
+ showCount: BooleanConstructor;
2013
+ loading: {
2014
+ type: BooleanConstructor;
2015
+ default: undefined;
2016
+ };
2017
+ allowInput: import("vue").PropType<(value: string) => boolean>;
2018
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
2019
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
2020
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
2021
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
2022
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2023
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2024
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2025
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
2026
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2027
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
2028
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
2029
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
2030
+ textDecoration: import("vue").PropType<string | [string, string]>;
2031
+ attrSize: {
2032
+ type: NumberConstructor;
2033
+ default: number;
2034
+ };
2035
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2036
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2037
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
2038
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
2039
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2040
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2041
+ internalDeactivateOnEnter: BooleanConstructor;
2042
+ internalForceFocus: BooleanConstructor;
2043
+ internalLoadingBeforeSuffix: BooleanConstructor;
2044
+ showPasswordToggle: BooleanConstructor;
2045
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
2046
+ countTextColor: string;
2047
+ heightTiny: string;
2048
+ heightSmall: string;
2049
+ heightMedium: string;
2050
+ heightLarge: string;
2051
+ fontSizeTiny: string;
2052
+ fontSizeSmall: string;
2053
+ fontSizeMedium: string;
2054
+ fontSizeLarge: string;
2055
+ lineHeight: string;
2056
+ lineHeightTextarea: string;
2057
+ borderRadius: string;
2058
+ iconSize: string;
2059
+ groupLabelColor: string;
2060
+ groupLabelTextColor: string;
2061
+ textColor: string;
2062
+ textColorDisabled: string;
2063
+ textDecorationColor: string;
2064
+ caretColor: string;
2065
+ placeholderColor: string;
2066
+ placeholderColorDisabled: string;
2067
+ color: string;
2068
+ colorDisabled: string;
2069
+ colorFocus: string;
2070
+ groupLabelBorder: string;
2071
+ border: string;
2072
+ borderHover: string;
2073
+ borderDisabled: string;
2074
+ borderFocus: string;
2075
+ boxShadowFocus: string;
2076
+ loadingColor: string;
2077
+ loadingColorWarning: string;
2078
+ borderWarning: string;
2079
+ borderHoverWarning: string;
2080
+ colorFocusWarning: string;
2081
+ borderFocusWarning: string;
2082
+ boxShadowFocusWarning: string;
2083
+ caretColorWarning: string;
2084
+ loadingColorError: string;
2085
+ borderError: string;
2086
+ borderHoverError: string;
2087
+ colorFocusError: string;
2088
+ borderFocusError: string;
2089
+ boxShadowFocusError: string;
2090
+ caretColorError: string;
2091
+ clearColor: string;
2092
+ clearColorHover: string;
2093
+ clearColorPressed: string;
2094
+ iconColor: string;
2095
+ iconColorDisabled: string;
2096
+ iconColorHover: string;
2097
+ iconColorPressed: string;
2098
+ suffixTextColor: string;
2099
+ paddingTiny: string;
2100
+ paddingSmall: string;
2101
+ paddingMedium: string;
2102
+ paddingLarge: string;
2103
+ clearSize: string;
2104
+ }, any>>;
2105
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
2106
+ countTextColor: string;
2107
+ heightTiny: string;
2108
+ heightSmall: string;
2109
+ heightMedium: string;
2110
+ heightLarge: string;
2111
+ fontSizeTiny: string;
2112
+ fontSizeSmall: string;
2113
+ fontSizeMedium: string;
2114
+ fontSizeLarge: string;
2115
+ lineHeight: string;
2116
+ lineHeightTextarea: string;
2117
+ borderRadius: string;
2118
+ iconSize: string;
2119
+ groupLabelColor: string;
2120
+ groupLabelTextColor: string;
2121
+ textColor: string;
2122
+ textColorDisabled: string;
2123
+ textDecorationColor: string;
2124
+ caretColor: string;
2125
+ placeholderColor: string;
2126
+ placeholderColorDisabled: string;
2127
+ color: string;
2128
+ colorDisabled: string;
2129
+ colorFocus: string;
2130
+ groupLabelBorder: string;
2131
+ border: string;
2132
+ borderHover: string;
2133
+ borderDisabled: string;
2134
+ borderFocus: string;
2135
+ boxShadowFocus: string;
2136
+ loadingColor: string;
2137
+ loadingColorWarning: string;
2138
+ borderWarning: string;
2139
+ borderHoverWarning: string;
2140
+ colorFocusWarning: string;
2141
+ borderFocusWarning: string;
2142
+ boxShadowFocusWarning: string;
2143
+ caretColorWarning: string;
2144
+ loadingColorError: string;
2145
+ borderError: string;
2146
+ borderHoverError: string;
2147
+ colorFocusError: string;
2148
+ borderFocusError: string;
2149
+ boxShadowFocusError: string;
2150
+ caretColorError: string;
2151
+ clearColor: string;
2152
+ clearColorHover: string;
2153
+ clearColorPressed: string;
2154
+ iconColor: string;
2155
+ iconColorDisabled: string;
2156
+ iconColorHover: string;
2157
+ iconColorPressed: string;
2158
+ suffixTextColor: string;
2159
+ paddingTiny: string;
2160
+ paddingSmall: string;
2161
+ paddingMedium: string;
2162
+ paddingLarge: string;
2163
+ clearSize: string;
2164
+ }, any>>>;
2165
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
2166
+ countTextColor: string;
2167
+ heightTiny: string;
2168
+ heightSmall: string;
2169
+ heightMedium: string;
2170
+ heightLarge: string;
2171
+ fontSizeTiny: string;
2172
+ fontSizeSmall: string;
2173
+ fontSizeMedium: string;
2174
+ fontSizeLarge: string;
2175
+ lineHeight: string;
2176
+ lineHeightTextarea: string;
2177
+ borderRadius: string;
2178
+ iconSize: string;
2179
+ groupLabelColor: string;
2180
+ groupLabelTextColor: string;
2181
+ textColor: string;
2182
+ textColorDisabled: string;
2183
+ textDecorationColor: string;
2184
+ caretColor: string;
2185
+ placeholderColor: string;
2186
+ placeholderColorDisabled: string;
2187
+ color: string;
2188
+ colorDisabled: string;
2189
+ colorFocus: string;
2190
+ groupLabelBorder: string;
2191
+ border: string;
2192
+ borderHover: string;
2193
+ borderDisabled: string;
2194
+ borderFocus: string;
2195
+ boxShadowFocus: string;
2196
+ loadingColor: string;
2197
+ loadingColorWarning: string;
2198
+ borderWarning: string;
2199
+ borderHoverWarning: string;
2200
+ colorFocusWarning: string;
2201
+ borderFocusWarning: string;
2202
+ boxShadowFocusWarning: string;
2203
+ caretColorWarning: string;
2204
+ loadingColorError: string;
2205
+ borderError: string;
2206
+ borderHoverError: string;
2207
+ colorFocusError: string;
2208
+ borderFocusError: string;
2209
+ boxShadowFocusError: string;
2210
+ caretColorError: string;
2211
+ clearColor: string;
2212
+ clearColorHover: string;
2213
+ clearColorPressed: string;
2214
+ iconColor: string;
2215
+ iconColorDisabled: string;
2216
+ iconColorHover: string;
2217
+ iconColorPressed: string;
2218
+ suffixTextColor: string;
2219
+ paddingTiny: string;
2220
+ paddingSmall: string;
2221
+ paddingMedium: string;
2222
+ paddingLarge: string;
2223
+ clearSize: string;
2224
+ }, any>>>;
2225
+ }>>, {
2226
+ type: "text" | "textarea" | "password";
2227
+ readonly: string | boolean;
2228
+ round: boolean;
2229
+ disabled: boolean | undefined;
2230
+ autofocus: boolean;
2231
+ autosize: boolean | {
2232
+ minRows?: number | undefined;
2233
+ maxRows?: number | undefined;
2234
+ };
2235
+ loading: boolean;
2236
+ bordered: boolean | undefined;
2237
+ clearable: boolean;
2238
+ defaultValue: string | [string, string] | null;
2239
+ resizable: boolean;
2240
+ pair: boolean;
2241
+ rows: string | number;
2242
+ passivelyActivated: boolean;
2243
+ stateful: boolean;
2244
+ showCount: boolean;
2245
+ attrSize: number;
2246
+ internalDeactivateOnEnter: boolean;
2247
+ internalForceFocus: boolean;
2248
+ internalLoadingBeforeSuffix: boolean;
2249
+ showPasswordToggle: boolean;
2250
+ }>;
2251
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2252
+ export default _default;