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,4310 @@
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
+ formTable: AnyObject;
118
+ hasErr: import("vue").ComputedRef<any>;
119
+ handleGetJsonStr: (str: string | AnyObject) => AnyObject;
120
+ handleSetFieldsValue: (setObj?: AnyObject, target?: any) => void;
121
+ handleGetUniqueKey: (id: string) => any;
122
+ handleSysParams: (str: string) => string;
123
+ defaultInit: () => void;
124
+ handleTableBlur: (e?: AnyObject | undefined, config?: AnyObject) => void;
125
+ handleFormParams: (str: string) => string;
126
+ radioColor: () => (p: AnyObject, isOnlyRead?: boolean | undefined) => any;
127
+ handleGetAgeUnit: (ageInfo?: AnyObject) => string | undefined;
128
+ handleAgeToBirthDay: (val: number, f: string, item: AnyObject) => void;
129
+ changeAgeSelect: (val: string, item: AnyObject) => void;
130
+ handlerSetIdCarInfoValidate: (value: any, item: AnyObject, callback: Func<any[], any>) => void;
131
+ getInputCheck: (validate?: string | undefined) => {
132
+ pattern: RegExp;
133
+ message: string;
134
+ } | undefined;
135
+ getCustomRegular: (item: AnyObject) => {
136
+ pattern: RegExp;
137
+ message: any;
138
+ } | null;
139
+ checkDigital: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
140
+ checkAgeJson: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
141
+ checkAge: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
142
+ checkMultipleChoice: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
143
+ checkLength: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
144
+ checkinputBlank: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
145
+ checkSearchCascade: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
146
+ checkMultipleTree: import("../../../../../es/packages/form-table/src/types").ValidateFunc;
147
+ handleDateClearBtn: (v: any, item: AnyObject) => void;
148
+ handleStartDateEndDate: (item: AnyObject) => void;
149
+ showTimePanel: (item: AnyObject) => boolean;
150
+ momentLib: (date_format: string) => any;
151
+ judgeTimeBoundary: (time: any, item: AnyObject) => void;
152
+ setTimeValue: (time: any, item: AnyObject) => void;
153
+ judgeTimeRange: (time: any, item: AnyObject) => AnyObject | undefined;
154
+ isSameDate: (curDate: any, compareMin: any, compareMax: any) => AnyObject;
155
+ setDefaultCurrent: (compareItem: AnyObject, currTime: any) => void;
156
+ handleDefaultRimeRange: (time: any, item: AnyObject) => void;
157
+ judgeMinMaxDateIsSameDate: (item: AnyObject) => boolean;
158
+ handleDefaultTimeRange: (time: any, item: any, chooseDate?: any) => {};
159
+ changeTimeDate: (time: any, minTime: any, maxTime: any, item: AnyObject) => {};
160
+ setTimeRangeArr: (hMin: any, HMax: any, mMin: any, mMax: any, sMin: any, sMax: any) => Required<Partial<Record<"hArr" | "mArr" | "sArr", [any, any]>>>;
161
+ ageRes: import("vue").Ref<{}>;
162
+ detailStr: import("vue").ComputedRef<any>;
163
+ setAgeRes: () => void;
164
+ handleAgeData: (item: any, curUnit: any, curVal: any) => void;
165
+ handleAgeOnChange: (ageInfo: any, item: any) => void;
166
+ getAgeUnit: (item: any) => any;
167
+ NInputGroup: import("vue").DefineComponent<{
168
+ [x: string]: never;
169
+ [x: number]: never;
170
+ [x: symbol]: never;
171
+ }, {
172
+ mergedClsPrefix: import("vue").ComputedRef<string>;
173
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
174
+ [x: string]: never;
175
+ [x: number]: never;
176
+ [x: symbol]: never;
177
+ }>>, {}>;
178
+ NSelect: import("vue").DefineComponent<{
179
+ readonly to: {
180
+ type: PropType<string | boolean | HTMLElement>;
181
+ default: undefined;
182
+ };
183
+ readonly bordered: {
184
+ readonly type: PropType<boolean | undefined>;
185
+ readonly default: undefined;
186
+ };
187
+ readonly clearable: BooleanConstructor;
188
+ readonly clearFilterAfterSelect: {
189
+ readonly type: BooleanConstructor;
190
+ readonly default: true;
191
+ };
192
+ readonly options: {
193
+ readonly type: PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
194
+ readonly default: () => never[];
195
+ };
196
+ readonly defaultValue: {
197
+ readonly type: PropType<import("naive-ui/es/select/src/interface").Value | null>;
198
+ readonly default: null;
199
+ };
200
+ readonly value: PropType<import("naive-ui/es/select/src/interface").Value | null>;
201
+ readonly placeholder: StringConstructor;
202
+ readonly menuProps: PropType<import("vue").HTMLAttributes>;
203
+ readonly multiple: BooleanConstructor;
204
+ readonly size: PropType<import("naive-ui/es/select/src/interface").Size>;
205
+ readonly filterable: BooleanConstructor;
206
+ readonly disabled: {
207
+ readonly type: PropType<boolean | undefined>;
208
+ readonly default: undefined;
209
+ };
210
+ readonly remote: BooleanConstructor;
211
+ readonly loading: BooleanConstructor;
212
+ readonly filter: PropType<import("naive-ui").SelectFilter>;
213
+ readonly placement: {
214
+ readonly type: PropType<import("naive-ui").PopoverPlacement>;
215
+ readonly default: "bottom-start";
216
+ };
217
+ readonly widthMode: {
218
+ readonly type: StringConstructor;
219
+ readonly default: "trigger";
220
+ };
221
+ readonly tag: BooleanConstructor;
222
+ readonly onCreate: PropType<(label: string) => import("naive-ui").SelectOption>;
223
+ readonly fallbackOption: {
224
+ readonly type: PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
225
+ readonly default: undefined;
226
+ };
227
+ readonly show: {
228
+ readonly type: PropType<boolean | undefined>;
229
+ readonly default: undefined;
230
+ };
231
+ readonly showArrow: {
232
+ readonly type: BooleanConstructor;
233
+ readonly default: true;
234
+ };
235
+ readonly maxTagCount: PropType<number | "responsive">;
236
+ readonly consistentMenuWidth: {
237
+ readonly type: BooleanConstructor;
238
+ readonly default: true;
239
+ };
240
+ readonly virtualScroll: {
241
+ readonly type: BooleanConstructor;
242
+ readonly default: true;
243
+ };
244
+ readonly labelField: {
245
+ readonly type: StringConstructor;
246
+ readonly default: "label";
247
+ };
248
+ readonly valueField: {
249
+ readonly type: StringConstructor;
250
+ readonly default: "value";
251
+ };
252
+ readonly childrenField: {
253
+ readonly type: StringConstructor;
254
+ readonly default: "children";
255
+ };
256
+ readonly renderLabel: PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
257
+ readonly renderOption: PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
258
+ readonly renderTag: PropType<import("naive-ui").SelectRenderTag>;
259
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
260
+ readonly inputProps: PropType<import("vue").InputHTMLAttributes>;
261
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
262
+ readonly onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
263
+ readonly onClear: PropType<import("naive-ui/es/_utils").MaybeArray<() => void> | undefined>;
264
+ readonly onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
265
+ readonly onScroll: PropType<import("naive-ui/es/_utils").MaybeArray<(e: Event) => void> | undefined>;
266
+ readonly onSearch: PropType<import("naive-ui/es/_utils").MaybeArray<(value: string) => void> | undefined>;
267
+ readonly onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
268
+ readonly 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
269
+ readonly displayDirective: {
270
+ readonly type: PropType<"show" | "if">;
271
+ readonly default: "show";
272
+ };
273
+ readonly resetMenuOnOptionsChange: {
274
+ readonly type: BooleanConstructor;
275
+ readonly default: true;
276
+ };
277
+ readonly status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
278
+ readonly internalShowCheckmark: {
279
+ readonly type: BooleanConstructor;
280
+ readonly default: true;
281
+ };
282
+ readonly onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
283
+ readonly items: PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
284
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Select", {
285
+ menuBoxShadow: string;
286
+ }, {
287
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
288
+ fontSizeTiny: string;
289
+ fontSizeSmall: string;
290
+ fontSizeMedium: string;
291
+ fontSizeLarge: string;
292
+ heightTiny: string;
293
+ heightSmall: string;
294
+ heightMedium: string;
295
+ heightLarge: string;
296
+ borderRadius: string;
297
+ textColor: string;
298
+ textColorDisabled: string;
299
+ placeholderColor: string;
300
+ placeholderColorDisabled: string;
301
+ color: string;
302
+ colorDisabled: string;
303
+ colorActive: string;
304
+ border: string;
305
+ borderHover: string;
306
+ borderActive: string;
307
+ borderFocus: string;
308
+ boxShadowHover: string;
309
+ boxShadowActive: string;
310
+ boxShadowFocus: string;
311
+ caretColor: string;
312
+ arrowColor: string;
313
+ arrowColorDisabled: string;
314
+ loadingColor: string;
315
+ borderWarning: string;
316
+ borderHoverWarning: string;
317
+ borderActiveWarning: string;
318
+ borderFocusWarning: string;
319
+ boxShadowHoverWarning: string;
320
+ boxShadowActiveWarning: string;
321
+ boxShadowFocusWarning: string;
322
+ colorActiveWarning: string;
323
+ caretColorWarning: string;
324
+ borderError: string;
325
+ borderHoverError: string;
326
+ borderActiveError: string;
327
+ borderFocusError: string;
328
+ boxShadowHoverError: string;
329
+ boxShadowActiveError: string;
330
+ boxShadowFocusError: string;
331
+ colorActiveError: string;
332
+ caretColorError: string;
333
+ clearColor: string;
334
+ clearColorHover: string;
335
+ clearColorPressed: string;
336
+ paddingSingle: string;
337
+ paddingMultiple: string;
338
+ clearSize: string;
339
+ arrowSize: string;
340
+ }, {
341
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
342
+ fontSize: string;
343
+ borderRadius: string;
344
+ color: string;
345
+ dividerColor: string;
346
+ textColor: string;
347
+ boxShadow: string;
348
+ space: string;
349
+ spaceArrow: string;
350
+ arrowOffset: string;
351
+ arrowOffsetVertical: string;
352
+ arrowHeight: string;
353
+ padding: string;
354
+ }, any>;
355
+ }>;
356
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
357
+ optionFontSizeSmall: string;
358
+ optionFontSizeMedium: string;
359
+ optionFontSizeLarge: string;
360
+ optionFontSizeHuge: string;
361
+ optionHeightSmall: string;
362
+ optionHeightMedium: string;
363
+ optionHeightLarge: string;
364
+ optionHeightHuge: string;
365
+ borderRadius: string;
366
+ color: string;
367
+ groupHeaderTextColor: string;
368
+ actionDividerColor: string;
369
+ optionTextColor: string;
370
+ optionTextColorPressed: string;
371
+ optionTextColorDisabled: string;
372
+ optionTextColorActive: string;
373
+ optionOpacityDisabled: string;
374
+ optionCheckColor: string;
375
+ optionColorPending: string;
376
+ optionColorActive: string;
377
+ optionColorActivePending: string;
378
+ actionTextColor: string;
379
+ loadingColor: string;
380
+ height: string;
381
+ paddingSmall: string;
382
+ paddingMedium: string;
383
+ paddingLarge: string;
384
+ paddingHuge: string;
385
+ optionPaddingSmall: string;
386
+ optionPaddingMedium: string;
387
+ optionPaddingLarge: string;
388
+ optionPaddingHuge: string;
389
+ loadingSize: string;
390
+ }, {
391
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
392
+ color: string;
393
+ colorHover: string;
394
+ }, any>;
395
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
396
+ fontSizeSmall: string;
397
+ fontSizeMedium: string;
398
+ fontSizeLarge: string;
399
+ fontSizeHuge: string;
400
+ textColor: string;
401
+ iconColor: string;
402
+ extraTextColor: string;
403
+ iconSizeSmall: string;
404
+ iconSizeMedium: string;
405
+ iconSizeLarge: string;
406
+ iconSizeHuge: string;
407
+ }, any>;
408
+ }>;
409
+ }>>;
410
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
411
+ menuBoxShadow: string;
412
+ }, {
413
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
414
+ fontSizeTiny: string;
415
+ fontSizeSmall: string;
416
+ fontSizeMedium: string;
417
+ fontSizeLarge: string;
418
+ heightTiny: string;
419
+ heightSmall: string;
420
+ heightMedium: string;
421
+ heightLarge: string;
422
+ borderRadius: string;
423
+ textColor: string;
424
+ textColorDisabled: string;
425
+ placeholderColor: string;
426
+ placeholderColorDisabled: string;
427
+ color: string;
428
+ colorDisabled: string;
429
+ colorActive: string;
430
+ border: string;
431
+ borderHover: string;
432
+ borderActive: string;
433
+ borderFocus: string;
434
+ boxShadowHover: string;
435
+ boxShadowActive: string;
436
+ boxShadowFocus: string;
437
+ caretColor: string;
438
+ arrowColor: string;
439
+ arrowColorDisabled: string;
440
+ loadingColor: string;
441
+ borderWarning: string;
442
+ borderHoverWarning: string;
443
+ borderActiveWarning: string;
444
+ borderFocusWarning: string;
445
+ boxShadowHoverWarning: string;
446
+ boxShadowActiveWarning: string;
447
+ boxShadowFocusWarning: string;
448
+ colorActiveWarning: string;
449
+ caretColorWarning: string;
450
+ borderError: string;
451
+ borderHoverError: string;
452
+ borderActiveError: string;
453
+ borderFocusError: string;
454
+ boxShadowHoverError: string;
455
+ boxShadowActiveError: string;
456
+ boxShadowFocusError: string;
457
+ colorActiveError: string;
458
+ caretColorError: string;
459
+ clearColor: string;
460
+ clearColorHover: string;
461
+ clearColorPressed: string;
462
+ paddingSingle: string;
463
+ paddingMultiple: string;
464
+ clearSize: string;
465
+ arrowSize: string;
466
+ }, {
467
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
468
+ fontSize: string;
469
+ borderRadius: string;
470
+ color: string;
471
+ dividerColor: string;
472
+ textColor: string;
473
+ boxShadow: string;
474
+ space: string;
475
+ spaceArrow: string;
476
+ arrowOffset: string;
477
+ arrowOffsetVertical: string;
478
+ arrowHeight: string;
479
+ padding: string;
480
+ }, any>;
481
+ }>;
482
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
483
+ optionFontSizeSmall: string;
484
+ optionFontSizeMedium: string;
485
+ optionFontSizeLarge: string;
486
+ optionFontSizeHuge: string;
487
+ optionHeightSmall: string;
488
+ optionHeightMedium: string;
489
+ optionHeightLarge: string;
490
+ optionHeightHuge: string;
491
+ borderRadius: string;
492
+ color: string;
493
+ groupHeaderTextColor: string;
494
+ actionDividerColor: string;
495
+ optionTextColor: string;
496
+ optionTextColorPressed: string;
497
+ optionTextColorDisabled: string;
498
+ optionTextColorActive: string;
499
+ optionOpacityDisabled: string;
500
+ optionCheckColor: string;
501
+ optionColorPending: string;
502
+ optionColorActive: string;
503
+ optionColorActivePending: string;
504
+ actionTextColor: string;
505
+ loadingColor: string;
506
+ height: string;
507
+ paddingSmall: string;
508
+ paddingMedium: string;
509
+ paddingLarge: string;
510
+ paddingHuge: string;
511
+ optionPaddingSmall: string;
512
+ optionPaddingMedium: string;
513
+ optionPaddingLarge: string;
514
+ optionPaddingHuge: string;
515
+ loadingSize: string;
516
+ }, {
517
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
518
+ color: string;
519
+ colorHover: string;
520
+ }, any>;
521
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
522
+ fontSizeSmall: string;
523
+ fontSizeMedium: string;
524
+ fontSizeLarge: string;
525
+ fontSizeHuge: string;
526
+ textColor: string;
527
+ iconColor: string;
528
+ extraTextColor: string;
529
+ iconSizeSmall: string;
530
+ iconSizeMedium: string;
531
+ iconSizeLarge: string;
532
+ iconSizeHuge: string;
533
+ }, any>;
534
+ }>;
535
+ }>>>;
536
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
537
+ menuBoxShadow: string;
538
+ }, {
539
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
540
+ fontSizeTiny: string;
541
+ fontSizeSmall: string;
542
+ fontSizeMedium: string;
543
+ fontSizeLarge: string;
544
+ heightTiny: string;
545
+ heightSmall: string;
546
+ heightMedium: string;
547
+ heightLarge: string;
548
+ borderRadius: string;
549
+ textColor: string;
550
+ textColorDisabled: string;
551
+ placeholderColor: string;
552
+ placeholderColorDisabled: string;
553
+ color: string;
554
+ colorDisabled: string;
555
+ colorActive: string;
556
+ border: string;
557
+ borderHover: string;
558
+ borderActive: string;
559
+ borderFocus: string;
560
+ boxShadowHover: string;
561
+ boxShadowActive: string;
562
+ boxShadowFocus: string;
563
+ caretColor: string;
564
+ arrowColor: string;
565
+ arrowColorDisabled: string;
566
+ loadingColor: string;
567
+ borderWarning: string;
568
+ borderHoverWarning: string;
569
+ borderActiveWarning: string;
570
+ borderFocusWarning: string;
571
+ boxShadowHoverWarning: string;
572
+ boxShadowActiveWarning: string;
573
+ boxShadowFocusWarning: string;
574
+ colorActiveWarning: string;
575
+ caretColorWarning: string;
576
+ borderError: string;
577
+ borderHoverError: string;
578
+ borderActiveError: string;
579
+ borderFocusError: string;
580
+ boxShadowHoverError: string;
581
+ boxShadowActiveError: string;
582
+ boxShadowFocusError: string;
583
+ colorActiveError: string;
584
+ caretColorError: string;
585
+ clearColor: string;
586
+ clearColorHover: string;
587
+ clearColorPressed: string;
588
+ paddingSingle: string;
589
+ paddingMultiple: string;
590
+ clearSize: string;
591
+ arrowSize: string;
592
+ }, {
593
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
594
+ fontSize: string;
595
+ borderRadius: string;
596
+ color: string;
597
+ dividerColor: string;
598
+ textColor: string;
599
+ boxShadow: string;
600
+ space: string;
601
+ spaceArrow: string;
602
+ arrowOffset: string;
603
+ arrowOffsetVertical: string;
604
+ arrowHeight: string;
605
+ padding: string;
606
+ }, any>;
607
+ }>;
608
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
609
+ optionFontSizeSmall: string;
610
+ optionFontSizeMedium: string;
611
+ optionFontSizeLarge: string;
612
+ optionFontSizeHuge: string;
613
+ optionHeightSmall: string;
614
+ optionHeightMedium: string;
615
+ optionHeightLarge: string;
616
+ optionHeightHuge: string;
617
+ borderRadius: string;
618
+ color: string;
619
+ groupHeaderTextColor: string;
620
+ actionDividerColor: string;
621
+ optionTextColor: string;
622
+ optionTextColorPressed: string;
623
+ optionTextColorDisabled: string;
624
+ optionTextColorActive: string;
625
+ optionOpacityDisabled: string;
626
+ optionCheckColor: string;
627
+ optionColorPending: string;
628
+ optionColorActive: string;
629
+ optionColorActivePending: string;
630
+ actionTextColor: string;
631
+ loadingColor: string;
632
+ height: string;
633
+ paddingSmall: string;
634
+ paddingMedium: string;
635
+ paddingLarge: string;
636
+ paddingHuge: string;
637
+ optionPaddingSmall: string;
638
+ optionPaddingMedium: string;
639
+ optionPaddingLarge: string;
640
+ optionPaddingHuge: string;
641
+ loadingSize: string;
642
+ }, {
643
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
644
+ color: string;
645
+ colorHover: string;
646
+ }, any>;
647
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
648
+ fontSizeSmall: string;
649
+ fontSizeMedium: string;
650
+ fontSizeLarge: string;
651
+ fontSizeHuge: string;
652
+ textColor: string;
653
+ iconColor: string;
654
+ extraTextColor: string;
655
+ iconSizeSmall: string;
656
+ iconSizeMedium: string;
657
+ iconSizeLarge: string;
658
+ iconSizeHuge: string;
659
+ }, any>;
660
+ }>;
661
+ }>>>;
662
+ }, {
663
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
664
+ mergedClsPrefix: import("vue").ComputedRef<string>;
665
+ mergedBordered: import("vue").ComputedRef<boolean>;
666
+ namespace: import("vue").ComputedRef<string | undefined>;
667
+ treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("naive-ui").SelectOption, import("naive-ui").SelectGroupOption, import("naive-ui/es/select/src/interface").SelectIgnoredOption>>;
668
+ isMounted: Readonly<import("vue").Ref<boolean>>;
669
+ triggerRef: import("vue").Ref<{
670
+ isCompositing: boolean;
671
+ focus: () => void;
672
+ focusInput: () => void;
673
+ blur: () => void;
674
+ $el: HTMLElement;
675
+ } | null>;
676
+ menuRef: import("vue").Ref<{
677
+ selfRef: HTMLElement | null;
678
+ getPendingTmNode: () => import("treemate").TreeNode<import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>, import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>, import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>> | null;
679
+ prev: () => void;
680
+ next: () => void;
681
+ } | null>;
682
+ pattern: import("vue").Ref<string>;
683
+ uncontrolledShow: import("vue").Ref<boolean>;
684
+ mergedShow: import("vue").ComputedRef<boolean>;
685
+ adjustedTo: import("vue").ComputedRef<string | HTMLElement>;
686
+ uncontrolledValue: import("vue").Ref<string[] | import("naive-ui/es/select/src/interface").ValueAtom | number[] | import("naive-ui/es/select/src/interface").ValueAtom[] | null>;
687
+ mergedValue: import("vue").ComputedRef<string[] | import("naive-ui/es/select/src/interface").ValueAtom | number[] | import("naive-ui/es/select/src/interface").ValueAtom[] | null>;
688
+ followerRef: import("vue").Ref<{
689
+ syncPosition: () => void;
690
+ } | null>;
691
+ localizedPlaceholder: import("vue").ComputedRef<string>;
692
+ selectedOption: import("vue").ComputedRef<import("naive-ui").SelectOption | null>;
693
+ selectedOptions: import("vue").ComputedRef<import("naive-ui").SelectOption[] | null>;
694
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
695
+ mergedDisabled: import("vue").ComputedRef<boolean>;
696
+ focused: import("vue").Ref<boolean>;
697
+ activeWithoutMenuOpen: import("vue").Ref<boolean>;
698
+ inlineThemeDisabled: boolean | undefined;
699
+ onTriggerInputFocus: () => void;
700
+ onTriggerInputBlur: () => void;
701
+ handleTriggerOrMenuResize: () => void;
702
+ handleMenuFocus: (e: FocusEvent) => void;
703
+ handleMenuBlur: (e: FocusEvent) => void;
704
+ handleMenuTabOut: () => void;
705
+ handleTriggerClick: () => void;
706
+ handleToggle: (tmNode: import("treemate").TreeNode<import("naive-ui").SelectOption, import("naive-ui").SelectOption, import("naive-ui").SelectOption>) => void;
707
+ handleDeleteOption: (option: import("naive-ui").SelectOption) => void;
708
+ handlePatternInput: (e: InputEvent) => void;
709
+ handleClear: (e: MouseEvent) => void;
710
+ handleTriggerBlur: (e: FocusEvent) => void;
711
+ handleTriggerFocus: (e: FocusEvent) => void;
712
+ handleKeydown: (e: KeyboardEvent) => void;
713
+ handleMenuAfterLeave: () => void;
714
+ handleMenuClickOutside: (e: MouseEvent) => void;
715
+ handleMenuScroll: (e: Event) => void;
716
+ handleMenuKeydown: (e: KeyboardEvent) => void;
717
+ handleMenuMousedown: (e: MouseEvent) => void;
718
+ mergedTheme: import("vue").ComputedRef<{
719
+ common: {
720
+ baseColor: string;
721
+ primaryColor: string;
722
+ primaryColorHover: string;
723
+ primaryColorPressed: string;
724
+ primaryColorSuppl: string;
725
+ infoColor: string;
726
+ infoColorHover: string;
727
+ infoColorPressed: string;
728
+ infoColorSuppl: string;
729
+ successColor: string;
730
+ successColorHover: string;
731
+ successColorPressed: string;
732
+ successColorSuppl: string;
733
+ warningColor: string;
734
+ warningColorHover: string;
735
+ warningColorPressed: string;
736
+ warningColorSuppl: string;
737
+ errorColor: string;
738
+ errorColorHover: string;
739
+ errorColorPressed: string;
740
+ errorColorSuppl: string;
741
+ textColorBase: string;
742
+ textColor1: string;
743
+ textColor2: string;
744
+ textColor3: string;
745
+ textColorDisabled: string;
746
+ placeholderColor: string;
747
+ placeholderColorDisabled: string;
748
+ iconColor: string;
749
+ iconColorHover: string;
750
+ iconColorPressed: string;
751
+ iconColorDisabled: string;
752
+ opacity1: string;
753
+ opacity2: string;
754
+ opacity3: string;
755
+ opacity4: string;
756
+ opacity5: string;
757
+ dividerColor: string;
758
+ borderColor: string;
759
+ closeIconColor: string;
760
+ closeIconColorHover: string;
761
+ closeIconColorPressed: string;
762
+ closeColorHover: string;
763
+ closeColorPressed: string;
764
+ clearColor: string;
765
+ clearColorHover: string;
766
+ clearColorPressed: string;
767
+ scrollbarColor: string;
768
+ scrollbarColorHover: string;
769
+ scrollbarWidth: string;
770
+ scrollbarHeight: string;
771
+ scrollbarBorderRadius: string;
772
+ progressRailColor: string;
773
+ railColor: string;
774
+ popoverColor: string;
775
+ tableColor: string;
776
+ cardColor: string;
777
+ modalColor: string;
778
+ bodyColor: string;
779
+ tagColor: string;
780
+ avatarColor: string;
781
+ invertedColor: string;
782
+ inputColor: string;
783
+ codeColor: string;
784
+ tabColor: string;
785
+ actionColor: string;
786
+ tableHeaderColor: string;
787
+ hoverColor: string;
788
+ tableColorHover: string;
789
+ tableColorStriped: string;
790
+ pressedColor: string;
791
+ opacityDisabled: string;
792
+ inputColorDisabled: string;
793
+ buttonColor2: string;
794
+ buttonColor2Hover: string;
795
+ buttonColor2Pressed: string;
796
+ boxShadow1: string;
797
+ boxShadow2: string;
798
+ boxShadow3: string;
799
+ fontFamily: string;
800
+ fontFamilyMono: string;
801
+ fontWeight: string;
802
+ fontWeightStrong: string;
803
+ cubicBezierEaseInOut: string;
804
+ cubicBezierEaseOut: string;
805
+ cubicBezierEaseIn: string;
806
+ borderRadius: string;
807
+ borderRadiusSmall: string;
808
+ fontSize: string;
809
+ fontSizeMini: string;
810
+ fontSizeTiny: string;
811
+ fontSizeSmall: string;
812
+ fontSizeMedium: string;
813
+ fontSizeLarge: string;
814
+ fontSizeHuge: string;
815
+ lineHeight: string;
816
+ heightMini: string;
817
+ heightTiny: string;
818
+ heightSmall: string;
819
+ heightMedium: string;
820
+ heightLarge: string;
821
+ heightHuge: string;
822
+ name: "common";
823
+ };
824
+ self: {
825
+ menuBoxShadow: string;
826
+ };
827
+ peers: {
828
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
829
+ fontSizeTiny: string;
830
+ fontSizeSmall: string;
831
+ fontSizeMedium: string;
832
+ fontSizeLarge: string;
833
+ heightTiny: string;
834
+ heightSmall: string;
835
+ heightMedium: string;
836
+ heightLarge: string;
837
+ borderRadius: string;
838
+ textColor: string;
839
+ textColorDisabled: string;
840
+ placeholderColor: string;
841
+ placeholderColorDisabled: string;
842
+ color: string;
843
+ colorDisabled: string;
844
+ colorActive: string;
845
+ border: string;
846
+ borderHover: string;
847
+ borderActive: string;
848
+ borderFocus: string;
849
+ boxShadowHover: string;
850
+ boxShadowActive: string;
851
+ boxShadowFocus: string;
852
+ caretColor: string;
853
+ arrowColor: string;
854
+ arrowColorDisabled: string;
855
+ loadingColor: string;
856
+ borderWarning: string;
857
+ borderHoverWarning: string;
858
+ borderActiveWarning: string;
859
+ borderFocusWarning: string;
860
+ boxShadowHoverWarning: string;
861
+ boxShadowActiveWarning: string;
862
+ boxShadowFocusWarning: string;
863
+ colorActiveWarning: string;
864
+ caretColorWarning: string;
865
+ borderError: string;
866
+ borderHoverError: string;
867
+ borderActiveError: string;
868
+ borderFocusError: string;
869
+ boxShadowHoverError: string;
870
+ boxShadowActiveError: string;
871
+ boxShadowFocusError: string;
872
+ colorActiveError: string;
873
+ caretColorError: string;
874
+ clearColor: string;
875
+ clearColorHover: string;
876
+ clearColorPressed: string;
877
+ paddingSingle: string;
878
+ paddingMultiple: string;
879
+ clearSize: string;
880
+ arrowSize: string;
881
+ }, {
882
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
883
+ fontSize: string;
884
+ borderRadius: string;
885
+ color: string;
886
+ dividerColor: string;
887
+ textColor: string;
888
+ boxShadow: string;
889
+ space: string;
890
+ spaceArrow: string;
891
+ arrowOffset: string;
892
+ arrowOffsetVertical: string;
893
+ arrowHeight: string;
894
+ padding: string;
895
+ }, any>;
896
+ }>;
897
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
898
+ optionFontSizeSmall: string;
899
+ optionFontSizeMedium: string;
900
+ optionFontSizeLarge: string;
901
+ optionFontSizeHuge: string;
902
+ optionHeightSmall: string;
903
+ optionHeightMedium: string;
904
+ optionHeightLarge: string;
905
+ optionHeightHuge: string;
906
+ borderRadius: string;
907
+ color: string;
908
+ groupHeaderTextColor: string;
909
+ actionDividerColor: string;
910
+ optionTextColor: string;
911
+ optionTextColorPressed: string;
912
+ optionTextColorDisabled: string;
913
+ optionTextColorActive: string;
914
+ optionOpacityDisabled: string;
915
+ optionCheckColor: string;
916
+ optionColorPending: string;
917
+ optionColorActive: string;
918
+ optionColorActivePending: string;
919
+ actionTextColor: string;
920
+ loadingColor: string;
921
+ height: string;
922
+ paddingSmall: string;
923
+ paddingMedium: string;
924
+ paddingLarge: string;
925
+ paddingHuge: string;
926
+ optionPaddingSmall: string;
927
+ optionPaddingMedium: string;
928
+ optionPaddingLarge: string;
929
+ optionPaddingHuge: string;
930
+ loadingSize: string;
931
+ }, {
932
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
933
+ color: string;
934
+ colorHover: string;
935
+ }, any>;
936
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
937
+ fontSizeSmall: string;
938
+ fontSizeMedium: string;
939
+ fontSizeLarge: string;
940
+ fontSizeHuge: string;
941
+ textColor: string;
942
+ iconColor: string;
943
+ extraTextColor: string;
944
+ iconSizeSmall: string;
945
+ iconSizeMedium: string;
946
+ iconSizeLarge: string;
947
+ iconSizeHuge: string;
948
+ }, any>;
949
+ }>;
950
+ };
951
+ peerOverrides: {
952
+ InternalSelection?: {
953
+ peers?: {
954
+ Popover?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
955
+ fontSize: string;
956
+ borderRadius: string;
957
+ color: string;
958
+ dividerColor: string;
959
+ textColor: string;
960
+ boxShadow: string;
961
+ space: string;
962
+ spaceArrow: string;
963
+ arrowOffset: string;
964
+ arrowOffsetVertical: string;
965
+ arrowHeight: string;
966
+ padding: string;
967
+ }, any>> | undefined;
968
+ } | undefined;
969
+ } | undefined;
970
+ InternalSelectMenu?: {
971
+ peers?: {
972
+ Scrollbar?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Scrollbar", {
973
+ color: string;
974
+ colorHover: string;
975
+ }, any>> | undefined;
976
+ Empty?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Empty", {
977
+ fontSizeSmall: string;
978
+ fontSizeMedium: string;
979
+ fontSizeLarge: string;
980
+ fontSizeHuge: string;
981
+ textColor: string;
982
+ iconColor: string;
983
+ extraTextColor: string;
984
+ iconSizeSmall: string;
985
+ iconSizeMedium: string;
986
+ iconSizeLarge: string;
987
+ iconSizeHuge: string;
988
+ }, any>> | undefined;
989
+ } | undefined;
990
+ } | undefined;
991
+ };
992
+ }>;
993
+ cssVars: import("vue").ComputedRef<{
994
+ '--n-menu-box-shadow': string;
995
+ }> | undefined;
996
+ themeClass: import("vue").Ref<string> | undefined;
997
+ onRender: (() => void) | undefined;
998
+ focus: () => void;
999
+ blur: () => void;
1000
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1001
+ readonly to: {
1002
+ type: PropType<string | boolean | HTMLElement>;
1003
+ default: undefined;
1004
+ };
1005
+ readonly bordered: {
1006
+ readonly type: PropType<boolean | undefined>;
1007
+ readonly default: undefined;
1008
+ };
1009
+ readonly clearable: BooleanConstructor;
1010
+ readonly clearFilterAfterSelect: {
1011
+ readonly type: BooleanConstructor;
1012
+ readonly default: true;
1013
+ };
1014
+ readonly options: {
1015
+ readonly type: PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
1016
+ readonly default: () => never[];
1017
+ };
1018
+ readonly defaultValue: {
1019
+ readonly type: PropType<import("naive-ui/es/select/src/interface").Value | null>;
1020
+ readonly default: null;
1021
+ };
1022
+ readonly value: PropType<import("naive-ui/es/select/src/interface").Value | null>;
1023
+ readonly placeholder: StringConstructor;
1024
+ readonly menuProps: PropType<import("vue").HTMLAttributes>;
1025
+ readonly multiple: BooleanConstructor;
1026
+ readonly size: PropType<import("naive-ui/es/select/src/interface").Size>;
1027
+ readonly filterable: BooleanConstructor;
1028
+ readonly disabled: {
1029
+ readonly type: PropType<boolean | undefined>;
1030
+ readonly default: undefined;
1031
+ };
1032
+ readonly remote: BooleanConstructor;
1033
+ readonly loading: BooleanConstructor;
1034
+ readonly filter: PropType<import("naive-ui").SelectFilter>;
1035
+ readonly placement: {
1036
+ readonly type: PropType<import("naive-ui").PopoverPlacement>;
1037
+ readonly default: "bottom-start";
1038
+ };
1039
+ readonly widthMode: {
1040
+ readonly type: StringConstructor;
1041
+ readonly default: "trigger";
1042
+ };
1043
+ readonly tag: BooleanConstructor;
1044
+ readonly onCreate: PropType<(label: string) => import("naive-ui").SelectOption>;
1045
+ readonly fallbackOption: {
1046
+ readonly type: PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
1047
+ readonly default: undefined;
1048
+ };
1049
+ readonly show: {
1050
+ readonly type: PropType<boolean | undefined>;
1051
+ readonly default: undefined;
1052
+ };
1053
+ readonly showArrow: {
1054
+ readonly type: BooleanConstructor;
1055
+ readonly default: true;
1056
+ };
1057
+ readonly maxTagCount: PropType<number | "responsive">;
1058
+ readonly consistentMenuWidth: {
1059
+ readonly type: BooleanConstructor;
1060
+ readonly default: true;
1061
+ };
1062
+ readonly virtualScroll: {
1063
+ readonly type: BooleanConstructor;
1064
+ readonly default: true;
1065
+ };
1066
+ readonly labelField: {
1067
+ readonly type: StringConstructor;
1068
+ readonly default: "label";
1069
+ };
1070
+ readonly valueField: {
1071
+ readonly type: StringConstructor;
1072
+ readonly default: "value";
1073
+ };
1074
+ readonly childrenField: {
1075
+ readonly type: StringConstructor;
1076
+ readonly default: "children";
1077
+ };
1078
+ readonly renderLabel: PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
1079
+ readonly renderOption: PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
1080
+ readonly renderTag: PropType<import("naive-ui").SelectRenderTag>;
1081
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
1082
+ readonly inputProps: PropType<import("vue").InputHTMLAttributes>;
1083
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
1084
+ readonly onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
1085
+ readonly onClear: PropType<import("naive-ui/es/_utils").MaybeArray<() => void> | undefined>;
1086
+ readonly onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
1087
+ readonly onScroll: PropType<import("naive-ui/es/_utils").MaybeArray<(e: Event) => void> | undefined>;
1088
+ readonly onSearch: PropType<import("naive-ui/es/_utils").MaybeArray<(value: string) => void> | undefined>;
1089
+ readonly onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1090
+ readonly 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1091
+ readonly displayDirective: {
1092
+ readonly type: PropType<"show" | "if">;
1093
+ readonly default: "show";
1094
+ };
1095
+ readonly resetMenuOnOptionsChange: {
1096
+ readonly type: BooleanConstructor;
1097
+ readonly default: true;
1098
+ };
1099
+ readonly status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1100
+ readonly internalShowCheckmark: {
1101
+ readonly type: BooleanConstructor;
1102
+ readonly default: true;
1103
+ };
1104
+ readonly onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
1105
+ readonly items: PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
1106
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Select", {
1107
+ menuBoxShadow: string;
1108
+ }, {
1109
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
1110
+ fontSizeTiny: string;
1111
+ fontSizeSmall: string;
1112
+ fontSizeMedium: string;
1113
+ fontSizeLarge: string;
1114
+ heightTiny: string;
1115
+ heightSmall: string;
1116
+ heightMedium: string;
1117
+ heightLarge: string;
1118
+ borderRadius: string;
1119
+ textColor: string;
1120
+ textColorDisabled: string;
1121
+ placeholderColor: string;
1122
+ placeholderColorDisabled: string;
1123
+ color: string;
1124
+ colorDisabled: string;
1125
+ colorActive: string;
1126
+ border: string;
1127
+ borderHover: string;
1128
+ borderActive: string;
1129
+ borderFocus: string;
1130
+ boxShadowHover: string;
1131
+ boxShadowActive: string;
1132
+ boxShadowFocus: string;
1133
+ caretColor: string;
1134
+ arrowColor: string;
1135
+ arrowColorDisabled: string;
1136
+ loadingColor: string;
1137
+ borderWarning: string;
1138
+ borderHoverWarning: string;
1139
+ borderActiveWarning: string;
1140
+ borderFocusWarning: string;
1141
+ boxShadowHoverWarning: string;
1142
+ boxShadowActiveWarning: string;
1143
+ boxShadowFocusWarning: string;
1144
+ colorActiveWarning: string;
1145
+ caretColorWarning: string;
1146
+ borderError: string;
1147
+ borderHoverError: string;
1148
+ borderActiveError: string;
1149
+ borderFocusError: string;
1150
+ boxShadowHoverError: string;
1151
+ boxShadowActiveError: string;
1152
+ boxShadowFocusError: string;
1153
+ colorActiveError: string;
1154
+ caretColorError: string;
1155
+ clearColor: string;
1156
+ clearColorHover: string;
1157
+ clearColorPressed: string;
1158
+ paddingSingle: string;
1159
+ paddingMultiple: string;
1160
+ clearSize: string;
1161
+ arrowSize: string;
1162
+ }, {
1163
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1164
+ fontSize: string;
1165
+ borderRadius: string;
1166
+ color: string;
1167
+ dividerColor: string;
1168
+ textColor: string;
1169
+ boxShadow: string;
1170
+ space: string;
1171
+ spaceArrow: string;
1172
+ arrowOffset: string;
1173
+ arrowOffsetVertical: string;
1174
+ arrowHeight: string;
1175
+ padding: string;
1176
+ }, any>;
1177
+ }>;
1178
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
1179
+ optionFontSizeSmall: string;
1180
+ optionFontSizeMedium: string;
1181
+ optionFontSizeLarge: string;
1182
+ optionFontSizeHuge: string;
1183
+ optionHeightSmall: string;
1184
+ optionHeightMedium: string;
1185
+ optionHeightLarge: string;
1186
+ optionHeightHuge: string;
1187
+ borderRadius: string;
1188
+ color: string;
1189
+ groupHeaderTextColor: string;
1190
+ actionDividerColor: string;
1191
+ optionTextColor: string;
1192
+ optionTextColorPressed: string;
1193
+ optionTextColorDisabled: string;
1194
+ optionTextColorActive: string;
1195
+ optionOpacityDisabled: string;
1196
+ optionCheckColor: string;
1197
+ optionColorPending: string;
1198
+ optionColorActive: string;
1199
+ optionColorActivePending: string;
1200
+ actionTextColor: string;
1201
+ loadingColor: string;
1202
+ height: string;
1203
+ paddingSmall: string;
1204
+ paddingMedium: string;
1205
+ paddingLarge: string;
1206
+ paddingHuge: string;
1207
+ optionPaddingSmall: string;
1208
+ optionPaddingMedium: string;
1209
+ optionPaddingLarge: string;
1210
+ optionPaddingHuge: string;
1211
+ loadingSize: string;
1212
+ }, {
1213
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1214
+ color: string;
1215
+ colorHover: string;
1216
+ }, any>;
1217
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
1218
+ fontSizeSmall: string;
1219
+ fontSizeMedium: string;
1220
+ fontSizeLarge: string;
1221
+ fontSizeHuge: string;
1222
+ textColor: string;
1223
+ iconColor: string;
1224
+ extraTextColor: string;
1225
+ iconSizeSmall: string;
1226
+ iconSizeMedium: string;
1227
+ iconSizeLarge: string;
1228
+ iconSizeHuge: string;
1229
+ }, any>;
1230
+ }>;
1231
+ }>>;
1232
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
1233
+ menuBoxShadow: string;
1234
+ }, {
1235
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
1236
+ fontSizeTiny: string;
1237
+ fontSizeSmall: string;
1238
+ fontSizeMedium: string;
1239
+ fontSizeLarge: string;
1240
+ heightTiny: string;
1241
+ heightSmall: string;
1242
+ heightMedium: string;
1243
+ heightLarge: string;
1244
+ borderRadius: string;
1245
+ textColor: string;
1246
+ textColorDisabled: string;
1247
+ placeholderColor: string;
1248
+ placeholderColorDisabled: string;
1249
+ color: string;
1250
+ colorDisabled: string;
1251
+ colorActive: string;
1252
+ border: string;
1253
+ borderHover: string;
1254
+ borderActive: string;
1255
+ borderFocus: string;
1256
+ boxShadowHover: string;
1257
+ boxShadowActive: string;
1258
+ boxShadowFocus: string;
1259
+ caretColor: string;
1260
+ arrowColor: string;
1261
+ arrowColorDisabled: string;
1262
+ loadingColor: string;
1263
+ borderWarning: string;
1264
+ borderHoverWarning: string;
1265
+ borderActiveWarning: string;
1266
+ borderFocusWarning: string;
1267
+ boxShadowHoverWarning: string;
1268
+ boxShadowActiveWarning: string;
1269
+ boxShadowFocusWarning: string;
1270
+ colorActiveWarning: string;
1271
+ caretColorWarning: string;
1272
+ borderError: string;
1273
+ borderHoverError: string;
1274
+ borderActiveError: string;
1275
+ borderFocusError: string;
1276
+ boxShadowHoverError: string;
1277
+ boxShadowActiveError: string;
1278
+ boxShadowFocusError: string;
1279
+ colorActiveError: string;
1280
+ caretColorError: string;
1281
+ clearColor: string;
1282
+ clearColorHover: string;
1283
+ clearColorPressed: string;
1284
+ paddingSingle: string;
1285
+ paddingMultiple: string;
1286
+ clearSize: string;
1287
+ arrowSize: string;
1288
+ }, {
1289
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1290
+ fontSize: string;
1291
+ borderRadius: string;
1292
+ color: string;
1293
+ dividerColor: string;
1294
+ textColor: string;
1295
+ boxShadow: string;
1296
+ space: string;
1297
+ spaceArrow: string;
1298
+ arrowOffset: string;
1299
+ arrowOffsetVertical: string;
1300
+ arrowHeight: string;
1301
+ padding: string;
1302
+ }, any>;
1303
+ }>;
1304
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
1305
+ optionFontSizeSmall: string;
1306
+ optionFontSizeMedium: string;
1307
+ optionFontSizeLarge: string;
1308
+ optionFontSizeHuge: string;
1309
+ optionHeightSmall: string;
1310
+ optionHeightMedium: string;
1311
+ optionHeightLarge: string;
1312
+ optionHeightHuge: string;
1313
+ borderRadius: string;
1314
+ color: string;
1315
+ groupHeaderTextColor: string;
1316
+ actionDividerColor: string;
1317
+ optionTextColor: string;
1318
+ optionTextColorPressed: string;
1319
+ optionTextColorDisabled: string;
1320
+ optionTextColorActive: string;
1321
+ optionOpacityDisabled: string;
1322
+ optionCheckColor: string;
1323
+ optionColorPending: string;
1324
+ optionColorActive: string;
1325
+ optionColorActivePending: string;
1326
+ actionTextColor: string;
1327
+ loadingColor: string;
1328
+ height: string;
1329
+ paddingSmall: string;
1330
+ paddingMedium: string;
1331
+ paddingLarge: string;
1332
+ paddingHuge: string;
1333
+ optionPaddingSmall: string;
1334
+ optionPaddingMedium: string;
1335
+ optionPaddingLarge: string;
1336
+ optionPaddingHuge: string;
1337
+ loadingSize: string;
1338
+ }, {
1339
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1340
+ color: string;
1341
+ colorHover: string;
1342
+ }, any>;
1343
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
1344
+ fontSizeSmall: string;
1345
+ fontSizeMedium: string;
1346
+ fontSizeLarge: string;
1347
+ fontSizeHuge: string;
1348
+ textColor: string;
1349
+ iconColor: string;
1350
+ extraTextColor: string;
1351
+ iconSizeSmall: string;
1352
+ iconSizeMedium: string;
1353
+ iconSizeLarge: string;
1354
+ iconSizeHuge: string;
1355
+ }, any>;
1356
+ }>;
1357
+ }>>>;
1358
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
1359
+ menuBoxShadow: string;
1360
+ }, {
1361
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
1362
+ fontSizeTiny: string;
1363
+ fontSizeSmall: string;
1364
+ fontSizeMedium: string;
1365
+ fontSizeLarge: string;
1366
+ heightTiny: string;
1367
+ heightSmall: string;
1368
+ heightMedium: string;
1369
+ heightLarge: string;
1370
+ borderRadius: string;
1371
+ textColor: string;
1372
+ textColorDisabled: string;
1373
+ placeholderColor: string;
1374
+ placeholderColorDisabled: string;
1375
+ color: string;
1376
+ colorDisabled: string;
1377
+ colorActive: string;
1378
+ border: string;
1379
+ borderHover: string;
1380
+ borderActive: string;
1381
+ borderFocus: string;
1382
+ boxShadowHover: string;
1383
+ boxShadowActive: string;
1384
+ boxShadowFocus: string;
1385
+ caretColor: string;
1386
+ arrowColor: string;
1387
+ arrowColorDisabled: string;
1388
+ loadingColor: string;
1389
+ borderWarning: string;
1390
+ borderHoverWarning: string;
1391
+ borderActiveWarning: string;
1392
+ borderFocusWarning: string;
1393
+ boxShadowHoverWarning: string;
1394
+ boxShadowActiveWarning: string;
1395
+ boxShadowFocusWarning: string;
1396
+ colorActiveWarning: string;
1397
+ caretColorWarning: string;
1398
+ borderError: string;
1399
+ borderHoverError: string;
1400
+ borderActiveError: string;
1401
+ borderFocusError: string;
1402
+ boxShadowHoverError: string;
1403
+ boxShadowActiveError: string;
1404
+ boxShadowFocusError: string;
1405
+ colorActiveError: string;
1406
+ caretColorError: string;
1407
+ clearColor: string;
1408
+ clearColorHover: string;
1409
+ clearColorPressed: string;
1410
+ paddingSingle: string;
1411
+ paddingMultiple: string;
1412
+ clearSize: string;
1413
+ arrowSize: string;
1414
+ }, {
1415
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1416
+ fontSize: string;
1417
+ borderRadius: string;
1418
+ color: string;
1419
+ dividerColor: string;
1420
+ textColor: string;
1421
+ boxShadow: string;
1422
+ space: string;
1423
+ spaceArrow: string;
1424
+ arrowOffset: string;
1425
+ arrowOffsetVertical: string;
1426
+ arrowHeight: string;
1427
+ padding: string;
1428
+ }, any>;
1429
+ }>;
1430
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
1431
+ optionFontSizeSmall: string;
1432
+ optionFontSizeMedium: string;
1433
+ optionFontSizeLarge: string;
1434
+ optionFontSizeHuge: string;
1435
+ optionHeightSmall: string;
1436
+ optionHeightMedium: string;
1437
+ optionHeightLarge: string;
1438
+ optionHeightHuge: string;
1439
+ borderRadius: string;
1440
+ color: string;
1441
+ groupHeaderTextColor: string;
1442
+ actionDividerColor: string;
1443
+ optionTextColor: string;
1444
+ optionTextColorPressed: string;
1445
+ optionTextColorDisabled: string;
1446
+ optionTextColorActive: string;
1447
+ optionOpacityDisabled: string;
1448
+ optionCheckColor: string;
1449
+ optionColorPending: string;
1450
+ optionColorActive: string;
1451
+ optionColorActivePending: string;
1452
+ actionTextColor: string;
1453
+ loadingColor: string;
1454
+ height: string;
1455
+ paddingSmall: string;
1456
+ paddingMedium: string;
1457
+ paddingLarge: string;
1458
+ paddingHuge: string;
1459
+ optionPaddingSmall: string;
1460
+ optionPaddingMedium: string;
1461
+ optionPaddingLarge: string;
1462
+ optionPaddingHuge: string;
1463
+ loadingSize: string;
1464
+ }, {
1465
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1466
+ color: string;
1467
+ colorHover: string;
1468
+ }, any>;
1469
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
1470
+ fontSizeSmall: string;
1471
+ fontSizeMedium: string;
1472
+ fontSizeLarge: string;
1473
+ fontSizeHuge: string;
1474
+ textColor: string;
1475
+ iconColor: string;
1476
+ extraTextColor: string;
1477
+ iconSizeSmall: string;
1478
+ iconSizeMedium: string;
1479
+ iconSizeLarge: string;
1480
+ iconSizeHuge: string;
1481
+ }, any>;
1482
+ }>;
1483
+ }>>>;
1484
+ }>>, {
1485
+ readonly tag: boolean;
1486
+ readonly show: boolean | undefined;
1487
+ readonly multiple: boolean;
1488
+ readonly disabled: boolean | undefined;
1489
+ readonly to: string | boolean | HTMLElement;
1490
+ readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
1491
+ readonly loading: boolean;
1492
+ readonly bordered: boolean | undefined;
1493
+ readonly placement: import("naive-ui").PopoverPlacement;
1494
+ readonly labelField: string;
1495
+ readonly virtualScroll: boolean;
1496
+ readonly valueField: string;
1497
+ readonly resetMenuOnOptionsChange: boolean;
1498
+ readonly showArrow: boolean;
1499
+ readonly displayDirective: "show" | "if";
1500
+ readonly filterable: boolean;
1501
+ readonly clearable: boolean;
1502
+ readonly internalShowCheckmark: boolean;
1503
+ readonly clearFilterAfterSelect: boolean;
1504
+ readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
1505
+ readonly remote: boolean;
1506
+ readonly widthMode: string;
1507
+ readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
1508
+ readonly consistentMenuWidth: boolean;
1509
+ readonly childrenField: string;
1510
+ }>;
1511
+ NInputNumber: import("vue").DefineComponent<{
1512
+ autofocus: BooleanConstructor;
1513
+ loading: {
1514
+ type: BooleanConstructor;
1515
+ default: undefined;
1516
+ };
1517
+ placeholder: StringConstructor;
1518
+ defaultValue: {
1519
+ type: PropType<number | null>;
1520
+ default: null;
1521
+ };
1522
+ value: PropType<number | null>;
1523
+ step: {
1524
+ type: (NumberConstructor | StringConstructor)[];
1525
+ default: number;
1526
+ };
1527
+ min: (NumberConstructor | StringConstructor)[];
1528
+ max: (NumberConstructor | StringConstructor)[];
1529
+ size: PropType<"small" | "medium" | "large">;
1530
+ disabled: {
1531
+ type: PropType<boolean | undefined>;
1532
+ default: undefined;
1533
+ };
1534
+ validator: PropType<(value: number) => boolean>;
1535
+ bordered: {
1536
+ type: PropType<boolean | undefined>;
1537
+ default: undefined;
1538
+ };
1539
+ showButton: {
1540
+ type: BooleanConstructor;
1541
+ default: boolean;
1542
+ };
1543
+ buttonPlacement: {
1544
+ type: PropType<"right" | "both">;
1545
+ default: string;
1546
+ };
1547
+ readonly: BooleanConstructor;
1548
+ clearable: BooleanConstructor;
1549
+ keyboard: {
1550
+ type: PropType<{
1551
+ ArrowUp?: boolean | undefined;
1552
+ ArrowDown?: boolean | undefined;
1553
+ }>;
1554
+ default: {};
1555
+ };
1556
+ updateValueOnInput: {
1557
+ type: BooleanConstructor;
1558
+ default: boolean;
1559
+ };
1560
+ parse: PropType<(input: string) => number | null>;
1561
+ format: PropType<(value: number | null) => string>;
1562
+ precision: NumberConstructor;
1563
+ status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1564
+ 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1565
+ onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1566
+ onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1567
+ onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1568
+ onClear: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1569
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
1570
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
1571
+ iconColorDisabled: string;
1572
+ }, {
1573
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
1574
+ heightTiny: string;
1575
+ heightSmall: string;
1576
+ heightMedium: string;
1577
+ heightLarge: string;
1578
+ borderRadiusTiny: string;
1579
+ borderRadiusSmall: string;
1580
+ borderRadiusMedium: string;
1581
+ borderRadiusLarge: string;
1582
+ fontSizeTiny: string;
1583
+ fontSizeSmall: string;
1584
+ fontSizeMedium: string;
1585
+ fontSizeLarge: string;
1586
+ opacityDisabled: string;
1587
+ colorOpacitySecondary: string;
1588
+ colorOpacitySecondaryHover: string;
1589
+ colorOpacitySecondaryPressed: string;
1590
+ colorSecondary: string;
1591
+ colorSecondaryHover: string;
1592
+ colorSecondaryPressed: string;
1593
+ colorTertiary: string;
1594
+ colorTertiaryHover: string;
1595
+ colorTertiaryPressed: string;
1596
+ colorQuaternary: string;
1597
+ colorQuaternaryHover: string;
1598
+ colorQuaternaryPressed: string;
1599
+ color: string;
1600
+ colorHover: string;
1601
+ colorPressed: string;
1602
+ colorFocus: string;
1603
+ colorDisabled: string;
1604
+ textColor: string;
1605
+ textColorTertiary: string;
1606
+ textColorHover: string;
1607
+ textColorPressed: string;
1608
+ textColorFocus: string;
1609
+ textColorDisabled: string;
1610
+ textColorText: string;
1611
+ textColorTextHover: string;
1612
+ textColorTextPressed: string;
1613
+ textColorTextFocus: string;
1614
+ textColorTextDisabled: string;
1615
+ textColorGhost: string;
1616
+ textColorGhostHover: string;
1617
+ textColorGhostPressed: string;
1618
+ textColorGhostFocus: string;
1619
+ textColorGhostDisabled: string;
1620
+ border: string;
1621
+ borderHover: string;
1622
+ borderPressed: string;
1623
+ borderFocus: string;
1624
+ borderDisabled: string;
1625
+ rippleColor: string;
1626
+ colorPrimary: string;
1627
+ colorHoverPrimary: string;
1628
+ colorPressedPrimary: string;
1629
+ colorFocusPrimary: string;
1630
+ colorDisabledPrimary: string;
1631
+ textColorPrimary: string;
1632
+ textColorHoverPrimary: string;
1633
+ textColorPressedPrimary: string;
1634
+ textColorFocusPrimary: string;
1635
+ textColorDisabledPrimary: string;
1636
+ textColorTextPrimary: string;
1637
+ textColorTextHoverPrimary: string;
1638
+ textColorTextPressedPrimary: string;
1639
+ textColorTextFocusPrimary: string;
1640
+ textColorTextDisabledPrimary: string;
1641
+ textColorGhostPrimary: string;
1642
+ textColorGhostHoverPrimary: string;
1643
+ textColorGhostPressedPrimary: string;
1644
+ textColorGhostFocusPrimary: string;
1645
+ textColorGhostDisabledPrimary: string;
1646
+ borderPrimary: string;
1647
+ borderHoverPrimary: string;
1648
+ borderPressedPrimary: string;
1649
+ borderFocusPrimary: string;
1650
+ borderDisabledPrimary: string;
1651
+ rippleColorPrimary: string;
1652
+ colorInfo: string;
1653
+ colorHoverInfo: string;
1654
+ colorPressedInfo: string;
1655
+ colorFocusInfo: string;
1656
+ colorDisabledInfo: string;
1657
+ textColorInfo: string;
1658
+ textColorHoverInfo: string;
1659
+ textColorPressedInfo: string;
1660
+ textColorFocusInfo: string;
1661
+ textColorDisabledInfo: string;
1662
+ textColorTextInfo: string;
1663
+ textColorTextHoverInfo: string;
1664
+ textColorTextPressedInfo: string;
1665
+ textColorTextFocusInfo: string;
1666
+ textColorTextDisabledInfo: string;
1667
+ textColorGhostInfo: string;
1668
+ textColorGhostHoverInfo: string;
1669
+ textColorGhostPressedInfo: string;
1670
+ textColorGhostFocusInfo: string;
1671
+ textColorGhostDisabledInfo: string;
1672
+ borderInfo: string;
1673
+ borderHoverInfo: string;
1674
+ borderPressedInfo: string;
1675
+ borderFocusInfo: string;
1676
+ borderDisabledInfo: string;
1677
+ rippleColorInfo: string;
1678
+ colorSuccess: string;
1679
+ colorHoverSuccess: string;
1680
+ colorPressedSuccess: string;
1681
+ colorFocusSuccess: string;
1682
+ colorDisabledSuccess: string;
1683
+ textColorSuccess: string;
1684
+ textColorHoverSuccess: string;
1685
+ textColorPressedSuccess: string;
1686
+ textColorFocusSuccess: string;
1687
+ textColorDisabledSuccess: string;
1688
+ textColorTextSuccess: string;
1689
+ textColorTextHoverSuccess: string;
1690
+ textColorTextPressedSuccess: string;
1691
+ textColorTextFocusSuccess: string;
1692
+ textColorTextDisabledSuccess: string;
1693
+ textColorGhostSuccess: string;
1694
+ textColorGhostHoverSuccess: string;
1695
+ textColorGhostPressedSuccess: string;
1696
+ textColorGhostFocusSuccess: string;
1697
+ textColorGhostDisabledSuccess: string;
1698
+ borderSuccess: string;
1699
+ borderHoverSuccess: string;
1700
+ borderPressedSuccess: string;
1701
+ borderFocusSuccess: string;
1702
+ borderDisabledSuccess: string;
1703
+ rippleColorSuccess: string;
1704
+ colorWarning: string;
1705
+ colorHoverWarning: string;
1706
+ colorPressedWarning: string;
1707
+ colorFocusWarning: string;
1708
+ colorDisabledWarning: string;
1709
+ textColorWarning: string;
1710
+ textColorHoverWarning: string;
1711
+ textColorPressedWarning: string;
1712
+ textColorFocusWarning: string;
1713
+ textColorDisabledWarning: string;
1714
+ textColorTextWarning: string;
1715
+ textColorTextHoverWarning: string;
1716
+ textColorTextPressedWarning: string;
1717
+ textColorTextFocusWarning: string;
1718
+ textColorTextDisabledWarning: string;
1719
+ textColorGhostWarning: string;
1720
+ textColorGhostHoverWarning: string;
1721
+ textColorGhostPressedWarning: string;
1722
+ textColorGhostFocusWarning: string;
1723
+ textColorGhostDisabledWarning: string;
1724
+ borderWarning: string;
1725
+ borderHoverWarning: string;
1726
+ borderPressedWarning: string;
1727
+ borderFocusWarning: string;
1728
+ borderDisabledWarning: string;
1729
+ rippleColorWarning: string;
1730
+ colorError: string;
1731
+ colorHoverError: string;
1732
+ colorPressedError: string;
1733
+ colorFocusError: string;
1734
+ colorDisabledError: string;
1735
+ textColorError: string;
1736
+ textColorHoverError: string;
1737
+ textColorPressedError: string;
1738
+ textColorFocusError: string;
1739
+ textColorDisabledError: string;
1740
+ textColorTextError: string;
1741
+ textColorTextHoverError: string;
1742
+ textColorTextPressedError: string;
1743
+ textColorTextFocusError: string;
1744
+ textColorTextDisabledError: string;
1745
+ textColorGhostError: string;
1746
+ textColorGhostHoverError: string;
1747
+ textColorGhostPressedError: string;
1748
+ textColorGhostFocusError: string;
1749
+ textColorGhostDisabledError: string;
1750
+ borderError: string;
1751
+ borderHoverError: string;
1752
+ borderPressedError: string;
1753
+ borderFocusError: string;
1754
+ borderDisabledError: string;
1755
+ rippleColorError: string;
1756
+ waveOpacity: string;
1757
+ fontWeight: string;
1758
+ fontWeightStrong: string;
1759
+ paddingTiny: string;
1760
+ paddingSmall: string;
1761
+ paddingMedium: string;
1762
+ paddingLarge: string;
1763
+ paddingRoundTiny: string;
1764
+ paddingRoundSmall: string;
1765
+ paddingRoundMedium: string;
1766
+ paddingRoundLarge: string;
1767
+ iconMarginTiny: string;
1768
+ iconMarginSmall: string;
1769
+ iconMarginMedium: string;
1770
+ iconMarginLarge: string;
1771
+ iconSizeTiny: string;
1772
+ iconSizeSmall: string;
1773
+ iconSizeMedium: string;
1774
+ iconSizeLarge: string;
1775
+ rippleDuration: string;
1776
+ }, any>;
1777
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
1778
+ countTextColor: string;
1779
+ heightTiny: string;
1780
+ heightSmall: string;
1781
+ heightMedium: string;
1782
+ heightLarge: string;
1783
+ fontSizeTiny: string;
1784
+ fontSizeSmall: string;
1785
+ fontSizeMedium: string;
1786
+ fontSizeLarge: string;
1787
+ lineHeight: string;
1788
+ lineHeightTextarea: string;
1789
+ borderRadius: string;
1790
+ iconSize: string;
1791
+ groupLabelColor: string;
1792
+ groupLabelTextColor: string;
1793
+ textColor: string;
1794
+ textColorDisabled: string;
1795
+ textDecorationColor: string;
1796
+ caretColor: string;
1797
+ placeholderColor: string;
1798
+ placeholderColorDisabled: string;
1799
+ color: string;
1800
+ colorDisabled: string;
1801
+ colorFocus: string;
1802
+ groupLabelBorder: string;
1803
+ border: string;
1804
+ borderHover: string;
1805
+ borderDisabled: string;
1806
+ borderFocus: string;
1807
+ boxShadowFocus: string;
1808
+ loadingColor: string;
1809
+ loadingColorWarning: string;
1810
+ borderWarning: string;
1811
+ borderHoverWarning: string;
1812
+ colorFocusWarning: string;
1813
+ borderFocusWarning: string;
1814
+ boxShadowFocusWarning: string;
1815
+ caretColorWarning: string;
1816
+ loadingColorError: string;
1817
+ borderError: string;
1818
+ borderHoverError: string;
1819
+ colorFocusError: string;
1820
+ borderFocusError: string;
1821
+ boxShadowFocusError: string;
1822
+ caretColorError: string;
1823
+ clearColor: string;
1824
+ clearColorHover: string;
1825
+ clearColorPressed: string;
1826
+ iconColor: string;
1827
+ iconColorDisabled: string;
1828
+ iconColorHover: string;
1829
+ iconColorPressed: string;
1830
+ suffixTextColor: string;
1831
+ paddingTiny: string;
1832
+ paddingSmall: string;
1833
+ paddingMedium: string;
1834
+ paddingLarge: string;
1835
+ clearSize: string;
1836
+ }, any>;
1837
+ }>>;
1838
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
1839
+ iconColorDisabled: string;
1840
+ }, {
1841
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
1842
+ heightTiny: string;
1843
+ heightSmall: string;
1844
+ heightMedium: string;
1845
+ heightLarge: string;
1846
+ borderRadiusTiny: string;
1847
+ borderRadiusSmall: string;
1848
+ borderRadiusMedium: string;
1849
+ borderRadiusLarge: string;
1850
+ fontSizeTiny: string;
1851
+ fontSizeSmall: string;
1852
+ fontSizeMedium: string;
1853
+ fontSizeLarge: string;
1854
+ opacityDisabled: string;
1855
+ colorOpacitySecondary: string;
1856
+ colorOpacitySecondaryHover: string;
1857
+ colorOpacitySecondaryPressed: string;
1858
+ colorSecondary: string;
1859
+ colorSecondaryHover: string;
1860
+ colorSecondaryPressed: string;
1861
+ colorTertiary: string;
1862
+ colorTertiaryHover: string;
1863
+ colorTertiaryPressed: string;
1864
+ colorQuaternary: string;
1865
+ colorQuaternaryHover: string;
1866
+ colorQuaternaryPressed: string;
1867
+ color: string;
1868
+ colorHover: string;
1869
+ colorPressed: string;
1870
+ colorFocus: string;
1871
+ colorDisabled: string;
1872
+ textColor: string;
1873
+ textColorTertiary: string;
1874
+ textColorHover: string;
1875
+ textColorPressed: string;
1876
+ textColorFocus: string;
1877
+ textColorDisabled: string;
1878
+ textColorText: string;
1879
+ textColorTextHover: string;
1880
+ textColorTextPressed: string;
1881
+ textColorTextFocus: string;
1882
+ textColorTextDisabled: string;
1883
+ textColorGhost: string;
1884
+ textColorGhostHover: string;
1885
+ textColorGhostPressed: string;
1886
+ textColorGhostFocus: string;
1887
+ textColorGhostDisabled: string;
1888
+ border: string;
1889
+ borderHover: string;
1890
+ borderPressed: string;
1891
+ borderFocus: string;
1892
+ borderDisabled: string;
1893
+ rippleColor: string;
1894
+ colorPrimary: string;
1895
+ colorHoverPrimary: string;
1896
+ colorPressedPrimary: string;
1897
+ colorFocusPrimary: string;
1898
+ colorDisabledPrimary: string;
1899
+ textColorPrimary: string;
1900
+ textColorHoverPrimary: string;
1901
+ textColorPressedPrimary: string;
1902
+ textColorFocusPrimary: string;
1903
+ textColorDisabledPrimary: string;
1904
+ textColorTextPrimary: string;
1905
+ textColorTextHoverPrimary: string;
1906
+ textColorTextPressedPrimary: string;
1907
+ textColorTextFocusPrimary: string;
1908
+ textColorTextDisabledPrimary: string;
1909
+ textColorGhostPrimary: string;
1910
+ textColorGhostHoverPrimary: string;
1911
+ textColorGhostPressedPrimary: string;
1912
+ textColorGhostFocusPrimary: string;
1913
+ textColorGhostDisabledPrimary: string;
1914
+ borderPrimary: string;
1915
+ borderHoverPrimary: string;
1916
+ borderPressedPrimary: string;
1917
+ borderFocusPrimary: string;
1918
+ borderDisabledPrimary: string;
1919
+ rippleColorPrimary: string;
1920
+ colorInfo: string;
1921
+ colorHoverInfo: string;
1922
+ colorPressedInfo: string;
1923
+ colorFocusInfo: string;
1924
+ colorDisabledInfo: string;
1925
+ textColorInfo: string;
1926
+ textColorHoverInfo: string;
1927
+ textColorPressedInfo: string;
1928
+ textColorFocusInfo: string;
1929
+ textColorDisabledInfo: string;
1930
+ textColorTextInfo: string;
1931
+ textColorTextHoverInfo: string;
1932
+ textColorTextPressedInfo: string;
1933
+ textColorTextFocusInfo: string;
1934
+ textColorTextDisabledInfo: string;
1935
+ textColorGhostInfo: string;
1936
+ textColorGhostHoverInfo: string;
1937
+ textColorGhostPressedInfo: string;
1938
+ textColorGhostFocusInfo: string;
1939
+ textColorGhostDisabledInfo: string;
1940
+ borderInfo: string;
1941
+ borderHoverInfo: string;
1942
+ borderPressedInfo: string;
1943
+ borderFocusInfo: string;
1944
+ borderDisabledInfo: string;
1945
+ rippleColorInfo: string;
1946
+ colorSuccess: string;
1947
+ colorHoverSuccess: string;
1948
+ colorPressedSuccess: string;
1949
+ colorFocusSuccess: string;
1950
+ colorDisabledSuccess: string;
1951
+ textColorSuccess: string;
1952
+ textColorHoverSuccess: string;
1953
+ textColorPressedSuccess: string;
1954
+ textColorFocusSuccess: string;
1955
+ textColorDisabledSuccess: string;
1956
+ textColorTextSuccess: string;
1957
+ textColorTextHoverSuccess: string;
1958
+ textColorTextPressedSuccess: string;
1959
+ textColorTextFocusSuccess: string;
1960
+ textColorTextDisabledSuccess: string;
1961
+ textColorGhostSuccess: string;
1962
+ textColorGhostHoverSuccess: string;
1963
+ textColorGhostPressedSuccess: string;
1964
+ textColorGhostFocusSuccess: string;
1965
+ textColorGhostDisabledSuccess: string;
1966
+ borderSuccess: string;
1967
+ borderHoverSuccess: string;
1968
+ borderPressedSuccess: string;
1969
+ borderFocusSuccess: string;
1970
+ borderDisabledSuccess: string;
1971
+ rippleColorSuccess: string;
1972
+ colorWarning: string;
1973
+ colorHoverWarning: string;
1974
+ colorPressedWarning: string;
1975
+ colorFocusWarning: string;
1976
+ colorDisabledWarning: string;
1977
+ textColorWarning: string;
1978
+ textColorHoverWarning: string;
1979
+ textColorPressedWarning: string;
1980
+ textColorFocusWarning: string;
1981
+ textColorDisabledWarning: string;
1982
+ textColorTextWarning: string;
1983
+ textColorTextHoverWarning: string;
1984
+ textColorTextPressedWarning: string;
1985
+ textColorTextFocusWarning: string;
1986
+ textColorTextDisabledWarning: string;
1987
+ textColorGhostWarning: string;
1988
+ textColorGhostHoverWarning: string;
1989
+ textColorGhostPressedWarning: string;
1990
+ textColorGhostFocusWarning: string;
1991
+ textColorGhostDisabledWarning: string;
1992
+ borderWarning: string;
1993
+ borderHoverWarning: string;
1994
+ borderPressedWarning: string;
1995
+ borderFocusWarning: string;
1996
+ borderDisabledWarning: string;
1997
+ rippleColorWarning: string;
1998
+ colorError: string;
1999
+ colorHoverError: string;
2000
+ colorPressedError: string;
2001
+ colorFocusError: string;
2002
+ colorDisabledError: string;
2003
+ textColorError: string;
2004
+ textColorHoverError: string;
2005
+ textColorPressedError: string;
2006
+ textColorFocusError: string;
2007
+ textColorDisabledError: string;
2008
+ textColorTextError: string;
2009
+ textColorTextHoverError: string;
2010
+ textColorTextPressedError: string;
2011
+ textColorTextFocusError: string;
2012
+ textColorTextDisabledError: string;
2013
+ textColorGhostError: string;
2014
+ textColorGhostHoverError: string;
2015
+ textColorGhostPressedError: string;
2016
+ textColorGhostFocusError: string;
2017
+ textColorGhostDisabledError: string;
2018
+ borderError: string;
2019
+ borderHoverError: string;
2020
+ borderPressedError: string;
2021
+ borderFocusError: string;
2022
+ borderDisabledError: string;
2023
+ rippleColorError: string;
2024
+ waveOpacity: string;
2025
+ fontWeight: string;
2026
+ fontWeightStrong: string;
2027
+ paddingTiny: string;
2028
+ paddingSmall: string;
2029
+ paddingMedium: string;
2030
+ paddingLarge: string;
2031
+ paddingRoundTiny: string;
2032
+ paddingRoundSmall: string;
2033
+ paddingRoundMedium: string;
2034
+ paddingRoundLarge: string;
2035
+ iconMarginTiny: string;
2036
+ iconMarginSmall: string;
2037
+ iconMarginMedium: string;
2038
+ iconMarginLarge: string;
2039
+ iconSizeTiny: string;
2040
+ iconSizeSmall: string;
2041
+ iconSizeMedium: string;
2042
+ iconSizeLarge: string;
2043
+ rippleDuration: string;
2044
+ }, any>;
2045
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
2046
+ countTextColor: string;
2047
+ heightTiny: string;
2048
+ heightSmall: string;
2049
+ heightMedium: string;
2050
+ heightLarge: string;
2051
+ fontSizeTiny: string;
2052
+ fontSizeSmall: string;
2053
+ fontSizeMedium: string;
2054
+ fontSizeLarge: string;
2055
+ lineHeight: string;
2056
+ lineHeightTextarea: string;
2057
+ borderRadius: string;
2058
+ iconSize: string;
2059
+ groupLabelColor: string;
2060
+ groupLabelTextColor: string;
2061
+ textColor: string;
2062
+ textColorDisabled: string;
2063
+ textDecorationColor: string;
2064
+ caretColor: string;
2065
+ placeholderColor: string;
2066
+ placeholderColorDisabled: string;
2067
+ color: string;
2068
+ colorDisabled: string;
2069
+ colorFocus: string;
2070
+ groupLabelBorder: string;
2071
+ border: string;
2072
+ borderHover: string;
2073
+ borderDisabled: string;
2074
+ borderFocus: string;
2075
+ boxShadowFocus: string;
2076
+ loadingColor: string;
2077
+ loadingColorWarning: string;
2078
+ borderWarning: string;
2079
+ borderHoverWarning: string;
2080
+ colorFocusWarning: string;
2081
+ borderFocusWarning: string;
2082
+ boxShadowFocusWarning: string;
2083
+ caretColorWarning: string;
2084
+ loadingColorError: string;
2085
+ borderError: string;
2086
+ borderHoverError: string;
2087
+ colorFocusError: string;
2088
+ borderFocusError: string;
2089
+ boxShadowFocusError: string;
2090
+ caretColorError: string;
2091
+ clearColor: string;
2092
+ clearColorHover: string;
2093
+ clearColorPressed: string;
2094
+ iconColor: string;
2095
+ iconColorDisabled: string;
2096
+ iconColorHover: string;
2097
+ iconColorPressed: string;
2098
+ suffixTextColor: string;
2099
+ paddingTiny: string;
2100
+ paddingSmall: string;
2101
+ paddingMedium: string;
2102
+ paddingLarge: string;
2103
+ clearSize: string;
2104
+ }, any>;
2105
+ }>>>;
2106
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
2107
+ iconColorDisabled: string;
2108
+ }, {
2109
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
2110
+ heightTiny: string;
2111
+ heightSmall: string;
2112
+ heightMedium: string;
2113
+ heightLarge: string;
2114
+ borderRadiusTiny: string;
2115
+ borderRadiusSmall: string;
2116
+ borderRadiusMedium: string;
2117
+ borderRadiusLarge: string;
2118
+ fontSizeTiny: string;
2119
+ fontSizeSmall: string;
2120
+ fontSizeMedium: string;
2121
+ fontSizeLarge: string;
2122
+ opacityDisabled: string;
2123
+ colorOpacitySecondary: string;
2124
+ colorOpacitySecondaryHover: string;
2125
+ colorOpacitySecondaryPressed: string;
2126
+ colorSecondary: string;
2127
+ colorSecondaryHover: string;
2128
+ colorSecondaryPressed: string;
2129
+ colorTertiary: string;
2130
+ colorTertiaryHover: string;
2131
+ colorTertiaryPressed: string;
2132
+ colorQuaternary: string;
2133
+ colorQuaternaryHover: string;
2134
+ colorQuaternaryPressed: string;
2135
+ color: string;
2136
+ colorHover: string;
2137
+ colorPressed: string;
2138
+ colorFocus: string;
2139
+ colorDisabled: string;
2140
+ textColor: string;
2141
+ textColorTertiary: string;
2142
+ textColorHover: string;
2143
+ textColorPressed: string;
2144
+ textColorFocus: string;
2145
+ textColorDisabled: string;
2146
+ textColorText: string;
2147
+ textColorTextHover: string;
2148
+ textColorTextPressed: string;
2149
+ textColorTextFocus: string;
2150
+ textColorTextDisabled: string;
2151
+ textColorGhost: string;
2152
+ textColorGhostHover: string;
2153
+ textColorGhostPressed: string;
2154
+ textColorGhostFocus: string;
2155
+ textColorGhostDisabled: string;
2156
+ border: string;
2157
+ borderHover: string;
2158
+ borderPressed: string;
2159
+ borderFocus: string;
2160
+ borderDisabled: string;
2161
+ rippleColor: string;
2162
+ colorPrimary: string;
2163
+ colorHoverPrimary: string;
2164
+ colorPressedPrimary: string;
2165
+ colorFocusPrimary: string;
2166
+ colorDisabledPrimary: string;
2167
+ textColorPrimary: string;
2168
+ textColorHoverPrimary: string;
2169
+ textColorPressedPrimary: string;
2170
+ textColorFocusPrimary: string;
2171
+ textColorDisabledPrimary: string;
2172
+ textColorTextPrimary: string;
2173
+ textColorTextHoverPrimary: string;
2174
+ textColorTextPressedPrimary: string;
2175
+ textColorTextFocusPrimary: string;
2176
+ textColorTextDisabledPrimary: string;
2177
+ textColorGhostPrimary: string;
2178
+ textColorGhostHoverPrimary: string;
2179
+ textColorGhostPressedPrimary: string;
2180
+ textColorGhostFocusPrimary: string;
2181
+ textColorGhostDisabledPrimary: string;
2182
+ borderPrimary: string;
2183
+ borderHoverPrimary: string;
2184
+ borderPressedPrimary: string;
2185
+ borderFocusPrimary: string;
2186
+ borderDisabledPrimary: string;
2187
+ rippleColorPrimary: string;
2188
+ colorInfo: string;
2189
+ colorHoverInfo: string;
2190
+ colorPressedInfo: string;
2191
+ colorFocusInfo: string;
2192
+ colorDisabledInfo: string;
2193
+ textColorInfo: string;
2194
+ textColorHoverInfo: string;
2195
+ textColorPressedInfo: string;
2196
+ textColorFocusInfo: string;
2197
+ textColorDisabledInfo: string;
2198
+ textColorTextInfo: string;
2199
+ textColorTextHoverInfo: string;
2200
+ textColorTextPressedInfo: string;
2201
+ textColorTextFocusInfo: string;
2202
+ textColorTextDisabledInfo: string;
2203
+ textColorGhostInfo: string;
2204
+ textColorGhostHoverInfo: string;
2205
+ textColorGhostPressedInfo: string;
2206
+ textColorGhostFocusInfo: string;
2207
+ textColorGhostDisabledInfo: string;
2208
+ borderInfo: string;
2209
+ borderHoverInfo: string;
2210
+ borderPressedInfo: string;
2211
+ borderFocusInfo: string;
2212
+ borderDisabledInfo: string;
2213
+ rippleColorInfo: string;
2214
+ colorSuccess: string;
2215
+ colorHoverSuccess: string;
2216
+ colorPressedSuccess: string;
2217
+ colorFocusSuccess: string;
2218
+ colorDisabledSuccess: string;
2219
+ textColorSuccess: string;
2220
+ textColorHoverSuccess: string;
2221
+ textColorPressedSuccess: string;
2222
+ textColorFocusSuccess: string;
2223
+ textColorDisabledSuccess: string;
2224
+ textColorTextSuccess: string;
2225
+ textColorTextHoverSuccess: string;
2226
+ textColorTextPressedSuccess: string;
2227
+ textColorTextFocusSuccess: string;
2228
+ textColorTextDisabledSuccess: string;
2229
+ textColorGhostSuccess: string;
2230
+ textColorGhostHoverSuccess: string;
2231
+ textColorGhostPressedSuccess: string;
2232
+ textColorGhostFocusSuccess: string;
2233
+ textColorGhostDisabledSuccess: string;
2234
+ borderSuccess: string;
2235
+ borderHoverSuccess: string;
2236
+ borderPressedSuccess: string;
2237
+ borderFocusSuccess: string;
2238
+ borderDisabledSuccess: string;
2239
+ rippleColorSuccess: string;
2240
+ colorWarning: string;
2241
+ colorHoverWarning: string;
2242
+ colorPressedWarning: string;
2243
+ colorFocusWarning: string;
2244
+ colorDisabledWarning: string;
2245
+ textColorWarning: string;
2246
+ textColorHoverWarning: string;
2247
+ textColorPressedWarning: string;
2248
+ textColorFocusWarning: string;
2249
+ textColorDisabledWarning: string;
2250
+ textColorTextWarning: string;
2251
+ textColorTextHoverWarning: string;
2252
+ textColorTextPressedWarning: string;
2253
+ textColorTextFocusWarning: string;
2254
+ textColorTextDisabledWarning: string;
2255
+ textColorGhostWarning: string;
2256
+ textColorGhostHoverWarning: string;
2257
+ textColorGhostPressedWarning: string;
2258
+ textColorGhostFocusWarning: string;
2259
+ textColorGhostDisabledWarning: string;
2260
+ borderWarning: string;
2261
+ borderHoverWarning: string;
2262
+ borderPressedWarning: string;
2263
+ borderFocusWarning: string;
2264
+ borderDisabledWarning: string;
2265
+ rippleColorWarning: string;
2266
+ colorError: string;
2267
+ colorHoverError: string;
2268
+ colorPressedError: string;
2269
+ colorFocusError: string;
2270
+ colorDisabledError: string;
2271
+ textColorError: string;
2272
+ textColorHoverError: string;
2273
+ textColorPressedError: string;
2274
+ textColorFocusError: string;
2275
+ textColorDisabledError: string;
2276
+ textColorTextError: string;
2277
+ textColorTextHoverError: string;
2278
+ textColorTextPressedError: string;
2279
+ textColorTextFocusError: string;
2280
+ textColorTextDisabledError: string;
2281
+ textColorGhostError: string;
2282
+ textColorGhostHoverError: string;
2283
+ textColorGhostPressedError: string;
2284
+ textColorGhostFocusError: string;
2285
+ textColorGhostDisabledError: string;
2286
+ borderError: string;
2287
+ borderHoverError: string;
2288
+ borderPressedError: string;
2289
+ borderFocusError: string;
2290
+ borderDisabledError: string;
2291
+ rippleColorError: string;
2292
+ waveOpacity: string;
2293
+ fontWeight: string;
2294
+ fontWeightStrong: string;
2295
+ paddingTiny: string;
2296
+ paddingSmall: string;
2297
+ paddingMedium: string;
2298
+ paddingLarge: string;
2299
+ paddingRoundTiny: string;
2300
+ paddingRoundSmall: string;
2301
+ paddingRoundMedium: string;
2302
+ paddingRoundLarge: string;
2303
+ iconMarginTiny: string;
2304
+ iconMarginSmall: string;
2305
+ iconMarginMedium: string;
2306
+ iconMarginLarge: string;
2307
+ iconSizeTiny: string;
2308
+ iconSizeSmall: string;
2309
+ iconSizeMedium: string;
2310
+ iconSizeLarge: string;
2311
+ rippleDuration: string;
2312
+ }, any>;
2313
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
2314
+ countTextColor: string;
2315
+ heightTiny: string;
2316
+ heightSmall: string;
2317
+ heightMedium: string;
2318
+ heightLarge: string;
2319
+ fontSizeTiny: string;
2320
+ fontSizeSmall: string;
2321
+ fontSizeMedium: string;
2322
+ fontSizeLarge: string;
2323
+ lineHeight: string;
2324
+ lineHeightTextarea: string;
2325
+ borderRadius: string;
2326
+ iconSize: string;
2327
+ groupLabelColor: string;
2328
+ groupLabelTextColor: string;
2329
+ textColor: string;
2330
+ textColorDisabled: string;
2331
+ textDecorationColor: string;
2332
+ caretColor: string;
2333
+ placeholderColor: string;
2334
+ placeholderColorDisabled: string;
2335
+ color: string;
2336
+ colorDisabled: string;
2337
+ colorFocus: string;
2338
+ groupLabelBorder: string;
2339
+ border: string;
2340
+ borderHover: string;
2341
+ borderDisabled: string;
2342
+ borderFocus: string;
2343
+ boxShadowFocus: string;
2344
+ loadingColor: string;
2345
+ loadingColorWarning: string;
2346
+ borderWarning: string;
2347
+ borderHoverWarning: string;
2348
+ colorFocusWarning: string;
2349
+ borderFocusWarning: string;
2350
+ boxShadowFocusWarning: string;
2351
+ caretColorWarning: string;
2352
+ loadingColorError: string;
2353
+ borderError: string;
2354
+ borderHoverError: string;
2355
+ colorFocusError: string;
2356
+ borderFocusError: string;
2357
+ boxShadowFocusError: string;
2358
+ caretColorError: string;
2359
+ clearColor: string;
2360
+ clearColorHover: string;
2361
+ clearColorPressed: string;
2362
+ iconColor: string;
2363
+ iconColorDisabled: string;
2364
+ iconColorHover: string;
2365
+ iconColorPressed: string;
2366
+ suffixTextColor: string;
2367
+ paddingTiny: string;
2368
+ paddingSmall: string;
2369
+ paddingMedium: string;
2370
+ paddingLarge: string;
2371
+ clearSize: string;
2372
+ }, any>;
2373
+ }>>>;
2374
+ }, {
2375
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
2376
+ inputInstRef: import("vue").Ref<{
2377
+ wrapperElRef: HTMLElement | null;
2378
+ textareaElRef: HTMLTextAreaElement | null;
2379
+ inputElRef: HTMLInputElement | null;
2380
+ isCompositing: boolean;
2381
+ blur: () => void;
2382
+ focus: () => void;
2383
+ select: () => void;
2384
+ activate: () => void;
2385
+ deactivate: () => void;
2386
+ } | null>;
2387
+ minusButtonInstRef: import("vue").Ref<{
2388
+ $el: HTMLElement;
2389
+ } | null>;
2390
+ addButtonInstRef: import("vue").Ref<{
2391
+ $el: HTMLElement;
2392
+ } | null>;
2393
+ mergedClsPrefix: import("vue").ComputedRef<string>;
2394
+ mergedBordered: import("vue").ComputedRef<boolean>;
2395
+ uncontrolledValue: import("vue").Ref<number | null>;
2396
+ mergedValue: import("vue").ComputedRef<number | null>;
2397
+ mergedPlaceholder: import("vue").ComputedRef<string>;
2398
+ displayedValueInvalid: import("vue").ComputedRef<boolean>;
2399
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
2400
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2401
+ displayedValue: import("vue").Ref<string>;
2402
+ addable: import("vue").ComputedRef<boolean>;
2403
+ minusable: import("vue").ComputedRef<boolean>;
2404
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
2405
+ handleFocus: (e: FocusEvent) => void;
2406
+ handleBlur: (e: FocusEvent) => void;
2407
+ handleClear: (e: MouseEvent) => void;
2408
+ handleMouseDown: (e: MouseEvent) => void;
2409
+ handleAddClick: () => void;
2410
+ handleMinusClick: () => void;
2411
+ handleAddMousedown: () => void;
2412
+ handleMinusMousedown: () => void;
2413
+ handleKeyDown: (e: KeyboardEvent) => void;
2414
+ handleUpdateDisplayedValue: (value: string) => void;
2415
+ mergedTheme: import("vue").ComputedRef<{
2416
+ common: {
2417
+ baseColor: string;
2418
+ primaryColor: string;
2419
+ primaryColorHover: string;
2420
+ primaryColorPressed: string;
2421
+ primaryColorSuppl: string;
2422
+ infoColor: string;
2423
+ infoColorHover: string;
2424
+ infoColorPressed: string;
2425
+ infoColorSuppl: string;
2426
+ successColor: string;
2427
+ successColorHover: string;
2428
+ successColorPressed: string;
2429
+ successColorSuppl: string;
2430
+ warningColor: string;
2431
+ warningColorHover: string;
2432
+ warningColorPressed: string;
2433
+ warningColorSuppl: string;
2434
+ errorColor: string;
2435
+ errorColorHover: string;
2436
+ errorColorPressed: string;
2437
+ errorColorSuppl: string;
2438
+ textColorBase: string;
2439
+ textColor1: string;
2440
+ textColor2: string;
2441
+ textColor3: string;
2442
+ textColorDisabled: string;
2443
+ placeholderColor: string;
2444
+ placeholderColorDisabled: string;
2445
+ iconColor: string;
2446
+ iconColorHover: string;
2447
+ iconColorPressed: string;
2448
+ iconColorDisabled: string;
2449
+ opacity1: string;
2450
+ opacity2: string;
2451
+ opacity3: string;
2452
+ opacity4: string;
2453
+ opacity5: string;
2454
+ dividerColor: string;
2455
+ borderColor: string;
2456
+ closeIconColor: string;
2457
+ closeIconColorHover: string;
2458
+ closeIconColorPressed: string;
2459
+ closeColorHover: string;
2460
+ closeColorPressed: string;
2461
+ clearColor: string;
2462
+ clearColorHover: string;
2463
+ clearColorPressed: string;
2464
+ scrollbarColor: string;
2465
+ scrollbarColorHover: string;
2466
+ scrollbarWidth: string;
2467
+ scrollbarHeight: string;
2468
+ scrollbarBorderRadius: string;
2469
+ progressRailColor: string;
2470
+ railColor: string;
2471
+ popoverColor: string;
2472
+ tableColor: string;
2473
+ cardColor: string;
2474
+ modalColor: string;
2475
+ bodyColor: string;
2476
+ tagColor: string;
2477
+ avatarColor: string;
2478
+ invertedColor: string;
2479
+ inputColor: string;
2480
+ codeColor: string;
2481
+ tabColor: string;
2482
+ actionColor: string;
2483
+ tableHeaderColor: string;
2484
+ hoverColor: string;
2485
+ tableColorHover: string;
2486
+ tableColorStriped: string;
2487
+ pressedColor: string;
2488
+ opacityDisabled: string;
2489
+ inputColorDisabled: string;
2490
+ buttonColor2: string;
2491
+ buttonColor2Hover: string;
2492
+ buttonColor2Pressed: string;
2493
+ boxShadow1: string;
2494
+ boxShadow2: string;
2495
+ boxShadow3: string;
2496
+ fontFamily: string;
2497
+ fontFamilyMono: string;
2498
+ fontWeight: string;
2499
+ fontWeightStrong: string;
2500
+ cubicBezierEaseInOut: string;
2501
+ cubicBezierEaseOut: string;
2502
+ cubicBezierEaseIn: string;
2503
+ borderRadius: string;
2504
+ borderRadiusSmall: string;
2505
+ fontSize: string;
2506
+ fontSizeMini: string;
2507
+ fontSizeTiny: string;
2508
+ fontSizeSmall: string;
2509
+ fontSizeMedium: string;
2510
+ fontSizeLarge: string;
2511
+ fontSizeHuge: string;
2512
+ lineHeight: string;
2513
+ heightMini: string;
2514
+ heightTiny: string;
2515
+ heightSmall: string;
2516
+ heightMedium: string;
2517
+ heightLarge: string;
2518
+ heightHuge: string;
2519
+ name: "common";
2520
+ };
2521
+ self: {
2522
+ iconColorDisabled: string;
2523
+ };
2524
+ peers: {
2525
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
2526
+ heightTiny: string;
2527
+ heightSmall: string;
2528
+ heightMedium: string;
2529
+ heightLarge: string;
2530
+ borderRadiusTiny: string;
2531
+ borderRadiusSmall: string;
2532
+ borderRadiusMedium: string;
2533
+ borderRadiusLarge: string;
2534
+ fontSizeTiny: string;
2535
+ fontSizeSmall: string;
2536
+ fontSizeMedium: string;
2537
+ fontSizeLarge: string;
2538
+ opacityDisabled: string;
2539
+ colorOpacitySecondary: string;
2540
+ colorOpacitySecondaryHover: string;
2541
+ colorOpacitySecondaryPressed: string;
2542
+ colorSecondary: string;
2543
+ colorSecondaryHover: string;
2544
+ colorSecondaryPressed: string;
2545
+ colorTertiary: string;
2546
+ colorTertiaryHover: string;
2547
+ colorTertiaryPressed: string;
2548
+ colorQuaternary: string;
2549
+ colorQuaternaryHover: string;
2550
+ colorQuaternaryPressed: string;
2551
+ color: string;
2552
+ colorHover: string;
2553
+ colorPressed: string;
2554
+ colorFocus: string;
2555
+ colorDisabled: string;
2556
+ textColor: string;
2557
+ textColorTertiary: string;
2558
+ textColorHover: string;
2559
+ textColorPressed: string;
2560
+ textColorFocus: string;
2561
+ textColorDisabled: string;
2562
+ textColorText: string;
2563
+ textColorTextHover: string;
2564
+ textColorTextPressed: string;
2565
+ textColorTextFocus: string;
2566
+ textColorTextDisabled: string;
2567
+ textColorGhost: string;
2568
+ textColorGhostHover: string;
2569
+ textColorGhostPressed: string;
2570
+ textColorGhostFocus: string;
2571
+ textColorGhostDisabled: string;
2572
+ border: string;
2573
+ borderHover: string;
2574
+ borderPressed: string;
2575
+ borderFocus: string;
2576
+ borderDisabled: string;
2577
+ rippleColor: string;
2578
+ colorPrimary: string;
2579
+ colorHoverPrimary: string;
2580
+ colorPressedPrimary: string;
2581
+ colorFocusPrimary: string;
2582
+ colorDisabledPrimary: string;
2583
+ textColorPrimary: string;
2584
+ textColorHoverPrimary: string;
2585
+ textColorPressedPrimary: string;
2586
+ textColorFocusPrimary: string;
2587
+ textColorDisabledPrimary: string;
2588
+ textColorTextPrimary: string;
2589
+ textColorTextHoverPrimary: string;
2590
+ textColorTextPressedPrimary: string;
2591
+ textColorTextFocusPrimary: string;
2592
+ textColorTextDisabledPrimary: string;
2593
+ textColorGhostPrimary: string;
2594
+ textColorGhostHoverPrimary: string;
2595
+ textColorGhostPressedPrimary: string;
2596
+ textColorGhostFocusPrimary: string;
2597
+ textColorGhostDisabledPrimary: string;
2598
+ borderPrimary: string;
2599
+ borderHoverPrimary: string;
2600
+ borderPressedPrimary: string;
2601
+ borderFocusPrimary: string;
2602
+ borderDisabledPrimary: string;
2603
+ rippleColorPrimary: string;
2604
+ colorInfo: string;
2605
+ colorHoverInfo: string;
2606
+ colorPressedInfo: string;
2607
+ colorFocusInfo: string;
2608
+ colorDisabledInfo: string;
2609
+ textColorInfo: string;
2610
+ textColorHoverInfo: string;
2611
+ textColorPressedInfo: string;
2612
+ textColorFocusInfo: string;
2613
+ textColorDisabledInfo: string;
2614
+ textColorTextInfo: string;
2615
+ textColorTextHoverInfo: string;
2616
+ textColorTextPressedInfo: string;
2617
+ textColorTextFocusInfo: string;
2618
+ textColorTextDisabledInfo: string;
2619
+ textColorGhostInfo: string;
2620
+ textColorGhostHoverInfo: string;
2621
+ textColorGhostPressedInfo: string;
2622
+ textColorGhostFocusInfo: string;
2623
+ textColorGhostDisabledInfo: string;
2624
+ borderInfo: string;
2625
+ borderHoverInfo: string;
2626
+ borderPressedInfo: string;
2627
+ borderFocusInfo: string;
2628
+ borderDisabledInfo: string;
2629
+ rippleColorInfo: string;
2630
+ colorSuccess: string;
2631
+ colorHoverSuccess: string;
2632
+ colorPressedSuccess: string;
2633
+ colorFocusSuccess: string;
2634
+ colorDisabledSuccess: string;
2635
+ textColorSuccess: string;
2636
+ textColorHoverSuccess: string;
2637
+ textColorPressedSuccess: string;
2638
+ textColorFocusSuccess: string;
2639
+ textColorDisabledSuccess: string;
2640
+ textColorTextSuccess: string;
2641
+ textColorTextHoverSuccess: string;
2642
+ textColorTextPressedSuccess: string;
2643
+ textColorTextFocusSuccess: string;
2644
+ textColorTextDisabledSuccess: string;
2645
+ textColorGhostSuccess: string;
2646
+ textColorGhostHoverSuccess: string;
2647
+ textColorGhostPressedSuccess: string;
2648
+ textColorGhostFocusSuccess: string;
2649
+ textColorGhostDisabledSuccess: string;
2650
+ borderSuccess: string;
2651
+ borderHoverSuccess: string;
2652
+ borderPressedSuccess: string;
2653
+ borderFocusSuccess: string;
2654
+ borderDisabledSuccess: string;
2655
+ rippleColorSuccess: string;
2656
+ colorWarning: string;
2657
+ colorHoverWarning: string;
2658
+ colorPressedWarning: string;
2659
+ colorFocusWarning: string;
2660
+ colorDisabledWarning: string;
2661
+ textColorWarning: string;
2662
+ textColorHoverWarning: string;
2663
+ textColorPressedWarning: string;
2664
+ textColorFocusWarning: string;
2665
+ textColorDisabledWarning: string;
2666
+ textColorTextWarning: string;
2667
+ textColorTextHoverWarning: string;
2668
+ textColorTextPressedWarning: string;
2669
+ textColorTextFocusWarning: string;
2670
+ textColorTextDisabledWarning: string;
2671
+ textColorGhostWarning: string;
2672
+ textColorGhostHoverWarning: string;
2673
+ textColorGhostPressedWarning: string;
2674
+ textColorGhostFocusWarning: string;
2675
+ textColorGhostDisabledWarning: string;
2676
+ borderWarning: string;
2677
+ borderHoverWarning: string;
2678
+ borderPressedWarning: string;
2679
+ borderFocusWarning: string;
2680
+ borderDisabledWarning: string;
2681
+ rippleColorWarning: string;
2682
+ colorError: string;
2683
+ colorHoverError: string;
2684
+ colorPressedError: string;
2685
+ colorFocusError: string;
2686
+ colorDisabledError: string;
2687
+ textColorError: string;
2688
+ textColorHoverError: string;
2689
+ textColorPressedError: string;
2690
+ textColorFocusError: string;
2691
+ textColorDisabledError: string;
2692
+ textColorTextError: string;
2693
+ textColorTextHoverError: string;
2694
+ textColorTextPressedError: string;
2695
+ textColorTextFocusError: string;
2696
+ textColorTextDisabledError: string;
2697
+ textColorGhostError: string;
2698
+ textColorGhostHoverError: string;
2699
+ textColorGhostPressedError: string;
2700
+ textColorGhostFocusError: string;
2701
+ textColorGhostDisabledError: string;
2702
+ borderError: string;
2703
+ borderHoverError: string;
2704
+ borderPressedError: string;
2705
+ borderFocusError: string;
2706
+ borderDisabledError: string;
2707
+ rippleColorError: string;
2708
+ waveOpacity: string;
2709
+ fontWeight: string;
2710
+ fontWeightStrong: string;
2711
+ paddingTiny: string;
2712
+ paddingSmall: string;
2713
+ paddingMedium: string;
2714
+ paddingLarge: string;
2715
+ paddingRoundTiny: string;
2716
+ paddingRoundSmall: string;
2717
+ paddingRoundMedium: string;
2718
+ paddingRoundLarge: string;
2719
+ iconMarginTiny: string;
2720
+ iconMarginSmall: string;
2721
+ iconMarginMedium: string;
2722
+ iconMarginLarge: string;
2723
+ iconSizeTiny: string;
2724
+ iconSizeSmall: string;
2725
+ iconSizeMedium: string;
2726
+ iconSizeLarge: string;
2727
+ rippleDuration: string;
2728
+ }, any>;
2729
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
2730
+ countTextColor: string;
2731
+ heightTiny: string;
2732
+ heightSmall: string;
2733
+ heightMedium: string;
2734
+ heightLarge: string;
2735
+ fontSizeTiny: string;
2736
+ fontSizeSmall: string;
2737
+ fontSizeMedium: string;
2738
+ fontSizeLarge: string;
2739
+ lineHeight: string;
2740
+ lineHeightTextarea: string;
2741
+ borderRadius: string;
2742
+ iconSize: string;
2743
+ groupLabelColor: string;
2744
+ groupLabelTextColor: string;
2745
+ textColor: string;
2746
+ textColorDisabled: string;
2747
+ textDecorationColor: string;
2748
+ caretColor: string;
2749
+ placeholderColor: string;
2750
+ placeholderColorDisabled: string;
2751
+ color: string;
2752
+ colorDisabled: string;
2753
+ colorFocus: string;
2754
+ groupLabelBorder: string;
2755
+ border: string;
2756
+ borderHover: string;
2757
+ borderDisabled: string;
2758
+ borderFocus: string;
2759
+ boxShadowFocus: string;
2760
+ loadingColor: string;
2761
+ loadingColorWarning: string;
2762
+ borderWarning: string;
2763
+ borderHoverWarning: string;
2764
+ colorFocusWarning: string;
2765
+ borderFocusWarning: string;
2766
+ boxShadowFocusWarning: string;
2767
+ caretColorWarning: string;
2768
+ loadingColorError: string;
2769
+ borderError: string;
2770
+ borderHoverError: string;
2771
+ colorFocusError: string;
2772
+ borderFocusError: string;
2773
+ boxShadowFocusError: string;
2774
+ caretColorError: string;
2775
+ clearColor: string;
2776
+ clearColorHover: string;
2777
+ clearColorPressed: string;
2778
+ iconColor: string;
2779
+ iconColorDisabled: string;
2780
+ iconColorHover: string;
2781
+ iconColorPressed: string;
2782
+ suffixTextColor: string;
2783
+ paddingTiny: string;
2784
+ paddingSmall: string;
2785
+ paddingMedium: string;
2786
+ paddingLarge: string;
2787
+ clearSize: string;
2788
+ }, any>;
2789
+ };
2790
+ peerOverrides: {
2791
+ Button?: {
2792
+ peers?: {
2793
+ [x: string]: any;
2794
+ } | undefined;
2795
+ } | undefined;
2796
+ Input?: {
2797
+ peers?: {
2798
+ [x: string]: any;
2799
+ } | undefined;
2800
+ } | undefined;
2801
+ };
2802
+ }>;
2803
+ inputThemeOverrides: {
2804
+ paddingSmall: string;
2805
+ paddingMedium: string;
2806
+ paddingLarge: string;
2807
+ };
2808
+ buttonThemeOverrides: import("vue").ComputedRef<{
2809
+ textColorTextDisabled: string;
2810
+ opacityDisabled: string;
2811
+ }>;
2812
+ focus: () => void;
2813
+ blur: () => void;
2814
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2815
+ autofocus: BooleanConstructor;
2816
+ loading: {
2817
+ type: BooleanConstructor;
2818
+ default: undefined;
2819
+ };
2820
+ placeholder: StringConstructor;
2821
+ defaultValue: {
2822
+ type: PropType<number | null>;
2823
+ default: null;
2824
+ };
2825
+ value: PropType<number | null>;
2826
+ step: {
2827
+ type: (NumberConstructor | StringConstructor)[];
2828
+ default: number;
2829
+ };
2830
+ min: (NumberConstructor | StringConstructor)[];
2831
+ max: (NumberConstructor | StringConstructor)[];
2832
+ size: PropType<"small" | "medium" | "large">;
2833
+ disabled: {
2834
+ type: PropType<boolean | undefined>;
2835
+ default: undefined;
2836
+ };
2837
+ validator: PropType<(value: number) => boolean>;
2838
+ bordered: {
2839
+ type: PropType<boolean | undefined>;
2840
+ default: undefined;
2841
+ };
2842
+ showButton: {
2843
+ type: BooleanConstructor;
2844
+ default: boolean;
2845
+ };
2846
+ buttonPlacement: {
2847
+ type: PropType<"right" | "both">;
2848
+ default: string;
2849
+ };
2850
+ readonly: BooleanConstructor;
2851
+ clearable: BooleanConstructor;
2852
+ keyboard: {
2853
+ type: PropType<{
2854
+ ArrowUp?: boolean | undefined;
2855
+ ArrowDown?: boolean | undefined;
2856
+ }>;
2857
+ default: {};
2858
+ };
2859
+ updateValueOnInput: {
2860
+ type: BooleanConstructor;
2861
+ default: boolean;
2862
+ };
2863
+ parse: PropType<(input: string) => number | null>;
2864
+ format: PropType<(value: number | null) => string>;
2865
+ precision: NumberConstructor;
2866
+ status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
2867
+ 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
2868
+ onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
2869
+ onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2870
+ onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
2871
+ onClear: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2872
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
2873
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
2874
+ iconColorDisabled: string;
2875
+ }, {
2876
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
2877
+ heightTiny: string;
2878
+ heightSmall: string;
2879
+ heightMedium: string;
2880
+ heightLarge: string;
2881
+ borderRadiusTiny: string;
2882
+ borderRadiusSmall: string;
2883
+ borderRadiusMedium: string;
2884
+ borderRadiusLarge: string;
2885
+ fontSizeTiny: string;
2886
+ fontSizeSmall: string;
2887
+ fontSizeMedium: string;
2888
+ fontSizeLarge: string;
2889
+ opacityDisabled: string;
2890
+ colorOpacitySecondary: string;
2891
+ colorOpacitySecondaryHover: string;
2892
+ colorOpacitySecondaryPressed: string;
2893
+ colorSecondary: string;
2894
+ colorSecondaryHover: string;
2895
+ colorSecondaryPressed: string;
2896
+ colorTertiary: string;
2897
+ colorTertiaryHover: string;
2898
+ colorTertiaryPressed: string;
2899
+ colorQuaternary: string;
2900
+ colorQuaternaryHover: string;
2901
+ colorQuaternaryPressed: string;
2902
+ color: string;
2903
+ colorHover: string;
2904
+ colorPressed: string;
2905
+ colorFocus: string;
2906
+ colorDisabled: string;
2907
+ textColor: string;
2908
+ textColorTertiary: string;
2909
+ textColorHover: string;
2910
+ textColorPressed: string;
2911
+ textColorFocus: string;
2912
+ textColorDisabled: string;
2913
+ textColorText: string;
2914
+ textColorTextHover: string;
2915
+ textColorTextPressed: string;
2916
+ textColorTextFocus: string;
2917
+ textColorTextDisabled: string;
2918
+ textColorGhost: string;
2919
+ textColorGhostHover: string;
2920
+ textColorGhostPressed: string;
2921
+ textColorGhostFocus: string;
2922
+ textColorGhostDisabled: string;
2923
+ border: string;
2924
+ borderHover: string;
2925
+ borderPressed: string;
2926
+ borderFocus: string;
2927
+ borderDisabled: string;
2928
+ rippleColor: string;
2929
+ colorPrimary: string;
2930
+ colorHoverPrimary: string;
2931
+ colorPressedPrimary: string;
2932
+ colorFocusPrimary: string;
2933
+ colorDisabledPrimary: string;
2934
+ textColorPrimary: string;
2935
+ textColorHoverPrimary: string;
2936
+ textColorPressedPrimary: string;
2937
+ textColorFocusPrimary: string;
2938
+ textColorDisabledPrimary: string;
2939
+ textColorTextPrimary: string;
2940
+ textColorTextHoverPrimary: string;
2941
+ textColorTextPressedPrimary: string;
2942
+ textColorTextFocusPrimary: string;
2943
+ textColorTextDisabledPrimary: string;
2944
+ textColorGhostPrimary: string;
2945
+ textColorGhostHoverPrimary: string;
2946
+ textColorGhostPressedPrimary: string;
2947
+ textColorGhostFocusPrimary: string;
2948
+ textColorGhostDisabledPrimary: string;
2949
+ borderPrimary: string;
2950
+ borderHoverPrimary: string;
2951
+ borderPressedPrimary: string;
2952
+ borderFocusPrimary: string;
2953
+ borderDisabledPrimary: string;
2954
+ rippleColorPrimary: string;
2955
+ colorInfo: string;
2956
+ colorHoverInfo: string;
2957
+ colorPressedInfo: string;
2958
+ colorFocusInfo: string;
2959
+ colorDisabledInfo: string;
2960
+ textColorInfo: string;
2961
+ textColorHoverInfo: string;
2962
+ textColorPressedInfo: string;
2963
+ textColorFocusInfo: string;
2964
+ textColorDisabledInfo: string;
2965
+ textColorTextInfo: string;
2966
+ textColorTextHoverInfo: string;
2967
+ textColorTextPressedInfo: string;
2968
+ textColorTextFocusInfo: string;
2969
+ textColorTextDisabledInfo: string;
2970
+ textColorGhostInfo: string;
2971
+ textColorGhostHoverInfo: string;
2972
+ textColorGhostPressedInfo: string;
2973
+ textColorGhostFocusInfo: string;
2974
+ textColorGhostDisabledInfo: string;
2975
+ borderInfo: string;
2976
+ borderHoverInfo: string;
2977
+ borderPressedInfo: string;
2978
+ borderFocusInfo: string;
2979
+ borderDisabledInfo: string;
2980
+ rippleColorInfo: string;
2981
+ colorSuccess: string;
2982
+ colorHoverSuccess: string;
2983
+ colorPressedSuccess: string;
2984
+ colorFocusSuccess: string;
2985
+ colorDisabledSuccess: string;
2986
+ textColorSuccess: string;
2987
+ textColorHoverSuccess: string;
2988
+ textColorPressedSuccess: string;
2989
+ textColorFocusSuccess: string;
2990
+ textColorDisabledSuccess: string;
2991
+ textColorTextSuccess: string;
2992
+ textColorTextHoverSuccess: string;
2993
+ textColorTextPressedSuccess: string;
2994
+ textColorTextFocusSuccess: string;
2995
+ textColorTextDisabledSuccess: string;
2996
+ textColorGhostSuccess: string;
2997
+ textColorGhostHoverSuccess: string;
2998
+ textColorGhostPressedSuccess: string;
2999
+ textColorGhostFocusSuccess: string;
3000
+ textColorGhostDisabledSuccess: string;
3001
+ borderSuccess: string;
3002
+ borderHoverSuccess: string;
3003
+ borderPressedSuccess: string;
3004
+ borderFocusSuccess: string;
3005
+ borderDisabledSuccess: string;
3006
+ rippleColorSuccess: string;
3007
+ colorWarning: string;
3008
+ colorHoverWarning: string;
3009
+ colorPressedWarning: string;
3010
+ colorFocusWarning: string;
3011
+ colorDisabledWarning: string;
3012
+ textColorWarning: string;
3013
+ textColorHoverWarning: string;
3014
+ textColorPressedWarning: string;
3015
+ textColorFocusWarning: string;
3016
+ textColorDisabledWarning: string;
3017
+ textColorTextWarning: string;
3018
+ textColorTextHoverWarning: string;
3019
+ textColorTextPressedWarning: string;
3020
+ textColorTextFocusWarning: string;
3021
+ textColorTextDisabledWarning: string;
3022
+ textColorGhostWarning: string;
3023
+ textColorGhostHoverWarning: string;
3024
+ textColorGhostPressedWarning: string;
3025
+ textColorGhostFocusWarning: string;
3026
+ textColorGhostDisabledWarning: string;
3027
+ borderWarning: string;
3028
+ borderHoverWarning: string;
3029
+ borderPressedWarning: string;
3030
+ borderFocusWarning: string;
3031
+ borderDisabledWarning: string;
3032
+ rippleColorWarning: string;
3033
+ colorError: string;
3034
+ colorHoverError: string;
3035
+ colorPressedError: string;
3036
+ colorFocusError: string;
3037
+ colorDisabledError: string;
3038
+ textColorError: string;
3039
+ textColorHoverError: string;
3040
+ textColorPressedError: string;
3041
+ textColorFocusError: string;
3042
+ textColorDisabledError: string;
3043
+ textColorTextError: string;
3044
+ textColorTextHoverError: string;
3045
+ textColorTextPressedError: string;
3046
+ textColorTextFocusError: string;
3047
+ textColorTextDisabledError: string;
3048
+ textColorGhostError: string;
3049
+ textColorGhostHoverError: string;
3050
+ textColorGhostPressedError: string;
3051
+ textColorGhostFocusError: string;
3052
+ textColorGhostDisabledError: string;
3053
+ borderError: string;
3054
+ borderHoverError: string;
3055
+ borderPressedError: string;
3056
+ borderFocusError: string;
3057
+ borderDisabledError: string;
3058
+ rippleColorError: string;
3059
+ waveOpacity: string;
3060
+ fontWeight: string;
3061
+ fontWeightStrong: string;
3062
+ paddingTiny: string;
3063
+ paddingSmall: string;
3064
+ paddingMedium: string;
3065
+ paddingLarge: string;
3066
+ paddingRoundTiny: string;
3067
+ paddingRoundSmall: string;
3068
+ paddingRoundMedium: string;
3069
+ paddingRoundLarge: string;
3070
+ iconMarginTiny: string;
3071
+ iconMarginSmall: string;
3072
+ iconMarginMedium: string;
3073
+ iconMarginLarge: string;
3074
+ iconSizeTiny: string;
3075
+ iconSizeSmall: string;
3076
+ iconSizeMedium: string;
3077
+ iconSizeLarge: string;
3078
+ rippleDuration: string;
3079
+ }, any>;
3080
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
3081
+ countTextColor: string;
3082
+ heightTiny: string;
3083
+ heightSmall: string;
3084
+ heightMedium: string;
3085
+ heightLarge: string;
3086
+ fontSizeTiny: string;
3087
+ fontSizeSmall: string;
3088
+ fontSizeMedium: string;
3089
+ fontSizeLarge: string;
3090
+ lineHeight: string;
3091
+ lineHeightTextarea: string;
3092
+ borderRadius: string;
3093
+ iconSize: string;
3094
+ groupLabelColor: string;
3095
+ groupLabelTextColor: string;
3096
+ textColor: string;
3097
+ textColorDisabled: string;
3098
+ textDecorationColor: string;
3099
+ caretColor: string;
3100
+ placeholderColor: string;
3101
+ placeholderColorDisabled: string;
3102
+ color: string;
3103
+ colorDisabled: string;
3104
+ colorFocus: string;
3105
+ groupLabelBorder: string;
3106
+ border: string;
3107
+ borderHover: string;
3108
+ borderDisabled: string;
3109
+ borderFocus: string;
3110
+ boxShadowFocus: string;
3111
+ loadingColor: string;
3112
+ loadingColorWarning: string;
3113
+ borderWarning: string;
3114
+ borderHoverWarning: string;
3115
+ colorFocusWarning: string;
3116
+ borderFocusWarning: string;
3117
+ boxShadowFocusWarning: string;
3118
+ caretColorWarning: string;
3119
+ loadingColorError: string;
3120
+ borderError: string;
3121
+ borderHoverError: string;
3122
+ colorFocusError: string;
3123
+ borderFocusError: string;
3124
+ boxShadowFocusError: string;
3125
+ caretColorError: string;
3126
+ clearColor: string;
3127
+ clearColorHover: string;
3128
+ clearColorPressed: string;
3129
+ iconColor: string;
3130
+ iconColorDisabled: string;
3131
+ iconColorHover: string;
3132
+ iconColorPressed: string;
3133
+ suffixTextColor: string;
3134
+ paddingTiny: string;
3135
+ paddingSmall: string;
3136
+ paddingMedium: string;
3137
+ paddingLarge: string;
3138
+ clearSize: string;
3139
+ }, any>;
3140
+ }>>;
3141
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
3142
+ iconColorDisabled: string;
3143
+ }, {
3144
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
3145
+ heightTiny: string;
3146
+ heightSmall: string;
3147
+ heightMedium: string;
3148
+ heightLarge: string;
3149
+ borderRadiusTiny: string;
3150
+ borderRadiusSmall: string;
3151
+ borderRadiusMedium: string;
3152
+ borderRadiusLarge: string;
3153
+ fontSizeTiny: string;
3154
+ fontSizeSmall: string;
3155
+ fontSizeMedium: string;
3156
+ fontSizeLarge: string;
3157
+ opacityDisabled: string;
3158
+ colorOpacitySecondary: string;
3159
+ colorOpacitySecondaryHover: string;
3160
+ colorOpacitySecondaryPressed: string;
3161
+ colorSecondary: string;
3162
+ colorSecondaryHover: string;
3163
+ colorSecondaryPressed: string;
3164
+ colorTertiary: string;
3165
+ colorTertiaryHover: string;
3166
+ colorTertiaryPressed: string;
3167
+ colorQuaternary: string;
3168
+ colorQuaternaryHover: string;
3169
+ colorQuaternaryPressed: string;
3170
+ color: string;
3171
+ colorHover: string;
3172
+ colorPressed: string;
3173
+ colorFocus: string;
3174
+ colorDisabled: string;
3175
+ textColor: string;
3176
+ textColorTertiary: string;
3177
+ textColorHover: string;
3178
+ textColorPressed: string;
3179
+ textColorFocus: string;
3180
+ textColorDisabled: string;
3181
+ textColorText: string;
3182
+ textColorTextHover: string;
3183
+ textColorTextPressed: string;
3184
+ textColorTextFocus: string;
3185
+ textColorTextDisabled: string;
3186
+ textColorGhost: string;
3187
+ textColorGhostHover: string;
3188
+ textColorGhostPressed: string;
3189
+ textColorGhostFocus: string;
3190
+ textColorGhostDisabled: string;
3191
+ border: string;
3192
+ borderHover: string;
3193
+ borderPressed: string;
3194
+ borderFocus: string;
3195
+ borderDisabled: string;
3196
+ rippleColor: string;
3197
+ colorPrimary: string;
3198
+ colorHoverPrimary: string;
3199
+ colorPressedPrimary: string;
3200
+ colorFocusPrimary: string;
3201
+ colorDisabledPrimary: string;
3202
+ textColorPrimary: string;
3203
+ textColorHoverPrimary: string;
3204
+ textColorPressedPrimary: string;
3205
+ textColorFocusPrimary: string;
3206
+ textColorDisabledPrimary: string;
3207
+ textColorTextPrimary: string;
3208
+ textColorTextHoverPrimary: string;
3209
+ textColorTextPressedPrimary: string;
3210
+ textColorTextFocusPrimary: string;
3211
+ textColorTextDisabledPrimary: string;
3212
+ textColorGhostPrimary: string;
3213
+ textColorGhostHoverPrimary: string;
3214
+ textColorGhostPressedPrimary: string;
3215
+ textColorGhostFocusPrimary: string;
3216
+ textColorGhostDisabledPrimary: string;
3217
+ borderPrimary: string;
3218
+ borderHoverPrimary: string;
3219
+ borderPressedPrimary: string;
3220
+ borderFocusPrimary: string;
3221
+ borderDisabledPrimary: string;
3222
+ rippleColorPrimary: string;
3223
+ colorInfo: string;
3224
+ colorHoverInfo: string;
3225
+ colorPressedInfo: string;
3226
+ colorFocusInfo: string;
3227
+ colorDisabledInfo: string;
3228
+ textColorInfo: string;
3229
+ textColorHoverInfo: string;
3230
+ textColorPressedInfo: string;
3231
+ textColorFocusInfo: string;
3232
+ textColorDisabledInfo: string;
3233
+ textColorTextInfo: string;
3234
+ textColorTextHoverInfo: string;
3235
+ textColorTextPressedInfo: string;
3236
+ textColorTextFocusInfo: string;
3237
+ textColorTextDisabledInfo: string;
3238
+ textColorGhostInfo: string;
3239
+ textColorGhostHoverInfo: string;
3240
+ textColorGhostPressedInfo: string;
3241
+ textColorGhostFocusInfo: string;
3242
+ textColorGhostDisabledInfo: string;
3243
+ borderInfo: string;
3244
+ borderHoverInfo: string;
3245
+ borderPressedInfo: string;
3246
+ borderFocusInfo: string;
3247
+ borderDisabledInfo: string;
3248
+ rippleColorInfo: string;
3249
+ colorSuccess: string;
3250
+ colorHoverSuccess: string;
3251
+ colorPressedSuccess: string;
3252
+ colorFocusSuccess: string;
3253
+ colorDisabledSuccess: string;
3254
+ textColorSuccess: string;
3255
+ textColorHoverSuccess: string;
3256
+ textColorPressedSuccess: string;
3257
+ textColorFocusSuccess: string;
3258
+ textColorDisabledSuccess: string;
3259
+ textColorTextSuccess: string;
3260
+ textColorTextHoverSuccess: string;
3261
+ textColorTextPressedSuccess: string;
3262
+ textColorTextFocusSuccess: string;
3263
+ textColorTextDisabledSuccess: string;
3264
+ textColorGhostSuccess: string;
3265
+ textColorGhostHoverSuccess: string;
3266
+ textColorGhostPressedSuccess: string;
3267
+ textColorGhostFocusSuccess: string;
3268
+ textColorGhostDisabledSuccess: string;
3269
+ borderSuccess: string;
3270
+ borderHoverSuccess: string;
3271
+ borderPressedSuccess: string;
3272
+ borderFocusSuccess: string;
3273
+ borderDisabledSuccess: string;
3274
+ rippleColorSuccess: string;
3275
+ colorWarning: string;
3276
+ colorHoverWarning: string;
3277
+ colorPressedWarning: string;
3278
+ colorFocusWarning: string;
3279
+ colorDisabledWarning: string;
3280
+ textColorWarning: string;
3281
+ textColorHoverWarning: string;
3282
+ textColorPressedWarning: string;
3283
+ textColorFocusWarning: string;
3284
+ textColorDisabledWarning: string;
3285
+ textColorTextWarning: string;
3286
+ textColorTextHoverWarning: string;
3287
+ textColorTextPressedWarning: string;
3288
+ textColorTextFocusWarning: string;
3289
+ textColorTextDisabledWarning: string;
3290
+ textColorGhostWarning: string;
3291
+ textColorGhostHoverWarning: string;
3292
+ textColorGhostPressedWarning: string;
3293
+ textColorGhostFocusWarning: string;
3294
+ textColorGhostDisabledWarning: string;
3295
+ borderWarning: string;
3296
+ borderHoverWarning: string;
3297
+ borderPressedWarning: string;
3298
+ borderFocusWarning: string;
3299
+ borderDisabledWarning: string;
3300
+ rippleColorWarning: string;
3301
+ colorError: string;
3302
+ colorHoverError: string;
3303
+ colorPressedError: string;
3304
+ colorFocusError: string;
3305
+ colorDisabledError: string;
3306
+ textColorError: string;
3307
+ textColorHoverError: string;
3308
+ textColorPressedError: string;
3309
+ textColorFocusError: string;
3310
+ textColorDisabledError: string;
3311
+ textColorTextError: string;
3312
+ textColorTextHoverError: string;
3313
+ textColorTextPressedError: string;
3314
+ textColorTextFocusError: string;
3315
+ textColorTextDisabledError: string;
3316
+ textColorGhostError: string;
3317
+ textColorGhostHoverError: string;
3318
+ textColorGhostPressedError: string;
3319
+ textColorGhostFocusError: string;
3320
+ textColorGhostDisabledError: string;
3321
+ borderError: string;
3322
+ borderHoverError: string;
3323
+ borderPressedError: string;
3324
+ borderFocusError: string;
3325
+ borderDisabledError: string;
3326
+ rippleColorError: string;
3327
+ waveOpacity: string;
3328
+ fontWeight: string;
3329
+ fontWeightStrong: string;
3330
+ paddingTiny: string;
3331
+ paddingSmall: string;
3332
+ paddingMedium: string;
3333
+ paddingLarge: string;
3334
+ paddingRoundTiny: string;
3335
+ paddingRoundSmall: string;
3336
+ paddingRoundMedium: string;
3337
+ paddingRoundLarge: string;
3338
+ iconMarginTiny: string;
3339
+ iconMarginSmall: string;
3340
+ iconMarginMedium: string;
3341
+ iconMarginLarge: string;
3342
+ iconSizeTiny: string;
3343
+ iconSizeSmall: string;
3344
+ iconSizeMedium: string;
3345
+ iconSizeLarge: string;
3346
+ rippleDuration: string;
3347
+ }, any>;
3348
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
3349
+ countTextColor: string;
3350
+ heightTiny: string;
3351
+ heightSmall: string;
3352
+ heightMedium: string;
3353
+ heightLarge: string;
3354
+ fontSizeTiny: string;
3355
+ fontSizeSmall: string;
3356
+ fontSizeMedium: string;
3357
+ fontSizeLarge: string;
3358
+ lineHeight: string;
3359
+ lineHeightTextarea: string;
3360
+ borderRadius: string;
3361
+ iconSize: string;
3362
+ groupLabelColor: string;
3363
+ groupLabelTextColor: string;
3364
+ textColor: string;
3365
+ textColorDisabled: string;
3366
+ textDecorationColor: string;
3367
+ caretColor: string;
3368
+ placeholderColor: string;
3369
+ placeholderColorDisabled: string;
3370
+ color: string;
3371
+ colorDisabled: string;
3372
+ colorFocus: string;
3373
+ groupLabelBorder: string;
3374
+ border: string;
3375
+ borderHover: string;
3376
+ borderDisabled: string;
3377
+ borderFocus: string;
3378
+ boxShadowFocus: string;
3379
+ loadingColor: string;
3380
+ loadingColorWarning: string;
3381
+ borderWarning: string;
3382
+ borderHoverWarning: string;
3383
+ colorFocusWarning: string;
3384
+ borderFocusWarning: string;
3385
+ boxShadowFocusWarning: string;
3386
+ caretColorWarning: string;
3387
+ loadingColorError: string;
3388
+ borderError: string;
3389
+ borderHoverError: string;
3390
+ colorFocusError: string;
3391
+ borderFocusError: string;
3392
+ boxShadowFocusError: string;
3393
+ caretColorError: string;
3394
+ clearColor: string;
3395
+ clearColorHover: string;
3396
+ clearColorPressed: string;
3397
+ iconColor: string;
3398
+ iconColorDisabled: string;
3399
+ iconColorHover: string;
3400
+ iconColorPressed: string;
3401
+ suffixTextColor: string;
3402
+ paddingTiny: string;
3403
+ paddingSmall: string;
3404
+ paddingMedium: string;
3405
+ paddingLarge: string;
3406
+ clearSize: string;
3407
+ }, any>;
3408
+ }>>>;
3409
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
3410
+ iconColorDisabled: string;
3411
+ }, {
3412
+ Button: import("naive-ui/es/_mixins").Theme<"Button", {
3413
+ heightTiny: string;
3414
+ heightSmall: string;
3415
+ heightMedium: string;
3416
+ heightLarge: string;
3417
+ borderRadiusTiny: string;
3418
+ borderRadiusSmall: string;
3419
+ borderRadiusMedium: string;
3420
+ borderRadiusLarge: string;
3421
+ fontSizeTiny: string;
3422
+ fontSizeSmall: string;
3423
+ fontSizeMedium: string;
3424
+ fontSizeLarge: string;
3425
+ opacityDisabled: string;
3426
+ colorOpacitySecondary: string;
3427
+ colorOpacitySecondaryHover: string;
3428
+ colorOpacitySecondaryPressed: string;
3429
+ colorSecondary: string;
3430
+ colorSecondaryHover: string;
3431
+ colorSecondaryPressed: string;
3432
+ colorTertiary: string;
3433
+ colorTertiaryHover: string;
3434
+ colorTertiaryPressed: string;
3435
+ colorQuaternary: string;
3436
+ colorQuaternaryHover: string;
3437
+ colorQuaternaryPressed: string;
3438
+ color: string;
3439
+ colorHover: string;
3440
+ colorPressed: string;
3441
+ colorFocus: string;
3442
+ colorDisabled: string;
3443
+ textColor: string;
3444
+ textColorTertiary: string;
3445
+ textColorHover: string;
3446
+ textColorPressed: string;
3447
+ textColorFocus: string;
3448
+ textColorDisabled: string;
3449
+ textColorText: string;
3450
+ textColorTextHover: string;
3451
+ textColorTextPressed: string;
3452
+ textColorTextFocus: string;
3453
+ textColorTextDisabled: string;
3454
+ textColorGhost: string;
3455
+ textColorGhostHover: string;
3456
+ textColorGhostPressed: string;
3457
+ textColorGhostFocus: string;
3458
+ textColorGhostDisabled: string;
3459
+ border: string;
3460
+ borderHover: string;
3461
+ borderPressed: string;
3462
+ borderFocus: string;
3463
+ borderDisabled: string;
3464
+ rippleColor: string;
3465
+ colorPrimary: string;
3466
+ colorHoverPrimary: string;
3467
+ colorPressedPrimary: string;
3468
+ colorFocusPrimary: string;
3469
+ colorDisabledPrimary: string;
3470
+ textColorPrimary: string;
3471
+ textColorHoverPrimary: string;
3472
+ textColorPressedPrimary: string;
3473
+ textColorFocusPrimary: string;
3474
+ textColorDisabledPrimary: string;
3475
+ textColorTextPrimary: string;
3476
+ textColorTextHoverPrimary: string;
3477
+ textColorTextPressedPrimary: string;
3478
+ textColorTextFocusPrimary: string;
3479
+ textColorTextDisabledPrimary: string;
3480
+ textColorGhostPrimary: string;
3481
+ textColorGhostHoverPrimary: string;
3482
+ textColorGhostPressedPrimary: string;
3483
+ textColorGhostFocusPrimary: string;
3484
+ textColorGhostDisabledPrimary: string;
3485
+ borderPrimary: string;
3486
+ borderHoverPrimary: string;
3487
+ borderPressedPrimary: string;
3488
+ borderFocusPrimary: string;
3489
+ borderDisabledPrimary: string;
3490
+ rippleColorPrimary: string;
3491
+ colorInfo: string;
3492
+ colorHoverInfo: string;
3493
+ colorPressedInfo: string;
3494
+ colorFocusInfo: string;
3495
+ colorDisabledInfo: string;
3496
+ textColorInfo: string;
3497
+ textColorHoverInfo: string;
3498
+ textColorPressedInfo: string;
3499
+ textColorFocusInfo: string;
3500
+ textColorDisabledInfo: string;
3501
+ textColorTextInfo: string;
3502
+ textColorTextHoverInfo: string;
3503
+ textColorTextPressedInfo: string;
3504
+ textColorTextFocusInfo: string;
3505
+ textColorTextDisabledInfo: string;
3506
+ textColorGhostInfo: string;
3507
+ textColorGhostHoverInfo: string;
3508
+ textColorGhostPressedInfo: string;
3509
+ textColorGhostFocusInfo: string;
3510
+ textColorGhostDisabledInfo: string;
3511
+ borderInfo: string;
3512
+ borderHoverInfo: string;
3513
+ borderPressedInfo: string;
3514
+ borderFocusInfo: string;
3515
+ borderDisabledInfo: string;
3516
+ rippleColorInfo: string;
3517
+ colorSuccess: string;
3518
+ colorHoverSuccess: string;
3519
+ colorPressedSuccess: string;
3520
+ colorFocusSuccess: string;
3521
+ colorDisabledSuccess: string;
3522
+ textColorSuccess: string;
3523
+ textColorHoverSuccess: string;
3524
+ textColorPressedSuccess: string;
3525
+ textColorFocusSuccess: string;
3526
+ textColorDisabledSuccess: string;
3527
+ textColorTextSuccess: string;
3528
+ textColorTextHoverSuccess: string;
3529
+ textColorTextPressedSuccess: string;
3530
+ textColorTextFocusSuccess: string;
3531
+ textColorTextDisabledSuccess: string;
3532
+ textColorGhostSuccess: string;
3533
+ textColorGhostHoverSuccess: string;
3534
+ textColorGhostPressedSuccess: string;
3535
+ textColorGhostFocusSuccess: string;
3536
+ textColorGhostDisabledSuccess: string;
3537
+ borderSuccess: string;
3538
+ borderHoverSuccess: string;
3539
+ borderPressedSuccess: string;
3540
+ borderFocusSuccess: string;
3541
+ borderDisabledSuccess: string;
3542
+ rippleColorSuccess: string;
3543
+ colorWarning: string;
3544
+ colorHoverWarning: string;
3545
+ colorPressedWarning: string;
3546
+ colorFocusWarning: string;
3547
+ colorDisabledWarning: string;
3548
+ textColorWarning: string;
3549
+ textColorHoverWarning: string;
3550
+ textColorPressedWarning: string;
3551
+ textColorFocusWarning: string;
3552
+ textColorDisabledWarning: string;
3553
+ textColorTextWarning: string;
3554
+ textColorTextHoverWarning: string;
3555
+ textColorTextPressedWarning: string;
3556
+ textColorTextFocusWarning: string;
3557
+ textColorTextDisabledWarning: string;
3558
+ textColorGhostWarning: string;
3559
+ textColorGhostHoverWarning: string;
3560
+ textColorGhostPressedWarning: string;
3561
+ textColorGhostFocusWarning: string;
3562
+ textColorGhostDisabledWarning: string;
3563
+ borderWarning: string;
3564
+ borderHoverWarning: string;
3565
+ borderPressedWarning: string;
3566
+ borderFocusWarning: string;
3567
+ borderDisabledWarning: string;
3568
+ rippleColorWarning: string;
3569
+ colorError: string;
3570
+ colorHoverError: string;
3571
+ colorPressedError: string;
3572
+ colorFocusError: string;
3573
+ colorDisabledError: string;
3574
+ textColorError: string;
3575
+ textColorHoverError: string;
3576
+ textColorPressedError: string;
3577
+ textColorFocusError: string;
3578
+ textColorDisabledError: string;
3579
+ textColorTextError: string;
3580
+ textColorTextHoverError: string;
3581
+ textColorTextPressedError: string;
3582
+ textColorTextFocusError: string;
3583
+ textColorTextDisabledError: string;
3584
+ textColorGhostError: string;
3585
+ textColorGhostHoverError: string;
3586
+ textColorGhostPressedError: string;
3587
+ textColorGhostFocusError: string;
3588
+ textColorGhostDisabledError: string;
3589
+ borderError: string;
3590
+ borderHoverError: string;
3591
+ borderPressedError: string;
3592
+ borderFocusError: string;
3593
+ borderDisabledError: string;
3594
+ rippleColorError: string;
3595
+ waveOpacity: string;
3596
+ fontWeight: string;
3597
+ fontWeightStrong: string;
3598
+ paddingTiny: string;
3599
+ paddingSmall: string;
3600
+ paddingMedium: string;
3601
+ paddingLarge: string;
3602
+ paddingRoundTiny: string;
3603
+ paddingRoundSmall: string;
3604
+ paddingRoundMedium: string;
3605
+ paddingRoundLarge: string;
3606
+ iconMarginTiny: string;
3607
+ iconMarginSmall: string;
3608
+ iconMarginMedium: string;
3609
+ iconMarginLarge: string;
3610
+ iconSizeTiny: string;
3611
+ iconSizeSmall: string;
3612
+ iconSizeMedium: string;
3613
+ iconSizeLarge: string;
3614
+ rippleDuration: string;
3615
+ }, any>;
3616
+ Input: import("naive-ui/es/_mixins").Theme<"Input", {
3617
+ countTextColor: string;
3618
+ heightTiny: string;
3619
+ heightSmall: string;
3620
+ heightMedium: string;
3621
+ heightLarge: string;
3622
+ fontSizeTiny: string;
3623
+ fontSizeSmall: string;
3624
+ fontSizeMedium: string;
3625
+ fontSizeLarge: string;
3626
+ lineHeight: string;
3627
+ lineHeightTextarea: string;
3628
+ borderRadius: string;
3629
+ iconSize: string;
3630
+ groupLabelColor: string;
3631
+ groupLabelTextColor: string;
3632
+ textColor: string;
3633
+ textColorDisabled: string;
3634
+ textDecorationColor: string;
3635
+ caretColor: string;
3636
+ placeholderColor: string;
3637
+ placeholderColorDisabled: string;
3638
+ color: string;
3639
+ colorDisabled: string;
3640
+ colorFocus: string;
3641
+ groupLabelBorder: string;
3642
+ border: string;
3643
+ borderHover: string;
3644
+ borderDisabled: string;
3645
+ borderFocus: string;
3646
+ boxShadowFocus: string;
3647
+ loadingColor: string;
3648
+ loadingColorWarning: string;
3649
+ borderWarning: string;
3650
+ borderHoverWarning: string;
3651
+ colorFocusWarning: string;
3652
+ borderFocusWarning: string;
3653
+ boxShadowFocusWarning: string;
3654
+ caretColorWarning: string;
3655
+ loadingColorError: string;
3656
+ borderError: string;
3657
+ borderHoverError: string;
3658
+ colorFocusError: string;
3659
+ borderFocusError: string;
3660
+ boxShadowFocusError: string;
3661
+ caretColorError: string;
3662
+ clearColor: string;
3663
+ clearColorHover: string;
3664
+ clearColorPressed: string;
3665
+ iconColor: string;
3666
+ iconColorDisabled: string;
3667
+ iconColorHover: string;
3668
+ iconColorPressed: string;
3669
+ suffixTextColor: string;
3670
+ paddingTiny: string;
3671
+ paddingSmall: string;
3672
+ paddingMedium: string;
3673
+ paddingLarge: string;
3674
+ clearSize: string;
3675
+ }, any>;
3676
+ }>>>;
3677
+ }>>, {
3678
+ readonly: boolean;
3679
+ disabled: boolean | undefined;
3680
+ step: string | number;
3681
+ autofocus: boolean;
3682
+ loading: boolean;
3683
+ bordered: boolean | undefined;
3684
+ clearable: boolean;
3685
+ defaultValue: number | null;
3686
+ keyboard: {
3687
+ ArrowUp?: boolean | undefined;
3688
+ ArrowDown?: boolean | undefined;
3689
+ };
3690
+ showButton: boolean;
3691
+ buttonPlacement: "right" | "both";
3692
+ updateValueOnInput: boolean;
3693
+ }>;
3694
+ TextOverTooltip: import("vue").DefineComponent<{
3695
+ content: {
3696
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
3697
+ };
3698
+ className: StringConstructor;
3699
+ refName: {
3700
+ type: StringConstructor;
3701
+ default: string;
3702
+ };
3703
+ placement: {
3704
+ type: StringConstructor;
3705
+ default: string;
3706
+ };
3707
+ tooltipTitle: {
3708
+ type: (NumberConstructor | StringConstructor)[];
3709
+ default: string;
3710
+ };
3711
+ isAlias: BooleanConstructor;
3712
+ textColor: StringConstructor;
3713
+ }, {
3714
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
3715
+ content: {
3716
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
3717
+ };
3718
+ className: StringConstructor;
3719
+ refName: {
3720
+ type: StringConstructor;
3721
+ default: string;
3722
+ };
3723
+ placement: {
3724
+ type: StringConstructor;
3725
+ default: string;
3726
+ };
3727
+ tooltipTitle: {
3728
+ type: (NumberConstructor | StringConstructor)[];
3729
+ default: string;
3730
+ };
3731
+ isAlias: BooleanConstructor;
3732
+ textColor: StringConstructor;
3733
+ }>> & {
3734
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
3735
+ }>>;
3736
+ curContent: import("vue").ComputedRef<string | Function>;
3737
+ NTooltip: import("vue").DefineComponent<{
3738
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
3739
+ borderRadius: string;
3740
+ boxShadow: string;
3741
+ color: string;
3742
+ textColor: string;
3743
+ padding: string;
3744
+ }, {
3745
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3746
+ fontSize: string;
3747
+ borderRadius: string;
3748
+ color: string;
3749
+ dividerColor: string;
3750
+ textColor: string;
3751
+ boxShadow: string;
3752
+ space: string;
3753
+ spaceArrow: string;
3754
+ arrowOffset: string;
3755
+ arrowOffsetVertical: string;
3756
+ arrowHeight: string;
3757
+ padding: string;
3758
+ }, any>;
3759
+ }>>;
3760
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
3761
+ borderRadius: string;
3762
+ boxShadow: string;
3763
+ color: string;
3764
+ textColor: string;
3765
+ padding: string;
3766
+ }, {
3767
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3768
+ fontSize: string;
3769
+ borderRadius: string;
3770
+ color: string;
3771
+ dividerColor: string;
3772
+ textColor: string;
3773
+ boxShadow: string;
3774
+ space: string;
3775
+ spaceArrow: string;
3776
+ arrowOffset: string;
3777
+ arrowOffsetVertical: string;
3778
+ arrowHeight: string;
3779
+ padding: string;
3780
+ }, any>;
3781
+ }>>>;
3782
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
3783
+ borderRadius: string;
3784
+ boxShadow: string;
3785
+ color: string;
3786
+ textColor: string;
3787
+ padding: string;
3788
+ }, {
3789
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3790
+ fontSize: string;
3791
+ borderRadius: string;
3792
+ color: string;
3793
+ dividerColor: string;
3794
+ textColor: string;
3795
+ boxShadow: string;
3796
+ space: string;
3797
+ spaceArrow: string;
3798
+ arrowOffset: string;
3799
+ arrowOffsetVertical: string;
3800
+ arrowHeight: string;
3801
+ padding: string;
3802
+ }, any>;
3803
+ }>>>;
3804
+ show: {
3805
+ type: PropType<boolean | undefined>;
3806
+ default: undefined;
3807
+ };
3808
+ defaultShow: BooleanConstructor;
3809
+ showArrow: {
3810
+ type: BooleanConstructor;
3811
+ default: boolean;
3812
+ };
3813
+ trigger: {
3814
+ type: PropType<import("naive-ui").PopoverTrigger>;
3815
+ default: string;
3816
+ };
3817
+ delay: {
3818
+ type: NumberConstructor;
3819
+ default: number;
3820
+ };
3821
+ duration: {
3822
+ type: NumberConstructor;
3823
+ default: number;
3824
+ };
3825
+ raw: BooleanConstructor;
3826
+ placement: {
3827
+ type: PropType<import("naive-ui").PopoverPlacement>;
3828
+ default: string;
3829
+ };
3830
+ x: NumberConstructor;
3831
+ y: NumberConstructor;
3832
+ arrowPointToCenter: BooleanConstructor;
3833
+ disabled: BooleanConstructor;
3834
+ getDisabled: PropType<() => boolean>;
3835
+ displayDirective: {
3836
+ type: PropType<"show" | "if">;
3837
+ default: string;
3838
+ };
3839
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
3840
+ flip: {
3841
+ type: BooleanConstructor;
3842
+ default: boolean;
3843
+ };
3844
+ animated: {
3845
+ type: BooleanConstructor;
3846
+ default: boolean;
3847
+ };
3848
+ width: {
3849
+ type: PropType<number | "trigger">;
3850
+ default: undefined;
3851
+ };
3852
+ overlap: BooleanConstructor;
3853
+ keepAliveOnHover: {
3854
+ type: BooleanConstructor;
3855
+ default: boolean;
3856
+ };
3857
+ zIndex: NumberConstructor;
3858
+ to: {
3859
+ type: PropType<string | boolean | HTMLElement>;
3860
+ default: undefined;
3861
+ };
3862
+ scrollable: BooleanConstructor;
3863
+ contentStyle: PropType<string | import("vue").CSSProperties>;
3864
+ headerStyle: PropType<string | import("vue").CSSProperties>;
3865
+ footerStyle: PropType<string | import("vue").CSSProperties>;
3866
+ onClickoutside: PropType<(e: MouseEvent) => void>;
3867
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
3868
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
3869
+ internalDeactivateImmediately: BooleanConstructor;
3870
+ internalSyncTargetWithParent: BooleanConstructor;
3871
+ internalInheritedEventHandlers: {
3872
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
3873
+ default: () => never[];
3874
+ };
3875
+ internalTrapFocus: BooleanConstructor;
3876
+ internalExtraClass: {
3877
+ type: PropType<string[]>;
3878
+ default: () => never[];
3879
+ };
3880
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
3881
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
3882
+ arrow: {
3883
+ type: PropType<boolean | undefined>;
3884
+ default: undefined;
3885
+ };
3886
+ minWidth: NumberConstructor;
3887
+ maxWidth: NumberConstructor;
3888
+ }, {
3889
+ popoverRef: import("vue").Ref<{
3890
+ syncPosition: () => void;
3891
+ setShow: (value: boolean) => void;
3892
+ } | null>;
3893
+ mergedTheme: import("vue").ComputedRef<{
3894
+ common: {
3895
+ baseColor: string;
3896
+ primaryColor: string;
3897
+ primaryColorHover: string;
3898
+ primaryColorPressed: string;
3899
+ primaryColorSuppl: string;
3900
+ infoColor: string;
3901
+ infoColorHover: string;
3902
+ infoColorPressed: string;
3903
+ infoColorSuppl: string;
3904
+ successColor: string;
3905
+ successColorHover: string;
3906
+ successColorPressed: string;
3907
+ successColorSuppl: string;
3908
+ warningColor: string;
3909
+ warningColorHover: string;
3910
+ warningColorPressed: string;
3911
+ warningColorSuppl: string;
3912
+ errorColor: string;
3913
+ errorColorHover: string;
3914
+ errorColorPressed: string;
3915
+ errorColorSuppl: string;
3916
+ textColorBase: string;
3917
+ textColor1: string;
3918
+ textColor2: string;
3919
+ textColor3: string;
3920
+ textColorDisabled: string;
3921
+ placeholderColor: string;
3922
+ placeholderColorDisabled: string;
3923
+ iconColor: string;
3924
+ iconColorHover: string;
3925
+ iconColorPressed: string;
3926
+ iconColorDisabled: string;
3927
+ opacity1: string;
3928
+ opacity2: string;
3929
+ opacity3: string;
3930
+ opacity4: string;
3931
+ opacity5: string;
3932
+ dividerColor: string;
3933
+ borderColor: string;
3934
+ closeIconColor: string;
3935
+ closeIconColorHover: string;
3936
+ closeIconColorPressed: string;
3937
+ closeColorHover: string;
3938
+ closeColorPressed: string;
3939
+ clearColor: string;
3940
+ clearColorHover: string;
3941
+ clearColorPressed: string;
3942
+ scrollbarColor: string;
3943
+ scrollbarColorHover: string;
3944
+ scrollbarWidth: string;
3945
+ scrollbarHeight: string;
3946
+ scrollbarBorderRadius: string;
3947
+ progressRailColor: string;
3948
+ railColor: string;
3949
+ popoverColor: string;
3950
+ tableColor: string;
3951
+ cardColor: string;
3952
+ modalColor: string;
3953
+ bodyColor: string;
3954
+ tagColor: string;
3955
+ avatarColor: string;
3956
+ invertedColor: string;
3957
+ inputColor: string;
3958
+ codeColor: string;
3959
+ tabColor: string;
3960
+ actionColor: string;
3961
+ tableHeaderColor: string;
3962
+ hoverColor: string;
3963
+ tableColorHover: string;
3964
+ tableColorStriped: string;
3965
+ pressedColor: string;
3966
+ opacityDisabled: string;
3967
+ inputColorDisabled: string;
3968
+ buttonColor2: string;
3969
+ buttonColor2Hover: string;
3970
+ buttonColor2Pressed: string;
3971
+ boxShadow1: string;
3972
+ boxShadow2: string;
3973
+ boxShadow3: string;
3974
+ fontFamily: string;
3975
+ fontFamilyMono: string;
3976
+ fontWeight: string;
3977
+ fontWeightStrong: string;
3978
+ cubicBezierEaseInOut: string;
3979
+ cubicBezierEaseOut: string;
3980
+ cubicBezierEaseIn: string;
3981
+ borderRadius: string;
3982
+ borderRadiusSmall: string;
3983
+ fontSize: string;
3984
+ fontSizeMini: string;
3985
+ fontSizeTiny: string;
3986
+ fontSizeSmall: string;
3987
+ fontSizeMedium: string;
3988
+ fontSizeLarge: string;
3989
+ fontSizeHuge: string;
3990
+ lineHeight: string;
3991
+ heightMini: string;
3992
+ heightTiny: string;
3993
+ heightSmall: string;
3994
+ heightMedium: string;
3995
+ heightLarge: string;
3996
+ heightHuge: string;
3997
+ name: "common";
3998
+ };
3999
+ self: {
4000
+ borderRadius: string;
4001
+ boxShadow: string;
4002
+ color: string;
4003
+ textColor: string;
4004
+ padding: string;
4005
+ };
4006
+ peers: {
4007
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
4008
+ fontSize: string;
4009
+ borderRadius: string;
4010
+ color: string;
4011
+ dividerColor: string;
4012
+ textColor: string;
4013
+ boxShadow: string;
4014
+ space: string;
4015
+ spaceArrow: string;
4016
+ arrowOffset: string;
4017
+ arrowOffsetVertical: string;
4018
+ arrowHeight: string;
4019
+ padding: string;
4020
+ }, any>;
4021
+ };
4022
+ peerOverrides: {
4023
+ Popover?: {
4024
+ peers?: {
4025
+ [x: string]: any;
4026
+ } | undefined;
4027
+ } | undefined;
4028
+ };
4029
+ }>;
4030
+ popoverThemeOverrides: import("vue").ComputedRef<{
4031
+ borderRadius: string;
4032
+ boxShadow: string;
4033
+ color: string;
4034
+ textColor: string;
4035
+ padding: string;
4036
+ }>;
4037
+ syncPosition: () => void;
4038
+ setShow: (value: boolean) => void;
4039
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4040
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
4041
+ borderRadius: string;
4042
+ boxShadow: string;
4043
+ color: string;
4044
+ textColor: string;
4045
+ padding: string;
4046
+ }, {
4047
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
4048
+ fontSize: string;
4049
+ borderRadius: string;
4050
+ color: string;
4051
+ dividerColor: string;
4052
+ textColor: string;
4053
+ boxShadow: string;
4054
+ space: string;
4055
+ spaceArrow: string;
4056
+ arrowOffset: string;
4057
+ arrowOffsetVertical: string;
4058
+ arrowHeight: string;
4059
+ padding: string;
4060
+ }, any>;
4061
+ }>>;
4062
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
4063
+ borderRadius: string;
4064
+ boxShadow: string;
4065
+ color: string;
4066
+ textColor: string;
4067
+ padding: string;
4068
+ }, {
4069
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
4070
+ fontSize: string;
4071
+ borderRadius: string;
4072
+ color: string;
4073
+ dividerColor: string;
4074
+ textColor: string;
4075
+ boxShadow: string;
4076
+ space: string;
4077
+ spaceArrow: string;
4078
+ arrowOffset: string;
4079
+ arrowOffsetVertical: string;
4080
+ arrowHeight: string;
4081
+ padding: string;
4082
+ }, any>;
4083
+ }>>>;
4084
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
4085
+ borderRadius: string;
4086
+ boxShadow: string;
4087
+ color: string;
4088
+ textColor: string;
4089
+ padding: string;
4090
+ }, {
4091
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
4092
+ fontSize: string;
4093
+ borderRadius: string;
4094
+ color: string;
4095
+ dividerColor: string;
4096
+ textColor: string;
4097
+ boxShadow: string;
4098
+ space: string;
4099
+ spaceArrow: string;
4100
+ arrowOffset: string;
4101
+ arrowOffsetVertical: string;
4102
+ arrowHeight: string;
4103
+ padding: string;
4104
+ }, any>;
4105
+ }>>>;
4106
+ show: {
4107
+ type: PropType<boolean | undefined>;
4108
+ default: undefined;
4109
+ };
4110
+ defaultShow: BooleanConstructor;
4111
+ showArrow: {
4112
+ type: BooleanConstructor;
4113
+ default: boolean;
4114
+ };
4115
+ trigger: {
4116
+ type: PropType<import("naive-ui").PopoverTrigger>;
4117
+ default: string;
4118
+ };
4119
+ delay: {
4120
+ type: NumberConstructor;
4121
+ default: number;
4122
+ };
4123
+ duration: {
4124
+ type: NumberConstructor;
4125
+ default: number;
4126
+ };
4127
+ raw: BooleanConstructor;
4128
+ placement: {
4129
+ type: PropType<import("naive-ui").PopoverPlacement>;
4130
+ default: string;
4131
+ };
4132
+ x: NumberConstructor;
4133
+ y: NumberConstructor;
4134
+ arrowPointToCenter: BooleanConstructor;
4135
+ disabled: BooleanConstructor;
4136
+ getDisabled: PropType<() => boolean>;
4137
+ displayDirective: {
4138
+ type: PropType<"show" | "if">;
4139
+ default: string;
4140
+ };
4141
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
4142
+ flip: {
4143
+ type: BooleanConstructor;
4144
+ default: boolean;
4145
+ };
4146
+ animated: {
4147
+ type: BooleanConstructor;
4148
+ default: boolean;
4149
+ };
4150
+ width: {
4151
+ type: PropType<number | "trigger">;
4152
+ default: undefined;
4153
+ };
4154
+ overlap: BooleanConstructor;
4155
+ keepAliveOnHover: {
4156
+ type: BooleanConstructor;
4157
+ default: boolean;
4158
+ };
4159
+ zIndex: NumberConstructor;
4160
+ to: {
4161
+ type: PropType<string | boolean | HTMLElement>;
4162
+ default: undefined;
4163
+ };
4164
+ scrollable: BooleanConstructor;
4165
+ contentStyle: PropType<string | import("vue").CSSProperties>;
4166
+ headerStyle: PropType<string | import("vue").CSSProperties>;
4167
+ footerStyle: PropType<string | import("vue").CSSProperties>;
4168
+ onClickoutside: PropType<(e: MouseEvent) => void>;
4169
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
4170
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
4171
+ internalDeactivateImmediately: BooleanConstructor;
4172
+ internalSyncTargetWithParent: BooleanConstructor;
4173
+ internalInheritedEventHandlers: {
4174
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
4175
+ default: () => never[];
4176
+ };
4177
+ internalTrapFocus: BooleanConstructor;
4178
+ internalExtraClass: {
4179
+ type: PropType<string[]>;
4180
+ default: () => never[];
4181
+ };
4182
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
4183
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
4184
+ arrow: {
4185
+ type: PropType<boolean | undefined>;
4186
+ default: undefined;
4187
+ };
4188
+ minWidth: NumberConstructor;
4189
+ maxWidth: NumberConstructor;
4190
+ }>>, {
4191
+ show: boolean | undefined;
4192
+ flip: boolean;
4193
+ width: number | "trigger";
4194
+ disabled: boolean;
4195
+ duration: number;
4196
+ to: string | boolean | HTMLElement;
4197
+ raw: boolean;
4198
+ placement: import("naive-ui").PopoverPlacement;
4199
+ overlap: boolean;
4200
+ scrollable: boolean;
4201
+ trigger: import("naive-ui").PopoverTrigger;
4202
+ showArrow: boolean;
4203
+ delay: number;
4204
+ arrowPointToCenter: boolean;
4205
+ displayDirective: "show" | "if";
4206
+ keepAliveOnHover: boolean;
4207
+ internalDeactivateImmediately: boolean;
4208
+ animated: boolean;
4209
+ internalTrapFocus: boolean;
4210
+ defaultShow: boolean;
4211
+ internalSyncTargetWithParent: boolean;
4212
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
4213
+ internalExtraClass: string[];
4214
+ arrow: boolean | undefined;
4215
+ }>;
4216
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4217
+ content: {
4218
+ type: (NumberConstructor | StringConstructor | FunctionConstructor)[];
4219
+ };
4220
+ className: StringConstructor;
4221
+ refName: {
4222
+ type: StringConstructor;
4223
+ default: string;
4224
+ };
4225
+ placement: {
4226
+ type: StringConstructor;
4227
+ default: string;
4228
+ };
4229
+ tooltipTitle: {
4230
+ type: (NumberConstructor | StringConstructor)[];
4231
+ default: string;
4232
+ };
4233
+ isAlias: BooleanConstructor;
4234
+ textColor: StringConstructor;
4235
+ }>>, {
4236
+ placement: string;
4237
+ refName: string;
4238
+ tooltipTitle: string | number;
4239
+ isAlias: boolean;
4240
+ }>;
4241
+ }, 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<{
4242
+ mainForm: {
4243
+ type: PropObject;
4244
+ default: () => {};
4245
+ };
4246
+ userInfo: {
4247
+ type: PropObject;
4248
+ default: () => {};
4249
+ };
4250
+ styleSetting: {
4251
+ type: PropObject;
4252
+ default: () => {};
4253
+ };
4254
+ defaultValue: {
4255
+ type: PropObject;
4256
+ default: () => {};
4257
+ };
4258
+ dbParams: {
4259
+ type: PropType<AnyObject>;
4260
+ };
4261
+ row: {
4262
+ type: PropObject;
4263
+ default: () => {};
4264
+ };
4265
+ item: {
4266
+ type: PropObject;
4267
+ default: () => {
4268
+ _own: {};
4269
+ };
4270
+ };
4271
+ defaultFieldList: {
4272
+ type: PropType<any[]>;
4273
+ default: () => never[];
4274
+ };
4275
+ cacheUniqueKey: {
4276
+ type: PropObject;
4277
+ default: () => {
4278
+ _own: {};
4279
+ };
4280
+ };
4281
+ params_formId: (NumberConstructor | StringConstructor)[];
4282
+ formType: {
4283
+ type: PropObject;
4284
+ default: () => {
4285
+ _own: {};
4286
+ };
4287
+ };
4288
+ isDetail: {
4289
+ type: BooleanConstructor;
4290
+ default: boolean;
4291
+ };
4292
+ handleFormTableValue: PropType<Func<any[], any>>;
4293
+ }>> & {
4294
+ onTableBlur?: ((...args: any[]) => any) | undefined;
4295
+ onValueOnChange?: ((...args: any[]) => any) | undefined;
4296
+ onHandlerAddOptions?: ((...args: any[]) => any) | undefined;
4297
+ onOpentableSelect?: ((...args: any[]) => any) | undefined;
4298
+ }, {
4299
+ styleSetting: AnyObject;
4300
+ userInfo: AnyObject;
4301
+ defaultValue: AnyObject;
4302
+ row: AnyObject;
4303
+ cacheUniqueKey: AnyObject;
4304
+ formType: AnyObject;
4305
+ isDetail: boolean;
4306
+ item: AnyObject;
4307
+ mainForm: AnyObject;
4308
+ defaultFieldList: any[];
4309
+ }>;
4310
+ export default _default;