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