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,2921 @@
1
+ import { AnyObject, Func } from '../../../../../es/src/types';
2
+ import { PropType } from 'vue';
3
+ import { PropObject } from '../../../../../es/packages/form-table/src/types';
4
+ declare const _default: import("vue").DefineComponent<{
5
+ mainForm: {
6
+ type: PropObject;
7
+ default: () => {};
8
+ };
9
+ userInfo: {
10
+ type: PropObject;
11
+ default: () => {};
12
+ };
13
+ styleSetting: {
14
+ type: PropObject;
15
+ default: () => {};
16
+ };
17
+ defaultValue: {
18
+ type: PropObject;
19
+ default: () => {};
20
+ };
21
+ dbParams: {
22
+ type: PropType<AnyObject>;
23
+ };
24
+ row: {
25
+ type: PropObject;
26
+ default: () => {};
27
+ };
28
+ item: {
29
+ type: PropObject;
30
+ default: () => {
31
+ _own: {};
32
+ };
33
+ };
34
+ defaultFieldList: {
35
+ type: PropType<any[]>;
36
+ default: () => never[];
37
+ };
38
+ cacheUniqueKey: {
39
+ type: PropObject;
40
+ default: () => {
41
+ _own: {};
42
+ };
43
+ };
44
+ params_formId: (NumberConstructor | StringConstructor)[];
45
+ formType: {
46
+ type: PropObject;
47
+ default: () => {
48
+ _own: {};
49
+ };
50
+ };
51
+ isDetail: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
55
+ handleFormTableValue: PropType<Func<any[], any>>;
56
+ }, {
57
+ $message: import("naive-ui").MessageApi;
58
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
59
+ mainForm: {
60
+ type: PropObject;
61
+ default: () => {};
62
+ };
63
+ userInfo: {
64
+ type: PropObject;
65
+ default: () => {};
66
+ };
67
+ styleSetting: {
68
+ type: PropObject;
69
+ default: () => {};
70
+ };
71
+ defaultValue: {
72
+ type: PropObject;
73
+ default: () => {};
74
+ };
75
+ dbParams: {
76
+ type: PropType<AnyObject>;
77
+ };
78
+ row: {
79
+ type: PropObject;
80
+ default: () => {};
81
+ };
82
+ item: {
83
+ type: PropObject;
84
+ default: () => {
85
+ _own: {};
86
+ };
87
+ };
88
+ defaultFieldList: {
89
+ type: PropType<any[]>;
90
+ default: () => never[];
91
+ };
92
+ cacheUniqueKey: {
93
+ type: PropObject;
94
+ default: () => {
95
+ _own: {};
96
+ };
97
+ };
98
+ params_formId: (NumberConstructor | StringConstructor)[];
99
+ formType: {
100
+ type: PropObject;
101
+ default: () => {
102
+ _own: {};
103
+ };
104
+ };
105
+ isDetail: {
106
+ type: BooleanConstructor;
107
+ default: boolean;
108
+ };
109
+ handleFormTableValue: PropType<Func<any[], any>>;
110
+ }>> & {
111
+ onTableBlur?: ((...args: any[]) => any) | undefined;
112
+ onValueOnChange?: ((...args: any[]) => any) | undefined;
113
+ onHandlerAddOptions?: ((...args: any[]) => any) | undefined;
114
+ onOpentableSelect?: ((...args: any[]) => any) | undefined;
115
+ }>>;
116
+ emit: (event: "tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect", ...args: any[]) => void;
117
+ hasErr: import("vue").ComputedRef<any>;
118
+ handleTableBlur: (e?: AnyObject | undefined, config?: AnyObject) => void;
119
+ prefixStr: any;
120
+ suffixStr: any;
121
+ detailStr: import("vue").ComputedRef<string>;
122
+ NInputNumber: import("vue").DefineComponent<{
123
+ autofocus: BooleanConstructor;
124
+ loading: {
125
+ type: BooleanConstructor;
126
+ default: undefined;
127
+ };
128
+ placeholder: StringConstructor;
129
+ defaultValue: {
130
+ type: PropType<number | null>;
131
+ default: null;
132
+ };
133
+ value: PropType<number | null>;
134
+ step: {
135
+ type: (NumberConstructor | StringConstructor)[];
136
+ default: number;
137
+ };
138
+ min: (NumberConstructor | StringConstructor)[];
139
+ max: (NumberConstructor | StringConstructor)[];
140
+ size: PropType<"small" | "medium" | "large">;
141
+ disabled: {
142
+ type: PropType<boolean | undefined>;
143
+ default: undefined;
144
+ };
145
+ validator: PropType<(value: number) => boolean>;
146
+ bordered: {
147
+ type: PropType<boolean | undefined>;
148
+ default: undefined;
149
+ };
150
+ showButton: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ buttonPlacement: {
155
+ type: PropType<"right" | "both">;
156
+ default: string;
157
+ };
158
+ readonly: BooleanConstructor;
159
+ clearable: BooleanConstructor;
160
+ keyboard: {
161
+ type: PropType<{
162
+ ArrowUp?: boolean | undefined;
163
+ ArrowDown?: boolean | undefined;
164
+ }>;
165
+ default: {};
166
+ };
167
+ updateValueOnInput: {
168
+ type: BooleanConstructor;
169
+ default: boolean;
170
+ };
171
+ parse: PropType<(input: string) => number | null>;
172
+ format: PropType<(value: number | null) => string>;
173
+ precision: NumberConstructor;
174
+ status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
175
+ 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
176
+ onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
177
+ onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
178
+ onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
179
+ onClear: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
180
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
181
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
182
+ iconColorDisabled: string;
183
+ }, {
184
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
185
+ heightTiny: string;
186
+ heightSmall: string;
187
+ heightMedium: string;
188
+ heightLarge: string;
189
+ borderRadiusTiny: string;
190
+ borderRadiusSmall: string;
191
+ borderRadiusMedium: string;
192
+ borderRadiusLarge: string;
193
+ fontSizeTiny: string;
194
+ fontSizeSmall: string;
195
+ fontSizeMedium: string;
196
+ fontSizeLarge: string;
197
+ opacityDisabled: string;
198
+ colorOpacitySecondary: string;
199
+ colorOpacitySecondaryHover: string;
200
+ colorOpacitySecondaryPressed: string;
201
+ colorSecondary: string;
202
+ colorSecondaryHover: string;
203
+ colorSecondaryPressed: string;
204
+ colorTertiary: string;
205
+ colorTertiaryHover: string;
206
+ colorTertiaryPressed: string;
207
+ colorQuaternary: string;
208
+ colorQuaternaryHover: string;
209
+ colorQuaternaryPressed: string;
210
+ color: string;
211
+ colorHover: string;
212
+ colorPressed: string;
213
+ colorFocus: string;
214
+ colorDisabled: string;
215
+ textColor: string;
216
+ textColorTertiary: string;
217
+ textColorHover: string;
218
+ textColorPressed: string;
219
+ textColorFocus: string;
220
+ textColorDisabled: string;
221
+ textColorText: string;
222
+ textColorTextHover: string;
223
+ textColorTextPressed: string;
224
+ textColorTextFocus: string;
225
+ textColorTextDisabled: string;
226
+ textColorGhost: string;
227
+ textColorGhostHover: string;
228
+ textColorGhostPressed: string;
229
+ textColorGhostFocus: string;
230
+ textColorGhostDisabled: string;
231
+ border: string;
232
+ borderHover: string;
233
+ borderPressed: string;
234
+ borderFocus: string;
235
+ borderDisabled: string;
236
+ rippleColor: string;
237
+ colorPrimary: string;
238
+ colorHoverPrimary: string;
239
+ colorPressedPrimary: string;
240
+ colorFocusPrimary: string;
241
+ colorDisabledPrimary: string;
242
+ textColorPrimary: string;
243
+ textColorHoverPrimary: string;
244
+ textColorPressedPrimary: string;
245
+ textColorFocusPrimary: string;
246
+ textColorDisabledPrimary: string;
247
+ textColorTextPrimary: string;
248
+ textColorTextHoverPrimary: string;
249
+ textColorTextPressedPrimary: string;
250
+ textColorTextFocusPrimary: string;
251
+ textColorTextDisabledPrimary: string;
252
+ textColorGhostPrimary: string;
253
+ textColorGhostHoverPrimary: string;
254
+ textColorGhostPressedPrimary: string;
255
+ textColorGhostFocusPrimary: string;
256
+ textColorGhostDisabledPrimary: string;
257
+ borderPrimary: string;
258
+ borderHoverPrimary: string;
259
+ borderPressedPrimary: string;
260
+ borderFocusPrimary: string;
261
+ borderDisabledPrimary: string;
262
+ rippleColorPrimary: string;
263
+ colorInfo: string;
264
+ colorHoverInfo: string;
265
+ colorPressedInfo: string;
266
+ colorFocusInfo: string;
267
+ colorDisabledInfo: string;
268
+ textColorInfo: string;
269
+ textColorHoverInfo: string;
270
+ textColorPressedInfo: string;
271
+ textColorFocusInfo: string;
272
+ textColorDisabledInfo: string;
273
+ textColorTextInfo: string;
274
+ textColorTextHoverInfo: string;
275
+ textColorTextPressedInfo: string;
276
+ textColorTextFocusInfo: string;
277
+ textColorTextDisabledInfo: string;
278
+ textColorGhostInfo: string;
279
+ textColorGhostHoverInfo: string;
280
+ textColorGhostPressedInfo: string;
281
+ textColorGhostFocusInfo: string;
282
+ textColorGhostDisabledInfo: string;
283
+ borderInfo: string;
284
+ borderHoverInfo: string;
285
+ borderPressedInfo: string;
286
+ borderFocusInfo: string;
287
+ borderDisabledInfo: string;
288
+ rippleColorInfo: string;
289
+ colorSuccess: string;
290
+ colorHoverSuccess: string;
291
+ colorPressedSuccess: string;
292
+ colorFocusSuccess: string;
293
+ colorDisabledSuccess: string;
294
+ textColorSuccess: string;
295
+ textColorHoverSuccess: string;
296
+ textColorPressedSuccess: string;
297
+ textColorFocusSuccess: string;
298
+ textColorDisabledSuccess: string;
299
+ textColorTextSuccess: string;
300
+ textColorTextHoverSuccess: string;
301
+ textColorTextPressedSuccess: string;
302
+ textColorTextFocusSuccess: string;
303
+ textColorTextDisabledSuccess: string;
304
+ textColorGhostSuccess: string;
305
+ textColorGhostHoverSuccess: string;
306
+ textColorGhostPressedSuccess: string;
307
+ textColorGhostFocusSuccess: string;
308
+ textColorGhostDisabledSuccess: string;
309
+ borderSuccess: string;
310
+ borderHoverSuccess: string;
311
+ borderPressedSuccess: string;
312
+ borderFocusSuccess: string;
313
+ borderDisabledSuccess: string;
314
+ rippleColorSuccess: string;
315
+ colorWarning: string;
316
+ colorHoverWarning: string;
317
+ colorPressedWarning: string;
318
+ colorFocusWarning: string;
319
+ colorDisabledWarning: string;
320
+ textColorWarning: string;
321
+ textColorHoverWarning: string;
322
+ textColorPressedWarning: string;
323
+ textColorFocusWarning: string;
324
+ textColorDisabledWarning: string;
325
+ textColorTextWarning: string;
326
+ textColorTextHoverWarning: string;
327
+ textColorTextPressedWarning: string;
328
+ textColorTextFocusWarning: string;
329
+ textColorTextDisabledWarning: string;
330
+ textColorGhostWarning: string;
331
+ textColorGhostHoverWarning: string;
332
+ textColorGhostPressedWarning: string;
333
+ textColorGhostFocusWarning: string;
334
+ textColorGhostDisabledWarning: string;
335
+ borderWarning: string;
336
+ borderHoverWarning: string;
337
+ borderPressedWarning: string;
338
+ borderFocusWarning: string;
339
+ borderDisabledWarning: string;
340
+ rippleColorWarning: string;
341
+ colorError: string;
342
+ colorHoverError: string;
343
+ colorPressedError: string;
344
+ colorFocusError: string;
345
+ colorDisabledError: string;
346
+ textColorError: string;
347
+ textColorHoverError: string;
348
+ textColorPressedError: string;
349
+ textColorFocusError: string;
350
+ textColorDisabledError: string;
351
+ textColorTextError: string;
352
+ textColorTextHoverError: string;
353
+ textColorTextPressedError: string;
354
+ textColorTextFocusError: string;
355
+ textColorTextDisabledError: string;
356
+ textColorGhostError: string;
357
+ textColorGhostHoverError: string;
358
+ textColorGhostPressedError: string;
359
+ textColorGhostFocusError: string;
360
+ textColorGhostDisabledError: string;
361
+ borderError: string;
362
+ borderHoverError: string;
363
+ borderPressedError: string;
364
+ borderFocusError: string;
365
+ borderDisabledError: string;
366
+ rippleColorError: string;
367
+ waveOpacity: string;
368
+ fontWeight: string;
369
+ fontWeightStrong: string;
370
+ paddingTiny: string;
371
+ paddingSmall: string;
372
+ paddingMedium: string;
373
+ paddingLarge: string;
374
+ paddingRoundTiny: string;
375
+ paddingRoundSmall: string;
376
+ paddingRoundMedium: string;
377
+ paddingRoundLarge: string;
378
+ iconMarginTiny: string;
379
+ iconMarginSmall: string;
380
+ iconMarginMedium: string;
381
+ iconMarginLarge: string;
382
+ iconSizeTiny: string;
383
+ iconSizeSmall: string;
384
+ iconSizeMedium: string;
385
+ iconSizeLarge: string;
386
+ rippleDuration: string;
387
+ }, any>;
388
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
389
+ countTextColor: string;
390
+ heightTiny: string;
391
+ heightSmall: string;
392
+ heightMedium: string;
393
+ heightLarge: string;
394
+ fontSizeTiny: string;
395
+ fontSizeSmall: string;
396
+ fontSizeMedium: string;
397
+ fontSizeLarge: string;
398
+ lineHeight: string;
399
+ lineHeightTextarea: string;
400
+ borderRadius: string;
401
+ iconSize: string;
402
+ groupLabelColor: string;
403
+ groupLabelTextColor: string;
404
+ textColor: string;
405
+ textColorDisabled: string;
406
+ textDecorationColor: string;
407
+ caretColor: string;
408
+ placeholderColor: string;
409
+ placeholderColorDisabled: string;
410
+ color: string;
411
+ colorDisabled: string;
412
+ colorFocus: string;
413
+ groupLabelBorder: string;
414
+ border: string;
415
+ borderHover: string;
416
+ borderDisabled: string;
417
+ borderFocus: string;
418
+ boxShadowFocus: string;
419
+ loadingColor: string;
420
+ loadingColorWarning: string;
421
+ borderWarning: string;
422
+ borderHoverWarning: string;
423
+ colorFocusWarning: string;
424
+ borderFocusWarning: string;
425
+ boxShadowFocusWarning: string;
426
+ caretColorWarning: string;
427
+ loadingColorError: string;
428
+ borderError: string;
429
+ borderHoverError: string;
430
+ colorFocusError: string;
431
+ borderFocusError: string;
432
+ boxShadowFocusError: string;
433
+ caretColorError: string;
434
+ clearColor: string;
435
+ clearColorHover: string;
436
+ clearColorPressed: string;
437
+ iconColor: string;
438
+ iconColorDisabled: string;
439
+ iconColorHover: string;
440
+ iconColorPressed: string;
441
+ suffixTextColor: string;
442
+ paddingTiny: string;
443
+ paddingSmall: string;
444
+ paddingMedium: string;
445
+ paddingLarge: string;
446
+ clearSize: string;
447
+ }, any>;
448
+ }>>;
449
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
450
+ iconColorDisabled: string;
451
+ }, {
452
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
453
+ heightTiny: string;
454
+ heightSmall: string;
455
+ heightMedium: string;
456
+ heightLarge: string;
457
+ borderRadiusTiny: string;
458
+ borderRadiusSmall: string;
459
+ borderRadiusMedium: string;
460
+ borderRadiusLarge: string;
461
+ fontSizeTiny: string;
462
+ fontSizeSmall: string;
463
+ fontSizeMedium: string;
464
+ fontSizeLarge: string;
465
+ opacityDisabled: string;
466
+ colorOpacitySecondary: string;
467
+ colorOpacitySecondaryHover: string;
468
+ colorOpacitySecondaryPressed: string;
469
+ colorSecondary: string;
470
+ colorSecondaryHover: string;
471
+ colorSecondaryPressed: string;
472
+ colorTertiary: string;
473
+ colorTertiaryHover: string;
474
+ colorTertiaryPressed: string;
475
+ colorQuaternary: string;
476
+ colorQuaternaryHover: string;
477
+ colorQuaternaryPressed: string;
478
+ color: string;
479
+ colorHover: string;
480
+ colorPressed: string;
481
+ colorFocus: string;
482
+ colorDisabled: string;
483
+ textColor: string;
484
+ textColorTertiary: string;
485
+ textColorHover: string;
486
+ textColorPressed: string;
487
+ textColorFocus: string;
488
+ textColorDisabled: string;
489
+ textColorText: string;
490
+ textColorTextHover: string;
491
+ textColorTextPressed: string;
492
+ textColorTextFocus: string;
493
+ textColorTextDisabled: string;
494
+ textColorGhost: string;
495
+ textColorGhostHover: string;
496
+ textColorGhostPressed: string;
497
+ textColorGhostFocus: string;
498
+ textColorGhostDisabled: string;
499
+ border: string;
500
+ borderHover: string;
501
+ borderPressed: string;
502
+ borderFocus: string;
503
+ borderDisabled: string;
504
+ rippleColor: string;
505
+ colorPrimary: string;
506
+ colorHoverPrimary: string;
507
+ colorPressedPrimary: string;
508
+ colorFocusPrimary: string;
509
+ colorDisabledPrimary: string;
510
+ textColorPrimary: string;
511
+ textColorHoverPrimary: string;
512
+ textColorPressedPrimary: string;
513
+ textColorFocusPrimary: string;
514
+ textColorDisabledPrimary: string;
515
+ textColorTextPrimary: string;
516
+ textColorTextHoverPrimary: string;
517
+ textColorTextPressedPrimary: string;
518
+ textColorTextFocusPrimary: string;
519
+ textColorTextDisabledPrimary: string;
520
+ textColorGhostPrimary: string;
521
+ textColorGhostHoverPrimary: string;
522
+ textColorGhostPressedPrimary: string;
523
+ textColorGhostFocusPrimary: string;
524
+ textColorGhostDisabledPrimary: string;
525
+ borderPrimary: string;
526
+ borderHoverPrimary: string;
527
+ borderPressedPrimary: string;
528
+ borderFocusPrimary: string;
529
+ borderDisabledPrimary: string;
530
+ rippleColorPrimary: string;
531
+ colorInfo: string;
532
+ colorHoverInfo: string;
533
+ colorPressedInfo: string;
534
+ colorFocusInfo: string;
535
+ colorDisabledInfo: string;
536
+ textColorInfo: string;
537
+ textColorHoverInfo: string;
538
+ textColorPressedInfo: string;
539
+ textColorFocusInfo: string;
540
+ textColorDisabledInfo: string;
541
+ textColorTextInfo: string;
542
+ textColorTextHoverInfo: string;
543
+ textColorTextPressedInfo: string;
544
+ textColorTextFocusInfo: string;
545
+ textColorTextDisabledInfo: string;
546
+ textColorGhostInfo: string;
547
+ textColorGhostHoverInfo: string;
548
+ textColorGhostPressedInfo: string;
549
+ textColorGhostFocusInfo: string;
550
+ textColorGhostDisabledInfo: string;
551
+ borderInfo: string;
552
+ borderHoverInfo: string;
553
+ borderPressedInfo: string;
554
+ borderFocusInfo: string;
555
+ borderDisabledInfo: string;
556
+ rippleColorInfo: string;
557
+ colorSuccess: string;
558
+ colorHoverSuccess: string;
559
+ colorPressedSuccess: string;
560
+ colorFocusSuccess: string;
561
+ colorDisabledSuccess: string;
562
+ textColorSuccess: string;
563
+ textColorHoverSuccess: string;
564
+ textColorPressedSuccess: string;
565
+ textColorFocusSuccess: string;
566
+ textColorDisabledSuccess: string;
567
+ textColorTextSuccess: string;
568
+ textColorTextHoverSuccess: string;
569
+ textColorTextPressedSuccess: string;
570
+ textColorTextFocusSuccess: string;
571
+ textColorTextDisabledSuccess: string;
572
+ textColorGhostSuccess: string;
573
+ textColorGhostHoverSuccess: string;
574
+ textColorGhostPressedSuccess: string;
575
+ textColorGhostFocusSuccess: string;
576
+ textColorGhostDisabledSuccess: string;
577
+ borderSuccess: string;
578
+ borderHoverSuccess: string;
579
+ borderPressedSuccess: string;
580
+ borderFocusSuccess: string;
581
+ borderDisabledSuccess: string;
582
+ rippleColorSuccess: string;
583
+ colorWarning: string;
584
+ colorHoverWarning: string;
585
+ colorPressedWarning: string;
586
+ colorFocusWarning: string;
587
+ colorDisabledWarning: string;
588
+ textColorWarning: string;
589
+ textColorHoverWarning: string;
590
+ textColorPressedWarning: string;
591
+ textColorFocusWarning: string;
592
+ textColorDisabledWarning: string;
593
+ textColorTextWarning: string;
594
+ textColorTextHoverWarning: string;
595
+ textColorTextPressedWarning: string;
596
+ textColorTextFocusWarning: string;
597
+ textColorTextDisabledWarning: string;
598
+ textColorGhostWarning: string;
599
+ textColorGhostHoverWarning: string;
600
+ textColorGhostPressedWarning: string;
601
+ textColorGhostFocusWarning: string;
602
+ textColorGhostDisabledWarning: string;
603
+ borderWarning: string;
604
+ borderHoverWarning: string;
605
+ borderPressedWarning: string;
606
+ borderFocusWarning: string;
607
+ borderDisabledWarning: string;
608
+ rippleColorWarning: string;
609
+ colorError: string;
610
+ colorHoverError: string;
611
+ colorPressedError: string;
612
+ colorFocusError: string;
613
+ colorDisabledError: string;
614
+ textColorError: string;
615
+ textColorHoverError: string;
616
+ textColorPressedError: string;
617
+ textColorFocusError: string;
618
+ textColorDisabledError: string;
619
+ textColorTextError: string;
620
+ textColorTextHoverError: string;
621
+ textColorTextPressedError: string;
622
+ textColorTextFocusError: string;
623
+ textColorTextDisabledError: string;
624
+ textColorGhostError: string;
625
+ textColorGhostHoverError: string;
626
+ textColorGhostPressedError: string;
627
+ textColorGhostFocusError: string;
628
+ textColorGhostDisabledError: string;
629
+ borderError: string;
630
+ borderHoverError: string;
631
+ borderPressedError: string;
632
+ borderFocusError: string;
633
+ borderDisabledError: string;
634
+ rippleColorError: string;
635
+ waveOpacity: string;
636
+ fontWeight: string;
637
+ fontWeightStrong: string;
638
+ paddingTiny: string;
639
+ paddingSmall: string;
640
+ paddingMedium: string;
641
+ paddingLarge: string;
642
+ paddingRoundTiny: string;
643
+ paddingRoundSmall: string;
644
+ paddingRoundMedium: string;
645
+ paddingRoundLarge: string;
646
+ iconMarginTiny: string;
647
+ iconMarginSmall: string;
648
+ iconMarginMedium: string;
649
+ iconMarginLarge: string;
650
+ iconSizeTiny: string;
651
+ iconSizeSmall: string;
652
+ iconSizeMedium: string;
653
+ iconSizeLarge: string;
654
+ rippleDuration: string;
655
+ }, any>;
656
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
657
+ countTextColor: string;
658
+ heightTiny: string;
659
+ heightSmall: string;
660
+ heightMedium: string;
661
+ heightLarge: string;
662
+ fontSizeTiny: string;
663
+ fontSizeSmall: string;
664
+ fontSizeMedium: string;
665
+ fontSizeLarge: string;
666
+ lineHeight: string;
667
+ lineHeightTextarea: string;
668
+ borderRadius: string;
669
+ iconSize: string;
670
+ groupLabelColor: string;
671
+ groupLabelTextColor: string;
672
+ textColor: string;
673
+ textColorDisabled: string;
674
+ textDecorationColor: string;
675
+ caretColor: string;
676
+ placeholderColor: string;
677
+ placeholderColorDisabled: string;
678
+ color: string;
679
+ colorDisabled: string;
680
+ colorFocus: string;
681
+ groupLabelBorder: string;
682
+ border: string;
683
+ borderHover: string;
684
+ borderDisabled: string;
685
+ borderFocus: string;
686
+ boxShadowFocus: string;
687
+ loadingColor: string;
688
+ loadingColorWarning: string;
689
+ borderWarning: string;
690
+ borderHoverWarning: string;
691
+ colorFocusWarning: string;
692
+ borderFocusWarning: string;
693
+ boxShadowFocusWarning: string;
694
+ caretColorWarning: string;
695
+ loadingColorError: string;
696
+ borderError: string;
697
+ borderHoverError: string;
698
+ colorFocusError: string;
699
+ borderFocusError: string;
700
+ boxShadowFocusError: string;
701
+ caretColorError: string;
702
+ clearColor: string;
703
+ clearColorHover: string;
704
+ clearColorPressed: string;
705
+ iconColor: string;
706
+ iconColorDisabled: string;
707
+ iconColorHover: string;
708
+ iconColorPressed: string;
709
+ suffixTextColor: string;
710
+ paddingTiny: string;
711
+ paddingSmall: string;
712
+ paddingMedium: string;
713
+ paddingLarge: string;
714
+ clearSize: string;
715
+ }, any>;
716
+ }>>>;
717
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
718
+ iconColorDisabled: string;
719
+ }, {
720
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
721
+ heightTiny: string;
722
+ heightSmall: string;
723
+ heightMedium: string;
724
+ heightLarge: string;
725
+ borderRadiusTiny: string;
726
+ borderRadiusSmall: string;
727
+ borderRadiusMedium: string;
728
+ borderRadiusLarge: string;
729
+ fontSizeTiny: string;
730
+ fontSizeSmall: string;
731
+ fontSizeMedium: string;
732
+ fontSizeLarge: string;
733
+ opacityDisabled: string;
734
+ colorOpacitySecondary: string;
735
+ colorOpacitySecondaryHover: string;
736
+ colorOpacitySecondaryPressed: string;
737
+ colorSecondary: string;
738
+ colorSecondaryHover: string;
739
+ colorSecondaryPressed: string;
740
+ colorTertiary: string;
741
+ colorTertiaryHover: string;
742
+ colorTertiaryPressed: string;
743
+ colorQuaternary: string;
744
+ colorQuaternaryHover: string;
745
+ colorQuaternaryPressed: string;
746
+ color: string;
747
+ colorHover: string;
748
+ colorPressed: string;
749
+ colorFocus: string;
750
+ colorDisabled: string;
751
+ textColor: string;
752
+ textColorTertiary: string;
753
+ textColorHover: string;
754
+ textColorPressed: string;
755
+ textColorFocus: string;
756
+ textColorDisabled: string;
757
+ textColorText: string;
758
+ textColorTextHover: string;
759
+ textColorTextPressed: string;
760
+ textColorTextFocus: string;
761
+ textColorTextDisabled: string;
762
+ textColorGhost: string;
763
+ textColorGhostHover: string;
764
+ textColorGhostPressed: string;
765
+ textColorGhostFocus: string;
766
+ textColorGhostDisabled: string;
767
+ border: string;
768
+ borderHover: string;
769
+ borderPressed: string;
770
+ borderFocus: string;
771
+ borderDisabled: string;
772
+ rippleColor: string;
773
+ colorPrimary: string;
774
+ colorHoverPrimary: string;
775
+ colorPressedPrimary: string;
776
+ colorFocusPrimary: string;
777
+ colorDisabledPrimary: string;
778
+ textColorPrimary: string;
779
+ textColorHoverPrimary: string;
780
+ textColorPressedPrimary: string;
781
+ textColorFocusPrimary: string;
782
+ textColorDisabledPrimary: string;
783
+ textColorTextPrimary: string;
784
+ textColorTextHoverPrimary: string;
785
+ textColorTextPressedPrimary: string;
786
+ textColorTextFocusPrimary: string;
787
+ textColorTextDisabledPrimary: string;
788
+ textColorGhostPrimary: string;
789
+ textColorGhostHoverPrimary: string;
790
+ textColorGhostPressedPrimary: string;
791
+ textColorGhostFocusPrimary: string;
792
+ textColorGhostDisabledPrimary: string;
793
+ borderPrimary: string;
794
+ borderHoverPrimary: string;
795
+ borderPressedPrimary: string;
796
+ borderFocusPrimary: string;
797
+ borderDisabledPrimary: string;
798
+ rippleColorPrimary: string;
799
+ colorInfo: string;
800
+ colorHoverInfo: string;
801
+ colorPressedInfo: string;
802
+ colorFocusInfo: string;
803
+ colorDisabledInfo: string;
804
+ textColorInfo: string;
805
+ textColorHoverInfo: string;
806
+ textColorPressedInfo: string;
807
+ textColorFocusInfo: string;
808
+ textColorDisabledInfo: string;
809
+ textColorTextInfo: string;
810
+ textColorTextHoverInfo: string;
811
+ textColorTextPressedInfo: string;
812
+ textColorTextFocusInfo: string;
813
+ textColorTextDisabledInfo: string;
814
+ textColorGhostInfo: string;
815
+ textColorGhostHoverInfo: string;
816
+ textColorGhostPressedInfo: string;
817
+ textColorGhostFocusInfo: string;
818
+ textColorGhostDisabledInfo: string;
819
+ borderInfo: string;
820
+ borderHoverInfo: string;
821
+ borderPressedInfo: string;
822
+ borderFocusInfo: string;
823
+ borderDisabledInfo: string;
824
+ rippleColorInfo: string;
825
+ colorSuccess: string;
826
+ colorHoverSuccess: string;
827
+ colorPressedSuccess: string;
828
+ colorFocusSuccess: string;
829
+ colorDisabledSuccess: string;
830
+ textColorSuccess: string;
831
+ textColorHoverSuccess: string;
832
+ textColorPressedSuccess: string;
833
+ textColorFocusSuccess: string;
834
+ textColorDisabledSuccess: string;
835
+ textColorTextSuccess: string;
836
+ textColorTextHoverSuccess: string;
837
+ textColorTextPressedSuccess: string;
838
+ textColorTextFocusSuccess: string;
839
+ textColorTextDisabledSuccess: string;
840
+ textColorGhostSuccess: string;
841
+ textColorGhostHoverSuccess: string;
842
+ textColorGhostPressedSuccess: string;
843
+ textColorGhostFocusSuccess: string;
844
+ textColorGhostDisabledSuccess: string;
845
+ borderSuccess: string;
846
+ borderHoverSuccess: string;
847
+ borderPressedSuccess: string;
848
+ borderFocusSuccess: string;
849
+ borderDisabledSuccess: string;
850
+ rippleColorSuccess: string;
851
+ colorWarning: string;
852
+ colorHoverWarning: string;
853
+ colorPressedWarning: string;
854
+ colorFocusWarning: string;
855
+ colorDisabledWarning: string;
856
+ textColorWarning: string;
857
+ textColorHoverWarning: string;
858
+ textColorPressedWarning: string;
859
+ textColorFocusWarning: string;
860
+ textColorDisabledWarning: string;
861
+ textColorTextWarning: string;
862
+ textColorTextHoverWarning: string;
863
+ textColorTextPressedWarning: string;
864
+ textColorTextFocusWarning: string;
865
+ textColorTextDisabledWarning: string;
866
+ textColorGhostWarning: string;
867
+ textColorGhostHoverWarning: string;
868
+ textColorGhostPressedWarning: string;
869
+ textColorGhostFocusWarning: string;
870
+ textColorGhostDisabledWarning: string;
871
+ borderWarning: string;
872
+ borderHoverWarning: string;
873
+ borderPressedWarning: string;
874
+ borderFocusWarning: string;
875
+ borderDisabledWarning: string;
876
+ rippleColorWarning: string;
877
+ colorError: string;
878
+ colorHoverError: string;
879
+ colorPressedError: string;
880
+ colorFocusError: string;
881
+ colorDisabledError: string;
882
+ textColorError: string;
883
+ textColorHoverError: string;
884
+ textColorPressedError: string;
885
+ textColorFocusError: string;
886
+ textColorDisabledError: string;
887
+ textColorTextError: string;
888
+ textColorTextHoverError: string;
889
+ textColorTextPressedError: string;
890
+ textColorTextFocusError: string;
891
+ textColorTextDisabledError: string;
892
+ textColorGhostError: string;
893
+ textColorGhostHoverError: string;
894
+ textColorGhostPressedError: string;
895
+ textColorGhostFocusError: string;
896
+ textColorGhostDisabledError: string;
897
+ borderError: string;
898
+ borderHoverError: string;
899
+ borderPressedError: string;
900
+ borderFocusError: string;
901
+ borderDisabledError: string;
902
+ rippleColorError: string;
903
+ waveOpacity: string;
904
+ fontWeight: string;
905
+ fontWeightStrong: string;
906
+ paddingTiny: string;
907
+ paddingSmall: string;
908
+ paddingMedium: string;
909
+ paddingLarge: string;
910
+ paddingRoundTiny: string;
911
+ paddingRoundSmall: string;
912
+ paddingRoundMedium: string;
913
+ paddingRoundLarge: string;
914
+ iconMarginTiny: string;
915
+ iconMarginSmall: string;
916
+ iconMarginMedium: string;
917
+ iconMarginLarge: string;
918
+ iconSizeTiny: string;
919
+ iconSizeSmall: string;
920
+ iconSizeMedium: string;
921
+ iconSizeLarge: string;
922
+ rippleDuration: string;
923
+ }, any>;
924
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
925
+ countTextColor: string;
926
+ heightTiny: string;
927
+ heightSmall: string;
928
+ heightMedium: string;
929
+ heightLarge: string;
930
+ fontSizeTiny: string;
931
+ fontSizeSmall: string;
932
+ fontSizeMedium: string;
933
+ fontSizeLarge: string;
934
+ lineHeight: string;
935
+ lineHeightTextarea: string;
936
+ borderRadius: string;
937
+ iconSize: string;
938
+ groupLabelColor: string;
939
+ groupLabelTextColor: string;
940
+ textColor: string;
941
+ textColorDisabled: string;
942
+ textDecorationColor: string;
943
+ caretColor: string;
944
+ placeholderColor: string;
945
+ placeholderColorDisabled: string;
946
+ color: string;
947
+ colorDisabled: string;
948
+ colorFocus: string;
949
+ groupLabelBorder: string;
950
+ border: string;
951
+ borderHover: string;
952
+ borderDisabled: string;
953
+ borderFocus: string;
954
+ boxShadowFocus: string;
955
+ loadingColor: string;
956
+ loadingColorWarning: string;
957
+ borderWarning: string;
958
+ borderHoverWarning: string;
959
+ colorFocusWarning: string;
960
+ borderFocusWarning: string;
961
+ boxShadowFocusWarning: string;
962
+ caretColorWarning: string;
963
+ loadingColorError: string;
964
+ borderError: string;
965
+ borderHoverError: string;
966
+ colorFocusError: string;
967
+ borderFocusError: string;
968
+ boxShadowFocusError: string;
969
+ caretColorError: string;
970
+ clearColor: string;
971
+ clearColorHover: string;
972
+ clearColorPressed: string;
973
+ iconColor: string;
974
+ iconColorDisabled: string;
975
+ iconColorHover: string;
976
+ iconColorPressed: string;
977
+ suffixTextColor: string;
978
+ paddingTiny: string;
979
+ paddingSmall: string;
980
+ paddingMedium: string;
981
+ paddingLarge: string;
982
+ clearSize: string;
983
+ }, any>;
984
+ }>>>;
985
+ }, {
986
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
987
+ inputInstRef: import("vue").Ref<{
988
+ wrapperElRef: HTMLElement | null;
989
+ textareaElRef: HTMLTextAreaElement | null;
990
+ inputElRef: HTMLInputElement | null;
991
+ isCompositing: boolean;
992
+ blur: () => void;
993
+ focus: () => void;
994
+ select: () => void;
995
+ activate: () => void;
996
+ deactivate: () => void;
997
+ } | null>;
998
+ minusButtonInstRef: import("vue").Ref<{
999
+ $el: HTMLElement;
1000
+ } | null>;
1001
+ addButtonInstRef: import("vue").Ref<{
1002
+ $el: HTMLElement;
1003
+ } | null>;
1004
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1005
+ mergedBordered: import("vue").ComputedRef<boolean>;
1006
+ uncontrolledValue: import("vue").Ref<number | null>;
1007
+ mergedValue: import("vue").ComputedRef<number | null>;
1008
+ mergedPlaceholder: import("vue").ComputedRef<string>;
1009
+ displayedValueInvalid: import("vue").ComputedRef<boolean>;
1010
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
1011
+ mergedDisabled: import("vue").ComputedRef<boolean>;
1012
+ displayedValue: import("vue").Ref<string>;
1013
+ addable: import("vue").ComputedRef<boolean>;
1014
+ minusable: import("vue").ComputedRef<boolean>;
1015
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
1016
+ handleFocus: (e: FocusEvent) => void;
1017
+ handleBlur: (e: FocusEvent) => void;
1018
+ handleClear: (e: MouseEvent) => void;
1019
+ handleMouseDown: (e: MouseEvent) => void;
1020
+ handleAddClick: () => void;
1021
+ handleMinusClick: () => void;
1022
+ handleAddMousedown: () => void;
1023
+ handleMinusMousedown: () => void;
1024
+ handleKeyDown: (e: KeyboardEvent) => void;
1025
+ handleUpdateDisplayedValue: (value: string) => void;
1026
+ mergedTheme: import("vue").ComputedRef<{
1027
+ common: {
1028
+ baseColor: string;
1029
+ primaryColor: string;
1030
+ primaryColorHover: string;
1031
+ primaryColorPressed: string;
1032
+ primaryColorSuppl: string;
1033
+ infoColor: string;
1034
+ infoColorHover: string;
1035
+ infoColorPressed: string;
1036
+ infoColorSuppl: string;
1037
+ successColor: string;
1038
+ successColorHover: string;
1039
+ successColorPressed: string;
1040
+ successColorSuppl: string;
1041
+ warningColor: string;
1042
+ warningColorHover: string;
1043
+ warningColorPressed: string;
1044
+ warningColorSuppl: string;
1045
+ errorColor: string;
1046
+ errorColorHover: string;
1047
+ errorColorPressed: string;
1048
+ errorColorSuppl: string;
1049
+ textColorBase: string;
1050
+ textColor1: string;
1051
+ textColor2: string;
1052
+ textColor3: string;
1053
+ textColorDisabled: string;
1054
+ placeholderColor: string;
1055
+ placeholderColorDisabled: string;
1056
+ iconColor: string;
1057
+ iconColorHover: string;
1058
+ iconColorPressed: string;
1059
+ iconColorDisabled: string;
1060
+ opacity1: string;
1061
+ opacity2: string;
1062
+ opacity3: string;
1063
+ opacity4: string;
1064
+ opacity5: string;
1065
+ dividerColor: string;
1066
+ borderColor: string;
1067
+ closeIconColor: string;
1068
+ closeIconColorHover: string;
1069
+ closeIconColorPressed: string;
1070
+ closeColorHover: string;
1071
+ closeColorPressed: string;
1072
+ clearColor: string;
1073
+ clearColorHover: string;
1074
+ clearColorPressed: string;
1075
+ scrollbarColor: string;
1076
+ scrollbarColorHover: string;
1077
+ scrollbarWidth: string;
1078
+ scrollbarHeight: string;
1079
+ scrollbarBorderRadius: string;
1080
+ progressRailColor: string;
1081
+ railColor: string;
1082
+ popoverColor: string;
1083
+ tableColor: string;
1084
+ cardColor: string;
1085
+ modalColor: string;
1086
+ bodyColor: string;
1087
+ tagColor: string;
1088
+ avatarColor: string;
1089
+ invertedColor: string;
1090
+ inputColor: string;
1091
+ codeColor: string;
1092
+ tabColor: string;
1093
+ actionColor: string;
1094
+ tableHeaderColor: string;
1095
+ hoverColor: string;
1096
+ tableColorHover: string;
1097
+ tableColorStriped: string;
1098
+ pressedColor: string;
1099
+ opacityDisabled: string;
1100
+ inputColorDisabled: string;
1101
+ buttonColor2: string;
1102
+ buttonColor2Hover: string;
1103
+ buttonColor2Pressed: string;
1104
+ boxShadow1: string;
1105
+ boxShadow2: string;
1106
+ boxShadow3: string;
1107
+ fontFamily: string;
1108
+ fontFamilyMono: string;
1109
+ fontWeight: string;
1110
+ fontWeightStrong: string;
1111
+ cubicBezierEaseInOut: string;
1112
+ cubicBezierEaseOut: string;
1113
+ cubicBezierEaseIn: string;
1114
+ borderRadius: string;
1115
+ borderRadiusSmall: string;
1116
+ fontSize: string;
1117
+ fontSizeMini: string;
1118
+ fontSizeTiny: string;
1119
+ fontSizeSmall: string;
1120
+ fontSizeMedium: string;
1121
+ fontSizeLarge: string;
1122
+ fontSizeHuge: string;
1123
+ lineHeight: string;
1124
+ heightMini: string;
1125
+ heightTiny: string;
1126
+ heightSmall: string;
1127
+ heightMedium: string;
1128
+ heightLarge: string;
1129
+ heightHuge: string;
1130
+ name: "common";
1131
+ };
1132
+ self: {
1133
+ iconColorDisabled: string;
1134
+ };
1135
+ peers: {
1136
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
1137
+ heightTiny: string;
1138
+ heightSmall: string;
1139
+ heightMedium: string;
1140
+ heightLarge: string;
1141
+ borderRadiusTiny: string;
1142
+ borderRadiusSmall: string;
1143
+ borderRadiusMedium: string;
1144
+ borderRadiusLarge: string;
1145
+ fontSizeTiny: string;
1146
+ fontSizeSmall: string;
1147
+ fontSizeMedium: string;
1148
+ fontSizeLarge: string;
1149
+ opacityDisabled: string;
1150
+ colorOpacitySecondary: string;
1151
+ colorOpacitySecondaryHover: string;
1152
+ colorOpacitySecondaryPressed: string;
1153
+ colorSecondary: string;
1154
+ colorSecondaryHover: string;
1155
+ colorSecondaryPressed: string;
1156
+ colorTertiary: string;
1157
+ colorTertiaryHover: string;
1158
+ colorTertiaryPressed: string;
1159
+ colorQuaternary: string;
1160
+ colorQuaternaryHover: string;
1161
+ colorQuaternaryPressed: string;
1162
+ color: string;
1163
+ colorHover: string;
1164
+ colorPressed: string;
1165
+ colorFocus: string;
1166
+ colorDisabled: string;
1167
+ textColor: string;
1168
+ textColorTertiary: string;
1169
+ textColorHover: string;
1170
+ textColorPressed: string;
1171
+ textColorFocus: string;
1172
+ textColorDisabled: string;
1173
+ textColorText: string;
1174
+ textColorTextHover: string;
1175
+ textColorTextPressed: string;
1176
+ textColorTextFocus: string;
1177
+ textColorTextDisabled: string;
1178
+ textColorGhost: string;
1179
+ textColorGhostHover: string;
1180
+ textColorGhostPressed: string;
1181
+ textColorGhostFocus: string;
1182
+ textColorGhostDisabled: string;
1183
+ border: string;
1184
+ borderHover: string;
1185
+ borderPressed: string;
1186
+ borderFocus: string;
1187
+ borderDisabled: string;
1188
+ rippleColor: string;
1189
+ colorPrimary: string;
1190
+ colorHoverPrimary: string;
1191
+ colorPressedPrimary: string;
1192
+ colorFocusPrimary: string;
1193
+ colorDisabledPrimary: string;
1194
+ textColorPrimary: string;
1195
+ textColorHoverPrimary: string;
1196
+ textColorPressedPrimary: string;
1197
+ textColorFocusPrimary: string;
1198
+ textColorDisabledPrimary: string;
1199
+ textColorTextPrimary: string;
1200
+ textColorTextHoverPrimary: string;
1201
+ textColorTextPressedPrimary: string;
1202
+ textColorTextFocusPrimary: string;
1203
+ textColorTextDisabledPrimary: string;
1204
+ textColorGhostPrimary: string;
1205
+ textColorGhostHoverPrimary: string;
1206
+ textColorGhostPressedPrimary: string;
1207
+ textColorGhostFocusPrimary: string;
1208
+ textColorGhostDisabledPrimary: string;
1209
+ borderPrimary: string;
1210
+ borderHoverPrimary: string;
1211
+ borderPressedPrimary: string;
1212
+ borderFocusPrimary: string;
1213
+ borderDisabledPrimary: string;
1214
+ rippleColorPrimary: string;
1215
+ colorInfo: string;
1216
+ colorHoverInfo: string;
1217
+ colorPressedInfo: string;
1218
+ colorFocusInfo: string;
1219
+ colorDisabledInfo: string;
1220
+ textColorInfo: string;
1221
+ textColorHoverInfo: string;
1222
+ textColorPressedInfo: string;
1223
+ textColorFocusInfo: string;
1224
+ textColorDisabledInfo: string;
1225
+ textColorTextInfo: string;
1226
+ textColorTextHoverInfo: string;
1227
+ textColorTextPressedInfo: string;
1228
+ textColorTextFocusInfo: string;
1229
+ textColorTextDisabledInfo: string;
1230
+ textColorGhostInfo: string;
1231
+ textColorGhostHoverInfo: string;
1232
+ textColorGhostPressedInfo: string;
1233
+ textColorGhostFocusInfo: string;
1234
+ textColorGhostDisabledInfo: string;
1235
+ borderInfo: string;
1236
+ borderHoverInfo: string;
1237
+ borderPressedInfo: string;
1238
+ borderFocusInfo: string;
1239
+ borderDisabledInfo: string;
1240
+ rippleColorInfo: string;
1241
+ colorSuccess: string;
1242
+ colorHoverSuccess: string;
1243
+ colorPressedSuccess: string;
1244
+ colorFocusSuccess: string;
1245
+ colorDisabledSuccess: string;
1246
+ textColorSuccess: string;
1247
+ textColorHoverSuccess: string;
1248
+ textColorPressedSuccess: string;
1249
+ textColorFocusSuccess: string;
1250
+ textColorDisabledSuccess: string;
1251
+ textColorTextSuccess: string;
1252
+ textColorTextHoverSuccess: string;
1253
+ textColorTextPressedSuccess: string;
1254
+ textColorTextFocusSuccess: string;
1255
+ textColorTextDisabledSuccess: string;
1256
+ textColorGhostSuccess: string;
1257
+ textColorGhostHoverSuccess: string;
1258
+ textColorGhostPressedSuccess: string;
1259
+ textColorGhostFocusSuccess: string;
1260
+ textColorGhostDisabledSuccess: string;
1261
+ borderSuccess: string;
1262
+ borderHoverSuccess: string;
1263
+ borderPressedSuccess: string;
1264
+ borderFocusSuccess: string;
1265
+ borderDisabledSuccess: string;
1266
+ rippleColorSuccess: string;
1267
+ colorWarning: string;
1268
+ colorHoverWarning: string;
1269
+ colorPressedWarning: string;
1270
+ colorFocusWarning: string;
1271
+ colorDisabledWarning: string;
1272
+ textColorWarning: string;
1273
+ textColorHoverWarning: string;
1274
+ textColorPressedWarning: string;
1275
+ textColorFocusWarning: string;
1276
+ textColorDisabledWarning: string;
1277
+ textColorTextWarning: string;
1278
+ textColorTextHoverWarning: string;
1279
+ textColorTextPressedWarning: string;
1280
+ textColorTextFocusWarning: string;
1281
+ textColorTextDisabledWarning: string;
1282
+ textColorGhostWarning: string;
1283
+ textColorGhostHoverWarning: string;
1284
+ textColorGhostPressedWarning: string;
1285
+ textColorGhostFocusWarning: string;
1286
+ textColorGhostDisabledWarning: string;
1287
+ borderWarning: string;
1288
+ borderHoverWarning: string;
1289
+ borderPressedWarning: string;
1290
+ borderFocusWarning: string;
1291
+ borderDisabledWarning: string;
1292
+ rippleColorWarning: string;
1293
+ colorError: string;
1294
+ colorHoverError: string;
1295
+ colorPressedError: string;
1296
+ colorFocusError: string;
1297
+ colorDisabledError: string;
1298
+ textColorError: string;
1299
+ textColorHoverError: string;
1300
+ textColorPressedError: string;
1301
+ textColorFocusError: string;
1302
+ textColorDisabledError: string;
1303
+ textColorTextError: string;
1304
+ textColorTextHoverError: string;
1305
+ textColorTextPressedError: string;
1306
+ textColorTextFocusError: string;
1307
+ textColorTextDisabledError: string;
1308
+ textColorGhostError: string;
1309
+ textColorGhostHoverError: string;
1310
+ textColorGhostPressedError: string;
1311
+ textColorGhostFocusError: string;
1312
+ textColorGhostDisabledError: string;
1313
+ borderError: string;
1314
+ borderHoverError: string;
1315
+ borderPressedError: string;
1316
+ borderFocusError: string;
1317
+ borderDisabledError: string;
1318
+ rippleColorError: string;
1319
+ waveOpacity: string;
1320
+ fontWeight: string;
1321
+ fontWeightStrong: string;
1322
+ paddingTiny: string;
1323
+ paddingSmall: string;
1324
+ paddingMedium: string;
1325
+ paddingLarge: string;
1326
+ paddingRoundTiny: string;
1327
+ paddingRoundSmall: string;
1328
+ paddingRoundMedium: string;
1329
+ paddingRoundLarge: string;
1330
+ iconMarginTiny: string;
1331
+ iconMarginSmall: string;
1332
+ iconMarginMedium: string;
1333
+ iconMarginLarge: string;
1334
+ iconSizeTiny: string;
1335
+ iconSizeSmall: string;
1336
+ iconSizeMedium: string;
1337
+ iconSizeLarge: string;
1338
+ rippleDuration: string;
1339
+ }, any>;
1340
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
1341
+ countTextColor: string;
1342
+ heightTiny: string;
1343
+ heightSmall: string;
1344
+ heightMedium: string;
1345
+ heightLarge: string;
1346
+ fontSizeTiny: string;
1347
+ fontSizeSmall: string;
1348
+ fontSizeMedium: string;
1349
+ fontSizeLarge: string;
1350
+ lineHeight: string;
1351
+ lineHeightTextarea: string;
1352
+ borderRadius: string;
1353
+ iconSize: string;
1354
+ groupLabelColor: string;
1355
+ groupLabelTextColor: string;
1356
+ textColor: string;
1357
+ textColorDisabled: string;
1358
+ textDecorationColor: string;
1359
+ caretColor: string;
1360
+ placeholderColor: string;
1361
+ placeholderColorDisabled: string;
1362
+ color: string;
1363
+ colorDisabled: string;
1364
+ colorFocus: string;
1365
+ groupLabelBorder: string;
1366
+ border: string;
1367
+ borderHover: string;
1368
+ borderDisabled: string;
1369
+ borderFocus: string;
1370
+ boxShadowFocus: string;
1371
+ loadingColor: string;
1372
+ loadingColorWarning: string;
1373
+ borderWarning: string;
1374
+ borderHoverWarning: string;
1375
+ colorFocusWarning: string;
1376
+ borderFocusWarning: string;
1377
+ boxShadowFocusWarning: string;
1378
+ caretColorWarning: string;
1379
+ loadingColorError: string;
1380
+ borderError: string;
1381
+ borderHoverError: string;
1382
+ colorFocusError: string;
1383
+ borderFocusError: string;
1384
+ boxShadowFocusError: string;
1385
+ caretColorError: string;
1386
+ clearColor: string;
1387
+ clearColorHover: string;
1388
+ clearColorPressed: string;
1389
+ iconColor: string;
1390
+ iconColorDisabled: string;
1391
+ iconColorHover: string;
1392
+ iconColorPressed: string;
1393
+ suffixTextColor: string;
1394
+ paddingTiny: string;
1395
+ paddingSmall: string;
1396
+ paddingMedium: string;
1397
+ paddingLarge: string;
1398
+ clearSize: string;
1399
+ }, any>;
1400
+ };
1401
+ peerOverrides: {
1402
+ Button?: {
1403
+ peers?: {
1404
+ [x: string]: any;
1405
+ } | undefined;
1406
+ } | undefined;
1407
+ Input?: {
1408
+ peers?: {
1409
+ [x: string]: any;
1410
+ } | undefined;
1411
+ } | undefined;
1412
+ };
1413
+ }>;
1414
+ inputThemeOverrides: {
1415
+ paddingSmall: string;
1416
+ paddingMedium: string;
1417
+ paddingLarge: string;
1418
+ };
1419
+ buttonThemeOverrides: import("vue").ComputedRef<{
1420
+ textColorTextDisabled: string;
1421
+ opacityDisabled: string;
1422
+ }>;
1423
+ focus: () => void;
1424
+ blur: () => void;
1425
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1426
+ autofocus: BooleanConstructor;
1427
+ loading: {
1428
+ type: BooleanConstructor;
1429
+ default: undefined;
1430
+ };
1431
+ placeholder: StringConstructor;
1432
+ defaultValue: {
1433
+ type: PropType<number | null>;
1434
+ default: null;
1435
+ };
1436
+ value: PropType<number | null>;
1437
+ step: {
1438
+ type: (NumberConstructor | StringConstructor)[];
1439
+ default: number;
1440
+ };
1441
+ min: (NumberConstructor | StringConstructor)[];
1442
+ max: (NumberConstructor | StringConstructor)[];
1443
+ size: PropType<"small" | "medium" | "large">;
1444
+ disabled: {
1445
+ type: PropType<boolean | undefined>;
1446
+ default: undefined;
1447
+ };
1448
+ validator: PropType<(value: number) => boolean>;
1449
+ bordered: {
1450
+ type: PropType<boolean | undefined>;
1451
+ default: undefined;
1452
+ };
1453
+ showButton: {
1454
+ type: BooleanConstructor;
1455
+ default: boolean;
1456
+ };
1457
+ buttonPlacement: {
1458
+ type: PropType<"right" | "both">;
1459
+ default: string;
1460
+ };
1461
+ readonly: BooleanConstructor;
1462
+ clearable: BooleanConstructor;
1463
+ keyboard: {
1464
+ type: PropType<{
1465
+ ArrowUp?: boolean | undefined;
1466
+ ArrowDown?: boolean | undefined;
1467
+ }>;
1468
+ default: {};
1469
+ };
1470
+ updateValueOnInput: {
1471
+ type: BooleanConstructor;
1472
+ default: boolean;
1473
+ };
1474
+ parse: PropType<(input: string) => number | null>;
1475
+ format: PropType<(value: number | null) => string>;
1476
+ precision: NumberConstructor;
1477
+ status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1478
+ 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1479
+ onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1480
+ onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1481
+ onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1482
+ onClear: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1483
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1484
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
1485
+ iconColorDisabled: string;
1486
+ }, {
1487
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
1488
+ heightTiny: string;
1489
+ heightSmall: string;
1490
+ heightMedium: string;
1491
+ heightLarge: string;
1492
+ borderRadiusTiny: string;
1493
+ borderRadiusSmall: string;
1494
+ borderRadiusMedium: string;
1495
+ borderRadiusLarge: string;
1496
+ fontSizeTiny: string;
1497
+ fontSizeSmall: string;
1498
+ fontSizeMedium: string;
1499
+ fontSizeLarge: string;
1500
+ opacityDisabled: string;
1501
+ colorOpacitySecondary: string;
1502
+ colorOpacitySecondaryHover: string;
1503
+ colorOpacitySecondaryPressed: string;
1504
+ colorSecondary: string;
1505
+ colorSecondaryHover: string;
1506
+ colorSecondaryPressed: string;
1507
+ colorTertiary: string;
1508
+ colorTertiaryHover: string;
1509
+ colorTertiaryPressed: string;
1510
+ colorQuaternary: string;
1511
+ colorQuaternaryHover: string;
1512
+ colorQuaternaryPressed: string;
1513
+ color: string;
1514
+ colorHover: string;
1515
+ colorPressed: string;
1516
+ colorFocus: string;
1517
+ colorDisabled: string;
1518
+ textColor: string;
1519
+ textColorTertiary: string;
1520
+ textColorHover: string;
1521
+ textColorPressed: string;
1522
+ textColorFocus: string;
1523
+ textColorDisabled: string;
1524
+ textColorText: string;
1525
+ textColorTextHover: string;
1526
+ textColorTextPressed: string;
1527
+ textColorTextFocus: string;
1528
+ textColorTextDisabled: string;
1529
+ textColorGhost: string;
1530
+ textColorGhostHover: string;
1531
+ textColorGhostPressed: string;
1532
+ textColorGhostFocus: string;
1533
+ textColorGhostDisabled: string;
1534
+ border: string;
1535
+ borderHover: string;
1536
+ borderPressed: string;
1537
+ borderFocus: string;
1538
+ borderDisabled: string;
1539
+ rippleColor: string;
1540
+ colorPrimary: string;
1541
+ colorHoverPrimary: string;
1542
+ colorPressedPrimary: string;
1543
+ colorFocusPrimary: string;
1544
+ colorDisabledPrimary: string;
1545
+ textColorPrimary: string;
1546
+ textColorHoverPrimary: string;
1547
+ textColorPressedPrimary: string;
1548
+ textColorFocusPrimary: string;
1549
+ textColorDisabledPrimary: string;
1550
+ textColorTextPrimary: string;
1551
+ textColorTextHoverPrimary: string;
1552
+ textColorTextPressedPrimary: string;
1553
+ textColorTextFocusPrimary: string;
1554
+ textColorTextDisabledPrimary: string;
1555
+ textColorGhostPrimary: string;
1556
+ textColorGhostHoverPrimary: string;
1557
+ textColorGhostPressedPrimary: string;
1558
+ textColorGhostFocusPrimary: string;
1559
+ textColorGhostDisabledPrimary: string;
1560
+ borderPrimary: string;
1561
+ borderHoverPrimary: string;
1562
+ borderPressedPrimary: string;
1563
+ borderFocusPrimary: string;
1564
+ borderDisabledPrimary: string;
1565
+ rippleColorPrimary: string;
1566
+ colorInfo: string;
1567
+ colorHoverInfo: string;
1568
+ colorPressedInfo: string;
1569
+ colorFocusInfo: string;
1570
+ colorDisabledInfo: string;
1571
+ textColorInfo: string;
1572
+ textColorHoverInfo: string;
1573
+ textColorPressedInfo: string;
1574
+ textColorFocusInfo: string;
1575
+ textColorDisabledInfo: string;
1576
+ textColorTextInfo: string;
1577
+ textColorTextHoverInfo: string;
1578
+ textColorTextPressedInfo: string;
1579
+ textColorTextFocusInfo: string;
1580
+ textColorTextDisabledInfo: string;
1581
+ textColorGhostInfo: string;
1582
+ textColorGhostHoverInfo: string;
1583
+ textColorGhostPressedInfo: string;
1584
+ textColorGhostFocusInfo: string;
1585
+ textColorGhostDisabledInfo: string;
1586
+ borderInfo: string;
1587
+ borderHoverInfo: string;
1588
+ borderPressedInfo: string;
1589
+ borderFocusInfo: string;
1590
+ borderDisabledInfo: string;
1591
+ rippleColorInfo: string;
1592
+ colorSuccess: string;
1593
+ colorHoverSuccess: string;
1594
+ colorPressedSuccess: string;
1595
+ colorFocusSuccess: string;
1596
+ colorDisabledSuccess: string;
1597
+ textColorSuccess: string;
1598
+ textColorHoverSuccess: string;
1599
+ textColorPressedSuccess: string;
1600
+ textColorFocusSuccess: string;
1601
+ textColorDisabledSuccess: string;
1602
+ textColorTextSuccess: string;
1603
+ textColorTextHoverSuccess: string;
1604
+ textColorTextPressedSuccess: string;
1605
+ textColorTextFocusSuccess: string;
1606
+ textColorTextDisabledSuccess: string;
1607
+ textColorGhostSuccess: string;
1608
+ textColorGhostHoverSuccess: string;
1609
+ textColorGhostPressedSuccess: string;
1610
+ textColorGhostFocusSuccess: string;
1611
+ textColorGhostDisabledSuccess: string;
1612
+ borderSuccess: string;
1613
+ borderHoverSuccess: string;
1614
+ borderPressedSuccess: string;
1615
+ borderFocusSuccess: string;
1616
+ borderDisabledSuccess: string;
1617
+ rippleColorSuccess: string;
1618
+ colorWarning: string;
1619
+ colorHoverWarning: string;
1620
+ colorPressedWarning: string;
1621
+ colorFocusWarning: string;
1622
+ colorDisabledWarning: string;
1623
+ textColorWarning: string;
1624
+ textColorHoverWarning: string;
1625
+ textColorPressedWarning: string;
1626
+ textColorFocusWarning: string;
1627
+ textColorDisabledWarning: string;
1628
+ textColorTextWarning: string;
1629
+ textColorTextHoverWarning: string;
1630
+ textColorTextPressedWarning: string;
1631
+ textColorTextFocusWarning: string;
1632
+ textColorTextDisabledWarning: string;
1633
+ textColorGhostWarning: string;
1634
+ textColorGhostHoverWarning: string;
1635
+ textColorGhostPressedWarning: string;
1636
+ textColorGhostFocusWarning: string;
1637
+ textColorGhostDisabledWarning: string;
1638
+ borderWarning: string;
1639
+ borderHoverWarning: string;
1640
+ borderPressedWarning: string;
1641
+ borderFocusWarning: string;
1642
+ borderDisabledWarning: string;
1643
+ rippleColorWarning: string;
1644
+ colorError: string;
1645
+ colorHoverError: string;
1646
+ colorPressedError: string;
1647
+ colorFocusError: string;
1648
+ colorDisabledError: string;
1649
+ textColorError: string;
1650
+ textColorHoverError: string;
1651
+ textColorPressedError: string;
1652
+ textColorFocusError: string;
1653
+ textColorDisabledError: string;
1654
+ textColorTextError: string;
1655
+ textColorTextHoverError: string;
1656
+ textColorTextPressedError: string;
1657
+ textColorTextFocusError: string;
1658
+ textColorTextDisabledError: string;
1659
+ textColorGhostError: string;
1660
+ textColorGhostHoverError: string;
1661
+ textColorGhostPressedError: string;
1662
+ textColorGhostFocusError: string;
1663
+ textColorGhostDisabledError: string;
1664
+ borderError: string;
1665
+ borderHoverError: string;
1666
+ borderPressedError: string;
1667
+ borderFocusError: string;
1668
+ borderDisabledError: string;
1669
+ rippleColorError: string;
1670
+ waveOpacity: string;
1671
+ fontWeight: string;
1672
+ fontWeightStrong: string;
1673
+ paddingTiny: string;
1674
+ paddingSmall: string;
1675
+ paddingMedium: string;
1676
+ paddingLarge: string;
1677
+ paddingRoundTiny: string;
1678
+ paddingRoundSmall: string;
1679
+ paddingRoundMedium: string;
1680
+ paddingRoundLarge: string;
1681
+ iconMarginTiny: string;
1682
+ iconMarginSmall: string;
1683
+ iconMarginMedium: string;
1684
+ iconMarginLarge: string;
1685
+ iconSizeTiny: string;
1686
+ iconSizeSmall: string;
1687
+ iconSizeMedium: string;
1688
+ iconSizeLarge: string;
1689
+ rippleDuration: string;
1690
+ }, any>;
1691
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
1692
+ countTextColor: string;
1693
+ heightTiny: string;
1694
+ heightSmall: string;
1695
+ heightMedium: string;
1696
+ heightLarge: string;
1697
+ fontSizeTiny: string;
1698
+ fontSizeSmall: string;
1699
+ fontSizeMedium: string;
1700
+ fontSizeLarge: string;
1701
+ lineHeight: string;
1702
+ lineHeightTextarea: string;
1703
+ borderRadius: string;
1704
+ iconSize: string;
1705
+ groupLabelColor: string;
1706
+ groupLabelTextColor: string;
1707
+ textColor: string;
1708
+ textColorDisabled: string;
1709
+ textDecorationColor: string;
1710
+ caretColor: string;
1711
+ placeholderColor: string;
1712
+ placeholderColorDisabled: string;
1713
+ color: string;
1714
+ colorDisabled: string;
1715
+ colorFocus: string;
1716
+ groupLabelBorder: string;
1717
+ border: string;
1718
+ borderHover: string;
1719
+ borderDisabled: string;
1720
+ borderFocus: string;
1721
+ boxShadowFocus: string;
1722
+ loadingColor: string;
1723
+ loadingColorWarning: string;
1724
+ borderWarning: string;
1725
+ borderHoverWarning: string;
1726
+ colorFocusWarning: string;
1727
+ borderFocusWarning: string;
1728
+ boxShadowFocusWarning: string;
1729
+ caretColorWarning: string;
1730
+ loadingColorError: string;
1731
+ borderError: string;
1732
+ borderHoverError: string;
1733
+ colorFocusError: string;
1734
+ borderFocusError: string;
1735
+ boxShadowFocusError: string;
1736
+ caretColorError: string;
1737
+ clearColor: string;
1738
+ clearColorHover: string;
1739
+ clearColorPressed: string;
1740
+ iconColor: string;
1741
+ iconColorDisabled: string;
1742
+ iconColorHover: string;
1743
+ iconColorPressed: string;
1744
+ suffixTextColor: string;
1745
+ paddingTiny: string;
1746
+ paddingSmall: string;
1747
+ paddingMedium: string;
1748
+ paddingLarge: string;
1749
+ clearSize: string;
1750
+ }, any>;
1751
+ }>>;
1752
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
1753
+ iconColorDisabled: string;
1754
+ }, {
1755
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
1756
+ heightTiny: string;
1757
+ heightSmall: string;
1758
+ heightMedium: string;
1759
+ heightLarge: string;
1760
+ borderRadiusTiny: string;
1761
+ borderRadiusSmall: string;
1762
+ borderRadiusMedium: string;
1763
+ borderRadiusLarge: string;
1764
+ fontSizeTiny: string;
1765
+ fontSizeSmall: string;
1766
+ fontSizeMedium: string;
1767
+ fontSizeLarge: string;
1768
+ opacityDisabled: string;
1769
+ colorOpacitySecondary: string;
1770
+ colorOpacitySecondaryHover: string;
1771
+ colorOpacitySecondaryPressed: string;
1772
+ colorSecondary: string;
1773
+ colorSecondaryHover: string;
1774
+ colorSecondaryPressed: string;
1775
+ colorTertiary: string;
1776
+ colorTertiaryHover: string;
1777
+ colorTertiaryPressed: string;
1778
+ colorQuaternary: string;
1779
+ colorQuaternaryHover: string;
1780
+ colorQuaternaryPressed: string;
1781
+ color: string;
1782
+ colorHover: string;
1783
+ colorPressed: string;
1784
+ colorFocus: string;
1785
+ colorDisabled: string;
1786
+ textColor: string;
1787
+ textColorTertiary: string;
1788
+ textColorHover: string;
1789
+ textColorPressed: string;
1790
+ textColorFocus: string;
1791
+ textColorDisabled: string;
1792
+ textColorText: string;
1793
+ textColorTextHover: string;
1794
+ textColorTextPressed: string;
1795
+ textColorTextFocus: string;
1796
+ textColorTextDisabled: string;
1797
+ textColorGhost: string;
1798
+ textColorGhostHover: string;
1799
+ textColorGhostPressed: string;
1800
+ textColorGhostFocus: string;
1801
+ textColorGhostDisabled: string;
1802
+ border: string;
1803
+ borderHover: string;
1804
+ borderPressed: string;
1805
+ borderFocus: string;
1806
+ borderDisabled: string;
1807
+ rippleColor: string;
1808
+ colorPrimary: string;
1809
+ colorHoverPrimary: string;
1810
+ colorPressedPrimary: string;
1811
+ colorFocusPrimary: string;
1812
+ colorDisabledPrimary: string;
1813
+ textColorPrimary: string;
1814
+ textColorHoverPrimary: string;
1815
+ textColorPressedPrimary: string;
1816
+ textColorFocusPrimary: string;
1817
+ textColorDisabledPrimary: string;
1818
+ textColorTextPrimary: string;
1819
+ textColorTextHoverPrimary: string;
1820
+ textColorTextPressedPrimary: string;
1821
+ textColorTextFocusPrimary: string;
1822
+ textColorTextDisabledPrimary: string;
1823
+ textColorGhostPrimary: string;
1824
+ textColorGhostHoverPrimary: string;
1825
+ textColorGhostPressedPrimary: string;
1826
+ textColorGhostFocusPrimary: string;
1827
+ textColorGhostDisabledPrimary: string;
1828
+ borderPrimary: string;
1829
+ borderHoverPrimary: string;
1830
+ borderPressedPrimary: string;
1831
+ borderFocusPrimary: string;
1832
+ borderDisabledPrimary: string;
1833
+ rippleColorPrimary: string;
1834
+ colorInfo: string;
1835
+ colorHoverInfo: string;
1836
+ colorPressedInfo: string;
1837
+ colorFocusInfo: string;
1838
+ colorDisabledInfo: string;
1839
+ textColorInfo: string;
1840
+ textColorHoverInfo: string;
1841
+ textColorPressedInfo: string;
1842
+ textColorFocusInfo: string;
1843
+ textColorDisabledInfo: string;
1844
+ textColorTextInfo: string;
1845
+ textColorTextHoverInfo: string;
1846
+ textColorTextPressedInfo: string;
1847
+ textColorTextFocusInfo: string;
1848
+ textColorTextDisabledInfo: string;
1849
+ textColorGhostInfo: string;
1850
+ textColorGhostHoverInfo: string;
1851
+ textColorGhostPressedInfo: string;
1852
+ textColorGhostFocusInfo: string;
1853
+ textColorGhostDisabledInfo: string;
1854
+ borderInfo: string;
1855
+ borderHoverInfo: string;
1856
+ borderPressedInfo: string;
1857
+ borderFocusInfo: string;
1858
+ borderDisabledInfo: string;
1859
+ rippleColorInfo: string;
1860
+ colorSuccess: string;
1861
+ colorHoverSuccess: string;
1862
+ colorPressedSuccess: string;
1863
+ colorFocusSuccess: string;
1864
+ colorDisabledSuccess: string;
1865
+ textColorSuccess: string;
1866
+ textColorHoverSuccess: string;
1867
+ textColorPressedSuccess: string;
1868
+ textColorFocusSuccess: string;
1869
+ textColorDisabledSuccess: string;
1870
+ textColorTextSuccess: string;
1871
+ textColorTextHoverSuccess: string;
1872
+ textColorTextPressedSuccess: string;
1873
+ textColorTextFocusSuccess: string;
1874
+ textColorTextDisabledSuccess: string;
1875
+ textColorGhostSuccess: string;
1876
+ textColorGhostHoverSuccess: string;
1877
+ textColorGhostPressedSuccess: string;
1878
+ textColorGhostFocusSuccess: string;
1879
+ textColorGhostDisabledSuccess: string;
1880
+ borderSuccess: string;
1881
+ borderHoverSuccess: string;
1882
+ borderPressedSuccess: string;
1883
+ borderFocusSuccess: string;
1884
+ borderDisabledSuccess: string;
1885
+ rippleColorSuccess: string;
1886
+ colorWarning: string;
1887
+ colorHoverWarning: string;
1888
+ colorPressedWarning: string;
1889
+ colorFocusWarning: string;
1890
+ colorDisabledWarning: string;
1891
+ textColorWarning: string;
1892
+ textColorHoverWarning: string;
1893
+ textColorPressedWarning: string;
1894
+ textColorFocusWarning: string;
1895
+ textColorDisabledWarning: string;
1896
+ textColorTextWarning: string;
1897
+ textColorTextHoverWarning: string;
1898
+ textColorTextPressedWarning: string;
1899
+ textColorTextFocusWarning: string;
1900
+ textColorTextDisabledWarning: string;
1901
+ textColorGhostWarning: string;
1902
+ textColorGhostHoverWarning: string;
1903
+ textColorGhostPressedWarning: string;
1904
+ textColorGhostFocusWarning: string;
1905
+ textColorGhostDisabledWarning: string;
1906
+ borderWarning: string;
1907
+ borderHoverWarning: string;
1908
+ borderPressedWarning: string;
1909
+ borderFocusWarning: string;
1910
+ borderDisabledWarning: string;
1911
+ rippleColorWarning: string;
1912
+ colorError: string;
1913
+ colorHoverError: string;
1914
+ colorPressedError: string;
1915
+ colorFocusError: string;
1916
+ colorDisabledError: string;
1917
+ textColorError: string;
1918
+ textColorHoverError: string;
1919
+ textColorPressedError: string;
1920
+ textColorFocusError: string;
1921
+ textColorDisabledError: string;
1922
+ textColorTextError: string;
1923
+ textColorTextHoverError: string;
1924
+ textColorTextPressedError: string;
1925
+ textColorTextFocusError: string;
1926
+ textColorTextDisabledError: string;
1927
+ textColorGhostError: string;
1928
+ textColorGhostHoverError: string;
1929
+ textColorGhostPressedError: string;
1930
+ textColorGhostFocusError: string;
1931
+ textColorGhostDisabledError: string;
1932
+ borderError: string;
1933
+ borderHoverError: string;
1934
+ borderPressedError: string;
1935
+ borderFocusError: string;
1936
+ borderDisabledError: string;
1937
+ rippleColorError: string;
1938
+ waveOpacity: string;
1939
+ fontWeight: string;
1940
+ fontWeightStrong: string;
1941
+ paddingTiny: string;
1942
+ paddingSmall: string;
1943
+ paddingMedium: string;
1944
+ paddingLarge: string;
1945
+ paddingRoundTiny: string;
1946
+ paddingRoundSmall: string;
1947
+ paddingRoundMedium: string;
1948
+ paddingRoundLarge: string;
1949
+ iconMarginTiny: string;
1950
+ iconMarginSmall: string;
1951
+ iconMarginMedium: string;
1952
+ iconMarginLarge: string;
1953
+ iconSizeTiny: string;
1954
+ iconSizeSmall: string;
1955
+ iconSizeMedium: string;
1956
+ iconSizeLarge: string;
1957
+ rippleDuration: string;
1958
+ }, any>;
1959
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
1960
+ countTextColor: string;
1961
+ heightTiny: string;
1962
+ heightSmall: string;
1963
+ heightMedium: string;
1964
+ heightLarge: string;
1965
+ fontSizeTiny: string;
1966
+ fontSizeSmall: string;
1967
+ fontSizeMedium: string;
1968
+ fontSizeLarge: string;
1969
+ lineHeight: string;
1970
+ lineHeightTextarea: string;
1971
+ borderRadius: string;
1972
+ iconSize: string;
1973
+ groupLabelColor: string;
1974
+ groupLabelTextColor: string;
1975
+ textColor: string;
1976
+ textColorDisabled: string;
1977
+ textDecorationColor: string;
1978
+ caretColor: string;
1979
+ placeholderColor: string;
1980
+ placeholderColorDisabled: string;
1981
+ color: string;
1982
+ colorDisabled: string;
1983
+ colorFocus: string;
1984
+ groupLabelBorder: string;
1985
+ border: string;
1986
+ borderHover: string;
1987
+ borderDisabled: string;
1988
+ borderFocus: string;
1989
+ boxShadowFocus: string;
1990
+ loadingColor: string;
1991
+ loadingColorWarning: string;
1992
+ borderWarning: string;
1993
+ borderHoverWarning: string;
1994
+ colorFocusWarning: string;
1995
+ borderFocusWarning: string;
1996
+ boxShadowFocusWarning: string;
1997
+ caretColorWarning: string;
1998
+ loadingColorError: string;
1999
+ borderError: string;
2000
+ borderHoverError: string;
2001
+ colorFocusError: string;
2002
+ borderFocusError: string;
2003
+ boxShadowFocusError: string;
2004
+ caretColorError: string;
2005
+ clearColor: string;
2006
+ clearColorHover: string;
2007
+ clearColorPressed: string;
2008
+ iconColor: string;
2009
+ iconColorDisabled: string;
2010
+ iconColorHover: string;
2011
+ iconColorPressed: string;
2012
+ suffixTextColor: string;
2013
+ paddingTiny: string;
2014
+ paddingSmall: string;
2015
+ paddingMedium: string;
2016
+ paddingLarge: string;
2017
+ clearSize: string;
2018
+ }, any>;
2019
+ }>>>;
2020
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
2021
+ iconColorDisabled: string;
2022
+ }, {
2023
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
2024
+ heightTiny: string;
2025
+ heightSmall: string;
2026
+ heightMedium: string;
2027
+ heightLarge: string;
2028
+ borderRadiusTiny: string;
2029
+ borderRadiusSmall: string;
2030
+ borderRadiusMedium: string;
2031
+ borderRadiusLarge: string;
2032
+ fontSizeTiny: string;
2033
+ fontSizeSmall: string;
2034
+ fontSizeMedium: string;
2035
+ fontSizeLarge: string;
2036
+ opacityDisabled: string;
2037
+ colorOpacitySecondary: string;
2038
+ colorOpacitySecondaryHover: string;
2039
+ colorOpacitySecondaryPressed: string;
2040
+ colorSecondary: string;
2041
+ colorSecondaryHover: string;
2042
+ colorSecondaryPressed: string;
2043
+ colorTertiary: string;
2044
+ colorTertiaryHover: string;
2045
+ colorTertiaryPressed: string;
2046
+ colorQuaternary: string;
2047
+ colorQuaternaryHover: string;
2048
+ colorQuaternaryPressed: string;
2049
+ color: string;
2050
+ colorHover: string;
2051
+ colorPressed: string;
2052
+ colorFocus: string;
2053
+ colorDisabled: string;
2054
+ textColor: string;
2055
+ textColorTertiary: string;
2056
+ textColorHover: string;
2057
+ textColorPressed: string;
2058
+ textColorFocus: string;
2059
+ textColorDisabled: string;
2060
+ textColorText: string;
2061
+ textColorTextHover: string;
2062
+ textColorTextPressed: string;
2063
+ textColorTextFocus: string;
2064
+ textColorTextDisabled: string;
2065
+ textColorGhost: string;
2066
+ textColorGhostHover: string;
2067
+ textColorGhostPressed: string;
2068
+ textColorGhostFocus: string;
2069
+ textColorGhostDisabled: string;
2070
+ border: string;
2071
+ borderHover: string;
2072
+ borderPressed: string;
2073
+ borderFocus: string;
2074
+ borderDisabled: string;
2075
+ rippleColor: string;
2076
+ colorPrimary: string;
2077
+ colorHoverPrimary: string;
2078
+ colorPressedPrimary: string;
2079
+ colorFocusPrimary: string;
2080
+ colorDisabledPrimary: string;
2081
+ textColorPrimary: string;
2082
+ textColorHoverPrimary: string;
2083
+ textColorPressedPrimary: string;
2084
+ textColorFocusPrimary: string;
2085
+ textColorDisabledPrimary: string;
2086
+ textColorTextPrimary: string;
2087
+ textColorTextHoverPrimary: string;
2088
+ textColorTextPressedPrimary: string;
2089
+ textColorTextFocusPrimary: string;
2090
+ textColorTextDisabledPrimary: string;
2091
+ textColorGhostPrimary: string;
2092
+ textColorGhostHoverPrimary: string;
2093
+ textColorGhostPressedPrimary: string;
2094
+ textColorGhostFocusPrimary: string;
2095
+ textColorGhostDisabledPrimary: string;
2096
+ borderPrimary: string;
2097
+ borderHoverPrimary: string;
2098
+ borderPressedPrimary: string;
2099
+ borderFocusPrimary: string;
2100
+ borderDisabledPrimary: string;
2101
+ rippleColorPrimary: string;
2102
+ colorInfo: string;
2103
+ colorHoverInfo: string;
2104
+ colorPressedInfo: string;
2105
+ colorFocusInfo: string;
2106
+ colorDisabledInfo: string;
2107
+ textColorInfo: string;
2108
+ textColorHoverInfo: string;
2109
+ textColorPressedInfo: string;
2110
+ textColorFocusInfo: string;
2111
+ textColorDisabledInfo: string;
2112
+ textColorTextInfo: string;
2113
+ textColorTextHoverInfo: string;
2114
+ textColorTextPressedInfo: string;
2115
+ textColorTextFocusInfo: string;
2116
+ textColorTextDisabledInfo: string;
2117
+ textColorGhostInfo: string;
2118
+ textColorGhostHoverInfo: string;
2119
+ textColorGhostPressedInfo: string;
2120
+ textColorGhostFocusInfo: string;
2121
+ textColorGhostDisabledInfo: string;
2122
+ borderInfo: string;
2123
+ borderHoverInfo: string;
2124
+ borderPressedInfo: string;
2125
+ borderFocusInfo: string;
2126
+ borderDisabledInfo: string;
2127
+ rippleColorInfo: string;
2128
+ colorSuccess: string;
2129
+ colorHoverSuccess: string;
2130
+ colorPressedSuccess: string;
2131
+ colorFocusSuccess: string;
2132
+ colorDisabledSuccess: string;
2133
+ textColorSuccess: string;
2134
+ textColorHoverSuccess: string;
2135
+ textColorPressedSuccess: string;
2136
+ textColorFocusSuccess: string;
2137
+ textColorDisabledSuccess: string;
2138
+ textColorTextSuccess: string;
2139
+ textColorTextHoverSuccess: string;
2140
+ textColorTextPressedSuccess: string;
2141
+ textColorTextFocusSuccess: string;
2142
+ textColorTextDisabledSuccess: string;
2143
+ textColorGhostSuccess: string;
2144
+ textColorGhostHoverSuccess: string;
2145
+ textColorGhostPressedSuccess: string;
2146
+ textColorGhostFocusSuccess: string;
2147
+ textColorGhostDisabledSuccess: string;
2148
+ borderSuccess: string;
2149
+ borderHoverSuccess: string;
2150
+ borderPressedSuccess: string;
2151
+ borderFocusSuccess: string;
2152
+ borderDisabledSuccess: string;
2153
+ rippleColorSuccess: string;
2154
+ colorWarning: string;
2155
+ colorHoverWarning: string;
2156
+ colorPressedWarning: string;
2157
+ colorFocusWarning: string;
2158
+ colorDisabledWarning: string;
2159
+ textColorWarning: string;
2160
+ textColorHoverWarning: string;
2161
+ textColorPressedWarning: string;
2162
+ textColorFocusWarning: string;
2163
+ textColorDisabledWarning: string;
2164
+ textColorTextWarning: string;
2165
+ textColorTextHoverWarning: string;
2166
+ textColorTextPressedWarning: string;
2167
+ textColorTextFocusWarning: string;
2168
+ textColorTextDisabledWarning: string;
2169
+ textColorGhostWarning: string;
2170
+ textColorGhostHoverWarning: string;
2171
+ textColorGhostPressedWarning: string;
2172
+ textColorGhostFocusWarning: string;
2173
+ textColorGhostDisabledWarning: string;
2174
+ borderWarning: string;
2175
+ borderHoverWarning: string;
2176
+ borderPressedWarning: string;
2177
+ borderFocusWarning: string;
2178
+ borderDisabledWarning: string;
2179
+ rippleColorWarning: string;
2180
+ colorError: string;
2181
+ colorHoverError: string;
2182
+ colorPressedError: string;
2183
+ colorFocusError: string;
2184
+ colorDisabledError: string;
2185
+ textColorError: string;
2186
+ textColorHoverError: string;
2187
+ textColorPressedError: string;
2188
+ textColorFocusError: string;
2189
+ textColorDisabledError: string;
2190
+ textColorTextError: string;
2191
+ textColorTextHoverError: string;
2192
+ textColorTextPressedError: string;
2193
+ textColorTextFocusError: string;
2194
+ textColorTextDisabledError: string;
2195
+ textColorGhostError: string;
2196
+ textColorGhostHoverError: string;
2197
+ textColorGhostPressedError: string;
2198
+ textColorGhostFocusError: string;
2199
+ textColorGhostDisabledError: string;
2200
+ borderError: string;
2201
+ borderHoverError: string;
2202
+ borderPressedError: string;
2203
+ borderFocusError: string;
2204
+ borderDisabledError: string;
2205
+ rippleColorError: string;
2206
+ waveOpacity: string;
2207
+ fontWeight: string;
2208
+ fontWeightStrong: string;
2209
+ paddingTiny: string;
2210
+ paddingSmall: string;
2211
+ paddingMedium: string;
2212
+ paddingLarge: string;
2213
+ paddingRoundTiny: string;
2214
+ paddingRoundSmall: string;
2215
+ paddingRoundMedium: string;
2216
+ paddingRoundLarge: string;
2217
+ iconMarginTiny: string;
2218
+ iconMarginSmall: string;
2219
+ iconMarginMedium: string;
2220
+ iconMarginLarge: string;
2221
+ iconSizeTiny: string;
2222
+ iconSizeSmall: string;
2223
+ iconSizeMedium: string;
2224
+ iconSizeLarge: string;
2225
+ rippleDuration: string;
2226
+ }, any>;
2227
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
2228
+ countTextColor: string;
2229
+ heightTiny: string;
2230
+ heightSmall: string;
2231
+ heightMedium: string;
2232
+ heightLarge: string;
2233
+ fontSizeTiny: string;
2234
+ fontSizeSmall: string;
2235
+ fontSizeMedium: string;
2236
+ fontSizeLarge: string;
2237
+ lineHeight: string;
2238
+ lineHeightTextarea: string;
2239
+ borderRadius: string;
2240
+ iconSize: string;
2241
+ groupLabelColor: string;
2242
+ groupLabelTextColor: string;
2243
+ textColor: string;
2244
+ textColorDisabled: string;
2245
+ textDecorationColor: string;
2246
+ caretColor: string;
2247
+ placeholderColor: string;
2248
+ placeholderColorDisabled: string;
2249
+ color: string;
2250
+ colorDisabled: string;
2251
+ colorFocus: string;
2252
+ groupLabelBorder: string;
2253
+ border: string;
2254
+ borderHover: string;
2255
+ borderDisabled: string;
2256
+ borderFocus: string;
2257
+ boxShadowFocus: string;
2258
+ loadingColor: string;
2259
+ loadingColorWarning: string;
2260
+ borderWarning: string;
2261
+ borderHoverWarning: string;
2262
+ colorFocusWarning: string;
2263
+ borderFocusWarning: string;
2264
+ boxShadowFocusWarning: string;
2265
+ caretColorWarning: string;
2266
+ loadingColorError: string;
2267
+ borderError: string;
2268
+ borderHoverError: string;
2269
+ colorFocusError: string;
2270
+ borderFocusError: string;
2271
+ boxShadowFocusError: string;
2272
+ caretColorError: string;
2273
+ clearColor: string;
2274
+ clearColorHover: string;
2275
+ clearColorPressed: string;
2276
+ iconColor: string;
2277
+ iconColorDisabled: string;
2278
+ iconColorHover: string;
2279
+ iconColorPressed: string;
2280
+ suffixTextColor: string;
2281
+ paddingTiny: string;
2282
+ paddingSmall: string;
2283
+ paddingMedium: string;
2284
+ paddingLarge: string;
2285
+ clearSize: string;
2286
+ }, any>;
2287
+ }>>>;
2288
+ }>>, {
2289
+ readonly: boolean;
2290
+ disabled: boolean | undefined;
2291
+ step: string | number;
2292
+ autofocus: boolean;
2293
+ loading: boolean;
2294
+ bordered: boolean | undefined;
2295
+ clearable: boolean;
2296
+ defaultValue: number | null;
2297
+ keyboard: {
2298
+ ArrowUp?: boolean | undefined;
2299
+ ArrowDown?: boolean | undefined;
2300
+ };
2301
+ showButton: boolean;
2302
+ buttonPlacement: "right" | "both";
2303
+ updateValueOnInput: boolean;
2304
+ }>;
2305
+ TextOverTooltip: import("vue").DefineComponent<{
2306
+ content: {
2307
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
2308
+ };
2309
+ className: StringConstructor;
2310
+ refName: {
2311
+ type: StringConstructor;
2312
+ default: string;
2313
+ };
2314
+ placement: {
2315
+ type: StringConstructor;
2316
+ default: string;
2317
+ };
2318
+ tooltipTitle: {
2319
+ type: (NumberConstructor | StringConstructor)[];
2320
+ default: string;
2321
+ };
2322
+ isAlias: BooleanConstructor;
2323
+ textColor: StringConstructor;
2324
+ }, {
2325
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2326
+ content: {
2327
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
2328
+ };
2329
+ className: StringConstructor;
2330
+ refName: {
2331
+ type: StringConstructor;
2332
+ default: string;
2333
+ };
2334
+ placement: {
2335
+ type: StringConstructor;
2336
+ default: string;
2337
+ };
2338
+ tooltipTitle: {
2339
+ type: (NumberConstructor | StringConstructor)[];
2340
+ default: string;
2341
+ };
2342
+ isAlias: BooleanConstructor;
2343
+ textColor: StringConstructor;
2344
+ }>> & {
2345
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
2346
+ }>>;
2347
+ curContent: import("vue").ComputedRef<string | Function>;
2348
+ NTooltip: import("vue").DefineComponent<{
2349
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2350
+ borderRadius: string;
2351
+ boxShadow: string;
2352
+ color: string;
2353
+ textColor: string;
2354
+ padding: string;
2355
+ }, {
2356
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2357
+ fontSize: string;
2358
+ borderRadius: string;
2359
+ color: string;
2360
+ dividerColor: string;
2361
+ textColor: string;
2362
+ boxShadow: string;
2363
+ space: string;
2364
+ spaceArrow: string;
2365
+ arrowOffset: string;
2366
+ arrowOffsetVertical: string;
2367
+ arrowHeight: string;
2368
+ padding: string;
2369
+ }, any>;
2370
+ }>>;
2371
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2372
+ borderRadius: string;
2373
+ boxShadow: string;
2374
+ color: string;
2375
+ textColor: string;
2376
+ padding: string;
2377
+ }, {
2378
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2379
+ fontSize: string;
2380
+ borderRadius: string;
2381
+ color: string;
2382
+ dividerColor: string;
2383
+ textColor: string;
2384
+ boxShadow: string;
2385
+ space: string;
2386
+ spaceArrow: string;
2387
+ arrowOffset: string;
2388
+ arrowOffsetVertical: string;
2389
+ arrowHeight: string;
2390
+ padding: string;
2391
+ }, any>;
2392
+ }>>>;
2393
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2394
+ borderRadius: string;
2395
+ boxShadow: string;
2396
+ color: string;
2397
+ textColor: string;
2398
+ padding: string;
2399
+ }, {
2400
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2401
+ fontSize: string;
2402
+ borderRadius: string;
2403
+ color: string;
2404
+ dividerColor: string;
2405
+ textColor: string;
2406
+ boxShadow: string;
2407
+ space: string;
2408
+ spaceArrow: string;
2409
+ arrowOffset: string;
2410
+ arrowOffsetVertical: string;
2411
+ arrowHeight: string;
2412
+ padding: string;
2413
+ }, any>;
2414
+ }>>>;
2415
+ show: {
2416
+ type: PropType<boolean | undefined>;
2417
+ default: undefined;
2418
+ };
2419
+ defaultShow: BooleanConstructor;
2420
+ showArrow: {
2421
+ type: BooleanConstructor;
2422
+ default: boolean;
2423
+ };
2424
+ trigger: {
2425
+ type: PropType<import("naive-ui").PopoverTrigger>;
2426
+ default: string;
2427
+ };
2428
+ delay: {
2429
+ type: NumberConstructor;
2430
+ default: number;
2431
+ };
2432
+ duration: {
2433
+ type: NumberConstructor;
2434
+ default: number;
2435
+ };
2436
+ raw: BooleanConstructor;
2437
+ placement: {
2438
+ type: PropType<import("naive-ui").PopoverPlacement>;
2439
+ default: string;
2440
+ };
2441
+ x: NumberConstructor;
2442
+ y: NumberConstructor;
2443
+ arrowPointToCenter: BooleanConstructor;
2444
+ disabled: BooleanConstructor;
2445
+ getDisabled: PropType<() => boolean>;
2446
+ displayDirective: {
2447
+ type: PropType<"show" | "if">;
2448
+ default: string;
2449
+ };
2450
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
2451
+ flip: {
2452
+ type: BooleanConstructor;
2453
+ default: boolean;
2454
+ };
2455
+ animated: {
2456
+ type: BooleanConstructor;
2457
+ default: boolean;
2458
+ };
2459
+ width: {
2460
+ type: PropType<number | "trigger">;
2461
+ default: undefined;
2462
+ };
2463
+ overlap: BooleanConstructor;
2464
+ keepAliveOnHover: {
2465
+ type: BooleanConstructor;
2466
+ default: boolean;
2467
+ };
2468
+ zIndex: NumberConstructor;
2469
+ to: {
2470
+ type: PropType<string | boolean | HTMLElement>;
2471
+ default: undefined;
2472
+ };
2473
+ scrollable: BooleanConstructor;
2474
+ contentStyle: PropType<string | import("vue").CSSProperties>;
2475
+ headerStyle: PropType<string | import("vue").CSSProperties>;
2476
+ footerStyle: PropType<string | import("vue").CSSProperties>;
2477
+ onClickoutside: PropType<(e: MouseEvent) => void>;
2478
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2479
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2480
+ internalDeactivateImmediately: BooleanConstructor;
2481
+ internalSyncTargetWithParent: BooleanConstructor;
2482
+ internalInheritedEventHandlers: {
2483
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2484
+ default: () => never[];
2485
+ };
2486
+ internalTrapFocus: BooleanConstructor;
2487
+ internalExtraClass: {
2488
+ type: PropType<string[]>;
2489
+ default: () => never[];
2490
+ };
2491
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2492
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2493
+ arrow: {
2494
+ type: PropType<boolean | undefined>;
2495
+ default: undefined;
2496
+ };
2497
+ minWidth: NumberConstructor;
2498
+ maxWidth: NumberConstructor;
2499
+ }, {
2500
+ popoverRef: import("vue").Ref<{
2501
+ syncPosition: () => void;
2502
+ setShow: (value: boolean) => void;
2503
+ } | null>;
2504
+ mergedTheme: import("vue").ComputedRef<{
2505
+ common: {
2506
+ baseColor: string;
2507
+ primaryColor: string;
2508
+ primaryColorHover: string;
2509
+ primaryColorPressed: string;
2510
+ primaryColorSuppl: string;
2511
+ infoColor: string;
2512
+ infoColorHover: string;
2513
+ infoColorPressed: string;
2514
+ infoColorSuppl: string;
2515
+ successColor: string;
2516
+ successColorHover: string;
2517
+ successColorPressed: string;
2518
+ successColorSuppl: string;
2519
+ warningColor: string;
2520
+ warningColorHover: string;
2521
+ warningColorPressed: string;
2522
+ warningColorSuppl: string;
2523
+ errorColor: string;
2524
+ errorColorHover: string;
2525
+ errorColorPressed: string;
2526
+ errorColorSuppl: string;
2527
+ textColorBase: string;
2528
+ textColor1: string;
2529
+ textColor2: string;
2530
+ textColor3: string;
2531
+ textColorDisabled: string;
2532
+ placeholderColor: string;
2533
+ placeholderColorDisabled: string;
2534
+ iconColor: string;
2535
+ iconColorHover: string;
2536
+ iconColorPressed: string;
2537
+ iconColorDisabled: string;
2538
+ opacity1: string;
2539
+ opacity2: string;
2540
+ opacity3: string;
2541
+ opacity4: string;
2542
+ opacity5: string;
2543
+ dividerColor: string;
2544
+ borderColor: string;
2545
+ closeIconColor: string;
2546
+ closeIconColorHover: string;
2547
+ closeIconColorPressed: string;
2548
+ closeColorHover: string;
2549
+ closeColorPressed: string;
2550
+ clearColor: string;
2551
+ clearColorHover: string;
2552
+ clearColorPressed: string;
2553
+ scrollbarColor: string;
2554
+ scrollbarColorHover: string;
2555
+ scrollbarWidth: string;
2556
+ scrollbarHeight: string;
2557
+ scrollbarBorderRadius: string;
2558
+ progressRailColor: string;
2559
+ railColor: string;
2560
+ popoverColor: string;
2561
+ tableColor: string;
2562
+ cardColor: string;
2563
+ modalColor: string;
2564
+ bodyColor: string;
2565
+ tagColor: string;
2566
+ avatarColor: string;
2567
+ invertedColor: string;
2568
+ inputColor: string;
2569
+ codeColor: string;
2570
+ tabColor: string;
2571
+ actionColor: string;
2572
+ tableHeaderColor: string;
2573
+ hoverColor: string;
2574
+ tableColorHover: string;
2575
+ tableColorStriped: string;
2576
+ pressedColor: string;
2577
+ opacityDisabled: string;
2578
+ inputColorDisabled: string;
2579
+ buttonColor2: string;
2580
+ buttonColor2Hover: string;
2581
+ buttonColor2Pressed: string;
2582
+ boxShadow1: string;
2583
+ boxShadow2: string;
2584
+ boxShadow3: string;
2585
+ fontFamily: string;
2586
+ fontFamilyMono: string;
2587
+ fontWeight: string;
2588
+ fontWeightStrong: string;
2589
+ cubicBezierEaseInOut: string;
2590
+ cubicBezierEaseOut: string;
2591
+ cubicBezierEaseIn: string;
2592
+ borderRadius: string;
2593
+ borderRadiusSmall: string;
2594
+ fontSize: string;
2595
+ fontSizeMini: string;
2596
+ fontSizeTiny: string;
2597
+ fontSizeSmall: string;
2598
+ fontSizeMedium: string;
2599
+ fontSizeLarge: string;
2600
+ fontSizeHuge: string;
2601
+ lineHeight: string;
2602
+ heightMini: string;
2603
+ heightTiny: string;
2604
+ heightSmall: string;
2605
+ heightMedium: string;
2606
+ heightLarge: string;
2607
+ heightHuge: string;
2608
+ name: "common";
2609
+ };
2610
+ self: {
2611
+ borderRadius: string;
2612
+ boxShadow: string;
2613
+ color: string;
2614
+ textColor: string;
2615
+ padding: string;
2616
+ };
2617
+ peers: {
2618
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2619
+ fontSize: string;
2620
+ borderRadius: string;
2621
+ color: string;
2622
+ dividerColor: string;
2623
+ textColor: string;
2624
+ boxShadow: string;
2625
+ space: string;
2626
+ spaceArrow: string;
2627
+ arrowOffset: string;
2628
+ arrowOffsetVertical: string;
2629
+ arrowHeight: string;
2630
+ padding: string;
2631
+ }, any>;
2632
+ };
2633
+ peerOverrides: {
2634
+ Popover?: {
2635
+ peers?: {
2636
+ [x: string]: any;
2637
+ } | undefined;
2638
+ } | undefined;
2639
+ };
2640
+ }>;
2641
+ popoverThemeOverrides: import("vue").ComputedRef<{
2642
+ borderRadius: string;
2643
+ boxShadow: string;
2644
+ color: string;
2645
+ textColor: string;
2646
+ padding: string;
2647
+ }>;
2648
+ syncPosition: () => void;
2649
+ setShow: (value: boolean) => void;
2650
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2651
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2652
+ borderRadius: string;
2653
+ boxShadow: string;
2654
+ color: string;
2655
+ textColor: string;
2656
+ padding: string;
2657
+ }, {
2658
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2659
+ fontSize: string;
2660
+ borderRadius: string;
2661
+ color: string;
2662
+ dividerColor: string;
2663
+ textColor: string;
2664
+ boxShadow: string;
2665
+ space: string;
2666
+ spaceArrow: string;
2667
+ arrowOffset: string;
2668
+ arrowOffsetVertical: string;
2669
+ arrowHeight: string;
2670
+ padding: string;
2671
+ }, any>;
2672
+ }>>;
2673
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2674
+ borderRadius: string;
2675
+ boxShadow: string;
2676
+ color: string;
2677
+ textColor: string;
2678
+ padding: string;
2679
+ }, {
2680
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2681
+ fontSize: string;
2682
+ borderRadius: string;
2683
+ color: string;
2684
+ dividerColor: string;
2685
+ textColor: string;
2686
+ boxShadow: string;
2687
+ space: string;
2688
+ spaceArrow: string;
2689
+ arrowOffset: string;
2690
+ arrowOffsetVertical: string;
2691
+ arrowHeight: string;
2692
+ padding: string;
2693
+ }, any>;
2694
+ }>>>;
2695
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2696
+ borderRadius: string;
2697
+ boxShadow: string;
2698
+ color: string;
2699
+ textColor: string;
2700
+ padding: string;
2701
+ }, {
2702
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2703
+ fontSize: string;
2704
+ borderRadius: string;
2705
+ color: string;
2706
+ dividerColor: string;
2707
+ textColor: string;
2708
+ boxShadow: string;
2709
+ space: string;
2710
+ spaceArrow: string;
2711
+ arrowOffset: string;
2712
+ arrowOffsetVertical: string;
2713
+ arrowHeight: string;
2714
+ padding: string;
2715
+ }, any>;
2716
+ }>>>;
2717
+ show: {
2718
+ type: PropType<boolean | undefined>;
2719
+ default: undefined;
2720
+ };
2721
+ defaultShow: BooleanConstructor;
2722
+ showArrow: {
2723
+ type: BooleanConstructor;
2724
+ default: boolean;
2725
+ };
2726
+ trigger: {
2727
+ type: PropType<import("naive-ui").PopoverTrigger>;
2728
+ default: string;
2729
+ };
2730
+ delay: {
2731
+ type: NumberConstructor;
2732
+ default: number;
2733
+ };
2734
+ duration: {
2735
+ type: NumberConstructor;
2736
+ default: number;
2737
+ };
2738
+ raw: BooleanConstructor;
2739
+ placement: {
2740
+ type: PropType<import("naive-ui").PopoverPlacement>;
2741
+ default: string;
2742
+ };
2743
+ x: NumberConstructor;
2744
+ y: NumberConstructor;
2745
+ arrowPointToCenter: BooleanConstructor;
2746
+ disabled: BooleanConstructor;
2747
+ getDisabled: PropType<() => boolean>;
2748
+ displayDirective: {
2749
+ type: PropType<"show" | "if">;
2750
+ default: string;
2751
+ };
2752
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
2753
+ flip: {
2754
+ type: BooleanConstructor;
2755
+ default: boolean;
2756
+ };
2757
+ animated: {
2758
+ type: BooleanConstructor;
2759
+ default: boolean;
2760
+ };
2761
+ width: {
2762
+ type: PropType<number | "trigger">;
2763
+ default: undefined;
2764
+ };
2765
+ overlap: BooleanConstructor;
2766
+ keepAliveOnHover: {
2767
+ type: BooleanConstructor;
2768
+ default: boolean;
2769
+ };
2770
+ zIndex: NumberConstructor;
2771
+ to: {
2772
+ type: PropType<string | boolean | HTMLElement>;
2773
+ default: undefined;
2774
+ };
2775
+ scrollable: BooleanConstructor;
2776
+ contentStyle: PropType<string | import("vue").CSSProperties>;
2777
+ headerStyle: PropType<string | import("vue").CSSProperties>;
2778
+ footerStyle: PropType<string | import("vue").CSSProperties>;
2779
+ onClickoutside: PropType<(e: MouseEvent) => void>;
2780
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2781
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2782
+ internalDeactivateImmediately: BooleanConstructor;
2783
+ internalSyncTargetWithParent: BooleanConstructor;
2784
+ internalInheritedEventHandlers: {
2785
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2786
+ default: () => never[];
2787
+ };
2788
+ internalTrapFocus: BooleanConstructor;
2789
+ internalExtraClass: {
2790
+ type: PropType<string[]>;
2791
+ default: () => never[];
2792
+ };
2793
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2794
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2795
+ arrow: {
2796
+ type: PropType<boolean | undefined>;
2797
+ default: undefined;
2798
+ };
2799
+ minWidth: NumberConstructor;
2800
+ maxWidth: NumberConstructor;
2801
+ }>>, {
2802
+ show: boolean | undefined;
2803
+ flip: boolean;
2804
+ width: number | "trigger";
2805
+ disabled: boolean;
2806
+ duration: number;
2807
+ to: string | boolean | HTMLElement;
2808
+ raw: boolean;
2809
+ placement: import("naive-ui").PopoverPlacement;
2810
+ overlap: boolean;
2811
+ scrollable: boolean;
2812
+ trigger: import("naive-ui").PopoverTrigger;
2813
+ showArrow: boolean;
2814
+ delay: number;
2815
+ arrowPointToCenter: boolean;
2816
+ displayDirective: "show" | "if";
2817
+ keepAliveOnHover: boolean;
2818
+ internalDeactivateImmediately: boolean;
2819
+ animated: boolean;
2820
+ internalTrapFocus: boolean;
2821
+ defaultShow: boolean;
2822
+ internalSyncTargetWithParent: boolean;
2823
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
2824
+ internalExtraClass: string[];
2825
+ arrow: boolean | undefined;
2826
+ }>;
2827
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2828
+ content: {
2829
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
2830
+ };
2831
+ className: StringConstructor;
2832
+ refName: {
2833
+ type: StringConstructor;
2834
+ default: string;
2835
+ };
2836
+ placement: {
2837
+ type: StringConstructor;
2838
+ default: string;
2839
+ };
2840
+ tooltipTitle: {
2841
+ type: (NumberConstructor | StringConstructor)[];
2842
+ default: string;
2843
+ };
2844
+ isAlias: BooleanConstructor;
2845
+ textColor: StringConstructor;
2846
+ }>>, {
2847
+ placement: string;
2848
+ refName: string;
2849
+ tooltipTitle: string | number;
2850
+ isAlias: boolean;
2851
+ }>;
2852
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect")[], "tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2853
+ mainForm: {
2854
+ type: PropObject;
2855
+ default: () => {};
2856
+ };
2857
+ userInfo: {
2858
+ type: PropObject;
2859
+ default: () => {};
2860
+ };
2861
+ styleSetting: {
2862
+ type: PropObject;
2863
+ default: () => {};
2864
+ };
2865
+ defaultValue: {
2866
+ type: PropObject;
2867
+ default: () => {};
2868
+ };
2869
+ dbParams: {
2870
+ type: PropType<AnyObject>;
2871
+ };
2872
+ row: {
2873
+ type: PropObject;
2874
+ default: () => {};
2875
+ };
2876
+ item: {
2877
+ type: PropObject;
2878
+ default: () => {
2879
+ _own: {};
2880
+ };
2881
+ };
2882
+ defaultFieldList: {
2883
+ type: PropType<any[]>;
2884
+ default: () => never[];
2885
+ };
2886
+ cacheUniqueKey: {
2887
+ type: PropObject;
2888
+ default: () => {
2889
+ _own: {};
2890
+ };
2891
+ };
2892
+ params_formId: (NumberConstructor | StringConstructor)[];
2893
+ formType: {
2894
+ type: PropObject;
2895
+ default: () => {
2896
+ _own: {};
2897
+ };
2898
+ };
2899
+ isDetail: {
2900
+ type: BooleanConstructor;
2901
+ default: boolean;
2902
+ };
2903
+ handleFormTableValue: PropType<Func<any[], any>>;
2904
+ }>> & {
2905
+ onTableBlur?: ((...args: any[]) => any) | undefined;
2906
+ onValueOnChange?: ((...args: any[]) => any) | undefined;
2907
+ onHandlerAddOptions?: ((...args: any[]) => any) | undefined;
2908
+ onOpentableSelect?: ((...args: any[]) => any) | undefined;
2909
+ }, {
2910
+ styleSetting: AnyObject;
2911
+ userInfo: AnyObject;
2912
+ defaultValue: AnyObject;
2913
+ row: AnyObject;
2914
+ cacheUniqueKey: AnyObject;
2915
+ formType: AnyObject;
2916
+ isDetail: boolean;
2917
+ item: AnyObject;
2918
+ mainForm: AnyObject;
2919
+ defaultFieldList: any[];
2920
+ }>;
2921
+ export default _default;