cnhis-design-vue 3.1.6 → 3.1.7-beta.3

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 (580) hide show
  1. package/es/_virtual/_commonjsHelpers.mjs +5 -1
  2. package/es/_virtual/inherits.mjs +3 -1
  3. package/es/_virtual/inherits_browser.mjs +3 -1
  4. package/es/node_modules/date-fns/esm/_lib/getTimezoneOffsetInMilliseconds/index.mjs +18 -0
  5. package/es/node_modules/date-fns/esm/_lib/requiredArgs/index.mjs +7 -0
  6. package/es/node_modules/date-fns/esm/compareAsc/index.mjs +56 -0
  7. package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.mjs +53 -0
  8. package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.mjs +39 -0
  9. package/es/node_modules/date-fns/esm/differenceInDays/index.mjs +90 -0
  10. package/es/node_modules/date-fns/esm/differenceInMonths/index.mjs +63 -0
  11. package/es/node_modules/date-fns/esm/endOfDay/index.mjs +34 -0
  12. package/es/node_modules/date-fns/esm/endOfMonth/index.mjs +36 -0
  13. package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.mjs +34 -0
  14. package/es/node_modules/date-fns/esm/startOfDay/index.mjs +34 -0
  15. package/es/node_modules/date-fns/esm/toDate/index.mjs +55 -0
  16. package/es/node_modules/diagram-js/lib/command/CommandInterceptor.mjs +139 -1
  17. package/es/node_modules/diagram-js/lib/draw/BaseRenderer.mjs +88 -1
  18. package/es/node_modules/diagram-js/lib/features/popup-menu/PopupMenu.mjs +572 -1
  19. package/es/node_modules/diagram-js/lib/features/rules/RuleProvider.mjs +88 -1
  20. package/es/node_modules/diagram-js/lib/navigation/movecanvas/MoveCanvas.mjs +120 -1
  21. package/es/node_modules/diagram-js/lib/navigation/movecanvas/index.mjs +8 -1
  22. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomScroll.mjs +227 -1
  23. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomUtil.mjs +24 -1
  24. package/es/node_modules/diagram-js/lib/util/ClickTrap.mjs +23 -1
  25. package/es/node_modules/diagram-js/lib/util/Cursor.mjs +20 -1
  26. package/es/node_modules/diagram-js/lib/util/Event.mjs +22 -1
  27. package/es/node_modules/diagram-js/lib/util/Math.mjs +9 -1
  28. package/es/node_modules/diagram-js/lib/util/Mouse.mjs +30 -1
  29. package/es/node_modules/diagram-js/lib/util/Platform.mjs +5 -1
  30. package/es/node_modules/diagram-js/lib/util/PositionUtil.mjs +8 -1
  31. package/es/node_modules/diagram-js/lib/util/RenderUtil.mjs +25 -1
  32. package/es/node_modules/diagram-js/lib/util/SvgTransformUtil.mjs +48 -1
  33. package/es/node_modules/ids/dist/index.esm.mjs +164 -1
  34. package/es/node_modules/inherits/inherits.mjs +19 -1
  35. package/es/node_modules/inherits/inherits_browser.mjs +38 -1
  36. package/es/node_modules/inherits-browser/dist/index.es.mjs +3 -1
  37. package/es/node_modules/min-dash/dist/index.esm.mjs +169 -1
  38. package/es/node_modules/min-dom/dist/index.esm.mjs +588 -1
  39. package/es/node_modules/tiny-svg/dist/index.esm.mjs +525 -1
  40. package/es/packages/big-table/index.mjs +1 -1
  41. package/es/packages/big-table/index2.mjs +17 -1
  42. package/es/packages/big-table/src/BigTable.mjs +2 -1
  43. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +2340 -1
  44. package/es/packages/big-table/src/BigTable2.mjs +4 -1
  45. package/es/packages/big-table/src/bigTableEmits.mjs +1 -1
  46. package/es/packages/big-table/src/bigTableEmits2.mjs +49 -1
  47. package/es/packages/big-table/src/bigTableProps.mjs +1 -1
  48. package/es/packages/big-table/src/bigTableProps2.mjs +116 -1
  49. package/es/packages/big-table/src/bigTableState.mjs +1 -1
  50. package/es/packages/big-table/src/bigTableState2.mjs +52 -1
  51. package/es/packages/big-table/src/components/NoData.mjs +2 -1
  52. package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +71 -1
  53. package/es/packages/big-table/src/components/NoData2.mjs +4 -1
  54. package/es/packages/big-table/src/components/edit-form/edit-date.mjs +1 -1
  55. package/es/packages/big-table/src/components/edit-form/edit-date2.mjs +114 -1
  56. package/es/packages/big-table/src/components/edit-form/edit-input.mjs +1 -1
  57. package/es/packages/big-table/src/components/edit-form/edit-input2.mjs +54 -1
  58. package/es/packages/big-table/src/components/edit-form/edit-select-table.d.ts +1 -1
  59. package/es/packages/big-table/src/components/edit-form/edit-select-table.mjs +1 -1
  60. package/es/packages/big-table/src/components/edit-form/edit-select-table2.mjs +148 -1
  61. package/es/packages/big-table/src/components/edit-form/edit-select.mjs +1 -1
  62. package/es/packages/big-table/src/components/edit-form/edit-select2.mjs +89 -1
  63. package/es/packages/big-table/src/hooks/useBatchEditing.mjs +1 -1
  64. package/es/packages/big-table/src/hooks/useBatchEditing2.mjs +289 -1
  65. package/es/packages/big-table/src/hooks/useEdit.mjs +1 -1
  66. package/es/packages/big-table/src/hooks/useEdit2.mjs +115 -1
  67. package/es/packages/big-table/src/hooks/useEvent.mjs +1 -1
  68. package/es/packages/big-table/src/hooks/useEvent2.mjs +70 -1
  69. package/es/packages/big-table/src/hooks/useFormat.mjs +1 -1
  70. package/es/packages/big-table/src/hooks/useFormat2.mjs +484 -1
  71. package/es/packages/big-table/src/hooks/useNestTable.mjs +1 -1
  72. package/es/packages/big-table/src/hooks/useNestTable2.mjs +85 -1
  73. package/es/packages/big-table/src/hooks/useTableParse.mjs +1 -1
  74. package/es/packages/big-table/src/hooks/useTableParse2.mjs +135 -1
  75. package/es/packages/big-table/src/utils.mjs +1 -1
  76. package/es/packages/big-table/src/utils2.mjs +607 -1
  77. package/es/packages/bpmn-workflow/index.mjs +1 -1
  78. package/es/packages/bpmn-workflow/index2.mjs +11 -1
  79. package/es/packages/bpmn-workflow/src/BpmnWorkflow.mjs +2 -1
  80. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.mjs +251 -1
  81. package/es/packages/bpmn-workflow/src/BpmnWorkflow2.mjs +4 -1
  82. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.mjs +1 -1
  83. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer2.mjs +1427 -1
  84. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.mjs +1 -1
  85. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider2.mjs +373 -1
  86. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.mjs +1 -1
  87. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette2.mjs +141 -1
  88. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.mjs +1 -1
  89. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap2.mjs +99 -1
  90. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.mjs +1 -1
  91. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer2.mjs +119 -1
  92. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.mjs +1 -1
  93. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules2.mjs +40 -1
  94. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.mjs +1 -1
  95. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index2.mjs +25 -1
  96. package/es/packages/bpmn-workflow/src/custom/customModeler/index.mjs +1 -1
  97. package/es/packages/bpmn-workflow/src/custom/customModeler/index2.mjs +12 -1
  98. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.mjs +1 -1
  99. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu2.mjs +47 -1
  100. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.mjs +1 -1
  101. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer2.mjs +14 -1
  102. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.mjs +1 -1
  103. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll2.mjs +10 -1
  104. package/es/packages/bpmn-workflow/src/custom/customRules/no-task.mjs +1 -1
  105. package/es/packages/bpmn-workflow/src/custom/customRules/no-task2.mjs +16 -1
  106. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.mjs +1 -1
  107. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate2.mjs +15 -1
  108. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.mjs +1 -1
  109. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh2.mjs +227 -1
  110. package/es/packages/button-print/index.mjs +1 -1
  111. package/es/packages/button-print/index2.mjs +11 -1
  112. package/es/packages/button-print/src/ButtonPrint.mjs +2 -1
  113. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.mjs +452 -1
  114. package/es/packages/button-print/src/ButtonPrint2.mjs +4 -1
  115. package/es/packages/button-print/src/components/IdentityVerification.mjs +2 -1
  116. package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +52 -103
  117. package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.mjs +127 -1
  118. package/es/packages/button-print/src/components/IdentityVerification2.mjs +4 -1
  119. package/es/packages/button-print/src/utils/print.es.min.mjs +1 -1
  120. package/es/packages/button-print/src/utils/print.es.min2.mjs +2080 -1
  121. package/es/packages/chunk-upload/index.mjs +1 -1
  122. package/es/packages/chunk-upload/index2.mjs +16 -1
  123. package/es/packages/chunk-upload/src/chunk-upload-new.mjs +2 -1
  124. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.mjs +465 -1
  125. package/es/packages/chunk-upload/src/chunk-upload-new2.mjs +4 -1
  126. package/es/packages/chunk-upload/src/hooks/upload-computed.mjs +1 -1
  127. package/es/packages/chunk-upload/src/hooks/upload-computed2.mjs +68 -1
  128. package/es/packages/chunk-upload/src/hooks/upload-data.mjs +1 -1
  129. package/es/packages/chunk-upload/src/hooks/upload-data2.mjs +93 -1
  130. package/es/packages/chunk-upload/src/hooks/vod-computed.mjs +1 -1
  131. package/es/packages/chunk-upload/src/hooks/vod-computed2.mjs +79 -1
  132. package/es/packages/chunk-upload/src/hooks/vod-data.mjs +1 -1
  133. package/es/packages/chunk-upload/src/hooks/vod-data2.mjs +33 -1
  134. package/es/packages/chunk-upload/src/vod-chunk-upload/index.mjs +2 -1
  135. package/es/packages/chunk-upload/src/vod-chunk-upload/index2.mjs +3 -1
  136. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.mjs +2 -1
  137. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.mjs +325 -1
  138. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload2.mjs +4 -1
  139. package/es/packages/chunk-upload/src/vod-upload-modal.mjs +1 -1
  140. package/es/packages/chunk-upload/src/vod-upload-modal2.mjs +95 -1
  141. package/es/packages/drag-layout/index.d.ts +289 -415
  142. package/es/packages/drag-layout/index.mjs +1 -1
  143. package/es/packages/drag-layout/index2.mjs +13 -1
  144. package/es/packages/drag-layout/src/DragFormLeftItem.mjs +2 -1
  145. package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +89 -113
  146. package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.mjs +121 -1
  147. package/es/packages/drag-layout/src/DragFormLeftItem2.mjs +4 -1
  148. package/es/packages/drag-layout/src/DragFormRightItem.mjs +2 -1
  149. package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +77 -95
  150. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.mjs +266 -1
  151. package/es/packages/drag-layout/src/DragFormRightItem2.mjs +4 -1
  152. package/es/packages/drag-layout/src/DragLayout.mjs +2 -1
  153. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +289 -415
  154. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.mjs +658 -1
  155. package/es/packages/drag-layout/src/DragLayout2.mjs +4 -1
  156. package/es/packages/editor/index.mjs +1 -1
  157. package/es/packages/editor/index2.mjs +10 -1
  158. package/es/packages/editor/src/Editor.mjs +1 -1
  159. package/es/packages/editor/src/Editor2.mjs +77 -1
  160. package/es/packages/field-set/index.mjs +1 -1
  161. package/es/packages/field-set/index2.mjs +11 -1
  162. package/es/packages/field-set/src/FieldSet.mjs +2 -1
  163. package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.mjs +329 -1
  164. package/es/packages/field-set/src/FieldSet2.mjs +4 -1
  165. package/es/packages/field-set/src/Index.mjs +2 -0
  166. package/es/packages/field-set/src/Index.vue_vue_type_script_setup_true_lang.mjs +25 -0
  167. package/es/packages/field-set/src/Index2.mjs +4 -0
  168. package/es/packages/field-set/src/NewFieldSet.mjs +2 -0
  169. package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.mjs +298 -0
  170. package/es/packages/field-set/src/NewFieldSet2.mjs +4 -0
  171. package/es/packages/field-set/src/index.vue_vue_type_script_setup_true_lang2.mjs +25 -0
  172. package/es/packages/field-set/src/index3.mjs +4 -0
  173. package/es/packages/form-render/index.mjs +10 -0
  174. package/es/packages/form-render/index2.mjs +15 -0
  175. package/es/packages/form-render/src/FormRender.mjs +2 -0
  176. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +91 -0
  177. package/es/packages/form-render/src/FormRender2.mjs +4 -0
  178. package/es/packages/form-render/src/components/cascader.d.ts +40 -0
  179. package/es/packages/form-render/src/components/cascader.mjs +1 -0
  180. package/es/packages/form-render/src/components/cascader2.mjs +108 -0
  181. package/es/packages/form-render/src/components/checkbox.d.ts +24 -0
  182. package/es/packages/form-render/src/components/checkbox.mjs +1 -0
  183. package/es/packages/form-render/src/components/checkbox2.mjs +42 -0
  184. package/es/packages/form-render/src/components/collapse.d.ts +31 -0
  185. package/es/packages/form-render/src/components/collapse.mjs +1 -0
  186. package/es/packages/form-render/src/components/collapse2.mjs +54 -0
  187. package/es/packages/form-render/src/components/combination.d.ts +142 -0
  188. package/es/packages/form-render/src/components/combination.mjs +1 -0
  189. package/es/packages/form-render/src/components/combination2.mjs +116 -0
  190. package/es/packages/form-render/src/components/date.d.ts +5033 -0
  191. package/es/packages/form-render/src/components/date.mjs +1 -0
  192. package/es/packages/form-render/src/components/date2.mjs +34 -0
  193. package/es/packages/form-render/src/components/formItem.d.ts +292 -0
  194. package/es/packages/form-render/src/components/formItem.mjs +1 -0
  195. package/es/packages/form-render/src/components/formItem2.mjs +22 -0
  196. package/es/packages/form-render/src/components/index.d.ts +15 -0
  197. package/es/packages/form-render/src/components/index.mjs +15 -0
  198. package/es/packages/form-render/src/components/index2.mjs +15 -0
  199. package/es/packages/form-render/src/components/input.d.ts +15 -0
  200. package/es/packages/form-render/src/components/input.mjs +1 -0
  201. package/es/packages/form-render/src/components/input2.mjs +40 -0
  202. package/es/packages/form-render/src/components/inputGroup.d.ts +11 -0
  203. package/es/packages/form-render/src/components/inputGroup.mjs +1 -0
  204. package/es/packages/form-render/src/components/inputGroup2.mjs +8 -0
  205. package/es/packages/{map/src/Map.vue.d.ts → form-render/src/components/inputNumber.d.ts} +1002 -1148
  206. package/es/packages/form-render/src/components/inputNumber.mjs +1 -0
  207. package/es/packages/form-render/src/components/inputNumber2.mjs +7 -0
  208. package/es/packages/form-render/src/components/labelSelect.d.ts +1 -0
  209. package/es/packages/form-render/src/components/labelSelect.mjs +1 -0
  210. package/es/packages/form-render/src/components/labelSelect2.mjs +18 -0
  211. package/es/packages/form-render/src/components/radio.d.ts +24 -0
  212. package/es/packages/form-render/src/components/radio.mjs +1 -0
  213. package/es/packages/form-render/src/components/radio2.mjs +44 -0
  214. package/es/packages/form-render/src/components/select.d.ts +29 -0
  215. package/es/packages/form-render/src/components/select.mjs +1 -0
  216. package/es/packages/form-render/src/components/select2.mjs +97 -0
  217. package/es/packages/form-render/src/components/slider.d.ts +347 -0
  218. package/es/packages/form-render/src/components/slider.mjs +1 -0
  219. package/es/packages/form-render/src/components/slider2.mjs +16 -0
  220. package/es/packages/form-render/src/components/switch.d.ts +21 -0
  221. package/es/packages/form-render/src/components/switch.mjs +1 -0
  222. package/es/packages/form-render/src/components/switch2.mjs +48 -0
  223. package/es/packages/form-render/src/components/textarea.d.ts +845 -0
  224. package/es/packages/form-render/src/components/textarea.mjs +1 -0
  225. package/es/packages/form-render/src/components/textarea2.mjs +11 -0
  226. package/es/packages/form-render/src/constants/index.d.ts +23 -0
  227. package/es/packages/form-render/src/constants/index.mjs +1 -0
  228. package/es/packages/form-render/src/constants/index2.mjs +24 -0
  229. package/es/packages/form-render/src/hooks/index.d.ts +9 -0
  230. package/es/packages/form-render/src/hooks/index.mjs +9 -0
  231. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +60 -0
  232. package/es/packages/form-render/src/hooks/useAsyncQueue.mjs +1 -0
  233. package/es/packages/form-render/src/hooks/useAsyncQueue2.mjs +138 -0
  234. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +13 -0
  235. package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +1 -0
  236. package/es/packages/form-render/src/hooks/useBusinessBinding2.mjs +48 -0
  237. package/es/packages/form-render/src/hooks/useCommonLog.d.ts +3 -0
  238. package/es/packages/form-render/src/hooks/useCommonLog.mjs +1 -0
  239. package/es/packages/form-render/src/hooks/useCommonLog2.mjs +10 -0
  240. package/es/packages/form-render/src/hooks/useFieldList2Schema.d.ts +64 -0
  241. package/es/packages/form-render/src/hooks/useFieldList2Schema.mjs +1 -0
  242. package/es/packages/form-render/src/hooks/useFieldList2Schema2.mjs +184 -0
  243. package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +4 -0
  244. package/es/packages/form-render/src/hooks/useFieldVisitor.mjs +1 -0
  245. package/es/packages/form-render/src/hooks/useFieldVisitor2.mjs +38 -0
  246. package/es/packages/form-render/src/hooks/useFormField.d.ts +4 -0
  247. package/es/packages/form-render/src/hooks/useFormField.mjs +1 -0
  248. package/es/packages/form-render/src/hooks/useFormField2.mjs +9 -0
  249. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +6 -0
  250. package/es/packages/form-render/src/hooks/useFormRequest.mjs +1 -0
  251. package/es/packages/form-render/src/hooks/useFormRequest2.mjs +12 -0
  252. package/es/packages/form-render/src/hooks/useFormValidator.d.ts +5 -0
  253. package/es/packages/form-render/src/hooks/useFormValidator.mjs +1 -0
  254. package/es/packages/form-render/src/hooks/useFormValidator2.mjs +48 -0
  255. package/es/packages/form-render/src/hooks/useTypeNormalize.d.ts +4 -0
  256. package/es/packages/form-render/src/hooks/useTypeNormalize.mjs +1 -0
  257. package/es/packages/form-render/src/hooks/useTypeNormalize2.mjs +37 -0
  258. package/es/packages/form-render/src/types/fieldItem.d.ts +44 -0
  259. package/es/packages/{popper/index.mjs → form-render/src/types/fieldItem.mjs} +0 -0
  260. package/es/packages/form-render/src/types/index.d.ts +26 -0
  261. package/es/packages/{popper → form-render}/src/types/index.mjs +0 -0
  262. package/es/packages/form-render/src/utils/index.d.ts +10 -0
  263. package/es/packages/form-render/src/utils/index.mjs +1 -0
  264. package/es/packages/form-render/src/utils/index2.mjs +59 -0
  265. package/es/packages/form-render/style/index.css +80 -0
  266. package/es/packages/form-render/style/index.less +116 -0
  267. package/es/packages/form-table/index.mjs +1 -1
  268. package/es/packages/form-table/index2.mjs +11 -1
  269. package/es/packages/form-table/src/FormTable.mjs +2 -1
  270. package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.mjs +473 -1
  271. package/es/packages/form-table/src/FormTable2.mjs +4 -1
  272. package/es/packages/form-table/src/components/index.mjs +1 -1
  273. package/es/packages/form-table/src/components/index2.mjs +54 -1
  274. package/es/packages/form-table/src/components/table-age.mjs +2 -1
  275. package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.mjs +231 -1
  276. package/es/packages/form-table/src/components/table-age2.mjs +4 -1
  277. package/es/packages/form-table/src/components/table-date-picker.mjs +2 -1
  278. package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.mjs +177 -1
  279. package/es/packages/form-table/src/components/table-date-picker2.mjs +4 -1
  280. package/es/packages/form-table/src/components/table-digital.mjs +2 -1
  281. package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.mjs +137 -1
  282. package/es/packages/form-table/src/components/table-digital2.mjs +4 -1
  283. package/es/packages/form-table/src/components/table-input-password.mjs +2 -1
  284. package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.mjs +137 -1
  285. package/es/packages/form-table/src/components/table-input-password2.mjs +4 -1
  286. package/es/packages/form-table/src/components/table-input.mjs +2 -1
  287. package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.mjs +123 -1
  288. package/es/packages/form-table/src/components/table-input2.mjs +4 -1
  289. package/es/packages/form-table/src/components/table-month-picker.mjs +2 -1
  290. package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.mjs +98 -1
  291. package/es/packages/form-table/src/components/table-month-picker2.mjs +4 -1
  292. package/es/packages/form-table/src/components/table-search-more.mjs +2 -1
  293. package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.mjs +275 -1
  294. package/es/packages/form-table/src/components/table-search-more2.mjs +4 -1
  295. package/es/packages/form-table/src/components/table-search.mjs +2 -1
  296. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.mjs +275 -1
  297. package/es/packages/form-table/src/components/table-search2.mjs +4 -1
  298. package/es/packages/form-table/src/components/table-select-multiple.mjs +2 -1
  299. package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.mjs +159 -1
  300. package/es/packages/form-table/src/components/table-select-multiple2.mjs +4 -1
  301. package/es/packages/form-table/src/components/table-select.mjs +2 -1
  302. package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.mjs +154 -1
  303. package/es/packages/form-table/src/components/table-select2.mjs +4 -1
  304. package/es/packages/form-table/src/components/table-textarea.mjs +2 -1
  305. package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.mjs +152 -1
  306. package/es/packages/form-table/src/components/table-textarea2.mjs +4 -1
  307. package/es/packages/form-table/src/components/table-time-picker.mjs +2 -1
  308. package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.mjs +144 -1
  309. package/es/packages/form-table/src/components/table-time-picker2.mjs +4 -1
  310. package/es/packages/form-table/src/components/table-tree-select.mjs +2 -1
  311. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.mjs +278 -1
  312. package/es/packages/form-table/src/components/table-tree-select2.mjs +4 -1
  313. package/es/packages/form-table/src/components/text-over-tooltip.mjs +2 -1
  314. package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.mjs +61 -1
  315. package/es/packages/form-table/src/components/text-over-tooltip2.mjs +4 -1
  316. package/es/packages/form-table/src/configs/index.mjs +1 -1
  317. package/es/packages/form-table/src/configs/index2.mjs +74 -1
  318. package/es/packages/form-table/src/hooks/index.mjs +5 -1
  319. package/es/packages/form-table/src/hooks/useBoundDate.mjs +1 -1
  320. package/es/packages/form-table/src/hooks/useBoundDate2.mjs +411 -1
  321. package/es/packages/form-table/src/hooks/useDateType.mjs +1 -1
  322. package/es/packages/form-table/src/hooks/useDateType2.mjs +160 -1
  323. package/es/packages/form-table/src/hooks/useFormCommon.mjs +1 -1
  324. package/es/packages/form-table/src/hooks/useFormCommon2.mjs +95 -1
  325. package/es/packages/form-table/src/hooks/useFormEvent.mjs +1 -1
  326. package/es/packages/form-table/src/hooks/useFormEvent2.mjs +71 -1
  327. package/es/packages/form-table/src/hooks/useItemDefault.mjs +1 -1
  328. package/es/packages/form-table/src/hooks/useItemDefault2.mjs +218 -1
  329. package/es/packages/form-table/src/hooks/useSearch.mjs +1 -1
  330. package/es/packages/form-table/src/hooks/useSearch2.mjs +1216 -1
  331. package/es/packages/form-table/src/hooks/useValidate.mjs +1 -1
  332. package/es/packages/form-table/src/hooks/useValidate2.mjs +480 -1
  333. package/es/packages/grid/index.mjs +1 -1
  334. package/es/packages/grid/index2.mjs +14 -1
  335. package/es/packages/grid/src/Grid.mjs +1 -1
  336. package/es/packages/grid/src/Grid2.mjs +28 -1
  337. package/es/packages/grid/src/hooks.mjs +1 -1
  338. package/es/packages/grid/src/hooks2.mjs +165 -1
  339. package/es/packages/index.css +214 -1
  340. package/es/packages/index.d.ts +5 -2
  341. package/es/packages/index.less +286 -1
  342. package/es/packages/index.mjs +26 -1
  343. package/es/packages/index2.mjs +64 -1
  344. package/es/packages/info-header/index.mjs +1 -1
  345. package/es/packages/info-header/index2.mjs +11 -1
  346. package/es/packages/info-header/src/HiddenContent.mjs +2 -0
  347. package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.mjs +60 -0
  348. package/es/packages/info-header/src/HiddenContent2.mjs +4 -0
  349. package/es/packages/info-header/src/InfoHeader.mjs +2 -0
  350. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.mjs +217 -0
  351. package/es/packages/info-header/src/InfoHeader2.mjs +4 -0
  352. package/es/packages/info-header/src/SlotRender.d.ts +22 -0
  353. package/es/packages/info-header/src/SlotRender.mjs +1 -0
  354. package/es/packages/info-header/src/SlotRender2.mjs +35 -0
  355. package/es/packages/info-header/style/index.css +3 -0
  356. package/es/packages/info-header/style/index.less +5 -1
  357. package/es/packages/map/index.mjs +1 -1
  358. package/es/packages/map/index2.mjs +11 -1
  359. package/es/packages/map/src/Map.mjs +2 -1
  360. package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.mjs +335 -1
  361. package/es/packages/map/src/Map2.mjs +4 -1
  362. package/es/packages/scale-view/index.mjs +1 -1
  363. package/es/packages/scale-view/index2.mjs +37 -1
  364. package/es/packages/scale-view/src/ScaleView.mjs +2 -1
  365. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.mjs +372 -1
  366. package/es/packages/scale-view/src/ScaleView2.mjs +4 -1
  367. package/es/packages/scale-view/src/components/AnswerParse.mjs +2 -1
  368. package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.mjs +77 -1
  369. package/es/packages/scale-view/src/components/AnswerParse2.mjs +4 -1
  370. package/es/packages/scale-view/src/components/EvaluateCountdown.mjs +2 -1
  371. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.mjs +108 -1
  372. package/es/packages/scale-view/src/components/EvaluateCountdown2.mjs +4 -1
  373. package/es/packages/scale-view/src/components/EvaluatePage.mjs +2 -1
  374. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.mjs +138 -1
  375. package/es/packages/scale-view/src/components/EvaluatePage2.mjs +4 -1
  376. package/es/packages/scale-view/src/components/NoData.mjs +2 -1
  377. package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +71 -1
  378. package/es/packages/scale-view/src/components/NoData2.mjs +4 -1
  379. package/es/packages/scale-view/src/components/ScaleScore.mjs +1 -1
  380. package/es/packages/scale-view/src/components/ScaleScore2.mjs +63 -1
  381. package/es/packages/scale-view/src/components/composables/choose-common.d.ts +1 -1
  382. package/es/packages/scale-view/src/components/composables/choose-common.mjs +1 -1
  383. package/es/packages/scale-view/src/components/composables/choose-common2.mjs +78 -1
  384. package/es/packages/scale-view/src/components/formitem/address.mjs +1 -1
  385. package/es/packages/scale-view/src/components/formitem/address2.mjs +3993 -1
  386. package/es/packages/scale-view/src/components/formitem/r-address.mjs +1 -1
  387. package/es/packages/scale-view/src/components/formitem/r-address2.mjs +225 -1
  388. package/es/packages/scale-view/src/components/formitem/r-cascader.mjs +1 -1
  389. package/es/packages/scale-view/src/components/formitem/r-cascader2.mjs +121 -1
  390. package/es/packages/scale-view/src/components/formitem/r-checkbox.mjs +1 -1
  391. package/es/packages/scale-view/src/components/formitem/r-checkbox2.mjs +228 -1
  392. package/es/packages/scale-view/src/components/formitem/r-collection.mjs +1 -1
  393. package/es/packages/scale-view/src/components/formitem/r-collection2.mjs +111 -1
  394. package/es/packages/scale-view/src/components/formitem/r-datetime.mjs +1 -1
  395. package/es/packages/scale-view/src/components/formitem/r-datetime2.mjs +198 -1
  396. package/es/packages/scale-view/src/components/formitem/r-input.mjs +1 -1
  397. package/es/packages/scale-view/src/components/formitem/r-input2.mjs +88 -1
  398. package/es/packages/scale-view/src/components/formitem/r-map.mjs +1 -1
  399. package/es/packages/scale-view/src/components/formitem/r-map2.mjs +104 -1
  400. package/es/packages/scale-view/src/components/formitem/r-radio.mjs +1 -1
  401. package/es/packages/scale-view/src/components/formitem/r-radio2.mjs +220 -1
  402. package/es/packages/scale-view/src/components/formitem/r-select.mjs +1 -1
  403. package/es/packages/scale-view/src/components/formitem/r-select2.mjs +134 -1
  404. package/es/packages/scale-view/src/components/formitem/r-upload.mjs +1 -1
  405. package/es/packages/scale-view/src/components/formitem/r-upload2.mjs +210 -1
  406. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.mjs +2 -1
  407. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +2 -3
  408. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +77 -1
  409. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip2.mjs +4 -1
  410. package/es/packages/scale-view/src/hooks/scaleview-computed.mjs +1 -1
  411. package/es/packages/scale-view/src/hooks/scaleview-computed2.mjs +300 -1
  412. package/es/packages/scale-view/src/hooks/scaleview-init.mjs +1 -1
  413. package/es/packages/scale-view/src/hooks/scaleview-init2.mjs +441 -1
  414. package/es/packages/scale-view/src/hooks/scaleview-props.mjs +1 -1
  415. package/es/packages/scale-view/src/hooks/scaleview-props2.mjs +56 -1
  416. package/es/packages/scale-view/src/hooks/scaleview-state.mjs +1 -1
  417. package/es/packages/scale-view/src/hooks/scaleview-state2.mjs +42 -1
  418. package/es/packages/scale-view/src/hooks/scaleview-submit.mjs +1 -1
  419. package/es/packages/scale-view/src/hooks/scaleview-submit2.mjs +162 -1
  420. package/es/packages/scale-view/src/hooks/scaleview-validate.mjs +1 -1
  421. package/es/packages/scale-view/src/hooks/scaleview-validate2.mjs +164 -1
  422. package/es/packages/scale-view/src/hooks/use-component.mjs +1 -1
  423. package/es/packages/scale-view/src/hooks/use-component2.mjs +80 -1
  424. package/es/packages/scale-view/src/hooks/use-evaluate.mjs +1 -1
  425. package/es/packages/scale-view/src/hooks/use-evaluate2.mjs +150 -1
  426. package/es/packages/scale-view/src/hooks/use-event.d.ts +1 -1
  427. package/es/packages/scale-view/src/hooks/use-event.mjs +1 -1
  428. package/es/packages/scale-view/src/hooks/use-event2.mjs +128 -1
  429. package/es/packages/scale-view/src/hooks/use-noData.mjs +1 -1
  430. package/es/packages/scale-view/src/hooks/use-noData2.mjs +41 -1
  431. package/es/packages/scale-view/src/utils/judge-types.mjs +1 -1
  432. package/es/packages/scale-view/src/utils/judge-types2.mjs +40 -1
  433. package/es/packages/scale-view/style/index.css +13 -1
  434. package/es/packages/scale-view/style/index.less +15 -1
  435. package/es/packages/select-label/index.mjs +1 -1
  436. package/es/packages/select-label/index2.mjs +17 -1
  437. package/es/packages/select-label/src/LabelFormContent.mjs +2 -1
  438. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +94 -296
  439. package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.mjs +441 -1
  440. package/es/packages/select-label/src/LabelFormContent2.mjs +4 -1
  441. package/es/packages/select-label/src/SelectLabel.mjs +2 -1
  442. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.mjs +433 -1
  443. package/es/packages/select-label/src/SelectLabel2.mjs +4 -1
  444. package/es/packages/select-label/src/components/label-classify.mjs +2 -1
  445. package/es/packages/select-label/src/components/label-classify.vue.d.ts +66 -229
  446. package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.mjs +123 -1
  447. package/es/packages/select-label/src/components/label-classify2.mjs +4 -1
  448. package/es/packages/select-person/index.mjs +1 -1
  449. package/es/packages/select-person/index2.mjs +11 -1
  450. package/es/packages/select-person/src/SearchTree.mjs +2 -1
  451. package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.mjs +232 -1
  452. package/es/packages/select-person/src/SearchTree2.mjs +4 -1
  453. package/es/packages/select-person/src/SelectPerson.mjs +2 -1
  454. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +894 -1
  455. package/es/packages/select-person/src/SelectPerson2.mjs +4 -1
  456. package/es/packages/select-person/src/utils/index.d.ts +8 -8
  457. package/es/packages/select-person/src/utils/index.mjs +1 -1
  458. package/es/packages/select-person/src/utils/index2.mjs +57 -1
  459. package/es/packages/time-line/index.d.ts +28 -28
  460. package/es/packages/time-line/index.mjs +1 -1
  461. package/es/packages/time-line/index2.mjs +11 -1
  462. package/es/packages/time-line/src/TimeLine.mjs +2 -1
  463. package/es/packages/time-line/src/TimeLine.vue.d.ts +28 -28
  464. package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.mjs +62 -1
  465. package/es/packages/time-line/src/TimeLine2.mjs +4 -1
  466. package/es/src/components/SelectPage/SelectPage.mjs +2 -1
  467. package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.mjs +60 -1
  468. package/es/src/components/SelectPage/SelectPage2.mjs +4 -1
  469. package/es/src/components/SelectPage/index.mjs +2 -1
  470. package/es/src/components/SelectPage/index2.mjs +3 -1
  471. package/es/src/components/SvgIcon/SvgIcon.mjs +2 -1
  472. package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.mjs +33 -1
  473. package/es/src/components/SvgIcon/SvgIcon2.mjs +4 -1
  474. package/es/src/components/SvgIcon/index.mjs +2 -1
  475. package/es/src/components/SvgIcon/index2.mjs +3 -1
  476. package/es/src/components/TextOverTooltip/TextOverTooltip.mjs +2 -1
  477. package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +2 -3
  478. package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +73 -1
  479. package/es/src/components/TextOverTooltip/TextOverTooltip2.mjs +4 -1
  480. package/es/src/components/TextOverTooltip/index.mjs +2 -1
  481. package/es/src/components/TextOverTooltip/index2.mjs +3 -1
  482. package/es/src/components/player-vod/index.mjs +2 -1
  483. package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.mjs +11 -1
  484. package/es/src/components/player-vod/index2.mjs +4 -1
  485. package/es/src/components/player-vod/player.mjs +1 -1
  486. package/es/src/components/player-vod/player2.mjs +121 -1
  487. package/es/src/components/player-vod/video-list.mjs +1 -1
  488. package/es/src/components/player-vod/video-list2.mjs +125 -1
  489. package/es/src/components/player-vod/video-modal.mjs +1 -1
  490. package/es/src/components/player-vod/video-modal2.mjs +91 -1
  491. package/es/src/core/create.mjs +1 -1
  492. package/es/src/core/create2.mjs +8 -1
  493. package/es/src/global/variable.mjs +1 -1
  494. package/es/src/global/variable2.mjs +4 -1
  495. package/es/src/utils/anime.d.ts +35 -0
  496. package/es/src/utils/anime.mjs +1 -0
  497. package/es/src/utils/anime2.mjs +126 -0
  498. package/es/src/utils/clickoutside.mjs +1 -1
  499. package/es/src/utils/clickoutside2.mjs +48 -1
  500. package/es/src/utils/crypto.mjs +1 -1
  501. package/es/src/utils/crypto2.mjs +25 -1
  502. package/es/src/utils/index.d.ts +0 -2
  503. package/es/src/utils/index.mjs +1 -1
  504. package/es/src/utils/index2.mjs +19 -1
  505. package/es/src/utils/loadViewer.d.ts +2 -0
  506. package/es/src/utils/loadViewer.mjs +1 -0
  507. package/es/src/utils/loadViewer2.mjs +11 -0
  508. package/es/src/utils/loadVxe.d.ts +2 -0
  509. package/es/src/utils/loadVxe.mjs +1 -0
  510. package/es/src/utils/loadVxe2.mjs +12 -0
  511. package/es/src/utils/utilExpand.d.ts +1 -0
  512. package/es/src/utils/utilExpand.mjs +1 -0
  513. package/es/src/utils/utilExpand2.mjs +714 -0
  514. package/es/src/utils/vexutils.mjs +3 -1
  515. package/es/src/utils/vexutils2.mjs +80 -1
  516. package/md-plugin.ts +201 -0
  517. package/package.json +125 -122
  518. package/uno.config.ts +22 -0
  519. package/.prettierrc.js +0 -23
  520. package/es/packages/big-table/index.d.ts +0 -2044
  521. package/es/packages/big-table/src/BigTable.vue.d.ts +0 -2043
  522. package/es/packages/big-table/src/components/NoData.vue.d.ts +0 -51
  523. package/es/packages/bpmn-workflow/index.d.ts +0 -74
  524. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +0 -77
  525. package/es/packages/button-print/index.d.ts +0 -7373
  526. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +0 -7372
  527. package/es/packages/chunk-upload/index.d.ts +0 -1748
  528. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +0 -1905
  529. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +0 -1749
  530. package/es/packages/field-set/index.d.ts +0 -2647
  531. package/es/packages/field-set/src/FieldSet.vue.d.ts +0 -2599
  532. package/es/packages/form-table/index.d.ts +0 -35903
  533. package/es/packages/form-table/src/FormTable.vue.d.ts +0 -35912
  534. package/es/packages/form-table/src/components/index.d.ts +0 -35662
  535. package/es/packages/form-table/src/components/table-age.vue.d.ts +0 -4305
  536. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +0 -5286
  537. package/es/packages/form-table/src/components/table-digital.vue.d.ts +0 -2916
  538. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +0 -1622
  539. package/es/packages/form-table/src/components/table-input.vue.d.ts +0 -1579
  540. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +0 -5229
  541. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +0 -1785
  542. package/es/packages/form-table/src/components/table-search.vue.d.ts +0 -3111
  543. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +0 -1567
  544. package/es/packages/form-table/src/components/table-select.vue.d.ts +0 -1566
  545. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +0 -1638
  546. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +0 -2673
  547. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +0 -1883
  548. package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +0 -543
  549. package/es/packages/info-header/index.d.ts +0 -1827
  550. package/es/packages/info-header/src/hidden-content.mjs +0 -1
  551. package/es/packages/info-header/src/hidden-content.vue.d.ts +0 -363
  552. package/es/packages/info-header/src/hidden-content.vue_vue_type_script_setup_true_lang.mjs +0 -1
  553. package/es/packages/info-header/src/hidden-content2.mjs +0 -1
  554. package/es/packages/info-header/src/info-header.mjs +0 -1
  555. package/es/packages/info-header/src/info-header.vue.d.ts +0 -1828
  556. package/es/packages/info-header/src/info-header.vue_vue_type_script_setup_true_lang.mjs +0 -1
  557. package/es/packages/info-header/src/info-header2.mjs +0 -1
  558. package/es/packages/map/index.d.ts +0 -2313
  559. package/es/packages/popper/index.d.ts +0 -0
  560. package/es/packages/popper/src/components/popover.mjs +0 -1
  561. package/es/packages/popper/src/components/popover.vue.d.ts +0 -33
  562. package/es/packages/popper/src/components/popover.vue_vue_type_script_setup_true_lang.mjs +0 -1
  563. package/es/packages/popper/src/components/popover2.mjs +0 -1
  564. package/es/packages/popper/src/hooks/useAutoHidden.d.ts +0 -8
  565. package/es/packages/popper/src/hooks/useAutoHidden.mjs +0 -1
  566. package/es/packages/popper/src/hooks/useAutoHidden2.mjs +0 -1
  567. package/es/packages/popper/src/types/index.d.ts +0 -1
  568. package/es/packages/scale-view/index.d.ts +0 -4297
  569. package/es/packages/scale-view/src/ScaleView.vue.d.ts +0 -4141
  570. package/es/packages/scale-view/src/components/AnswerParse.vue.d.ts +0 -72
  571. package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +0 -150
  572. package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +0 -1503
  573. package/es/packages/scale-view/src/components/NoData.vue.d.ts +0 -51
  574. package/es/packages/scale-view/src/hooks/use-component.d.ts +0 -2673
  575. package/es/packages/select-label/index.d.ts +0 -12091
  576. package/es/packages/select-label/src/SelectLabel.vue.d.ts +0 -7526
  577. package/es/packages/select-person/index.d.ts +0 -3500
  578. package/es/packages/select-person/src/SearchTree.vue.d.ts +0 -344
  579. package/es/packages/select-person/src/SelectPerson.vue.d.ts +0 -3501
  580. package/es/src/components/SelectPage/SelectPage.vue.d.ts +0 -1446
@@ -1,1503 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- formArray: {
3
- type: ArrayConstructor;
4
- default: () => never[];
5
- };
6
- evaluateResultConfig: {
7
- type: ObjectConstructor;
8
- default: () => {};
9
- };
10
- evaluateResultSetting: {
11
- type: ObjectConstructor;
12
- default: () => {};
13
- };
14
- isFinished: {
15
- type: BooleanConstructor;
16
- default: boolean;
17
- };
18
- maxScore: {
19
- type: NumberConstructor;
20
- default: number;
21
- };
22
- }, {
23
- state: {
24
- source: string;
25
- timer: null;
26
- curTime: number;
27
- timeRange: string;
28
- banStart: boolean;
29
- };
30
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
31
- formArray: {
32
- type: ArrayConstructor;
33
- default: () => never[];
34
- };
35
- evaluateResultConfig: {
36
- type: ObjectConstructor;
37
- default: () => {};
38
- };
39
- evaluateResultSetting: {
40
- type: ObjectConstructor;
41
- default: () => {};
42
- };
43
- isFinished: {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- };
47
- maxScore: {
48
- type: NumberConstructor;
49
- default: number;
50
- };
51
- }>> & {
52
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
53
- onWriteGuage?: ((...args: any[]) => any) | undefined;
54
- }>>;
55
- emit: (event: "closeEvaluateCountdown" | "writeGuage", ...args: any[]) => void;
56
- evaluateState: {
57
- totalLen: number;
58
- timer: null;
59
- countdownStr: string;
60
- isTimeOut: boolean;
61
- countdownRed: boolean;
62
- filterArr: string[];
63
- };
64
- evaluateStartTime: any;
65
- getEvaluateTime: any;
66
- getEvaluateStartTime: import("vue").ComputedRef<false | Date>;
67
- getEvaluateText: import("vue").ComputedRef<"测评已结束" | "开始测评">;
68
- showCountdown: import("vue").ComputedRef<any>;
69
- showRange: import("vue").ComputedRef<boolean>;
70
- getTotalLen: () => void;
71
- countdown: (startTime: any) => void;
72
- clearTimer: () => void;
73
- disabledEvaluate: import("vue").ComputedRef<any>;
74
- isBanStart: () => boolean;
75
- init: () => void;
76
- handleEvaluateParams: () => void;
77
- writeGuage: () => void;
78
- NButton: import("vue").DefineComponent<{
79
- readonly color: StringConstructor;
80
- readonly textColor: StringConstructor;
81
- readonly text: BooleanConstructor;
82
- readonly block: BooleanConstructor;
83
- readonly loading: BooleanConstructor;
84
- readonly disabled: BooleanConstructor;
85
- readonly circle: BooleanConstructor;
86
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
87
- readonly ghost: BooleanConstructor;
88
- readonly round: BooleanConstructor;
89
- readonly secondary: BooleanConstructor;
90
- readonly tertiary: BooleanConstructor;
91
- readonly quaternary: BooleanConstructor;
92
- readonly strong: BooleanConstructor;
93
- readonly focusable: {
94
- readonly type: BooleanConstructor;
95
- readonly default: true;
96
- };
97
- readonly keyboard: {
98
- readonly type: BooleanConstructor;
99
- readonly default: true;
100
- };
101
- readonly tag: {
102
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
103
- readonly default: "button";
104
- };
105
- readonly type: {
106
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
107
- readonly default: "default";
108
- };
109
- readonly dashed: BooleanConstructor;
110
- readonly iconPlacement: {
111
- readonly type: import("vue").PropType<"left" | "right">;
112
- readonly default: "left";
113
- };
114
- readonly attrType: {
115
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
116
- readonly default: "button";
117
- };
118
- readonly bordered: {
119
- readonly type: BooleanConstructor;
120
- readonly default: true;
121
- };
122
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
123
- readonly nativeFocusBehavior: BooleanConstructor;
124
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
125
- heightTiny: string;
126
- heightSmall: string;
127
- heightMedium: string;
128
- heightLarge: string;
129
- borderRadiusTiny: string;
130
- borderRadiusSmall: string;
131
- borderRadiusMedium: string;
132
- borderRadiusLarge: string;
133
- fontSizeTiny: string;
134
- fontSizeSmall: string;
135
- fontSizeMedium: string;
136
- fontSizeLarge: string;
137
- opacityDisabled: string;
138
- colorOpacitySecondary: string;
139
- colorOpacitySecondaryHover: string;
140
- colorOpacitySecondaryPressed: string;
141
- colorSecondary: string;
142
- colorSecondaryHover: string;
143
- colorSecondaryPressed: string;
144
- colorTertiary: string;
145
- colorTertiaryHover: string;
146
- colorTertiaryPressed: string;
147
- colorQuaternary: string;
148
- colorQuaternaryHover: string;
149
- colorQuaternaryPressed: string;
150
- color: string;
151
- colorHover: string;
152
- colorPressed: string;
153
- colorFocus: string;
154
- colorDisabled: string;
155
- textColor: string;
156
- textColorTertiary: string;
157
- textColorHover: string;
158
- textColorPressed: string;
159
- textColorFocus: string;
160
- textColorDisabled: string;
161
- textColorText: string;
162
- textColorTextHover: string;
163
- textColorTextPressed: string;
164
- textColorTextFocus: string;
165
- textColorTextDisabled: string;
166
- textColorGhost: string;
167
- textColorGhostHover: string;
168
- textColorGhostPressed: string;
169
- textColorGhostFocus: string;
170
- textColorGhostDisabled: string;
171
- border: string;
172
- borderHover: string;
173
- borderPressed: string;
174
- borderFocus: string;
175
- borderDisabled: string;
176
- rippleColor: string;
177
- colorPrimary: string;
178
- colorHoverPrimary: string;
179
- colorPressedPrimary: string;
180
- colorFocusPrimary: string;
181
- colorDisabledPrimary: string;
182
- textColorPrimary: string;
183
- textColorHoverPrimary: string;
184
- textColorPressedPrimary: string;
185
- textColorFocusPrimary: string;
186
- textColorDisabledPrimary: string;
187
- textColorTextPrimary: string;
188
- textColorTextHoverPrimary: string;
189
- textColorTextPressedPrimary: string;
190
- textColorTextFocusPrimary: string;
191
- textColorTextDisabledPrimary: string;
192
- textColorGhostPrimary: string;
193
- textColorGhostHoverPrimary: string;
194
- textColorGhostPressedPrimary: string;
195
- textColorGhostFocusPrimary: string;
196
- textColorGhostDisabledPrimary: string;
197
- borderPrimary: string;
198
- borderHoverPrimary: string;
199
- borderPressedPrimary: string;
200
- borderFocusPrimary: string;
201
- borderDisabledPrimary: string;
202
- rippleColorPrimary: string;
203
- colorInfo: string;
204
- colorHoverInfo: string;
205
- colorPressedInfo: string;
206
- colorFocusInfo: string;
207
- colorDisabledInfo: string;
208
- textColorInfo: string;
209
- textColorHoverInfo: string;
210
- textColorPressedInfo: string;
211
- textColorFocusInfo: string;
212
- textColorDisabledInfo: string;
213
- textColorTextInfo: string;
214
- textColorTextHoverInfo: string;
215
- textColorTextPressedInfo: string;
216
- textColorTextFocusInfo: string;
217
- textColorTextDisabledInfo: string;
218
- textColorGhostInfo: string;
219
- textColorGhostHoverInfo: string;
220
- textColorGhostPressedInfo: string;
221
- textColorGhostFocusInfo: string;
222
- textColorGhostDisabledInfo: string;
223
- borderInfo: string;
224
- borderHoverInfo: string;
225
- borderPressedInfo: string;
226
- borderFocusInfo: string;
227
- borderDisabledInfo: string;
228
- rippleColorInfo: string;
229
- colorSuccess: string;
230
- colorHoverSuccess: string;
231
- colorPressedSuccess: string;
232
- colorFocusSuccess: string;
233
- colorDisabledSuccess: string;
234
- textColorSuccess: string;
235
- textColorHoverSuccess: string;
236
- textColorPressedSuccess: string;
237
- textColorFocusSuccess: string;
238
- textColorDisabledSuccess: string;
239
- textColorTextSuccess: string;
240
- textColorTextHoverSuccess: string;
241
- textColorTextPressedSuccess: string;
242
- textColorTextFocusSuccess: string;
243
- textColorTextDisabledSuccess: string;
244
- textColorGhostSuccess: string;
245
- textColorGhostHoverSuccess: string;
246
- textColorGhostPressedSuccess: string;
247
- textColorGhostFocusSuccess: string;
248
- textColorGhostDisabledSuccess: string;
249
- borderSuccess: string;
250
- borderHoverSuccess: string;
251
- borderPressedSuccess: string;
252
- borderFocusSuccess: string;
253
- borderDisabledSuccess: string;
254
- rippleColorSuccess: string;
255
- colorWarning: string;
256
- colorHoverWarning: string;
257
- colorPressedWarning: string;
258
- colorFocusWarning: string;
259
- colorDisabledWarning: string;
260
- textColorWarning: string;
261
- textColorHoverWarning: string;
262
- textColorPressedWarning: string;
263
- textColorFocusWarning: string;
264
- textColorDisabledWarning: string;
265
- textColorTextWarning: string;
266
- textColorTextHoverWarning: string;
267
- textColorTextPressedWarning: string;
268
- textColorTextFocusWarning: string;
269
- textColorTextDisabledWarning: string;
270
- textColorGhostWarning: string;
271
- textColorGhostHoverWarning: string;
272
- textColorGhostPressedWarning: string;
273
- textColorGhostFocusWarning: string;
274
- textColorGhostDisabledWarning: string;
275
- borderWarning: string;
276
- borderHoverWarning: string;
277
- borderPressedWarning: string;
278
- borderFocusWarning: string;
279
- borderDisabledWarning: string;
280
- rippleColorWarning: string;
281
- colorError: string;
282
- colorHoverError: string;
283
- colorPressedError: string;
284
- colorFocusError: string;
285
- colorDisabledError: string;
286
- textColorError: string;
287
- textColorHoverError: string;
288
- textColorPressedError: string;
289
- textColorFocusError: string;
290
- textColorDisabledError: string;
291
- textColorTextError: string;
292
- textColorTextHoverError: string;
293
- textColorTextPressedError: string;
294
- textColorTextFocusError: string;
295
- textColorTextDisabledError: string;
296
- textColorGhostError: string;
297
- textColorGhostHoverError: string;
298
- textColorGhostPressedError: string;
299
- textColorGhostFocusError: string;
300
- textColorGhostDisabledError: string;
301
- borderError: string;
302
- borderHoverError: string;
303
- borderPressedError: string;
304
- borderFocusError: string;
305
- borderDisabledError: string;
306
- rippleColorError: string;
307
- waveOpacity: string;
308
- fontWeight: string;
309
- fontWeightStrong: string;
310
- paddingTiny: string;
311
- paddingSmall: string;
312
- paddingMedium: string;
313
- paddingLarge: string;
314
- paddingRoundTiny: string;
315
- paddingRoundSmall: string;
316
- paddingRoundMedium: string;
317
- paddingRoundLarge: string;
318
- iconMarginTiny: string;
319
- iconMarginSmall: string;
320
- iconMarginMedium: string;
321
- iconMarginLarge: string;
322
- iconSizeTiny: string;
323
- iconSizeSmall: string;
324
- iconSizeMedium: string;
325
- iconSizeLarge: string;
326
- rippleDuration: string;
327
- }, any>>;
328
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
329
- heightTiny: string;
330
- heightSmall: string;
331
- heightMedium: string;
332
- heightLarge: string;
333
- borderRadiusTiny: string;
334
- borderRadiusSmall: string;
335
- borderRadiusMedium: string;
336
- borderRadiusLarge: string;
337
- fontSizeTiny: string;
338
- fontSizeSmall: string;
339
- fontSizeMedium: string;
340
- fontSizeLarge: string;
341
- opacityDisabled: string;
342
- colorOpacitySecondary: string;
343
- colorOpacitySecondaryHover: string;
344
- colorOpacitySecondaryPressed: string;
345
- colorSecondary: string;
346
- colorSecondaryHover: string;
347
- colorSecondaryPressed: string;
348
- colorTertiary: string;
349
- colorTertiaryHover: string;
350
- colorTertiaryPressed: string;
351
- colorQuaternary: string;
352
- colorQuaternaryHover: string;
353
- colorQuaternaryPressed: string;
354
- color: string;
355
- colorHover: string;
356
- colorPressed: string;
357
- colorFocus: string;
358
- colorDisabled: string;
359
- textColor: string;
360
- textColorTertiary: string;
361
- textColorHover: string;
362
- textColorPressed: string;
363
- textColorFocus: string;
364
- textColorDisabled: string;
365
- textColorText: string;
366
- textColorTextHover: string;
367
- textColorTextPressed: string;
368
- textColorTextFocus: string;
369
- textColorTextDisabled: string;
370
- textColorGhost: string;
371
- textColorGhostHover: string;
372
- textColorGhostPressed: string;
373
- textColorGhostFocus: string;
374
- textColorGhostDisabled: string;
375
- border: string;
376
- borderHover: string;
377
- borderPressed: string;
378
- borderFocus: string;
379
- borderDisabled: string;
380
- rippleColor: string;
381
- colorPrimary: string;
382
- colorHoverPrimary: string;
383
- colorPressedPrimary: string;
384
- colorFocusPrimary: string;
385
- colorDisabledPrimary: string;
386
- textColorPrimary: string;
387
- textColorHoverPrimary: string;
388
- textColorPressedPrimary: string;
389
- textColorFocusPrimary: string;
390
- textColorDisabledPrimary: string;
391
- textColorTextPrimary: string;
392
- textColorTextHoverPrimary: string;
393
- textColorTextPressedPrimary: string;
394
- textColorTextFocusPrimary: string;
395
- textColorTextDisabledPrimary: string;
396
- textColorGhostPrimary: string;
397
- textColorGhostHoverPrimary: string;
398
- textColorGhostPressedPrimary: string;
399
- textColorGhostFocusPrimary: string;
400
- textColorGhostDisabledPrimary: string;
401
- borderPrimary: string;
402
- borderHoverPrimary: string;
403
- borderPressedPrimary: string;
404
- borderFocusPrimary: string;
405
- borderDisabledPrimary: string;
406
- rippleColorPrimary: string;
407
- colorInfo: string;
408
- colorHoverInfo: string;
409
- colorPressedInfo: string;
410
- colorFocusInfo: string;
411
- colorDisabledInfo: string;
412
- textColorInfo: string;
413
- textColorHoverInfo: string;
414
- textColorPressedInfo: string;
415
- textColorFocusInfo: string;
416
- textColorDisabledInfo: string;
417
- textColorTextInfo: string;
418
- textColorTextHoverInfo: string;
419
- textColorTextPressedInfo: string;
420
- textColorTextFocusInfo: string;
421
- textColorTextDisabledInfo: string;
422
- textColorGhostInfo: string;
423
- textColorGhostHoverInfo: string;
424
- textColorGhostPressedInfo: string;
425
- textColorGhostFocusInfo: string;
426
- textColorGhostDisabledInfo: string;
427
- borderInfo: string;
428
- borderHoverInfo: string;
429
- borderPressedInfo: string;
430
- borderFocusInfo: string;
431
- borderDisabledInfo: string;
432
- rippleColorInfo: string;
433
- colorSuccess: string;
434
- colorHoverSuccess: string;
435
- colorPressedSuccess: string;
436
- colorFocusSuccess: string;
437
- colorDisabledSuccess: string;
438
- textColorSuccess: string;
439
- textColorHoverSuccess: string;
440
- textColorPressedSuccess: string;
441
- textColorFocusSuccess: string;
442
- textColorDisabledSuccess: string;
443
- textColorTextSuccess: string;
444
- textColorTextHoverSuccess: string;
445
- textColorTextPressedSuccess: string;
446
- textColorTextFocusSuccess: string;
447
- textColorTextDisabledSuccess: string;
448
- textColorGhostSuccess: string;
449
- textColorGhostHoverSuccess: string;
450
- textColorGhostPressedSuccess: string;
451
- textColorGhostFocusSuccess: string;
452
- textColorGhostDisabledSuccess: string;
453
- borderSuccess: string;
454
- borderHoverSuccess: string;
455
- borderPressedSuccess: string;
456
- borderFocusSuccess: string;
457
- borderDisabledSuccess: string;
458
- rippleColorSuccess: string;
459
- colorWarning: string;
460
- colorHoverWarning: string;
461
- colorPressedWarning: string;
462
- colorFocusWarning: string;
463
- colorDisabledWarning: string;
464
- textColorWarning: string;
465
- textColorHoverWarning: string;
466
- textColorPressedWarning: string;
467
- textColorFocusWarning: string;
468
- textColorDisabledWarning: string;
469
- textColorTextWarning: string;
470
- textColorTextHoverWarning: string;
471
- textColorTextPressedWarning: string;
472
- textColorTextFocusWarning: string;
473
- textColorTextDisabledWarning: string;
474
- textColorGhostWarning: string;
475
- textColorGhostHoverWarning: string;
476
- textColorGhostPressedWarning: string;
477
- textColorGhostFocusWarning: string;
478
- textColorGhostDisabledWarning: string;
479
- borderWarning: string;
480
- borderHoverWarning: string;
481
- borderPressedWarning: string;
482
- borderFocusWarning: string;
483
- borderDisabledWarning: string;
484
- rippleColorWarning: string;
485
- colorError: string;
486
- colorHoverError: string;
487
- colorPressedError: string;
488
- colorFocusError: string;
489
- colorDisabledError: string;
490
- textColorError: string;
491
- textColorHoverError: string;
492
- textColorPressedError: string;
493
- textColorFocusError: string;
494
- textColorDisabledError: string;
495
- textColorTextError: string;
496
- textColorTextHoverError: string;
497
- textColorTextPressedError: string;
498
- textColorTextFocusError: string;
499
- textColorTextDisabledError: string;
500
- textColorGhostError: string;
501
- textColorGhostHoverError: string;
502
- textColorGhostPressedError: string;
503
- textColorGhostFocusError: string;
504
- textColorGhostDisabledError: string;
505
- borderError: string;
506
- borderHoverError: string;
507
- borderPressedError: string;
508
- borderFocusError: string;
509
- borderDisabledError: string;
510
- rippleColorError: string;
511
- waveOpacity: string;
512
- fontWeight: string;
513
- fontWeightStrong: string;
514
- paddingTiny: string;
515
- paddingSmall: string;
516
- paddingMedium: string;
517
- paddingLarge: string;
518
- paddingRoundTiny: string;
519
- paddingRoundSmall: string;
520
- paddingRoundMedium: string;
521
- paddingRoundLarge: string;
522
- iconMarginTiny: string;
523
- iconMarginSmall: string;
524
- iconMarginMedium: string;
525
- iconMarginLarge: string;
526
- iconSizeTiny: string;
527
- iconSizeSmall: string;
528
- iconSizeMedium: string;
529
- iconSizeLarge: string;
530
- rippleDuration: string;
531
- }, any>>>;
532
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
533
- heightTiny: string;
534
- heightSmall: string;
535
- heightMedium: string;
536
- heightLarge: string;
537
- borderRadiusTiny: string;
538
- borderRadiusSmall: string;
539
- borderRadiusMedium: string;
540
- borderRadiusLarge: string;
541
- fontSizeTiny: string;
542
- fontSizeSmall: string;
543
- fontSizeMedium: string;
544
- fontSizeLarge: string;
545
- opacityDisabled: string;
546
- colorOpacitySecondary: string;
547
- colorOpacitySecondaryHover: string;
548
- colorOpacitySecondaryPressed: string;
549
- colorSecondary: string;
550
- colorSecondaryHover: string;
551
- colorSecondaryPressed: string;
552
- colorTertiary: string;
553
- colorTertiaryHover: string;
554
- colorTertiaryPressed: string;
555
- colorQuaternary: string;
556
- colorQuaternaryHover: string;
557
- colorQuaternaryPressed: string;
558
- color: string;
559
- colorHover: string;
560
- colorPressed: string;
561
- colorFocus: string;
562
- colorDisabled: string;
563
- textColor: string;
564
- textColorTertiary: string;
565
- textColorHover: string;
566
- textColorPressed: string;
567
- textColorFocus: string;
568
- textColorDisabled: string;
569
- textColorText: string;
570
- textColorTextHover: string;
571
- textColorTextPressed: string;
572
- textColorTextFocus: string;
573
- textColorTextDisabled: string;
574
- textColorGhost: string;
575
- textColorGhostHover: string;
576
- textColorGhostPressed: string;
577
- textColorGhostFocus: string;
578
- textColorGhostDisabled: string;
579
- border: string;
580
- borderHover: string;
581
- borderPressed: string;
582
- borderFocus: string;
583
- borderDisabled: string;
584
- rippleColor: string;
585
- colorPrimary: string;
586
- colorHoverPrimary: string;
587
- colorPressedPrimary: string;
588
- colorFocusPrimary: string;
589
- colorDisabledPrimary: string;
590
- textColorPrimary: string;
591
- textColorHoverPrimary: string;
592
- textColorPressedPrimary: string;
593
- textColorFocusPrimary: string;
594
- textColorDisabledPrimary: string;
595
- textColorTextPrimary: string;
596
- textColorTextHoverPrimary: string;
597
- textColorTextPressedPrimary: string;
598
- textColorTextFocusPrimary: string;
599
- textColorTextDisabledPrimary: string;
600
- textColorGhostPrimary: string;
601
- textColorGhostHoverPrimary: string;
602
- textColorGhostPressedPrimary: string;
603
- textColorGhostFocusPrimary: string;
604
- textColorGhostDisabledPrimary: string;
605
- borderPrimary: string;
606
- borderHoverPrimary: string;
607
- borderPressedPrimary: string;
608
- borderFocusPrimary: string;
609
- borderDisabledPrimary: string;
610
- rippleColorPrimary: string;
611
- colorInfo: string;
612
- colorHoverInfo: string;
613
- colorPressedInfo: string;
614
- colorFocusInfo: string;
615
- colorDisabledInfo: string;
616
- textColorInfo: string;
617
- textColorHoverInfo: string;
618
- textColorPressedInfo: string;
619
- textColorFocusInfo: string;
620
- textColorDisabledInfo: string;
621
- textColorTextInfo: string;
622
- textColorTextHoverInfo: string;
623
- textColorTextPressedInfo: string;
624
- textColorTextFocusInfo: string;
625
- textColorTextDisabledInfo: string;
626
- textColorGhostInfo: string;
627
- textColorGhostHoverInfo: string;
628
- textColorGhostPressedInfo: string;
629
- textColorGhostFocusInfo: string;
630
- textColorGhostDisabledInfo: string;
631
- borderInfo: string;
632
- borderHoverInfo: string;
633
- borderPressedInfo: string;
634
- borderFocusInfo: string;
635
- borderDisabledInfo: string;
636
- rippleColorInfo: string;
637
- colorSuccess: string;
638
- colorHoverSuccess: string;
639
- colorPressedSuccess: string;
640
- colorFocusSuccess: string;
641
- colorDisabledSuccess: string;
642
- textColorSuccess: string;
643
- textColorHoverSuccess: string;
644
- textColorPressedSuccess: string;
645
- textColorFocusSuccess: string;
646
- textColorDisabledSuccess: string;
647
- textColorTextSuccess: string;
648
- textColorTextHoverSuccess: string;
649
- textColorTextPressedSuccess: string;
650
- textColorTextFocusSuccess: string;
651
- textColorTextDisabledSuccess: string;
652
- textColorGhostSuccess: string;
653
- textColorGhostHoverSuccess: string;
654
- textColorGhostPressedSuccess: string;
655
- textColorGhostFocusSuccess: string;
656
- textColorGhostDisabledSuccess: string;
657
- borderSuccess: string;
658
- borderHoverSuccess: string;
659
- borderPressedSuccess: string;
660
- borderFocusSuccess: string;
661
- borderDisabledSuccess: string;
662
- rippleColorSuccess: string;
663
- colorWarning: string;
664
- colorHoverWarning: string;
665
- colorPressedWarning: string;
666
- colorFocusWarning: string;
667
- colorDisabledWarning: string;
668
- textColorWarning: string;
669
- textColorHoverWarning: string;
670
- textColorPressedWarning: string;
671
- textColorFocusWarning: string;
672
- textColorDisabledWarning: string;
673
- textColorTextWarning: string;
674
- textColorTextHoverWarning: string;
675
- textColorTextPressedWarning: string;
676
- textColorTextFocusWarning: string;
677
- textColorTextDisabledWarning: string;
678
- textColorGhostWarning: string;
679
- textColorGhostHoverWarning: string;
680
- textColorGhostPressedWarning: string;
681
- textColorGhostFocusWarning: string;
682
- textColorGhostDisabledWarning: string;
683
- borderWarning: string;
684
- borderHoverWarning: string;
685
- borderPressedWarning: string;
686
- borderFocusWarning: string;
687
- borderDisabledWarning: string;
688
- rippleColorWarning: string;
689
- colorError: string;
690
- colorHoverError: string;
691
- colorPressedError: string;
692
- colorFocusError: string;
693
- colorDisabledError: string;
694
- textColorError: string;
695
- textColorHoverError: string;
696
- textColorPressedError: string;
697
- textColorFocusError: string;
698
- textColorDisabledError: string;
699
- textColorTextError: string;
700
- textColorTextHoverError: string;
701
- textColorTextPressedError: string;
702
- textColorTextFocusError: string;
703
- textColorTextDisabledError: string;
704
- textColorGhostError: string;
705
- textColorGhostHoverError: string;
706
- textColorGhostPressedError: string;
707
- textColorGhostFocusError: string;
708
- textColorGhostDisabledError: string;
709
- borderError: string;
710
- borderHoverError: string;
711
- borderPressedError: string;
712
- borderFocusError: string;
713
- borderDisabledError: string;
714
- rippleColorError: string;
715
- waveOpacity: string;
716
- fontWeight: string;
717
- fontWeightStrong: string;
718
- paddingTiny: string;
719
- paddingSmall: string;
720
- paddingMedium: string;
721
- paddingLarge: string;
722
- paddingRoundTiny: string;
723
- paddingRoundSmall: string;
724
- paddingRoundMedium: string;
725
- paddingRoundLarge: string;
726
- iconMarginTiny: string;
727
- iconMarginSmall: string;
728
- iconMarginMedium: string;
729
- iconMarginLarge: string;
730
- iconSizeTiny: string;
731
- iconSizeSmall: string;
732
- iconSizeMedium: string;
733
- iconSizeLarge: string;
734
- rippleDuration: string;
735
- }, any>>>;
736
- }, {
737
- selfElRef: import("vue").Ref<HTMLElement | null>;
738
- waveElRef: import("vue").Ref<{
739
- play: () => void;
740
- } | null>;
741
- mergedClsPrefix: import("vue").ComputedRef<string>;
742
- mergedFocusable: import("vue").ComputedRef<boolean>;
743
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large" | "tiny">;
744
- showBorder: import("vue").ComputedRef<boolean>;
745
- enterPressed: import("vue").Ref<boolean>;
746
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
747
- handleMousedown: (e: MouseEvent) => void;
748
- handleKeydown: (e: KeyboardEvent) => void;
749
- handleBlur: () => void;
750
- handleKeyup: (e: KeyboardEvent) => void;
751
- handleClick: (e: MouseEvent) => void;
752
- customColorCssVars: import("vue").ComputedRef<{
753
- '--n-border-color': string;
754
- '--n-border-color-hover': string;
755
- '--n-border-color-pressed': string;
756
- '--n-border-color-focus': string;
757
- '--n-border-color-disabled': string;
758
- } | null>;
759
- cssVars: import("vue").ComputedRef<{
760
- '--n-width': string;
761
- '--n-height': string;
762
- '--n-font-size': string;
763
- '--n-padding': string;
764
- '--n-icon-size': string;
765
- '--n-icon-margin': string;
766
- '--n-border-radius': string;
767
- '--n-border': string;
768
- '--n-border-hover': string;
769
- '--n-border-pressed': string;
770
- '--n-border-focus': string;
771
- '--n-border-disabled': string;
772
- '--n-color': string;
773
- '--n-color-hover': string;
774
- '--n-color-pressed': string;
775
- '--n-color-focus': string;
776
- '--n-color-disabled': string;
777
- '--n-ripple-color': string;
778
- '--n-text-color': string;
779
- '--n-text-color-hover': string;
780
- '--n-text-color-pressed': string;
781
- '--n-text-color-focus': string;
782
- '--n-text-color-disabled': string;
783
- 'font-weight': string;
784
- '--n-bezier': string;
785
- '--n-bezier-ease-out': string;
786
- '--n-ripple-duration': string;
787
- '--n-opacity-disabled': string;
788
- '--n-wave-opacity': string;
789
- }> | undefined;
790
- themeClass: import("vue").Ref<string> | undefined;
791
- onRender: (() => void) | undefined;
792
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
793
- readonly color: StringConstructor;
794
- readonly textColor: StringConstructor;
795
- readonly text: BooleanConstructor;
796
- readonly block: BooleanConstructor;
797
- readonly loading: BooleanConstructor;
798
- readonly disabled: BooleanConstructor;
799
- readonly circle: BooleanConstructor;
800
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
801
- readonly ghost: BooleanConstructor;
802
- readonly round: BooleanConstructor;
803
- readonly secondary: BooleanConstructor;
804
- readonly tertiary: BooleanConstructor;
805
- readonly quaternary: BooleanConstructor;
806
- readonly strong: BooleanConstructor;
807
- readonly focusable: {
808
- readonly type: BooleanConstructor;
809
- readonly default: true;
810
- };
811
- readonly keyboard: {
812
- readonly type: BooleanConstructor;
813
- readonly default: true;
814
- };
815
- readonly tag: {
816
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
817
- readonly default: "button";
818
- };
819
- readonly type: {
820
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
821
- readonly default: "default";
822
- };
823
- readonly dashed: BooleanConstructor;
824
- readonly iconPlacement: {
825
- readonly type: import("vue").PropType<"left" | "right">;
826
- readonly default: "left";
827
- };
828
- readonly attrType: {
829
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
830
- readonly default: "button";
831
- };
832
- readonly bordered: {
833
- readonly type: BooleanConstructor;
834
- readonly default: true;
835
- };
836
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
837
- readonly nativeFocusBehavior: BooleanConstructor;
838
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
839
- heightTiny: string;
840
- heightSmall: string;
841
- heightMedium: string;
842
- heightLarge: string;
843
- borderRadiusTiny: string;
844
- borderRadiusSmall: string;
845
- borderRadiusMedium: string;
846
- borderRadiusLarge: string;
847
- fontSizeTiny: string;
848
- fontSizeSmall: string;
849
- fontSizeMedium: string;
850
- fontSizeLarge: string;
851
- opacityDisabled: string;
852
- colorOpacitySecondary: string;
853
- colorOpacitySecondaryHover: string;
854
- colorOpacitySecondaryPressed: string;
855
- colorSecondary: string;
856
- colorSecondaryHover: string;
857
- colorSecondaryPressed: string;
858
- colorTertiary: string;
859
- colorTertiaryHover: string;
860
- colorTertiaryPressed: string;
861
- colorQuaternary: string;
862
- colorQuaternaryHover: string;
863
- colorQuaternaryPressed: string;
864
- color: string;
865
- colorHover: string;
866
- colorPressed: string;
867
- colorFocus: string;
868
- colorDisabled: string;
869
- textColor: string;
870
- textColorTertiary: string;
871
- textColorHover: string;
872
- textColorPressed: string;
873
- textColorFocus: string;
874
- textColorDisabled: string;
875
- textColorText: string;
876
- textColorTextHover: string;
877
- textColorTextPressed: string;
878
- textColorTextFocus: string;
879
- textColorTextDisabled: string;
880
- textColorGhost: string;
881
- textColorGhostHover: string;
882
- textColorGhostPressed: string;
883
- textColorGhostFocus: string;
884
- textColorGhostDisabled: string;
885
- border: string;
886
- borderHover: string;
887
- borderPressed: string;
888
- borderFocus: string;
889
- borderDisabled: string;
890
- rippleColor: string;
891
- colorPrimary: string;
892
- colorHoverPrimary: string;
893
- colorPressedPrimary: string;
894
- colorFocusPrimary: string;
895
- colorDisabledPrimary: string;
896
- textColorPrimary: string;
897
- textColorHoverPrimary: string;
898
- textColorPressedPrimary: string;
899
- textColorFocusPrimary: string;
900
- textColorDisabledPrimary: string;
901
- textColorTextPrimary: string;
902
- textColorTextHoverPrimary: string;
903
- textColorTextPressedPrimary: string;
904
- textColorTextFocusPrimary: string;
905
- textColorTextDisabledPrimary: string;
906
- textColorGhostPrimary: string;
907
- textColorGhostHoverPrimary: string;
908
- textColorGhostPressedPrimary: string;
909
- textColorGhostFocusPrimary: string;
910
- textColorGhostDisabledPrimary: string;
911
- borderPrimary: string;
912
- borderHoverPrimary: string;
913
- borderPressedPrimary: string;
914
- borderFocusPrimary: string;
915
- borderDisabledPrimary: string;
916
- rippleColorPrimary: string;
917
- colorInfo: string;
918
- colorHoverInfo: string;
919
- colorPressedInfo: string;
920
- colorFocusInfo: string;
921
- colorDisabledInfo: string;
922
- textColorInfo: string;
923
- textColorHoverInfo: string;
924
- textColorPressedInfo: string;
925
- textColorFocusInfo: string;
926
- textColorDisabledInfo: string;
927
- textColorTextInfo: string;
928
- textColorTextHoverInfo: string;
929
- textColorTextPressedInfo: string;
930
- textColorTextFocusInfo: string;
931
- textColorTextDisabledInfo: string;
932
- textColorGhostInfo: string;
933
- textColorGhostHoverInfo: string;
934
- textColorGhostPressedInfo: string;
935
- textColorGhostFocusInfo: string;
936
- textColorGhostDisabledInfo: string;
937
- borderInfo: string;
938
- borderHoverInfo: string;
939
- borderPressedInfo: string;
940
- borderFocusInfo: string;
941
- borderDisabledInfo: string;
942
- rippleColorInfo: string;
943
- colorSuccess: string;
944
- colorHoverSuccess: string;
945
- colorPressedSuccess: string;
946
- colorFocusSuccess: string;
947
- colorDisabledSuccess: string;
948
- textColorSuccess: string;
949
- textColorHoverSuccess: string;
950
- textColorPressedSuccess: string;
951
- textColorFocusSuccess: string;
952
- textColorDisabledSuccess: string;
953
- textColorTextSuccess: string;
954
- textColorTextHoverSuccess: string;
955
- textColorTextPressedSuccess: string;
956
- textColorTextFocusSuccess: string;
957
- textColorTextDisabledSuccess: string;
958
- textColorGhostSuccess: string;
959
- textColorGhostHoverSuccess: string;
960
- textColorGhostPressedSuccess: string;
961
- textColorGhostFocusSuccess: string;
962
- textColorGhostDisabledSuccess: string;
963
- borderSuccess: string;
964
- borderHoverSuccess: string;
965
- borderPressedSuccess: string;
966
- borderFocusSuccess: string;
967
- borderDisabledSuccess: string;
968
- rippleColorSuccess: string;
969
- colorWarning: string;
970
- colorHoverWarning: string;
971
- colorPressedWarning: string;
972
- colorFocusWarning: string;
973
- colorDisabledWarning: string;
974
- textColorWarning: string;
975
- textColorHoverWarning: string;
976
- textColorPressedWarning: string;
977
- textColorFocusWarning: string;
978
- textColorDisabledWarning: string;
979
- textColorTextWarning: string;
980
- textColorTextHoverWarning: string;
981
- textColorTextPressedWarning: string;
982
- textColorTextFocusWarning: string;
983
- textColorTextDisabledWarning: string;
984
- textColorGhostWarning: string;
985
- textColorGhostHoverWarning: string;
986
- textColorGhostPressedWarning: string;
987
- textColorGhostFocusWarning: string;
988
- textColorGhostDisabledWarning: string;
989
- borderWarning: string;
990
- borderHoverWarning: string;
991
- borderPressedWarning: string;
992
- borderFocusWarning: string;
993
- borderDisabledWarning: string;
994
- rippleColorWarning: string;
995
- colorError: string;
996
- colorHoverError: string;
997
- colorPressedError: string;
998
- colorFocusError: string;
999
- colorDisabledError: string;
1000
- textColorError: string;
1001
- textColorHoverError: string;
1002
- textColorPressedError: string;
1003
- textColorFocusError: string;
1004
- textColorDisabledError: string;
1005
- textColorTextError: string;
1006
- textColorTextHoverError: string;
1007
- textColorTextPressedError: string;
1008
- textColorTextFocusError: string;
1009
- textColorTextDisabledError: string;
1010
- textColorGhostError: string;
1011
- textColorGhostHoverError: string;
1012
- textColorGhostPressedError: string;
1013
- textColorGhostFocusError: string;
1014
- textColorGhostDisabledError: string;
1015
- borderError: string;
1016
- borderHoverError: string;
1017
- borderPressedError: string;
1018
- borderFocusError: string;
1019
- borderDisabledError: string;
1020
- rippleColorError: string;
1021
- waveOpacity: string;
1022
- fontWeight: string;
1023
- fontWeightStrong: string;
1024
- paddingTiny: string;
1025
- paddingSmall: string;
1026
- paddingMedium: string;
1027
- paddingLarge: string;
1028
- paddingRoundTiny: string;
1029
- paddingRoundSmall: string;
1030
- paddingRoundMedium: string;
1031
- paddingRoundLarge: string;
1032
- iconMarginTiny: string;
1033
- iconMarginSmall: string;
1034
- iconMarginMedium: string;
1035
- iconMarginLarge: string;
1036
- iconSizeTiny: string;
1037
- iconSizeSmall: string;
1038
- iconSizeMedium: string;
1039
- iconSizeLarge: string;
1040
- rippleDuration: string;
1041
- }, any>>;
1042
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1043
- heightTiny: string;
1044
- heightSmall: string;
1045
- heightMedium: string;
1046
- heightLarge: string;
1047
- borderRadiusTiny: string;
1048
- borderRadiusSmall: string;
1049
- borderRadiusMedium: string;
1050
- borderRadiusLarge: string;
1051
- fontSizeTiny: string;
1052
- fontSizeSmall: string;
1053
- fontSizeMedium: string;
1054
- fontSizeLarge: string;
1055
- opacityDisabled: string;
1056
- colorOpacitySecondary: string;
1057
- colorOpacitySecondaryHover: string;
1058
- colorOpacitySecondaryPressed: string;
1059
- colorSecondary: string;
1060
- colorSecondaryHover: string;
1061
- colorSecondaryPressed: string;
1062
- colorTertiary: string;
1063
- colorTertiaryHover: string;
1064
- colorTertiaryPressed: string;
1065
- colorQuaternary: string;
1066
- colorQuaternaryHover: string;
1067
- colorQuaternaryPressed: string;
1068
- color: string;
1069
- colorHover: string;
1070
- colorPressed: string;
1071
- colorFocus: string;
1072
- colorDisabled: string;
1073
- textColor: string;
1074
- textColorTertiary: string;
1075
- textColorHover: string;
1076
- textColorPressed: string;
1077
- textColorFocus: string;
1078
- textColorDisabled: string;
1079
- textColorText: string;
1080
- textColorTextHover: string;
1081
- textColorTextPressed: string;
1082
- textColorTextFocus: string;
1083
- textColorTextDisabled: string;
1084
- textColorGhost: string;
1085
- textColorGhostHover: string;
1086
- textColorGhostPressed: string;
1087
- textColorGhostFocus: string;
1088
- textColorGhostDisabled: string;
1089
- border: string;
1090
- borderHover: string;
1091
- borderPressed: string;
1092
- borderFocus: string;
1093
- borderDisabled: string;
1094
- rippleColor: string;
1095
- colorPrimary: string;
1096
- colorHoverPrimary: string;
1097
- colorPressedPrimary: string;
1098
- colorFocusPrimary: string;
1099
- colorDisabledPrimary: string;
1100
- textColorPrimary: string;
1101
- textColorHoverPrimary: string;
1102
- textColorPressedPrimary: string;
1103
- textColorFocusPrimary: string;
1104
- textColorDisabledPrimary: string;
1105
- textColorTextPrimary: string;
1106
- textColorTextHoverPrimary: string;
1107
- textColorTextPressedPrimary: string;
1108
- textColorTextFocusPrimary: string;
1109
- textColorTextDisabledPrimary: string;
1110
- textColorGhostPrimary: string;
1111
- textColorGhostHoverPrimary: string;
1112
- textColorGhostPressedPrimary: string;
1113
- textColorGhostFocusPrimary: string;
1114
- textColorGhostDisabledPrimary: string;
1115
- borderPrimary: string;
1116
- borderHoverPrimary: string;
1117
- borderPressedPrimary: string;
1118
- borderFocusPrimary: string;
1119
- borderDisabledPrimary: string;
1120
- rippleColorPrimary: string;
1121
- colorInfo: string;
1122
- colorHoverInfo: string;
1123
- colorPressedInfo: string;
1124
- colorFocusInfo: string;
1125
- colorDisabledInfo: string;
1126
- textColorInfo: string;
1127
- textColorHoverInfo: string;
1128
- textColorPressedInfo: string;
1129
- textColorFocusInfo: string;
1130
- textColorDisabledInfo: string;
1131
- textColorTextInfo: string;
1132
- textColorTextHoverInfo: string;
1133
- textColorTextPressedInfo: string;
1134
- textColorTextFocusInfo: string;
1135
- textColorTextDisabledInfo: string;
1136
- textColorGhostInfo: string;
1137
- textColorGhostHoverInfo: string;
1138
- textColorGhostPressedInfo: string;
1139
- textColorGhostFocusInfo: string;
1140
- textColorGhostDisabledInfo: string;
1141
- borderInfo: string;
1142
- borderHoverInfo: string;
1143
- borderPressedInfo: string;
1144
- borderFocusInfo: string;
1145
- borderDisabledInfo: string;
1146
- rippleColorInfo: string;
1147
- colorSuccess: string;
1148
- colorHoverSuccess: string;
1149
- colorPressedSuccess: string;
1150
- colorFocusSuccess: string;
1151
- colorDisabledSuccess: string;
1152
- textColorSuccess: string;
1153
- textColorHoverSuccess: string;
1154
- textColorPressedSuccess: string;
1155
- textColorFocusSuccess: string;
1156
- textColorDisabledSuccess: string;
1157
- textColorTextSuccess: string;
1158
- textColorTextHoverSuccess: string;
1159
- textColorTextPressedSuccess: string;
1160
- textColorTextFocusSuccess: string;
1161
- textColorTextDisabledSuccess: string;
1162
- textColorGhostSuccess: string;
1163
- textColorGhostHoverSuccess: string;
1164
- textColorGhostPressedSuccess: string;
1165
- textColorGhostFocusSuccess: string;
1166
- textColorGhostDisabledSuccess: string;
1167
- borderSuccess: string;
1168
- borderHoverSuccess: string;
1169
- borderPressedSuccess: string;
1170
- borderFocusSuccess: string;
1171
- borderDisabledSuccess: string;
1172
- rippleColorSuccess: string;
1173
- colorWarning: string;
1174
- colorHoverWarning: string;
1175
- colorPressedWarning: string;
1176
- colorFocusWarning: string;
1177
- colorDisabledWarning: string;
1178
- textColorWarning: string;
1179
- textColorHoverWarning: string;
1180
- textColorPressedWarning: string;
1181
- textColorFocusWarning: string;
1182
- textColorDisabledWarning: string;
1183
- textColorTextWarning: string;
1184
- textColorTextHoverWarning: string;
1185
- textColorTextPressedWarning: string;
1186
- textColorTextFocusWarning: string;
1187
- textColorTextDisabledWarning: string;
1188
- textColorGhostWarning: string;
1189
- textColorGhostHoverWarning: string;
1190
- textColorGhostPressedWarning: string;
1191
- textColorGhostFocusWarning: string;
1192
- textColorGhostDisabledWarning: string;
1193
- borderWarning: string;
1194
- borderHoverWarning: string;
1195
- borderPressedWarning: string;
1196
- borderFocusWarning: string;
1197
- borderDisabledWarning: string;
1198
- rippleColorWarning: string;
1199
- colorError: string;
1200
- colorHoverError: string;
1201
- colorPressedError: string;
1202
- colorFocusError: string;
1203
- colorDisabledError: string;
1204
- textColorError: string;
1205
- textColorHoverError: string;
1206
- textColorPressedError: string;
1207
- textColorFocusError: string;
1208
- textColorDisabledError: string;
1209
- textColorTextError: string;
1210
- textColorTextHoverError: string;
1211
- textColorTextPressedError: string;
1212
- textColorTextFocusError: string;
1213
- textColorTextDisabledError: string;
1214
- textColorGhostError: string;
1215
- textColorGhostHoverError: string;
1216
- textColorGhostPressedError: string;
1217
- textColorGhostFocusError: string;
1218
- textColorGhostDisabledError: string;
1219
- borderError: string;
1220
- borderHoverError: string;
1221
- borderPressedError: string;
1222
- borderFocusError: string;
1223
- borderDisabledError: string;
1224
- rippleColorError: string;
1225
- waveOpacity: string;
1226
- fontWeight: string;
1227
- fontWeightStrong: string;
1228
- paddingTiny: string;
1229
- paddingSmall: string;
1230
- paddingMedium: string;
1231
- paddingLarge: string;
1232
- paddingRoundTiny: string;
1233
- paddingRoundSmall: string;
1234
- paddingRoundMedium: string;
1235
- paddingRoundLarge: string;
1236
- iconMarginTiny: string;
1237
- iconMarginSmall: string;
1238
- iconMarginMedium: string;
1239
- iconMarginLarge: string;
1240
- iconSizeTiny: string;
1241
- iconSizeSmall: string;
1242
- iconSizeMedium: string;
1243
- iconSizeLarge: string;
1244
- rippleDuration: string;
1245
- }, any>>>;
1246
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1247
- heightTiny: string;
1248
- heightSmall: string;
1249
- heightMedium: string;
1250
- heightLarge: string;
1251
- borderRadiusTiny: string;
1252
- borderRadiusSmall: string;
1253
- borderRadiusMedium: string;
1254
- borderRadiusLarge: string;
1255
- fontSizeTiny: string;
1256
- fontSizeSmall: string;
1257
- fontSizeMedium: string;
1258
- fontSizeLarge: string;
1259
- opacityDisabled: string;
1260
- colorOpacitySecondary: string;
1261
- colorOpacitySecondaryHover: string;
1262
- colorOpacitySecondaryPressed: string;
1263
- colorSecondary: string;
1264
- colorSecondaryHover: string;
1265
- colorSecondaryPressed: string;
1266
- colorTertiary: string;
1267
- colorTertiaryHover: string;
1268
- colorTertiaryPressed: string;
1269
- colorQuaternary: string;
1270
- colorQuaternaryHover: string;
1271
- colorQuaternaryPressed: string;
1272
- color: string;
1273
- colorHover: string;
1274
- colorPressed: string;
1275
- colorFocus: string;
1276
- colorDisabled: string;
1277
- textColor: string;
1278
- textColorTertiary: string;
1279
- textColorHover: string;
1280
- textColorPressed: string;
1281
- textColorFocus: string;
1282
- textColorDisabled: string;
1283
- textColorText: string;
1284
- textColorTextHover: string;
1285
- textColorTextPressed: string;
1286
- textColorTextFocus: string;
1287
- textColorTextDisabled: string;
1288
- textColorGhost: string;
1289
- textColorGhostHover: string;
1290
- textColorGhostPressed: string;
1291
- textColorGhostFocus: string;
1292
- textColorGhostDisabled: string;
1293
- border: string;
1294
- borderHover: string;
1295
- borderPressed: string;
1296
- borderFocus: string;
1297
- borderDisabled: string;
1298
- rippleColor: string;
1299
- colorPrimary: string;
1300
- colorHoverPrimary: string;
1301
- colorPressedPrimary: string;
1302
- colorFocusPrimary: string;
1303
- colorDisabledPrimary: string;
1304
- textColorPrimary: string;
1305
- textColorHoverPrimary: string;
1306
- textColorPressedPrimary: string;
1307
- textColorFocusPrimary: string;
1308
- textColorDisabledPrimary: string;
1309
- textColorTextPrimary: string;
1310
- textColorTextHoverPrimary: string;
1311
- textColorTextPressedPrimary: string;
1312
- textColorTextFocusPrimary: string;
1313
- textColorTextDisabledPrimary: string;
1314
- textColorGhostPrimary: string;
1315
- textColorGhostHoverPrimary: string;
1316
- textColorGhostPressedPrimary: string;
1317
- textColorGhostFocusPrimary: string;
1318
- textColorGhostDisabledPrimary: string;
1319
- borderPrimary: string;
1320
- borderHoverPrimary: string;
1321
- borderPressedPrimary: string;
1322
- borderFocusPrimary: string;
1323
- borderDisabledPrimary: string;
1324
- rippleColorPrimary: string;
1325
- colorInfo: string;
1326
- colorHoverInfo: string;
1327
- colorPressedInfo: string;
1328
- colorFocusInfo: string;
1329
- colorDisabledInfo: string;
1330
- textColorInfo: string;
1331
- textColorHoverInfo: string;
1332
- textColorPressedInfo: string;
1333
- textColorFocusInfo: string;
1334
- textColorDisabledInfo: string;
1335
- textColorTextInfo: string;
1336
- textColorTextHoverInfo: string;
1337
- textColorTextPressedInfo: string;
1338
- textColorTextFocusInfo: string;
1339
- textColorTextDisabledInfo: string;
1340
- textColorGhostInfo: string;
1341
- textColorGhostHoverInfo: string;
1342
- textColorGhostPressedInfo: string;
1343
- textColorGhostFocusInfo: string;
1344
- textColorGhostDisabledInfo: string;
1345
- borderInfo: string;
1346
- borderHoverInfo: string;
1347
- borderPressedInfo: string;
1348
- borderFocusInfo: string;
1349
- borderDisabledInfo: string;
1350
- rippleColorInfo: string;
1351
- colorSuccess: string;
1352
- colorHoverSuccess: string;
1353
- colorPressedSuccess: string;
1354
- colorFocusSuccess: string;
1355
- colorDisabledSuccess: string;
1356
- textColorSuccess: string;
1357
- textColorHoverSuccess: string;
1358
- textColorPressedSuccess: string;
1359
- textColorFocusSuccess: string;
1360
- textColorDisabledSuccess: string;
1361
- textColorTextSuccess: string;
1362
- textColorTextHoverSuccess: string;
1363
- textColorTextPressedSuccess: string;
1364
- textColorTextFocusSuccess: string;
1365
- textColorTextDisabledSuccess: string;
1366
- textColorGhostSuccess: string;
1367
- textColorGhostHoverSuccess: string;
1368
- textColorGhostPressedSuccess: string;
1369
- textColorGhostFocusSuccess: string;
1370
- textColorGhostDisabledSuccess: string;
1371
- borderSuccess: string;
1372
- borderHoverSuccess: string;
1373
- borderPressedSuccess: string;
1374
- borderFocusSuccess: string;
1375
- borderDisabledSuccess: string;
1376
- rippleColorSuccess: string;
1377
- colorWarning: string;
1378
- colorHoverWarning: string;
1379
- colorPressedWarning: string;
1380
- colorFocusWarning: string;
1381
- colorDisabledWarning: string;
1382
- textColorWarning: string;
1383
- textColorHoverWarning: string;
1384
- textColorPressedWarning: string;
1385
- textColorFocusWarning: string;
1386
- textColorDisabledWarning: string;
1387
- textColorTextWarning: string;
1388
- textColorTextHoverWarning: string;
1389
- textColorTextPressedWarning: string;
1390
- textColorTextFocusWarning: string;
1391
- textColorTextDisabledWarning: string;
1392
- textColorGhostWarning: string;
1393
- textColorGhostHoverWarning: string;
1394
- textColorGhostPressedWarning: string;
1395
- textColorGhostFocusWarning: string;
1396
- textColorGhostDisabledWarning: string;
1397
- borderWarning: string;
1398
- borderHoverWarning: string;
1399
- borderPressedWarning: string;
1400
- borderFocusWarning: string;
1401
- borderDisabledWarning: string;
1402
- rippleColorWarning: string;
1403
- colorError: string;
1404
- colorHoverError: string;
1405
- colorPressedError: string;
1406
- colorFocusError: string;
1407
- colorDisabledError: string;
1408
- textColorError: string;
1409
- textColorHoverError: string;
1410
- textColorPressedError: string;
1411
- textColorFocusError: string;
1412
- textColorDisabledError: string;
1413
- textColorTextError: string;
1414
- textColorTextHoverError: string;
1415
- textColorTextPressedError: string;
1416
- textColorTextFocusError: string;
1417
- textColorTextDisabledError: string;
1418
- textColorGhostError: string;
1419
- textColorGhostHoverError: string;
1420
- textColorGhostPressedError: string;
1421
- textColorGhostFocusError: string;
1422
- textColorGhostDisabledError: string;
1423
- borderError: string;
1424
- borderHoverError: string;
1425
- borderPressedError: string;
1426
- borderFocusError: string;
1427
- borderDisabledError: string;
1428
- rippleColorError: string;
1429
- waveOpacity: string;
1430
- fontWeight: string;
1431
- fontWeightStrong: string;
1432
- paddingTiny: string;
1433
- paddingSmall: string;
1434
- paddingMedium: string;
1435
- paddingLarge: string;
1436
- paddingRoundTiny: string;
1437
- paddingRoundSmall: string;
1438
- paddingRoundMedium: string;
1439
- paddingRoundLarge: string;
1440
- iconMarginTiny: string;
1441
- iconMarginSmall: string;
1442
- iconMarginMedium: string;
1443
- iconMarginLarge: string;
1444
- iconSizeTiny: string;
1445
- iconSizeSmall: string;
1446
- iconSizeMedium: string;
1447
- iconSizeLarge: string;
1448
- rippleDuration: string;
1449
- }, any>>>;
1450
- }>>, {
1451
- readonly type: import("naive-ui/es/button/src/interface").Type;
1452
- readonly tag: keyof HTMLElementTagNameMap;
1453
- readonly block: boolean;
1454
- readonly round: boolean;
1455
- readonly dashed: boolean;
1456
- readonly text: boolean;
1457
- readonly circle: boolean;
1458
- readonly disabled: boolean;
1459
- readonly focusable: boolean;
1460
- readonly strong: boolean;
1461
- readonly loading: boolean;
1462
- readonly bordered: boolean;
1463
- readonly tertiary: boolean;
1464
- readonly ghost: boolean;
1465
- readonly keyboard: boolean;
1466
- readonly secondary: boolean;
1467
- readonly quaternary: boolean;
1468
- readonly iconPlacement: "left" | "right";
1469
- readonly attrType: "button" | "reset" | "submit";
1470
- readonly nativeFocusBehavior: boolean;
1471
- }>;
1472
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeEvaluateCountdown" | "writeGuage")[], "closeEvaluateCountdown" | "writeGuage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1473
- formArray: {
1474
- type: ArrayConstructor;
1475
- default: () => never[];
1476
- };
1477
- evaluateResultConfig: {
1478
- type: ObjectConstructor;
1479
- default: () => {};
1480
- };
1481
- evaluateResultSetting: {
1482
- type: ObjectConstructor;
1483
- default: () => {};
1484
- };
1485
- isFinished: {
1486
- type: BooleanConstructor;
1487
- default: boolean;
1488
- };
1489
- maxScore: {
1490
- type: NumberConstructor;
1491
- default: number;
1492
- };
1493
- }>> & {
1494
- onCloseEvaluateCountdown?: ((...args: any[]) => any) | undefined;
1495
- onWriteGuage?: ((...args: any[]) => any) | undefined;
1496
- }, {
1497
- formArray: unknown[];
1498
- evaluateResultConfig: Record<string, any>;
1499
- evaluateResultSetting: Record<string, any>;
1500
- isFinished: boolean;
1501
- maxScore: number;
1502
- }>;
1503
- export default _default;