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