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