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