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,2647 +0,0 @@
1
- import { SFCWithInstall } from 'cnhis-design-vue/es/src/types';
2
- declare const FieldSet: SFCWithInstall<import("vue").DefineComponent<{
3
- fields: {
4
- type: import("vue").PropType<any[]>;
5
- default: () => never[];
6
- };
7
- menuSource: {
8
- type: StringConstructor;
9
- default: string;
10
- };
11
- drawerDirection: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- footerFlag: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- }, {
20
- emit: (event: "onSave" | "onClose", ...args: any[]) => void;
21
- settingView: import("vue").Ref<HTMLInputElement | null>;
22
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
23
- fields: {
24
- type: import("vue").PropType<any[]>;
25
- default: () => never[];
26
- };
27
- menuSource: {
28
- type: StringConstructor;
29
- default: string;
30
- };
31
- drawerDirection: {
32
- type: StringConstructor;
33
- default: string;
34
- };
35
- footerFlag: {
36
- type: BooleanConstructor;
37
- default: boolean;
38
- };
39
- }>> & {
40
- onOnSave?: ((...args: any[]) => any) | undefined;
41
- onOnClose?: ((...args: any[]) => any) | undefined;
42
- }>>;
43
- state: {
44
- spinning: boolean;
45
- isCustomSearch: boolean;
46
- clickItem: {
47
- [key: string]: any;
48
- };
49
- fields: {
50
- [key: string]: any;
51
- sid: string;
52
- columnName: string;
53
- isShow: number;
54
- isSort: number;
55
- title: string;
56
- alias: string;
57
- isFixed: number;
58
- colWidth: number;
59
- }[];
60
- };
61
- leftStyle: (ele: {
62
- [key: string]: any;
63
- sid: string;
64
- columnName: string;
65
- isShow: number;
66
- isSort: number;
67
- title: string;
68
- alias: string;
69
- isFixed: number;
70
- colWidth: number;
71
- }) => {
72
- background: string | undefined;
73
- };
74
- isMiddleAndAdmin: import("vue").ComputedRef<boolean>;
75
- showCheckBox: (key: string) => boolean;
76
- hideTab: () => void;
77
- handleFieldSave: () => void;
78
- onCancle: () => void;
79
- onChangeShow: (e: boolean, ele: {
80
- [key: string]: any;
81
- sid: string;
82
- columnName: string;
83
- isShow: number;
84
- isSort: number;
85
- title: string;
86
- alias: string;
87
- isFixed: number;
88
- colWidth: number;
89
- }) => void;
90
- onChangeSort: (e: boolean, ele: {
91
- [key: string]: any;
92
- sid: string;
93
- columnName: string;
94
- isShow: number;
95
- isSort: number;
96
- title: string;
97
- alias: string;
98
- isFixed: number;
99
- colWidth: number;
100
- }) => void;
101
- onButtonChecked: (e: boolean, itemButton: {
102
- [key: string]: any;
103
- sid: string;
104
- columnName: string;
105
- isShow: number;
106
- isSort: number;
107
- title: string;
108
- alias: string;
109
- isFixed: number;
110
- colWidth: number;
111
- }) => void;
112
- calculateCheck: (key: string) => boolean;
113
- handleAllCheck: (e: boolean, key: string) => void;
114
- handleFieldClick: (item: {
115
- [key: string]: any;
116
- sid: string;
117
- columnName: string;
118
- isShow: number;
119
- isSort: number;
120
- title: string;
121
- alias: string;
122
- isFixed: number;
123
- colWidth: number;
124
- }) => void;
125
- NButton: import("vue").DefineComponent<{
126
- readonly color: StringConstructor;
127
- readonly textColor: StringConstructor;
128
- readonly text: BooleanConstructor;
129
- readonly block: BooleanConstructor;
130
- readonly loading: BooleanConstructor;
131
- readonly disabled: BooleanConstructor;
132
- readonly circle: BooleanConstructor;
133
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
134
- readonly ghost: BooleanConstructor;
135
- readonly round: BooleanConstructor;
136
- readonly secondary: BooleanConstructor;
137
- readonly tertiary: BooleanConstructor;
138
- readonly quaternary: BooleanConstructor;
139
- readonly strong: BooleanConstructor;
140
- readonly focusable: {
141
- readonly type: BooleanConstructor;
142
- readonly default: true;
143
- };
144
- readonly keyboard: {
145
- readonly type: BooleanConstructor;
146
- readonly default: true;
147
- };
148
- readonly tag: {
149
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
150
- readonly default: "button";
151
- };
152
- readonly type: {
153
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
154
- readonly default: "default";
155
- };
156
- readonly dashed: BooleanConstructor;
157
- readonly iconPlacement: {
158
- readonly type: import("vue").PropType<"left" | "right">;
159
- readonly default: "left";
160
- };
161
- readonly attrType: {
162
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
163
- readonly default: "button";
164
- };
165
- readonly bordered: {
166
- readonly type: BooleanConstructor;
167
- readonly default: true;
168
- };
169
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
170
- readonly nativeFocusBehavior: BooleanConstructor;
171
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
172
- heightTiny: string;
173
- heightSmall: string;
174
- heightMedium: string;
175
- heightLarge: string;
176
- borderRadiusTiny: string;
177
- borderRadiusSmall: string;
178
- borderRadiusMedium: string;
179
- borderRadiusLarge: string;
180
- fontSizeTiny: string;
181
- fontSizeSmall: string;
182
- fontSizeMedium: string;
183
- fontSizeLarge: string;
184
- opacityDisabled: string;
185
- colorOpacitySecondary: string;
186
- colorOpacitySecondaryHover: string;
187
- colorOpacitySecondaryPressed: string;
188
- colorSecondary: string;
189
- colorSecondaryHover: string;
190
- colorSecondaryPressed: string;
191
- colorTertiary: string;
192
- colorTertiaryHover: string;
193
- colorTertiaryPressed: string;
194
- colorQuaternary: string;
195
- colorQuaternaryHover: string;
196
- colorQuaternaryPressed: string;
197
- color: string;
198
- colorHover: string;
199
- colorPressed: string;
200
- colorFocus: string;
201
- colorDisabled: string;
202
- textColor: string;
203
- textColorTertiary: string;
204
- textColorHover: string;
205
- textColorPressed: string;
206
- textColorFocus: string;
207
- textColorDisabled: string;
208
- textColorText: string;
209
- textColorTextHover: string;
210
- textColorTextPressed: string;
211
- textColorTextFocus: string;
212
- textColorTextDisabled: string;
213
- textColorGhost: string;
214
- textColorGhostHover: string;
215
- textColorGhostPressed: string;
216
- textColorGhostFocus: string;
217
- textColorGhostDisabled: string;
218
- border: string;
219
- borderHover: string;
220
- borderPressed: string;
221
- borderFocus: string;
222
- borderDisabled: string;
223
- rippleColor: string;
224
- colorPrimary: string;
225
- colorHoverPrimary: string;
226
- colorPressedPrimary: string;
227
- colorFocusPrimary: string;
228
- colorDisabledPrimary: string;
229
- textColorPrimary: string;
230
- textColorHoverPrimary: string;
231
- textColorPressedPrimary: string;
232
- textColorFocusPrimary: string;
233
- textColorDisabledPrimary: string;
234
- textColorTextPrimary: string;
235
- textColorTextHoverPrimary: string;
236
- textColorTextPressedPrimary: string;
237
- textColorTextFocusPrimary: string;
238
- textColorTextDisabledPrimary: string;
239
- textColorGhostPrimary: string;
240
- textColorGhostHoverPrimary: string;
241
- textColorGhostPressedPrimary: string;
242
- textColorGhostFocusPrimary: string;
243
- textColorGhostDisabledPrimary: string;
244
- borderPrimary: string;
245
- borderHoverPrimary: string;
246
- borderPressedPrimary: string;
247
- borderFocusPrimary: string;
248
- borderDisabledPrimary: string;
249
- rippleColorPrimary: string;
250
- colorInfo: string;
251
- colorHoverInfo: string;
252
- colorPressedInfo: string;
253
- colorFocusInfo: string;
254
- colorDisabledInfo: string;
255
- textColorInfo: string;
256
- textColorHoverInfo: string;
257
- textColorPressedInfo: string;
258
- textColorFocusInfo: string;
259
- textColorDisabledInfo: string;
260
- textColorTextInfo: string;
261
- textColorTextHoverInfo: string;
262
- textColorTextPressedInfo: string;
263
- textColorTextFocusInfo: string;
264
- textColorTextDisabledInfo: string;
265
- textColorGhostInfo: string;
266
- textColorGhostHoverInfo: string;
267
- textColorGhostPressedInfo: string;
268
- textColorGhostFocusInfo: string;
269
- textColorGhostDisabledInfo: string;
270
- borderInfo: string;
271
- borderHoverInfo: string;
272
- borderPressedInfo: string;
273
- borderFocusInfo: string;
274
- borderDisabledInfo: string;
275
- rippleColorInfo: string;
276
- colorSuccess: string;
277
- colorHoverSuccess: string;
278
- colorPressedSuccess: string;
279
- colorFocusSuccess: string;
280
- colorDisabledSuccess: string;
281
- textColorSuccess: string;
282
- textColorHoverSuccess: string;
283
- textColorPressedSuccess: string;
284
- textColorFocusSuccess: string;
285
- textColorDisabledSuccess: string;
286
- textColorTextSuccess: string;
287
- textColorTextHoverSuccess: string;
288
- textColorTextPressedSuccess: string;
289
- textColorTextFocusSuccess: string;
290
- textColorTextDisabledSuccess: string;
291
- textColorGhostSuccess: string;
292
- textColorGhostHoverSuccess: string;
293
- textColorGhostPressedSuccess: string;
294
- textColorGhostFocusSuccess: string;
295
- textColorGhostDisabledSuccess: string;
296
- borderSuccess: string;
297
- borderHoverSuccess: string;
298
- borderPressedSuccess: string;
299
- borderFocusSuccess: string;
300
- borderDisabledSuccess: string;
301
- rippleColorSuccess: string;
302
- colorWarning: string;
303
- colorHoverWarning: string;
304
- colorPressedWarning: string;
305
- colorFocusWarning: string;
306
- colorDisabledWarning: string;
307
- textColorWarning: string;
308
- textColorHoverWarning: string;
309
- textColorPressedWarning: string;
310
- textColorFocusWarning: string;
311
- textColorDisabledWarning: string;
312
- textColorTextWarning: string;
313
- textColorTextHoverWarning: string;
314
- textColorTextPressedWarning: string;
315
- textColorTextFocusWarning: string;
316
- textColorTextDisabledWarning: string;
317
- textColorGhostWarning: string;
318
- textColorGhostHoverWarning: string;
319
- textColorGhostPressedWarning: string;
320
- textColorGhostFocusWarning: string;
321
- textColorGhostDisabledWarning: string;
322
- borderWarning: string;
323
- borderHoverWarning: string;
324
- borderPressedWarning: string;
325
- borderFocusWarning: string;
326
- borderDisabledWarning: string;
327
- rippleColorWarning: string;
328
- colorError: string;
329
- colorHoverError: string;
330
- colorPressedError: string;
331
- colorFocusError: string;
332
- colorDisabledError: string;
333
- textColorError: string;
334
- textColorHoverError: string;
335
- textColorPressedError: string;
336
- textColorFocusError: string;
337
- textColorDisabledError: string;
338
- textColorTextError: string;
339
- textColorTextHoverError: string;
340
- textColorTextPressedError: string;
341
- textColorTextFocusError: string;
342
- textColorTextDisabledError: string;
343
- textColorGhostError: string;
344
- textColorGhostHoverError: string;
345
- textColorGhostPressedError: string;
346
- textColorGhostFocusError: string;
347
- textColorGhostDisabledError: string;
348
- borderError: string;
349
- borderHoverError: string;
350
- borderPressedError: string;
351
- borderFocusError: string;
352
- borderDisabledError: string;
353
- rippleColorError: string;
354
- waveOpacity: string;
355
- fontWeight: string;
356
- fontWeightStrong: string;
357
- paddingTiny: string;
358
- paddingSmall: string;
359
- paddingMedium: string;
360
- paddingLarge: string;
361
- paddingRoundTiny: string;
362
- paddingRoundSmall: string;
363
- paddingRoundMedium: string;
364
- paddingRoundLarge: string;
365
- iconMarginTiny: string;
366
- iconMarginSmall: string;
367
- iconMarginMedium: string;
368
- iconMarginLarge: string;
369
- iconSizeTiny: string;
370
- iconSizeSmall: string;
371
- iconSizeMedium: string;
372
- iconSizeLarge: string;
373
- rippleDuration: string;
374
- }, any>>;
375
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
376
- heightTiny: string;
377
- heightSmall: string;
378
- heightMedium: string;
379
- heightLarge: string;
380
- borderRadiusTiny: string;
381
- borderRadiusSmall: string;
382
- borderRadiusMedium: string;
383
- borderRadiusLarge: string;
384
- fontSizeTiny: string;
385
- fontSizeSmall: string;
386
- fontSizeMedium: string;
387
- fontSizeLarge: string;
388
- opacityDisabled: string;
389
- colorOpacitySecondary: string;
390
- colorOpacitySecondaryHover: string;
391
- colorOpacitySecondaryPressed: string;
392
- colorSecondary: string;
393
- colorSecondaryHover: string;
394
- colorSecondaryPressed: string;
395
- colorTertiary: string;
396
- colorTertiaryHover: string;
397
- colorTertiaryPressed: string;
398
- colorQuaternary: string;
399
- colorQuaternaryHover: string;
400
- colorQuaternaryPressed: string;
401
- color: string;
402
- colorHover: string;
403
- colorPressed: string;
404
- colorFocus: string;
405
- colorDisabled: string;
406
- textColor: string;
407
- textColorTertiary: string;
408
- textColorHover: string;
409
- textColorPressed: string;
410
- textColorFocus: string;
411
- textColorDisabled: string;
412
- textColorText: string;
413
- textColorTextHover: string;
414
- textColorTextPressed: string;
415
- textColorTextFocus: string;
416
- textColorTextDisabled: string;
417
- textColorGhost: string;
418
- textColorGhostHover: string;
419
- textColorGhostPressed: string;
420
- textColorGhostFocus: string;
421
- textColorGhostDisabled: string;
422
- border: string;
423
- borderHover: string;
424
- borderPressed: string;
425
- borderFocus: string;
426
- borderDisabled: string;
427
- rippleColor: string;
428
- colorPrimary: string;
429
- colorHoverPrimary: string;
430
- colorPressedPrimary: string;
431
- colorFocusPrimary: string;
432
- colorDisabledPrimary: string;
433
- textColorPrimary: string;
434
- textColorHoverPrimary: string;
435
- textColorPressedPrimary: string;
436
- textColorFocusPrimary: string;
437
- textColorDisabledPrimary: string;
438
- textColorTextPrimary: string;
439
- textColorTextHoverPrimary: string;
440
- textColorTextPressedPrimary: string;
441
- textColorTextFocusPrimary: string;
442
- textColorTextDisabledPrimary: string;
443
- textColorGhostPrimary: string;
444
- textColorGhostHoverPrimary: string;
445
- textColorGhostPressedPrimary: string;
446
- textColorGhostFocusPrimary: string;
447
- textColorGhostDisabledPrimary: string;
448
- borderPrimary: string;
449
- borderHoverPrimary: string;
450
- borderPressedPrimary: string;
451
- borderFocusPrimary: string;
452
- borderDisabledPrimary: string;
453
- rippleColorPrimary: string;
454
- colorInfo: string;
455
- colorHoverInfo: string;
456
- colorPressedInfo: string;
457
- colorFocusInfo: string;
458
- colorDisabledInfo: string;
459
- textColorInfo: string;
460
- textColorHoverInfo: string;
461
- textColorPressedInfo: string;
462
- textColorFocusInfo: string;
463
- textColorDisabledInfo: string;
464
- textColorTextInfo: string;
465
- textColorTextHoverInfo: string;
466
- textColorTextPressedInfo: string;
467
- textColorTextFocusInfo: string;
468
- textColorTextDisabledInfo: string;
469
- textColorGhostInfo: string;
470
- textColorGhostHoverInfo: string;
471
- textColorGhostPressedInfo: string;
472
- textColorGhostFocusInfo: string;
473
- textColorGhostDisabledInfo: string;
474
- borderInfo: string;
475
- borderHoverInfo: string;
476
- borderPressedInfo: string;
477
- borderFocusInfo: string;
478
- borderDisabledInfo: string;
479
- rippleColorInfo: string;
480
- colorSuccess: string;
481
- colorHoverSuccess: string;
482
- colorPressedSuccess: string;
483
- colorFocusSuccess: string;
484
- colorDisabledSuccess: string;
485
- textColorSuccess: string;
486
- textColorHoverSuccess: string;
487
- textColorPressedSuccess: string;
488
- textColorFocusSuccess: string;
489
- textColorDisabledSuccess: string;
490
- textColorTextSuccess: string;
491
- textColorTextHoverSuccess: string;
492
- textColorTextPressedSuccess: string;
493
- textColorTextFocusSuccess: string;
494
- textColorTextDisabledSuccess: string;
495
- textColorGhostSuccess: string;
496
- textColorGhostHoverSuccess: string;
497
- textColorGhostPressedSuccess: string;
498
- textColorGhostFocusSuccess: string;
499
- textColorGhostDisabledSuccess: string;
500
- borderSuccess: string;
501
- borderHoverSuccess: string;
502
- borderPressedSuccess: string;
503
- borderFocusSuccess: string;
504
- borderDisabledSuccess: string;
505
- rippleColorSuccess: string;
506
- colorWarning: string;
507
- colorHoverWarning: string;
508
- colorPressedWarning: string;
509
- colorFocusWarning: string;
510
- colorDisabledWarning: string;
511
- textColorWarning: string;
512
- textColorHoverWarning: string;
513
- textColorPressedWarning: string;
514
- textColorFocusWarning: string;
515
- textColorDisabledWarning: string;
516
- textColorTextWarning: string;
517
- textColorTextHoverWarning: string;
518
- textColorTextPressedWarning: string;
519
- textColorTextFocusWarning: string;
520
- textColorTextDisabledWarning: string;
521
- textColorGhostWarning: string;
522
- textColorGhostHoverWarning: string;
523
- textColorGhostPressedWarning: string;
524
- textColorGhostFocusWarning: string;
525
- textColorGhostDisabledWarning: string;
526
- borderWarning: string;
527
- borderHoverWarning: string;
528
- borderPressedWarning: string;
529
- borderFocusWarning: string;
530
- borderDisabledWarning: string;
531
- rippleColorWarning: string;
532
- colorError: string;
533
- colorHoverError: string;
534
- colorPressedError: string;
535
- colorFocusError: string;
536
- colorDisabledError: string;
537
- textColorError: string;
538
- textColorHoverError: string;
539
- textColorPressedError: string;
540
- textColorFocusError: string;
541
- textColorDisabledError: string;
542
- textColorTextError: string;
543
- textColorTextHoverError: string;
544
- textColorTextPressedError: string;
545
- textColorTextFocusError: string;
546
- textColorTextDisabledError: string;
547
- textColorGhostError: string;
548
- textColorGhostHoverError: string;
549
- textColorGhostPressedError: string;
550
- textColorGhostFocusError: string;
551
- textColorGhostDisabledError: string;
552
- borderError: string;
553
- borderHoverError: string;
554
- borderPressedError: string;
555
- borderFocusError: string;
556
- borderDisabledError: string;
557
- rippleColorError: string;
558
- waveOpacity: string;
559
- fontWeight: string;
560
- fontWeightStrong: string;
561
- paddingTiny: string;
562
- paddingSmall: string;
563
- paddingMedium: string;
564
- paddingLarge: string;
565
- paddingRoundTiny: string;
566
- paddingRoundSmall: string;
567
- paddingRoundMedium: string;
568
- paddingRoundLarge: string;
569
- iconMarginTiny: string;
570
- iconMarginSmall: string;
571
- iconMarginMedium: string;
572
- iconMarginLarge: string;
573
- iconSizeTiny: string;
574
- iconSizeSmall: string;
575
- iconSizeMedium: string;
576
- iconSizeLarge: string;
577
- rippleDuration: string;
578
- }, any>>>;
579
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
580
- heightTiny: string;
581
- heightSmall: string;
582
- heightMedium: string;
583
- heightLarge: string;
584
- borderRadiusTiny: string;
585
- borderRadiusSmall: string;
586
- borderRadiusMedium: string;
587
- borderRadiusLarge: string;
588
- fontSizeTiny: string;
589
- fontSizeSmall: string;
590
- fontSizeMedium: string;
591
- fontSizeLarge: string;
592
- opacityDisabled: string;
593
- colorOpacitySecondary: string;
594
- colorOpacitySecondaryHover: string;
595
- colorOpacitySecondaryPressed: string;
596
- colorSecondary: string;
597
- colorSecondaryHover: string;
598
- colorSecondaryPressed: string;
599
- colorTertiary: string;
600
- colorTertiaryHover: string;
601
- colorTertiaryPressed: string;
602
- colorQuaternary: string;
603
- colorQuaternaryHover: string;
604
- colorQuaternaryPressed: string;
605
- color: string;
606
- colorHover: string;
607
- colorPressed: string;
608
- colorFocus: string;
609
- colorDisabled: string;
610
- textColor: string;
611
- textColorTertiary: string;
612
- textColorHover: string;
613
- textColorPressed: string;
614
- textColorFocus: string;
615
- textColorDisabled: string;
616
- textColorText: string;
617
- textColorTextHover: string;
618
- textColorTextPressed: string;
619
- textColorTextFocus: string;
620
- textColorTextDisabled: string;
621
- textColorGhost: string;
622
- textColorGhostHover: string;
623
- textColorGhostPressed: string;
624
- textColorGhostFocus: string;
625
- textColorGhostDisabled: string;
626
- border: string;
627
- borderHover: string;
628
- borderPressed: string;
629
- borderFocus: string;
630
- borderDisabled: string;
631
- rippleColor: string;
632
- colorPrimary: string;
633
- colorHoverPrimary: string;
634
- colorPressedPrimary: string;
635
- colorFocusPrimary: string;
636
- colorDisabledPrimary: string;
637
- textColorPrimary: string;
638
- textColorHoverPrimary: string;
639
- textColorPressedPrimary: string;
640
- textColorFocusPrimary: string;
641
- textColorDisabledPrimary: string;
642
- textColorTextPrimary: string;
643
- textColorTextHoverPrimary: string;
644
- textColorTextPressedPrimary: string;
645
- textColorTextFocusPrimary: string;
646
- textColorTextDisabledPrimary: string;
647
- textColorGhostPrimary: string;
648
- textColorGhostHoverPrimary: string;
649
- textColorGhostPressedPrimary: string;
650
- textColorGhostFocusPrimary: string;
651
- textColorGhostDisabledPrimary: string;
652
- borderPrimary: string;
653
- borderHoverPrimary: string;
654
- borderPressedPrimary: string;
655
- borderFocusPrimary: string;
656
- borderDisabledPrimary: string;
657
- rippleColorPrimary: string;
658
- colorInfo: string;
659
- colorHoverInfo: string;
660
- colorPressedInfo: string;
661
- colorFocusInfo: string;
662
- colorDisabledInfo: string;
663
- textColorInfo: string;
664
- textColorHoverInfo: string;
665
- textColorPressedInfo: string;
666
- textColorFocusInfo: string;
667
- textColorDisabledInfo: string;
668
- textColorTextInfo: string;
669
- textColorTextHoverInfo: string;
670
- textColorTextPressedInfo: string;
671
- textColorTextFocusInfo: string;
672
- textColorTextDisabledInfo: string;
673
- textColorGhostInfo: string;
674
- textColorGhostHoverInfo: string;
675
- textColorGhostPressedInfo: string;
676
- textColorGhostFocusInfo: string;
677
- textColorGhostDisabledInfo: string;
678
- borderInfo: string;
679
- borderHoverInfo: string;
680
- borderPressedInfo: string;
681
- borderFocusInfo: string;
682
- borderDisabledInfo: string;
683
- rippleColorInfo: string;
684
- colorSuccess: string;
685
- colorHoverSuccess: string;
686
- colorPressedSuccess: string;
687
- colorFocusSuccess: string;
688
- colorDisabledSuccess: string;
689
- textColorSuccess: string;
690
- textColorHoverSuccess: string;
691
- textColorPressedSuccess: string;
692
- textColorFocusSuccess: string;
693
- textColorDisabledSuccess: string;
694
- textColorTextSuccess: string;
695
- textColorTextHoverSuccess: string;
696
- textColorTextPressedSuccess: string;
697
- textColorTextFocusSuccess: string;
698
- textColorTextDisabledSuccess: string;
699
- textColorGhostSuccess: string;
700
- textColorGhostHoverSuccess: string;
701
- textColorGhostPressedSuccess: string;
702
- textColorGhostFocusSuccess: string;
703
- textColorGhostDisabledSuccess: string;
704
- borderSuccess: string;
705
- borderHoverSuccess: string;
706
- borderPressedSuccess: string;
707
- borderFocusSuccess: string;
708
- borderDisabledSuccess: string;
709
- rippleColorSuccess: string;
710
- colorWarning: string;
711
- colorHoverWarning: string;
712
- colorPressedWarning: string;
713
- colorFocusWarning: string;
714
- colorDisabledWarning: string;
715
- textColorWarning: string;
716
- textColorHoverWarning: string;
717
- textColorPressedWarning: string;
718
- textColorFocusWarning: string;
719
- textColorDisabledWarning: string;
720
- textColorTextWarning: string;
721
- textColorTextHoverWarning: string;
722
- textColorTextPressedWarning: string;
723
- textColorTextFocusWarning: string;
724
- textColorTextDisabledWarning: string;
725
- textColorGhostWarning: string;
726
- textColorGhostHoverWarning: string;
727
- textColorGhostPressedWarning: string;
728
- textColorGhostFocusWarning: string;
729
- textColorGhostDisabledWarning: string;
730
- borderWarning: string;
731
- borderHoverWarning: string;
732
- borderPressedWarning: string;
733
- borderFocusWarning: string;
734
- borderDisabledWarning: string;
735
- rippleColorWarning: string;
736
- colorError: string;
737
- colorHoverError: string;
738
- colorPressedError: string;
739
- colorFocusError: string;
740
- colorDisabledError: string;
741
- textColorError: string;
742
- textColorHoverError: string;
743
- textColorPressedError: string;
744
- textColorFocusError: string;
745
- textColorDisabledError: string;
746
- textColorTextError: string;
747
- textColorTextHoverError: string;
748
- textColorTextPressedError: string;
749
- textColorTextFocusError: string;
750
- textColorTextDisabledError: string;
751
- textColorGhostError: string;
752
- textColorGhostHoverError: string;
753
- textColorGhostPressedError: string;
754
- textColorGhostFocusError: string;
755
- textColorGhostDisabledError: string;
756
- borderError: string;
757
- borderHoverError: string;
758
- borderPressedError: string;
759
- borderFocusError: string;
760
- borderDisabledError: string;
761
- rippleColorError: string;
762
- waveOpacity: string;
763
- fontWeight: string;
764
- fontWeightStrong: string;
765
- paddingTiny: string;
766
- paddingSmall: string;
767
- paddingMedium: string;
768
- paddingLarge: string;
769
- paddingRoundTiny: string;
770
- paddingRoundSmall: string;
771
- paddingRoundMedium: string;
772
- paddingRoundLarge: string;
773
- iconMarginTiny: string;
774
- iconMarginSmall: string;
775
- iconMarginMedium: string;
776
- iconMarginLarge: string;
777
- iconSizeTiny: string;
778
- iconSizeSmall: string;
779
- iconSizeMedium: string;
780
- iconSizeLarge: string;
781
- rippleDuration: string;
782
- }, any>>>;
783
- }, {
784
- selfElRef: import("vue").Ref<HTMLElement | null>;
785
- waveElRef: import("vue").Ref<{
786
- play: () => void;
787
- } | null>;
788
- mergedClsPrefix: import("vue").ComputedRef<string>;
789
- mergedFocusable: import("vue").ComputedRef<boolean>;
790
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large" | "tiny">;
791
- showBorder: import("vue").ComputedRef<boolean>;
792
- enterPressed: import("vue").Ref<boolean>;
793
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
794
- handleMousedown: (e: MouseEvent) => void;
795
- handleKeydown: (e: KeyboardEvent) => void;
796
- handleBlur: () => void;
797
- handleKeyup: (e: KeyboardEvent) => void;
798
- handleClick: (e: MouseEvent) => void;
799
- customColorCssVars: import("vue").ComputedRef<{
800
- '--n-border-color': string;
801
- '--n-border-color-hover': string;
802
- '--n-border-color-pressed': string;
803
- '--n-border-color-focus': string;
804
- '--n-border-color-disabled': string;
805
- } | null>;
806
- cssVars: import("vue").ComputedRef<{
807
- '--n-width': string;
808
- '--n-height': string;
809
- '--n-font-size': string;
810
- '--n-padding': string;
811
- '--n-icon-size': string;
812
- '--n-icon-margin': string;
813
- '--n-border-radius': string;
814
- '--n-border': string;
815
- '--n-border-hover': string;
816
- '--n-border-pressed': string;
817
- '--n-border-focus': string;
818
- '--n-border-disabled': string;
819
- '--n-color': string;
820
- '--n-color-hover': string;
821
- '--n-color-pressed': string;
822
- '--n-color-focus': string;
823
- '--n-color-disabled': string;
824
- '--n-ripple-color': string;
825
- '--n-text-color': string;
826
- '--n-text-color-hover': string;
827
- '--n-text-color-pressed': string;
828
- '--n-text-color-focus': string;
829
- '--n-text-color-disabled': string;
830
- 'font-weight': string;
831
- '--n-bezier': string;
832
- '--n-bezier-ease-out': string;
833
- '--n-ripple-duration': string;
834
- '--n-opacity-disabled': string;
835
- '--n-wave-opacity': string;
836
- }> | undefined;
837
- themeClass: import("vue").Ref<string> | undefined;
838
- onRender: (() => void) | undefined;
839
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
840
- readonly color: StringConstructor;
841
- readonly textColor: StringConstructor;
842
- readonly text: BooleanConstructor;
843
- readonly block: BooleanConstructor;
844
- readonly loading: BooleanConstructor;
845
- readonly disabled: BooleanConstructor;
846
- readonly circle: BooleanConstructor;
847
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
848
- readonly ghost: BooleanConstructor;
849
- readonly round: BooleanConstructor;
850
- readonly secondary: BooleanConstructor;
851
- readonly tertiary: BooleanConstructor;
852
- readonly quaternary: BooleanConstructor;
853
- readonly strong: BooleanConstructor;
854
- readonly focusable: {
855
- readonly type: BooleanConstructor;
856
- readonly default: true;
857
- };
858
- readonly keyboard: {
859
- readonly type: BooleanConstructor;
860
- readonly default: true;
861
- };
862
- readonly tag: {
863
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
864
- readonly default: "button";
865
- };
866
- readonly type: {
867
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
868
- readonly default: "default";
869
- };
870
- readonly dashed: BooleanConstructor;
871
- readonly iconPlacement: {
872
- readonly type: import("vue").PropType<"left" | "right">;
873
- readonly default: "left";
874
- };
875
- readonly attrType: {
876
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
877
- readonly default: "button";
878
- };
879
- readonly bordered: {
880
- readonly type: BooleanConstructor;
881
- readonly default: true;
882
- };
883
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
884
- readonly nativeFocusBehavior: BooleanConstructor;
885
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
886
- heightTiny: string;
887
- heightSmall: string;
888
- heightMedium: string;
889
- heightLarge: string;
890
- borderRadiusTiny: string;
891
- borderRadiusSmall: string;
892
- borderRadiusMedium: string;
893
- borderRadiusLarge: string;
894
- fontSizeTiny: string;
895
- fontSizeSmall: string;
896
- fontSizeMedium: string;
897
- fontSizeLarge: string;
898
- opacityDisabled: string;
899
- colorOpacitySecondary: string;
900
- colorOpacitySecondaryHover: string;
901
- colorOpacitySecondaryPressed: string;
902
- colorSecondary: string;
903
- colorSecondaryHover: string;
904
- colorSecondaryPressed: string;
905
- colorTertiary: string;
906
- colorTertiaryHover: string;
907
- colorTertiaryPressed: string;
908
- colorQuaternary: string;
909
- colorQuaternaryHover: string;
910
- colorQuaternaryPressed: string;
911
- color: string;
912
- colorHover: string;
913
- colorPressed: string;
914
- colorFocus: string;
915
- colorDisabled: string;
916
- textColor: string;
917
- textColorTertiary: string;
918
- textColorHover: string;
919
- textColorPressed: string;
920
- textColorFocus: string;
921
- textColorDisabled: string;
922
- textColorText: string;
923
- textColorTextHover: string;
924
- textColorTextPressed: string;
925
- textColorTextFocus: string;
926
- textColorTextDisabled: string;
927
- textColorGhost: string;
928
- textColorGhostHover: string;
929
- textColorGhostPressed: string;
930
- textColorGhostFocus: string;
931
- textColorGhostDisabled: string;
932
- border: string;
933
- borderHover: string;
934
- borderPressed: string;
935
- borderFocus: string;
936
- borderDisabled: string;
937
- rippleColor: string;
938
- colorPrimary: string;
939
- colorHoverPrimary: string;
940
- colorPressedPrimary: string;
941
- colorFocusPrimary: string;
942
- colorDisabledPrimary: string;
943
- textColorPrimary: string;
944
- textColorHoverPrimary: string;
945
- textColorPressedPrimary: string;
946
- textColorFocusPrimary: string;
947
- textColorDisabledPrimary: string;
948
- textColorTextPrimary: string;
949
- textColorTextHoverPrimary: string;
950
- textColorTextPressedPrimary: string;
951
- textColorTextFocusPrimary: string;
952
- textColorTextDisabledPrimary: string;
953
- textColorGhostPrimary: string;
954
- textColorGhostHoverPrimary: string;
955
- textColorGhostPressedPrimary: string;
956
- textColorGhostFocusPrimary: string;
957
- textColorGhostDisabledPrimary: string;
958
- borderPrimary: string;
959
- borderHoverPrimary: string;
960
- borderPressedPrimary: string;
961
- borderFocusPrimary: string;
962
- borderDisabledPrimary: string;
963
- rippleColorPrimary: string;
964
- colorInfo: string;
965
- colorHoverInfo: string;
966
- colorPressedInfo: string;
967
- colorFocusInfo: string;
968
- colorDisabledInfo: string;
969
- textColorInfo: string;
970
- textColorHoverInfo: string;
971
- textColorPressedInfo: string;
972
- textColorFocusInfo: string;
973
- textColorDisabledInfo: string;
974
- textColorTextInfo: string;
975
- textColorTextHoverInfo: string;
976
- textColorTextPressedInfo: string;
977
- textColorTextFocusInfo: string;
978
- textColorTextDisabledInfo: string;
979
- textColorGhostInfo: string;
980
- textColorGhostHoverInfo: string;
981
- textColorGhostPressedInfo: string;
982
- textColorGhostFocusInfo: string;
983
- textColorGhostDisabledInfo: string;
984
- borderInfo: string;
985
- borderHoverInfo: string;
986
- borderPressedInfo: string;
987
- borderFocusInfo: string;
988
- borderDisabledInfo: string;
989
- rippleColorInfo: string;
990
- colorSuccess: string;
991
- colorHoverSuccess: string;
992
- colorPressedSuccess: string;
993
- colorFocusSuccess: string;
994
- colorDisabledSuccess: string;
995
- textColorSuccess: string;
996
- textColorHoverSuccess: string;
997
- textColorPressedSuccess: string;
998
- textColorFocusSuccess: string;
999
- textColorDisabledSuccess: string;
1000
- textColorTextSuccess: string;
1001
- textColorTextHoverSuccess: string;
1002
- textColorTextPressedSuccess: string;
1003
- textColorTextFocusSuccess: string;
1004
- textColorTextDisabledSuccess: string;
1005
- textColorGhostSuccess: string;
1006
- textColorGhostHoverSuccess: string;
1007
- textColorGhostPressedSuccess: string;
1008
- textColorGhostFocusSuccess: string;
1009
- textColorGhostDisabledSuccess: string;
1010
- borderSuccess: string;
1011
- borderHoverSuccess: string;
1012
- borderPressedSuccess: string;
1013
- borderFocusSuccess: string;
1014
- borderDisabledSuccess: string;
1015
- rippleColorSuccess: string;
1016
- colorWarning: string;
1017
- colorHoverWarning: string;
1018
- colorPressedWarning: string;
1019
- colorFocusWarning: string;
1020
- colorDisabledWarning: string;
1021
- textColorWarning: string;
1022
- textColorHoverWarning: string;
1023
- textColorPressedWarning: string;
1024
- textColorFocusWarning: string;
1025
- textColorDisabledWarning: string;
1026
- textColorTextWarning: string;
1027
- textColorTextHoverWarning: string;
1028
- textColorTextPressedWarning: string;
1029
- textColorTextFocusWarning: string;
1030
- textColorTextDisabledWarning: string;
1031
- textColorGhostWarning: string;
1032
- textColorGhostHoverWarning: string;
1033
- textColorGhostPressedWarning: string;
1034
- textColorGhostFocusWarning: string;
1035
- textColorGhostDisabledWarning: string;
1036
- borderWarning: string;
1037
- borderHoverWarning: string;
1038
- borderPressedWarning: string;
1039
- borderFocusWarning: string;
1040
- borderDisabledWarning: string;
1041
- rippleColorWarning: string;
1042
- colorError: string;
1043
- colorHoverError: string;
1044
- colorPressedError: string;
1045
- colorFocusError: string;
1046
- colorDisabledError: string;
1047
- textColorError: string;
1048
- textColorHoverError: string;
1049
- textColorPressedError: string;
1050
- textColorFocusError: string;
1051
- textColorDisabledError: string;
1052
- textColorTextError: string;
1053
- textColorTextHoverError: string;
1054
- textColorTextPressedError: string;
1055
- textColorTextFocusError: string;
1056
- textColorTextDisabledError: string;
1057
- textColorGhostError: string;
1058
- textColorGhostHoverError: string;
1059
- textColorGhostPressedError: string;
1060
- textColorGhostFocusError: string;
1061
- textColorGhostDisabledError: string;
1062
- borderError: string;
1063
- borderHoverError: string;
1064
- borderPressedError: string;
1065
- borderFocusError: string;
1066
- borderDisabledError: string;
1067
- rippleColorError: string;
1068
- waveOpacity: string;
1069
- fontWeight: string;
1070
- fontWeightStrong: string;
1071
- paddingTiny: string;
1072
- paddingSmall: string;
1073
- paddingMedium: string;
1074
- paddingLarge: string;
1075
- paddingRoundTiny: string;
1076
- paddingRoundSmall: string;
1077
- paddingRoundMedium: string;
1078
- paddingRoundLarge: string;
1079
- iconMarginTiny: string;
1080
- iconMarginSmall: string;
1081
- iconMarginMedium: string;
1082
- iconMarginLarge: string;
1083
- iconSizeTiny: string;
1084
- iconSizeSmall: string;
1085
- iconSizeMedium: string;
1086
- iconSizeLarge: string;
1087
- rippleDuration: string;
1088
- }, any>>;
1089
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1090
- heightTiny: string;
1091
- heightSmall: string;
1092
- heightMedium: string;
1093
- heightLarge: string;
1094
- borderRadiusTiny: string;
1095
- borderRadiusSmall: string;
1096
- borderRadiusMedium: string;
1097
- borderRadiusLarge: string;
1098
- fontSizeTiny: string;
1099
- fontSizeSmall: string;
1100
- fontSizeMedium: string;
1101
- fontSizeLarge: string;
1102
- opacityDisabled: string;
1103
- colorOpacitySecondary: string;
1104
- colorOpacitySecondaryHover: string;
1105
- colorOpacitySecondaryPressed: string;
1106
- colorSecondary: string;
1107
- colorSecondaryHover: string;
1108
- colorSecondaryPressed: string;
1109
- colorTertiary: string;
1110
- colorTertiaryHover: string;
1111
- colorTertiaryPressed: string;
1112
- colorQuaternary: string;
1113
- colorQuaternaryHover: string;
1114
- colorQuaternaryPressed: string;
1115
- color: string;
1116
- colorHover: string;
1117
- colorPressed: string;
1118
- colorFocus: string;
1119
- colorDisabled: string;
1120
- textColor: string;
1121
- textColorTertiary: string;
1122
- textColorHover: string;
1123
- textColorPressed: string;
1124
- textColorFocus: string;
1125
- textColorDisabled: string;
1126
- textColorText: string;
1127
- textColorTextHover: string;
1128
- textColorTextPressed: string;
1129
- textColorTextFocus: string;
1130
- textColorTextDisabled: string;
1131
- textColorGhost: string;
1132
- textColorGhostHover: string;
1133
- textColorGhostPressed: string;
1134
- textColorGhostFocus: string;
1135
- textColorGhostDisabled: string;
1136
- border: string;
1137
- borderHover: string;
1138
- borderPressed: string;
1139
- borderFocus: string;
1140
- borderDisabled: string;
1141
- rippleColor: string;
1142
- colorPrimary: string;
1143
- colorHoverPrimary: string;
1144
- colorPressedPrimary: string;
1145
- colorFocusPrimary: string;
1146
- colorDisabledPrimary: string;
1147
- textColorPrimary: string;
1148
- textColorHoverPrimary: string;
1149
- textColorPressedPrimary: string;
1150
- textColorFocusPrimary: string;
1151
- textColorDisabledPrimary: string;
1152
- textColorTextPrimary: string;
1153
- textColorTextHoverPrimary: string;
1154
- textColorTextPressedPrimary: string;
1155
- textColorTextFocusPrimary: string;
1156
- textColorTextDisabledPrimary: string;
1157
- textColorGhostPrimary: string;
1158
- textColorGhostHoverPrimary: string;
1159
- textColorGhostPressedPrimary: string;
1160
- textColorGhostFocusPrimary: string;
1161
- textColorGhostDisabledPrimary: string;
1162
- borderPrimary: string;
1163
- borderHoverPrimary: string;
1164
- borderPressedPrimary: string;
1165
- borderFocusPrimary: string;
1166
- borderDisabledPrimary: string;
1167
- rippleColorPrimary: string;
1168
- colorInfo: string;
1169
- colorHoverInfo: string;
1170
- colorPressedInfo: string;
1171
- colorFocusInfo: string;
1172
- colorDisabledInfo: string;
1173
- textColorInfo: string;
1174
- textColorHoverInfo: string;
1175
- textColorPressedInfo: string;
1176
- textColorFocusInfo: string;
1177
- textColorDisabledInfo: string;
1178
- textColorTextInfo: string;
1179
- textColorTextHoverInfo: string;
1180
- textColorTextPressedInfo: string;
1181
- textColorTextFocusInfo: string;
1182
- textColorTextDisabledInfo: string;
1183
- textColorGhostInfo: string;
1184
- textColorGhostHoverInfo: string;
1185
- textColorGhostPressedInfo: string;
1186
- textColorGhostFocusInfo: string;
1187
- textColorGhostDisabledInfo: string;
1188
- borderInfo: string;
1189
- borderHoverInfo: string;
1190
- borderPressedInfo: string;
1191
- borderFocusInfo: string;
1192
- borderDisabledInfo: string;
1193
- rippleColorInfo: string;
1194
- colorSuccess: string;
1195
- colorHoverSuccess: string;
1196
- colorPressedSuccess: string;
1197
- colorFocusSuccess: string;
1198
- colorDisabledSuccess: string;
1199
- textColorSuccess: string;
1200
- textColorHoverSuccess: string;
1201
- textColorPressedSuccess: string;
1202
- textColorFocusSuccess: string;
1203
- textColorDisabledSuccess: string;
1204
- textColorTextSuccess: string;
1205
- textColorTextHoverSuccess: string;
1206
- textColorTextPressedSuccess: string;
1207
- textColorTextFocusSuccess: string;
1208
- textColorTextDisabledSuccess: string;
1209
- textColorGhostSuccess: string;
1210
- textColorGhostHoverSuccess: string;
1211
- textColorGhostPressedSuccess: string;
1212
- textColorGhostFocusSuccess: string;
1213
- textColorGhostDisabledSuccess: string;
1214
- borderSuccess: string;
1215
- borderHoverSuccess: string;
1216
- borderPressedSuccess: string;
1217
- borderFocusSuccess: string;
1218
- borderDisabledSuccess: string;
1219
- rippleColorSuccess: string;
1220
- colorWarning: string;
1221
- colorHoverWarning: string;
1222
- colorPressedWarning: string;
1223
- colorFocusWarning: string;
1224
- colorDisabledWarning: string;
1225
- textColorWarning: string;
1226
- textColorHoverWarning: string;
1227
- textColorPressedWarning: string;
1228
- textColorFocusWarning: string;
1229
- textColorDisabledWarning: string;
1230
- textColorTextWarning: string;
1231
- textColorTextHoverWarning: string;
1232
- textColorTextPressedWarning: string;
1233
- textColorTextFocusWarning: string;
1234
- textColorTextDisabledWarning: string;
1235
- textColorGhostWarning: string;
1236
- textColorGhostHoverWarning: string;
1237
- textColorGhostPressedWarning: string;
1238
- textColorGhostFocusWarning: string;
1239
- textColorGhostDisabledWarning: string;
1240
- borderWarning: string;
1241
- borderHoverWarning: string;
1242
- borderPressedWarning: string;
1243
- borderFocusWarning: string;
1244
- borderDisabledWarning: string;
1245
- rippleColorWarning: string;
1246
- colorError: string;
1247
- colorHoverError: string;
1248
- colorPressedError: string;
1249
- colorFocusError: string;
1250
- colorDisabledError: string;
1251
- textColorError: string;
1252
- textColorHoverError: string;
1253
- textColorPressedError: string;
1254
- textColorFocusError: string;
1255
- textColorDisabledError: string;
1256
- textColorTextError: string;
1257
- textColorTextHoverError: string;
1258
- textColorTextPressedError: string;
1259
- textColorTextFocusError: string;
1260
- textColorTextDisabledError: string;
1261
- textColorGhostError: string;
1262
- textColorGhostHoverError: string;
1263
- textColorGhostPressedError: string;
1264
- textColorGhostFocusError: string;
1265
- textColorGhostDisabledError: string;
1266
- borderError: string;
1267
- borderHoverError: string;
1268
- borderPressedError: string;
1269
- borderFocusError: string;
1270
- borderDisabledError: string;
1271
- rippleColorError: string;
1272
- waveOpacity: string;
1273
- fontWeight: string;
1274
- fontWeightStrong: string;
1275
- paddingTiny: string;
1276
- paddingSmall: string;
1277
- paddingMedium: string;
1278
- paddingLarge: string;
1279
- paddingRoundTiny: string;
1280
- paddingRoundSmall: string;
1281
- paddingRoundMedium: string;
1282
- paddingRoundLarge: string;
1283
- iconMarginTiny: string;
1284
- iconMarginSmall: string;
1285
- iconMarginMedium: string;
1286
- iconMarginLarge: string;
1287
- iconSizeTiny: string;
1288
- iconSizeSmall: string;
1289
- iconSizeMedium: string;
1290
- iconSizeLarge: string;
1291
- rippleDuration: string;
1292
- }, any>>>;
1293
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1294
- heightTiny: string;
1295
- heightSmall: string;
1296
- heightMedium: string;
1297
- heightLarge: string;
1298
- borderRadiusTiny: string;
1299
- borderRadiusSmall: string;
1300
- borderRadiusMedium: string;
1301
- borderRadiusLarge: string;
1302
- fontSizeTiny: string;
1303
- fontSizeSmall: string;
1304
- fontSizeMedium: string;
1305
- fontSizeLarge: string;
1306
- opacityDisabled: string;
1307
- colorOpacitySecondary: string;
1308
- colorOpacitySecondaryHover: string;
1309
- colorOpacitySecondaryPressed: string;
1310
- colorSecondary: string;
1311
- colorSecondaryHover: string;
1312
- colorSecondaryPressed: string;
1313
- colorTertiary: string;
1314
- colorTertiaryHover: string;
1315
- colorTertiaryPressed: string;
1316
- colorQuaternary: string;
1317
- colorQuaternaryHover: string;
1318
- colorQuaternaryPressed: string;
1319
- color: string;
1320
- colorHover: string;
1321
- colorPressed: string;
1322
- colorFocus: string;
1323
- colorDisabled: string;
1324
- textColor: string;
1325
- textColorTertiary: string;
1326
- textColorHover: string;
1327
- textColorPressed: string;
1328
- textColorFocus: string;
1329
- textColorDisabled: string;
1330
- textColorText: string;
1331
- textColorTextHover: string;
1332
- textColorTextPressed: string;
1333
- textColorTextFocus: string;
1334
- textColorTextDisabled: string;
1335
- textColorGhost: string;
1336
- textColorGhostHover: string;
1337
- textColorGhostPressed: string;
1338
- textColorGhostFocus: string;
1339
- textColorGhostDisabled: string;
1340
- border: string;
1341
- borderHover: string;
1342
- borderPressed: string;
1343
- borderFocus: string;
1344
- borderDisabled: string;
1345
- rippleColor: string;
1346
- colorPrimary: string;
1347
- colorHoverPrimary: string;
1348
- colorPressedPrimary: string;
1349
- colorFocusPrimary: string;
1350
- colorDisabledPrimary: string;
1351
- textColorPrimary: string;
1352
- textColorHoverPrimary: string;
1353
- textColorPressedPrimary: string;
1354
- textColorFocusPrimary: string;
1355
- textColorDisabledPrimary: string;
1356
- textColorTextPrimary: string;
1357
- textColorTextHoverPrimary: string;
1358
- textColorTextPressedPrimary: string;
1359
- textColorTextFocusPrimary: string;
1360
- textColorTextDisabledPrimary: string;
1361
- textColorGhostPrimary: string;
1362
- textColorGhostHoverPrimary: string;
1363
- textColorGhostPressedPrimary: string;
1364
- textColorGhostFocusPrimary: string;
1365
- textColorGhostDisabledPrimary: string;
1366
- borderPrimary: string;
1367
- borderHoverPrimary: string;
1368
- borderPressedPrimary: string;
1369
- borderFocusPrimary: string;
1370
- borderDisabledPrimary: string;
1371
- rippleColorPrimary: string;
1372
- colorInfo: string;
1373
- colorHoverInfo: string;
1374
- colorPressedInfo: string;
1375
- colorFocusInfo: string;
1376
- colorDisabledInfo: string;
1377
- textColorInfo: string;
1378
- textColorHoverInfo: string;
1379
- textColorPressedInfo: string;
1380
- textColorFocusInfo: string;
1381
- textColorDisabledInfo: string;
1382
- textColorTextInfo: string;
1383
- textColorTextHoverInfo: string;
1384
- textColorTextPressedInfo: string;
1385
- textColorTextFocusInfo: string;
1386
- textColorTextDisabledInfo: string;
1387
- textColorGhostInfo: string;
1388
- textColorGhostHoverInfo: string;
1389
- textColorGhostPressedInfo: string;
1390
- textColorGhostFocusInfo: string;
1391
- textColorGhostDisabledInfo: string;
1392
- borderInfo: string;
1393
- borderHoverInfo: string;
1394
- borderPressedInfo: string;
1395
- borderFocusInfo: string;
1396
- borderDisabledInfo: string;
1397
- rippleColorInfo: string;
1398
- colorSuccess: string;
1399
- colorHoverSuccess: string;
1400
- colorPressedSuccess: string;
1401
- colorFocusSuccess: string;
1402
- colorDisabledSuccess: string;
1403
- textColorSuccess: string;
1404
- textColorHoverSuccess: string;
1405
- textColorPressedSuccess: string;
1406
- textColorFocusSuccess: string;
1407
- textColorDisabledSuccess: string;
1408
- textColorTextSuccess: string;
1409
- textColorTextHoverSuccess: string;
1410
- textColorTextPressedSuccess: string;
1411
- textColorTextFocusSuccess: string;
1412
- textColorTextDisabledSuccess: string;
1413
- textColorGhostSuccess: string;
1414
- textColorGhostHoverSuccess: string;
1415
- textColorGhostPressedSuccess: string;
1416
- textColorGhostFocusSuccess: string;
1417
- textColorGhostDisabledSuccess: string;
1418
- borderSuccess: string;
1419
- borderHoverSuccess: string;
1420
- borderPressedSuccess: string;
1421
- borderFocusSuccess: string;
1422
- borderDisabledSuccess: string;
1423
- rippleColorSuccess: string;
1424
- colorWarning: string;
1425
- colorHoverWarning: string;
1426
- colorPressedWarning: string;
1427
- colorFocusWarning: string;
1428
- colorDisabledWarning: string;
1429
- textColorWarning: string;
1430
- textColorHoverWarning: string;
1431
- textColorPressedWarning: string;
1432
- textColorFocusWarning: string;
1433
- textColorDisabledWarning: string;
1434
- textColorTextWarning: string;
1435
- textColorTextHoverWarning: string;
1436
- textColorTextPressedWarning: string;
1437
- textColorTextFocusWarning: string;
1438
- textColorTextDisabledWarning: string;
1439
- textColorGhostWarning: string;
1440
- textColorGhostHoverWarning: string;
1441
- textColorGhostPressedWarning: string;
1442
- textColorGhostFocusWarning: string;
1443
- textColorGhostDisabledWarning: string;
1444
- borderWarning: string;
1445
- borderHoverWarning: string;
1446
- borderPressedWarning: string;
1447
- borderFocusWarning: string;
1448
- borderDisabledWarning: string;
1449
- rippleColorWarning: string;
1450
- colorError: string;
1451
- colorHoverError: string;
1452
- colorPressedError: string;
1453
- colorFocusError: string;
1454
- colorDisabledError: string;
1455
- textColorError: string;
1456
- textColorHoverError: string;
1457
- textColorPressedError: string;
1458
- textColorFocusError: string;
1459
- textColorDisabledError: string;
1460
- textColorTextError: string;
1461
- textColorTextHoverError: string;
1462
- textColorTextPressedError: string;
1463
- textColorTextFocusError: string;
1464
- textColorTextDisabledError: string;
1465
- textColorGhostError: string;
1466
- textColorGhostHoverError: string;
1467
- textColorGhostPressedError: string;
1468
- textColorGhostFocusError: string;
1469
- textColorGhostDisabledError: string;
1470
- borderError: string;
1471
- borderHoverError: string;
1472
- borderPressedError: string;
1473
- borderFocusError: string;
1474
- borderDisabledError: string;
1475
- rippleColorError: string;
1476
- waveOpacity: string;
1477
- fontWeight: string;
1478
- fontWeightStrong: string;
1479
- paddingTiny: string;
1480
- paddingSmall: string;
1481
- paddingMedium: string;
1482
- paddingLarge: string;
1483
- paddingRoundTiny: string;
1484
- paddingRoundSmall: string;
1485
- paddingRoundMedium: string;
1486
- paddingRoundLarge: string;
1487
- iconMarginTiny: string;
1488
- iconMarginSmall: string;
1489
- iconMarginMedium: string;
1490
- iconMarginLarge: string;
1491
- iconSizeTiny: string;
1492
- iconSizeSmall: string;
1493
- iconSizeMedium: string;
1494
- iconSizeLarge: string;
1495
- rippleDuration: string;
1496
- }, any>>>;
1497
- }>>, {
1498
- readonly type: import("naive-ui/es/button/src/interface").Type;
1499
- readonly tag: keyof HTMLElementTagNameMap;
1500
- readonly block: boolean;
1501
- readonly round: boolean;
1502
- readonly dashed: boolean;
1503
- readonly text: boolean;
1504
- readonly circle: boolean;
1505
- readonly disabled: boolean;
1506
- readonly focusable: boolean;
1507
- readonly strong: boolean;
1508
- readonly loading: boolean;
1509
- readonly bordered: boolean;
1510
- readonly tertiary: boolean;
1511
- readonly ghost: boolean;
1512
- readonly keyboard: boolean;
1513
- readonly secondary: boolean;
1514
- readonly quaternary: boolean;
1515
- readonly iconPlacement: "left" | "right";
1516
- readonly attrType: "button" | "reset" | "submit";
1517
- readonly nativeFocusBehavior: boolean;
1518
- }>;
1519
- NCheckbox: import("vue").DefineComponent<{
1520
- size: import("vue").PropType<"small" | "medium" | "large">;
1521
- checked: {
1522
- type: import("vue").PropType<string | number | boolean | undefined>;
1523
- default: undefined;
1524
- };
1525
- defaultChecked: {
1526
- type: import("vue").PropType<string | number | boolean>;
1527
- default: boolean;
1528
- };
1529
- value: import("vue").PropType<string | number>;
1530
- disabled: {
1531
- type: import("vue").PropType<boolean | undefined>;
1532
- default: undefined;
1533
- };
1534
- indeterminate: BooleanConstructor;
1535
- label: StringConstructor;
1536
- focusable: {
1537
- type: BooleanConstructor;
1538
- default: boolean;
1539
- };
1540
- checkedValue: {
1541
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1542
- default: boolean;
1543
- };
1544
- uncheckedValue: {
1545
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1546
- default: boolean;
1547
- };
1548
- 'onUpdate:checked': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1549
- onUpdateChecked: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1550
- privateInsideTable: BooleanConstructor;
1551
- onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1552
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1553
- labelLineHeight: string;
1554
- fontSizeSmall: string;
1555
- fontSizeMedium: string;
1556
- fontSizeLarge: string;
1557
- borderRadius: string;
1558
- color: string;
1559
- colorChecked: string;
1560
- colorDisabled: string;
1561
- colorDisabledChecked: string;
1562
- colorTableHeader: string;
1563
- colorTableHeaderModal: string;
1564
- colorTableHeaderPopover: string;
1565
- checkMarkColor: string;
1566
- checkMarkColorDisabled: string;
1567
- checkMarkColorDisabledChecked: string;
1568
- border: string;
1569
- borderDisabled: string;
1570
- borderDisabledChecked: string;
1571
- borderChecked: string;
1572
- borderFocus: string;
1573
- boxShadowFocus: string;
1574
- textColor: string;
1575
- textColorDisabled: string;
1576
- sizeSmall: string;
1577
- sizeMedium: string;
1578
- sizeLarge: string;
1579
- labelPadding: string;
1580
- }, any>>;
1581
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1582
- labelLineHeight: string;
1583
- fontSizeSmall: string;
1584
- fontSizeMedium: string;
1585
- fontSizeLarge: string;
1586
- borderRadius: string;
1587
- color: string;
1588
- colorChecked: string;
1589
- colorDisabled: string;
1590
- colorDisabledChecked: string;
1591
- colorTableHeader: string;
1592
- colorTableHeaderModal: string;
1593
- colorTableHeaderPopover: string;
1594
- checkMarkColor: string;
1595
- checkMarkColorDisabled: string;
1596
- checkMarkColorDisabledChecked: string;
1597
- border: string;
1598
- borderDisabled: string;
1599
- borderDisabledChecked: string;
1600
- borderChecked: string;
1601
- borderFocus: string;
1602
- boxShadowFocus: string;
1603
- textColor: string;
1604
- textColorDisabled: string;
1605
- sizeSmall: string;
1606
- sizeMedium: string;
1607
- sizeLarge: string;
1608
- labelPadding: string;
1609
- }, any>>>;
1610
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1611
- labelLineHeight: string;
1612
- fontSizeSmall: string;
1613
- fontSizeMedium: string;
1614
- fontSizeLarge: string;
1615
- borderRadius: string;
1616
- color: string;
1617
- colorChecked: string;
1618
- colorDisabled: string;
1619
- colorDisabledChecked: string;
1620
- colorTableHeader: string;
1621
- colorTableHeaderModal: string;
1622
- colorTableHeaderPopover: string;
1623
- checkMarkColor: string;
1624
- checkMarkColorDisabled: string;
1625
- checkMarkColorDisabledChecked: string;
1626
- border: string;
1627
- borderDisabled: string;
1628
- borderDisabledChecked: string;
1629
- borderChecked: string;
1630
- borderFocus: string;
1631
- boxShadowFocus: string;
1632
- textColor: string;
1633
- textColorDisabled: string;
1634
- sizeSmall: string;
1635
- sizeMedium: string;
1636
- sizeLarge: string;
1637
- labelPadding: string;
1638
- }, any>>>;
1639
- }, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
1640
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1641
- selfRef: import("vue").Ref<HTMLDivElement | null>;
1642
- mergedClsPrefix: import("vue").ComputedRef<string>;
1643
- mergedDisabled: import("vue").ComputedRef<boolean>;
1644
- renderedChecked: import("vue").ComputedRef<boolean>;
1645
- mergedTheme: import("vue").ComputedRef<{
1646
- common: {
1647
- baseColor: string;
1648
- primaryColor: string;
1649
- primaryColorHover: string;
1650
- primaryColorPressed: string;
1651
- primaryColorSuppl: string;
1652
- infoColor: string;
1653
- infoColorHover: string;
1654
- infoColorPressed: string;
1655
- infoColorSuppl: string;
1656
- successColor: string;
1657
- successColorHover: string;
1658
- successColorPressed: string;
1659
- successColorSuppl: string;
1660
- warningColor: string;
1661
- warningColorHover: string;
1662
- warningColorPressed: string;
1663
- warningColorSuppl: string;
1664
- errorColor: string;
1665
- errorColorHover: string;
1666
- errorColorPressed: string;
1667
- errorColorSuppl: string;
1668
- textColorBase: string;
1669
- textColor1: string;
1670
- textColor2: string;
1671
- textColor3: string;
1672
- textColorDisabled: string;
1673
- placeholderColor: string;
1674
- placeholderColorDisabled: string;
1675
- iconColor: string;
1676
- iconColorHover: string;
1677
- iconColorPressed: string;
1678
- iconColorDisabled: string;
1679
- opacity1: string;
1680
- opacity2: string;
1681
- opacity3: string;
1682
- opacity4: string;
1683
- opacity5: string;
1684
- dividerColor: string;
1685
- borderColor: string;
1686
- closeIconColor: string;
1687
- closeIconColorHover: string;
1688
- closeIconColorPressed: string;
1689
- closeColorHover: string;
1690
- closeColorPressed: string;
1691
- clearColor: string;
1692
- clearColorHover: string;
1693
- clearColorPressed: string;
1694
- scrollbarColor: string;
1695
- scrollbarColorHover: string;
1696
- scrollbarWidth: string;
1697
- scrollbarHeight: string;
1698
- scrollbarBorderRadius: string;
1699
- progressRailColor: string;
1700
- railColor: string;
1701
- popoverColor: string;
1702
- tableColor: string;
1703
- cardColor: string;
1704
- modalColor: string;
1705
- bodyColor: string;
1706
- tagColor: string;
1707
- avatarColor: string;
1708
- invertedColor: string;
1709
- inputColor: string;
1710
- codeColor: string;
1711
- tabColor: string;
1712
- actionColor: string;
1713
- tableHeaderColor: string;
1714
- hoverColor: string;
1715
- tableColorHover: string;
1716
- tableColorStriped: string;
1717
- pressedColor: string;
1718
- opacityDisabled: string;
1719
- inputColorDisabled: string;
1720
- buttonColor2: string;
1721
- buttonColor2Hover: string;
1722
- buttonColor2Pressed: string;
1723
- boxShadow1: string;
1724
- boxShadow2: string;
1725
- boxShadow3: string;
1726
- fontFamily: string;
1727
- fontFamilyMono: string;
1728
- fontWeight: string;
1729
- fontWeightStrong: string;
1730
- cubicBezierEaseInOut: string;
1731
- cubicBezierEaseOut: string;
1732
- cubicBezierEaseIn: string;
1733
- borderRadius: string;
1734
- borderRadiusSmall: string;
1735
- fontSize: string;
1736
- fontSizeMini: string;
1737
- fontSizeTiny: string;
1738
- fontSizeSmall: string;
1739
- fontSizeMedium: string;
1740
- fontSizeLarge: string;
1741
- fontSizeHuge: string;
1742
- lineHeight: string;
1743
- heightMini: string;
1744
- heightTiny: string;
1745
- heightSmall: string;
1746
- heightMedium: string;
1747
- heightLarge: string;
1748
- heightHuge: string;
1749
- name: "common";
1750
- };
1751
- self: {
1752
- labelLineHeight: string;
1753
- fontSizeSmall: string;
1754
- fontSizeMedium: string;
1755
- fontSizeLarge: string;
1756
- borderRadius: string;
1757
- color: string;
1758
- colorChecked: string;
1759
- colorDisabled: string;
1760
- colorDisabledChecked: string;
1761
- colorTableHeader: string;
1762
- colorTableHeaderModal: string;
1763
- colorTableHeaderPopover: string;
1764
- checkMarkColor: string;
1765
- checkMarkColorDisabled: string;
1766
- checkMarkColorDisabledChecked: string;
1767
- border: string;
1768
- borderDisabled: string;
1769
- borderDisabledChecked: string;
1770
- borderChecked: string;
1771
- borderFocus: string;
1772
- boxShadowFocus: string;
1773
- textColor: string;
1774
- textColorDisabled: string;
1775
- sizeSmall: string;
1776
- sizeMedium: string;
1777
- sizeLarge: string;
1778
- labelPadding: string;
1779
- };
1780
- peers: any;
1781
- peerOverrides: {
1782
- [x: string]: any;
1783
- };
1784
- }>;
1785
- labelId: string;
1786
- handleClick: (e: MouseEvent) => void;
1787
- handleKeyUp: (e: KeyboardEvent) => void;
1788
- handleKeyDown: (e: KeyboardEvent) => void;
1789
- cssVars: import("vue").ComputedRef<{
1790
- '--n-label-line-height': string;
1791
- '--n-size': string;
1792
- '--n-bezier': string;
1793
- '--n-border-radius': string;
1794
- '--n-border': string;
1795
- '--n-border-checked': string;
1796
- '--n-border-focus': string;
1797
- '--n-border-disabled': string;
1798
- '--n-border-disabled-checked': string;
1799
- '--n-box-shadow-focus': string;
1800
- '--n-color': string;
1801
- '--n-color-checked': string;
1802
- '--n-color-table': string;
1803
- '--n-color-table-modal': string;
1804
- '--n-color-table-popover': string;
1805
- '--n-color-disabled': string;
1806
- '--n-color-disabled-checked': string;
1807
- '--n-text-color': string;
1808
- '--n-text-color-disabled': string;
1809
- '--n-check-mark-color': string;
1810
- '--n-check-mark-color-disabled': string;
1811
- '--n-check-mark-color-disabled-checked': string;
1812
- '--n-font-size': string;
1813
- '--n-label-padding': string;
1814
- }> | undefined;
1815
- themeClass: import("vue").Ref<string> | undefined;
1816
- onRender: (() => void) | undefined;
1817
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1818
- size: import("vue").PropType<"small" | "medium" | "large">;
1819
- checked: {
1820
- type: import("vue").PropType<string | number | boolean | undefined>;
1821
- default: undefined;
1822
- };
1823
- defaultChecked: {
1824
- type: import("vue").PropType<string | number | boolean>;
1825
- default: boolean;
1826
- };
1827
- value: import("vue").PropType<string | number>;
1828
- disabled: {
1829
- type: import("vue").PropType<boolean | undefined>;
1830
- default: undefined;
1831
- };
1832
- indeterminate: BooleanConstructor;
1833
- label: StringConstructor;
1834
- focusable: {
1835
- type: BooleanConstructor;
1836
- default: boolean;
1837
- };
1838
- checkedValue: {
1839
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1840
- default: boolean;
1841
- };
1842
- uncheckedValue: {
1843
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1844
- default: boolean;
1845
- };
1846
- 'onUpdate:checked': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1847
- onUpdateChecked: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1848
- privateInsideTable: BooleanConstructor;
1849
- onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1850
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1851
- labelLineHeight: string;
1852
- fontSizeSmall: string;
1853
- fontSizeMedium: string;
1854
- fontSizeLarge: string;
1855
- borderRadius: string;
1856
- color: string;
1857
- colorChecked: string;
1858
- colorDisabled: string;
1859
- colorDisabledChecked: string;
1860
- colorTableHeader: string;
1861
- colorTableHeaderModal: string;
1862
- colorTableHeaderPopover: string;
1863
- checkMarkColor: string;
1864
- checkMarkColorDisabled: string;
1865
- checkMarkColorDisabledChecked: string;
1866
- border: string;
1867
- borderDisabled: string;
1868
- borderDisabledChecked: string;
1869
- borderChecked: string;
1870
- borderFocus: string;
1871
- boxShadowFocus: string;
1872
- textColor: string;
1873
- textColorDisabled: string;
1874
- sizeSmall: string;
1875
- sizeMedium: string;
1876
- sizeLarge: string;
1877
- labelPadding: string;
1878
- }, any>>;
1879
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1880
- labelLineHeight: string;
1881
- fontSizeSmall: string;
1882
- fontSizeMedium: string;
1883
- fontSizeLarge: string;
1884
- borderRadius: string;
1885
- color: string;
1886
- colorChecked: string;
1887
- colorDisabled: string;
1888
- colorDisabledChecked: string;
1889
- colorTableHeader: string;
1890
- colorTableHeaderModal: string;
1891
- colorTableHeaderPopover: string;
1892
- checkMarkColor: string;
1893
- checkMarkColorDisabled: string;
1894
- checkMarkColorDisabledChecked: string;
1895
- border: string;
1896
- borderDisabled: string;
1897
- borderDisabledChecked: string;
1898
- borderChecked: string;
1899
- borderFocus: string;
1900
- boxShadowFocus: string;
1901
- textColor: string;
1902
- textColorDisabled: string;
1903
- sizeSmall: string;
1904
- sizeMedium: string;
1905
- sizeLarge: string;
1906
- labelPadding: string;
1907
- }, any>>>;
1908
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1909
- labelLineHeight: string;
1910
- fontSizeSmall: string;
1911
- fontSizeMedium: string;
1912
- fontSizeLarge: string;
1913
- borderRadius: string;
1914
- color: string;
1915
- colorChecked: string;
1916
- colorDisabled: string;
1917
- colorDisabledChecked: string;
1918
- colorTableHeader: string;
1919
- colorTableHeaderModal: string;
1920
- colorTableHeaderPopover: string;
1921
- checkMarkColor: string;
1922
- checkMarkColorDisabled: string;
1923
- checkMarkColorDisabledChecked: string;
1924
- border: string;
1925
- borderDisabled: string;
1926
- borderDisabledChecked: string;
1927
- borderChecked: string;
1928
- borderFocus: string;
1929
- boxShadowFocus: string;
1930
- textColor: string;
1931
- textColorDisabled: string;
1932
- sizeSmall: string;
1933
- sizeMedium: string;
1934
- sizeLarge: string;
1935
- labelPadding: string;
1936
- }, any>>>;
1937
- }>>, {
1938
- disabled: boolean | undefined;
1939
- checked: string | number | boolean | undefined;
1940
- indeterminate: boolean;
1941
- focusable: boolean;
1942
- defaultChecked: string | number | boolean;
1943
- checkedValue: string | number | boolean;
1944
- uncheckedValue: string | number | boolean;
1945
- privateInsideTable: boolean;
1946
- }>;
1947
- NSpin: import("vue").DefineComponent<{
1948
- description: StringConstructor;
1949
- stroke: StringConstructor;
1950
- size: {
1951
- type: import("vue").PropType<number | "small" | "medium" | "large">;
1952
- default: string;
1953
- };
1954
- show: {
1955
- type: BooleanConstructor;
1956
- default: boolean;
1957
- };
1958
- strokeWidth: NumberConstructor;
1959
- rotate: {
1960
- type: BooleanConstructor;
1961
- default: boolean;
1962
- };
1963
- spinning: {
1964
- type: BooleanConstructor;
1965
- validator: () => boolean;
1966
- default: undefined;
1967
- };
1968
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
1969
- fontSize: string;
1970
- textColor: string;
1971
- sizeTiny: string;
1972
- sizeSmall: string;
1973
- sizeMedium: string;
1974
- sizeLarge: string;
1975
- sizeHuge: string;
1976
- color: string;
1977
- opacitySpinning: string;
1978
- }, any>>;
1979
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1980
- fontSize: string;
1981
- textColor: string;
1982
- sizeTiny: string;
1983
- sizeSmall: string;
1984
- sizeMedium: string;
1985
- sizeLarge: string;
1986
- sizeHuge: string;
1987
- color: string;
1988
- opacitySpinning: string;
1989
- }, any>>>;
1990
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1991
- fontSize: string;
1992
- textColor: string;
1993
- sizeTiny: string;
1994
- sizeSmall: string;
1995
- sizeMedium: string;
1996
- sizeLarge: string;
1997
- sizeHuge: string;
1998
- color: string;
1999
- opacitySpinning: string;
2000
- }, any>>>;
2001
- }, {
2002
- mergedClsPrefix: import("vue").ComputedRef<string>;
2003
- compitableShow: import("vue").ComputedRef<boolean>;
2004
- mergedStrokeWidth: import("vue").ComputedRef<number>;
2005
- cssVars: import("vue").ComputedRef<{
2006
- '--n-bezier': string;
2007
- '--n-opacity-spinning': string;
2008
- '--n-size': string;
2009
- '--n-color': string;
2010
- '--n-text-color': string;
2011
- }> | undefined;
2012
- themeClass: import("vue").Ref<string> | undefined;
2013
- onRender: (() => void) | undefined;
2014
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2015
- description: StringConstructor;
2016
- stroke: StringConstructor;
2017
- size: {
2018
- type: import("vue").PropType<number | "small" | "medium" | "large">;
2019
- default: string;
2020
- };
2021
- show: {
2022
- type: BooleanConstructor;
2023
- default: boolean;
2024
- };
2025
- strokeWidth: NumberConstructor;
2026
- rotate: {
2027
- type: BooleanConstructor;
2028
- default: boolean;
2029
- };
2030
- spinning: {
2031
- type: BooleanConstructor;
2032
- validator: () => boolean;
2033
- default: undefined;
2034
- };
2035
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
2036
- fontSize: string;
2037
- textColor: string;
2038
- sizeTiny: string;
2039
- sizeSmall: string;
2040
- sizeMedium: string;
2041
- sizeLarge: string;
2042
- sizeHuge: string;
2043
- color: string;
2044
- opacitySpinning: string;
2045
- }, any>>;
2046
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2047
- fontSize: string;
2048
- textColor: string;
2049
- sizeTiny: string;
2050
- sizeSmall: string;
2051
- sizeMedium: string;
2052
- sizeLarge: string;
2053
- sizeHuge: string;
2054
- color: string;
2055
- opacitySpinning: string;
2056
- }, any>>>;
2057
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2058
- fontSize: string;
2059
- textColor: string;
2060
- sizeTiny: string;
2061
- sizeSmall: string;
2062
- sizeMedium: string;
2063
- sizeLarge: string;
2064
- sizeHuge: string;
2065
- color: string;
2066
- opacitySpinning: string;
2067
- }, any>>>;
2068
- }>>, {
2069
- size: number | "small" | "medium" | "large";
2070
- show: boolean;
2071
- rotate: boolean;
2072
- spinning: boolean;
2073
- }>;
2074
- NTooltip: import("vue").DefineComponent<{
2075
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2076
- borderRadius: string;
2077
- boxShadow: string;
2078
- color: string;
2079
- textColor: string;
2080
- padding: string;
2081
- }, {
2082
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2083
- fontSize: string;
2084
- borderRadius: string;
2085
- color: string;
2086
- dividerColor: string;
2087
- textColor: string;
2088
- boxShadow: string;
2089
- space: string;
2090
- spaceArrow: string;
2091
- arrowOffset: string;
2092
- arrowOffsetVertical: string;
2093
- arrowHeight: string;
2094
- padding: string;
2095
- }, any>;
2096
- }>>;
2097
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2098
- borderRadius: string;
2099
- boxShadow: string;
2100
- color: string;
2101
- textColor: string;
2102
- padding: string;
2103
- }, {
2104
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2105
- fontSize: string;
2106
- borderRadius: string;
2107
- color: string;
2108
- dividerColor: string;
2109
- textColor: string;
2110
- boxShadow: string;
2111
- space: string;
2112
- spaceArrow: string;
2113
- arrowOffset: string;
2114
- arrowOffsetVertical: string;
2115
- arrowHeight: string;
2116
- padding: string;
2117
- }, any>;
2118
- }>>>;
2119
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2120
- borderRadius: string;
2121
- boxShadow: string;
2122
- color: string;
2123
- textColor: string;
2124
- padding: string;
2125
- }, {
2126
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2127
- fontSize: string;
2128
- borderRadius: string;
2129
- color: string;
2130
- dividerColor: string;
2131
- textColor: string;
2132
- boxShadow: string;
2133
- space: string;
2134
- spaceArrow: string;
2135
- arrowOffset: string;
2136
- arrowOffsetVertical: string;
2137
- arrowHeight: string;
2138
- padding: string;
2139
- }, any>;
2140
- }>>>;
2141
- show: {
2142
- type: import("vue").PropType<boolean | undefined>;
2143
- default: undefined;
2144
- };
2145
- defaultShow: BooleanConstructor;
2146
- showArrow: {
2147
- type: BooleanConstructor;
2148
- default: boolean;
2149
- };
2150
- trigger: {
2151
- type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
2152
- default: string;
2153
- };
2154
- delay: {
2155
- type: NumberConstructor;
2156
- default: number;
2157
- };
2158
- duration: {
2159
- type: NumberConstructor;
2160
- default: number;
2161
- };
2162
- raw: BooleanConstructor;
2163
- placement: {
2164
- type: import("vue").PropType<import("vueuc").FollowerPlacement>;
2165
- default: string;
2166
- };
2167
- x: NumberConstructor;
2168
- y: NumberConstructor;
2169
- arrowPointToCenter: BooleanConstructor;
2170
- disabled: BooleanConstructor;
2171
- getDisabled: import("vue").PropType<() => boolean>;
2172
- displayDirective: {
2173
- type: import("vue").PropType<"show" | "if">;
2174
- default: string;
2175
- };
2176
- arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2177
- flip: {
2178
- type: BooleanConstructor;
2179
- default: boolean;
2180
- };
2181
- animated: {
2182
- type: BooleanConstructor;
2183
- default: boolean;
2184
- };
2185
- width: {
2186
- type: import("vue").PropType<number | "trigger">;
2187
- default: undefined;
2188
- };
2189
- overlap: BooleanConstructor;
2190
- keepAliveOnHover: {
2191
- type: BooleanConstructor;
2192
- default: boolean;
2193
- };
2194
- zIndex: NumberConstructor;
2195
- to: {
2196
- type: import("vue").PropType<string | boolean | HTMLElement>;
2197
- default: undefined;
2198
- };
2199
- scrollable: BooleanConstructor;
2200
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2201
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2202
- onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
2203
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2204
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2205
- internalSyncTargetWithParent: BooleanConstructor;
2206
- internalInheritedEventHandlers: {
2207
- type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2208
- default: () => never[];
2209
- };
2210
- internalTrapFocus: BooleanConstructor;
2211
- internalExtraClass: {
2212
- type: import("vue").PropType<string[]>;
2213
- default: () => never[];
2214
- };
2215
- onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2216
- onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2217
- arrow: {
2218
- type: import("vue").PropType<boolean | undefined>;
2219
- default: undefined;
2220
- };
2221
- minWidth: NumberConstructor;
2222
- maxWidth: NumberConstructor;
2223
- }, {
2224
- popoverRef: import("vue").Ref<{
2225
- syncPosition: () => void;
2226
- setShow: (value: boolean) => void;
2227
- } | null>;
2228
- mergedTheme: import("vue").ComputedRef<{
2229
- common: {
2230
- baseColor: string;
2231
- primaryColor: string;
2232
- primaryColorHover: string;
2233
- primaryColorPressed: string;
2234
- primaryColorSuppl: string;
2235
- infoColor: string;
2236
- infoColorHover: string;
2237
- infoColorPressed: string;
2238
- infoColorSuppl: string;
2239
- successColor: string;
2240
- successColorHover: string;
2241
- successColorPressed: string;
2242
- successColorSuppl: string;
2243
- warningColor: string;
2244
- warningColorHover: string;
2245
- warningColorPressed: string;
2246
- warningColorSuppl: string;
2247
- errorColor: string;
2248
- errorColorHover: string;
2249
- errorColorPressed: string;
2250
- errorColorSuppl: string;
2251
- textColorBase: string;
2252
- textColor1: string;
2253
- textColor2: string;
2254
- textColor3: string;
2255
- textColorDisabled: string;
2256
- placeholderColor: string;
2257
- placeholderColorDisabled: string;
2258
- iconColor: string;
2259
- iconColorHover: string;
2260
- iconColorPressed: string;
2261
- iconColorDisabled: string;
2262
- opacity1: string;
2263
- opacity2: string;
2264
- opacity3: string;
2265
- opacity4: string;
2266
- opacity5: string;
2267
- dividerColor: string;
2268
- borderColor: string;
2269
- closeIconColor: string;
2270
- closeIconColorHover: string;
2271
- closeIconColorPressed: string;
2272
- closeColorHover: string;
2273
- closeColorPressed: string;
2274
- clearColor: string;
2275
- clearColorHover: string;
2276
- clearColorPressed: string;
2277
- scrollbarColor: string;
2278
- scrollbarColorHover: string;
2279
- scrollbarWidth: string;
2280
- scrollbarHeight: string;
2281
- scrollbarBorderRadius: string;
2282
- progressRailColor: string;
2283
- railColor: string;
2284
- popoverColor: string;
2285
- tableColor: string;
2286
- cardColor: string;
2287
- modalColor: string;
2288
- bodyColor: string;
2289
- tagColor: string;
2290
- avatarColor: string;
2291
- invertedColor: string;
2292
- inputColor: string;
2293
- codeColor: string;
2294
- tabColor: string;
2295
- actionColor: string;
2296
- tableHeaderColor: string;
2297
- hoverColor: string;
2298
- tableColorHover: string;
2299
- tableColorStriped: string;
2300
- pressedColor: string;
2301
- opacityDisabled: string;
2302
- inputColorDisabled: string;
2303
- buttonColor2: string;
2304
- buttonColor2Hover: string;
2305
- buttonColor2Pressed: string;
2306
- boxShadow1: string;
2307
- boxShadow2: string;
2308
- boxShadow3: string;
2309
- fontFamily: string;
2310
- fontFamilyMono: string;
2311
- fontWeight: string;
2312
- fontWeightStrong: string;
2313
- cubicBezierEaseInOut: string;
2314
- cubicBezierEaseOut: string;
2315
- cubicBezierEaseIn: string;
2316
- borderRadius: string;
2317
- borderRadiusSmall: string;
2318
- fontSize: string;
2319
- fontSizeMini: string;
2320
- fontSizeTiny: string;
2321
- fontSizeSmall: string;
2322
- fontSizeMedium: string;
2323
- fontSizeLarge: string;
2324
- fontSizeHuge: string;
2325
- lineHeight: string;
2326
- heightMini: string;
2327
- heightTiny: string;
2328
- heightSmall: string;
2329
- heightMedium: string;
2330
- heightLarge: string;
2331
- heightHuge: string;
2332
- name: "common";
2333
- };
2334
- self: {
2335
- borderRadius: string;
2336
- boxShadow: string;
2337
- color: string;
2338
- textColor: string;
2339
- padding: string;
2340
- };
2341
- peers: {
2342
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2343
- fontSize: string;
2344
- borderRadius: string;
2345
- color: string;
2346
- dividerColor: string;
2347
- textColor: string;
2348
- boxShadow: string;
2349
- space: string;
2350
- spaceArrow: string;
2351
- arrowOffset: string;
2352
- arrowOffsetVertical: string;
2353
- arrowHeight: string;
2354
- padding: string;
2355
- }, any>;
2356
- };
2357
- peerOverrides: {
2358
- Popover?: {
2359
- peers?: {
2360
- [x: string]: any;
2361
- } | undefined;
2362
- } | undefined;
2363
- };
2364
- }>;
2365
- popoverThemeOverrides: import("vue").ComputedRef<{
2366
- borderRadius: string;
2367
- boxShadow: string;
2368
- color: string;
2369
- textColor: string;
2370
- padding: string;
2371
- }>;
2372
- syncPosition: () => void;
2373
- setShow: (value: boolean) => void;
2374
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2375
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2376
- borderRadius: string;
2377
- boxShadow: string;
2378
- color: string;
2379
- textColor: string;
2380
- padding: string;
2381
- }, {
2382
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2383
- fontSize: string;
2384
- borderRadius: string;
2385
- color: string;
2386
- dividerColor: string;
2387
- textColor: string;
2388
- boxShadow: string;
2389
- space: string;
2390
- spaceArrow: string;
2391
- arrowOffset: string;
2392
- arrowOffsetVertical: string;
2393
- arrowHeight: string;
2394
- padding: string;
2395
- }, any>;
2396
- }>>;
2397
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2398
- borderRadius: string;
2399
- boxShadow: string;
2400
- color: string;
2401
- textColor: string;
2402
- padding: string;
2403
- }, {
2404
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2405
- fontSize: string;
2406
- borderRadius: string;
2407
- color: string;
2408
- dividerColor: string;
2409
- textColor: string;
2410
- boxShadow: string;
2411
- space: string;
2412
- spaceArrow: string;
2413
- arrowOffset: string;
2414
- arrowOffsetVertical: string;
2415
- arrowHeight: string;
2416
- padding: string;
2417
- }, any>;
2418
- }>>>;
2419
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2420
- borderRadius: string;
2421
- boxShadow: string;
2422
- color: string;
2423
- textColor: string;
2424
- padding: string;
2425
- }, {
2426
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2427
- fontSize: string;
2428
- borderRadius: string;
2429
- color: string;
2430
- dividerColor: string;
2431
- textColor: string;
2432
- boxShadow: string;
2433
- space: string;
2434
- spaceArrow: string;
2435
- arrowOffset: string;
2436
- arrowOffsetVertical: string;
2437
- arrowHeight: string;
2438
- padding: string;
2439
- }, any>;
2440
- }>>>;
2441
- show: {
2442
- type: import("vue").PropType<boolean | undefined>;
2443
- default: undefined;
2444
- };
2445
- defaultShow: BooleanConstructor;
2446
- showArrow: {
2447
- type: BooleanConstructor;
2448
- default: boolean;
2449
- };
2450
- trigger: {
2451
- type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
2452
- default: string;
2453
- };
2454
- delay: {
2455
- type: NumberConstructor;
2456
- default: number;
2457
- };
2458
- duration: {
2459
- type: NumberConstructor;
2460
- default: number;
2461
- };
2462
- raw: BooleanConstructor;
2463
- placement: {
2464
- type: import("vue").PropType<import("vueuc").FollowerPlacement>;
2465
- default: string;
2466
- };
2467
- x: NumberConstructor;
2468
- y: NumberConstructor;
2469
- arrowPointToCenter: BooleanConstructor;
2470
- disabled: BooleanConstructor;
2471
- getDisabled: import("vue").PropType<() => boolean>;
2472
- displayDirective: {
2473
- type: import("vue").PropType<"show" | "if">;
2474
- default: string;
2475
- };
2476
- arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2477
- flip: {
2478
- type: BooleanConstructor;
2479
- default: boolean;
2480
- };
2481
- animated: {
2482
- type: BooleanConstructor;
2483
- default: boolean;
2484
- };
2485
- width: {
2486
- type: import("vue").PropType<number | "trigger">;
2487
- default: undefined;
2488
- };
2489
- overlap: BooleanConstructor;
2490
- keepAliveOnHover: {
2491
- type: BooleanConstructor;
2492
- default: boolean;
2493
- };
2494
- zIndex: NumberConstructor;
2495
- to: {
2496
- type: import("vue").PropType<string | boolean | HTMLElement>;
2497
- default: undefined;
2498
- };
2499
- scrollable: BooleanConstructor;
2500
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2501
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2502
- onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
2503
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2504
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2505
- internalSyncTargetWithParent: BooleanConstructor;
2506
- internalInheritedEventHandlers: {
2507
- type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2508
- default: () => never[];
2509
- };
2510
- internalTrapFocus: BooleanConstructor;
2511
- internalExtraClass: {
2512
- type: import("vue").PropType<string[]>;
2513
- default: () => never[];
2514
- };
2515
- onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2516
- onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2517
- arrow: {
2518
- type: import("vue").PropType<boolean | undefined>;
2519
- default: undefined;
2520
- };
2521
- minWidth: NumberConstructor;
2522
- maxWidth: NumberConstructor;
2523
- }>>, {
2524
- show: boolean | undefined;
2525
- flip: boolean;
2526
- width: number | "trigger";
2527
- disabled: boolean;
2528
- duration: number;
2529
- to: string | boolean | HTMLElement;
2530
- raw: boolean;
2531
- placement: import("vueuc").FollowerPlacement;
2532
- overlap: boolean;
2533
- scrollable: boolean;
2534
- trigger: import("naive-ui").PopoverTrigger;
2535
- showArrow: boolean;
2536
- delay: number;
2537
- arrowPointToCenter: boolean;
2538
- displayDirective: "show" | "if";
2539
- keepAliveOnHover: boolean;
2540
- animated: boolean;
2541
- internalTrapFocus: boolean;
2542
- defaultShow: boolean;
2543
- internalSyncTargetWithParent: boolean;
2544
- internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
2545
- internalExtraClass: string[];
2546
- arrow: boolean | undefined;
2547
- }>;
2548
- draggable: import("vue").DefineComponent<{
2549
- list: {
2550
- type: ArrayConstructor;
2551
- required: boolean;
2552
- default: any;
2553
- };
2554
- modelValue: {
2555
- type: ArrayConstructor;
2556
- required: boolean;
2557
- default: any;
2558
- };
2559
- itemKey: {
2560
- type: (StringConstructor | FunctionConstructor)[];
2561
- required: boolean;
2562
- };
2563
- clone: {
2564
- type: FunctionConstructor;
2565
- default: (original: any) => any;
2566
- };
2567
- tag: {
2568
- type: StringConstructor;
2569
- default: string;
2570
- };
2571
- move: {
2572
- type: FunctionConstructor;
2573
- default: any;
2574
- };
2575
- componentData: {
2576
- type: ObjectConstructor;
2577
- required: boolean;
2578
- default: any;
2579
- };
2580
- }, unknown, {
2581
- error: boolean;
2582
- }, {
2583
- realList(): any;
2584
- getKey(): any;
2585
- }, {
2586
- getUnderlyingVm(domElement: any): any;
2587
- getUnderlyingPotencialDraggableComponent(htmElement: any): any;
2588
- emitChanges(evt: any): void;
2589
- alterList(onList: any): void;
2590
- spliceList(): void;
2591
- updatePosition(oldIndex: any, newIndex: any): void;
2592
- getRelatedContextFromMoveEvent({ to, related }: {
2593
- to: any;
2594
- related: any;
2595
- }): any;
2596
- getVmIndexFromDomIndex(domIndex: any): any;
2597
- onDragStart(evt: any): void;
2598
- onDragAdd(evt: any): void;
2599
- onDragRemove(evt: any): void;
2600
- onDragUpdate(evt: any): void;
2601
- computeFutureIndex(relatedContext: any, evt: any): any;
2602
- onDragMove(evt: any, originalEvent: any): any;
2603
- onDragEnd(): void;
2604
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
2605
- move: Function;
2606
- tag: string;
2607
- clone: Function;
2608
- list: unknown[];
2609
- modelValue: unknown[];
2610
- componentData: Record<string, any>;
2611
- } & {
2612
- itemKey?: string | Function | undefined;
2613
- }>, {
2614
- move: Function;
2615
- tag: string;
2616
- clone: Function;
2617
- list: unknown[];
2618
- modelValue: unknown[];
2619
- componentData: Record<string, any>;
2620
- }>;
2621
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "onClose")[], "onSave" | "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2622
- fields: {
2623
- type: import("vue").PropType<any[]>;
2624
- default: () => never[];
2625
- };
2626
- menuSource: {
2627
- type: StringConstructor;
2628
- default: string;
2629
- };
2630
- drawerDirection: {
2631
- type: StringConstructor;
2632
- default: string;
2633
- };
2634
- footerFlag: {
2635
- type: BooleanConstructor;
2636
- default: boolean;
2637
- };
2638
- }>> & {
2639
- onOnSave?: ((...args: any[]) => any) | undefined;
2640
- onOnClose?: ((...args: any[]) => any) | undefined;
2641
- }, {
2642
- fields: any[];
2643
- menuSource: string;
2644
- drawerDirection: string;
2645
- footerFlag: boolean;
2646
- }>>;
2647
- export default FieldSet;