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