cnhis-design-vue 3.1.5-beta.13 → 3.1.5-beta.14

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