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,1749 @@
1
+ import { PropType } from 'vue';
2
+ declare type TtemType = 'default' | 'success' | 'info' | 'warning' | 'error';
3
+ declare type SubItem = {
4
+ title: string;
5
+ name: string;
6
+ time: string;
7
+ extraText?: string;
8
+ content: string;
9
+ };
10
+ declare type Item = {
11
+ type: TtemType;
12
+ subItem: SubItem[];
13
+ };
14
+ declare const _default: import("vue").DefineComponent<{
15
+ items: {
16
+ type: ArrayConstructor;
17
+ required: false;
18
+ default: () => never[];
19
+ };
20
+ }, {
21
+ props: {
22
+ items: Array<Item>;
23
+ };
24
+ NTimeline: import("vue").DefineComponent<{
25
+ readonly horizontal: BooleanConstructor;
26
+ readonly itemPlacement: {
27
+ readonly type: PropType<"left" | "right">;
28
+ readonly default: "left";
29
+ };
30
+ readonly size: {
31
+ readonly type: PropType<"medium" | "large">;
32
+ readonly default: "medium";
33
+ };
34
+ readonly iconSize: NumberConstructor;
35
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Timeline", {
36
+ contentFontSize: string;
37
+ titleFontWeight: string;
38
+ circleBorder: string;
39
+ circleBorderInfo: string;
40
+ circleBorderError: string;
41
+ circleBorderSuccess: string;
42
+ circleBorderWarning: string;
43
+ iconColor: string;
44
+ iconColorInfo: string;
45
+ iconColorError: string;
46
+ iconColorSuccess: string;
47
+ iconColorWarning: string;
48
+ titleTextColor: string;
49
+ contentTextColor: string;
50
+ metaTextColor: string;
51
+ lineColor: string;
52
+ titleMarginMedium: string;
53
+ titleMarginLarge: string;
54
+ titleFontSizeMedium: string;
55
+ titleFontSizeLarge: string;
56
+ iconSizeMedium: string;
57
+ iconSizeLarge: string;
58
+ }, any>>;
59
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Timeline", {
60
+ contentFontSize: string;
61
+ titleFontWeight: string;
62
+ circleBorder: string;
63
+ circleBorderInfo: string;
64
+ circleBorderError: string;
65
+ circleBorderSuccess: string;
66
+ circleBorderWarning: string;
67
+ iconColor: string;
68
+ iconColorInfo: string;
69
+ iconColorError: string;
70
+ iconColorSuccess: string;
71
+ iconColorWarning: string;
72
+ titleTextColor: string;
73
+ contentTextColor: string;
74
+ metaTextColor: string;
75
+ lineColor: string;
76
+ titleMarginMedium: string;
77
+ titleMarginLarge: string;
78
+ titleFontSizeMedium: string;
79
+ titleFontSizeLarge: string;
80
+ iconSizeMedium: string;
81
+ iconSizeLarge: string;
82
+ }, any>>>;
83
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Timeline", {
84
+ contentFontSize: string;
85
+ titleFontWeight: string;
86
+ circleBorder: string;
87
+ circleBorderInfo: string;
88
+ circleBorderError: string;
89
+ circleBorderSuccess: string;
90
+ circleBorderWarning: string;
91
+ iconColor: string;
92
+ iconColorInfo: string;
93
+ iconColorError: string;
94
+ iconColorSuccess: string;
95
+ iconColorWarning: string;
96
+ titleTextColor: string;
97
+ contentTextColor: string;
98
+ metaTextColor: string;
99
+ lineColor: string;
100
+ titleMarginMedium: string;
101
+ titleMarginLarge: string;
102
+ titleFontSizeMedium: string;
103
+ titleFontSizeLarge: string;
104
+ iconSizeMedium: string;
105
+ iconSizeLarge: string;
106
+ }, any>>>;
107
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
108
+ readonly horizontal: BooleanConstructor;
109
+ readonly itemPlacement: {
110
+ readonly type: PropType<"left" | "right">;
111
+ readonly default: "left";
112
+ };
113
+ readonly size: {
114
+ readonly type: PropType<"medium" | "large">;
115
+ readonly default: "medium";
116
+ };
117
+ readonly iconSize: NumberConstructor;
118
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Timeline", {
119
+ contentFontSize: string;
120
+ titleFontWeight: string;
121
+ circleBorder: string;
122
+ circleBorderInfo: string;
123
+ circleBorderError: string;
124
+ circleBorderSuccess: string;
125
+ circleBorderWarning: string;
126
+ iconColor: string;
127
+ iconColorInfo: string;
128
+ iconColorError: string;
129
+ iconColorSuccess: string;
130
+ iconColorWarning: string;
131
+ titleTextColor: string;
132
+ contentTextColor: string;
133
+ metaTextColor: string;
134
+ lineColor: string;
135
+ titleMarginMedium: string;
136
+ titleMarginLarge: string;
137
+ titleFontSizeMedium: string;
138
+ titleFontSizeLarge: string;
139
+ iconSizeMedium: string;
140
+ iconSizeLarge: string;
141
+ }, any>>;
142
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Timeline", {
143
+ contentFontSize: string;
144
+ titleFontWeight: string;
145
+ circleBorder: string;
146
+ circleBorderInfo: string;
147
+ circleBorderError: string;
148
+ circleBorderSuccess: string;
149
+ circleBorderWarning: string;
150
+ iconColor: string;
151
+ iconColorInfo: string;
152
+ iconColorError: string;
153
+ iconColorSuccess: string;
154
+ iconColorWarning: string;
155
+ titleTextColor: string;
156
+ contentTextColor: string;
157
+ metaTextColor: string;
158
+ lineColor: string;
159
+ titleMarginMedium: string;
160
+ titleMarginLarge: string;
161
+ titleFontSizeMedium: string;
162
+ titleFontSizeLarge: string;
163
+ iconSizeMedium: string;
164
+ iconSizeLarge: string;
165
+ }, any>>>;
166
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Timeline", {
167
+ contentFontSize: string;
168
+ titleFontWeight: string;
169
+ circleBorder: string;
170
+ circleBorderInfo: string;
171
+ circleBorderError: string;
172
+ circleBorderSuccess: string;
173
+ circleBorderWarning: string;
174
+ iconColor: string;
175
+ iconColorInfo: string;
176
+ iconColorError: string;
177
+ iconColorSuccess: string;
178
+ iconColorWarning: string;
179
+ titleTextColor: string;
180
+ contentTextColor: string;
181
+ metaTextColor: string;
182
+ lineColor: string;
183
+ titleMarginMedium: string;
184
+ titleMarginLarge: string;
185
+ titleFontSizeMedium: string;
186
+ titleFontSizeLarge: string;
187
+ iconSizeMedium: string;
188
+ iconSizeLarge: string;
189
+ }, any>>>;
190
+ }>>, {
191
+ readonly size: "medium" | "large";
192
+ readonly horizontal: boolean;
193
+ readonly itemPlacement: "left" | "right";
194
+ }>;
195
+ NTimelineItem: import("vue").DefineComponent<{
196
+ time: PropType<string | number>;
197
+ title: StringConstructor;
198
+ content: StringConstructor;
199
+ color: StringConstructor;
200
+ lineType: {
201
+ type: PropType<"default" | "dashed">;
202
+ default: string;
203
+ };
204
+ type: {
205
+ type: PropType<"default" | "info" | "success" | "warning" | "error">;
206
+ default: string;
207
+ };
208
+ }, {
209
+ mergedClsPrefix: import("vue").Ref<string>;
210
+ cssVars: import("vue").ComputedRef<{
211
+ '--n-bezier': string;
212
+ '--n-circle-border': string;
213
+ '--n-icon-color': string;
214
+ '--n-content-font-size': string;
215
+ '--n-content-text-color': string;
216
+ '--n-line-color': string;
217
+ '--n-meta-text-color': string;
218
+ '--n-title-font-size': string;
219
+ '--n-title-font-weight': string;
220
+ '--n-title-margin': string;
221
+ '--n-title-text-color': string;
222
+ '--n-icon-size': string;
223
+ }> | undefined;
224
+ themeClass: import("vue").Ref<string> | undefined;
225
+ onRender: (() => void) | undefined;
226
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
227
+ time: PropType<string | number>;
228
+ title: StringConstructor;
229
+ content: StringConstructor;
230
+ color: StringConstructor;
231
+ lineType: {
232
+ type: PropType<"default" | "dashed">;
233
+ default: string;
234
+ };
235
+ type: {
236
+ type: PropType<"default" | "info" | "success" | "warning" | "error">;
237
+ default: string;
238
+ };
239
+ }>>, {
240
+ type: "default" | "info" | "success" | "warning" | "error";
241
+ lineType: "default" | "dashed";
242
+ }>;
243
+ NButton: import("vue").DefineComponent<{
244
+ readonly color: StringConstructor;
245
+ readonly textColor: StringConstructor;
246
+ readonly text: BooleanConstructor;
247
+ readonly block: BooleanConstructor;
248
+ readonly loading: BooleanConstructor;
249
+ readonly disabled: BooleanConstructor;
250
+ readonly circle: BooleanConstructor;
251
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
252
+ readonly ghost: BooleanConstructor;
253
+ readonly round: BooleanConstructor;
254
+ readonly secondary: BooleanConstructor;
255
+ readonly tertiary: BooleanConstructor;
256
+ readonly quaternary: BooleanConstructor;
257
+ readonly strong: BooleanConstructor;
258
+ readonly focusable: {
259
+ readonly type: BooleanConstructor;
260
+ readonly default: true;
261
+ };
262
+ readonly keyboard: {
263
+ readonly type: BooleanConstructor;
264
+ readonly default: true;
265
+ };
266
+ readonly tag: {
267
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
268
+ readonly default: "button";
269
+ };
270
+ readonly type: {
271
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
272
+ readonly default: "default";
273
+ };
274
+ readonly dashed: BooleanConstructor;
275
+ readonly iconPlacement: {
276
+ readonly type: PropType<"left" | "right">;
277
+ readonly default: "left";
278
+ };
279
+ readonly attrType: {
280
+ readonly type: PropType<"button" | "reset" | "submit">;
281
+ readonly default: "button";
282
+ };
283
+ readonly bordered: {
284
+ readonly type: BooleanConstructor;
285
+ readonly default: true;
286
+ };
287
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
288
+ readonly nativeFocusBehavior: {
289
+ readonly type: BooleanConstructor;
290
+ readonly default: boolean;
291
+ };
292
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
293
+ heightTiny: string;
294
+ heightSmall: string;
295
+ heightMedium: string;
296
+ heightLarge: string;
297
+ borderRadiusTiny: string;
298
+ borderRadiusSmall: string;
299
+ borderRadiusMedium: string;
300
+ borderRadiusLarge: string;
301
+ fontSizeTiny: string;
302
+ fontSizeSmall: string;
303
+ fontSizeMedium: string;
304
+ fontSizeLarge: string;
305
+ opacityDisabled: string;
306
+ colorOpacitySecondary: string;
307
+ colorOpacitySecondaryHover: string;
308
+ colorOpacitySecondaryPressed: string;
309
+ colorSecondary: string;
310
+ colorSecondaryHover: string;
311
+ colorSecondaryPressed: string;
312
+ colorTertiary: string;
313
+ colorTertiaryHover: string;
314
+ colorTertiaryPressed: string;
315
+ colorQuaternary: string;
316
+ colorQuaternaryHover: string;
317
+ colorQuaternaryPressed: string;
318
+ color: string;
319
+ colorHover: string;
320
+ colorPressed: string;
321
+ colorFocus: string;
322
+ colorDisabled: string;
323
+ textColor: string;
324
+ textColorTertiary: string;
325
+ textColorHover: string;
326
+ textColorPressed: string;
327
+ textColorFocus: string;
328
+ textColorDisabled: string;
329
+ textColorText: string;
330
+ textColorTextHover: string;
331
+ textColorTextPressed: string;
332
+ textColorTextFocus: string;
333
+ textColorTextDisabled: string;
334
+ textColorGhost: string;
335
+ textColorGhostHover: string;
336
+ textColorGhostPressed: string;
337
+ textColorGhostFocus: string;
338
+ textColorGhostDisabled: string;
339
+ border: string;
340
+ borderHover: string;
341
+ borderPressed: string;
342
+ borderFocus: string;
343
+ borderDisabled: string;
344
+ rippleColor: string;
345
+ colorPrimary: string;
346
+ colorHoverPrimary: string;
347
+ colorPressedPrimary: string;
348
+ colorFocusPrimary: string;
349
+ colorDisabledPrimary: string;
350
+ textColorPrimary: string;
351
+ textColorHoverPrimary: string;
352
+ textColorPressedPrimary: string;
353
+ textColorFocusPrimary: string;
354
+ textColorDisabledPrimary: string;
355
+ textColorTextPrimary: string;
356
+ textColorTextHoverPrimary: string;
357
+ textColorTextPressedPrimary: string;
358
+ textColorTextFocusPrimary: string;
359
+ textColorTextDisabledPrimary: string;
360
+ textColorGhostPrimary: string;
361
+ textColorGhostHoverPrimary: string;
362
+ textColorGhostPressedPrimary: string;
363
+ textColorGhostFocusPrimary: string;
364
+ textColorGhostDisabledPrimary: string;
365
+ borderPrimary: string;
366
+ borderHoverPrimary: string;
367
+ borderPressedPrimary: string;
368
+ borderFocusPrimary: string;
369
+ borderDisabledPrimary: string;
370
+ rippleColorPrimary: string;
371
+ colorInfo: string;
372
+ colorHoverInfo: string;
373
+ colorPressedInfo: string;
374
+ colorFocusInfo: string;
375
+ colorDisabledInfo: string;
376
+ textColorInfo: string;
377
+ textColorHoverInfo: string;
378
+ textColorPressedInfo: string;
379
+ textColorFocusInfo: string;
380
+ textColorDisabledInfo: string;
381
+ textColorTextInfo: string;
382
+ textColorTextHoverInfo: string;
383
+ textColorTextPressedInfo: string;
384
+ textColorTextFocusInfo: string;
385
+ textColorTextDisabledInfo: string;
386
+ textColorGhostInfo: string;
387
+ textColorGhostHoverInfo: string;
388
+ textColorGhostPressedInfo: string;
389
+ textColorGhostFocusInfo: string;
390
+ textColorGhostDisabledInfo: string;
391
+ borderInfo: string;
392
+ borderHoverInfo: string;
393
+ borderPressedInfo: string;
394
+ borderFocusInfo: string;
395
+ borderDisabledInfo: string;
396
+ rippleColorInfo: string;
397
+ colorSuccess: string;
398
+ colorHoverSuccess: string;
399
+ colorPressedSuccess: string;
400
+ colorFocusSuccess: string;
401
+ colorDisabledSuccess: string;
402
+ textColorSuccess: string;
403
+ textColorHoverSuccess: string;
404
+ textColorPressedSuccess: string;
405
+ textColorFocusSuccess: string;
406
+ textColorDisabledSuccess: string;
407
+ textColorTextSuccess: string;
408
+ textColorTextHoverSuccess: string;
409
+ textColorTextPressedSuccess: string;
410
+ textColorTextFocusSuccess: string;
411
+ textColorTextDisabledSuccess: string;
412
+ textColorGhostSuccess: string;
413
+ textColorGhostHoverSuccess: string;
414
+ textColorGhostPressedSuccess: string;
415
+ textColorGhostFocusSuccess: string;
416
+ textColorGhostDisabledSuccess: string;
417
+ borderSuccess: string;
418
+ borderHoverSuccess: string;
419
+ borderPressedSuccess: string;
420
+ borderFocusSuccess: string;
421
+ borderDisabledSuccess: string;
422
+ rippleColorSuccess: string;
423
+ colorWarning: string;
424
+ colorHoverWarning: string;
425
+ colorPressedWarning: string;
426
+ colorFocusWarning: string;
427
+ colorDisabledWarning: string;
428
+ textColorWarning: string;
429
+ textColorHoverWarning: string;
430
+ textColorPressedWarning: string;
431
+ textColorFocusWarning: string;
432
+ textColorDisabledWarning: string;
433
+ textColorTextWarning: string;
434
+ textColorTextHoverWarning: string;
435
+ textColorTextPressedWarning: string;
436
+ textColorTextFocusWarning: string;
437
+ textColorTextDisabledWarning: string;
438
+ textColorGhostWarning: string;
439
+ textColorGhostHoverWarning: string;
440
+ textColorGhostPressedWarning: string;
441
+ textColorGhostFocusWarning: string;
442
+ textColorGhostDisabledWarning: string;
443
+ borderWarning: string;
444
+ borderHoverWarning: string;
445
+ borderPressedWarning: string;
446
+ borderFocusWarning: string;
447
+ borderDisabledWarning: string;
448
+ rippleColorWarning: string;
449
+ colorError: string;
450
+ colorHoverError: string;
451
+ colorPressedError: string;
452
+ colorFocusError: string;
453
+ colorDisabledError: string;
454
+ textColorError: string;
455
+ textColorHoverError: string;
456
+ textColorPressedError: string;
457
+ textColorFocusError: string;
458
+ textColorDisabledError: string;
459
+ textColorTextError: string;
460
+ textColorTextHoverError: string;
461
+ textColorTextPressedError: string;
462
+ textColorTextFocusError: string;
463
+ textColorTextDisabledError: string;
464
+ textColorGhostError: string;
465
+ textColorGhostHoverError: string;
466
+ textColorGhostPressedError: string;
467
+ textColorGhostFocusError: string;
468
+ textColorGhostDisabledError: string;
469
+ borderError: string;
470
+ borderHoverError: string;
471
+ borderPressedError: string;
472
+ borderFocusError: string;
473
+ borderDisabledError: string;
474
+ rippleColorError: string;
475
+ waveOpacity: string;
476
+ fontWeight: string;
477
+ fontWeightStrong: string;
478
+ paddingTiny: string;
479
+ paddingSmall: string;
480
+ paddingMedium: string;
481
+ paddingLarge: string;
482
+ paddingRoundTiny: string;
483
+ paddingRoundSmall: string;
484
+ paddingRoundMedium: string;
485
+ paddingRoundLarge: string;
486
+ iconMarginTiny: string;
487
+ iconMarginSmall: string;
488
+ iconMarginMedium: string;
489
+ iconMarginLarge: string;
490
+ iconSizeTiny: string;
491
+ iconSizeSmall: string;
492
+ iconSizeMedium: string;
493
+ iconSizeLarge: string;
494
+ rippleDuration: string;
495
+ }, any>>;
496
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
497
+ heightTiny: string;
498
+ heightSmall: string;
499
+ heightMedium: string;
500
+ heightLarge: string;
501
+ borderRadiusTiny: string;
502
+ borderRadiusSmall: string;
503
+ borderRadiusMedium: string;
504
+ borderRadiusLarge: string;
505
+ fontSizeTiny: string;
506
+ fontSizeSmall: string;
507
+ fontSizeMedium: string;
508
+ fontSizeLarge: string;
509
+ opacityDisabled: string;
510
+ colorOpacitySecondary: string;
511
+ colorOpacitySecondaryHover: string;
512
+ colorOpacitySecondaryPressed: string;
513
+ colorSecondary: string;
514
+ colorSecondaryHover: string;
515
+ colorSecondaryPressed: string;
516
+ colorTertiary: string;
517
+ colorTertiaryHover: string;
518
+ colorTertiaryPressed: string;
519
+ colorQuaternary: string;
520
+ colorQuaternaryHover: string;
521
+ colorQuaternaryPressed: string;
522
+ color: string;
523
+ colorHover: string;
524
+ colorPressed: string;
525
+ colorFocus: string;
526
+ colorDisabled: string;
527
+ textColor: string;
528
+ textColorTertiary: string;
529
+ textColorHover: string;
530
+ textColorPressed: string;
531
+ textColorFocus: string;
532
+ textColorDisabled: string;
533
+ textColorText: string;
534
+ textColorTextHover: string;
535
+ textColorTextPressed: string;
536
+ textColorTextFocus: string;
537
+ textColorTextDisabled: string;
538
+ textColorGhost: string;
539
+ textColorGhostHover: string;
540
+ textColorGhostPressed: string;
541
+ textColorGhostFocus: string;
542
+ textColorGhostDisabled: string;
543
+ border: string;
544
+ borderHover: string;
545
+ borderPressed: string;
546
+ borderFocus: string;
547
+ borderDisabled: string;
548
+ rippleColor: string;
549
+ colorPrimary: string;
550
+ colorHoverPrimary: string;
551
+ colorPressedPrimary: string;
552
+ colorFocusPrimary: string;
553
+ colorDisabledPrimary: string;
554
+ textColorPrimary: string;
555
+ textColorHoverPrimary: string;
556
+ textColorPressedPrimary: string;
557
+ textColorFocusPrimary: string;
558
+ textColorDisabledPrimary: string;
559
+ textColorTextPrimary: string;
560
+ textColorTextHoverPrimary: string;
561
+ textColorTextPressedPrimary: string;
562
+ textColorTextFocusPrimary: string;
563
+ textColorTextDisabledPrimary: string;
564
+ textColorGhostPrimary: string;
565
+ textColorGhostHoverPrimary: string;
566
+ textColorGhostPressedPrimary: string;
567
+ textColorGhostFocusPrimary: string;
568
+ textColorGhostDisabledPrimary: string;
569
+ borderPrimary: string;
570
+ borderHoverPrimary: string;
571
+ borderPressedPrimary: string;
572
+ borderFocusPrimary: string;
573
+ borderDisabledPrimary: string;
574
+ rippleColorPrimary: string;
575
+ colorInfo: string;
576
+ colorHoverInfo: string;
577
+ colorPressedInfo: string;
578
+ colorFocusInfo: string;
579
+ colorDisabledInfo: string;
580
+ textColorInfo: string;
581
+ textColorHoverInfo: string;
582
+ textColorPressedInfo: string;
583
+ textColorFocusInfo: string;
584
+ textColorDisabledInfo: string;
585
+ textColorTextInfo: string;
586
+ textColorTextHoverInfo: string;
587
+ textColorTextPressedInfo: string;
588
+ textColorTextFocusInfo: string;
589
+ textColorTextDisabledInfo: string;
590
+ textColorGhostInfo: string;
591
+ textColorGhostHoverInfo: string;
592
+ textColorGhostPressedInfo: string;
593
+ textColorGhostFocusInfo: string;
594
+ textColorGhostDisabledInfo: string;
595
+ borderInfo: string;
596
+ borderHoverInfo: string;
597
+ borderPressedInfo: string;
598
+ borderFocusInfo: string;
599
+ borderDisabledInfo: string;
600
+ rippleColorInfo: string;
601
+ colorSuccess: string;
602
+ colorHoverSuccess: string;
603
+ colorPressedSuccess: string;
604
+ colorFocusSuccess: string;
605
+ colorDisabledSuccess: string;
606
+ textColorSuccess: string;
607
+ textColorHoverSuccess: string;
608
+ textColorPressedSuccess: string;
609
+ textColorFocusSuccess: string;
610
+ textColorDisabledSuccess: string;
611
+ textColorTextSuccess: string;
612
+ textColorTextHoverSuccess: string;
613
+ textColorTextPressedSuccess: string;
614
+ textColorTextFocusSuccess: string;
615
+ textColorTextDisabledSuccess: string;
616
+ textColorGhostSuccess: string;
617
+ textColorGhostHoverSuccess: string;
618
+ textColorGhostPressedSuccess: string;
619
+ textColorGhostFocusSuccess: string;
620
+ textColorGhostDisabledSuccess: string;
621
+ borderSuccess: string;
622
+ borderHoverSuccess: string;
623
+ borderPressedSuccess: string;
624
+ borderFocusSuccess: string;
625
+ borderDisabledSuccess: string;
626
+ rippleColorSuccess: string;
627
+ colorWarning: string;
628
+ colorHoverWarning: string;
629
+ colorPressedWarning: string;
630
+ colorFocusWarning: string;
631
+ colorDisabledWarning: string;
632
+ textColorWarning: string;
633
+ textColorHoverWarning: string;
634
+ textColorPressedWarning: string;
635
+ textColorFocusWarning: string;
636
+ textColorDisabledWarning: string;
637
+ textColorTextWarning: string;
638
+ textColorTextHoverWarning: string;
639
+ textColorTextPressedWarning: string;
640
+ textColorTextFocusWarning: string;
641
+ textColorTextDisabledWarning: string;
642
+ textColorGhostWarning: string;
643
+ textColorGhostHoverWarning: string;
644
+ textColorGhostPressedWarning: string;
645
+ textColorGhostFocusWarning: string;
646
+ textColorGhostDisabledWarning: string;
647
+ borderWarning: string;
648
+ borderHoverWarning: string;
649
+ borderPressedWarning: string;
650
+ borderFocusWarning: string;
651
+ borderDisabledWarning: string;
652
+ rippleColorWarning: string;
653
+ colorError: string;
654
+ colorHoverError: string;
655
+ colorPressedError: string;
656
+ colorFocusError: string;
657
+ colorDisabledError: string;
658
+ textColorError: string;
659
+ textColorHoverError: string;
660
+ textColorPressedError: string;
661
+ textColorFocusError: string;
662
+ textColorDisabledError: string;
663
+ textColorTextError: string;
664
+ textColorTextHoverError: string;
665
+ textColorTextPressedError: string;
666
+ textColorTextFocusError: string;
667
+ textColorTextDisabledError: string;
668
+ textColorGhostError: string;
669
+ textColorGhostHoverError: string;
670
+ textColorGhostPressedError: string;
671
+ textColorGhostFocusError: string;
672
+ textColorGhostDisabledError: string;
673
+ borderError: string;
674
+ borderHoverError: string;
675
+ borderPressedError: string;
676
+ borderFocusError: string;
677
+ borderDisabledError: string;
678
+ rippleColorError: string;
679
+ waveOpacity: string;
680
+ fontWeight: string;
681
+ fontWeightStrong: string;
682
+ paddingTiny: string;
683
+ paddingSmall: string;
684
+ paddingMedium: string;
685
+ paddingLarge: string;
686
+ paddingRoundTiny: string;
687
+ paddingRoundSmall: string;
688
+ paddingRoundMedium: string;
689
+ paddingRoundLarge: string;
690
+ iconMarginTiny: string;
691
+ iconMarginSmall: string;
692
+ iconMarginMedium: string;
693
+ iconMarginLarge: string;
694
+ iconSizeTiny: string;
695
+ iconSizeSmall: string;
696
+ iconSizeMedium: string;
697
+ iconSizeLarge: string;
698
+ rippleDuration: string;
699
+ }, any>>>;
700
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
701
+ heightTiny: string;
702
+ heightSmall: string;
703
+ heightMedium: string;
704
+ heightLarge: string;
705
+ borderRadiusTiny: string;
706
+ borderRadiusSmall: string;
707
+ borderRadiusMedium: string;
708
+ borderRadiusLarge: string;
709
+ fontSizeTiny: string;
710
+ fontSizeSmall: string;
711
+ fontSizeMedium: string;
712
+ fontSizeLarge: string;
713
+ opacityDisabled: string;
714
+ colorOpacitySecondary: string;
715
+ colorOpacitySecondaryHover: string;
716
+ colorOpacitySecondaryPressed: string;
717
+ colorSecondary: string;
718
+ colorSecondaryHover: string;
719
+ colorSecondaryPressed: string;
720
+ colorTertiary: string;
721
+ colorTertiaryHover: string;
722
+ colorTertiaryPressed: string;
723
+ colorQuaternary: string;
724
+ colorQuaternaryHover: string;
725
+ colorQuaternaryPressed: string;
726
+ color: string;
727
+ colorHover: string;
728
+ colorPressed: string;
729
+ colorFocus: string;
730
+ colorDisabled: string;
731
+ textColor: string;
732
+ textColorTertiary: string;
733
+ textColorHover: string;
734
+ textColorPressed: string;
735
+ textColorFocus: string;
736
+ textColorDisabled: string;
737
+ textColorText: string;
738
+ textColorTextHover: string;
739
+ textColorTextPressed: string;
740
+ textColorTextFocus: string;
741
+ textColorTextDisabled: string;
742
+ textColorGhost: string;
743
+ textColorGhostHover: string;
744
+ textColorGhostPressed: string;
745
+ textColorGhostFocus: string;
746
+ textColorGhostDisabled: string;
747
+ border: string;
748
+ borderHover: string;
749
+ borderPressed: string;
750
+ borderFocus: string;
751
+ borderDisabled: string;
752
+ rippleColor: string;
753
+ colorPrimary: string;
754
+ colorHoverPrimary: string;
755
+ colorPressedPrimary: string;
756
+ colorFocusPrimary: string;
757
+ colorDisabledPrimary: string;
758
+ textColorPrimary: string;
759
+ textColorHoverPrimary: string;
760
+ textColorPressedPrimary: string;
761
+ textColorFocusPrimary: string;
762
+ textColorDisabledPrimary: string;
763
+ textColorTextPrimary: string;
764
+ textColorTextHoverPrimary: string;
765
+ textColorTextPressedPrimary: string;
766
+ textColorTextFocusPrimary: string;
767
+ textColorTextDisabledPrimary: string;
768
+ textColorGhostPrimary: string;
769
+ textColorGhostHoverPrimary: string;
770
+ textColorGhostPressedPrimary: string;
771
+ textColorGhostFocusPrimary: string;
772
+ textColorGhostDisabledPrimary: string;
773
+ borderPrimary: string;
774
+ borderHoverPrimary: string;
775
+ borderPressedPrimary: string;
776
+ borderFocusPrimary: string;
777
+ borderDisabledPrimary: string;
778
+ rippleColorPrimary: string;
779
+ colorInfo: string;
780
+ colorHoverInfo: string;
781
+ colorPressedInfo: string;
782
+ colorFocusInfo: string;
783
+ colorDisabledInfo: string;
784
+ textColorInfo: string;
785
+ textColorHoverInfo: string;
786
+ textColorPressedInfo: string;
787
+ textColorFocusInfo: string;
788
+ textColorDisabledInfo: string;
789
+ textColorTextInfo: string;
790
+ textColorTextHoverInfo: string;
791
+ textColorTextPressedInfo: string;
792
+ textColorTextFocusInfo: string;
793
+ textColorTextDisabledInfo: string;
794
+ textColorGhostInfo: string;
795
+ textColorGhostHoverInfo: string;
796
+ textColorGhostPressedInfo: string;
797
+ textColorGhostFocusInfo: string;
798
+ textColorGhostDisabledInfo: string;
799
+ borderInfo: string;
800
+ borderHoverInfo: string;
801
+ borderPressedInfo: string;
802
+ borderFocusInfo: string;
803
+ borderDisabledInfo: string;
804
+ rippleColorInfo: string;
805
+ colorSuccess: string;
806
+ colorHoverSuccess: string;
807
+ colorPressedSuccess: string;
808
+ colorFocusSuccess: string;
809
+ colorDisabledSuccess: string;
810
+ textColorSuccess: string;
811
+ textColorHoverSuccess: string;
812
+ textColorPressedSuccess: string;
813
+ textColorFocusSuccess: string;
814
+ textColorDisabledSuccess: string;
815
+ textColorTextSuccess: string;
816
+ textColorTextHoverSuccess: string;
817
+ textColorTextPressedSuccess: string;
818
+ textColorTextFocusSuccess: string;
819
+ textColorTextDisabledSuccess: string;
820
+ textColorGhostSuccess: string;
821
+ textColorGhostHoverSuccess: string;
822
+ textColorGhostPressedSuccess: string;
823
+ textColorGhostFocusSuccess: string;
824
+ textColorGhostDisabledSuccess: string;
825
+ borderSuccess: string;
826
+ borderHoverSuccess: string;
827
+ borderPressedSuccess: string;
828
+ borderFocusSuccess: string;
829
+ borderDisabledSuccess: string;
830
+ rippleColorSuccess: string;
831
+ colorWarning: string;
832
+ colorHoverWarning: string;
833
+ colorPressedWarning: string;
834
+ colorFocusWarning: string;
835
+ colorDisabledWarning: string;
836
+ textColorWarning: string;
837
+ textColorHoverWarning: string;
838
+ textColorPressedWarning: string;
839
+ textColorFocusWarning: string;
840
+ textColorDisabledWarning: string;
841
+ textColorTextWarning: string;
842
+ textColorTextHoverWarning: string;
843
+ textColorTextPressedWarning: string;
844
+ textColorTextFocusWarning: string;
845
+ textColorTextDisabledWarning: string;
846
+ textColorGhostWarning: string;
847
+ textColorGhostHoverWarning: string;
848
+ textColorGhostPressedWarning: string;
849
+ textColorGhostFocusWarning: string;
850
+ textColorGhostDisabledWarning: string;
851
+ borderWarning: string;
852
+ borderHoverWarning: string;
853
+ borderPressedWarning: string;
854
+ borderFocusWarning: string;
855
+ borderDisabledWarning: string;
856
+ rippleColorWarning: string;
857
+ colorError: string;
858
+ colorHoverError: string;
859
+ colorPressedError: string;
860
+ colorFocusError: string;
861
+ colorDisabledError: string;
862
+ textColorError: string;
863
+ textColorHoverError: string;
864
+ textColorPressedError: string;
865
+ textColorFocusError: string;
866
+ textColorDisabledError: string;
867
+ textColorTextError: string;
868
+ textColorTextHoverError: string;
869
+ textColorTextPressedError: string;
870
+ textColorTextFocusError: string;
871
+ textColorTextDisabledError: string;
872
+ textColorGhostError: string;
873
+ textColorGhostHoverError: string;
874
+ textColorGhostPressedError: string;
875
+ textColorGhostFocusError: string;
876
+ textColorGhostDisabledError: string;
877
+ borderError: string;
878
+ borderHoverError: string;
879
+ borderPressedError: string;
880
+ borderFocusError: string;
881
+ borderDisabledError: string;
882
+ rippleColorError: string;
883
+ waveOpacity: string;
884
+ fontWeight: string;
885
+ fontWeightStrong: string;
886
+ paddingTiny: string;
887
+ paddingSmall: string;
888
+ paddingMedium: string;
889
+ paddingLarge: string;
890
+ paddingRoundTiny: string;
891
+ paddingRoundSmall: string;
892
+ paddingRoundMedium: string;
893
+ paddingRoundLarge: string;
894
+ iconMarginTiny: string;
895
+ iconMarginSmall: string;
896
+ iconMarginMedium: string;
897
+ iconMarginLarge: string;
898
+ iconSizeTiny: string;
899
+ iconSizeSmall: string;
900
+ iconSizeMedium: string;
901
+ iconSizeLarge: string;
902
+ rippleDuration: string;
903
+ }, any>>>;
904
+ }, {
905
+ selfElRef: import("vue").Ref<HTMLElement | null>;
906
+ waveElRef: import("vue").Ref<{
907
+ play: () => void;
908
+ } | null>;
909
+ mergedClsPrefix: import("vue").ComputedRef<string>;
910
+ mergedFocusable: import("vue").ComputedRef<boolean>;
911
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
912
+ showBorder: import("vue").ComputedRef<boolean>;
913
+ enterPressed: import("vue").Ref<boolean>;
914
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
915
+ handleMousedown: (e: MouseEvent) => void;
916
+ handleKeydown: (e: KeyboardEvent) => void;
917
+ handleBlur: () => void;
918
+ handleKeyup: (e: KeyboardEvent) => void;
919
+ handleClick: (e: MouseEvent) => void;
920
+ customColorCssVars: import("vue").ComputedRef<{
921
+ '--n-border-color': string;
922
+ '--n-border-color-hover': string;
923
+ '--n-border-color-pressed': string;
924
+ '--n-border-color-focus': string;
925
+ '--n-border-color-disabled': string;
926
+ } | null>;
927
+ cssVars: import("vue").ComputedRef<{
928
+ '--n-width': string;
929
+ '--n-height': string;
930
+ '--n-font-size': string;
931
+ '--n-padding': string;
932
+ '--n-icon-size': string;
933
+ '--n-icon-margin': string;
934
+ '--n-border-radius': string;
935
+ '--n-border': string;
936
+ '--n-border-hover': string;
937
+ '--n-border-pressed': string;
938
+ '--n-border-focus': string;
939
+ '--n-border-disabled': string;
940
+ '--n-color': string;
941
+ '--n-color-hover': string;
942
+ '--n-color-pressed': string;
943
+ '--n-color-focus': string;
944
+ '--n-color-disabled': string;
945
+ '--n-ripple-color': string;
946
+ '--n-text-color': string;
947
+ '--n-text-color-hover': string;
948
+ '--n-text-color-pressed': string;
949
+ '--n-text-color-focus': string;
950
+ '--n-text-color-disabled': string;
951
+ 'font-weight': string;
952
+ '--n-bezier': string;
953
+ '--n-bezier-ease-out': string;
954
+ '--n-ripple-duration': string;
955
+ '--n-opacity-disabled': string;
956
+ '--n-wave-opacity': string;
957
+ }> | undefined;
958
+ themeClass: import("vue").Ref<string> | undefined;
959
+ onRender: (() => void) | undefined;
960
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
961
+ readonly color: StringConstructor;
962
+ readonly textColor: StringConstructor;
963
+ readonly text: BooleanConstructor;
964
+ readonly block: BooleanConstructor;
965
+ readonly loading: BooleanConstructor;
966
+ readonly disabled: BooleanConstructor;
967
+ readonly circle: BooleanConstructor;
968
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
969
+ readonly ghost: BooleanConstructor;
970
+ readonly round: BooleanConstructor;
971
+ readonly secondary: BooleanConstructor;
972
+ readonly tertiary: BooleanConstructor;
973
+ readonly quaternary: BooleanConstructor;
974
+ readonly strong: BooleanConstructor;
975
+ readonly focusable: {
976
+ readonly type: BooleanConstructor;
977
+ readonly default: true;
978
+ };
979
+ readonly keyboard: {
980
+ readonly type: BooleanConstructor;
981
+ readonly default: true;
982
+ };
983
+ readonly tag: {
984
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
985
+ readonly default: "button";
986
+ };
987
+ readonly type: {
988
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
989
+ readonly default: "default";
990
+ };
991
+ readonly dashed: BooleanConstructor;
992
+ readonly iconPlacement: {
993
+ readonly type: PropType<"left" | "right">;
994
+ readonly default: "left";
995
+ };
996
+ readonly attrType: {
997
+ readonly type: PropType<"button" | "reset" | "submit">;
998
+ readonly default: "button";
999
+ };
1000
+ readonly bordered: {
1001
+ readonly type: BooleanConstructor;
1002
+ readonly default: true;
1003
+ };
1004
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1005
+ readonly nativeFocusBehavior: {
1006
+ readonly type: BooleanConstructor;
1007
+ readonly default: boolean;
1008
+ };
1009
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1010
+ heightTiny: string;
1011
+ heightSmall: string;
1012
+ heightMedium: string;
1013
+ heightLarge: string;
1014
+ borderRadiusTiny: string;
1015
+ borderRadiusSmall: string;
1016
+ borderRadiusMedium: string;
1017
+ borderRadiusLarge: string;
1018
+ fontSizeTiny: string;
1019
+ fontSizeSmall: string;
1020
+ fontSizeMedium: string;
1021
+ fontSizeLarge: string;
1022
+ opacityDisabled: string;
1023
+ colorOpacitySecondary: string;
1024
+ colorOpacitySecondaryHover: string;
1025
+ colorOpacitySecondaryPressed: string;
1026
+ colorSecondary: string;
1027
+ colorSecondaryHover: string;
1028
+ colorSecondaryPressed: string;
1029
+ colorTertiary: string;
1030
+ colorTertiaryHover: string;
1031
+ colorTertiaryPressed: string;
1032
+ colorQuaternary: string;
1033
+ colorQuaternaryHover: string;
1034
+ colorQuaternaryPressed: string;
1035
+ color: string;
1036
+ colorHover: string;
1037
+ colorPressed: string;
1038
+ colorFocus: string;
1039
+ colorDisabled: string;
1040
+ textColor: string;
1041
+ textColorTertiary: string;
1042
+ textColorHover: string;
1043
+ textColorPressed: string;
1044
+ textColorFocus: string;
1045
+ textColorDisabled: string;
1046
+ textColorText: string;
1047
+ textColorTextHover: string;
1048
+ textColorTextPressed: string;
1049
+ textColorTextFocus: string;
1050
+ textColorTextDisabled: string;
1051
+ textColorGhost: string;
1052
+ textColorGhostHover: string;
1053
+ textColorGhostPressed: string;
1054
+ textColorGhostFocus: string;
1055
+ textColorGhostDisabled: string;
1056
+ border: string;
1057
+ borderHover: string;
1058
+ borderPressed: string;
1059
+ borderFocus: string;
1060
+ borderDisabled: string;
1061
+ rippleColor: string;
1062
+ colorPrimary: string;
1063
+ colorHoverPrimary: string;
1064
+ colorPressedPrimary: string;
1065
+ colorFocusPrimary: string;
1066
+ colorDisabledPrimary: string;
1067
+ textColorPrimary: string;
1068
+ textColorHoverPrimary: string;
1069
+ textColorPressedPrimary: string;
1070
+ textColorFocusPrimary: string;
1071
+ textColorDisabledPrimary: string;
1072
+ textColorTextPrimary: string;
1073
+ textColorTextHoverPrimary: string;
1074
+ textColorTextPressedPrimary: string;
1075
+ textColorTextFocusPrimary: string;
1076
+ textColorTextDisabledPrimary: string;
1077
+ textColorGhostPrimary: string;
1078
+ textColorGhostHoverPrimary: string;
1079
+ textColorGhostPressedPrimary: string;
1080
+ textColorGhostFocusPrimary: string;
1081
+ textColorGhostDisabledPrimary: string;
1082
+ borderPrimary: string;
1083
+ borderHoverPrimary: string;
1084
+ borderPressedPrimary: string;
1085
+ borderFocusPrimary: string;
1086
+ borderDisabledPrimary: string;
1087
+ rippleColorPrimary: string;
1088
+ colorInfo: string;
1089
+ colorHoverInfo: string;
1090
+ colorPressedInfo: string;
1091
+ colorFocusInfo: string;
1092
+ colorDisabledInfo: string;
1093
+ textColorInfo: string;
1094
+ textColorHoverInfo: string;
1095
+ textColorPressedInfo: string;
1096
+ textColorFocusInfo: string;
1097
+ textColorDisabledInfo: string;
1098
+ textColorTextInfo: string;
1099
+ textColorTextHoverInfo: string;
1100
+ textColorTextPressedInfo: string;
1101
+ textColorTextFocusInfo: string;
1102
+ textColorTextDisabledInfo: string;
1103
+ textColorGhostInfo: string;
1104
+ textColorGhostHoverInfo: string;
1105
+ textColorGhostPressedInfo: string;
1106
+ textColorGhostFocusInfo: string;
1107
+ textColorGhostDisabledInfo: string;
1108
+ borderInfo: string;
1109
+ borderHoverInfo: string;
1110
+ borderPressedInfo: string;
1111
+ borderFocusInfo: string;
1112
+ borderDisabledInfo: string;
1113
+ rippleColorInfo: string;
1114
+ colorSuccess: string;
1115
+ colorHoverSuccess: string;
1116
+ colorPressedSuccess: string;
1117
+ colorFocusSuccess: string;
1118
+ colorDisabledSuccess: string;
1119
+ textColorSuccess: string;
1120
+ textColorHoverSuccess: string;
1121
+ textColorPressedSuccess: string;
1122
+ textColorFocusSuccess: string;
1123
+ textColorDisabledSuccess: string;
1124
+ textColorTextSuccess: string;
1125
+ textColorTextHoverSuccess: string;
1126
+ textColorTextPressedSuccess: string;
1127
+ textColorTextFocusSuccess: string;
1128
+ textColorTextDisabledSuccess: string;
1129
+ textColorGhostSuccess: string;
1130
+ textColorGhostHoverSuccess: string;
1131
+ textColorGhostPressedSuccess: string;
1132
+ textColorGhostFocusSuccess: string;
1133
+ textColorGhostDisabledSuccess: string;
1134
+ borderSuccess: string;
1135
+ borderHoverSuccess: string;
1136
+ borderPressedSuccess: string;
1137
+ borderFocusSuccess: string;
1138
+ borderDisabledSuccess: string;
1139
+ rippleColorSuccess: string;
1140
+ colorWarning: string;
1141
+ colorHoverWarning: string;
1142
+ colorPressedWarning: string;
1143
+ colorFocusWarning: string;
1144
+ colorDisabledWarning: string;
1145
+ textColorWarning: string;
1146
+ textColorHoverWarning: string;
1147
+ textColorPressedWarning: string;
1148
+ textColorFocusWarning: string;
1149
+ textColorDisabledWarning: string;
1150
+ textColorTextWarning: string;
1151
+ textColorTextHoverWarning: string;
1152
+ textColorTextPressedWarning: string;
1153
+ textColorTextFocusWarning: string;
1154
+ textColorTextDisabledWarning: string;
1155
+ textColorGhostWarning: string;
1156
+ textColorGhostHoverWarning: string;
1157
+ textColorGhostPressedWarning: string;
1158
+ textColorGhostFocusWarning: string;
1159
+ textColorGhostDisabledWarning: string;
1160
+ borderWarning: string;
1161
+ borderHoverWarning: string;
1162
+ borderPressedWarning: string;
1163
+ borderFocusWarning: string;
1164
+ borderDisabledWarning: string;
1165
+ rippleColorWarning: string;
1166
+ colorError: string;
1167
+ colorHoverError: string;
1168
+ colorPressedError: string;
1169
+ colorFocusError: string;
1170
+ colorDisabledError: string;
1171
+ textColorError: string;
1172
+ textColorHoverError: string;
1173
+ textColorPressedError: string;
1174
+ textColorFocusError: string;
1175
+ textColorDisabledError: string;
1176
+ textColorTextError: string;
1177
+ textColorTextHoverError: string;
1178
+ textColorTextPressedError: string;
1179
+ textColorTextFocusError: string;
1180
+ textColorTextDisabledError: string;
1181
+ textColorGhostError: string;
1182
+ textColorGhostHoverError: string;
1183
+ textColorGhostPressedError: string;
1184
+ textColorGhostFocusError: string;
1185
+ textColorGhostDisabledError: string;
1186
+ borderError: string;
1187
+ borderHoverError: string;
1188
+ borderPressedError: string;
1189
+ borderFocusError: string;
1190
+ borderDisabledError: string;
1191
+ rippleColorError: string;
1192
+ waveOpacity: string;
1193
+ fontWeight: string;
1194
+ fontWeightStrong: string;
1195
+ paddingTiny: string;
1196
+ paddingSmall: string;
1197
+ paddingMedium: string;
1198
+ paddingLarge: string;
1199
+ paddingRoundTiny: string;
1200
+ paddingRoundSmall: string;
1201
+ paddingRoundMedium: string;
1202
+ paddingRoundLarge: string;
1203
+ iconMarginTiny: string;
1204
+ iconMarginSmall: string;
1205
+ iconMarginMedium: string;
1206
+ iconMarginLarge: string;
1207
+ iconSizeTiny: string;
1208
+ iconSizeSmall: string;
1209
+ iconSizeMedium: string;
1210
+ iconSizeLarge: string;
1211
+ rippleDuration: string;
1212
+ }, any>>;
1213
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1214
+ heightTiny: string;
1215
+ heightSmall: string;
1216
+ heightMedium: string;
1217
+ heightLarge: string;
1218
+ borderRadiusTiny: string;
1219
+ borderRadiusSmall: string;
1220
+ borderRadiusMedium: string;
1221
+ borderRadiusLarge: string;
1222
+ fontSizeTiny: string;
1223
+ fontSizeSmall: string;
1224
+ fontSizeMedium: string;
1225
+ fontSizeLarge: string;
1226
+ opacityDisabled: string;
1227
+ colorOpacitySecondary: string;
1228
+ colorOpacitySecondaryHover: string;
1229
+ colorOpacitySecondaryPressed: string;
1230
+ colorSecondary: string;
1231
+ colorSecondaryHover: string;
1232
+ colorSecondaryPressed: string;
1233
+ colorTertiary: string;
1234
+ colorTertiaryHover: string;
1235
+ colorTertiaryPressed: string;
1236
+ colorQuaternary: string;
1237
+ colorQuaternaryHover: string;
1238
+ colorQuaternaryPressed: string;
1239
+ color: string;
1240
+ colorHover: string;
1241
+ colorPressed: string;
1242
+ colorFocus: string;
1243
+ colorDisabled: string;
1244
+ textColor: string;
1245
+ textColorTertiary: string;
1246
+ textColorHover: string;
1247
+ textColorPressed: string;
1248
+ textColorFocus: string;
1249
+ textColorDisabled: string;
1250
+ textColorText: string;
1251
+ textColorTextHover: string;
1252
+ textColorTextPressed: string;
1253
+ textColorTextFocus: string;
1254
+ textColorTextDisabled: string;
1255
+ textColorGhost: string;
1256
+ textColorGhostHover: string;
1257
+ textColorGhostPressed: string;
1258
+ textColorGhostFocus: string;
1259
+ textColorGhostDisabled: string;
1260
+ border: string;
1261
+ borderHover: string;
1262
+ borderPressed: string;
1263
+ borderFocus: string;
1264
+ borderDisabled: string;
1265
+ rippleColor: string;
1266
+ colorPrimary: string;
1267
+ colorHoverPrimary: string;
1268
+ colorPressedPrimary: string;
1269
+ colorFocusPrimary: string;
1270
+ colorDisabledPrimary: string;
1271
+ textColorPrimary: string;
1272
+ textColorHoverPrimary: string;
1273
+ textColorPressedPrimary: string;
1274
+ textColorFocusPrimary: string;
1275
+ textColorDisabledPrimary: string;
1276
+ textColorTextPrimary: string;
1277
+ textColorTextHoverPrimary: string;
1278
+ textColorTextPressedPrimary: string;
1279
+ textColorTextFocusPrimary: string;
1280
+ textColorTextDisabledPrimary: string;
1281
+ textColorGhostPrimary: string;
1282
+ textColorGhostHoverPrimary: string;
1283
+ textColorGhostPressedPrimary: string;
1284
+ textColorGhostFocusPrimary: string;
1285
+ textColorGhostDisabledPrimary: string;
1286
+ borderPrimary: string;
1287
+ borderHoverPrimary: string;
1288
+ borderPressedPrimary: string;
1289
+ borderFocusPrimary: string;
1290
+ borderDisabledPrimary: string;
1291
+ rippleColorPrimary: string;
1292
+ colorInfo: string;
1293
+ colorHoverInfo: string;
1294
+ colorPressedInfo: string;
1295
+ colorFocusInfo: string;
1296
+ colorDisabledInfo: string;
1297
+ textColorInfo: string;
1298
+ textColorHoverInfo: string;
1299
+ textColorPressedInfo: string;
1300
+ textColorFocusInfo: string;
1301
+ textColorDisabledInfo: string;
1302
+ textColorTextInfo: string;
1303
+ textColorTextHoverInfo: string;
1304
+ textColorTextPressedInfo: string;
1305
+ textColorTextFocusInfo: string;
1306
+ textColorTextDisabledInfo: string;
1307
+ textColorGhostInfo: string;
1308
+ textColorGhostHoverInfo: string;
1309
+ textColorGhostPressedInfo: string;
1310
+ textColorGhostFocusInfo: string;
1311
+ textColorGhostDisabledInfo: string;
1312
+ borderInfo: string;
1313
+ borderHoverInfo: string;
1314
+ borderPressedInfo: string;
1315
+ borderFocusInfo: string;
1316
+ borderDisabledInfo: string;
1317
+ rippleColorInfo: string;
1318
+ colorSuccess: string;
1319
+ colorHoverSuccess: string;
1320
+ colorPressedSuccess: string;
1321
+ colorFocusSuccess: string;
1322
+ colorDisabledSuccess: string;
1323
+ textColorSuccess: string;
1324
+ textColorHoverSuccess: string;
1325
+ textColorPressedSuccess: string;
1326
+ textColorFocusSuccess: string;
1327
+ textColorDisabledSuccess: string;
1328
+ textColorTextSuccess: string;
1329
+ textColorTextHoverSuccess: string;
1330
+ textColorTextPressedSuccess: string;
1331
+ textColorTextFocusSuccess: string;
1332
+ textColorTextDisabledSuccess: string;
1333
+ textColorGhostSuccess: string;
1334
+ textColorGhostHoverSuccess: string;
1335
+ textColorGhostPressedSuccess: string;
1336
+ textColorGhostFocusSuccess: string;
1337
+ textColorGhostDisabledSuccess: string;
1338
+ borderSuccess: string;
1339
+ borderHoverSuccess: string;
1340
+ borderPressedSuccess: string;
1341
+ borderFocusSuccess: string;
1342
+ borderDisabledSuccess: string;
1343
+ rippleColorSuccess: string;
1344
+ colorWarning: string;
1345
+ colorHoverWarning: string;
1346
+ colorPressedWarning: string;
1347
+ colorFocusWarning: string;
1348
+ colorDisabledWarning: string;
1349
+ textColorWarning: string;
1350
+ textColorHoverWarning: string;
1351
+ textColorPressedWarning: string;
1352
+ textColorFocusWarning: string;
1353
+ textColorDisabledWarning: string;
1354
+ textColorTextWarning: string;
1355
+ textColorTextHoverWarning: string;
1356
+ textColorTextPressedWarning: string;
1357
+ textColorTextFocusWarning: string;
1358
+ textColorTextDisabledWarning: string;
1359
+ textColorGhostWarning: string;
1360
+ textColorGhostHoverWarning: string;
1361
+ textColorGhostPressedWarning: string;
1362
+ textColorGhostFocusWarning: string;
1363
+ textColorGhostDisabledWarning: string;
1364
+ borderWarning: string;
1365
+ borderHoverWarning: string;
1366
+ borderPressedWarning: string;
1367
+ borderFocusWarning: string;
1368
+ borderDisabledWarning: string;
1369
+ rippleColorWarning: string;
1370
+ colorError: string;
1371
+ colorHoverError: string;
1372
+ colorPressedError: string;
1373
+ colorFocusError: string;
1374
+ colorDisabledError: string;
1375
+ textColorError: string;
1376
+ textColorHoverError: string;
1377
+ textColorPressedError: string;
1378
+ textColorFocusError: string;
1379
+ textColorDisabledError: string;
1380
+ textColorTextError: string;
1381
+ textColorTextHoverError: string;
1382
+ textColorTextPressedError: string;
1383
+ textColorTextFocusError: string;
1384
+ textColorTextDisabledError: string;
1385
+ textColorGhostError: string;
1386
+ textColorGhostHoverError: string;
1387
+ textColorGhostPressedError: string;
1388
+ textColorGhostFocusError: string;
1389
+ textColorGhostDisabledError: string;
1390
+ borderError: string;
1391
+ borderHoverError: string;
1392
+ borderPressedError: string;
1393
+ borderFocusError: string;
1394
+ borderDisabledError: string;
1395
+ rippleColorError: string;
1396
+ waveOpacity: string;
1397
+ fontWeight: string;
1398
+ fontWeightStrong: string;
1399
+ paddingTiny: string;
1400
+ paddingSmall: string;
1401
+ paddingMedium: string;
1402
+ paddingLarge: string;
1403
+ paddingRoundTiny: string;
1404
+ paddingRoundSmall: string;
1405
+ paddingRoundMedium: string;
1406
+ paddingRoundLarge: string;
1407
+ iconMarginTiny: string;
1408
+ iconMarginSmall: string;
1409
+ iconMarginMedium: string;
1410
+ iconMarginLarge: string;
1411
+ iconSizeTiny: string;
1412
+ iconSizeSmall: string;
1413
+ iconSizeMedium: string;
1414
+ iconSizeLarge: string;
1415
+ rippleDuration: string;
1416
+ }, any>>>;
1417
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1418
+ heightTiny: string;
1419
+ heightSmall: string;
1420
+ heightMedium: string;
1421
+ heightLarge: string;
1422
+ borderRadiusTiny: string;
1423
+ borderRadiusSmall: string;
1424
+ borderRadiusMedium: string;
1425
+ borderRadiusLarge: string;
1426
+ fontSizeTiny: string;
1427
+ fontSizeSmall: string;
1428
+ fontSizeMedium: string;
1429
+ fontSizeLarge: string;
1430
+ opacityDisabled: string;
1431
+ colorOpacitySecondary: string;
1432
+ colorOpacitySecondaryHover: string;
1433
+ colorOpacitySecondaryPressed: string;
1434
+ colorSecondary: string;
1435
+ colorSecondaryHover: string;
1436
+ colorSecondaryPressed: string;
1437
+ colorTertiary: string;
1438
+ colorTertiaryHover: string;
1439
+ colorTertiaryPressed: string;
1440
+ colorQuaternary: string;
1441
+ colorQuaternaryHover: string;
1442
+ colorQuaternaryPressed: string;
1443
+ color: string;
1444
+ colorHover: string;
1445
+ colorPressed: string;
1446
+ colorFocus: string;
1447
+ colorDisabled: string;
1448
+ textColor: string;
1449
+ textColorTertiary: string;
1450
+ textColorHover: string;
1451
+ textColorPressed: string;
1452
+ textColorFocus: string;
1453
+ textColorDisabled: string;
1454
+ textColorText: string;
1455
+ textColorTextHover: string;
1456
+ textColorTextPressed: string;
1457
+ textColorTextFocus: string;
1458
+ textColorTextDisabled: string;
1459
+ textColorGhost: string;
1460
+ textColorGhostHover: string;
1461
+ textColorGhostPressed: string;
1462
+ textColorGhostFocus: string;
1463
+ textColorGhostDisabled: string;
1464
+ border: string;
1465
+ borderHover: string;
1466
+ borderPressed: string;
1467
+ borderFocus: string;
1468
+ borderDisabled: string;
1469
+ rippleColor: string;
1470
+ colorPrimary: string;
1471
+ colorHoverPrimary: string;
1472
+ colorPressedPrimary: string;
1473
+ colorFocusPrimary: string;
1474
+ colorDisabledPrimary: string;
1475
+ textColorPrimary: string;
1476
+ textColorHoverPrimary: string;
1477
+ textColorPressedPrimary: string;
1478
+ textColorFocusPrimary: string;
1479
+ textColorDisabledPrimary: string;
1480
+ textColorTextPrimary: string;
1481
+ textColorTextHoverPrimary: string;
1482
+ textColorTextPressedPrimary: string;
1483
+ textColorTextFocusPrimary: string;
1484
+ textColorTextDisabledPrimary: string;
1485
+ textColorGhostPrimary: string;
1486
+ textColorGhostHoverPrimary: string;
1487
+ textColorGhostPressedPrimary: string;
1488
+ textColorGhostFocusPrimary: string;
1489
+ textColorGhostDisabledPrimary: string;
1490
+ borderPrimary: string;
1491
+ borderHoverPrimary: string;
1492
+ borderPressedPrimary: string;
1493
+ borderFocusPrimary: string;
1494
+ borderDisabledPrimary: string;
1495
+ rippleColorPrimary: string;
1496
+ colorInfo: string;
1497
+ colorHoverInfo: string;
1498
+ colorPressedInfo: string;
1499
+ colorFocusInfo: string;
1500
+ colorDisabledInfo: string;
1501
+ textColorInfo: string;
1502
+ textColorHoverInfo: string;
1503
+ textColorPressedInfo: string;
1504
+ textColorFocusInfo: string;
1505
+ textColorDisabledInfo: string;
1506
+ textColorTextInfo: string;
1507
+ textColorTextHoverInfo: string;
1508
+ textColorTextPressedInfo: string;
1509
+ textColorTextFocusInfo: string;
1510
+ textColorTextDisabledInfo: string;
1511
+ textColorGhostInfo: string;
1512
+ textColorGhostHoverInfo: string;
1513
+ textColorGhostPressedInfo: string;
1514
+ textColorGhostFocusInfo: string;
1515
+ textColorGhostDisabledInfo: string;
1516
+ borderInfo: string;
1517
+ borderHoverInfo: string;
1518
+ borderPressedInfo: string;
1519
+ borderFocusInfo: string;
1520
+ borderDisabledInfo: string;
1521
+ rippleColorInfo: string;
1522
+ colorSuccess: string;
1523
+ colorHoverSuccess: string;
1524
+ colorPressedSuccess: string;
1525
+ colorFocusSuccess: string;
1526
+ colorDisabledSuccess: string;
1527
+ textColorSuccess: string;
1528
+ textColorHoverSuccess: string;
1529
+ textColorPressedSuccess: string;
1530
+ textColorFocusSuccess: string;
1531
+ textColorDisabledSuccess: string;
1532
+ textColorTextSuccess: string;
1533
+ textColorTextHoverSuccess: string;
1534
+ textColorTextPressedSuccess: string;
1535
+ textColorTextFocusSuccess: string;
1536
+ textColorTextDisabledSuccess: string;
1537
+ textColorGhostSuccess: string;
1538
+ textColorGhostHoverSuccess: string;
1539
+ textColorGhostPressedSuccess: string;
1540
+ textColorGhostFocusSuccess: string;
1541
+ textColorGhostDisabledSuccess: string;
1542
+ borderSuccess: string;
1543
+ borderHoverSuccess: string;
1544
+ borderPressedSuccess: string;
1545
+ borderFocusSuccess: string;
1546
+ borderDisabledSuccess: string;
1547
+ rippleColorSuccess: string;
1548
+ colorWarning: string;
1549
+ colorHoverWarning: string;
1550
+ colorPressedWarning: string;
1551
+ colorFocusWarning: string;
1552
+ colorDisabledWarning: string;
1553
+ textColorWarning: string;
1554
+ textColorHoverWarning: string;
1555
+ textColorPressedWarning: string;
1556
+ textColorFocusWarning: string;
1557
+ textColorDisabledWarning: string;
1558
+ textColorTextWarning: string;
1559
+ textColorTextHoverWarning: string;
1560
+ textColorTextPressedWarning: string;
1561
+ textColorTextFocusWarning: string;
1562
+ textColorTextDisabledWarning: string;
1563
+ textColorGhostWarning: string;
1564
+ textColorGhostHoverWarning: string;
1565
+ textColorGhostPressedWarning: string;
1566
+ textColorGhostFocusWarning: string;
1567
+ textColorGhostDisabledWarning: string;
1568
+ borderWarning: string;
1569
+ borderHoverWarning: string;
1570
+ borderPressedWarning: string;
1571
+ borderFocusWarning: string;
1572
+ borderDisabledWarning: string;
1573
+ rippleColorWarning: string;
1574
+ colorError: string;
1575
+ colorHoverError: string;
1576
+ colorPressedError: string;
1577
+ colorFocusError: string;
1578
+ colorDisabledError: string;
1579
+ textColorError: string;
1580
+ textColorHoverError: string;
1581
+ textColorPressedError: string;
1582
+ textColorFocusError: string;
1583
+ textColorDisabledError: string;
1584
+ textColorTextError: string;
1585
+ textColorTextHoverError: string;
1586
+ textColorTextPressedError: string;
1587
+ textColorTextFocusError: string;
1588
+ textColorTextDisabledError: string;
1589
+ textColorGhostError: string;
1590
+ textColorGhostHoverError: string;
1591
+ textColorGhostPressedError: string;
1592
+ textColorGhostFocusError: string;
1593
+ textColorGhostDisabledError: string;
1594
+ borderError: string;
1595
+ borderHoverError: string;
1596
+ borderPressedError: string;
1597
+ borderFocusError: string;
1598
+ borderDisabledError: string;
1599
+ rippleColorError: string;
1600
+ waveOpacity: string;
1601
+ fontWeight: string;
1602
+ fontWeightStrong: string;
1603
+ paddingTiny: string;
1604
+ paddingSmall: string;
1605
+ paddingMedium: string;
1606
+ paddingLarge: string;
1607
+ paddingRoundTiny: string;
1608
+ paddingRoundSmall: string;
1609
+ paddingRoundMedium: string;
1610
+ paddingRoundLarge: string;
1611
+ iconMarginTiny: string;
1612
+ iconMarginSmall: string;
1613
+ iconMarginMedium: string;
1614
+ iconMarginLarge: string;
1615
+ iconSizeTiny: string;
1616
+ iconSizeSmall: string;
1617
+ iconSizeMedium: string;
1618
+ iconSizeLarge: string;
1619
+ rippleDuration: string;
1620
+ }, any>>>;
1621
+ }>>, {
1622
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1623
+ readonly tag: keyof HTMLElementTagNameMap;
1624
+ readonly block: boolean;
1625
+ readonly round: boolean;
1626
+ readonly dashed: boolean;
1627
+ readonly text: boolean;
1628
+ readonly circle: boolean;
1629
+ readonly disabled: boolean;
1630
+ readonly focusable: boolean;
1631
+ readonly strong: boolean;
1632
+ readonly loading: boolean;
1633
+ readonly bordered: boolean;
1634
+ readonly tertiary: boolean;
1635
+ readonly ghost: boolean;
1636
+ readonly keyboard: boolean;
1637
+ readonly secondary: boolean;
1638
+ readonly quaternary: boolean;
1639
+ readonly iconPlacement: "left" | "right";
1640
+ readonly attrType: "button" | "reset" | "submit";
1641
+ readonly nativeFocusBehavior: boolean;
1642
+ }>;
1643
+ NSpace: import("vue").DefineComponent<{
1644
+ readonly align: PropType<"center" | "stretch" | "baseline" | "start" | "end" | "flex-end" | "flex-start">;
1645
+ readonly justify: {
1646
+ readonly type: PropType<import("naive-ui/es/space/src/Space").Justify>;
1647
+ readonly default: "start";
1648
+ };
1649
+ readonly inline: BooleanConstructor;
1650
+ readonly vertical: BooleanConstructor;
1651
+ readonly size: {
1652
+ readonly type: PropType<number | "small" | "medium" | "large" | [number, number]>;
1653
+ readonly default: "medium";
1654
+ };
1655
+ readonly wrapItem: {
1656
+ readonly type: BooleanConstructor;
1657
+ readonly default: true;
1658
+ };
1659
+ readonly itemStyle: PropType<string | import("vue").CSSProperties>;
1660
+ readonly wrap: {
1661
+ readonly type: BooleanConstructor;
1662
+ readonly default: true;
1663
+ };
1664
+ readonly internalUseGap: {
1665
+ readonly type: BooleanConstructor;
1666
+ readonly default: undefined;
1667
+ };
1668
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Space", {
1669
+ gapSmall: string;
1670
+ gapMedium: string;
1671
+ gapLarge: string;
1672
+ }, any>>;
1673
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Space", {
1674
+ gapSmall: string;
1675
+ gapMedium: string;
1676
+ gapLarge: string;
1677
+ }, any>>>;
1678
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Space", {
1679
+ gapSmall: string;
1680
+ gapMedium: string;
1681
+ gapLarge: string;
1682
+ }, any>>>;
1683
+ }, {
1684
+ useGap: boolean;
1685
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1686
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1687
+ margin: import("vue").ComputedRef<{
1688
+ horizontal: number;
1689
+ vertical: number;
1690
+ }>;
1691
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1692
+ readonly align: PropType<"center" | "stretch" | "baseline" | "start" | "end" | "flex-end" | "flex-start">;
1693
+ readonly justify: {
1694
+ readonly type: PropType<import("naive-ui/es/space/src/Space").Justify>;
1695
+ readonly default: "start";
1696
+ };
1697
+ readonly inline: BooleanConstructor;
1698
+ readonly vertical: BooleanConstructor;
1699
+ readonly size: {
1700
+ readonly type: PropType<number | "small" | "medium" | "large" | [number, number]>;
1701
+ readonly default: "medium";
1702
+ };
1703
+ readonly wrapItem: {
1704
+ readonly type: BooleanConstructor;
1705
+ readonly default: true;
1706
+ };
1707
+ readonly itemStyle: PropType<string | import("vue").CSSProperties>;
1708
+ readonly wrap: {
1709
+ readonly type: BooleanConstructor;
1710
+ readonly default: true;
1711
+ };
1712
+ readonly internalUseGap: {
1713
+ readonly type: BooleanConstructor;
1714
+ readonly default: undefined;
1715
+ };
1716
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Space", {
1717
+ gapSmall: string;
1718
+ gapMedium: string;
1719
+ gapLarge: string;
1720
+ }, any>>;
1721
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Space", {
1722
+ gapSmall: string;
1723
+ gapMedium: string;
1724
+ gapLarge: string;
1725
+ }, any>>>;
1726
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Space", {
1727
+ gapSmall: string;
1728
+ gapMedium: string;
1729
+ gapLarge: string;
1730
+ }, any>>>;
1731
+ }>>, {
1732
+ readonly inline: boolean;
1733
+ readonly size: number | "small" | "medium" | "large" | [number, number];
1734
+ readonly wrap: boolean;
1735
+ readonly vertical: boolean;
1736
+ readonly justify: import("naive-ui/es/space/src/Space").Justify;
1737
+ readonly wrapItem: boolean;
1738
+ readonly internalUseGap: boolean;
1739
+ }>;
1740
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1741
+ items: {
1742
+ type: ArrayConstructor;
1743
+ required: false;
1744
+ default: () => never[];
1745
+ };
1746
+ }>>, {
1747
+ items: unknown[];
1748
+ }>;
1749
+ export default _default;