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