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