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,4152 +0,0 @@
1
- import { FormInst } from "naive-ui";
2
- declare const _default: import("vue").DefineComponent<{
3
- ids: {
4
- type: ObjectConstructor;
5
- default: () => {
6
- guage_id: string;
7
- db_id: undefined;
8
- };
9
- };
10
- params: {
11
- default: () => {};
12
- type: ObjectConstructor;
13
- };
14
- guageData: {
15
- type: ObjectConstructor;
16
- default: () => {};
17
- };
18
- noBtn: {
19
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
20
- default: boolean;
21
- };
22
- hideBtn: {
23
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
24
- default: boolean;
25
- };
26
- source: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- isLock: {
31
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
32
- default: boolean;
33
- };
34
- type: {
35
- type: StringConstructor;
36
- default: string;
37
- };
38
- styleSetting: {
39
- type: ObjectConstructor;
40
- default: () => {};
41
- };
42
- fontSizeObj: {
43
- type: ObjectConstructor;
44
- default: () => {
45
- large: number;
46
- medium: number;
47
- small: number;
48
- extrasmall: number;
49
- };
50
- };
51
- openType: {
52
- type: StringConstructor;
53
- default: string;
54
- };
55
- scaleApiConfig: {
56
- type: ObjectConstructor;
57
- default: () => {};
58
- };
59
- getSelectOptions: {
60
- type: FunctionConstructor;
61
- default: () => Promise<never[]>;
62
- };
63
- getSearchOptions: {
64
- type: FunctionConstructor;
65
- default: () => Promise<never[]>;
66
- };
67
- getCascadeOptions: {
68
- type: FunctionConstructor;
69
- default: () => Promise<never[]>;
70
- };
71
- getLabelList: {
72
- type: FunctionConstructor;
73
- default: () => Promise<never[]>;
74
- };
75
- uploadPictureUrl: {
76
- type: StringConstructor;
77
- default: string;
78
- };
79
- uploadFileUrl: {
80
- type: StringConstructor;
81
- default: string;
82
- };
83
- ak: {
84
- type: StringConstructor;
85
- default: string;
86
- };
87
- }, {
88
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
89
- ids: {
90
- type: ObjectConstructor;
91
- default: () => {
92
- guage_id: string;
93
- db_id: undefined;
94
- };
95
- };
96
- params: {
97
- default: () => {};
98
- type: ObjectConstructor;
99
- };
100
- guageData: {
101
- type: ObjectConstructor;
102
- default: () => {};
103
- };
104
- noBtn: {
105
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
106
- default: boolean;
107
- };
108
- hideBtn: {
109
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
110
- default: boolean;
111
- };
112
- source: {
113
- type: StringConstructor;
114
- default: string;
115
- };
116
- isLock: {
117
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
118
- default: boolean;
119
- };
120
- type: {
121
- type: StringConstructor;
122
- default: string;
123
- };
124
- styleSetting: {
125
- type: ObjectConstructor;
126
- default: () => {};
127
- };
128
- fontSizeObj: {
129
- type: ObjectConstructor;
130
- default: () => {
131
- large: number;
132
- medium: number;
133
- small: number;
134
- extrasmall: number;
135
- };
136
- };
137
- openType: {
138
- type: StringConstructor;
139
- default: string;
140
- };
141
- scaleApiConfig: {
142
- type: ObjectConstructor;
143
- default: () => {};
144
- };
145
- getSelectOptions: {
146
- type: FunctionConstructor;
147
- default: () => Promise<never[]>;
148
- };
149
- getSearchOptions: {
150
- type: FunctionConstructor;
151
- default: () => Promise<never[]>;
152
- };
153
- getCascadeOptions: {
154
- type: FunctionConstructor;
155
- default: () => Promise<never[]>;
156
- };
157
- getLabelList: {
158
- type: FunctionConstructor;
159
- default: () => Promise<never[]>;
160
- };
161
- uploadPictureUrl: {
162
- type: StringConstructor;
163
- default: string;
164
- };
165
- uploadFileUrl: {
166
- type: StringConstructor;
167
- default: string;
168
- };
169
- ak: {
170
- type: StringConstructor;
171
- default: string;
172
- };
173
- }>> & {
174
- onOnCloseSetting?: ((...args: any[]) => any) | undefined;
175
- onSubmitNoRequest?: ((...args: any[]) => any) | undefined;
176
- onOnSubmit?: ((...args: any[]) => any) | undefined;
177
- }>>;
178
- state: any;
179
- emit: (event: "onCloseSetting" | "submitNoRequest" | "onSubmit", ...args: any[]) => void;
180
- dialog: import("naive-ui").DialogApi;
181
- message: import("naive-ui").MessageApi;
182
- countdownDom: any;
183
- formRef: import("vue").Ref<{
184
- validate: import("naive-ui/es/form/src/interface").FormValidate;
185
- restoreValidation: () => void;
186
- } | null>;
187
- noDataState: {
188
- noData: boolean;
189
- noDataTip: string;
190
- noDataImg: string;
191
- };
192
- setNoData: (noData: any, noDataTip?: string, noDataImg?: string) => void;
193
- resetNodata: () => void;
194
- query: any;
195
- showEvatip: import("vue").ComputedRef<(item: any) => boolean>;
196
- isFormBoldOpen: import("vue").ComputedRef<(item: any) => any>;
197
- scaleStyle: import("vue").ComputedRef<{
198
- width: string;
199
- height: string;
200
- transform: string;
201
- } | null>;
202
- handlePageClass: import("vue").ComputedRef<boolean>;
203
- isShowItem: import("vue").ComputedRef<(item: any) => any>;
204
- handleShowQuestionNumber: import("vue").ComputedRef<(item: any) => any>;
205
- hasScore: import("vue").ComputedRef<boolean>;
206
- isPreviewScale: import("vue").ComputedRef<any>;
207
- showEvaluateEntry: import("vue").ComputedRef<any>;
208
- showEvaluateCoundownPage: import("vue").ComputedRef<any>;
209
- showSaveBtn: import("vue").ComputedRef<boolean>;
210
- showEvaluateLabel: import("vue").ComputedRef<(item: any) => any>;
211
- showAnswerParse: import("vue").ComputedRef<(item: any) => any>;
212
- propsConfig: import("vue").ComputedRef<(item: any, index: number) => any>;
213
- evaluatePageProps: import("vue").ComputedRef<{
214
- formArray: any;
215
- evaluateResultConfig: any;
216
- evaluateResultSetting: any;
217
- isFinished: any;
218
- maxScore: any;
219
- }>;
220
- evaluateCountdownProps: import("vue").ComputedRef<{
221
- formArray: any;
222
- evaluateResultConfig: any;
223
- evaluateResultSetting: any;
224
- form: any;
225
- isFinished: any;
226
- currentTime: any;
227
- showEvaluateCountdown: any;
228
- }>;
229
- showEvent: (formItem: any, isSubmitCallback?: any) => any;
230
- formKey: (item: any) => any;
231
- initForm: (data: any) => void;
232
- submitMethod: () => void;
233
- nextLogicEvent: (choiceValue: any, formItem: any, formArray?: any[], isInit?: boolean | undefined) => void;
234
- handleDynamicDataRelation: (list: any[], formItem: any, formArray: any[]) => void;
235
- handleQuery: () => void;
236
- init: (configData: any) => void;
237
- writeGuage: (showCountdown: boolean) => void;
238
- closeEvaluateCountdown: () => void;
239
- showEvaTipModal: (item: any) => Promise<void>;
240
- evatipConfirm: (str: any) => void;
241
- scaleChange: (val: any, item: any, config?: any) => void;
242
- labelChange: (labelList: any, item: any) => void;
243
- vodFileList: (list: any, item: any) => void;
244
- handleGetLabelSubmit: (labelSelectedList: any[]) => {
245
- labelStr: string;
246
- labels: any[];
247
- };
248
- onSubmit: () => void;
249
- confirmSubmit: (message: any) => void;
250
- onSubmitForm: () => void;
251
- cancel: () => void;
252
- getScaleData: () => any;
253
- isCollection: (e: string) => boolean;
254
- NoData: import("vue").DefineComponent<{
255
- noDataTip: {
256
- type: StringConstructor;
257
- default: string;
258
- };
259
- noDataImg: {
260
- type: StringConstructor;
261
- default: string;
262
- };
263
- showImg: {
264
- type: BooleanConstructor;
265
- default: boolean;
266
- };
267
- }, {
268
- imgStr: import("vue").ComputedRef<null>;
269
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
270
- noDataTip: {
271
- type: StringConstructor;
272
- default: string;
273
- };
274
- noDataImg: {
275
- type: StringConstructor;
276
- default: string;
277
- };
278
- showImg: {
279
- type: BooleanConstructor;
280
- default: boolean;
281
- };
282
- }>> & {
283
- [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
284
- }>>;
285
- handleDesc: import("vue").ComputedRef<string>;
286
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
287
- noDataTip: {
288
- type: StringConstructor;
289
- default: string;
290
- };
291
- noDataImg: {
292
- type: StringConstructor;
293
- default: string;
294
- };
295
- showImg: {
296
- type: BooleanConstructor;
297
- default: boolean;
298
- };
299
- }>>, {
300
- noDataTip: string;
301
- noDataImg: string;
302
- showImg: boolean;
303
- }>;
304
- SvgIcon: import("vue").DefineComponent<{
305
- iconClass: {
306
- type: StringConstructor;
307
- required: true;
308
- default: string;
309
- };
310
- title: {
311
- type: StringConstructor;
312
- required: false;
313
- default: string;
314
- };
315
- className: {
316
- type: StringConstructor;
317
- required: false;
318
- };
319
- }, {
320
- props: {
321
- iconClass: string;
322
- title: string;
323
- className?: string | undefined;
324
- };
325
- iconName: import("vue").ComputedRef<string>;
326
- svgClass: import("vue").ComputedRef<string>;
327
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
328
- iconClass: {
329
- type: StringConstructor;
330
- required: true;
331
- default: string;
332
- };
333
- title: {
334
- type: StringConstructor;
335
- required: false;
336
- default: string;
337
- };
338
- className: {
339
- type: StringConstructor;
340
- required: false;
341
- };
342
- }>>, {
343
- title: string;
344
- iconClass: string;
345
- }>;
346
- EvaluateCountdown: import("vue").DefineComponent<{
347
- formArray: {
348
- type: ArrayConstructor;
349
- default: () => never[];
350
- };
351
- evaluateResultConfig: {
352
- type: ObjectConstructor;
353
- default: () => {};
354
- };
355
- evaluateResultSetting: {
356
- type: ObjectConstructor;
357
- default: () => {};
358
- };
359
- form: {
360
- type: ObjectConstructor;
361
- default: () => {};
362
- };
363
- currentTime: {
364
- default: number;
365
- };
366
- showEvaluateCountdown: {
367
- type: BooleanConstructor;
368
- default: boolean;
369
- };
370
- }, {
371
- state: {
372
- source: string;
373
- setAnswered: number;
374
- };
375
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
376
- formArray: {
377
- type: ArrayConstructor;
378
- default: () => never[];
379
- };
380
- evaluateResultConfig: {
381
- type: ObjectConstructor;
382
- default: () => {};
383
- };
384
- evaluateResultSetting: {
385
- type: ObjectConstructor;
386
- default: () => {};
387
- };
388
- form: {
389
- type: ObjectConstructor;
390
- default: () => {};
391
- };
392
- currentTime: {
393
- default: number;
394
- };
395
- showEvaluateCountdown: {
396
- type: BooleanConstructor;
397
- default: boolean;
398
- };
399
- }>> & {
400
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
401
- }>>;
402
- emit: (event: "closeEvaluateCountdown", ...args: any[]) => void;
403
- evaluateState: {
404
- totalLen: number;
405
- timer: null;
406
- countdownStr: string;
407
- isTimeOut: boolean;
408
- countdownRed: boolean;
409
- filterArr: string[];
410
- };
411
- evaluateStartTime: any;
412
- showCountdown: import("vue").ComputedRef<any>;
413
- getTotalLen: () => void;
414
- countdown: (startTime: any) => void;
415
- clearTimer: () => void;
416
- init: () => void;
417
- checkType: (val: any) => string;
418
- diffAnswered: (form: any) => void;
419
- SvgIcon: import("vue").DefineComponent<{
420
- iconClass: {
421
- type: StringConstructor;
422
- required: true;
423
- default: string;
424
- };
425
- title: {
426
- type: StringConstructor;
427
- required: false;
428
- default: string;
429
- };
430
- className: {
431
- type: StringConstructor;
432
- required: false;
433
- };
434
- }, {
435
- props: {
436
- iconClass: string;
437
- title: string;
438
- className?: string | undefined;
439
- };
440
- iconName: import("vue").ComputedRef<string>;
441
- svgClass: import("vue").ComputedRef<string>;
442
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
443
- iconClass: {
444
- type: StringConstructor;
445
- required: true;
446
- default: string;
447
- };
448
- title: {
449
- type: StringConstructor;
450
- required: false;
451
- default: string;
452
- };
453
- className: {
454
- type: StringConstructor;
455
- required: false;
456
- };
457
- }>>, {
458
- title: string;
459
- iconClass: string;
460
- }>;
461
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "closeEvaluateCountdown"[], "closeEvaluateCountdown", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
462
- formArray: {
463
- type: ArrayConstructor;
464
- default: () => never[];
465
- };
466
- evaluateResultConfig: {
467
- type: ObjectConstructor;
468
- default: () => {};
469
- };
470
- evaluateResultSetting: {
471
- type: ObjectConstructor;
472
- default: () => {};
473
- };
474
- form: {
475
- type: ObjectConstructor;
476
- default: () => {};
477
- };
478
- currentTime: {
479
- default: number;
480
- };
481
- showEvaluateCountdown: {
482
- type: BooleanConstructor;
483
- default: boolean;
484
- };
485
- }>> & {
486
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
487
- }, {
488
- form: Record<string, any>;
489
- formArray: unknown[];
490
- evaluateResultConfig: Record<string, any>;
491
- evaluateResultSetting: Record<string, any>;
492
- currentTime: number;
493
- showEvaluateCountdown: boolean;
494
- }>;
495
- EvaluatePage: import("vue").DefineComponent<{
496
- formArray: {
497
- type: ArrayConstructor;
498
- default: () => never[];
499
- };
500
- evaluateResultConfig: {
501
- type: ObjectConstructor;
502
- default: () => {};
503
- };
504
- evaluateResultSetting: {
505
- type: ObjectConstructor;
506
- default: () => {};
507
- };
508
- isFinished: {
509
- type: BooleanConstructor;
510
- default: boolean;
511
- };
512
- maxScore: {
513
- type: NumberConstructor;
514
- default: number;
515
- };
516
- }, {
517
- state: {
518
- source: string;
519
- timer: null;
520
- curTime: number;
521
- timeRange: string;
522
- banStart: boolean;
523
- };
524
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
525
- formArray: {
526
- type: ArrayConstructor;
527
- default: () => never[];
528
- };
529
- evaluateResultConfig: {
530
- type: ObjectConstructor;
531
- default: () => {};
532
- };
533
- evaluateResultSetting: {
534
- type: ObjectConstructor;
535
- default: () => {};
536
- };
537
- isFinished: {
538
- type: BooleanConstructor;
539
- default: boolean;
540
- };
541
- maxScore: {
542
- type: NumberConstructor;
543
- default: number;
544
- };
545
- }>> & {
546
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
547
- onWriteGuage?: ((...args: any[]) => any) | undefined;
548
- }>>;
549
- emit: (event: "closeEvaluateCountdown" | "writeGuage", ...args: any[]) => void;
550
- evaluateState: {
551
- totalLen: number;
552
- timer: null;
553
- countdownStr: string;
554
- isTimeOut: boolean;
555
- countdownRed: boolean;
556
- filterArr: string[];
557
- };
558
- evaluateStartTime: any;
559
- getEvaluateTime: any;
560
- getEvaluateStartTime: import("vue").ComputedRef<false | Date>;
561
- getEvaluateText: import("vue").ComputedRef<"测评已结束" | "开始测评">;
562
- showCountdown: import("vue").ComputedRef<any>;
563
- showRange: import("vue").ComputedRef<boolean>;
564
- getTotalLen: () => void;
565
- countdown: (startTime: any) => void;
566
- clearTimer: () => void;
567
- disabledEvaluate: import("vue").ComputedRef<any>;
568
- isBanStart: () => boolean;
569
- init: () => void;
570
- handleEvaluateParams: () => void;
571
- writeGuage: () => void;
572
- NButton: import("vue").DefineComponent<{
573
- readonly color: StringConstructor;
574
- readonly textColor: StringConstructor;
575
- readonly text: BooleanConstructor;
576
- readonly block: BooleanConstructor;
577
- readonly loading: BooleanConstructor;
578
- readonly disabled: BooleanConstructor;
579
- readonly circle: BooleanConstructor;
580
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
581
- readonly ghost: BooleanConstructor;
582
- readonly round: BooleanConstructor;
583
- readonly secondary: BooleanConstructor;
584
- readonly tertiary: BooleanConstructor;
585
- readonly quaternary: BooleanConstructor;
586
- readonly strong: BooleanConstructor;
587
- readonly focusable: {
588
- readonly type: BooleanConstructor;
589
- readonly default: true;
590
- };
591
- readonly keyboard: {
592
- readonly type: BooleanConstructor;
593
- readonly default: true;
594
- };
595
- readonly tag: {
596
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
597
- readonly default: "button";
598
- };
599
- readonly type: {
600
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
601
- readonly default: "default";
602
- };
603
- readonly dashed: BooleanConstructor;
604
- readonly iconPlacement: {
605
- readonly type: import("vue").PropType<"left" | "right">;
606
- readonly default: "left";
607
- };
608
- readonly attrType: {
609
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
610
- readonly default: "button";
611
- };
612
- readonly bordered: {
613
- readonly type: BooleanConstructor;
614
- readonly default: true;
615
- };
616
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
617
- readonly nativeFocusBehavior: BooleanConstructor;
618
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
619
- heightTiny: string;
620
- heightSmall: string;
621
- heightMedium: string;
622
- heightLarge: string;
623
- borderRadiusTiny: string;
624
- borderRadiusSmall: string;
625
- borderRadiusMedium: string;
626
- borderRadiusLarge: string;
627
- fontSizeTiny: string;
628
- fontSizeSmall: string;
629
- fontSizeMedium: string;
630
- fontSizeLarge: string;
631
- opacityDisabled: string;
632
- colorOpacitySecondary: string;
633
- colorOpacitySecondaryHover: string;
634
- colorOpacitySecondaryPressed: string;
635
- colorSecondary: string;
636
- colorSecondaryHover: string;
637
- colorSecondaryPressed: string;
638
- colorTertiary: string;
639
- colorTertiaryHover: string;
640
- colorTertiaryPressed: string;
641
- colorQuaternary: string;
642
- colorQuaternaryHover: string;
643
- colorQuaternaryPressed: string;
644
- color: string;
645
- colorHover: string;
646
- colorPressed: string;
647
- colorFocus: string;
648
- colorDisabled: string;
649
- textColor: string;
650
- textColorTertiary: string;
651
- textColorHover: string;
652
- textColorPressed: string;
653
- textColorFocus: string;
654
- textColorDisabled: string;
655
- textColorText: string;
656
- textColorTextHover: string;
657
- textColorTextPressed: string;
658
- textColorTextFocus: string;
659
- textColorTextDisabled: string;
660
- textColorGhost: string;
661
- textColorGhostHover: string;
662
- textColorGhostPressed: string;
663
- textColorGhostFocus: string;
664
- textColorGhostDisabled: string;
665
- border: string;
666
- borderHover: string;
667
- borderPressed: string;
668
- borderFocus: string;
669
- borderDisabled: string;
670
- rippleColor: string;
671
- colorPrimary: string;
672
- colorHoverPrimary: string;
673
- colorPressedPrimary: string;
674
- colorFocusPrimary: string;
675
- colorDisabledPrimary: string;
676
- textColorPrimary: string;
677
- textColorHoverPrimary: string;
678
- textColorPressedPrimary: string;
679
- textColorFocusPrimary: string;
680
- textColorDisabledPrimary: string;
681
- textColorTextPrimary: string;
682
- textColorTextHoverPrimary: string;
683
- textColorTextPressedPrimary: string;
684
- textColorTextFocusPrimary: string;
685
- textColorTextDisabledPrimary: string;
686
- textColorGhostPrimary: string;
687
- textColorGhostHoverPrimary: string;
688
- textColorGhostPressedPrimary: string;
689
- textColorGhostFocusPrimary: string;
690
- textColorGhostDisabledPrimary: string;
691
- borderPrimary: string;
692
- borderHoverPrimary: string;
693
- borderPressedPrimary: string;
694
- borderFocusPrimary: string;
695
- borderDisabledPrimary: string;
696
- rippleColorPrimary: string;
697
- colorInfo: string;
698
- colorHoverInfo: string;
699
- colorPressedInfo: string;
700
- colorFocusInfo: string;
701
- colorDisabledInfo: string;
702
- textColorInfo: string;
703
- textColorHoverInfo: string;
704
- textColorPressedInfo: string;
705
- textColorFocusInfo: string;
706
- textColorDisabledInfo: string;
707
- textColorTextInfo: string;
708
- textColorTextHoverInfo: string;
709
- textColorTextPressedInfo: string;
710
- textColorTextFocusInfo: string;
711
- textColorTextDisabledInfo: string;
712
- textColorGhostInfo: string;
713
- textColorGhostHoverInfo: string;
714
- textColorGhostPressedInfo: string;
715
- textColorGhostFocusInfo: string;
716
- textColorGhostDisabledInfo: string;
717
- borderInfo: string;
718
- borderHoverInfo: string;
719
- borderPressedInfo: string;
720
- borderFocusInfo: string;
721
- borderDisabledInfo: string;
722
- rippleColorInfo: string;
723
- colorSuccess: string;
724
- colorHoverSuccess: string;
725
- colorPressedSuccess: string;
726
- colorFocusSuccess: string;
727
- colorDisabledSuccess: string;
728
- textColorSuccess: string;
729
- textColorHoverSuccess: string;
730
- textColorPressedSuccess: string;
731
- textColorFocusSuccess: string;
732
- textColorDisabledSuccess: string;
733
- textColorTextSuccess: string;
734
- textColorTextHoverSuccess: string;
735
- textColorTextPressedSuccess: string;
736
- textColorTextFocusSuccess: string;
737
- textColorTextDisabledSuccess: string;
738
- textColorGhostSuccess: string;
739
- textColorGhostHoverSuccess: string;
740
- textColorGhostPressedSuccess: string;
741
- textColorGhostFocusSuccess: string;
742
- textColorGhostDisabledSuccess: string;
743
- borderSuccess: string;
744
- borderHoverSuccess: string;
745
- borderPressedSuccess: string;
746
- borderFocusSuccess: string;
747
- borderDisabledSuccess: string;
748
- rippleColorSuccess: string;
749
- colorWarning: string;
750
- colorHoverWarning: string;
751
- colorPressedWarning: string;
752
- colorFocusWarning: string;
753
- colorDisabledWarning: string;
754
- textColorWarning: string;
755
- textColorHoverWarning: string;
756
- textColorPressedWarning: string;
757
- textColorFocusWarning: string;
758
- textColorDisabledWarning: string;
759
- textColorTextWarning: string;
760
- textColorTextHoverWarning: string;
761
- textColorTextPressedWarning: string;
762
- textColorTextFocusWarning: string;
763
- textColorTextDisabledWarning: string;
764
- textColorGhostWarning: string;
765
- textColorGhostHoverWarning: string;
766
- textColorGhostPressedWarning: string;
767
- textColorGhostFocusWarning: string;
768
- textColorGhostDisabledWarning: string;
769
- borderWarning: string;
770
- borderHoverWarning: string;
771
- borderPressedWarning: string;
772
- borderFocusWarning: string;
773
- borderDisabledWarning: string;
774
- rippleColorWarning: string;
775
- colorError: string;
776
- colorHoverError: string;
777
- colorPressedError: string;
778
- colorFocusError: string;
779
- colorDisabledError: string;
780
- textColorError: string;
781
- textColorHoverError: string;
782
- textColorPressedError: string;
783
- textColorFocusError: string;
784
- textColorDisabledError: string;
785
- textColorTextError: string;
786
- textColorTextHoverError: string;
787
- textColorTextPressedError: string;
788
- textColorTextFocusError: string;
789
- textColorTextDisabledError: string;
790
- textColorGhostError: string;
791
- textColorGhostHoverError: string;
792
- textColorGhostPressedError: string;
793
- textColorGhostFocusError: string;
794
- textColorGhostDisabledError: string;
795
- borderError: string;
796
- borderHoverError: string;
797
- borderPressedError: string;
798
- borderFocusError: string;
799
- borderDisabledError: string;
800
- rippleColorError: string;
801
- waveOpacity: string;
802
- fontWeight: string;
803
- fontWeightStrong: string;
804
- paddingTiny: string;
805
- paddingSmall: string;
806
- paddingMedium: string;
807
- paddingLarge: string;
808
- paddingRoundTiny: string;
809
- paddingRoundSmall: string;
810
- paddingRoundMedium: string;
811
- paddingRoundLarge: string;
812
- iconMarginTiny: string;
813
- iconMarginSmall: string;
814
- iconMarginMedium: string;
815
- iconMarginLarge: string;
816
- iconSizeTiny: string;
817
- iconSizeSmall: string;
818
- iconSizeMedium: string;
819
- iconSizeLarge: string;
820
- rippleDuration: string;
821
- }, any>>;
822
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
823
- heightTiny: string;
824
- heightSmall: string;
825
- heightMedium: string;
826
- heightLarge: string;
827
- borderRadiusTiny: string;
828
- borderRadiusSmall: string;
829
- borderRadiusMedium: string;
830
- borderRadiusLarge: string;
831
- fontSizeTiny: string;
832
- fontSizeSmall: string;
833
- fontSizeMedium: string;
834
- fontSizeLarge: string;
835
- opacityDisabled: string;
836
- colorOpacitySecondary: string;
837
- colorOpacitySecondaryHover: string;
838
- colorOpacitySecondaryPressed: string;
839
- colorSecondary: string;
840
- colorSecondaryHover: string;
841
- colorSecondaryPressed: string;
842
- colorTertiary: string;
843
- colorTertiaryHover: string;
844
- colorTertiaryPressed: string;
845
- colorQuaternary: string;
846
- colorQuaternaryHover: string;
847
- colorQuaternaryPressed: string;
848
- color: string;
849
- colorHover: string;
850
- colorPressed: string;
851
- colorFocus: string;
852
- colorDisabled: string;
853
- textColor: string;
854
- textColorTertiary: string;
855
- textColorHover: string;
856
- textColorPressed: string;
857
- textColorFocus: string;
858
- textColorDisabled: string;
859
- textColorText: string;
860
- textColorTextHover: string;
861
- textColorTextPressed: string;
862
- textColorTextFocus: string;
863
- textColorTextDisabled: string;
864
- textColorGhost: string;
865
- textColorGhostHover: string;
866
- textColorGhostPressed: string;
867
- textColorGhostFocus: string;
868
- textColorGhostDisabled: string;
869
- border: string;
870
- borderHover: string;
871
- borderPressed: string;
872
- borderFocus: string;
873
- borderDisabled: string;
874
- rippleColor: string;
875
- colorPrimary: string;
876
- colorHoverPrimary: string;
877
- colorPressedPrimary: string;
878
- colorFocusPrimary: string;
879
- colorDisabledPrimary: string;
880
- textColorPrimary: string;
881
- textColorHoverPrimary: string;
882
- textColorPressedPrimary: string;
883
- textColorFocusPrimary: string;
884
- textColorDisabledPrimary: string;
885
- textColorTextPrimary: string;
886
- textColorTextHoverPrimary: string;
887
- textColorTextPressedPrimary: string;
888
- textColorTextFocusPrimary: string;
889
- textColorTextDisabledPrimary: string;
890
- textColorGhostPrimary: string;
891
- textColorGhostHoverPrimary: string;
892
- textColorGhostPressedPrimary: string;
893
- textColorGhostFocusPrimary: string;
894
- textColorGhostDisabledPrimary: string;
895
- borderPrimary: string;
896
- borderHoverPrimary: string;
897
- borderPressedPrimary: string;
898
- borderFocusPrimary: string;
899
- borderDisabledPrimary: string;
900
- rippleColorPrimary: string;
901
- colorInfo: string;
902
- colorHoverInfo: string;
903
- colorPressedInfo: string;
904
- colorFocusInfo: string;
905
- colorDisabledInfo: string;
906
- textColorInfo: string;
907
- textColorHoverInfo: string;
908
- textColorPressedInfo: string;
909
- textColorFocusInfo: string;
910
- textColorDisabledInfo: string;
911
- textColorTextInfo: string;
912
- textColorTextHoverInfo: string;
913
- textColorTextPressedInfo: string;
914
- textColorTextFocusInfo: string;
915
- textColorTextDisabledInfo: string;
916
- textColorGhostInfo: string;
917
- textColorGhostHoverInfo: string;
918
- textColorGhostPressedInfo: string;
919
- textColorGhostFocusInfo: string;
920
- textColorGhostDisabledInfo: string;
921
- borderInfo: string;
922
- borderHoverInfo: string;
923
- borderPressedInfo: string;
924
- borderFocusInfo: string;
925
- borderDisabledInfo: string;
926
- rippleColorInfo: string;
927
- colorSuccess: string;
928
- colorHoverSuccess: string;
929
- colorPressedSuccess: string;
930
- colorFocusSuccess: string;
931
- colorDisabledSuccess: string;
932
- textColorSuccess: string;
933
- textColorHoverSuccess: string;
934
- textColorPressedSuccess: string;
935
- textColorFocusSuccess: string;
936
- textColorDisabledSuccess: string;
937
- textColorTextSuccess: string;
938
- textColorTextHoverSuccess: string;
939
- textColorTextPressedSuccess: string;
940
- textColorTextFocusSuccess: string;
941
- textColorTextDisabledSuccess: string;
942
- textColorGhostSuccess: string;
943
- textColorGhostHoverSuccess: string;
944
- textColorGhostPressedSuccess: string;
945
- textColorGhostFocusSuccess: string;
946
- textColorGhostDisabledSuccess: string;
947
- borderSuccess: string;
948
- borderHoverSuccess: string;
949
- borderPressedSuccess: string;
950
- borderFocusSuccess: string;
951
- borderDisabledSuccess: string;
952
- rippleColorSuccess: string;
953
- colorWarning: string;
954
- colorHoverWarning: string;
955
- colorPressedWarning: string;
956
- colorFocusWarning: string;
957
- colorDisabledWarning: string;
958
- textColorWarning: string;
959
- textColorHoverWarning: string;
960
- textColorPressedWarning: string;
961
- textColorFocusWarning: string;
962
- textColorDisabledWarning: string;
963
- textColorTextWarning: string;
964
- textColorTextHoverWarning: string;
965
- textColorTextPressedWarning: string;
966
- textColorTextFocusWarning: string;
967
- textColorTextDisabledWarning: string;
968
- textColorGhostWarning: string;
969
- textColorGhostHoverWarning: string;
970
- textColorGhostPressedWarning: string;
971
- textColorGhostFocusWarning: string;
972
- textColorGhostDisabledWarning: string;
973
- borderWarning: string;
974
- borderHoverWarning: string;
975
- borderPressedWarning: string;
976
- borderFocusWarning: string;
977
- borderDisabledWarning: string;
978
- rippleColorWarning: string;
979
- colorError: string;
980
- colorHoverError: string;
981
- colorPressedError: string;
982
- colorFocusError: string;
983
- colorDisabledError: string;
984
- textColorError: string;
985
- textColorHoverError: string;
986
- textColorPressedError: string;
987
- textColorFocusError: string;
988
- textColorDisabledError: string;
989
- textColorTextError: string;
990
- textColorTextHoverError: string;
991
- textColorTextPressedError: string;
992
- textColorTextFocusError: string;
993
- textColorTextDisabledError: string;
994
- textColorGhostError: string;
995
- textColorGhostHoverError: string;
996
- textColorGhostPressedError: string;
997
- textColorGhostFocusError: string;
998
- textColorGhostDisabledError: string;
999
- borderError: string;
1000
- borderHoverError: string;
1001
- borderPressedError: string;
1002
- borderFocusError: string;
1003
- borderDisabledError: string;
1004
- rippleColorError: string;
1005
- waveOpacity: string;
1006
- fontWeight: string;
1007
- fontWeightStrong: string;
1008
- paddingTiny: string;
1009
- paddingSmall: string;
1010
- paddingMedium: string;
1011
- paddingLarge: string;
1012
- paddingRoundTiny: string;
1013
- paddingRoundSmall: string;
1014
- paddingRoundMedium: string;
1015
- paddingRoundLarge: string;
1016
- iconMarginTiny: string;
1017
- iconMarginSmall: string;
1018
- iconMarginMedium: string;
1019
- iconMarginLarge: string;
1020
- iconSizeTiny: string;
1021
- iconSizeSmall: string;
1022
- iconSizeMedium: string;
1023
- iconSizeLarge: string;
1024
- rippleDuration: string;
1025
- }, any>>>;
1026
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1027
- heightTiny: string;
1028
- heightSmall: string;
1029
- heightMedium: string;
1030
- heightLarge: string;
1031
- borderRadiusTiny: string;
1032
- borderRadiusSmall: string;
1033
- borderRadiusMedium: string;
1034
- borderRadiusLarge: string;
1035
- fontSizeTiny: string;
1036
- fontSizeSmall: string;
1037
- fontSizeMedium: string;
1038
- fontSizeLarge: string;
1039
- opacityDisabled: string;
1040
- colorOpacitySecondary: string;
1041
- colorOpacitySecondaryHover: string;
1042
- colorOpacitySecondaryPressed: string;
1043
- colorSecondary: string;
1044
- colorSecondaryHover: string;
1045
- colorSecondaryPressed: string;
1046
- colorTertiary: string;
1047
- colorTertiaryHover: string;
1048
- colorTertiaryPressed: string;
1049
- colorQuaternary: string;
1050
- colorQuaternaryHover: string;
1051
- colorQuaternaryPressed: string;
1052
- color: string;
1053
- colorHover: string;
1054
- colorPressed: string;
1055
- colorFocus: string;
1056
- colorDisabled: string;
1057
- textColor: string;
1058
- textColorTertiary: string;
1059
- textColorHover: string;
1060
- textColorPressed: string;
1061
- textColorFocus: string;
1062
- textColorDisabled: string;
1063
- textColorText: string;
1064
- textColorTextHover: string;
1065
- textColorTextPressed: string;
1066
- textColorTextFocus: string;
1067
- textColorTextDisabled: string;
1068
- textColorGhost: string;
1069
- textColorGhostHover: string;
1070
- textColorGhostPressed: string;
1071
- textColorGhostFocus: string;
1072
- textColorGhostDisabled: string;
1073
- border: string;
1074
- borderHover: string;
1075
- borderPressed: string;
1076
- borderFocus: string;
1077
- borderDisabled: string;
1078
- rippleColor: string;
1079
- colorPrimary: string;
1080
- colorHoverPrimary: string;
1081
- colorPressedPrimary: string;
1082
- colorFocusPrimary: string;
1083
- colorDisabledPrimary: string;
1084
- textColorPrimary: string;
1085
- textColorHoverPrimary: string;
1086
- textColorPressedPrimary: string;
1087
- textColorFocusPrimary: string;
1088
- textColorDisabledPrimary: string;
1089
- textColorTextPrimary: string;
1090
- textColorTextHoverPrimary: string;
1091
- textColorTextPressedPrimary: string;
1092
- textColorTextFocusPrimary: string;
1093
- textColorTextDisabledPrimary: string;
1094
- textColorGhostPrimary: string;
1095
- textColorGhostHoverPrimary: string;
1096
- textColorGhostPressedPrimary: string;
1097
- textColorGhostFocusPrimary: string;
1098
- textColorGhostDisabledPrimary: string;
1099
- borderPrimary: string;
1100
- borderHoverPrimary: string;
1101
- borderPressedPrimary: string;
1102
- borderFocusPrimary: string;
1103
- borderDisabledPrimary: string;
1104
- rippleColorPrimary: string;
1105
- colorInfo: string;
1106
- colorHoverInfo: string;
1107
- colorPressedInfo: string;
1108
- colorFocusInfo: string;
1109
- colorDisabledInfo: string;
1110
- textColorInfo: string;
1111
- textColorHoverInfo: string;
1112
- textColorPressedInfo: string;
1113
- textColorFocusInfo: string;
1114
- textColorDisabledInfo: string;
1115
- textColorTextInfo: string;
1116
- textColorTextHoverInfo: string;
1117
- textColorTextPressedInfo: string;
1118
- textColorTextFocusInfo: string;
1119
- textColorTextDisabledInfo: string;
1120
- textColorGhostInfo: string;
1121
- textColorGhostHoverInfo: string;
1122
- textColorGhostPressedInfo: string;
1123
- textColorGhostFocusInfo: string;
1124
- textColorGhostDisabledInfo: string;
1125
- borderInfo: string;
1126
- borderHoverInfo: string;
1127
- borderPressedInfo: string;
1128
- borderFocusInfo: string;
1129
- borderDisabledInfo: string;
1130
- rippleColorInfo: string;
1131
- colorSuccess: string;
1132
- colorHoverSuccess: string;
1133
- colorPressedSuccess: string;
1134
- colorFocusSuccess: string;
1135
- colorDisabledSuccess: string;
1136
- textColorSuccess: string;
1137
- textColorHoverSuccess: string;
1138
- textColorPressedSuccess: string;
1139
- textColorFocusSuccess: string;
1140
- textColorDisabledSuccess: string;
1141
- textColorTextSuccess: string;
1142
- textColorTextHoverSuccess: string;
1143
- textColorTextPressedSuccess: string;
1144
- textColorTextFocusSuccess: string;
1145
- textColorTextDisabledSuccess: string;
1146
- textColorGhostSuccess: string;
1147
- textColorGhostHoverSuccess: string;
1148
- textColorGhostPressedSuccess: string;
1149
- textColorGhostFocusSuccess: string;
1150
- textColorGhostDisabledSuccess: string;
1151
- borderSuccess: string;
1152
- borderHoverSuccess: string;
1153
- borderPressedSuccess: string;
1154
- borderFocusSuccess: string;
1155
- borderDisabledSuccess: string;
1156
- rippleColorSuccess: string;
1157
- colorWarning: string;
1158
- colorHoverWarning: string;
1159
- colorPressedWarning: string;
1160
- colorFocusWarning: string;
1161
- colorDisabledWarning: string;
1162
- textColorWarning: string;
1163
- textColorHoverWarning: string;
1164
- textColorPressedWarning: string;
1165
- textColorFocusWarning: string;
1166
- textColorDisabledWarning: string;
1167
- textColorTextWarning: string;
1168
- textColorTextHoverWarning: string;
1169
- textColorTextPressedWarning: string;
1170
- textColorTextFocusWarning: string;
1171
- textColorTextDisabledWarning: string;
1172
- textColorGhostWarning: string;
1173
- textColorGhostHoverWarning: string;
1174
- textColorGhostPressedWarning: string;
1175
- textColorGhostFocusWarning: string;
1176
- textColorGhostDisabledWarning: string;
1177
- borderWarning: string;
1178
- borderHoverWarning: string;
1179
- borderPressedWarning: string;
1180
- borderFocusWarning: string;
1181
- borderDisabledWarning: string;
1182
- rippleColorWarning: string;
1183
- colorError: string;
1184
- colorHoverError: string;
1185
- colorPressedError: string;
1186
- colorFocusError: string;
1187
- colorDisabledError: string;
1188
- textColorError: string;
1189
- textColorHoverError: string;
1190
- textColorPressedError: string;
1191
- textColorFocusError: string;
1192
- textColorDisabledError: string;
1193
- textColorTextError: string;
1194
- textColorTextHoverError: string;
1195
- textColorTextPressedError: string;
1196
- textColorTextFocusError: string;
1197
- textColorTextDisabledError: string;
1198
- textColorGhostError: string;
1199
- textColorGhostHoverError: string;
1200
- textColorGhostPressedError: string;
1201
- textColorGhostFocusError: string;
1202
- textColorGhostDisabledError: string;
1203
- borderError: string;
1204
- borderHoverError: string;
1205
- borderPressedError: string;
1206
- borderFocusError: string;
1207
- borderDisabledError: string;
1208
- rippleColorError: string;
1209
- waveOpacity: string;
1210
- fontWeight: string;
1211
- fontWeightStrong: string;
1212
- paddingTiny: string;
1213
- paddingSmall: string;
1214
- paddingMedium: string;
1215
- paddingLarge: string;
1216
- paddingRoundTiny: string;
1217
- paddingRoundSmall: string;
1218
- paddingRoundMedium: string;
1219
- paddingRoundLarge: string;
1220
- iconMarginTiny: string;
1221
- iconMarginSmall: string;
1222
- iconMarginMedium: string;
1223
- iconMarginLarge: string;
1224
- iconSizeTiny: string;
1225
- iconSizeSmall: string;
1226
- iconSizeMedium: string;
1227
- iconSizeLarge: string;
1228
- rippleDuration: string;
1229
- }, any>>>;
1230
- }, {
1231
- selfElRef: import("vue").Ref<HTMLElement | null>;
1232
- waveElRef: import("vue").Ref<{
1233
- play: () => void;
1234
- } | null>;
1235
- mergedClsPrefix: import("vue").ComputedRef<string>;
1236
- mergedFocusable: import("vue").ComputedRef<boolean>;
1237
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large" | "tiny">;
1238
- showBorder: import("vue").ComputedRef<boolean>;
1239
- enterPressed: import("vue").Ref<boolean>;
1240
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1241
- handleMousedown: (e: MouseEvent) => void;
1242
- handleKeydown: (e: KeyboardEvent) => void;
1243
- handleBlur: () => void;
1244
- handleKeyup: (e: KeyboardEvent) => void;
1245
- handleClick: (e: MouseEvent) => void;
1246
- customColorCssVars: import("vue").ComputedRef<{
1247
- '--n-border-color': string;
1248
- '--n-border-color-hover': string;
1249
- '--n-border-color-pressed': string;
1250
- '--n-border-color-focus': string;
1251
- '--n-border-color-disabled': string;
1252
- } | null>;
1253
- cssVars: import("vue").ComputedRef<{
1254
- '--n-width': string;
1255
- '--n-height': string;
1256
- '--n-font-size': string;
1257
- '--n-padding': string;
1258
- '--n-icon-size': string;
1259
- '--n-icon-margin': string;
1260
- '--n-border-radius': string;
1261
- '--n-border': string;
1262
- '--n-border-hover': string;
1263
- '--n-border-pressed': string;
1264
- '--n-border-focus': string;
1265
- '--n-border-disabled': string;
1266
- '--n-color': string;
1267
- '--n-color-hover': string;
1268
- '--n-color-pressed': string;
1269
- '--n-color-focus': string;
1270
- '--n-color-disabled': string;
1271
- '--n-ripple-color': string;
1272
- '--n-text-color': string;
1273
- '--n-text-color-hover': string;
1274
- '--n-text-color-pressed': string;
1275
- '--n-text-color-focus': string;
1276
- '--n-text-color-disabled': string;
1277
- 'font-weight': string;
1278
- '--n-bezier': string;
1279
- '--n-bezier-ease-out': string;
1280
- '--n-ripple-duration': string;
1281
- '--n-opacity-disabled': string;
1282
- '--n-wave-opacity': string;
1283
- }> | undefined;
1284
- themeClass: import("vue").Ref<string> | undefined;
1285
- onRender: (() => void) | undefined;
1286
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1287
- readonly color: StringConstructor;
1288
- readonly textColor: StringConstructor;
1289
- readonly text: BooleanConstructor;
1290
- readonly block: BooleanConstructor;
1291
- readonly loading: BooleanConstructor;
1292
- readonly disabled: BooleanConstructor;
1293
- readonly circle: BooleanConstructor;
1294
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
1295
- readonly ghost: BooleanConstructor;
1296
- readonly round: BooleanConstructor;
1297
- readonly secondary: BooleanConstructor;
1298
- readonly tertiary: BooleanConstructor;
1299
- readonly quaternary: BooleanConstructor;
1300
- readonly strong: BooleanConstructor;
1301
- readonly focusable: {
1302
- readonly type: BooleanConstructor;
1303
- readonly default: true;
1304
- };
1305
- readonly keyboard: {
1306
- readonly type: BooleanConstructor;
1307
- readonly default: true;
1308
- };
1309
- readonly tag: {
1310
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
1311
- readonly default: "button";
1312
- };
1313
- readonly type: {
1314
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
1315
- readonly default: "default";
1316
- };
1317
- readonly dashed: BooleanConstructor;
1318
- readonly iconPlacement: {
1319
- readonly type: import("vue").PropType<"left" | "right">;
1320
- readonly default: "left";
1321
- };
1322
- readonly attrType: {
1323
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
1324
- readonly default: "button";
1325
- };
1326
- readonly bordered: {
1327
- readonly type: BooleanConstructor;
1328
- readonly default: true;
1329
- };
1330
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1331
- readonly nativeFocusBehavior: BooleanConstructor;
1332
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1333
- heightTiny: string;
1334
- heightSmall: string;
1335
- heightMedium: string;
1336
- heightLarge: string;
1337
- borderRadiusTiny: string;
1338
- borderRadiusSmall: string;
1339
- borderRadiusMedium: string;
1340
- borderRadiusLarge: string;
1341
- fontSizeTiny: string;
1342
- fontSizeSmall: string;
1343
- fontSizeMedium: string;
1344
- fontSizeLarge: string;
1345
- opacityDisabled: string;
1346
- colorOpacitySecondary: string;
1347
- colorOpacitySecondaryHover: string;
1348
- colorOpacitySecondaryPressed: string;
1349
- colorSecondary: string;
1350
- colorSecondaryHover: string;
1351
- colorSecondaryPressed: string;
1352
- colorTertiary: string;
1353
- colorTertiaryHover: string;
1354
- colorTertiaryPressed: string;
1355
- colorQuaternary: string;
1356
- colorQuaternaryHover: string;
1357
- colorQuaternaryPressed: string;
1358
- color: string;
1359
- colorHover: string;
1360
- colorPressed: string;
1361
- colorFocus: string;
1362
- colorDisabled: string;
1363
- textColor: string;
1364
- textColorTertiary: string;
1365
- textColorHover: string;
1366
- textColorPressed: string;
1367
- textColorFocus: string;
1368
- textColorDisabled: string;
1369
- textColorText: string;
1370
- textColorTextHover: string;
1371
- textColorTextPressed: string;
1372
- textColorTextFocus: string;
1373
- textColorTextDisabled: string;
1374
- textColorGhost: string;
1375
- textColorGhostHover: string;
1376
- textColorGhostPressed: string;
1377
- textColorGhostFocus: string;
1378
- textColorGhostDisabled: string;
1379
- border: string;
1380
- borderHover: string;
1381
- borderPressed: string;
1382
- borderFocus: string;
1383
- borderDisabled: string;
1384
- rippleColor: string;
1385
- colorPrimary: string;
1386
- colorHoverPrimary: string;
1387
- colorPressedPrimary: string;
1388
- colorFocusPrimary: string;
1389
- colorDisabledPrimary: string;
1390
- textColorPrimary: string;
1391
- textColorHoverPrimary: string;
1392
- textColorPressedPrimary: string;
1393
- textColorFocusPrimary: string;
1394
- textColorDisabledPrimary: string;
1395
- textColorTextPrimary: string;
1396
- textColorTextHoverPrimary: string;
1397
- textColorTextPressedPrimary: string;
1398
- textColorTextFocusPrimary: string;
1399
- textColorTextDisabledPrimary: string;
1400
- textColorGhostPrimary: string;
1401
- textColorGhostHoverPrimary: string;
1402
- textColorGhostPressedPrimary: string;
1403
- textColorGhostFocusPrimary: string;
1404
- textColorGhostDisabledPrimary: string;
1405
- borderPrimary: string;
1406
- borderHoverPrimary: string;
1407
- borderPressedPrimary: string;
1408
- borderFocusPrimary: string;
1409
- borderDisabledPrimary: string;
1410
- rippleColorPrimary: string;
1411
- colorInfo: string;
1412
- colorHoverInfo: string;
1413
- colorPressedInfo: string;
1414
- colorFocusInfo: string;
1415
- colorDisabledInfo: string;
1416
- textColorInfo: string;
1417
- textColorHoverInfo: string;
1418
- textColorPressedInfo: string;
1419
- textColorFocusInfo: string;
1420
- textColorDisabledInfo: string;
1421
- textColorTextInfo: string;
1422
- textColorTextHoverInfo: string;
1423
- textColorTextPressedInfo: string;
1424
- textColorTextFocusInfo: string;
1425
- textColorTextDisabledInfo: string;
1426
- textColorGhostInfo: string;
1427
- textColorGhostHoverInfo: string;
1428
- textColorGhostPressedInfo: string;
1429
- textColorGhostFocusInfo: string;
1430
- textColorGhostDisabledInfo: string;
1431
- borderInfo: string;
1432
- borderHoverInfo: string;
1433
- borderPressedInfo: string;
1434
- borderFocusInfo: string;
1435
- borderDisabledInfo: string;
1436
- rippleColorInfo: string;
1437
- colorSuccess: string;
1438
- colorHoverSuccess: string;
1439
- colorPressedSuccess: string;
1440
- colorFocusSuccess: string;
1441
- colorDisabledSuccess: string;
1442
- textColorSuccess: string;
1443
- textColorHoverSuccess: string;
1444
- textColorPressedSuccess: string;
1445
- textColorFocusSuccess: string;
1446
- textColorDisabledSuccess: string;
1447
- textColorTextSuccess: string;
1448
- textColorTextHoverSuccess: string;
1449
- textColorTextPressedSuccess: string;
1450
- textColorTextFocusSuccess: string;
1451
- textColorTextDisabledSuccess: string;
1452
- textColorGhostSuccess: string;
1453
- textColorGhostHoverSuccess: string;
1454
- textColorGhostPressedSuccess: string;
1455
- textColorGhostFocusSuccess: string;
1456
- textColorGhostDisabledSuccess: string;
1457
- borderSuccess: string;
1458
- borderHoverSuccess: string;
1459
- borderPressedSuccess: string;
1460
- borderFocusSuccess: string;
1461
- borderDisabledSuccess: string;
1462
- rippleColorSuccess: string;
1463
- colorWarning: string;
1464
- colorHoverWarning: string;
1465
- colorPressedWarning: string;
1466
- colorFocusWarning: string;
1467
- colorDisabledWarning: string;
1468
- textColorWarning: string;
1469
- textColorHoverWarning: string;
1470
- textColorPressedWarning: string;
1471
- textColorFocusWarning: string;
1472
- textColorDisabledWarning: string;
1473
- textColorTextWarning: string;
1474
- textColorTextHoverWarning: string;
1475
- textColorTextPressedWarning: string;
1476
- textColorTextFocusWarning: string;
1477
- textColorTextDisabledWarning: string;
1478
- textColorGhostWarning: string;
1479
- textColorGhostHoverWarning: string;
1480
- textColorGhostPressedWarning: string;
1481
- textColorGhostFocusWarning: string;
1482
- textColorGhostDisabledWarning: string;
1483
- borderWarning: string;
1484
- borderHoverWarning: string;
1485
- borderPressedWarning: string;
1486
- borderFocusWarning: string;
1487
- borderDisabledWarning: string;
1488
- rippleColorWarning: string;
1489
- colorError: string;
1490
- colorHoverError: string;
1491
- colorPressedError: string;
1492
- colorFocusError: string;
1493
- colorDisabledError: string;
1494
- textColorError: string;
1495
- textColorHoverError: string;
1496
- textColorPressedError: string;
1497
- textColorFocusError: string;
1498
- textColorDisabledError: string;
1499
- textColorTextError: string;
1500
- textColorTextHoverError: string;
1501
- textColorTextPressedError: string;
1502
- textColorTextFocusError: string;
1503
- textColorTextDisabledError: string;
1504
- textColorGhostError: string;
1505
- textColorGhostHoverError: string;
1506
- textColorGhostPressedError: string;
1507
- textColorGhostFocusError: string;
1508
- textColorGhostDisabledError: string;
1509
- borderError: string;
1510
- borderHoverError: string;
1511
- borderPressedError: string;
1512
- borderFocusError: string;
1513
- borderDisabledError: string;
1514
- rippleColorError: string;
1515
- waveOpacity: string;
1516
- fontWeight: string;
1517
- fontWeightStrong: string;
1518
- paddingTiny: string;
1519
- paddingSmall: string;
1520
- paddingMedium: string;
1521
- paddingLarge: string;
1522
- paddingRoundTiny: string;
1523
- paddingRoundSmall: string;
1524
- paddingRoundMedium: string;
1525
- paddingRoundLarge: string;
1526
- iconMarginTiny: string;
1527
- iconMarginSmall: string;
1528
- iconMarginMedium: string;
1529
- iconMarginLarge: string;
1530
- iconSizeTiny: string;
1531
- iconSizeSmall: string;
1532
- iconSizeMedium: string;
1533
- iconSizeLarge: string;
1534
- rippleDuration: string;
1535
- }, any>>;
1536
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1537
- heightTiny: string;
1538
- heightSmall: string;
1539
- heightMedium: string;
1540
- heightLarge: string;
1541
- borderRadiusTiny: string;
1542
- borderRadiusSmall: string;
1543
- borderRadiusMedium: string;
1544
- borderRadiusLarge: string;
1545
- fontSizeTiny: string;
1546
- fontSizeSmall: string;
1547
- fontSizeMedium: string;
1548
- fontSizeLarge: string;
1549
- opacityDisabled: string;
1550
- colorOpacitySecondary: string;
1551
- colorOpacitySecondaryHover: string;
1552
- colorOpacitySecondaryPressed: string;
1553
- colorSecondary: string;
1554
- colorSecondaryHover: string;
1555
- colorSecondaryPressed: string;
1556
- colorTertiary: string;
1557
- colorTertiaryHover: string;
1558
- colorTertiaryPressed: string;
1559
- colorQuaternary: string;
1560
- colorQuaternaryHover: string;
1561
- colorQuaternaryPressed: string;
1562
- color: string;
1563
- colorHover: string;
1564
- colorPressed: string;
1565
- colorFocus: string;
1566
- colorDisabled: string;
1567
- textColor: string;
1568
- textColorTertiary: string;
1569
- textColorHover: string;
1570
- textColorPressed: string;
1571
- textColorFocus: string;
1572
- textColorDisabled: string;
1573
- textColorText: string;
1574
- textColorTextHover: string;
1575
- textColorTextPressed: string;
1576
- textColorTextFocus: string;
1577
- textColorTextDisabled: string;
1578
- textColorGhost: string;
1579
- textColorGhostHover: string;
1580
- textColorGhostPressed: string;
1581
- textColorGhostFocus: string;
1582
- textColorGhostDisabled: string;
1583
- border: string;
1584
- borderHover: string;
1585
- borderPressed: string;
1586
- borderFocus: string;
1587
- borderDisabled: string;
1588
- rippleColor: string;
1589
- colorPrimary: string;
1590
- colorHoverPrimary: string;
1591
- colorPressedPrimary: string;
1592
- colorFocusPrimary: string;
1593
- colorDisabledPrimary: string;
1594
- textColorPrimary: string;
1595
- textColorHoverPrimary: string;
1596
- textColorPressedPrimary: string;
1597
- textColorFocusPrimary: string;
1598
- textColorDisabledPrimary: string;
1599
- textColorTextPrimary: string;
1600
- textColorTextHoverPrimary: string;
1601
- textColorTextPressedPrimary: string;
1602
- textColorTextFocusPrimary: string;
1603
- textColorTextDisabledPrimary: string;
1604
- textColorGhostPrimary: string;
1605
- textColorGhostHoverPrimary: string;
1606
- textColorGhostPressedPrimary: string;
1607
- textColorGhostFocusPrimary: string;
1608
- textColorGhostDisabledPrimary: string;
1609
- borderPrimary: string;
1610
- borderHoverPrimary: string;
1611
- borderPressedPrimary: string;
1612
- borderFocusPrimary: string;
1613
- borderDisabledPrimary: string;
1614
- rippleColorPrimary: string;
1615
- colorInfo: string;
1616
- colorHoverInfo: string;
1617
- colorPressedInfo: string;
1618
- colorFocusInfo: string;
1619
- colorDisabledInfo: string;
1620
- textColorInfo: string;
1621
- textColorHoverInfo: string;
1622
- textColorPressedInfo: string;
1623
- textColorFocusInfo: string;
1624
- textColorDisabledInfo: string;
1625
- textColorTextInfo: string;
1626
- textColorTextHoverInfo: string;
1627
- textColorTextPressedInfo: string;
1628
- textColorTextFocusInfo: string;
1629
- textColorTextDisabledInfo: string;
1630
- textColorGhostInfo: string;
1631
- textColorGhostHoverInfo: string;
1632
- textColorGhostPressedInfo: string;
1633
- textColorGhostFocusInfo: string;
1634
- textColorGhostDisabledInfo: string;
1635
- borderInfo: string;
1636
- borderHoverInfo: string;
1637
- borderPressedInfo: string;
1638
- borderFocusInfo: string;
1639
- borderDisabledInfo: string;
1640
- rippleColorInfo: string;
1641
- colorSuccess: string;
1642
- colorHoverSuccess: string;
1643
- colorPressedSuccess: string;
1644
- colorFocusSuccess: string;
1645
- colorDisabledSuccess: string;
1646
- textColorSuccess: string;
1647
- textColorHoverSuccess: string;
1648
- textColorPressedSuccess: string;
1649
- textColorFocusSuccess: string;
1650
- textColorDisabledSuccess: string;
1651
- textColorTextSuccess: string;
1652
- textColorTextHoverSuccess: string;
1653
- textColorTextPressedSuccess: string;
1654
- textColorTextFocusSuccess: string;
1655
- textColorTextDisabledSuccess: string;
1656
- textColorGhostSuccess: string;
1657
- textColorGhostHoverSuccess: string;
1658
- textColorGhostPressedSuccess: string;
1659
- textColorGhostFocusSuccess: string;
1660
- textColorGhostDisabledSuccess: string;
1661
- borderSuccess: string;
1662
- borderHoverSuccess: string;
1663
- borderPressedSuccess: string;
1664
- borderFocusSuccess: string;
1665
- borderDisabledSuccess: string;
1666
- rippleColorSuccess: string;
1667
- colorWarning: string;
1668
- colorHoverWarning: string;
1669
- colorPressedWarning: string;
1670
- colorFocusWarning: string;
1671
- colorDisabledWarning: string;
1672
- textColorWarning: string;
1673
- textColorHoverWarning: string;
1674
- textColorPressedWarning: string;
1675
- textColorFocusWarning: string;
1676
- textColorDisabledWarning: string;
1677
- textColorTextWarning: string;
1678
- textColorTextHoverWarning: string;
1679
- textColorTextPressedWarning: string;
1680
- textColorTextFocusWarning: string;
1681
- textColorTextDisabledWarning: string;
1682
- textColorGhostWarning: string;
1683
- textColorGhostHoverWarning: string;
1684
- textColorGhostPressedWarning: string;
1685
- textColorGhostFocusWarning: string;
1686
- textColorGhostDisabledWarning: string;
1687
- borderWarning: string;
1688
- borderHoverWarning: string;
1689
- borderPressedWarning: string;
1690
- borderFocusWarning: string;
1691
- borderDisabledWarning: string;
1692
- rippleColorWarning: string;
1693
- colorError: string;
1694
- colorHoverError: string;
1695
- colorPressedError: string;
1696
- colorFocusError: string;
1697
- colorDisabledError: string;
1698
- textColorError: string;
1699
- textColorHoverError: string;
1700
- textColorPressedError: string;
1701
- textColorFocusError: string;
1702
- textColorDisabledError: string;
1703
- textColorTextError: string;
1704
- textColorTextHoverError: string;
1705
- textColorTextPressedError: string;
1706
- textColorTextFocusError: string;
1707
- textColorTextDisabledError: string;
1708
- textColorGhostError: string;
1709
- textColorGhostHoverError: string;
1710
- textColorGhostPressedError: string;
1711
- textColorGhostFocusError: string;
1712
- textColorGhostDisabledError: string;
1713
- borderError: string;
1714
- borderHoverError: string;
1715
- borderPressedError: string;
1716
- borderFocusError: string;
1717
- borderDisabledError: string;
1718
- rippleColorError: string;
1719
- waveOpacity: string;
1720
- fontWeight: string;
1721
- fontWeightStrong: string;
1722
- paddingTiny: string;
1723
- paddingSmall: string;
1724
- paddingMedium: string;
1725
- paddingLarge: string;
1726
- paddingRoundTiny: string;
1727
- paddingRoundSmall: string;
1728
- paddingRoundMedium: string;
1729
- paddingRoundLarge: string;
1730
- iconMarginTiny: string;
1731
- iconMarginSmall: string;
1732
- iconMarginMedium: string;
1733
- iconMarginLarge: string;
1734
- iconSizeTiny: string;
1735
- iconSizeSmall: string;
1736
- iconSizeMedium: string;
1737
- iconSizeLarge: string;
1738
- rippleDuration: string;
1739
- }, any>>>;
1740
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1741
- heightTiny: string;
1742
- heightSmall: string;
1743
- heightMedium: string;
1744
- heightLarge: string;
1745
- borderRadiusTiny: string;
1746
- borderRadiusSmall: string;
1747
- borderRadiusMedium: string;
1748
- borderRadiusLarge: string;
1749
- fontSizeTiny: string;
1750
- fontSizeSmall: string;
1751
- fontSizeMedium: string;
1752
- fontSizeLarge: string;
1753
- opacityDisabled: string;
1754
- colorOpacitySecondary: string;
1755
- colorOpacitySecondaryHover: string;
1756
- colorOpacitySecondaryPressed: string;
1757
- colorSecondary: string;
1758
- colorSecondaryHover: string;
1759
- colorSecondaryPressed: string;
1760
- colorTertiary: string;
1761
- colorTertiaryHover: string;
1762
- colorTertiaryPressed: string;
1763
- colorQuaternary: string;
1764
- colorQuaternaryHover: string;
1765
- colorQuaternaryPressed: string;
1766
- color: string;
1767
- colorHover: string;
1768
- colorPressed: string;
1769
- colorFocus: string;
1770
- colorDisabled: string;
1771
- textColor: string;
1772
- textColorTertiary: string;
1773
- textColorHover: string;
1774
- textColorPressed: string;
1775
- textColorFocus: string;
1776
- textColorDisabled: string;
1777
- textColorText: string;
1778
- textColorTextHover: string;
1779
- textColorTextPressed: string;
1780
- textColorTextFocus: string;
1781
- textColorTextDisabled: string;
1782
- textColorGhost: string;
1783
- textColorGhostHover: string;
1784
- textColorGhostPressed: string;
1785
- textColorGhostFocus: string;
1786
- textColorGhostDisabled: string;
1787
- border: string;
1788
- borderHover: string;
1789
- borderPressed: string;
1790
- borderFocus: string;
1791
- borderDisabled: string;
1792
- rippleColor: string;
1793
- colorPrimary: string;
1794
- colorHoverPrimary: string;
1795
- colorPressedPrimary: string;
1796
- colorFocusPrimary: string;
1797
- colorDisabledPrimary: string;
1798
- textColorPrimary: string;
1799
- textColorHoverPrimary: string;
1800
- textColorPressedPrimary: string;
1801
- textColorFocusPrimary: string;
1802
- textColorDisabledPrimary: string;
1803
- textColorTextPrimary: string;
1804
- textColorTextHoverPrimary: string;
1805
- textColorTextPressedPrimary: string;
1806
- textColorTextFocusPrimary: string;
1807
- textColorTextDisabledPrimary: string;
1808
- textColorGhostPrimary: string;
1809
- textColorGhostHoverPrimary: string;
1810
- textColorGhostPressedPrimary: string;
1811
- textColorGhostFocusPrimary: string;
1812
- textColorGhostDisabledPrimary: string;
1813
- borderPrimary: string;
1814
- borderHoverPrimary: string;
1815
- borderPressedPrimary: string;
1816
- borderFocusPrimary: string;
1817
- borderDisabledPrimary: string;
1818
- rippleColorPrimary: string;
1819
- colorInfo: string;
1820
- colorHoverInfo: string;
1821
- colorPressedInfo: string;
1822
- colorFocusInfo: string;
1823
- colorDisabledInfo: string;
1824
- textColorInfo: string;
1825
- textColorHoverInfo: string;
1826
- textColorPressedInfo: string;
1827
- textColorFocusInfo: string;
1828
- textColorDisabledInfo: string;
1829
- textColorTextInfo: string;
1830
- textColorTextHoverInfo: string;
1831
- textColorTextPressedInfo: string;
1832
- textColorTextFocusInfo: string;
1833
- textColorTextDisabledInfo: string;
1834
- textColorGhostInfo: string;
1835
- textColorGhostHoverInfo: string;
1836
- textColorGhostPressedInfo: string;
1837
- textColorGhostFocusInfo: string;
1838
- textColorGhostDisabledInfo: string;
1839
- borderInfo: string;
1840
- borderHoverInfo: string;
1841
- borderPressedInfo: string;
1842
- borderFocusInfo: string;
1843
- borderDisabledInfo: string;
1844
- rippleColorInfo: string;
1845
- colorSuccess: string;
1846
- colorHoverSuccess: string;
1847
- colorPressedSuccess: string;
1848
- colorFocusSuccess: string;
1849
- colorDisabledSuccess: string;
1850
- textColorSuccess: string;
1851
- textColorHoverSuccess: string;
1852
- textColorPressedSuccess: string;
1853
- textColorFocusSuccess: string;
1854
- textColorDisabledSuccess: string;
1855
- textColorTextSuccess: string;
1856
- textColorTextHoverSuccess: string;
1857
- textColorTextPressedSuccess: string;
1858
- textColorTextFocusSuccess: string;
1859
- textColorTextDisabledSuccess: string;
1860
- textColorGhostSuccess: string;
1861
- textColorGhostHoverSuccess: string;
1862
- textColorGhostPressedSuccess: string;
1863
- textColorGhostFocusSuccess: string;
1864
- textColorGhostDisabledSuccess: string;
1865
- borderSuccess: string;
1866
- borderHoverSuccess: string;
1867
- borderPressedSuccess: string;
1868
- borderFocusSuccess: string;
1869
- borderDisabledSuccess: string;
1870
- rippleColorSuccess: string;
1871
- colorWarning: string;
1872
- colorHoverWarning: string;
1873
- colorPressedWarning: string;
1874
- colorFocusWarning: string;
1875
- colorDisabledWarning: string;
1876
- textColorWarning: string;
1877
- textColorHoverWarning: string;
1878
- textColorPressedWarning: string;
1879
- textColorFocusWarning: string;
1880
- textColorDisabledWarning: string;
1881
- textColorTextWarning: string;
1882
- textColorTextHoverWarning: string;
1883
- textColorTextPressedWarning: string;
1884
- textColorTextFocusWarning: string;
1885
- textColorTextDisabledWarning: string;
1886
- textColorGhostWarning: string;
1887
- textColorGhostHoverWarning: string;
1888
- textColorGhostPressedWarning: string;
1889
- textColorGhostFocusWarning: string;
1890
- textColorGhostDisabledWarning: string;
1891
- borderWarning: string;
1892
- borderHoverWarning: string;
1893
- borderPressedWarning: string;
1894
- borderFocusWarning: string;
1895
- borderDisabledWarning: string;
1896
- rippleColorWarning: string;
1897
- colorError: string;
1898
- colorHoverError: string;
1899
- colorPressedError: string;
1900
- colorFocusError: string;
1901
- colorDisabledError: string;
1902
- textColorError: string;
1903
- textColorHoverError: string;
1904
- textColorPressedError: string;
1905
- textColorFocusError: string;
1906
- textColorDisabledError: string;
1907
- textColorTextError: string;
1908
- textColorTextHoverError: string;
1909
- textColorTextPressedError: string;
1910
- textColorTextFocusError: string;
1911
- textColorTextDisabledError: string;
1912
- textColorGhostError: string;
1913
- textColorGhostHoverError: string;
1914
- textColorGhostPressedError: string;
1915
- textColorGhostFocusError: string;
1916
- textColorGhostDisabledError: string;
1917
- borderError: string;
1918
- borderHoverError: string;
1919
- borderPressedError: string;
1920
- borderFocusError: string;
1921
- borderDisabledError: string;
1922
- rippleColorError: string;
1923
- waveOpacity: string;
1924
- fontWeight: string;
1925
- fontWeightStrong: string;
1926
- paddingTiny: string;
1927
- paddingSmall: string;
1928
- paddingMedium: string;
1929
- paddingLarge: string;
1930
- paddingRoundTiny: string;
1931
- paddingRoundSmall: string;
1932
- paddingRoundMedium: string;
1933
- paddingRoundLarge: string;
1934
- iconMarginTiny: string;
1935
- iconMarginSmall: string;
1936
- iconMarginMedium: string;
1937
- iconMarginLarge: string;
1938
- iconSizeTiny: string;
1939
- iconSizeSmall: string;
1940
- iconSizeMedium: string;
1941
- iconSizeLarge: string;
1942
- rippleDuration: string;
1943
- }, any>>>;
1944
- }>>, {
1945
- readonly type: import("naive-ui/es/button/src/interface").Type;
1946
- readonly tag: keyof HTMLElementTagNameMap;
1947
- readonly block: boolean;
1948
- readonly round: boolean;
1949
- readonly dashed: boolean;
1950
- readonly text: boolean;
1951
- readonly circle: boolean;
1952
- readonly disabled: boolean;
1953
- readonly focusable: boolean;
1954
- readonly strong: boolean;
1955
- readonly loading: boolean;
1956
- readonly bordered: boolean;
1957
- readonly tertiary: boolean;
1958
- readonly ghost: boolean;
1959
- readonly keyboard: boolean;
1960
- readonly secondary: boolean;
1961
- readonly quaternary: boolean;
1962
- readonly iconPlacement: "left" | "right";
1963
- readonly attrType: "button" | "reset" | "submit";
1964
- readonly nativeFocusBehavior: boolean;
1965
- }>;
1966
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeEvaluateCountdown" | "writeGuage")[], "closeEvaluateCountdown" | "writeGuage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1967
- formArray: {
1968
- type: ArrayConstructor;
1969
- default: () => never[];
1970
- };
1971
- evaluateResultConfig: {
1972
- type: ObjectConstructor;
1973
- default: () => {};
1974
- };
1975
- evaluateResultSetting: {
1976
- type: ObjectConstructor;
1977
- default: () => {};
1978
- };
1979
- isFinished: {
1980
- type: BooleanConstructor;
1981
- default: boolean;
1982
- };
1983
- maxScore: {
1984
- type: NumberConstructor;
1985
- default: number;
1986
- };
1987
- }>> & {
1988
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
1989
- onWriteGuage?: ((...args: any[]) => any) | undefined;
1990
- }, {
1991
- formArray: unknown[];
1992
- evaluateResultConfig: Record<string, any>;
1993
- evaluateResultSetting: Record<string, any>;
1994
- isFinished: boolean;
1995
- maxScore: number;
1996
- }>;
1997
- AnswerParse: import("vue").DefineComponent<{
1998
- item: {
1999
- type: ObjectConstructor;
2000
- default: () => {};
2001
- };
2002
- }, {
2003
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2004
- item: {
2005
- type: ObjectConstructor;
2006
- default: () => {};
2007
- };
2008
- }>> & {
2009
- [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
2010
- }>>;
2011
- questionScore: import("vue").ComputedRef<any>;
2012
- answerSuccess: import("vue").ComputedRef<boolean>;
2013
- answerIcon: import("vue").ComputedRef<"xitongtubiaodui" | "xitongtubiaocuo">;
2014
- answerResText: import("vue").ComputedRef<"部分正确" | "回答正确" | "回答错误">;
2015
- scoreText: import("vue").ComputedRef<"部分" | "本题">;
2016
- correctAnswer: import("vue").ComputedRef<any>;
2017
- answerKeyText: import("vue").ComputedRef<any>;
2018
- SvgIcon: import("vue").DefineComponent<{
2019
- iconClass: {
2020
- type: StringConstructor;
2021
- required: true;
2022
- default: string;
2023
- };
2024
- title: {
2025
- type: StringConstructor;
2026
- required: false;
2027
- default: string;
2028
- };
2029
- className: {
2030
- type: StringConstructor;
2031
- required: false;
2032
- };
2033
- }, {
2034
- props: {
2035
- iconClass: string;
2036
- title: string;
2037
- className?: string | undefined;
2038
- };
2039
- iconName: import("vue").ComputedRef<string>;
2040
- svgClass: import("vue").ComputedRef<string>;
2041
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2042
- iconClass: {
2043
- type: StringConstructor;
2044
- required: true;
2045
- default: string;
2046
- };
2047
- title: {
2048
- type: StringConstructor;
2049
- required: false;
2050
- default: string;
2051
- };
2052
- className: {
2053
- type: StringConstructor;
2054
- required: false;
2055
- };
2056
- }>>, {
2057
- title: string;
2058
- iconClass: string;
2059
- }>;
2060
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2061
- item: {
2062
- type: ObjectConstructor;
2063
- default: () => {};
2064
- };
2065
- }>>, {
2066
- item: Record<string, any>;
2067
- }>;
2068
- ScaleScore: import("vue").DefineComponent<{
2069
- config: {
2070
- type: ObjectConstructor;
2071
- default: () => {};
2072
- };
2073
- maxScore: {
2074
- type: NumberConstructor;
2075
- default: number;
2076
- };
2077
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2078
- config: {
2079
- type: ObjectConstructor;
2080
- default: () => {};
2081
- };
2082
- maxScore: {
2083
- type: NumberConstructor;
2084
- default: number;
2085
- };
2086
- }>> & {}, {
2087
- maxScore: number;
2088
- config: Record<string, any>;
2089
- }>;
2090
- NButton: import("vue").DefineComponent<{
2091
- readonly color: StringConstructor;
2092
- readonly textColor: StringConstructor;
2093
- readonly text: BooleanConstructor;
2094
- readonly block: BooleanConstructor;
2095
- readonly loading: BooleanConstructor;
2096
- readonly disabled: BooleanConstructor;
2097
- readonly circle: BooleanConstructor;
2098
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
2099
- readonly ghost: BooleanConstructor;
2100
- readonly round: BooleanConstructor;
2101
- readonly secondary: BooleanConstructor;
2102
- readonly tertiary: BooleanConstructor;
2103
- readonly quaternary: BooleanConstructor;
2104
- readonly strong: BooleanConstructor;
2105
- readonly focusable: {
2106
- readonly type: BooleanConstructor;
2107
- readonly default: true;
2108
- };
2109
- readonly keyboard: {
2110
- readonly type: BooleanConstructor;
2111
- readonly default: true;
2112
- };
2113
- readonly tag: {
2114
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
2115
- readonly default: "button";
2116
- };
2117
- readonly type: {
2118
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
2119
- readonly default: "default";
2120
- };
2121
- readonly dashed: BooleanConstructor;
2122
- readonly iconPlacement: {
2123
- readonly type: import("vue").PropType<"left" | "right">;
2124
- readonly default: "left";
2125
- };
2126
- readonly attrType: {
2127
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
2128
- readonly default: "button";
2129
- };
2130
- readonly bordered: {
2131
- readonly type: BooleanConstructor;
2132
- readonly default: true;
2133
- };
2134
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2135
- readonly nativeFocusBehavior: BooleanConstructor;
2136
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
2137
- heightTiny: string;
2138
- heightSmall: string;
2139
- heightMedium: string;
2140
- heightLarge: string;
2141
- borderRadiusTiny: string;
2142
- borderRadiusSmall: string;
2143
- borderRadiusMedium: string;
2144
- borderRadiusLarge: string;
2145
- fontSizeTiny: string;
2146
- fontSizeSmall: string;
2147
- fontSizeMedium: string;
2148
- fontSizeLarge: string;
2149
- opacityDisabled: string;
2150
- colorOpacitySecondary: string;
2151
- colorOpacitySecondaryHover: string;
2152
- colorOpacitySecondaryPressed: string;
2153
- colorSecondary: string;
2154
- colorSecondaryHover: string;
2155
- colorSecondaryPressed: string;
2156
- colorTertiary: string;
2157
- colorTertiaryHover: string;
2158
- colorTertiaryPressed: string;
2159
- colorQuaternary: string;
2160
- colorQuaternaryHover: string;
2161
- colorQuaternaryPressed: string;
2162
- color: string;
2163
- colorHover: string;
2164
- colorPressed: string;
2165
- colorFocus: string;
2166
- colorDisabled: string;
2167
- textColor: string;
2168
- textColorTertiary: string;
2169
- textColorHover: string;
2170
- textColorPressed: string;
2171
- textColorFocus: string;
2172
- textColorDisabled: string;
2173
- textColorText: string;
2174
- textColorTextHover: string;
2175
- textColorTextPressed: string;
2176
- textColorTextFocus: string;
2177
- textColorTextDisabled: string;
2178
- textColorGhost: string;
2179
- textColorGhostHover: string;
2180
- textColorGhostPressed: string;
2181
- textColorGhostFocus: string;
2182
- textColorGhostDisabled: string;
2183
- border: string;
2184
- borderHover: string;
2185
- borderPressed: string;
2186
- borderFocus: string;
2187
- borderDisabled: string;
2188
- rippleColor: string;
2189
- colorPrimary: string;
2190
- colorHoverPrimary: string;
2191
- colorPressedPrimary: string;
2192
- colorFocusPrimary: string;
2193
- colorDisabledPrimary: string;
2194
- textColorPrimary: string;
2195
- textColorHoverPrimary: string;
2196
- textColorPressedPrimary: string;
2197
- textColorFocusPrimary: string;
2198
- textColorDisabledPrimary: string;
2199
- textColorTextPrimary: string;
2200
- textColorTextHoverPrimary: string;
2201
- textColorTextPressedPrimary: string;
2202
- textColorTextFocusPrimary: string;
2203
- textColorTextDisabledPrimary: string;
2204
- textColorGhostPrimary: string;
2205
- textColorGhostHoverPrimary: string;
2206
- textColorGhostPressedPrimary: string;
2207
- textColorGhostFocusPrimary: string;
2208
- textColorGhostDisabledPrimary: string;
2209
- borderPrimary: string;
2210
- borderHoverPrimary: string;
2211
- borderPressedPrimary: string;
2212
- borderFocusPrimary: string;
2213
- borderDisabledPrimary: string;
2214
- rippleColorPrimary: string;
2215
- colorInfo: string;
2216
- colorHoverInfo: string;
2217
- colorPressedInfo: string;
2218
- colorFocusInfo: string;
2219
- colorDisabledInfo: string;
2220
- textColorInfo: string;
2221
- textColorHoverInfo: string;
2222
- textColorPressedInfo: string;
2223
- textColorFocusInfo: string;
2224
- textColorDisabledInfo: string;
2225
- textColorTextInfo: string;
2226
- textColorTextHoverInfo: string;
2227
- textColorTextPressedInfo: string;
2228
- textColorTextFocusInfo: string;
2229
- textColorTextDisabledInfo: string;
2230
- textColorGhostInfo: string;
2231
- textColorGhostHoverInfo: string;
2232
- textColorGhostPressedInfo: string;
2233
- textColorGhostFocusInfo: string;
2234
- textColorGhostDisabledInfo: string;
2235
- borderInfo: string;
2236
- borderHoverInfo: string;
2237
- borderPressedInfo: string;
2238
- borderFocusInfo: string;
2239
- borderDisabledInfo: string;
2240
- rippleColorInfo: string;
2241
- colorSuccess: string;
2242
- colorHoverSuccess: string;
2243
- colorPressedSuccess: string;
2244
- colorFocusSuccess: string;
2245
- colorDisabledSuccess: string;
2246
- textColorSuccess: string;
2247
- textColorHoverSuccess: string;
2248
- textColorPressedSuccess: string;
2249
- textColorFocusSuccess: string;
2250
- textColorDisabledSuccess: string;
2251
- textColorTextSuccess: string;
2252
- textColorTextHoverSuccess: string;
2253
- textColorTextPressedSuccess: string;
2254
- textColorTextFocusSuccess: string;
2255
- textColorTextDisabledSuccess: string;
2256
- textColorGhostSuccess: string;
2257
- textColorGhostHoverSuccess: string;
2258
- textColorGhostPressedSuccess: string;
2259
- textColorGhostFocusSuccess: string;
2260
- textColorGhostDisabledSuccess: string;
2261
- borderSuccess: string;
2262
- borderHoverSuccess: string;
2263
- borderPressedSuccess: string;
2264
- borderFocusSuccess: string;
2265
- borderDisabledSuccess: string;
2266
- rippleColorSuccess: string;
2267
- colorWarning: string;
2268
- colorHoverWarning: string;
2269
- colorPressedWarning: string;
2270
- colorFocusWarning: string;
2271
- colorDisabledWarning: string;
2272
- textColorWarning: string;
2273
- textColorHoverWarning: string;
2274
- textColorPressedWarning: string;
2275
- textColorFocusWarning: string;
2276
- textColorDisabledWarning: string;
2277
- textColorTextWarning: string;
2278
- textColorTextHoverWarning: string;
2279
- textColorTextPressedWarning: string;
2280
- textColorTextFocusWarning: string;
2281
- textColorTextDisabledWarning: string;
2282
- textColorGhostWarning: string;
2283
- textColorGhostHoverWarning: string;
2284
- textColorGhostPressedWarning: string;
2285
- textColorGhostFocusWarning: string;
2286
- textColorGhostDisabledWarning: string;
2287
- borderWarning: string;
2288
- borderHoverWarning: string;
2289
- borderPressedWarning: string;
2290
- borderFocusWarning: string;
2291
- borderDisabledWarning: string;
2292
- rippleColorWarning: string;
2293
- colorError: string;
2294
- colorHoverError: string;
2295
- colorPressedError: string;
2296
- colorFocusError: string;
2297
- colorDisabledError: string;
2298
- textColorError: string;
2299
- textColorHoverError: string;
2300
- textColorPressedError: string;
2301
- textColorFocusError: string;
2302
- textColorDisabledError: string;
2303
- textColorTextError: string;
2304
- textColorTextHoverError: string;
2305
- textColorTextPressedError: string;
2306
- textColorTextFocusError: string;
2307
- textColorTextDisabledError: string;
2308
- textColorGhostError: string;
2309
- textColorGhostHoverError: string;
2310
- textColorGhostPressedError: string;
2311
- textColorGhostFocusError: string;
2312
- textColorGhostDisabledError: string;
2313
- borderError: string;
2314
- borderHoverError: string;
2315
- borderPressedError: string;
2316
- borderFocusError: string;
2317
- borderDisabledError: string;
2318
- rippleColorError: string;
2319
- waveOpacity: string;
2320
- fontWeight: string;
2321
- fontWeightStrong: string;
2322
- paddingTiny: string;
2323
- paddingSmall: string;
2324
- paddingMedium: string;
2325
- paddingLarge: string;
2326
- paddingRoundTiny: string;
2327
- paddingRoundSmall: string;
2328
- paddingRoundMedium: string;
2329
- paddingRoundLarge: string;
2330
- iconMarginTiny: string;
2331
- iconMarginSmall: string;
2332
- iconMarginMedium: string;
2333
- iconMarginLarge: string;
2334
- iconSizeTiny: string;
2335
- iconSizeSmall: string;
2336
- iconSizeMedium: string;
2337
- iconSizeLarge: string;
2338
- rippleDuration: string;
2339
- }, any>>;
2340
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2341
- heightTiny: string;
2342
- heightSmall: string;
2343
- heightMedium: string;
2344
- heightLarge: string;
2345
- borderRadiusTiny: string;
2346
- borderRadiusSmall: string;
2347
- borderRadiusMedium: string;
2348
- borderRadiusLarge: string;
2349
- fontSizeTiny: string;
2350
- fontSizeSmall: string;
2351
- fontSizeMedium: string;
2352
- fontSizeLarge: string;
2353
- opacityDisabled: string;
2354
- colorOpacitySecondary: string;
2355
- colorOpacitySecondaryHover: string;
2356
- colorOpacitySecondaryPressed: string;
2357
- colorSecondary: string;
2358
- colorSecondaryHover: string;
2359
- colorSecondaryPressed: string;
2360
- colorTertiary: string;
2361
- colorTertiaryHover: string;
2362
- colorTertiaryPressed: string;
2363
- colorQuaternary: string;
2364
- colorQuaternaryHover: string;
2365
- colorQuaternaryPressed: string;
2366
- color: string;
2367
- colorHover: string;
2368
- colorPressed: string;
2369
- colorFocus: string;
2370
- colorDisabled: string;
2371
- textColor: string;
2372
- textColorTertiary: string;
2373
- textColorHover: string;
2374
- textColorPressed: string;
2375
- textColorFocus: string;
2376
- textColorDisabled: string;
2377
- textColorText: string;
2378
- textColorTextHover: string;
2379
- textColorTextPressed: string;
2380
- textColorTextFocus: string;
2381
- textColorTextDisabled: string;
2382
- textColorGhost: string;
2383
- textColorGhostHover: string;
2384
- textColorGhostPressed: string;
2385
- textColorGhostFocus: string;
2386
- textColorGhostDisabled: string;
2387
- border: string;
2388
- borderHover: string;
2389
- borderPressed: string;
2390
- borderFocus: string;
2391
- borderDisabled: string;
2392
- rippleColor: string;
2393
- colorPrimary: string;
2394
- colorHoverPrimary: string;
2395
- colorPressedPrimary: string;
2396
- colorFocusPrimary: string;
2397
- colorDisabledPrimary: string;
2398
- textColorPrimary: string;
2399
- textColorHoverPrimary: string;
2400
- textColorPressedPrimary: string;
2401
- textColorFocusPrimary: string;
2402
- textColorDisabledPrimary: string;
2403
- textColorTextPrimary: string;
2404
- textColorTextHoverPrimary: string;
2405
- textColorTextPressedPrimary: string;
2406
- textColorTextFocusPrimary: string;
2407
- textColorTextDisabledPrimary: string;
2408
- textColorGhostPrimary: string;
2409
- textColorGhostHoverPrimary: string;
2410
- textColorGhostPressedPrimary: string;
2411
- textColorGhostFocusPrimary: string;
2412
- textColorGhostDisabledPrimary: string;
2413
- borderPrimary: string;
2414
- borderHoverPrimary: string;
2415
- borderPressedPrimary: string;
2416
- borderFocusPrimary: string;
2417
- borderDisabledPrimary: string;
2418
- rippleColorPrimary: string;
2419
- colorInfo: string;
2420
- colorHoverInfo: string;
2421
- colorPressedInfo: string;
2422
- colorFocusInfo: string;
2423
- colorDisabledInfo: string;
2424
- textColorInfo: string;
2425
- textColorHoverInfo: string;
2426
- textColorPressedInfo: string;
2427
- textColorFocusInfo: string;
2428
- textColorDisabledInfo: string;
2429
- textColorTextInfo: string;
2430
- textColorTextHoverInfo: string;
2431
- textColorTextPressedInfo: string;
2432
- textColorTextFocusInfo: string;
2433
- textColorTextDisabledInfo: string;
2434
- textColorGhostInfo: string;
2435
- textColorGhostHoverInfo: string;
2436
- textColorGhostPressedInfo: string;
2437
- textColorGhostFocusInfo: string;
2438
- textColorGhostDisabledInfo: string;
2439
- borderInfo: string;
2440
- borderHoverInfo: string;
2441
- borderPressedInfo: string;
2442
- borderFocusInfo: string;
2443
- borderDisabledInfo: string;
2444
- rippleColorInfo: string;
2445
- colorSuccess: string;
2446
- colorHoverSuccess: string;
2447
- colorPressedSuccess: string;
2448
- colorFocusSuccess: string;
2449
- colorDisabledSuccess: string;
2450
- textColorSuccess: string;
2451
- textColorHoverSuccess: string;
2452
- textColorPressedSuccess: string;
2453
- textColorFocusSuccess: string;
2454
- textColorDisabledSuccess: string;
2455
- textColorTextSuccess: string;
2456
- textColorTextHoverSuccess: string;
2457
- textColorTextPressedSuccess: string;
2458
- textColorTextFocusSuccess: string;
2459
- textColorTextDisabledSuccess: string;
2460
- textColorGhostSuccess: string;
2461
- textColorGhostHoverSuccess: string;
2462
- textColorGhostPressedSuccess: string;
2463
- textColorGhostFocusSuccess: string;
2464
- textColorGhostDisabledSuccess: string;
2465
- borderSuccess: string;
2466
- borderHoverSuccess: string;
2467
- borderPressedSuccess: string;
2468
- borderFocusSuccess: string;
2469
- borderDisabledSuccess: string;
2470
- rippleColorSuccess: string;
2471
- colorWarning: string;
2472
- colorHoverWarning: string;
2473
- colorPressedWarning: string;
2474
- colorFocusWarning: string;
2475
- colorDisabledWarning: string;
2476
- textColorWarning: string;
2477
- textColorHoverWarning: string;
2478
- textColorPressedWarning: string;
2479
- textColorFocusWarning: string;
2480
- textColorDisabledWarning: string;
2481
- textColorTextWarning: string;
2482
- textColorTextHoverWarning: string;
2483
- textColorTextPressedWarning: string;
2484
- textColorTextFocusWarning: string;
2485
- textColorTextDisabledWarning: string;
2486
- textColorGhostWarning: string;
2487
- textColorGhostHoverWarning: string;
2488
- textColorGhostPressedWarning: string;
2489
- textColorGhostFocusWarning: string;
2490
- textColorGhostDisabledWarning: string;
2491
- borderWarning: string;
2492
- borderHoverWarning: string;
2493
- borderPressedWarning: string;
2494
- borderFocusWarning: string;
2495
- borderDisabledWarning: string;
2496
- rippleColorWarning: string;
2497
- colorError: string;
2498
- colorHoverError: string;
2499
- colorPressedError: string;
2500
- colorFocusError: string;
2501
- colorDisabledError: string;
2502
- textColorError: string;
2503
- textColorHoverError: string;
2504
- textColorPressedError: string;
2505
- textColorFocusError: string;
2506
- textColorDisabledError: string;
2507
- textColorTextError: string;
2508
- textColorTextHoverError: string;
2509
- textColorTextPressedError: string;
2510
- textColorTextFocusError: string;
2511
- textColorTextDisabledError: string;
2512
- textColorGhostError: string;
2513
- textColorGhostHoverError: string;
2514
- textColorGhostPressedError: string;
2515
- textColorGhostFocusError: string;
2516
- textColorGhostDisabledError: string;
2517
- borderError: string;
2518
- borderHoverError: string;
2519
- borderPressedError: string;
2520
- borderFocusError: string;
2521
- borderDisabledError: string;
2522
- rippleColorError: string;
2523
- waveOpacity: string;
2524
- fontWeight: string;
2525
- fontWeightStrong: string;
2526
- paddingTiny: string;
2527
- paddingSmall: string;
2528
- paddingMedium: string;
2529
- paddingLarge: string;
2530
- paddingRoundTiny: string;
2531
- paddingRoundSmall: string;
2532
- paddingRoundMedium: string;
2533
- paddingRoundLarge: string;
2534
- iconMarginTiny: string;
2535
- iconMarginSmall: string;
2536
- iconMarginMedium: string;
2537
- iconMarginLarge: string;
2538
- iconSizeTiny: string;
2539
- iconSizeSmall: string;
2540
- iconSizeMedium: string;
2541
- iconSizeLarge: string;
2542
- rippleDuration: string;
2543
- }, any>>>;
2544
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2545
- heightTiny: string;
2546
- heightSmall: string;
2547
- heightMedium: string;
2548
- heightLarge: string;
2549
- borderRadiusTiny: string;
2550
- borderRadiusSmall: string;
2551
- borderRadiusMedium: string;
2552
- borderRadiusLarge: string;
2553
- fontSizeTiny: string;
2554
- fontSizeSmall: string;
2555
- fontSizeMedium: string;
2556
- fontSizeLarge: string;
2557
- opacityDisabled: string;
2558
- colorOpacitySecondary: string;
2559
- colorOpacitySecondaryHover: string;
2560
- colorOpacitySecondaryPressed: string;
2561
- colorSecondary: string;
2562
- colorSecondaryHover: string;
2563
- colorSecondaryPressed: string;
2564
- colorTertiary: string;
2565
- colorTertiaryHover: string;
2566
- colorTertiaryPressed: string;
2567
- colorQuaternary: string;
2568
- colorQuaternaryHover: string;
2569
- colorQuaternaryPressed: string;
2570
- color: string;
2571
- colorHover: string;
2572
- colorPressed: string;
2573
- colorFocus: string;
2574
- colorDisabled: string;
2575
- textColor: string;
2576
- textColorTertiary: string;
2577
- textColorHover: string;
2578
- textColorPressed: string;
2579
- textColorFocus: string;
2580
- textColorDisabled: string;
2581
- textColorText: string;
2582
- textColorTextHover: string;
2583
- textColorTextPressed: string;
2584
- textColorTextFocus: string;
2585
- textColorTextDisabled: string;
2586
- textColorGhost: string;
2587
- textColorGhostHover: string;
2588
- textColorGhostPressed: string;
2589
- textColorGhostFocus: string;
2590
- textColorGhostDisabled: string;
2591
- border: string;
2592
- borderHover: string;
2593
- borderPressed: string;
2594
- borderFocus: string;
2595
- borderDisabled: string;
2596
- rippleColor: string;
2597
- colorPrimary: string;
2598
- colorHoverPrimary: string;
2599
- colorPressedPrimary: string;
2600
- colorFocusPrimary: string;
2601
- colorDisabledPrimary: string;
2602
- textColorPrimary: string;
2603
- textColorHoverPrimary: string;
2604
- textColorPressedPrimary: string;
2605
- textColorFocusPrimary: string;
2606
- textColorDisabledPrimary: string;
2607
- textColorTextPrimary: string;
2608
- textColorTextHoverPrimary: string;
2609
- textColorTextPressedPrimary: string;
2610
- textColorTextFocusPrimary: string;
2611
- textColorTextDisabledPrimary: string;
2612
- textColorGhostPrimary: string;
2613
- textColorGhostHoverPrimary: string;
2614
- textColorGhostPressedPrimary: string;
2615
- textColorGhostFocusPrimary: string;
2616
- textColorGhostDisabledPrimary: string;
2617
- borderPrimary: string;
2618
- borderHoverPrimary: string;
2619
- borderPressedPrimary: string;
2620
- borderFocusPrimary: string;
2621
- borderDisabledPrimary: string;
2622
- rippleColorPrimary: string;
2623
- colorInfo: string;
2624
- colorHoverInfo: string;
2625
- colorPressedInfo: string;
2626
- colorFocusInfo: string;
2627
- colorDisabledInfo: string;
2628
- textColorInfo: string;
2629
- textColorHoverInfo: string;
2630
- textColorPressedInfo: string;
2631
- textColorFocusInfo: string;
2632
- textColorDisabledInfo: string;
2633
- textColorTextInfo: string;
2634
- textColorTextHoverInfo: string;
2635
- textColorTextPressedInfo: string;
2636
- textColorTextFocusInfo: string;
2637
- textColorTextDisabledInfo: string;
2638
- textColorGhostInfo: string;
2639
- textColorGhostHoverInfo: string;
2640
- textColorGhostPressedInfo: string;
2641
- textColorGhostFocusInfo: string;
2642
- textColorGhostDisabledInfo: string;
2643
- borderInfo: string;
2644
- borderHoverInfo: string;
2645
- borderPressedInfo: string;
2646
- borderFocusInfo: string;
2647
- borderDisabledInfo: string;
2648
- rippleColorInfo: string;
2649
- colorSuccess: string;
2650
- colorHoverSuccess: string;
2651
- colorPressedSuccess: string;
2652
- colorFocusSuccess: string;
2653
- colorDisabledSuccess: string;
2654
- textColorSuccess: string;
2655
- textColorHoverSuccess: string;
2656
- textColorPressedSuccess: string;
2657
- textColorFocusSuccess: string;
2658
- textColorDisabledSuccess: string;
2659
- textColorTextSuccess: string;
2660
- textColorTextHoverSuccess: string;
2661
- textColorTextPressedSuccess: string;
2662
- textColorTextFocusSuccess: string;
2663
- textColorTextDisabledSuccess: string;
2664
- textColorGhostSuccess: string;
2665
- textColorGhostHoverSuccess: string;
2666
- textColorGhostPressedSuccess: string;
2667
- textColorGhostFocusSuccess: string;
2668
- textColorGhostDisabledSuccess: string;
2669
- borderSuccess: string;
2670
- borderHoverSuccess: string;
2671
- borderPressedSuccess: string;
2672
- borderFocusSuccess: string;
2673
- borderDisabledSuccess: string;
2674
- rippleColorSuccess: string;
2675
- colorWarning: string;
2676
- colorHoverWarning: string;
2677
- colorPressedWarning: string;
2678
- colorFocusWarning: string;
2679
- colorDisabledWarning: string;
2680
- textColorWarning: string;
2681
- textColorHoverWarning: string;
2682
- textColorPressedWarning: string;
2683
- textColorFocusWarning: string;
2684
- textColorDisabledWarning: string;
2685
- textColorTextWarning: string;
2686
- textColorTextHoverWarning: string;
2687
- textColorTextPressedWarning: string;
2688
- textColorTextFocusWarning: string;
2689
- textColorTextDisabledWarning: string;
2690
- textColorGhostWarning: string;
2691
- textColorGhostHoverWarning: string;
2692
- textColorGhostPressedWarning: string;
2693
- textColorGhostFocusWarning: string;
2694
- textColorGhostDisabledWarning: string;
2695
- borderWarning: string;
2696
- borderHoverWarning: string;
2697
- borderPressedWarning: string;
2698
- borderFocusWarning: string;
2699
- borderDisabledWarning: string;
2700
- rippleColorWarning: string;
2701
- colorError: string;
2702
- colorHoverError: string;
2703
- colorPressedError: string;
2704
- colorFocusError: string;
2705
- colorDisabledError: string;
2706
- textColorError: string;
2707
- textColorHoverError: string;
2708
- textColorPressedError: string;
2709
- textColorFocusError: string;
2710
- textColorDisabledError: string;
2711
- textColorTextError: string;
2712
- textColorTextHoverError: string;
2713
- textColorTextPressedError: string;
2714
- textColorTextFocusError: string;
2715
- textColorTextDisabledError: string;
2716
- textColorGhostError: string;
2717
- textColorGhostHoverError: string;
2718
- textColorGhostPressedError: string;
2719
- textColorGhostFocusError: string;
2720
- textColorGhostDisabledError: string;
2721
- borderError: string;
2722
- borderHoverError: string;
2723
- borderPressedError: string;
2724
- borderFocusError: string;
2725
- borderDisabledError: string;
2726
- rippleColorError: string;
2727
- waveOpacity: string;
2728
- fontWeight: string;
2729
- fontWeightStrong: string;
2730
- paddingTiny: string;
2731
- paddingSmall: string;
2732
- paddingMedium: string;
2733
- paddingLarge: string;
2734
- paddingRoundTiny: string;
2735
- paddingRoundSmall: string;
2736
- paddingRoundMedium: string;
2737
- paddingRoundLarge: string;
2738
- iconMarginTiny: string;
2739
- iconMarginSmall: string;
2740
- iconMarginMedium: string;
2741
- iconMarginLarge: string;
2742
- iconSizeTiny: string;
2743
- iconSizeSmall: string;
2744
- iconSizeMedium: string;
2745
- iconSizeLarge: string;
2746
- rippleDuration: string;
2747
- }, any>>>;
2748
- }, {
2749
- selfElRef: import("vue").Ref<HTMLElement | null>;
2750
- waveElRef: import("vue").Ref<{
2751
- play: () => void;
2752
- } | null>;
2753
- mergedClsPrefix: import("vue").ComputedRef<string>;
2754
- mergedFocusable: import("vue").ComputedRef<boolean>;
2755
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large" | "tiny">;
2756
- showBorder: import("vue").ComputedRef<boolean>;
2757
- enterPressed: import("vue").Ref<boolean>;
2758
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
2759
- handleMousedown: (e: MouseEvent) => void;
2760
- handleKeydown: (e: KeyboardEvent) => void;
2761
- handleBlur: () => void;
2762
- handleKeyup: (e: KeyboardEvent) => void;
2763
- handleClick: (e: MouseEvent) => void;
2764
- customColorCssVars: import("vue").ComputedRef<{
2765
- '--n-border-color': string;
2766
- '--n-border-color-hover': string;
2767
- '--n-border-color-pressed': string;
2768
- '--n-border-color-focus': string;
2769
- '--n-border-color-disabled': string;
2770
- } | null>;
2771
- cssVars: import("vue").ComputedRef<{
2772
- '--n-width': string;
2773
- '--n-height': string;
2774
- '--n-font-size': string;
2775
- '--n-padding': string;
2776
- '--n-icon-size': string;
2777
- '--n-icon-margin': string;
2778
- '--n-border-radius': string;
2779
- '--n-border': string;
2780
- '--n-border-hover': string;
2781
- '--n-border-pressed': string;
2782
- '--n-border-focus': string;
2783
- '--n-border-disabled': string;
2784
- '--n-color': string;
2785
- '--n-color-hover': string;
2786
- '--n-color-pressed': string;
2787
- '--n-color-focus': string;
2788
- '--n-color-disabled': string;
2789
- '--n-ripple-color': string;
2790
- '--n-text-color': string;
2791
- '--n-text-color-hover': string;
2792
- '--n-text-color-pressed': string;
2793
- '--n-text-color-focus': string;
2794
- '--n-text-color-disabled': string;
2795
- 'font-weight': string;
2796
- '--n-bezier': string;
2797
- '--n-bezier-ease-out': string;
2798
- '--n-ripple-duration': string;
2799
- '--n-opacity-disabled': string;
2800
- '--n-wave-opacity': string;
2801
- }> | undefined;
2802
- themeClass: import("vue").Ref<string> | undefined;
2803
- onRender: (() => void) | undefined;
2804
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2805
- readonly color: StringConstructor;
2806
- readonly textColor: StringConstructor;
2807
- readonly text: BooleanConstructor;
2808
- readonly block: BooleanConstructor;
2809
- readonly loading: BooleanConstructor;
2810
- readonly disabled: BooleanConstructor;
2811
- readonly circle: BooleanConstructor;
2812
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
2813
- readonly ghost: BooleanConstructor;
2814
- readonly round: BooleanConstructor;
2815
- readonly secondary: BooleanConstructor;
2816
- readonly tertiary: BooleanConstructor;
2817
- readonly quaternary: BooleanConstructor;
2818
- readonly strong: BooleanConstructor;
2819
- readonly focusable: {
2820
- readonly type: BooleanConstructor;
2821
- readonly default: true;
2822
- };
2823
- readonly keyboard: {
2824
- readonly type: BooleanConstructor;
2825
- readonly default: true;
2826
- };
2827
- readonly tag: {
2828
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
2829
- readonly default: "button";
2830
- };
2831
- readonly type: {
2832
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
2833
- readonly default: "default";
2834
- };
2835
- readonly dashed: BooleanConstructor;
2836
- readonly iconPlacement: {
2837
- readonly type: import("vue").PropType<"left" | "right">;
2838
- readonly default: "left";
2839
- };
2840
- readonly attrType: {
2841
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
2842
- readonly default: "button";
2843
- };
2844
- readonly bordered: {
2845
- readonly type: BooleanConstructor;
2846
- readonly default: true;
2847
- };
2848
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2849
- readonly nativeFocusBehavior: BooleanConstructor;
2850
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
2851
- heightTiny: string;
2852
- heightSmall: string;
2853
- heightMedium: string;
2854
- heightLarge: string;
2855
- borderRadiusTiny: string;
2856
- borderRadiusSmall: string;
2857
- borderRadiusMedium: string;
2858
- borderRadiusLarge: string;
2859
- fontSizeTiny: string;
2860
- fontSizeSmall: string;
2861
- fontSizeMedium: string;
2862
- fontSizeLarge: string;
2863
- opacityDisabled: string;
2864
- colorOpacitySecondary: string;
2865
- colorOpacitySecondaryHover: string;
2866
- colorOpacitySecondaryPressed: string;
2867
- colorSecondary: string;
2868
- colorSecondaryHover: string;
2869
- colorSecondaryPressed: string;
2870
- colorTertiary: string;
2871
- colorTertiaryHover: string;
2872
- colorTertiaryPressed: string;
2873
- colorQuaternary: string;
2874
- colorQuaternaryHover: string;
2875
- colorQuaternaryPressed: string;
2876
- color: string;
2877
- colorHover: string;
2878
- colorPressed: string;
2879
- colorFocus: string;
2880
- colorDisabled: string;
2881
- textColor: string;
2882
- textColorTertiary: string;
2883
- textColorHover: string;
2884
- textColorPressed: string;
2885
- textColorFocus: string;
2886
- textColorDisabled: string;
2887
- textColorText: string;
2888
- textColorTextHover: string;
2889
- textColorTextPressed: string;
2890
- textColorTextFocus: string;
2891
- textColorTextDisabled: string;
2892
- textColorGhost: string;
2893
- textColorGhostHover: string;
2894
- textColorGhostPressed: string;
2895
- textColorGhostFocus: string;
2896
- textColorGhostDisabled: string;
2897
- border: string;
2898
- borderHover: string;
2899
- borderPressed: string;
2900
- borderFocus: string;
2901
- borderDisabled: string;
2902
- rippleColor: string;
2903
- colorPrimary: string;
2904
- colorHoverPrimary: string;
2905
- colorPressedPrimary: string;
2906
- colorFocusPrimary: string;
2907
- colorDisabledPrimary: string;
2908
- textColorPrimary: string;
2909
- textColorHoverPrimary: string;
2910
- textColorPressedPrimary: string;
2911
- textColorFocusPrimary: string;
2912
- textColorDisabledPrimary: string;
2913
- textColorTextPrimary: string;
2914
- textColorTextHoverPrimary: string;
2915
- textColorTextPressedPrimary: string;
2916
- textColorTextFocusPrimary: string;
2917
- textColorTextDisabledPrimary: string;
2918
- textColorGhostPrimary: string;
2919
- textColorGhostHoverPrimary: string;
2920
- textColorGhostPressedPrimary: string;
2921
- textColorGhostFocusPrimary: string;
2922
- textColorGhostDisabledPrimary: string;
2923
- borderPrimary: string;
2924
- borderHoverPrimary: string;
2925
- borderPressedPrimary: string;
2926
- borderFocusPrimary: string;
2927
- borderDisabledPrimary: string;
2928
- rippleColorPrimary: string;
2929
- colorInfo: string;
2930
- colorHoverInfo: string;
2931
- colorPressedInfo: string;
2932
- colorFocusInfo: string;
2933
- colorDisabledInfo: string;
2934
- textColorInfo: string;
2935
- textColorHoverInfo: string;
2936
- textColorPressedInfo: string;
2937
- textColorFocusInfo: string;
2938
- textColorDisabledInfo: string;
2939
- textColorTextInfo: string;
2940
- textColorTextHoverInfo: string;
2941
- textColorTextPressedInfo: string;
2942
- textColorTextFocusInfo: string;
2943
- textColorTextDisabledInfo: string;
2944
- textColorGhostInfo: string;
2945
- textColorGhostHoverInfo: string;
2946
- textColorGhostPressedInfo: string;
2947
- textColorGhostFocusInfo: string;
2948
- textColorGhostDisabledInfo: string;
2949
- borderInfo: string;
2950
- borderHoverInfo: string;
2951
- borderPressedInfo: string;
2952
- borderFocusInfo: string;
2953
- borderDisabledInfo: string;
2954
- rippleColorInfo: string;
2955
- colorSuccess: string;
2956
- colorHoverSuccess: string;
2957
- colorPressedSuccess: string;
2958
- colorFocusSuccess: string;
2959
- colorDisabledSuccess: string;
2960
- textColorSuccess: string;
2961
- textColorHoverSuccess: string;
2962
- textColorPressedSuccess: string;
2963
- textColorFocusSuccess: string;
2964
- textColorDisabledSuccess: string;
2965
- textColorTextSuccess: string;
2966
- textColorTextHoverSuccess: string;
2967
- textColorTextPressedSuccess: string;
2968
- textColorTextFocusSuccess: string;
2969
- textColorTextDisabledSuccess: string;
2970
- textColorGhostSuccess: string;
2971
- textColorGhostHoverSuccess: string;
2972
- textColorGhostPressedSuccess: string;
2973
- textColorGhostFocusSuccess: string;
2974
- textColorGhostDisabledSuccess: string;
2975
- borderSuccess: string;
2976
- borderHoverSuccess: string;
2977
- borderPressedSuccess: string;
2978
- borderFocusSuccess: string;
2979
- borderDisabledSuccess: string;
2980
- rippleColorSuccess: string;
2981
- colorWarning: string;
2982
- colorHoverWarning: string;
2983
- colorPressedWarning: string;
2984
- colorFocusWarning: string;
2985
- colorDisabledWarning: string;
2986
- textColorWarning: string;
2987
- textColorHoverWarning: string;
2988
- textColorPressedWarning: string;
2989
- textColorFocusWarning: string;
2990
- textColorDisabledWarning: string;
2991
- textColorTextWarning: string;
2992
- textColorTextHoverWarning: string;
2993
- textColorTextPressedWarning: string;
2994
- textColorTextFocusWarning: string;
2995
- textColorTextDisabledWarning: string;
2996
- textColorGhostWarning: string;
2997
- textColorGhostHoverWarning: string;
2998
- textColorGhostPressedWarning: string;
2999
- textColorGhostFocusWarning: string;
3000
- textColorGhostDisabledWarning: string;
3001
- borderWarning: string;
3002
- borderHoverWarning: string;
3003
- borderPressedWarning: string;
3004
- borderFocusWarning: string;
3005
- borderDisabledWarning: string;
3006
- rippleColorWarning: string;
3007
- colorError: string;
3008
- colorHoverError: string;
3009
- colorPressedError: string;
3010
- colorFocusError: string;
3011
- colorDisabledError: string;
3012
- textColorError: string;
3013
- textColorHoverError: string;
3014
- textColorPressedError: string;
3015
- textColorFocusError: string;
3016
- textColorDisabledError: string;
3017
- textColorTextError: string;
3018
- textColorTextHoverError: string;
3019
- textColorTextPressedError: string;
3020
- textColorTextFocusError: string;
3021
- textColorTextDisabledError: string;
3022
- textColorGhostError: string;
3023
- textColorGhostHoverError: string;
3024
- textColorGhostPressedError: string;
3025
- textColorGhostFocusError: string;
3026
- textColorGhostDisabledError: string;
3027
- borderError: string;
3028
- borderHoverError: string;
3029
- borderPressedError: string;
3030
- borderFocusError: string;
3031
- borderDisabledError: string;
3032
- rippleColorError: string;
3033
- waveOpacity: string;
3034
- fontWeight: string;
3035
- fontWeightStrong: string;
3036
- paddingTiny: string;
3037
- paddingSmall: string;
3038
- paddingMedium: string;
3039
- paddingLarge: string;
3040
- paddingRoundTiny: string;
3041
- paddingRoundSmall: string;
3042
- paddingRoundMedium: string;
3043
- paddingRoundLarge: string;
3044
- iconMarginTiny: string;
3045
- iconMarginSmall: string;
3046
- iconMarginMedium: string;
3047
- iconMarginLarge: string;
3048
- iconSizeTiny: string;
3049
- iconSizeSmall: string;
3050
- iconSizeMedium: string;
3051
- iconSizeLarge: string;
3052
- rippleDuration: string;
3053
- }, any>>;
3054
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
3055
- heightTiny: string;
3056
- heightSmall: string;
3057
- heightMedium: string;
3058
- heightLarge: string;
3059
- borderRadiusTiny: string;
3060
- borderRadiusSmall: string;
3061
- borderRadiusMedium: string;
3062
- borderRadiusLarge: string;
3063
- fontSizeTiny: string;
3064
- fontSizeSmall: string;
3065
- fontSizeMedium: string;
3066
- fontSizeLarge: string;
3067
- opacityDisabled: string;
3068
- colorOpacitySecondary: string;
3069
- colorOpacitySecondaryHover: string;
3070
- colorOpacitySecondaryPressed: string;
3071
- colorSecondary: string;
3072
- colorSecondaryHover: string;
3073
- colorSecondaryPressed: string;
3074
- colorTertiary: string;
3075
- colorTertiaryHover: string;
3076
- colorTertiaryPressed: string;
3077
- colorQuaternary: string;
3078
- colorQuaternaryHover: string;
3079
- colorQuaternaryPressed: string;
3080
- color: string;
3081
- colorHover: string;
3082
- colorPressed: string;
3083
- colorFocus: string;
3084
- colorDisabled: string;
3085
- textColor: string;
3086
- textColorTertiary: string;
3087
- textColorHover: string;
3088
- textColorPressed: string;
3089
- textColorFocus: string;
3090
- textColorDisabled: string;
3091
- textColorText: string;
3092
- textColorTextHover: string;
3093
- textColorTextPressed: string;
3094
- textColorTextFocus: string;
3095
- textColorTextDisabled: string;
3096
- textColorGhost: string;
3097
- textColorGhostHover: string;
3098
- textColorGhostPressed: string;
3099
- textColorGhostFocus: string;
3100
- textColorGhostDisabled: string;
3101
- border: string;
3102
- borderHover: string;
3103
- borderPressed: string;
3104
- borderFocus: string;
3105
- borderDisabled: string;
3106
- rippleColor: string;
3107
- colorPrimary: string;
3108
- colorHoverPrimary: string;
3109
- colorPressedPrimary: string;
3110
- colorFocusPrimary: string;
3111
- colorDisabledPrimary: string;
3112
- textColorPrimary: string;
3113
- textColorHoverPrimary: string;
3114
- textColorPressedPrimary: string;
3115
- textColorFocusPrimary: string;
3116
- textColorDisabledPrimary: string;
3117
- textColorTextPrimary: string;
3118
- textColorTextHoverPrimary: string;
3119
- textColorTextPressedPrimary: string;
3120
- textColorTextFocusPrimary: string;
3121
- textColorTextDisabledPrimary: string;
3122
- textColorGhostPrimary: string;
3123
- textColorGhostHoverPrimary: string;
3124
- textColorGhostPressedPrimary: string;
3125
- textColorGhostFocusPrimary: string;
3126
- textColorGhostDisabledPrimary: string;
3127
- borderPrimary: string;
3128
- borderHoverPrimary: string;
3129
- borderPressedPrimary: string;
3130
- borderFocusPrimary: string;
3131
- borderDisabledPrimary: string;
3132
- rippleColorPrimary: string;
3133
- colorInfo: string;
3134
- colorHoverInfo: string;
3135
- colorPressedInfo: string;
3136
- colorFocusInfo: string;
3137
- colorDisabledInfo: string;
3138
- textColorInfo: string;
3139
- textColorHoverInfo: string;
3140
- textColorPressedInfo: string;
3141
- textColorFocusInfo: string;
3142
- textColorDisabledInfo: string;
3143
- textColorTextInfo: string;
3144
- textColorTextHoverInfo: string;
3145
- textColorTextPressedInfo: string;
3146
- textColorTextFocusInfo: string;
3147
- textColorTextDisabledInfo: string;
3148
- textColorGhostInfo: string;
3149
- textColorGhostHoverInfo: string;
3150
- textColorGhostPressedInfo: string;
3151
- textColorGhostFocusInfo: string;
3152
- textColorGhostDisabledInfo: string;
3153
- borderInfo: string;
3154
- borderHoverInfo: string;
3155
- borderPressedInfo: string;
3156
- borderFocusInfo: string;
3157
- borderDisabledInfo: string;
3158
- rippleColorInfo: string;
3159
- colorSuccess: string;
3160
- colorHoverSuccess: string;
3161
- colorPressedSuccess: string;
3162
- colorFocusSuccess: string;
3163
- colorDisabledSuccess: string;
3164
- textColorSuccess: string;
3165
- textColorHoverSuccess: string;
3166
- textColorPressedSuccess: string;
3167
- textColorFocusSuccess: string;
3168
- textColorDisabledSuccess: string;
3169
- textColorTextSuccess: string;
3170
- textColorTextHoverSuccess: string;
3171
- textColorTextPressedSuccess: string;
3172
- textColorTextFocusSuccess: string;
3173
- textColorTextDisabledSuccess: string;
3174
- textColorGhostSuccess: string;
3175
- textColorGhostHoverSuccess: string;
3176
- textColorGhostPressedSuccess: string;
3177
- textColorGhostFocusSuccess: string;
3178
- textColorGhostDisabledSuccess: string;
3179
- borderSuccess: string;
3180
- borderHoverSuccess: string;
3181
- borderPressedSuccess: string;
3182
- borderFocusSuccess: string;
3183
- borderDisabledSuccess: string;
3184
- rippleColorSuccess: string;
3185
- colorWarning: string;
3186
- colorHoverWarning: string;
3187
- colorPressedWarning: string;
3188
- colorFocusWarning: string;
3189
- colorDisabledWarning: string;
3190
- textColorWarning: string;
3191
- textColorHoverWarning: string;
3192
- textColorPressedWarning: string;
3193
- textColorFocusWarning: string;
3194
- textColorDisabledWarning: string;
3195
- textColorTextWarning: string;
3196
- textColorTextHoverWarning: string;
3197
- textColorTextPressedWarning: string;
3198
- textColorTextFocusWarning: string;
3199
- textColorTextDisabledWarning: string;
3200
- textColorGhostWarning: string;
3201
- textColorGhostHoverWarning: string;
3202
- textColorGhostPressedWarning: string;
3203
- textColorGhostFocusWarning: string;
3204
- textColorGhostDisabledWarning: string;
3205
- borderWarning: string;
3206
- borderHoverWarning: string;
3207
- borderPressedWarning: string;
3208
- borderFocusWarning: string;
3209
- borderDisabledWarning: string;
3210
- rippleColorWarning: string;
3211
- colorError: string;
3212
- colorHoverError: string;
3213
- colorPressedError: string;
3214
- colorFocusError: string;
3215
- colorDisabledError: string;
3216
- textColorError: string;
3217
- textColorHoverError: string;
3218
- textColorPressedError: string;
3219
- textColorFocusError: string;
3220
- textColorDisabledError: string;
3221
- textColorTextError: string;
3222
- textColorTextHoverError: string;
3223
- textColorTextPressedError: string;
3224
- textColorTextFocusError: string;
3225
- textColorTextDisabledError: string;
3226
- textColorGhostError: string;
3227
- textColorGhostHoverError: string;
3228
- textColorGhostPressedError: string;
3229
- textColorGhostFocusError: string;
3230
- textColorGhostDisabledError: string;
3231
- borderError: string;
3232
- borderHoverError: string;
3233
- borderPressedError: string;
3234
- borderFocusError: string;
3235
- borderDisabledError: string;
3236
- rippleColorError: string;
3237
- waveOpacity: string;
3238
- fontWeight: string;
3239
- fontWeightStrong: string;
3240
- paddingTiny: string;
3241
- paddingSmall: string;
3242
- paddingMedium: string;
3243
- paddingLarge: string;
3244
- paddingRoundTiny: string;
3245
- paddingRoundSmall: string;
3246
- paddingRoundMedium: string;
3247
- paddingRoundLarge: string;
3248
- iconMarginTiny: string;
3249
- iconMarginSmall: string;
3250
- iconMarginMedium: string;
3251
- iconMarginLarge: string;
3252
- iconSizeTiny: string;
3253
- iconSizeSmall: string;
3254
- iconSizeMedium: string;
3255
- iconSizeLarge: string;
3256
- rippleDuration: string;
3257
- }, any>>>;
3258
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
3259
- heightTiny: string;
3260
- heightSmall: string;
3261
- heightMedium: string;
3262
- heightLarge: string;
3263
- borderRadiusTiny: string;
3264
- borderRadiusSmall: string;
3265
- borderRadiusMedium: string;
3266
- borderRadiusLarge: string;
3267
- fontSizeTiny: string;
3268
- fontSizeSmall: string;
3269
- fontSizeMedium: string;
3270
- fontSizeLarge: string;
3271
- opacityDisabled: string;
3272
- colorOpacitySecondary: string;
3273
- colorOpacitySecondaryHover: string;
3274
- colorOpacitySecondaryPressed: string;
3275
- colorSecondary: string;
3276
- colorSecondaryHover: string;
3277
- colorSecondaryPressed: string;
3278
- colorTertiary: string;
3279
- colorTertiaryHover: string;
3280
- colorTertiaryPressed: string;
3281
- colorQuaternary: string;
3282
- colorQuaternaryHover: string;
3283
- colorQuaternaryPressed: string;
3284
- color: string;
3285
- colorHover: string;
3286
- colorPressed: string;
3287
- colorFocus: string;
3288
- colorDisabled: string;
3289
- textColor: string;
3290
- textColorTertiary: string;
3291
- textColorHover: string;
3292
- textColorPressed: string;
3293
- textColorFocus: string;
3294
- textColorDisabled: string;
3295
- textColorText: string;
3296
- textColorTextHover: string;
3297
- textColorTextPressed: string;
3298
- textColorTextFocus: string;
3299
- textColorTextDisabled: string;
3300
- textColorGhost: string;
3301
- textColorGhostHover: string;
3302
- textColorGhostPressed: string;
3303
- textColorGhostFocus: string;
3304
- textColorGhostDisabled: string;
3305
- border: string;
3306
- borderHover: string;
3307
- borderPressed: string;
3308
- borderFocus: string;
3309
- borderDisabled: string;
3310
- rippleColor: string;
3311
- colorPrimary: string;
3312
- colorHoverPrimary: string;
3313
- colorPressedPrimary: string;
3314
- colorFocusPrimary: string;
3315
- colorDisabledPrimary: string;
3316
- textColorPrimary: string;
3317
- textColorHoverPrimary: string;
3318
- textColorPressedPrimary: string;
3319
- textColorFocusPrimary: string;
3320
- textColorDisabledPrimary: string;
3321
- textColorTextPrimary: string;
3322
- textColorTextHoverPrimary: string;
3323
- textColorTextPressedPrimary: string;
3324
- textColorTextFocusPrimary: string;
3325
- textColorTextDisabledPrimary: string;
3326
- textColorGhostPrimary: string;
3327
- textColorGhostHoverPrimary: string;
3328
- textColorGhostPressedPrimary: string;
3329
- textColorGhostFocusPrimary: string;
3330
- textColorGhostDisabledPrimary: string;
3331
- borderPrimary: string;
3332
- borderHoverPrimary: string;
3333
- borderPressedPrimary: string;
3334
- borderFocusPrimary: string;
3335
- borderDisabledPrimary: string;
3336
- rippleColorPrimary: string;
3337
- colorInfo: string;
3338
- colorHoverInfo: string;
3339
- colorPressedInfo: string;
3340
- colorFocusInfo: string;
3341
- colorDisabledInfo: string;
3342
- textColorInfo: string;
3343
- textColorHoverInfo: string;
3344
- textColorPressedInfo: string;
3345
- textColorFocusInfo: string;
3346
- textColorDisabledInfo: string;
3347
- textColorTextInfo: string;
3348
- textColorTextHoverInfo: string;
3349
- textColorTextPressedInfo: string;
3350
- textColorTextFocusInfo: string;
3351
- textColorTextDisabledInfo: string;
3352
- textColorGhostInfo: string;
3353
- textColorGhostHoverInfo: string;
3354
- textColorGhostPressedInfo: string;
3355
- textColorGhostFocusInfo: string;
3356
- textColorGhostDisabledInfo: string;
3357
- borderInfo: string;
3358
- borderHoverInfo: string;
3359
- borderPressedInfo: string;
3360
- borderFocusInfo: string;
3361
- borderDisabledInfo: string;
3362
- rippleColorInfo: string;
3363
- colorSuccess: string;
3364
- colorHoverSuccess: string;
3365
- colorPressedSuccess: string;
3366
- colorFocusSuccess: string;
3367
- colorDisabledSuccess: string;
3368
- textColorSuccess: string;
3369
- textColorHoverSuccess: string;
3370
- textColorPressedSuccess: string;
3371
- textColorFocusSuccess: string;
3372
- textColorDisabledSuccess: string;
3373
- textColorTextSuccess: string;
3374
- textColorTextHoverSuccess: string;
3375
- textColorTextPressedSuccess: string;
3376
- textColorTextFocusSuccess: string;
3377
- textColorTextDisabledSuccess: string;
3378
- textColorGhostSuccess: string;
3379
- textColorGhostHoverSuccess: string;
3380
- textColorGhostPressedSuccess: string;
3381
- textColorGhostFocusSuccess: string;
3382
- textColorGhostDisabledSuccess: string;
3383
- borderSuccess: string;
3384
- borderHoverSuccess: string;
3385
- borderPressedSuccess: string;
3386
- borderFocusSuccess: string;
3387
- borderDisabledSuccess: string;
3388
- rippleColorSuccess: string;
3389
- colorWarning: string;
3390
- colorHoverWarning: string;
3391
- colorPressedWarning: string;
3392
- colorFocusWarning: string;
3393
- colorDisabledWarning: string;
3394
- textColorWarning: string;
3395
- textColorHoverWarning: string;
3396
- textColorPressedWarning: string;
3397
- textColorFocusWarning: string;
3398
- textColorDisabledWarning: string;
3399
- textColorTextWarning: string;
3400
- textColorTextHoverWarning: string;
3401
- textColorTextPressedWarning: string;
3402
- textColorTextFocusWarning: string;
3403
- textColorTextDisabledWarning: string;
3404
- textColorGhostWarning: string;
3405
- textColorGhostHoverWarning: string;
3406
- textColorGhostPressedWarning: string;
3407
- textColorGhostFocusWarning: string;
3408
- textColorGhostDisabledWarning: string;
3409
- borderWarning: string;
3410
- borderHoverWarning: string;
3411
- borderPressedWarning: string;
3412
- borderFocusWarning: string;
3413
- borderDisabledWarning: string;
3414
- rippleColorWarning: string;
3415
- colorError: string;
3416
- colorHoverError: string;
3417
- colorPressedError: string;
3418
- colorFocusError: string;
3419
- colorDisabledError: string;
3420
- textColorError: string;
3421
- textColorHoverError: string;
3422
- textColorPressedError: string;
3423
- textColorFocusError: string;
3424
- textColorDisabledError: string;
3425
- textColorTextError: string;
3426
- textColorTextHoverError: string;
3427
- textColorTextPressedError: string;
3428
- textColorTextFocusError: string;
3429
- textColorTextDisabledError: string;
3430
- textColorGhostError: string;
3431
- textColorGhostHoverError: string;
3432
- textColorGhostPressedError: string;
3433
- textColorGhostFocusError: string;
3434
- textColorGhostDisabledError: string;
3435
- borderError: string;
3436
- borderHoverError: string;
3437
- borderPressedError: string;
3438
- borderFocusError: string;
3439
- borderDisabledError: string;
3440
- rippleColorError: string;
3441
- waveOpacity: string;
3442
- fontWeight: string;
3443
- fontWeightStrong: string;
3444
- paddingTiny: string;
3445
- paddingSmall: string;
3446
- paddingMedium: string;
3447
- paddingLarge: string;
3448
- paddingRoundTiny: string;
3449
- paddingRoundSmall: string;
3450
- paddingRoundMedium: string;
3451
- paddingRoundLarge: string;
3452
- iconMarginTiny: string;
3453
- iconMarginSmall: string;
3454
- iconMarginMedium: string;
3455
- iconMarginLarge: string;
3456
- iconSizeTiny: string;
3457
- iconSizeSmall: string;
3458
- iconSizeMedium: string;
3459
- iconSizeLarge: string;
3460
- rippleDuration: string;
3461
- }, any>>>;
3462
- }>>, {
3463
- readonly type: import("naive-ui/es/button/src/interface").Type;
3464
- readonly tag: keyof HTMLElementTagNameMap;
3465
- readonly block: boolean;
3466
- readonly round: boolean;
3467
- readonly dashed: boolean;
3468
- readonly text: boolean;
3469
- readonly circle: boolean;
3470
- readonly disabled: boolean;
3471
- readonly focusable: boolean;
3472
- readonly strong: boolean;
3473
- readonly loading: boolean;
3474
- readonly bordered: boolean;
3475
- readonly tertiary: boolean;
3476
- readonly ghost: boolean;
3477
- readonly keyboard: boolean;
3478
- readonly secondary: boolean;
3479
- readonly quaternary: boolean;
3480
- readonly iconPlacement: "left" | "right";
3481
- readonly attrType: "button" | "reset" | "submit";
3482
- readonly nativeFocusBehavior: boolean;
3483
- }>;
3484
- NForm: import("vue").DefineComponent<{
3485
- readonly inline: BooleanConstructor;
3486
- readonly labelWidth: import("vue").PropType<string | number>;
3487
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3488
- readonly labelPlacement: {
3489
- readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3490
- readonly default: "top";
3491
- };
3492
- readonly model: {
3493
- readonly type: import("vue").PropType<Record<string, any>>;
3494
- readonly default: () => void;
3495
- };
3496
- readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
3497
- readonly disabled: BooleanConstructor;
3498
- readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
3499
- readonly showRequireMark: {
3500
- readonly type: import("vue").PropType<boolean | undefined>;
3501
- readonly default: undefined;
3502
- };
3503
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3504
- readonly showFeedback: {
3505
- readonly type: BooleanConstructor;
3506
- readonly default: true;
3507
- };
3508
- readonly onSubmit: {
3509
- readonly type: import("vue").PropType<(e: Event) => void>;
3510
- readonly default: (e: Event) => void;
3511
- };
3512
- readonly showLabel: {
3513
- readonly type: import("vue").PropType<boolean | undefined>;
3514
- readonly default: undefined;
3515
- };
3516
- readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
3517
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3518
- blankHeightSmall: string;
3519
- blankHeightMedium: string;
3520
- blankHeightLarge: string;
3521
- lineHeight: string;
3522
- labelTextColor: string;
3523
- asteriskColor: string;
3524
- feedbackTextColorError: string;
3525
- feedbackTextColorWarning: string;
3526
- feedbackTextColor: string;
3527
- feedbackPadding: string;
3528
- feedbackHeightSmall: string;
3529
- feedbackHeightMedium: string;
3530
- feedbackHeightLarge: string;
3531
- feedbackFontSizeSmall: string;
3532
- feedbackFontSizeMedium: string;
3533
- feedbackFontSizeLarge: string;
3534
- labelFontSizeLeftSmall: string;
3535
- labelFontSizeLeftMedium: string;
3536
- labelFontSizeLeftLarge: string;
3537
- labelFontSizeTopSmall: string;
3538
- labelFontSizeTopMedium: string;
3539
- labelFontSizeTopLarge: string;
3540
- labelHeightSmall: string;
3541
- labelHeightMedium: string;
3542
- labelHeightLarge: string;
3543
- labelPaddingVertical: string;
3544
- labelPaddingHorizontal: string;
3545
- labelTextAlignVertical: string;
3546
- labelTextAlignHorizontal: string;
3547
- }, any>>;
3548
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3549
- blankHeightSmall: string;
3550
- blankHeightMedium: string;
3551
- blankHeightLarge: string;
3552
- lineHeight: string;
3553
- labelTextColor: string;
3554
- asteriskColor: string;
3555
- feedbackTextColorError: string;
3556
- feedbackTextColorWarning: string;
3557
- feedbackTextColor: string;
3558
- feedbackPadding: string;
3559
- feedbackHeightSmall: string;
3560
- feedbackHeightMedium: string;
3561
- feedbackHeightLarge: string;
3562
- feedbackFontSizeSmall: string;
3563
- feedbackFontSizeMedium: string;
3564
- feedbackFontSizeLarge: string;
3565
- labelFontSizeLeftSmall: string;
3566
- labelFontSizeLeftMedium: string;
3567
- labelFontSizeLeftLarge: string;
3568
- labelFontSizeTopSmall: string;
3569
- labelFontSizeTopMedium: string;
3570
- labelFontSizeTopLarge: string;
3571
- labelHeightSmall: string;
3572
- labelHeightMedium: string;
3573
- labelHeightLarge: string;
3574
- labelPaddingVertical: string;
3575
- labelPaddingHorizontal: string;
3576
- labelTextAlignVertical: string;
3577
- labelTextAlignHorizontal: string;
3578
- }, any>>>;
3579
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3580
- blankHeightSmall: string;
3581
- blankHeightMedium: string;
3582
- blankHeightLarge: string;
3583
- lineHeight: string;
3584
- labelTextColor: string;
3585
- asteriskColor: string;
3586
- feedbackTextColorError: string;
3587
- feedbackTextColorWarning: string;
3588
- feedbackTextColor: string;
3589
- feedbackPadding: string;
3590
- feedbackHeightSmall: string;
3591
- feedbackHeightMedium: string;
3592
- feedbackHeightLarge: string;
3593
- feedbackFontSizeSmall: string;
3594
- feedbackFontSizeMedium: string;
3595
- feedbackFontSizeLarge: string;
3596
- labelFontSizeLeftSmall: string;
3597
- labelFontSizeLeftMedium: string;
3598
- labelFontSizeLeftLarge: string;
3599
- labelFontSizeTopSmall: string;
3600
- labelFontSizeTopMedium: string;
3601
- labelFontSizeTopLarge: string;
3602
- labelHeightSmall: string;
3603
- labelHeightMedium: string;
3604
- labelHeightLarge: string;
3605
- labelPaddingVertical: string;
3606
- labelPaddingHorizontal: string;
3607
- labelTextAlignVertical: string;
3608
- labelTextAlignHorizontal: string;
3609
- }, any>>>;
3610
- }, FormInst & {
3611
- mergedClsPrefix: import("vue").ComputedRef<string>;
3612
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3613
- readonly inline: BooleanConstructor;
3614
- readonly labelWidth: import("vue").PropType<string | number>;
3615
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3616
- readonly labelPlacement: {
3617
- readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3618
- readonly default: "top";
3619
- };
3620
- readonly model: {
3621
- readonly type: import("vue").PropType<Record<string, any>>;
3622
- readonly default: () => void;
3623
- };
3624
- readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
3625
- readonly disabled: BooleanConstructor;
3626
- readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
3627
- readonly showRequireMark: {
3628
- readonly type: import("vue").PropType<boolean | undefined>;
3629
- readonly default: undefined;
3630
- };
3631
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3632
- readonly showFeedback: {
3633
- readonly type: BooleanConstructor;
3634
- readonly default: true;
3635
- };
3636
- readonly onSubmit: {
3637
- readonly type: import("vue").PropType<(e: Event) => void>;
3638
- readonly default: (e: Event) => void;
3639
- };
3640
- readonly showLabel: {
3641
- readonly type: import("vue").PropType<boolean | undefined>;
3642
- readonly default: undefined;
3643
- };
3644
- readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
3645
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3646
- blankHeightSmall: string;
3647
- blankHeightMedium: string;
3648
- blankHeightLarge: string;
3649
- lineHeight: string;
3650
- labelTextColor: string;
3651
- asteriskColor: string;
3652
- feedbackTextColorError: string;
3653
- feedbackTextColorWarning: string;
3654
- feedbackTextColor: string;
3655
- feedbackPadding: string;
3656
- feedbackHeightSmall: string;
3657
- feedbackHeightMedium: string;
3658
- feedbackHeightLarge: string;
3659
- feedbackFontSizeSmall: string;
3660
- feedbackFontSizeMedium: string;
3661
- feedbackFontSizeLarge: string;
3662
- labelFontSizeLeftSmall: string;
3663
- labelFontSizeLeftMedium: string;
3664
- labelFontSizeLeftLarge: string;
3665
- labelFontSizeTopSmall: string;
3666
- labelFontSizeTopMedium: string;
3667
- labelFontSizeTopLarge: string;
3668
- labelHeightSmall: string;
3669
- labelHeightMedium: string;
3670
- labelHeightLarge: string;
3671
- labelPaddingVertical: string;
3672
- labelPaddingHorizontal: string;
3673
- labelTextAlignVertical: string;
3674
- labelTextAlignHorizontal: string;
3675
- }, any>>;
3676
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3677
- blankHeightSmall: string;
3678
- blankHeightMedium: string;
3679
- blankHeightLarge: string;
3680
- lineHeight: string;
3681
- labelTextColor: string;
3682
- asteriskColor: string;
3683
- feedbackTextColorError: string;
3684
- feedbackTextColorWarning: string;
3685
- feedbackTextColor: string;
3686
- feedbackPadding: string;
3687
- feedbackHeightSmall: string;
3688
- feedbackHeightMedium: string;
3689
- feedbackHeightLarge: string;
3690
- feedbackFontSizeSmall: string;
3691
- feedbackFontSizeMedium: string;
3692
- feedbackFontSizeLarge: string;
3693
- labelFontSizeLeftSmall: string;
3694
- labelFontSizeLeftMedium: string;
3695
- labelFontSizeLeftLarge: string;
3696
- labelFontSizeTopSmall: string;
3697
- labelFontSizeTopMedium: string;
3698
- labelFontSizeTopLarge: string;
3699
- labelHeightSmall: string;
3700
- labelHeightMedium: string;
3701
- labelHeightLarge: string;
3702
- labelPaddingVertical: string;
3703
- labelPaddingHorizontal: string;
3704
- labelTextAlignVertical: string;
3705
- labelTextAlignHorizontal: string;
3706
- }, any>>>;
3707
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3708
- blankHeightSmall: string;
3709
- blankHeightMedium: string;
3710
- blankHeightLarge: string;
3711
- lineHeight: string;
3712
- labelTextColor: string;
3713
- asteriskColor: string;
3714
- feedbackTextColorError: string;
3715
- feedbackTextColorWarning: string;
3716
- feedbackTextColor: string;
3717
- feedbackPadding: string;
3718
- feedbackHeightSmall: string;
3719
- feedbackHeightMedium: string;
3720
- feedbackHeightLarge: string;
3721
- feedbackFontSizeSmall: string;
3722
- feedbackFontSizeMedium: string;
3723
- feedbackFontSizeLarge: string;
3724
- labelFontSizeLeftSmall: string;
3725
- labelFontSizeLeftMedium: string;
3726
- labelFontSizeLeftLarge: string;
3727
- labelFontSizeTopSmall: string;
3728
- labelFontSizeTopMedium: string;
3729
- labelFontSizeTopLarge: string;
3730
- labelHeightSmall: string;
3731
- labelHeightMedium: string;
3732
- labelHeightLarge: string;
3733
- labelPaddingVertical: string;
3734
- labelPaddingHorizontal: string;
3735
- labelTextAlignVertical: string;
3736
- labelTextAlignHorizontal: string;
3737
- }, any>>>;
3738
- }>>, {
3739
- readonly inline: boolean;
3740
- readonly disabled: boolean;
3741
- readonly onSubmit: (e: Event) => void;
3742
- readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
3743
- readonly model: Record<string, any>;
3744
- readonly showRequireMark: boolean | undefined;
3745
- readonly showFeedback: boolean;
3746
- readonly showLabel: boolean | undefined;
3747
- }>;
3748
- NFormItem: import("vue").DefineComponent<{
3749
- readonly label: StringConstructor;
3750
- readonly labelWidth: import("vue").PropType<string | number>;
3751
- readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3752
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3753
- readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3754
- readonly path: StringConstructor;
3755
- readonly first: BooleanConstructor;
3756
- readonly rulePath: StringConstructor;
3757
- readonly required: BooleanConstructor;
3758
- readonly showRequireMark: {
3759
- readonly type: import("vue").PropType<boolean | undefined>;
3760
- readonly default: undefined;
3761
- };
3762
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3763
- readonly showFeedback: {
3764
- readonly type: import("vue").PropType<boolean | undefined>;
3765
- readonly default: undefined;
3766
- };
3767
- readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
3768
- readonly size: import("vue").PropType<"small" | "medium" | "large">;
3769
- readonly ignorePathChange: BooleanConstructor;
3770
- readonly validationStatus: import("vue").PropType<"success" | "warning" | "error">;
3771
- readonly feedback: StringConstructor;
3772
- readonly showLabel: {
3773
- readonly type: import("vue").PropType<boolean | undefined>;
3774
- readonly default: undefined;
3775
- };
3776
- readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
3777
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3778
- blankHeightSmall: string;
3779
- blankHeightMedium: string;
3780
- blankHeightLarge: string;
3781
- lineHeight: string;
3782
- labelTextColor: string;
3783
- asteriskColor: string;
3784
- feedbackTextColorError: string;
3785
- feedbackTextColorWarning: string;
3786
- feedbackTextColor: string;
3787
- feedbackPadding: string;
3788
- feedbackHeightSmall: string;
3789
- feedbackHeightMedium: string;
3790
- feedbackHeightLarge: string;
3791
- feedbackFontSizeSmall: string;
3792
- feedbackFontSizeMedium: string;
3793
- feedbackFontSizeLarge: string;
3794
- labelFontSizeLeftSmall: string;
3795
- labelFontSizeLeftMedium: string;
3796
- labelFontSizeLeftLarge: string;
3797
- labelFontSizeTopSmall: string;
3798
- labelFontSizeTopMedium: string;
3799
- labelFontSizeTopLarge: string;
3800
- labelHeightSmall: string;
3801
- labelHeightMedium: string;
3802
- labelHeightLarge: string;
3803
- labelPaddingVertical: string;
3804
- labelPaddingHorizontal: string;
3805
- labelTextAlignVertical: string;
3806
- labelTextAlignHorizontal: string;
3807
- }, any>>;
3808
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3809
- blankHeightSmall: string;
3810
- blankHeightMedium: string;
3811
- blankHeightLarge: string;
3812
- lineHeight: string;
3813
- labelTextColor: string;
3814
- asteriskColor: string;
3815
- feedbackTextColorError: string;
3816
- feedbackTextColorWarning: string;
3817
- feedbackTextColor: string;
3818
- feedbackPadding: string;
3819
- feedbackHeightSmall: string;
3820
- feedbackHeightMedium: string;
3821
- feedbackHeightLarge: string;
3822
- feedbackFontSizeSmall: string;
3823
- feedbackFontSizeMedium: string;
3824
- feedbackFontSizeLarge: string;
3825
- labelFontSizeLeftSmall: string;
3826
- labelFontSizeLeftMedium: string;
3827
- labelFontSizeLeftLarge: string;
3828
- labelFontSizeTopSmall: string;
3829
- labelFontSizeTopMedium: string;
3830
- labelFontSizeTopLarge: string;
3831
- labelHeightSmall: string;
3832
- labelHeightMedium: string;
3833
- labelHeightLarge: string;
3834
- labelPaddingVertical: string;
3835
- labelPaddingHorizontal: string;
3836
- labelTextAlignVertical: string;
3837
- labelTextAlignHorizontal: string;
3838
- }, any>>>;
3839
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3840
- blankHeightSmall: string;
3841
- blankHeightMedium: string;
3842
- blankHeightLarge: string;
3843
- lineHeight: string;
3844
- labelTextColor: string;
3845
- asteriskColor: string;
3846
- feedbackTextColorError: string;
3847
- feedbackTextColorWarning: string;
3848
- feedbackTextColor: string;
3849
- feedbackPadding: string;
3850
- feedbackHeightSmall: string;
3851
- feedbackHeightMedium: string;
3852
- feedbackHeightLarge: string;
3853
- feedbackFontSizeSmall: string;
3854
- feedbackFontSizeMedium: string;
3855
- feedbackFontSizeLarge: string;
3856
- labelFontSizeLeftSmall: string;
3857
- labelFontSizeLeftMedium: string;
3858
- labelFontSizeLeftLarge: string;
3859
- labelFontSizeTopSmall: string;
3860
- labelFontSizeTopMedium: string;
3861
- labelFontSizeTopLarge: string;
3862
- labelHeightSmall: string;
3863
- labelHeightMedium: string;
3864
- labelHeightLarge: string;
3865
- labelPaddingVertical: string;
3866
- labelPaddingHorizontal: string;
3867
- labelTextAlignVertical: string;
3868
- labelTextAlignHorizontal: string;
3869
- }, any>>>;
3870
- }, {
3871
- cssVars: import("vue").ComputedRef<{
3872
- '--n-bezier': string;
3873
- '--n-line-height': string;
3874
- '--n-blank-height': string;
3875
- '--n-label-font-size': string;
3876
- '--n-label-text-align': string;
3877
- '--n-label-height': string;
3878
- '--n-label-padding': string;
3879
- '--n-asterisk-color': string;
3880
- '--n-label-text-color': string;
3881
- '--n-feedback-padding': string;
3882
- '--n-feedback-font-size': string;
3883
- '--n-feedback-height': string;
3884
- '--n-feedback-text-color': string;
3885
- '--n-feedback-text-color-warning': string;
3886
- '--n-feedback-text-color-error': string;
3887
- }> | undefined;
3888
- themeClass: import("vue").Ref<string>;
3889
- onRender: () => void;
3890
- validate: import("naive-ui/es/form/src/interface").FormItemValidate;
3891
- restoreValidation: () => void;
3892
- path?: string | undefined;
3893
- internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
3894
- mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
3895
- validationErrored: import("vue").Ref<boolean>;
3896
- mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
3897
- mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
3898
- mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
3899
- mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
3900
- mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
3901
- mergedValidationStatus: import("vue").ComputedRef<"success" | "warning" | "error" | undefined>;
3902
- mergedShowFeedback: import("vue").ComputedRef<boolean>;
3903
- mergedShowLabel: import("vue").ComputedRef<boolean>;
3904
- labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
3905
- mergedClsPrefix: import("vue").ComputedRef<string>;
3906
- mergedRequired: import("vue").ComputedRef<boolean>;
3907
- feedbackId: import("vue").Ref<string>;
3908
- renderExplains: import("vue").Ref<{
3909
- key: string;
3910
- render: () => import("vue").VNodeChild;
3911
- }[]>;
3912
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3913
- readonly label: StringConstructor;
3914
- readonly labelWidth: import("vue").PropType<string | number>;
3915
- readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3916
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3917
- readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3918
- readonly path: StringConstructor;
3919
- readonly first: BooleanConstructor;
3920
- readonly rulePath: StringConstructor;
3921
- readonly required: BooleanConstructor;
3922
- readonly showRequireMark: {
3923
- readonly type: import("vue").PropType<boolean | undefined>;
3924
- readonly default: undefined;
3925
- };
3926
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3927
- readonly showFeedback: {
3928
- readonly type: import("vue").PropType<boolean | undefined>;
3929
- readonly default: undefined;
3930
- };
3931
- readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
3932
- readonly size: import("vue").PropType<"small" | "medium" | "large">;
3933
- readonly ignorePathChange: BooleanConstructor;
3934
- readonly validationStatus: import("vue").PropType<"success" | "warning" | "error">;
3935
- readonly feedback: StringConstructor;
3936
- readonly showLabel: {
3937
- readonly type: import("vue").PropType<boolean | undefined>;
3938
- readonly default: undefined;
3939
- };
3940
- readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
3941
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3942
- blankHeightSmall: string;
3943
- blankHeightMedium: string;
3944
- blankHeightLarge: string;
3945
- lineHeight: string;
3946
- labelTextColor: string;
3947
- asteriskColor: string;
3948
- feedbackTextColorError: string;
3949
- feedbackTextColorWarning: string;
3950
- feedbackTextColor: string;
3951
- feedbackPadding: string;
3952
- feedbackHeightSmall: string;
3953
- feedbackHeightMedium: string;
3954
- feedbackHeightLarge: string;
3955
- feedbackFontSizeSmall: string;
3956
- feedbackFontSizeMedium: string;
3957
- feedbackFontSizeLarge: string;
3958
- labelFontSizeLeftSmall: string;
3959
- labelFontSizeLeftMedium: string;
3960
- labelFontSizeLeftLarge: string;
3961
- labelFontSizeTopSmall: string;
3962
- labelFontSizeTopMedium: string;
3963
- labelFontSizeTopLarge: string;
3964
- labelHeightSmall: string;
3965
- labelHeightMedium: string;
3966
- labelHeightLarge: string;
3967
- labelPaddingVertical: string;
3968
- labelPaddingHorizontal: string;
3969
- labelTextAlignVertical: string;
3970
- labelTextAlignHorizontal: string;
3971
- }, any>>;
3972
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3973
- blankHeightSmall: string;
3974
- blankHeightMedium: string;
3975
- blankHeightLarge: string;
3976
- lineHeight: string;
3977
- labelTextColor: string;
3978
- asteriskColor: string;
3979
- feedbackTextColorError: string;
3980
- feedbackTextColorWarning: string;
3981
- feedbackTextColor: string;
3982
- feedbackPadding: string;
3983
- feedbackHeightSmall: string;
3984
- feedbackHeightMedium: string;
3985
- feedbackHeightLarge: string;
3986
- feedbackFontSizeSmall: string;
3987
- feedbackFontSizeMedium: string;
3988
- feedbackFontSizeLarge: string;
3989
- labelFontSizeLeftSmall: string;
3990
- labelFontSizeLeftMedium: string;
3991
- labelFontSizeLeftLarge: string;
3992
- labelFontSizeTopSmall: string;
3993
- labelFontSizeTopMedium: string;
3994
- labelFontSizeTopLarge: string;
3995
- labelHeightSmall: string;
3996
- labelHeightMedium: string;
3997
- labelHeightLarge: string;
3998
- labelPaddingVertical: string;
3999
- labelPaddingHorizontal: string;
4000
- labelTextAlignVertical: string;
4001
- labelTextAlignHorizontal: string;
4002
- }, any>>>;
4003
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
4004
- blankHeightSmall: string;
4005
- blankHeightMedium: string;
4006
- blankHeightLarge: string;
4007
- lineHeight: string;
4008
- labelTextColor: string;
4009
- asteriskColor: string;
4010
- feedbackTextColorError: string;
4011
- feedbackTextColorWarning: string;
4012
- feedbackTextColor: string;
4013
- feedbackPadding: string;
4014
- feedbackHeightSmall: string;
4015
- feedbackHeightMedium: string;
4016
- feedbackHeightLarge: string;
4017
- feedbackFontSizeSmall: string;
4018
- feedbackFontSizeMedium: string;
4019
- feedbackFontSizeLarge: string;
4020
- labelFontSizeLeftSmall: string;
4021
- labelFontSizeLeftMedium: string;
4022
- labelFontSizeLeftLarge: string;
4023
- labelFontSizeTopSmall: string;
4024
- labelFontSizeTopMedium: string;
4025
- labelFontSizeTopLarge: string;
4026
- labelHeightSmall: string;
4027
- labelHeightMedium: string;
4028
- labelHeightLarge: string;
4029
- labelPaddingVertical: string;
4030
- labelPaddingHorizontal: string;
4031
- labelTextAlignVertical: string;
4032
- labelTextAlignHorizontal: string;
4033
- }, any>>>;
4034
- }>>, {
4035
- readonly required: boolean;
4036
- readonly first: boolean;
4037
- readonly showRequireMark: boolean | undefined;
4038
- readonly showFeedback: boolean | undefined;
4039
- readonly showLabel: boolean | undefined;
4040
- readonly ignorePathChange: boolean;
4041
- }>;
4042
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onCloseSetting" | "submitNoRequest" | "onSubmit")[], "onSubmit" | "onCloseSetting" | "submitNoRequest", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4043
- ids: {
4044
- type: ObjectConstructor;
4045
- default: () => {
4046
- guage_id: string;
4047
- db_id: undefined;
4048
- };
4049
- };
4050
- params: {
4051
- default: () => {};
4052
- type: ObjectConstructor;
4053
- };
4054
- guageData: {
4055
- type: ObjectConstructor;
4056
- default: () => {};
4057
- };
4058
- noBtn: {
4059
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
4060
- default: boolean;
4061
- };
4062
- hideBtn: {
4063
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
4064
- default: boolean;
4065
- };
4066
- source: {
4067
- type: StringConstructor;
4068
- default: string;
4069
- };
4070
- isLock: {
4071
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
4072
- default: boolean;
4073
- };
4074
- type: {
4075
- type: StringConstructor;
4076
- default: string;
4077
- };
4078
- styleSetting: {
4079
- type: ObjectConstructor;
4080
- default: () => {};
4081
- };
4082
- fontSizeObj: {
4083
- type: ObjectConstructor;
4084
- default: () => {
4085
- large: number;
4086
- medium: number;
4087
- small: number;
4088
- extrasmall: number;
4089
- };
4090
- };
4091
- openType: {
4092
- type: StringConstructor;
4093
- default: string;
4094
- };
4095
- scaleApiConfig: {
4096
- type: ObjectConstructor;
4097
- default: () => {};
4098
- };
4099
- getSelectOptions: {
4100
- type: FunctionConstructor;
4101
- default: () => Promise<never[]>;
4102
- };
4103
- getSearchOptions: {
4104
- type: FunctionConstructor;
4105
- default: () => Promise<never[]>;
4106
- };
4107
- getCascadeOptions: {
4108
- type: FunctionConstructor;
4109
- default: () => Promise<never[]>;
4110
- };
4111
- getLabelList: {
4112
- type: FunctionConstructor;
4113
- default: () => Promise<never[]>;
4114
- };
4115
- uploadPictureUrl: {
4116
- type: StringConstructor;
4117
- default: string;
4118
- };
4119
- uploadFileUrl: {
4120
- type: StringConstructor;
4121
- default: string;
4122
- };
4123
- ak: {
4124
- type: StringConstructor;
4125
- default: string;
4126
- };
4127
- }>> & {
4128
- onOnCloseSetting?: ((...args: any[]) => any) | undefined;
4129
- onSubmitNoRequest?: ((...args: any[]) => any) | undefined;
4130
- onOnSubmit?: ((...args: any[]) => any) | undefined;
4131
- }, {
4132
- params: Record<string, any>;
4133
- type: string;
4134
- styleSetting: Record<string, any>;
4135
- source: string;
4136
- isLock: string | number | boolean;
4137
- getLabelList: Function;
4138
- ids: Record<string, any>;
4139
- guageData: Record<string, any>;
4140
- noBtn: string | number | boolean;
4141
- hideBtn: string | number | boolean;
4142
- fontSizeObj: Record<string, any>;
4143
- openType: string;
4144
- scaleApiConfig: Record<string, any>;
4145
- getSelectOptions: Function;
4146
- getSearchOptions: Function;
4147
- getCascadeOptions: Function;
4148
- uploadPictureUrl: string;
4149
- uploadFileUrl: string;
4150
- ak: string;
4151
- }>;
4152
- export default _default;