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