cnhis-design-vue 3.1.17 → 3.1.18-beta.11

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 (1130) hide show
  1. package/es/components/annotation-edit/index.d.ts +17 -0
  2. package/es/components/annotation-edit/index.js +1 -0
  3. package/es/components/annotation-edit/index2.js +10 -0
  4. package/es/{packages → components}/annotation-edit/src/AnnotationEdit.d.ts +0 -0
  5. package/es/{packages → components}/annotation-edit/src/AnnotationEdit.js +0 -0
  6. package/es/components/annotation-edit/style/index.css +1 -0
  7. package/es/components/big-table/index.d.ts +1183 -0
  8. package/es/components/big-table/index.js +2 -0
  9. package/es/components/big-table/index2.js +19 -0
  10. package/es/{packages → components}/big-table/src/BigTable.js +0 -0
  11. package/es/components/big-table/src/BigTable.vue.d.ts +1181 -0
  12. package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +2432 -0
  13. package/es/{packages → components}/big-table/src/bigTableEmits.d.ts +0 -0
  14. package/es/components/big-table/src/bigTableEmits.js +1 -0
  15. package/es/{packages/big-table/src/bigTableEmits.js → components/big-table/src/bigTableEmits2.js} +0 -0
  16. package/es/components/big-table/src/bigTableProps.d.ts +207 -0
  17. package/es/components/big-table/src/bigTableProps.js +1 -0
  18. package/es/{packages/big-table/src/bigTableProps.js → components/big-table/src/bigTableProps2.js} +0 -0
  19. package/es/{packages → components}/big-table/src/bigTableState.d.ts +0 -0
  20. package/es/components/big-table/src/bigTableState.js +1 -0
  21. package/es/{packages/big-table/src/bigTableState.js → components/big-table/src/bigTableState2.js} +0 -0
  22. package/es/components/big-table/src/components/NoData.js +74 -0
  23. package/es/{packages → components}/big-table/src/components/NoData.vue.d.ts +0 -0
  24. package/es/components/big-table/src/components/edit-form/edit-date.d.ts +34 -0
  25. package/es/components/big-table/src/components/edit-form/edit-date.js +142 -0
  26. package/es/components/big-table/src/components/edit-form/edit-input.d.ts +43 -0
  27. package/es/components/big-table/src/components/edit-form/edit-input.js +73 -0
  28. package/es/components/big-table/src/components/edit-form/edit-select-table.d.ts +35 -0
  29. package/es/components/big-table/src/components/edit-form/edit-select.d.ts +35 -0
  30. package/es/components/big-table/src/components/edit-form/edit-select.js +102 -0
  31. package/es/components/big-table/src/components/edit-form/edit-separate.js +100 -0
  32. package/es/components/big-table/src/components/edit-form/edit-separate.vue.d.ts +132 -0
  33. package/es/components/big-table/src/components/edit-form/edit-time.d.ts +43 -0
  34. package/es/components/big-table/src/components/edit-form/edit-time.js +62 -0
  35. package/es/{packages → components}/big-table/src/components/edit-form/useCommon.d.ts +0 -0
  36. package/es/components/big-table/src/components/edit-form/useCommon.js +1 -0
  37. package/es/{packages/big-table/src/components/edit-form/useCommon.js → components/big-table/src/components/edit-form/useCommon2.js} +0 -0
  38. package/es/{packages → components}/big-table/src/components/input-button.js +0 -0
  39. package/es/components/big-table/src/components/input-button.vue.d.ts +6 -0
  40. package/es/components/big-table/src/components/separate.js +30 -0
  41. package/es/components/big-table/src/components/separate.vue.d.ts +42 -0
  42. package/es/components/big-table/src/constants/index.d.ts +3 -0
  43. package/es/components/big-table/src/constants/index.js +1 -0
  44. package/es/{packages/big-table/src/constants/index.js → components/big-table/src/constants/index2.js} +0 -0
  45. package/es/{packages → components}/big-table/src/hooks/export.d.ts +0 -0
  46. package/es/components/big-table/src/hooks/export.js +1 -0
  47. package/es/{packages → components}/big-table/src/hooks/index.d.ts +0 -0
  48. package/es/components/big-table/src/hooks/index.js +9 -0
  49. package/es/{packages → components}/big-table/src/hooks/useAnchor.d.ts +0 -0
  50. package/es/components/big-table/src/hooks/useAnchor.js +1 -0
  51. package/es/{packages/big-table/src/hooks/useAnchor.js → components/big-table/src/hooks/useAnchor2.js} +0 -0
  52. package/es/components/big-table/src/hooks/useAnnotation.d.ts +4 -0
  53. package/es/components/big-table/src/hooks/useAnnotation.js +21 -0
  54. package/es/{packages → components}/big-table/src/hooks/useBatchEditing.d.ts +0 -0
  55. package/es/components/big-table/src/hooks/useBatchEditing.js +1 -0
  56. package/es/{packages/big-table/src/hooks/useBatchEditing.js → components/big-table/src/hooks/useBatchEditing2.js} +0 -0
  57. package/es/components/big-table/src/hooks/useColumnConfigAdaptor.d.ts +11 -0
  58. package/es/components/big-table/src/hooks/useColumnConfigAdaptor.js +1 -0
  59. package/es/{packages/big-table/src/hooks/useColumnConfigAdaptor.js → components/big-table/src/hooks/useColumnConfigAdaptor2.js} +0 -0
  60. package/es/components/big-table/src/hooks/useEdit.d.ts +336 -0
  61. package/es/components/big-table/src/hooks/useEdit.js +1 -0
  62. package/es/components/big-table/src/hooks/useEdit2.js +122 -0
  63. package/es/{packages → components}/big-table/src/hooks/useEvent.d.ts +0 -0
  64. package/es/components/big-table/src/hooks/useEvent.js +1 -0
  65. package/es/components/big-table/src/hooks/useEvent2.js +72 -0
  66. package/es/{packages → components}/big-table/src/hooks/useFormat.d.ts +0 -0
  67. package/es/components/big-table/src/hooks/useFormat.js +1 -0
  68. package/es/components/big-table/src/hooks/useFormat2.js +492 -0
  69. package/es/{packages → components}/big-table/src/hooks/useNestTable.d.ts +0 -0
  70. package/es/components/big-table/src/hooks/useNestTable.js +1 -0
  71. package/es/components/big-table/src/hooks/useNestTable2.js +86 -0
  72. package/es/components/big-table/src/hooks/useSeparateRow.d.ts +30 -0
  73. package/es/components/big-table/src/hooks/useSeparateRow.js +1 -0
  74. package/es/components/big-table/src/hooks/useSeparateRow2.js +164 -0
  75. package/es/{packages → components}/big-table/src/hooks/useTableParse.d.ts +0 -0
  76. package/es/components/big-table/src/hooks/useTableParse.js +1 -0
  77. package/es/components/big-table/src/hooks/useTableParse2.js +136 -0
  78. package/es/{packages → components}/big-table/src/utils.d.ts +0 -0
  79. package/es/components/big-table/src/utils.js +1 -0
  80. package/es/components/big-table/src/utils2.js +630 -0
  81. package/es/components/big-table/style/index.css +1 -0
  82. package/es/components/bpmn-workflow/index.d.ts +74 -0
  83. package/es/components/bpmn-workflow/index.js +1 -0
  84. package/es/components/bpmn-workflow/index2.js +10 -0
  85. package/es/{packages/editor/style/index.css → components/bpmn-workflow/src/BpmnWorkflow.d.ts} +0 -0
  86. package/es/{packages → components}/bpmn-workflow/src/BpmnWorkflow.js +0 -0
  87. package/es/{packages → components}/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +0 -0
  88. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +0 -0
  89. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +0 -0
  90. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.d.ts +0 -0
  91. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.d.ts +0 -0
  92. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.d.ts +0 -0
  93. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.js +0 -0
  94. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.d.ts +0 -0
  95. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +0 -0
  96. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.d.ts +0 -0
  97. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.js +0 -0
  98. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/customBpmn/index.d.ts +0 -0
  99. package/es/{packages → components}/bpmn-workflow/src/custom/customModeler/index.d.ts +0 -0
  100. package/es/{packages → components}/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.d.ts +0 -0
  101. package/es/{packages → components}/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.d.ts +0 -0
  102. package/es/{packages → components}/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.js +0 -0
  103. package/es/{packages → components}/bpmn-workflow/src/custom/customOtherModule/zoomScroll.d.ts +0 -0
  104. package/es/{packages → components}/bpmn-workflow/src/custom/customOtherModule/zoomScroll.js +0 -0
  105. package/es/{packages → components}/bpmn-workflow/src/custom/customRules/no-task.d.ts +0 -0
  106. package/es/{packages → components}/bpmn-workflow/src/custom/customTranslate/customTranslate.d.ts +0 -0
  107. package/es/{packages → components}/bpmn-workflow/src/custom/customTranslate/zh.d.ts +0 -0
  108. package/es/components/bpmn-workflow/style/index.css +1 -0
  109. package/es/{packages → components}/bpmn-workflow/types/BpmnViewer.d.ts +0 -0
  110. package/es/{packages → components}/bpmn-workflow/types/ModelingModule.d.ts +0 -0
  111. package/es/{packages → components}/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -0
  112. package/es/components/button-print/index.d.ts +613 -0
  113. package/es/components/button-print/index.js +2 -0
  114. package/es/components/button-print/index2.js +11 -0
  115. package/es/{packages → components}/button-print/src/ButtonPrint.js +0 -0
  116. package/es/components/button-print/src/ButtonPrint.vue.d.ts +620 -0
  117. package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +483 -0
  118. package/es/components/button-print/src/components/IdentityVerification.js +137 -0
  119. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +367 -0
  120. package/es/components/button-print/src/utils/dialog.d.ts +8 -0
  121. package/es/components/button-print/src/utils/dialog.js +77 -0
  122. package/es/{packages → components}/button-print/src/utils/index.d.ts +0 -0
  123. package/es/components/button-print/src/utils/index.js +1 -0
  124. package/es/components/button-print/src/utils/print.d.ts +52 -0
  125. package/es/components/button-print/src/utils/print.js +1 -0
  126. package/es/components/button-print/src/utils/print2.js +348 -0
  127. package/es/components/button-print/style/index.css +1 -0
  128. package/es/components/chunk-upload/index.d.ts +305 -0
  129. package/es/components/chunk-upload/index.js +1 -0
  130. package/es/components/chunk-upload/index2.js +14 -0
  131. package/es/components/chunk-upload/src/chunk-upload-new.js +475 -0
  132. package/es/components/chunk-upload/src/chunk-upload-new.vue.d.ts +196 -0
  133. package/es/{packages → components}/chunk-upload/src/hooks/upload-computed.d.ts +0 -0
  134. package/es/components/chunk-upload/src/hooks/upload-computed.js +1 -0
  135. package/es/{packages/chunk-upload/src/hooks/upload-computed.js → components/chunk-upload/src/hooks/upload-computed2.js} +0 -0
  136. package/es/{packages → components}/chunk-upload/src/hooks/upload-data.d.ts +0 -0
  137. package/es/components/chunk-upload/src/hooks/upload-data.js +1 -0
  138. package/es/{packages/chunk-upload/src/hooks/upload-data.js → components/chunk-upload/src/hooks/upload-data2.js} +0 -0
  139. package/es/{packages → components}/chunk-upload/src/hooks/vod-computed.d.ts +0 -0
  140. package/es/components/chunk-upload/src/hooks/vod-computed.js +1 -0
  141. package/es/{packages/chunk-upload/src/hooks/vod-computed.js → components/chunk-upload/src/hooks/vod-computed2.js} +0 -0
  142. package/es/{packages → components}/chunk-upload/src/hooks/vod-data.d.ts +0 -0
  143. package/es/components/chunk-upload/src/hooks/vod-data.js +1 -0
  144. package/es/{packages/chunk-upload/src/hooks/vod-data.js → components/chunk-upload/src/hooks/vod-data2.js} +0 -0
  145. package/es/{packages → components}/chunk-upload/src/vod-chunk-upload/index.d.ts +0 -0
  146. package/es/components/chunk-upload/src/vod-chunk-upload/index.js +1 -0
  147. package/es/{packages/chunk-upload/src/vod-chunk-upload/index.js → components/chunk-upload/src/vod-chunk-upload/index2.js} +0 -0
  148. package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +330 -0
  149. package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +304 -0
  150. package/es/{packages → components}/chunk-upload/src/vod-upload-modal.d.ts +0 -0
  151. package/es/{packages → components}/chunk-upload/src/vod-upload-modal.js +0 -0
  152. package/es/components/chunk-upload/style/index.css +1 -0
  153. package/es/components/drag-layout/index.d.ts +606 -0
  154. package/es/components/drag-layout/index.js +1 -0
  155. package/es/components/drag-layout/index2.js +11 -0
  156. package/es/{packages → components}/drag-layout/src/DragFormLeftItem.js +0 -0
  157. package/es/components/drag-layout/src/DragFormLeftItem.vue.d.ts +21 -0
  158. package/es/{packages → components}/drag-layout/src/DragFormRightItem.js +0 -0
  159. package/es/components/drag-layout/src/DragFormRightItem.vue.d.ts +125 -0
  160. package/es/components/drag-layout/src/DragLayout.js +660 -0
  161. package/es/components/drag-layout/src/DragLayout.vue.d.ts +606 -0
  162. package/es/components/drag-layout/style/index.css +1 -0
  163. package/es/components/editor/index.d.ts +30 -0
  164. package/es/components/editor/index.js +1 -0
  165. package/es/components/editor/index2.js +10 -0
  166. package/es/{packages → components}/editor/src/Editor.d.ts +0 -0
  167. package/es/{packages → components}/editor/src/Editor.js +0 -0
  168. package/es/{packages/form-render/src/components/index.d.ts → components/editor/style/index.css} +0 -0
  169. package/es/components/fabric-chart/index.d.ts +204 -0
  170. package/es/components/fabric-chart/index.js +1 -0
  171. package/es/components/fabric-chart/index2.js +10 -0
  172. package/es/components/fabric-chart/src/FabricChart.js +332 -0
  173. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +205 -0
  174. package/es/{packages → components}/fabric-chart/src/components/PopupMenu.d.ts +0 -0
  175. package/es/components/fabric-chart/src/components/PopupMenu.js +105 -0
  176. package/es/components/fabric-chart/src/components/PopupTip.js +34 -0
  177. package/es/{packages → components}/fabric-chart/src/components/PopupTip.vue.d.ts +0 -0
  178. package/es/{packages → components}/fabric-chart/src/components/useStyle.d.ts +0 -0
  179. package/es/components/fabric-chart/src/components/useStyle.js +1 -0
  180. package/es/{packages/fabric-chart/src/components/useStyle.js → components/fabric-chart/src/components/useStyle2.js} +0 -0
  181. package/es/{packages → components}/fabric-chart/src/hooks/constant.d.ts +0 -0
  182. package/es/components/fabric-chart/src/hooks/constant.js +1 -0
  183. package/es/{packages/fabric-chart/src/hooks/constant.js → components/fabric-chart/src/hooks/constant2.js} +0 -0
  184. package/es/{packages → components}/fabric-chart/src/hooks/index.d.ts +0 -0
  185. package/es/components/fabric-chart/src/hooks/index.js +9 -0
  186. package/es/{packages → components}/fabric-chart/src/hooks/useBottom.d.ts +0 -0
  187. package/es/components/fabric-chart/src/hooks/useBottom.js +1 -0
  188. package/es/components/fabric-chart/src/hooks/useBottom2.js +85 -0
  189. package/es/{packages → components}/fabric-chart/src/hooks/useCenter.d.ts +0 -0
  190. package/es/components/fabric-chart/src/hooks/useCenter.js +1 -0
  191. package/es/components/fabric-chart/src/hooks/useCenter2.js +554 -0
  192. package/es/{packages → components}/fabric-chart/src/hooks/useCumputedPoint.d.ts +0 -0
  193. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +1 -0
  194. package/es/{packages/fabric-chart/src/hooks/useCumputedPoint.js → components/fabric-chart/src/hooks/useCumputedPoint2.js} +0 -0
  195. package/es/components/fabric-chart/src/hooks/useDraw.d.ts +44 -0
  196. package/es/components/fabric-chart/src/hooks/useDraw.js +1 -0
  197. package/es/components/fabric-chart/src/hooks/useDraw2.js +182 -0
  198. package/es/{packages → components}/fabric-chart/src/hooks/useEvent.d.ts +0 -0
  199. package/es/components/fabric-chart/src/hooks/useEvent.js +1 -0
  200. package/es/{packages/fabric-chart/src/hooks/useEvent.js → components/fabric-chart/src/hooks/useEvent2.js} +0 -0
  201. package/es/{packages → components}/fabric-chart/src/hooks/useGrid.d.ts +0 -0
  202. package/es/components/fabric-chart/src/hooks/useGrid.js +1 -0
  203. package/es/components/fabric-chart/src/hooks/useGrid2.js +50 -0
  204. package/es/{packages → components}/fabric-chart/src/hooks/useLeft.d.ts +0 -0
  205. package/es/components/fabric-chart/src/hooks/useLeft.js +1 -0
  206. package/es/components/fabric-chart/src/hooks/useLeft2.js +282 -0
  207. package/es/{packages → components}/fabric-chart/src/hooks/useOther.d.ts +0 -0
  208. package/es/components/fabric-chart/src/hooks/useOther.js +1 -0
  209. package/es/components/fabric-chart/src/hooks/useOther2.js +85 -0
  210. package/es/{packages → components}/fabric-chart/src/hooks/useRight.d.ts +0 -0
  211. package/es/components/fabric-chart/src/hooks/useRight.js +1 -0
  212. package/es/components/fabric-chart/src/hooks/useRight2.js +27 -0
  213. package/es/{packages → components}/fabric-chart/src/hooks/useShadow.d.ts +0 -0
  214. package/es/components/fabric-chart/src/hooks/useShadow.js +1 -0
  215. package/es/{packages/fabric-chart/src/hooks/useShadow.js → components/fabric-chart/src/hooks/useShadow2.js} +0 -0
  216. package/es/{packages → components}/fabric-chart/src/hooks/useTop.d.ts +0 -0
  217. package/es/components/fabric-chart/src/hooks/useTop.js +1 -0
  218. package/es/components/fabric-chart/src/hooks/useTop2.js +138 -0
  219. package/es/components/fabric-chart/src/interface.d.ts +129 -0
  220. package/es/components/fabric-chart/src/interface.js +1 -0
  221. package/es/{packages/fabric-chart/src/interface.js → components/fabric-chart/src/interface2.js} +0 -0
  222. package/es/{packages → components}/fabric-chart/src/utils/index.d.ts +0 -0
  223. package/es/{packages → components}/fabric-chart/src/utils/index.js +0 -0
  224. package/es/components/fabric-chart/style/index.css +1 -0
  225. package/es/components/field-set/index.d.ts +215 -0
  226. package/es/components/field-set/index.js +1 -0
  227. package/es/components/field-set/index2.js +10 -0
  228. package/es/components/field-set/src/FieldSet.js +431 -0
  229. package/es/components/field-set/src/FieldSet.vue.d.ts +191 -0
  230. package/es/components/field-set/style/index.css +1 -0
  231. package/es/components/form-config/index.d.ts +3189 -0
  232. package/es/components/form-config/index.js +1 -0
  233. package/es/components/form-config/index2.js +10 -0
  234. package/es/components/form-config/src/FormConfig.js +121 -0
  235. package/es/components/form-config/src/FormConfig.vue.d.ts +3191 -0
  236. package/es/components/form-config/src/components/FormConfigCreator.js +101 -0
  237. package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +633 -0
  238. package/es/components/form-config/src/components/FormConfigDragDisplay.js +43 -0
  239. package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +106 -0
  240. package/es/components/form-config/src/components/FormConfigEdit.js +86 -0
  241. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +2309 -0
  242. package/es/{packages → components}/form-config/src/components/index.d.ts +0 -0
  243. package/es/{packages → components}/form-config/src/components/index.js +0 -0
  244. package/es/components/form-config/src/components/renderer/CloseButton.js +45 -0
  245. package/es/components/form-config/src/components/renderer/CloseButton.vue.d.ts +29 -0
  246. package/es/components/form-config/src/components/renderer/ComplexNode.js +45 -0
  247. package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +171 -0
  248. package/es/components/form-config/src/components/renderer/DefaultNode.js +59 -0
  249. package/es/components/form-config/src/components/renderer/DefaultNode.vue.d.ts +75 -0
  250. package/es/{packages → components}/form-config/src/components/renderer/index.d.ts +0 -0
  251. package/es/{packages → components}/form-config/src/components/renderer/index.js +0 -0
  252. package/es/components/form-config/src/constants/index.d.ts +64 -0
  253. package/es/components/form-config/src/constants/index.js +1 -0
  254. package/es/{packages/form-config/src/constants/index.js → components/form-config/src/constants/index2.js} +0 -0
  255. package/es/{packages → components}/form-config/src/hooks/index.d.ts +0 -0
  256. package/es/components/form-config/src/hooks/index.js +3 -0
  257. package/es/components/form-config/src/hooks/useConfigurationField.d.ts +7 -0
  258. package/es/components/form-config/src/hooks/useConfigurationField.js +1 -0
  259. package/es/components/form-config/src/hooks/useConfigurationField2.js +52 -0
  260. package/es/{packages → components}/form-config/src/hooks/usePresetRenderer.d.ts +0 -0
  261. package/es/components/form-config/src/hooks/usePresetRenderer.js +36 -0
  262. package/es/{packages → components}/form-config/src/hooks/useSortalbeConfig.d.ts +0 -0
  263. package/es/components/form-config/src/hooks/useSortalbeConfig.js +1 -0
  264. package/es/{packages/form-config/src/hooks/useSortalbeConfig.js → components/form-config/src/hooks/useSortalbeConfig2.js} +0 -0
  265. package/es/components/form-config/src/types/index.d.ts +37 -0
  266. package/es/{packages → components}/form-config/src/types/index.js +0 -0
  267. package/es/components/form-config/src/utils/index.d.ts +7 -0
  268. package/es/components/form-config/src/utils/index.js +1 -0
  269. package/es/{packages/form-config/src/utils/index.js → components/form-config/src/utils/index2.js} +0 -0
  270. package/es/components/form-config/style/index.css +1 -0
  271. package/es/components/form-render/index.d.ts +614 -0
  272. package/es/components/form-render/index.js +14 -0
  273. package/es/components/form-render/index2.js +46 -0
  274. package/es/components/form-render/src/FormRender.js +212 -0
  275. package/es/components/form-render/src/FormRender.vue.d.ts +614 -0
  276. package/es/components/form-render/src/components/index.d.ts +0 -0
  277. package/es/{packages → components}/form-render/src/components/index.js +0 -0
  278. package/es/components/form-render/src/components/renderer/cascader.d.ts +42 -0
  279. package/es/components/form-render/src/components/renderer/cascader.js +208 -0
  280. package/es/components/form-render/src/components/renderer/checkbox.d.ts +26 -0
  281. package/es/components/form-render/src/components/renderer/checkbox.js +45 -0
  282. package/es/components/form-render/src/components/renderer/combination.d.ts +44 -0
  283. package/es/components/form-render/src/components/renderer/combination.js +103 -0
  284. package/es/{packages → components}/form-render/src/components/renderer/complex.d.ts +0 -0
  285. package/es/components/form-render/src/components/renderer/complex.js +40 -0
  286. package/es/{packages → components}/form-render/src/components/renderer/date.d.ts +0 -0
  287. package/es/components/form-render/src/components/renderer/date.js +117 -0
  288. package/es/{packages → components}/form-render/src/components/renderer/formItem.d.ts +0 -0
  289. package/es/components/form-render/src/components/renderer/formItem.js +84 -0
  290. package/es/{packages → components}/form-render/src/components/renderer/index.d.ts +0 -0
  291. package/es/components/form-render/src/components/renderer/index.js +18 -0
  292. package/es/components/form-render/src/components/renderer/index2.js +18 -0
  293. package/es/components/form-render/src/components/renderer/input.d.ts +23 -0
  294. package/es/components/form-render/src/components/renderer/input.js +46 -0
  295. package/es/{packages → components}/form-render/src/components/renderer/inputGroup.d.ts +0 -0
  296. package/es/components/form-render/src/components/renderer/inputGroup.js +1 -0
  297. package/es/{packages/form-render/src/components/renderer/inputGroup.js → components/form-render/src/components/renderer/inputGroup2.js} +0 -0
  298. package/es/components/form-render/src/components/renderer/inputNumber.d.ts +31 -0
  299. package/es/components/form-render/src/components/renderer/inputNumber.js +55 -0
  300. package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.d.ts +5 -0
  301. package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.js +1 -0
  302. package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate2.js +33 -0
  303. package/es/components/form-render/src/components/renderer/jsonCombination/index.d.ts +44 -0
  304. package/es/components/form-render/src/components/renderer/jsonCombination/index.js +173 -0
  305. package/es/{packages → components}/form-render/src/components/renderer/labelSelect.d.ts +0 -0
  306. package/es/{packages → components}/form-render/src/components/renderer/labelSelect.js +0 -0
  307. package/es/components/form-render/src/components/renderer/linebar.d.ts +40 -0
  308. package/es/components/form-render/src/components/renderer/linebar.js +73 -0
  309. package/es/components/form-render/src/components/renderer/radio.d.ts +34 -0
  310. package/es/components/form-render/src/components/renderer/radio.js +69 -0
  311. package/es/components/form-render/src/components/renderer/select.d.ts +47 -0
  312. package/es/components/form-render/src/components/renderer/select.js +198 -0
  313. package/es/components/form-render/src/components/renderer/simpleComponent.d.ts +17 -0
  314. package/es/components/form-render/src/components/renderer/simpleComponent.js +53 -0
  315. package/es/{packages → components}/form-render/src/components/renderer/slider.d.ts +0 -0
  316. package/es/components/form-render/src/components/renderer/slider.js +38 -0
  317. package/es/{packages → components}/form-render/src/components/renderer/switch.d.ts +0 -0
  318. package/es/components/form-render/src/components/renderer/switch.js +51 -0
  319. package/es/components/form-render/src/components/renderer/textarea.d.ts +11 -0
  320. package/es/components/form-render/src/components/renderer/textarea.js +39 -0
  321. package/es/components/form-render/src/constants/index.d.ts +41 -0
  322. package/es/components/form-render/src/constants/index.js +1 -0
  323. package/es/{packages/form-render/src/constants/index.js → components/form-render/src/constants/index2.js} +0 -0
  324. package/es/{packages → components}/form-render/src/hooks/index.d.ts +0 -0
  325. package/es/components/form-render/src/hooks/index.js +13 -0
  326. package/es/components/form-render/src/hooks/useAnchor.d.ts +16 -0
  327. package/es/components/form-render/src/hooks/useAnchor.js +1 -0
  328. package/es/components/form-render/src/hooks/useAnchor2.js +90 -0
  329. package/es/components/form-render/src/hooks/useAsyncQueue.d.ts +45 -0
  330. package/es/components/form-render/src/hooks/useAsyncQueue.js +1 -0
  331. package/es/components/form-render/src/hooks/useAsyncQueue2.js +144 -0
  332. package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +25 -0
  333. package/es/components/form-render/src/hooks/useBusinessBinding.js +1 -0
  334. package/es/components/form-render/src/hooks/useBusinessBinding2.js +98 -0
  335. package/es/components/form-render/src/hooks/useChangeContext.d.ts +13 -0
  336. package/es/components/form-render/src/hooks/useChangeContext.js +1 -0
  337. package/es/{packages/form-render/src/hooks/useChangeContext.js → components/form-render/src/hooks/useChangeContext2.js} +0 -0
  338. package/es/components/form-render/src/hooks/useCommonInjection.d.ts +7 -0
  339. package/es/components/form-render/src/hooks/useCommonInjection.js +1 -0
  340. package/es/components/form-render/src/hooks/useCommonInjection2.js +32 -0
  341. package/es/{packages → components}/form-render/src/hooks/useCommonLog.d.ts +0 -0
  342. package/es/components/form-render/src/hooks/useCommonLog.js +1 -0
  343. package/es/components/form-render/src/hooks/useCommonLog2.js +10 -0
  344. package/es/components/form-render/src/hooks/useFieldListAdaptor.d.ts +64 -0
  345. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -0
  346. package/es/components/form-render/src/hooks/useFieldListAdaptor2.js +243 -0
  347. package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +5 -0
  348. package/es/components/form-render/src/hooks/useFieldNormalize.js +1 -0
  349. package/es/components/form-render/src/hooks/useFieldNormalize2.js +67 -0
  350. package/es/{packages → components}/form-render/src/hooks/useFieldVisitor.d.ts +0 -0
  351. package/es/components/form-render/src/hooks/useFieldVisitor.js +1 -0
  352. package/es/{packages/form-render/src/hooks/useFieldVisitor.js → components/form-render/src/hooks/useFieldVisitor2.js} +0 -0
  353. package/es/components/form-render/src/hooks/useFormContext.d.ts +11 -0
  354. package/es/components/form-render/src/hooks/useFormContext.js +1 -0
  355. package/es/components/form-render/src/hooks/useFormContext2.js +66 -0
  356. package/es/{packages → components}/form-render/src/hooks/useFormField.d.ts +0 -0
  357. package/es/components/form-render/src/hooks/useFormField.js +1 -0
  358. package/es/{packages/form-render/src/hooks/useFormField.js → components/form-render/src/hooks/useFormField2.js} +0 -0
  359. package/es/components/form-render/src/hooks/useFormItemDeps.d.ts +11 -0
  360. package/es/components/form-render/src/hooks/useFormItemDeps.js +1 -0
  361. package/es/components/form-render/src/hooks/useFormItemDeps2.js +34 -0
  362. package/es/components/form-render/src/hooks/useFormRenderLifeCycle.d.ts +13 -0
  363. package/es/components/form-render/src/hooks/useFormRenderLifeCycle.js +1 -0
  364. package/es/{packages/form-render/src/hooks/useFormRenderLifeCycle.js → components/form-render/src/hooks/useFormRenderLifeCycle2.js} +0 -0
  365. package/es/components/form-render/src/hooks/useFormRequest.d.ts +7 -0
  366. package/es/components/form-render/src/hooks/useFormRequest.js +1 -0
  367. package/es/{packages/form-render/src/hooks/useFormRequest.js → components/form-render/src/hooks/useFormRequest2.js} +0 -0
  368. package/es/components/form-render/src/hooks/useFormValidator.d.ts +5 -0
  369. package/es/components/form-render/src/hooks/useFormValidator.js +1 -0
  370. package/es/components/form-render/src/hooks/useFormValidator2.js +67 -0
  371. package/es/{packages → components}/form-render/src/hooks/usePresetScope.d.ts +0 -0
  372. package/es/components/form-render/src/hooks/usePresetScope.js +1 -0
  373. package/es/components/form-render/src/hooks/usePresetScope2.js +25 -0
  374. package/es/components/form-render/src/types/fieldItem.d.ts +219 -0
  375. package/es/{packages → components}/form-render/src/types/fieldItem.js +0 -0
  376. package/es/components/form-render/src/types/index.d.ts +79 -0
  377. package/es/{packages → components}/form-render/src/types/index.js +0 -0
  378. package/es/components/form-render/src/utils/business.d.ts +12 -0
  379. package/es/components/form-render/src/utils/business.js +1 -0
  380. package/es/components/form-render/src/utils/business2.js +78 -0
  381. package/es/components/form-render/src/utils/dom.d.ts +6 -0
  382. package/es/components/form-render/src/utils/dom.js +1 -0
  383. package/es/components/form-render/src/utils/dom2.js +14 -0
  384. package/es/components/form-render/src/utils/index.d.ts +16 -0
  385. package/es/components/form-render/src/utils/index.js +92 -0
  386. package/es/components/form-render/src/utils/schema.d.ts +78 -0
  387. package/es/components/form-render/src/utils/schema.js +1 -0
  388. package/es/components/form-render/src/utils/schema2.js +93 -0
  389. package/es/components/form-render/style/index.css +1 -0
  390. package/es/components/form-table/index.d.ts +4019 -0
  391. package/es/components/form-table/index.js +1 -0
  392. package/es/components/form-table/index2.js +10 -0
  393. package/es/components/form-table/src/FormTable.js +474 -0
  394. package/es/components/form-table/src/FormTable.vue.d.ts +4019 -0
  395. package/es/components/form-table/src/components/index.d.ts +3778 -0
  396. package/es/components/form-table/src/components/index.js +1 -0
  397. package/es/components/form-table/src/components/index2.js +40 -0
  398. package/es/components/form-table/src/components/table-age.js +235 -0
  399. package/es/components/form-table/src/components/table-age.vue.d.ts +318 -0
  400. package/es/components/form-table/src/components/table-date-picker.js +179 -0
  401. package/es/components/form-table/src/components/table-date-picker.vue.d.ts +250 -0
  402. package/es/components/form-table/src/components/table-digital.js +141 -0
  403. package/es/components/form-table/src/components/table-digital.vue.d.ts +261 -0
  404. package/es/components/form-table/src/components/table-input-password.js +141 -0
  405. package/es/components/form-table/src/components/table-input-password.vue.d.ts +304 -0
  406. package/es/components/form-table/src/components/table-input.js +127 -0
  407. package/es/components/form-table/src/components/table-input.vue.d.ts +261 -0
  408. package/es/components/form-table/src/components/table-month-picker.js +104 -0
  409. package/es/components/form-table/src/components/table-month-picker.vue.d.ts +193 -0
  410. package/es/{packages → components}/form-table/src/components/table-search-more.js +0 -0
  411. package/es/components/form-table/src/components/table-search-more.vue.d.ts +392 -0
  412. package/es/components/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.js +276 -0
  413. package/es/{packages → components}/form-table/src/components/table-search.js +0 -0
  414. package/es/components/form-table/src/components/table-search.vue.d.ts +386 -0
  415. package/es/components/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +276 -0
  416. package/es/components/form-table/src/components/table-select-multiple.js +164 -0
  417. package/es/components/form-table/src/components/table-select-multiple.vue.d.ts +235 -0
  418. package/es/components/form-table/src/components/table-select.js +159 -0
  419. package/es/components/form-table/src/components/table-select.vue.d.ts +234 -0
  420. package/es/components/form-table/src/components/table-textarea.js +157 -0
  421. package/es/components/form-table/src/components/table-textarea.vue.d.ts +320 -0
  422. package/es/components/form-table/src/components/table-time-picker.js +150 -0
  423. package/es/components/form-table/src/components/table-time-picker.vue.d.ts +246 -0
  424. package/es/components/form-table/src/components/table-tree-select.js +285 -0
  425. package/es/components/form-table/src/components/table-tree-select.vue.d.ts +349 -0
  426. package/es/{packages → components}/form-table/src/components/text-over-tooltip.js +0 -0
  427. package/es/components/form-table/src/components/text-over-tooltip.vue.d.ts +70 -0
  428. package/es/components/form-table/src/configs/index.d.ts +35 -0
  429. package/es/components/form-table/src/configs/index.js +1 -0
  430. package/es/{packages/form-table/src/configs/index.js → components/form-table/src/configs/index2.js} +0 -0
  431. package/es/{packages → components}/form-table/src/hooks/index.d.ts +0 -0
  432. package/es/components/form-table/src/hooks/index.js +5 -0
  433. package/es/components/form-table/src/hooks/useBoundDate.d.ts +21 -0
  434. package/es/components/form-table/src/hooks/useBoundDate.js +1 -0
  435. package/es/{packages/form-table/src/hooks/useBoundDate.js → components/form-table/src/hooks/useBoundDate2.js} +0 -0
  436. package/es/components/form-table/src/hooks/useDateType.d.ts +17 -0
  437. package/es/components/form-table/src/hooks/useDateType.js +1 -0
  438. package/es/components/form-table/src/hooks/useDateType2.js +160 -0
  439. package/es/components/form-table/src/hooks/useFormCommon.d.ts +14 -0
  440. package/es/components/form-table/src/hooks/useFormCommon.js +1 -0
  441. package/es/components/form-table/src/hooks/useFormCommon2.js +101 -0
  442. package/es/components/form-table/src/hooks/useFormEvent.d.ts +9 -0
  443. package/es/components/form-table/src/hooks/useFormEvent.js +1 -0
  444. package/es/components/form-table/src/hooks/useFormEvent2.js +68 -0
  445. package/es/components/form-table/src/hooks/useItemDefault.d.ts +53 -0
  446. package/es/components/form-table/src/hooks/useItemDefault.js +1 -0
  447. package/es/components/form-table/src/hooks/useItemDefault2.js +218 -0
  448. package/es/{packages → components}/form-table/src/hooks/useNuiThemeOverrides.d.ts +0 -0
  449. package/es/components/form-table/src/hooks/useNuiThemeOverrides.js +1 -0
  450. package/es/{packages/form-table/src/hooks/useNuiThemeOverrides.js → components/form-table/src/hooks/useNuiThemeOverrides2.js} +0 -0
  451. package/es/components/form-table/src/hooks/useSearch.d.ts +165 -0
  452. package/es/components/form-table/src/hooks/useSearch.js +1 -0
  453. package/es/components/form-table/src/hooks/useSearch2.js +1154 -0
  454. package/es/components/form-table/src/hooks/useValidate.d.ts +24 -0
  455. package/es/components/form-table/src/hooks/useValidate.js +1 -0
  456. package/es/{packages/form-table/src/hooks/useValidate.js → components/form-table/src/hooks/useValidate2.js} +0 -0
  457. package/es/components/form-table/src/types/index.d.ts +11 -0
  458. package/es/{packages → components}/form-table/src/types/index.js +0 -0
  459. package/es/components/form-table/style/index.css +1 -0
  460. package/es/components/grid/index.d.ts +3 -0
  461. package/es/components/grid/index.js +1 -0
  462. package/es/components/grid/index2.js +13 -0
  463. package/es/{packages → components}/grid/src/Grid.d.ts +0 -0
  464. package/es/components/grid/src/Grid.js +28 -0
  465. package/es/{packages → components}/grid/src/hooks.d.ts +0 -0
  466. package/es/components/grid/src/hooks.js +1 -0
  467. package/es/{packages/grid/src/hooks.js → components/grid/src/hooks2.js} +0 -0
  468. package/es/components/grid/style/index.css +1 -0
  469. package/es/components/index.css +1 -0
  470. package/es/{packages → components}/index.d.ts +0 -0
  471. package/es/components/index.js +39 -0
  472. package/es/components/index2.js +79 -0
  473. package/es/components/info-header/index.d.ts +336 -0
  474. package/es/components/info-header/index.js +1 -0
  475. package/es/components/info-header/index2.js +10 -0
  476. package/es/{packages → components}/info-header/src/HiddenContent.js +0 -0
  477. package/es/components/info-header/src/HiddenContent.vue.d.ts +88 -0
  478. package/es/{packages → components}/info-header/src/InfoEllipsis.js +0 -0
  479. package/es/components/info-header/src/InfoEllipsis.vue.d.ts +33 -0
  480. package/es/components/info-header/src/InfoHeader.js +230 -0
  481. package/es/components/info-header/src/InfoHeader.vue.d.ts +337 -0
  482. package/es/{packages → components}/info-header/style/iconfont.ttf +0 -0
  483. package/es/components/info-header/style/index.css +1 -0
  484. package/es/components/map/index.d.ts +75 -0
  485. package/es/components/map/index.js +1 -0
  486. package/es/components/map/index2.js +10 -0
  487. package/es/{packages → components}/map/src/Map.js +0 -0
  488. package/es/components/map/src/Map.vue.d.ts +75 -0
  489. package/es/components/map/style/index.css +1 -0
  490. package/es/components/scale-view/index.d.ts +1404 -0
  491. package/es/components/scale-view/index.js +1 -0
  492. package/es/components/scale-view/index2.js +35 -0
  493. package/es/components/scale-view/src/ScaleView.js +419 -0
  494. package/es/components/scale-view/src/ScaleView.vue.d.ts +1226 -0
  495. package/es/components/scale-view/src/components/AnswerParse.js +80 -0
  496. package/es/{packages → components}/scale-view/src/components/AnswerParse.vue.d.ts +0 -0
  497. package/es/components/scale-view/src/components/EvaluateCountdown.js +109 -0
  498. package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +154 -0
  499. package/es/components/scale-view/src/components/EvaluatePage.js +141 -0
  500. package/es/components/scale-view/src/components/EvaluatePage.vue.d.ts +110 -0
  501. package/es/{packages → components}/scale-view/src/components/LoadingCom.js +0 -0
  502. package/es/components/scale-view/src/components/NoData.js +74 -0
  503. package/es/{packages → components}/scale-view/src/components/NoData.vue.d.ts +0 -0
  504. package/es/{packages → components}/scale-view/src/components/ScaleScore.d.ts +0 -0
  505. package/es/{packages → components}/scale-view/src/components/ScaleScore.js +0 -0
  506. package/es/{packages → components}/scale-view/src/components/composables/choose-common.d.ts +0 -0
  507. package/es/components/scale-view/src/components/composables/choose-common.js +1 -0
  508. package/es/{packages/scale-view/src/components/composables/choose-common.js → components/scale-view/src/components/composables/choose-common2.js} +0 -0
  509. package/es/{packages → components}/scale-view/src/components/formitem/address.d.ts +0 -0
  510. package/es/components/scale-view/src/components/formitem/address.js +1 -0
  511. package/es/{packages/scale-view/src/components/formitem/address.js → components/scale-view/src/components/formitem/address2.js} +0 -0
  512. package/es/components/scale-view/src/components/formitem/r-address.d.ts +34 -0
  513. package/es/components/scale-view/src/components/formitem/r-address.js +226 -0
  514. package/es/components/scale-view/src/components/formitem/r-cascader.d.ts +43 -0
  515. package/es/{packages → components}/scale-view/src/components/formitem/r-cascader.js +0 -0
  516. package/es/components/scale-view/src/components/formitem/r-checkbox.d.ts +43 -0
  517. package/es/components/scale-view/src/components/formitem/r-checkbox.js +281 -0
  518. package/es/components/scale-view/src/components/formitem/r-collection.d.ts +32 -0
  519. package/es/{packages → components}/scale-view/src/components/formitem/r-collection.js +0 -0
  520. package/es/components/scale-view/src/components/formitem/r-datetime.d.ts +34 -0
  521. package/es/components/scale-view/src/components/formitem/r-datetime.js +212 -0
  522. package/es/components/scale-view/src/components/formitem/r-input.d.ts +34 -0
  523. package/es/{packages → components}/scale-view/src/components/formitem/r-input.js +0 -0
  524. package/es/components/scale-view/src/components/formitem/r-map.d.ts +52 -0
  525. package/es/components/scale-view/src/components/formitem/r-map.js +106 -0
  526. package/es/components/scale-view/src/components/formitem/r-radio.d.ts +43 -0
  527. package/es/components/scale-view/src/components/formitem/r-radio.js +240 -0
  528. package/es/components/scale-view/src/components/formitem/r-select.d.ts +61 -0
  529. package/es/{packages → components}/scale-view/src/components/formitem/r-select.js +0 -0
  530. package/es/components/scale-view/src/components/formitem/r-upload.d.ts +52 -0
  531. package/es/{packages → components}/scale-view/src/components/formitem/r-upload.js +0 -0
  532. package/es/components/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +87 -0
  533. package/es/{packages → components}/scale-view/src/hooks/scaleview-computed.d.ts +0 -0
  534. package/es/components/scale-view/src/hooks/scaleview-computed.js +1 -0
  535. package/es/components/scale-view/src/hooks/scaleview-computed2.js +309 -0
  536. package/es/{packages → components}/scale-view/src/hooks/scaleview-init.d.ts +0 -0
  537. package/es/components/scale-view/src/hooks/scaleview-init.js +1 -0
  538. package/es/components/scale-view/src/hooks/scaleview-init2.js +437 -0
  539. package/es/{packages → components}/scale-view/src/hooks/scaleview-props.d.ts +0 -0
  540. package/es/components/scale-view/src/hooks/scaleview-props.js +1 -0
  541. package/es/{packages/scale-view/src/hooks/scaleview-props.js → components/scale-view/src/hooks/scaleview-props2.js} +0 -0
  542. package/es/{packages → components}/scale-view/src/hooks/scaleview-state.d.ts +0 -0
  543. package/es/components/scale-view/src/hooks/scaleview-state.js +1 -0
  544. package/es/{packages/scale-view/src/hooks/scaleview-state.js → components/scale-view/src/hooks/scaleview-state2.js} +0 -0
  545. package/es/{packages → components}/scale-view/src/hooks/scaleview-submit.d.ts +0 -0
  546. package/es/components/scale-view/src/hooks/scaleview-submit.js +1 -0
  547. package/es/components/scale-view/src/hooks/scaleview-submit2.js +154 -0
  548. package/es/{packages → components}/scale-view/src/hooks/scaleview-validate.d.ts +0 -0
  549. package/es/components/scale-view/src/hooks/scaleview-validate.js +1 -0
  550. package/es/components/scale-view/src/hooks/scaleview-validate2.js +187 -0
  551. package/es/components/scale-view/src/hooks/use-component.d.ts +1852 -0
  552. package/es/components/scale-view/src/hooks/use-component.js +1 -0
  553. package/es/components/scale-view/src/hooks/use-component2.js +82 -0
  554. package/es/{packages → components}/scale-view/src/hooks/use-evaluate.d.ts +0 -0
  555. package/es/components/scale-view/src/hooks/use-evaluate.js +1 -0
  556. package/es/components/scale-view/src/hooks/use-evaluate2.js +150 -0
  557. package/es/{packages → components}/scale-view/src/hooks/use-event.d.ts +0 -0
  558. package/es/components/scale-view/src/hooks/use-event.js +1 -0
  559. package/es/components/scale-view/src/hooks/use-event2.js +129 -0
  560. package/es/{packages → components}/scale-view/src/hooks/use-noData.d.ts +0 -0
  561. package/es/components/scale-view/src/hooks/use-noData.js +1 -0
  562. package/es/{packages/scale-view/src/hooks/use-noData.js → components/scale-view/src/hooks/use-noData2.js} +0 -0
  563. package/es/{packages → components}/scale-view/src/utils/judge-types.d.ts +0 -0
  564. package/es/components/scale-view/src/utils/judge-types.js +1 -0
  565. package/es/{packages/scale-view/src/utils/judge-types.js → components/scale-view/src/utils/judge-types2.js} +0 -0
  566. package/es/components/scale-view/style/index.css +1 -0
  567. package/es/components/select-label/index.d.ts +987 -0
  568. package/es/components/select-label/index.js +1 -0
  569. package/es/components/select-label/index2.js +15 -0
  570. package/es/components/select-label/src/LabelFormContent.js +443 -0
  571. package/es/components/select-label/src/LabelFormContent.vue.d.ts +367 -0
  572. package/es/{packages → components}/select-label/src/SelectLabel.js +0 -0
  573. package/es/components/select-label/src/SelectLabel.vue.d.ts +621 -0
  574. package/es/components/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +440 -0
  575. package/es/{packages → components}/select-label/src/components/label-classify.js +0 -0
  576. package/es/components/select-label/src/components/label-classify.vue.d.ts +122 -0
  577. package/es/components/select-label/style/index.css +1 -0
  578. package/es/components/select-person/index.d.ts +441 -0
  579. package/es/components/select-person/index.js +1 -0
  580. package/es/components/select-person/index2.js +10 -0
  581. package/es/{packages → components}/select-person/src/SearchTree.js +0 -0
  582. package/es/components/select-person/src/SearchTree.vue.d.ts +147 -0
  583. package/es/{packages → components}/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.js +0 -0
  584. package/es/{packages → components}/select-person/src/SelectPerson.js +0 -0
  585. package/es/components/select-person/src/SelectPerson.vue.d.ts +440 -0
  586. package/es/components/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +937 -0
  587. package/es/{packages → components}/select-person/src/utils/index.d.ts +0 -0
  588. package/es/components/select-person/src/utils/index.js +1 -0
  589. package/es/{packages/select-person/src/utils/index.js → components/select-person/src/utils/index2.js} +0 -0
  590. package/es/components/select-person/style/index.css +1 -0
  591. package/es/components/shortcut-provider/index.d.ts +23 -0
  592. package/es/components/shortcut-provider/index.js +3 -0
  593. package/es/components/shortcut-provider/index2.js +13 -0
  594. package/es/components/shortcut-provider/src/ShortcutProvider.js +35 -0
  595. package/es/components/shortcut-provider/src/ShortcutProvider.vue.d.ts +21 -0
  596. package/es/components/shortcut-provider/src/constants/index.d.ts +7 -0
  597. package/es/components/shortcut-provider/src/constants/index.js +1 -0
  598. package/es/{packages/shortcut-provider/src/constants/index.js → components/shortcut-provider/src/constants/index2.js} +0 -0
  599. package/es/{packages → components}/shortcut-provider/src/hooks/index.d.ts +0 -0
  600. package/es/components/shortcut-provider/src/hooks/index.js +2 -0
  601. package/es/{packages → components}/shortcut-provider/src/hooks/useShortcutSignature.d.ts +0 -0
  602. package/es/components/shortcut-provider/src/hooks/useShortcutSignature.js +1 -0
  603. package/es/components/shortcut-provider/src/hooks/useShortcutSignature2.js +12 -0
  604. package/es/components/shortcut-provider/src/hooks/useShortcuts.d.ts +33 -0
  605. package/es/components/shortcut-provider/src/hooks/useShortcuts.js +1 -0
  606. package/es/components/shortcut-provider/src/hooks/useShortcuts2.js +181 -0
  607. package/es/components/shortcut-provider/src/types/index.d.ts +43 -0
  608. package/es/{packages → components}/shortcut-provider/src/types/index.js +0 -0
  609. package/es/components/shortcut-provider/src/utils/index.d.ts +10 -0
  610. package/es/components/shortcut-provider/src/utils/index.js +1 -0
  611. package/es/{packages/shortcut-provider/src/utils/index.js → components/shortcut-provider/src/utils/index2.js} +0 -0
  612. package/es/components/shortcut-provider/style/index.css +1 -0
  613. package/es/components/shortcut-setter/index.d.ts +2324 -0
  614. package/es/components/shortcut-setter/index.js +1 -0
  615. package/es/components/shortcut-setter/index2.js +10 -0
  616. package/es/components/shortcut-setter/src/ShortcutSetter.js +98 -0
  617. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +2326 -0
  618. package/es/components/shortcut-setter/src/ShortcutSetterItem.js +73 -0
  619. package/es/components/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +99 -0
  620. package/es/components/shortcut-setter/src/types/index.d.ts +6 -0
  621. package/es/{packages → components}/shortcut-setter/src/types/index.js +0 -0
  622. package/es/components/shortcut-setter/style/index.css +1 -0
  623. package/es/components/steps-wheel/index.d.ts +84 -0
  624. package/es/components/steps-wheel/index.js +1 -0
  625. package/es/components/steps-wheel/index2.js +10 -0
  626. package/es/{packages → components}/steps-wheel/src/StepsWheel.js +0 -0
  627. package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +83 -0
  628. package/es/components/steps-wheel/style/index.css +1 -0
  629. package/es/components/time-line/index.d.ts +81 -0
  630. package/es/components/time-line/index.js +1 -0
  631. package/es/components/time-line/index2.js +10 -0
  632. package/es/{packages → components}/time-line/src/TimeLine.js +0 -0
  633. package/es/components/time-line/src/TimeLine.vue.d.ts +84 -0
  634. package/es/components/time-line/style/index.css +1 -0
  635. package/es/env.d.ts +24 -0
  636. package/es/{src → shared}/assets/iconfont/iconfont.ttf +0 -0
  637. package/es/{src → shared}/assets/img/failure.d.ts +0 -0
  638. package/es/shared/assets/img/failure.js +3 -0
  639. package/es/{src → shared}/assets/img/icon-asc.d.ts +0 -0
  640. package/es/{src → shared}/assets/img/icon-asc.js +0 -0
  641. package/es/{src → shared}/assets/img/icon-desc.d.ts +0 -0
  642. package/es/{src → shared}/assets/img/icon-desc.js +0 -0
  643. package/es/{src → shared}/assets/img/no-permission.d.ts +0 -0
  644. package/es/shared/assets/img/no-permission.js +3 -0
  645. package/es/{src → shared}/assets/img/nodata.d.ts +0 -0
  646. package/es/shared/assets/img/nodata.js +3 -0
  647. package/es/{src → shared}/assets/img/notfound.d.ts +0 -0
  648. package/es/shared/assets/img/notfound.js +3 -0
  649. package/es/{src → shared}/assets/img/qr.d.ts +0 -0
  650. package/es/shared/assets/img/qr.js +3 -0
  651. package/es/{src → shared}/assets/img/success.d.ts +0 -0
  652. package/es/shared/assets/img/success.js +3 -0
  653. package/es/{src → shared}/assets/img/video.d.ts +0 -0
  654. package/es/shared/assets/img/video.js +3 -0
  655. package/es/{src → shared}/assets/img/video_default_cover.d.ts +0 -0
  656. package/es/shared/assets/img/video_default_cover.js +3 -0
  657. package/es/{src → shared}/assets/img/video_hover.d.ts +0 -0
  658. package/es/{src → shared}/assets/img/video_hover.js +0 -0
  659. package/es/{src → shared}/assets/img/video_play_hover.d.ts +0 -0
  660. package/es/{src → shared}/assets/img/video_play_hover.js +0 -0
  661. package/es/{src → shared}/assets/img/xb_big.d.ts +0 -0
  662. package/es/shared/assets/img/xb_big.js +3 -0
  663. package/es/{src → shared}/assets/img/xb_small.d.ts +0 -0
  664. package/es/shared/assets/img/xb_small.js +3 -0
  665. package/es/{src → shared}/components/SelectPage/SelectPage.js +0 -0
  666. package/es/shared/components/SelectPage/SelectPage.vue.d.ts +53 -0
  667. package/es/{src → shared}/components/SelectPage/index.d.ts +0 -0
  668. package/es/shared/components/SelectPage/index.js +1 -0
  669. package/es/{src/components/SelectPage/index.js → shared/components/SelectPage/index2.js} +0 -0
  670. package/es/shared/components/SlotRender/SlotRender.d.ts +20 -0
  671. package/es/{src → shared}/components/SlotRender/SlotRender.js +0 -0
  672. package/es/{src → shared}/components/SlotRender/index.d.ts +0 -0
  673. package/es/shared/components/SlotRender/index.js +1 -0
  674. package/es/{src/components/SlotRender/index.js → shared/components/SlotRender/index2.js} +0 -0
  675. package/es/{src → shared}/components/SvgIcon/SvgIcon.js +0 -0
  676. package/es/{src → shared}/components/SvgIcon/SvgIcon.vue.d.ts +0 -0
  677. package/es/{src → shared}/components/SvgIcon/index.d.ts +0 -0
  678. package/es/shared/components/SvgIcon/index.js +1 -0
  679. package/es/{src/components/SvgIcon/index.js → shared/components/SvgIcon/index2.js} +0 -0
  680. package/es/shared/components/TextOverTooltip/TextOverTooltip.js +77 -0
  681. package/es/shared/components/TextOverTooltip/TextOverTooltip.vue.d.ts +87 -0
  682. package/es/{src → shared}/components/TextOverTooltip/index.d.ts +0 -0
  683. package/es/shared/components/TextOverTooltip/index.js +1 -0
  684. package/es/{src/components/TextOverTooltip/index.js → shared/components/TextOverTooltip/index2.js} +0 -0
  685. package/es/{src → shared}/components/player-vod/index.vue.d.ts +0 -0
  686. package/es/{src → shared}/components/player-vod/player.d.ts +0 -0
  687. package/es/{src → shared}/components/player-vod/player.js +0 -0
  688. package/es/{src → shared}/components/player-vod/video-list.d.ts +0 -0
  689. package/es/{src → shared}/components/player-vod/video-modal.d.ts +0 -0
  690. package/es/{src → shared}/components/player-vod/video-modal.js +0 -0
  691. package/es/{src → shared}/core/create.d.ts +0 -0
  692. package/es/{src → shared}/global/variable.d.ts +0 -0
  693. package/es/shared/global/variable.js +1 -0
  694. package/es/{src/global/variable.js → shared/global/variable2.js} +0 -0
  695. package/es/shared/index.d.ts +0 -0
  696. package/es/{src/types → shared}/index.js +0 -0
  697. package/es/{src → shared}/types/index.d.ts +0 -0
  698. package/es/shared/types/index.js +1 -0
  699. package/es/{src → shared}/utils/anime.d.ts +0 -0
  700. package/es/shared/utils/anime.js +1 -0
  701. package/es/{src/utils/anime.js → shared/utils/anime2.js} +0 -0
  702. package/es/{src → shared}/utils/clickoutside.d.ts +0 -0
  703. package/es/shared/utils/clickoutside.js +1 -0
  704. package/es/{src/utils/clickoutside.js → shared/utils/clickoutside2.js} +0 -0
  705. package/es/{src → shared}/utils/colorLog.d.ts +0 -0
  706. package/es/shared/utils/colorLog.js +1 -0
  707. package/es/{src/utils/colorLog.js → shared/utils/colorLog2.js} +0 -0
  708. package/es/{src → shared}/utils/crypto.d.ts +0 -0
  709. package/es/{src → shared}/utils/index.d.ts +0 -0
  710. package/es/shared/utils/index.js +1 -0
  711. package/es/{src/utils/index.js → shared/utils/index2.js} +0 -0
  712. package/es/{src → shared}/utils/loadViewer.d.ts +0 -0
  713. package/es/shared/utils/loadViewer.js +1 -0
  714. package/es/shared/utils/loadViewer2.js +11 -0
  715. package/es/{src → shared}/utils/loadVxe.d.ts +0 -0
  716. package/es/shared/utils/loadVxe.js +1 -0
  717. package/es/shared/utils/loadVxe2.js +12 -0
  718. package/es/{src → shared}/utils/state.d.ts +0 -0
  719. package/es/shared/utils/state.js +1 -0
  720. package/es/{src/utils/state.js → shared/utils/state2.js} +0 -0
  721. package/es/{src → shared}/utils/tapable/AsyncParallelBailHook.d.ts +0 -0
  722. package/es/shared/utils/tapable/AsyncParallelBailHook.js +63 -0
  723. package/es/{src → shared}/utils/tapable/AsyncParallelHook.d.ts +0 -0
  724. package/es/shared/utils/tapable/AsyncParallelHook.js +12 -0
  725. package/es/{src → shared}/utils/tapable/AsyncSeriesBailHook.d.ts +0 -0
  726. package/es/shared/utils/tapable/AsyncSeriesBailHook.js +18 -0
  727. package/es/{src → shared}/utils/tapable/AsyncSeriesHook.d.ts +0 -0
  728. package/es/shared/utils/tapable/AsyncSeriesHook.js +12 -0
  729. package/es/{src → shared}/utils/tapable/AsyncSeriesLoopHook.d.ts +0 -0
  730. package/es/shared/utils/tapable/AsyncSeriesLoopHook.js +12 -0
  731. package/es/{src → shared}/utils/tapable/AsyncSeriesWaterfallHook.d.ts +0 -0
  732. package/es/shared/utils/tapable/AsyncSeriesWaterfallHook.js +23 -0
  733. package/es/{src → shared}/utils/tapable/Hook.d.ts +0 -0
  734. package/es/{src → shared}/utils/tapable/Hook.js +0 -0
  735. package/es/{src → shared}/utils/tapable/HookCodeFactory.d.ts +0 -0
  736. package/es/{src → shared}/utils/tapable/HookCodeFactory.js +0 -0
  737. package/es/{src → shared}/utils/tapable/HookMap.d.ts +0 -0
  738. package/es/{src → shared}/utils/tapable/MultiHook.d.ts +0 -0
  739. package/es/{src → shared}/utils/tapable/SyncBailHook.d.ts +0 -0
  740. package/es/shared/utils/tapable/SyncBailHook.js +19 -0
  741. package/es/{src → shared}/utils/tapable/SyncHook.d.ts +0 -0
  742. package/es/shared/utils/tapable/SyncHook.js +13 -0
  743. package/es/{src → shared}/utils/tapable/SyncLoopHook.d.ts +0 -0
  744. package/es/shared/utils/tapable/SyncLoopHook.js +13 -0
  745. package/es/{src → shared}/utils/tapable/SyncWaterfallHook.d.ts +0 -0
  746. package/es/{src → shared}/utils/tapable/SyncWaterfallHook.js +0 -0
  747. package/es/{src → shared}/utils/tapable/index.d.ts +0 -0
  748. package/es/shared/utils/utilExpand.d.ts +1 -0
  749. package/es/shared/utils/utilExpand.js +715 -0
  750. package/es/{src → shared}/utils/vexutils.d.ts +0 -0
  751. package/es/shared/utils/vexutils.js +59 -0
  752. package/package.json +14 -111
  753. package/README.md +0 -23
  754. package/env.d.ts +0 -42
  755. package/es/packages/annotation-edit/index.d.ts +0 -17
  756. package/es/packages/annotation-edit/index.js +0 -10
  757. package/es/packages/annotation-edit/style/index.css +0 -15
  758. package/es/packages/big-table/index.d.ts +0 -4554
  759. package/es/packages/big-table/index.js +0 -17
  760. package/es/packages/big-table/src/BigTable.vue.d.ts +0 -4556
  761. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +0 -2429
  762. package/es/packages/big-table/src/bigTableProps.d.ts +0 -207
  763. package/es/packages/big-table/src/components/NoData.js +0 -74
  764. package/es/packages/big-table/src/components/edit-form/edit-date.d.ts +0 -34
  765. package/es/packages/big-table/src/components/edit-form/edit-date.js +0 -142
  766. package/es/packages/big-table/src/components/edit-form/edit-input.d.ts +0 -43
  767. package/es/packages/big-table/src/components/edit-form/edit-input.js +0 -73
  768. package/es/packages/big-table/src/components/edit-form/edit-select-table.d.ts +0 -35
  769. package/es/packages/big-table/src/components/edit-form/edit-select-table.js +0 -148
  770. package/es/packages/big-table/src/components/edit-form/edit-select.d.ts +0 -35
  771. package/es/packages/big-table/src/components/edit-form/edit-select.js +0 -101
  772. package/es/packages/big-table/src/components/edit-form/edit-separate.js +0 -100
  773. package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +0 -1278
  774. package/es/packages/big-table/src/components/edit-form/edit-time.d.ts +0 -43
  775. package/es/packages/big-table/src/components/edit-form/edit-time.js +0 -62
  776. package/es/packages/big-table/src/components/input-button.vue.d.ts +0 -2252
  777. package/es/packages/big-table/src/components/separate.js +0 -30
  778. package/es/packages/big-table/src/components/separate.vue.d.ts +0 -42
  779. package/es/packages/big-table/src/constants/index.d.ts +0 -3
  780. package/es/packages/big-table/src/hooks/export.js +0 -1
  781. package/es/packages/big-table/src/hooks/index.js +0 -9
  782. package/es/packages/big-table/src/hooks/useAnnotation.d.ts +0 -4
  783. package/es/packages/big-table/src/hooks/useAnnotation.js +0 -21
  784. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.d.ts +0 -11
  785. package/es/packages/big-table/src/hooks/useEdit.d.ts +0 -1482
  786. package/es/packages/big-table/src/hooks/useEdit.js +0 -122
  787. package/es/packages/big-table/src/hooks/useEvent.js +0 -71
  788. package/es/packages/big-table/src/hooks/useFormat.js +0 -491
  789. package/es/packages/big-table/src/hooks/useNestTable.js +0 -85
  790. package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +0 -30
  791. package/es/packages/big-table/src/hooks/useSeparateRow.js +0 -164
  792. package/es/packages/big-table/src/hooks/useTableParse.js +0 -135
  793. package/es/packages/big-table/src/utils.js +0 -629
  794. package/es/packages/big-table/style/index.css +0 -634
  795. package/es/packages/bpmn-workflow/index.d.ts +0 -74
  796. package/es/packages/bpmn-workflow/index.js +0 -10
  797. package/es/packages/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -5
  798. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.js +0 -373
  799. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.js +0 -131
  800. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.js +0 -18
  801. package/es/packages/bpmn-workflow/src/custom/customModeler/index.js +0 -12
  802. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.js +0 -47
  803. package/es/packages/bpmn-workflow/src/custom/customRules/no-task.js +0 -1
  804. package/es/packages/bpmn-workflow/src/custom/customRules/no-task2.js +0 -16
  805. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.js +0 -15
  806. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.js +0 -227
  807. package/es/packages/bpmn-workflow/style/index.css +0 -29
  808. package/es/packages/button-print/index.d.ts +0 -7386
  809. package/es/packages/button-print/index.js +0 -11
  810. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +0 -7393
  811. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +0 -484
  812. package/es/packages/button-print/src/components/IdentityVerification.js +0 -128
  813. package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +0 -4796
  814. package/es/packages/button-print/src/utils/index.js +0 -1
  815. package/es/packages/button-print/src/utils/print.d.ts +0 -41
  816. package/es/packages/button-print/src/utils/print.js +0 -325
  817. package/es/packages/button-print/style/index.css +0 -24
  818. package/es/packages/chunk-upload/index.d.ts +0 -1775
  819. package/es/packages/chunk-upload/index.js +0 -15
  820. package/es/packages/chunk-upload/src/chunk-upload-new.js +0 -475
  821. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +0 -1935
  822. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +0 -329
  823. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +0 -1774
  824. package/es/packages/chunk-upload/style/index.css +0 -365
  825. package/es/packages/drag-layout/index.d.ts +0 -20115
  826. package/es/packages/drag-layout/index.js +0 -12
  827. package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +0 -7990
  828. package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +0 -3226
  829. package/es/packages/drag-layout/src/DragLayout.js +0 -659
  830. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +0 -20115
  831. package/es/packages/drag-layout/style/index.css +0 -175
  832. package/es/packages/editor/index.d.ts +0 -30
  833. package/es/packages/editor/index.js +0 -10
  834. package/es/packages/fabric-chart/index.d.ts +0 -204
  835. package/es/packages/fabric-chart/index.js +0 -10
  836. package/es/packages/fabric-chart/src/FabricChart.js +0 -332
  837. package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +0 -205
  838. package/es/packages/fabric-chart/src/components/PopupMenu.js +0 -105
  839. package/es/packages/fabric-chart/src/components/PopupTip.js +0 -34
  840. package/es/packages/fabric-chart/src/hooks/index.js +0 -9
  841. package/es/packages/fabric-chart/src/hooks/useBottom.js +0 -85
  842. package/es/packages/fabric-chart/src/hooks/useCenter.js +0 -534
  843. package/es/packages/fabric-chart/src/hooks/useDraw.d.ts +0 -42
  844. package/es/packages/fabric-chart/src/hooks/useDraw.js +0 -153
  845. package/es/packages/fabric-chart/src/hooks/useGrid.js +0 -50
  846. package/es/packages/fabric-chart/src/hooks/useLeft.js +0 -282
  847. package/es/packages/fabric-chart/src/hooks/useOther.js +0 -85
  848. package/es/packages/fabric-chart/src/hooks/useRight.js +0 -27
  849. package/es/packages/fabric-chart/src/hooks/useTop.js +0 -138
  850. package/es/packages/fabric-chart/src/interface.d.ts +0 -129
  851. package/es/packages/fabric-chart/style/index.css +0 -43
  852. package/es/packages/field-set/index.d.ts +0 -7006
  853. package/es/packages/field-set/index.js +0 -10
  854. package/es/packages/field-set/src/FieldSet.js +0 -424
  855. package/es/packages/field-set/src/FieldSet.vue.d.ts +0 -6982
  856. package/es/packages/field-set/style/index.css +0 -139
  857. package/es/packages/form-config/index.d.ts +0 -12108
  858. package/es/packages/form-config/index.js +0 -10
  859. package/es/packages/form-config/src/FormConfig.js +0 -118
  860. package/es/packages/form-config/src/FormConfig.vue.d.ts +0 -12110
  861. package/es/packages/form-config/src/components/FormConfigCreator.js +0 -101
  862. package/es/packages/form-config/src/components/FormConfigCreator.vue.d.ts +0 -5097
  863. package/es/packages/form-config/src/components/FormConfigDragDisplay.js +0 -42
  864. package/es/packages/form-config/src/components/FormConfigDragDisplay.vue.d.ts +0 -106
  865. package/es/packages/form-config/src/components/FormConfigEdit.js +0 -82
  866. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +0 -5367
  867. package/es/packages/form-config/src/components/renderer/CloseButton.js +0 -45
  868. package/es/packages/form-config/src/components/renderer/CloseButton.vue.d.ts +0 -1499
  869. package/es/packages/form-config/src/components/renderer/ComplexNode.js +0 -44
  870. package/es/packages/form-config/src/components/renderer/ComplexNode.vue.d.ts +0 -1641
  871. package/es/packages/form-config/src/components/renderer/DefaultNode.js +0 -59
  872. package/es/packages/form-config/src/components/renderer/DefaultNode.vue.d.ts +0 -3266
  873. package/es/packages/form-config/src/constants/index.d.ts +0 -64
  874. package/es/packages/form-config/src/hooks/index.js +0 -3
  875. package/es/packages/form-config/src/hooks/useConfigurationField.d.ts +0 -7
  876. package/es/packages/form-config/src/hooks/useConfigurationField.js +0 -52
  877. package/es/packages/form-config/src/hooks/usePresetRenderer.js +0 -35
  878. package/es/packages/form-config/src/types/index.d.ts +0 -37
  879. package/es/packages/form-config/src/utils/index.d.ts +0 -7
  880. package/es/packages/form-config/style/index.css +0 -158
  881. package/es/packages/form-render/index.d.ts +0 -1748
  882. package/es/packages/form-render/index.js +0 -23
  883. package/es/packages/form-render/src/FormRender.js +0 -208
  884. package/es/packages/form-render/src/FormRender.vue.d.ts +0 -1748
  885. package/es/packages/form-render/src/components/renderer/cascader.d.ts +0 -42
  886. package/es/packages/form-render/src/components/renderer/cascader.js +0 -176
  887. package/es/packages/form-render/src/components/renderer/checkbox.d.ts +0 -26
  888. package/es/packages/form-render/src/components/renderer/checkbox.js +0 -41
  889. package/es/packages/form-render/src/components/renderer/combination.d.ts +0 -44
  890. package/es/packages/form-render/src/components/renderer/combination.js +0 -92
  891. package/es/packages/form-render/src/components/renderer/complex.js +0 -36
  892. package/es/packages/form-render/src/components/renderer/date.js +0 -114
  893. package/es/packages/form-render/src/components/renderer/formItem.js +0 -80
  894. package/es/packages/form-render/src/components/renderer/index.js +0 -18
  895. package/es/packages/form-render/src/components/renderer/input.d.ts +0 -15
  896. package/es/packages/form-render/src/components/renderer/input.js +0 -30
  897. package/es/packages/form-render/src/components/renderer/inputNumber.d.ts +0 -31
  898. package/es/packages/form-render/src/components/renderer/inputNumber.js +0 -53
  899. package/es/packages/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.d.ts +0 -5
  900. package/es/packages/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.js +0 -32
  901. package/es/packages/form-render/src/components/renderer/jsonCombination/index.d.ts +0 -44
  902. package/es/packages/form-render/src/components/renderer/jsonCombination/index.js +0 -173
  903. package/es/packages/form-render/src/components/renderer/linebar.d.ts +0 -40
  904. package/es/packages/form-render/src/components/renderer/linebar.js +0 -72
  905. package/es/packages/form-render/src/components/renderer/radio.d.ts +0 -34
  906. package/es/packages/form-render/src/components/renderer/radio.js +0 -66
  907. package/es/packages/form-render/src/components/renderer/select.d.ts +0 -47
  908. package/es/packages/form-render/src/components/renderer/select.js +0 -165
  909. package/es/packages/form-render/src/components/renderer/simpleComponent.d.ts +0 -17
  910. package/es/packages/form-render/src/components/renderer/simpleComponent.js +0 -53
  911. package/es/packages/form-render/src/components/renderer/slider.js +0 -38
  912. package/es/packages/form-render/src/components/renderer/switch.js +0 -47
  913. package/es/packages/form-render/src/components/renderer/textarea.d.ts +0 -848
  914. package/es/packages/form-render/src/components/renderer/textarea.js +0 -11
  915. package/es/packages/form-render/src/constants/index.d.ts +0 -41
  916. package/es/packages/form-render/src/hooks/index.js +0 -13
  917. package/es/packages/form-render/src/hooks/useAnchor.d.ts +0 -16
  918. package/es/packages/form-render/src/hooks/useAnchor.js +0 -87
  919. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +0 -45
  920. package/es/packages/form-render/src/hooks/useAsyncQueue.js +0 -142
  921. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +0 -25
  922. package/es/packages/form-render/src/hooks/useBusinessBinding.js +0 -95
  923. package/es/packages/form-render/src/hooks/useChangeContext.d.ts +0 -13
  924. package/es/packages/form-render/src/hooks/useCommonInjection.d.ts +0 -6
  925. package/es/packages/form-render/src/hooks/useCommonInjection.js +0 -22
  926. package/es/packages/form-render/src/hooks/useCommonLog.js +0 -10
  927. package/es/packages/form-render/src/hooks/useFieldListAdaptor.d.ts +0 -64
  928. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +0 -241
  929. package/es/packages/form-render/src/hooks/useFieldNormalize.d.ts +0 -5
  930. package/es/packages/form-render/src/hooks/useFieldNormalize.js +0 -58
  931. package/es/packages/form-render/src/hooks/useFormContext.d.ts +0 -11
  932. package/es/packages/form-render/src/hooks/useFormContext.js +0 -62
  933. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +0 -11
  934. package/es/packages/form-render/src/hooks/useFormItemDeps.js +0 -30
  935. package/es/packages/form-render/src/hooks/useFormRenderLifeCycle.d.ts +0 -13
  936. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +0 -7
  937. package/es/packages/form-render/src/hooks/useFormValidator.d.ts +0 -5
  938. package/es/packages/form-render/src/hooks/useFormValidator.js +0 -67
  939. package/es/packages/form-render/src/hooks/usePresetScope.js +0 -21
  940. package/es/packages/form-render/src/types/fieldItem.d.ts +0 -219
  941. package/es/packages/form-render/src/types/index.d.ts +0 -79
  942. package/es/packages/form-render/src/utils/business.d.ts +0 -12
  943. package/es/packages/form-render/src/utils/business.js +0 -78
  944. package/es/packages/form-render/src/utils/dom.d.ts +0 -6
  945. package/es/packages/form-render/src/utils/dom.js +0 -14
  946. package/es/packages/form-render/src/utils/index.d.ts +0 -16
  947. package/es/packages/form-render/src/utils/index.js +0 -95
  948. package/es/packages/form-render/src/utils/schema.d.ts +0 -75
  949. package/es/packages/form-render/src/utils/schema.js +0 -86
  950. package/es/packages/form-render/style/index.css +0 -146
  951. package/es/packages/form-table/index.d.ts +0 -36024
  952. package/es/packages/form-table/index.js +0 -10
  953. package/es/packages/form-table/src/FormTable.js +0 -476
  954. package/es/packages/form-table/src/FormTable.vue.d.ts +0 -36024
  955. package/es/packages/form-table/src/components/index.d.ts +0 -35783
  956. package/es/packages/form-table/src/components/index.js +0 -40
  957. package/es/packages/form-table/src/components/table-age.js +0 -233
  958. package/es/packages/form-table/src/components/table-age.vue.d.ts +0 -4310
  959. package/es/packages/form-table/src/components/table-date-picker.js +0 -177
  960. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +0 -5315
  961. package/es/packages/form-table/src/components/table-digital.js +0 -139
  962. package/es/packages/form-table/src/components/table-digital.vue.d.ts +0 -2921
  963. package/es/packages/form-table/src/components/table-input-password.js +0 -139
  964. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +0 -1629
  965. package/es/packages/form-table/src/components/table-input.js +0 -125
  966. package/es/packages/form-table/src/components/table-input.vue.d.ts +0 -1586
  967. package/es/packages/form-table/src/components/table-month-picker.js +0 -101
  968. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +0 -5258
  969. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +0 -1791
  970. package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.js +0 -276
  971. package/es/packages/form-table/src/components/table-search.vue.d.ts +0 -3117
  972. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +0 -276
  973. package/es/packages/form-table/src/components/table-select-multiple.js +0 -162
  974. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +0 -1567
  975. package/es/packages/form-table/src/components/table-select.js +0 -157
  976. package/es/packages/form-table/src/components/table-select.vue.d.ts +0 -1566
  977. package/es/packages/form-table/src/components/table-textarea.js +0 -155
  978. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +0 -1645
  979. package/es/packages/form-table/src/components/table-time-picker.js +0 -147
  980. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +0 -2674
  981. package/es/packages/form-table/src/components/table-tree-select.js +0 -283
  982. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +0 -1897
  983. package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +0 -548
  984. package/es/packages/form-table/src/configs/index.d.ts +0 -35
  985. package/es/packages/form-table/src/hooks/index.js +0 -5
  986. package/es/packages/form-table/src/hooks/useBoundDate.d.ts +0 -21
  987. package/es/packages/form-table/src/hooks/useDateType.d.ts +0 -17
  988. package/es/packages/form-table/src/hooks/useDateType.js +0 -160
  989. package/es/packages/form-table/src/hooks/useFormCommon.d.ts +0 -14
  990. package/es/packages/form-table/src/hooks/useFormCommon.js +0 -100
  991. package/es/packages/form-table/src/hooks/useFormEvent.d.ts +0 -9
  992. package/es/packages/form-table/src/hooks/useFormEvent.js +0 -67
  993. package/es/packages/form-table/src/hooks/useItemDefault.d.ts +0 -53
  994. package/es/packages/form-table/src/hooks/useItemDefault.js +0 -218
  995. package/es/packages/form-table/src/hooks/useSearch.d.ts +0 -165
  996. package/es/packages/form-table/src/hooks/useSearch.js +0 -1153
  997. package/es/packages/form-table/src/hooks/useValidate.d.ts +0 -24
  998. package/es/packages/form-table/src/types/index.d.ts +0 -11
  999. package/es/packages/form-table/style/index.css +0 -214
  1000. package/es/packages/grid/index.d.ts +0 -3
  1001. package/es/packages/grid/index.js +0 -14
  1002. package/es/packages/grid/src/Grid.js +0 -28
  1003. package/es/packages/grid/style/index.css +0 -10
  1004. package/es/packages/index.css +0 -3346
  1005. package/es/packages/index.js +0 -96
  1006. package/es/packages/info-header/index.d.ts +0 -2881
  1007. package/es/packages/info-header/index.js +0 -10
  1008. package/es/packages/info-header/src/HiddenContent.vue.d.ts +0 -888
  1009. package/es/packages/info-header/src/InfoEllipsis.vue.d.ts +0 -833
  1010. package/es/packages/info-header/src/InfoHeader.js +0 -230
  1011. package/es/packages/info-header/src/InfoHeader.vue.d.ts +0 -2882
  1012. package/es/packages/info-header/style/index.css +0 -121
  1013. package/es/packages/map/index.d.ts +0 -2321
  1014. package/es/packages/map/index.js +0 -10
  1015. package/es/packages/map/src/Map.vue.d.ts +0 -2321
  1016. package/es/packages/map/style/index.css +0 -61
  1017. package/es/packages/scale-view/index.d.ts +0 -4464
  1018. package/es/packages/scale-view/index.js +0 -36
  1019. package/es/packages/scale-view/src/ScaleView.js +0 -419
  1020. package/es/packages/scale-view/src/ScaleView.vue.d.ts +0 -4287
  1021. package/es/packages/scale-view/src/components/AnswerParse.js +0 -80
  1022. package/es/packages/scale-view/src/components/EvaluateCountdown.js +0 -109
  1023. package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +0 -154
  1024. package/es/packages/scale-view/src/components/EvaluatePage.js +0 -141
  1025. package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +0 -1509
  1026. package/es/packages/scale-view/src/components/NoData.js +0 -74
  1027. package/es/packages/scale-view/src/components/formitem/r-address.d.ts +0 -34
  1028. package/es/packages/scale-view/src/components/formitem/r-address.js +0 -225
  1029. package/es/packages/scale-view/src/components/formitem/r-cascader.d.ts +0 -43
  1030. package/es/packages/scale-view/src/components/formitem/r-checkbox.d.ts +0 -43
  1031. package/es/packages/scale-view/src/components/formitem/r-checkbox.js +0 -280
  1032. package/es/packages/scale-view/src/components/formitem/r-collection.d.ts +0 -32
  1033. package/es/packages/scale-view/src/components/formitem/r-datetime.d.ts +0 -34
  1034. package/es/packages/scale-view/src/components/formitem/r-datetime.js +0 -212
  1035. package/es/packages/scale-view/src/components/formitem/r-input.d.ts +0 -34
  1036. package/es/packages/scale-view/src/components/formitem/r-map.d.ts +0 -52
  1037. package/es/packages/scale-view/src/components/formitem/r-map.js +0 -105
  1038. package/es/packages/scale-view/src/components/formitem/r-radio.d.ts +0 -43
  1039. package/es/packages/scale-view/src/components/formitem/r-radio.js +0 -240
  1040. package/es/packages/scale-view/src/components/formitem/r-select.d.ts +0 -61
  1041. package/es/packages/scale-view/src/components/formitem/r-upload.d.ts +0 -52
  1042. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.js +0 -79
  1043. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +0 -565
  1044. package/es/packages/scale-view/src/hooks/scaleview-computed.js +0 -309
  1045. package/es/packages/scale-view/src/hooks/scaleview-init.js +0 -436
  1046. package/es/packages/scale-view/src/hooks/scaleview-submit.js +0 -154
  1047. package/es/packages/scale-view/src/hooks/scaleview-validate.js +0 -187
  1048. package/es/packages/scale-view/src/hooks/use-component.d.ts +0 -10300
  1049. package/es/packages/scale-view/src/hooks/use-component.js +0 -82
  1050. package/es/packages/scale-view/src/hooks/use-evaluate.js +0 -150
  1051. package/es/packages/scale-view/src/hooks/use-event.js +0 -128
  1052. package/es/packages/scale-view/style/index.css +0 -738
  1053. package/es/packages/select-label/index.d.ts +0 -12185
  1054. package/es/packages/select-label/index.js +0 -15
  1055. package/es/packages/select-label/src/LabelFormContent.js +0 -442
  1056. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +0 -4592
  1057. package/es/packages/select-label/src/SelectLabel.vue.d.ts +0 -7609
  1058. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +0 -439
  1059. package/es/packages/select-label/src/components/label-classify.vue.d.ts +0 -3584
  1060. package/es/packages/select-label/style/index.css +0 -164
  1061. package/es/packages/select-person/index.d.ts +0 -3508
  1062. package/es/packages/select-person/index.js +0 -10
  1063. package/es/packages/select-person/src/SearchTree.vue.d.ts +0 -344
  1064. package/es/packages/select-person/src/SelectPerson.vue.d.ts +0 -3509
  1065. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +0 -936
  1066. package/es/packages/select-person/style/index.css +0 -193
  1067. package/es/packages/shortcut-provider/index.d.ts +0 -23
  1068. package/es/packages/shortcut-provider/index.js +0 -12
  1069. package/es/packages/shortcut-provider/src/ShortcutProvider.js +0 -34
  1070. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +0 -21
  1071. package/es/packages/shortcut-provider/src/constants/index.d.ts +0 -7
  1072. package/es/packages/shortcut-provider/src/hooks/index.js +0 -2
  1073. package/es/packages/shortcut-provider/src/hooks/useShortcutSignature.js +0 -12
  1074. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +0 -33
  1075. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +0 -181
  1076. package/es/packages/shortcut-provider/src/types/index.d.ts +0 -43
  1077. package/es/packages/shortcut-provider/src/utils/index.d.ts +0 -10
  1078. package/es/packages/shortcut-provider/style/index.css +0 -3
  1079. package/es/packages/shortcut-setter/index.d.ts +0 -3458
  1080. package/es/packages/shortcut-setter/index.js +0 -10
  1081. package/es/packages/shortcut-setter/src/ShortcutSetter.js +0 -97
  1082. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +0 -3460
  1083. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +0 -73
  1084. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +0 -946
  1085. package/es/packages/shortcut-setter/src/types/index.d.ts +0 -6
  1086. package/es/packages/shortcut-setter/style/index.css +0 -8
  1087. package/es/packages/steps-wheel/index.d.ts +0 -562
  1088. package/es/packages/steps-wheel/index.js +0 -10
  1089. package/es/packages/steps-wheel/src/StepsWheel.vue.d.ts +0 -561
  1090. package/es/packages/steps-wheel/style/index.css +0 -161
  1091. package/es/packages/time-line/index.d.ts +0 -1746
  1092. package/es/packages/time-line/index.js +0 -10
  1093. package/es/packages/time-line/src/TimeLine.vue.d.ts +0 -1749
  1094. package/es/packages/time-line/style/index.css +0 -37
  1095. package/es/src/assets/img/failure.js +0 -1
  1096. package/es/src/assets/img/no-permission.js +0 -1
  1097. package/es/src/assets/img/nodata.js +0 -1
  1098. package/es/src/assets/img/notfound.js +0 -1
  1099. package/es/src/assets/img/qr.js +0 -1
  1100. package/es/src/assets/img/success.js +0 -1
  1101. package/es/src/assets/img/video.js +0 -1
  1102. package/es/src/assets/img/video_default_cover.js +0 -1
  1103. package/es/src/assets/img/xb_big.js +0 -1
  1104. package/es/src/assets/img/xb_small.js +0 -1
  1105. package/es/src/components/SelectPage/SelectPage.vue.d.ts +0 -1452
  1106. package/es/src/components/SlotRender/SlotRender.d.ts +0 -20
  1107. package/es/src/components/TextOverTooltip/TextOverTooltip.js +0 -76
  1108. package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +0 -565
  1109. package/es/src/components/player-vod/index.js +0 -14
  1110. package/es/src/components/player-vod/video-list.js +0 -125
  1111. package/es/src/core/create.js +0 -8
  1112. package/es/src/utils/crypto.js +0 -25
  1113. package/es/src/utils/loadViewer.js +0 -11
  1114. package/es/src/utils/loadVxe.js +0 -12
  1115. package/es/src/utils/tapable/AsyncParallelBailHook.js +0 -78
  1116. package/es/src/utils/tapable/AsyncParallelHook.js +0 -27
  1117. package/es/src/utils/tapable/AsyncSeriesBailHook.js +0 -33
  1118. package/es/src/utils/tapable/AsyncSeriesHook.js +0 -27
  1119. package/es/src/utils/tapable/AsyncSeriesLoopHook.js +0 -27
  1120. package/es/src/utils/tapable/AsyncSeriesWaterfallHook.js +0 -40
  1121. package/es/src/utils/tapable/HookMap.js +0 -32
  1122. package/es/src/utils/tapable/MultiHook.js +0 -38
  1123. package/es/src/utils/tapable/SyncBailHook.js +0 -40
  1124. package/es/src/utils/tapable/SyncHook.js +0 -34
  1125. package/es/src/utils/tapable/SyncLoopHook.js +0 -34
  1126. package/es/src/utils/tapable/index.js +0 -12
  1127. package/es/src/utils/utilExpand.d.ts +0 -1
  1128. package/es/src/utils/utilExpand.js +0 -714
  1129. package/es/src/utils/vexutils.js +0 -80
  1130. package/global.d.ts +0 -8
@@ -1,4796 +0,0 @@
1
- import { FormRules, FormInst } from 'naive-ui';
2
- declare const _default: import("vue").DefineComponent<{
3
- verifyUser: {
4
- type: FunctionConstructor;
5
- required: false;
6
- default: () => Promise<void>;
7
- };
8
- identityVerificationTitle: {
9
- type: StringConstructor;
10
- required: false;
11
- default: string;
12
- };
13
- modelValue: {
14
- type: BooleanConstructor;
15
- required: true;
16
- };
17
- }, {
18
- $message: import("naive-ui").MessageApi;
19
- DEFAULT_FORM: {
20
- account: string;
21
- password: string;
22
- };
23
- props: {
24
- verifyUser: Function;
25
- identityVerificationTitle: string;
26
- modelValue: boolean;
27
- };
28
- emit: (event: "success" | "update:modelValue", ...args: any[]) => void;
29
- form: {
30
- account: string;
31
- password: string;
32
- };
33
- rules: FormRules;
34
- style: {
35
- width: string;
36
- };
37
- formRef: import("vue").Ref<{
38
- validate: import("naive-ui/es/form/src/interface").FormValidate;
39
- restoreValidation: () => void;
40
- } | null>;
41
- handleClickClose: () => void;
42
- submit: () => Promise<false | undefined>;
43
- handleClickSubmit: () => void;
44
- NButton: import("vue").DefineComponent<{
45
- readonly color: StringConstructor;
46
- readonly textColor: StringConstructor;
47
- readonly text: BooleanConstructor;
48
- readonly block: BooleanConstructor;
49
- readonly loading: BooleanConstructor;
50
- readonly disabled: BooleanConstructor;
51
- readonly circle: BooleanConstructor;
52
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
53
- readonly ghost: BooleanConstructor;
54
- readonly round: BooleanConstructor;
55
- readonly secondary: BooleanConstructor;
56
- readonly tertiary: BooleanConstructor;
57
- readonly quaternary: BooleanConstructor;
58
- readonly strong: BooleanConstructor;
59
- readonly focusable: {
60
- readonly type: BooleanConstructor;
61
- readonly default: true;
62
- };
63
- readonly keyboard: {
64
- readonly type: BooleanConstructor;
65
- readonly default: true;
66
- };
67
- readonly tag: {
68
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
69
- readonly default: "button";
70
- };
71
- readonly type: {
72
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
73
- readonly default: "default";
74
- };
75
- readonly dashed: BooleanConstructor;
76
- readonly iconPlacement: {
77
- readonly type: import("vue").PropType<"left" | "right">;
78
- readonly default: "left";
79
- };
80
- readonly attrType: {
81
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
82
- readonly default: "button";
83
- };
84
- readonly bordered: {
85
- readonly type: BooleanConstructor;
86
- readonly default: true;
87
- };
88
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
89
- readonly nativeFocusBehavior: {
90
- readonly type: BooleanConstructor;
91
- readonly default: boolean;
92
- };
93
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
94
- heightTiny: string;
95
- heightSmall: string;
96
- heightMedium: string;
97
- heightLarge: string;
98
- borderRadiusTiny: string;
99
- borderRadiusSmall: string;
100
- borderRadiusMedium: string;
101
- borderRadiusLarge: string;
102
- fontSizeTiny: string;
103
- fontSizeSmall: string;
104
- fontSizeMedium: string;
105
- fontSizeLarge: string;
106
- opacityDisabled: string;
107
- colorOpacitySecondary: string;
108
- colorOpacitySecondaryHover: string;
109
- colorOpacitySecondaryPressed: string;
110
- colorSecondary: string;
111
- colorSecondaryHover: string;
112
- colorSecondaryPressed: string;
113
- colorTertiary: string;
114
- colorTertiaryHover: string;
115
- colorTertiaryPressed: string;
116
- colorQuaternary: string;
117
- colorQuaternaryHover: string;
118
- colorQuaternaryPressed: string;
119
- color: string;
120
- colorHover: string;
121
- colorPressed: string;
122
- colorFocus: string;
123
- colorDisabled: string;
124
- textColor: string;
125
- textColorTertiary: string;
126
- textColorHover: string;
127
- textColorPressed: string;
128
- textColorFocus: string;
129
- textColorDisabled: string;
130
- textColorText: string;
131
- textColorTextHover: string;
132
- textColorTextPressed: string;
133
- textColorTextFocus: string;
134
- textColorTextDisabled: string;
135
- textColorGhost: string;
136
- textColorGhostHover: string;
137
- textColorGhostPressed: string;
138
- textColorGhostFocus: string;
139
- textColorGhostDisabled: string;
140
- border: string;
141
- borderHover: string;
142
- borderPressed: string;
143
- borderFocus: string;
144
- borderDisabled: string;
145
- rippleColor: string;
146
- colorPrimary: string;
147
- colorHoverPrimary: string;
148
- colorPressedPrimary: string;
149
- colorFocusPrimary: string;
150
- colorDisabledPrimary: string;
151
- textColorPrimary: string;
152
- textColorHoverPrimary: string;
153
- textColorPressedPrimary: string;
154
- textColorFocusPrimary: string;
155
- textColorDisabledPrimary: string;
156
- textColorTextPrimary: string;
157
- textColorTextHoverPrimary: string;
158
- textColorTextPressedPrimary: string;
159
- textColorTextFocusPrimary: string;
160
- textColorTextDisabledPrimary: string;
161
- textColorGhostPrimary: string;
162
- textColorGhostHoverPrimary: string;
163
- textColorGhostPressedPrimary: string;
164
- textColorGhostFocusPrimary: string;
165
- textColorGhostDisabledPrimary: string;
166
- borderPrimary: string;
167
- borderHoverPrimary: string;
168
- borderPressedPrimary: string;
169
- borderFocusPrimary: string;
170
- borderDisabledPrimary: string;
171
- rippleColorPrimary: string;
172
- colorInfo: string;
173
- colorHoverInfo: string;
174
- colorPressedInfo: string;
175
- colorFocusInfo: string;
176
- colorDisabledInfo: string;
177
- textColorInfo: string;
178
- textColorHoverInfo: string;
179
- textColorPressedInfo: string;
180
- textColorFocusInfo: string;
181
- textColorDisabledInfo: string;
182
- textColorTextInfo: string;
183
- textColorTextHoverInfo: string;
184
- textColorTextPressedInfo: string;
185
- textColorTextFocusInfo: string;
186
- textColorTextDisabledInfo: string;
187
- textColorGhostInfo: string;
188
- textColorGhostHoverInfo: string;
189
- textColorGhostPressedInfo: string;
190
- textColorGhostFocusInfo: string;
191
- textColorGhostDisabledInfo: string;
192
- borderInfo: string;
193
- borderHoverInfo: string;
194
- borderPressedInfo: string;
195
- borderFocusInfo: string;
196
- borderDisabledInfo: string;
197
- rippleColorInfo: string;
198
- colorSuccess: string;
199
- colorHoverSuccess: string;
200
- colorPressedSuccess: string;
201
- colorFocusSuccess: string;
202
- colorDisabledSuccess: string;
203
- textColorSuccess: string;
204
- textColorHoverSuccess: string;
205
- textColorPressedSuccess: string;
206
- textColorFocusSuccess: string;
207
- textColorDisabledSuccess: string;
208
- textColorTextSuccess: string;
209
- textColorTextHoverSuccess: string;
210
- textColorTextPressedSuccess: string;
211
- textColorTextFocusSuccess: string;
212
- textColorTextDisabledSuccess: string;
213
- textColorGhostSuccess: string;
214
- textColorGhostHoverSuccess: string;
215
- textColorGhostPressedSuccess: string;
216
- textColorGhostFocusSuccess: string;
217
- textColorGhostDisabledSuccess: string;
218
- borderSuccess: string;
219
- borderHoverSuccess: string;
220
- borderPressedSuccess: string;
221
- borderFocusSuccess: string;
222
- borderDisabledSuccess: string;
223
- rippleColorSuccess: string;
224
- colorWarning: string;
225
- colorHoverWarning: string;
226
- colorPressedWarning: string;
227
- colorFocusWarning: string;
228
- colorDisabledWarning: string;
229
- textColorWarning: string;
230
- textColorHoverWarning: string;
231
- textColorPressedWarning: string;
232
- textColorFocusWarning: string;
233
- textColorDisabledWarning: string;
234
- textColorTextWarning: string;
235
- textColorTextHoverWarning: string;
236
- textColorTextPressedWarning: string;
237
- textColorTextFocusWarning: string;
238
- textColorTextDisabledWarning: string;
239
- textColorGhostWarning: string;
240
- textColorGhostHoverWarning: string;
241
- textColorGhostPressedWarning: string;
242
- textColorGhostFocusWarning: string;
243
- textColorGhostDisabledWarning: string;
244
- borderWarning: string;
245
- borderHoverWarning: string;
246
- borderPressedWarning: string;
247
- borderFocusWarning: string;
248
- borderDisabledWarning: string;
249
- rippleColorWarning: string;
250
- colorError: string;
251
- colorHoverError: string;
252
- colorPressedError: string;
253
- colorFocusError: string;
254
- colorDisabledError: string;
255
- textColorError: string;
256
- textColorHoverError: string;
257
- textColorPressedError: string;
258
- textColorFocusError: string;
259
- textColorDisabledError: string;
260
- textColorTextError: string;
261
- textColorTextHoverError: string;
262
- textColorTextPressedError: string;
263
- textColorTextFocusError: string;
264
- textColorTextDisabledError: string;
265
- textColorGhostError: string;
266
- textColorGhostHoverError: string;
267
- textColorGhostPressedError: string;
268
- textColorGhostFocusError: string;
269
- textColorGhostDisabledError: string;
270
- borderError: string;
271
- borderHoverError: string;
272
- borderPressedError: string;
273
- borderFocusError: string;
274
- borderDisabledError: string;
275
- rippleColorError: string;
276
- waveOpacity: string;
277
- fontWeight: string;
278
- fontWeightStrong: string;
279
- paddingTiny: string;
280
- paddingSmall: string;
281
- paddingMedium: string;
282
- paddingLarge: string;
283
- paddingRoundTiny: string;
284
- paddingRoundSmall: string;
285
- paddingRoundMedium: string;
286
- paddingRoundLarge: string;
287
- iconMarginTiny: string;
288
- iconMarginSmall: string;
289
- iconMarginMedium: string;
290
- iconMarginLarge: string;
291
- iconSizeTiny: string;
292
- iconSizeSmall: string;
293
- iconSizeMedium: string;
294
- iconSizeLarge: string;
295
- rippleDuration: string;
296
- }, any>>;
297
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
298
- heightTiny: string;
299
- heightSmall: string;
300
- heightMedium: string;
301
- heightLarge: string;
302
- borderRadiusTiny: string;
303
- borderRadiusSmall: string;
304
- borderRadiusMedium: string;
305
- borderRadiusLarge: string;
306
- fontSizeTiny: string;
307
- fontSizeSmall: string;
308
- fontSizeMedium: string;
309
- fontSizeLarge: string;
310
- opacityDisabled: string;
311
- colorOpacitySecondary: string;
312
- colorOpacitySecondaryHover: string;
313
- colorOpacitySecondaryPressed: string;
314
- colorSecondary: string;
315
- colorSecondaryHover: string;
316
- colorSecondaryPressed: string;
317
- colorTertiary: string;
318
- colorTertiaryHover: string;
319
- colorTertiaryPressed: string;
320
- colorQuaternary: string;
321
- colorQuaternaryHover: string;
322
- colorQuaternaryPressed: string;
323
- color: string;
324
- colorHover: string;
325
- colorPressed: string;
326
- colorFocus: string;
327
- colorDisabled: string;
328
- textColor: string;
329
- textColorTertiary: string;
330
- textColorHover: string;
331
- textColorPressed: string;
332
- textColorFocus: string;
333
- textColorDisabled: string;
334
- textColorText: string;
335
- textColorTextHover: string;
336
- textColorTextPressed: string;
337
- textColorTextFocus: string;
338
- textColorTextDisabled: string;
339
- textColorGhost: string;
340
- textColorGhostHover: string;
341
- textColorGhostPressed: string;
342
- textColorGhostFocus: string;
343
- textColorGhostDisabled: string;
344
- border: string;
345
- borderHover: string;
346
- borderPressed: string;
347
- borderFocus: string;
348
- borderDisabled: string;
349
- rippleColor: string;
350
- colorPrimary: string;
351
- colorHoverPrimary: string;
352
- colorPressedPrimary: string;
353
- colorFocusPrimary: string;
354
- colorDisabledPrimary: string;
355
- textColorPrimary: string;
356
- textColorHoverPrimary: string;
357
- textColorPressedPrimary: string;
358
- textColorFocusPrimary: string;
359
- textColorDisabledPrimary: string;
360
- textColorTextPrimary: string;
361
- textColorTextHoverPrimary: string;
362
- textColorTextPressedPrimary: string;
363
- textColorTextFocusPrimary: string;
364
- textColorTextDisabledPrimary: string;
365
- textColorGhostPrimary: string;
366
- textColorGhostHoverPrimary: string;
367
- textColorGhostPressedPrimary: string;
368
- textColorGhostFocusPrimary: string;
369
- textColorGhostDisabledPrimary: string;
370
- borderPrimary: string;
371
- borderHoverPrimary: string;
372
- borderPressedPrimary: string;
373
- borderFocusPrimary: string;
374
- borderDisabledPrimary: string;
375
- rippleColorPrimary: string;
376
- colorInfo: string;
377
- colorHoverInfo: string;
378
- colorPressedInfo: string;
379
- colorFocusInfo: string;
380
- colorDisabledInfo: string;
381
- textColorInfo: string;
382
- textColorHoverInfo: string;
383
- textColorPressedInfo: string;
384
- textColorFocusInfo: string;
385
- textColorDisabledInfo: string;
386
- textColorTextInfo: string;
387
- textColorTextHoverInfo: string;
388
- textColorTextPressedInfo: string;
389
- textColorTextFocusInfo: string;
390
- textColorTextDisabledInfo: string;
391
- textColorGhostInfo: string;
392
- textColorGhostHoverInfo: string;
393
- textColorGhostPressedInfo: string;
394
- textColorGhostFocusInfo: string;
395
- textColorGhostDisabledInfo: string;
396
- borderInfo: string;
397
- borderHoverInfo: string;
398
- borderPressedInfo: string;
399
- borderFocusInfo: string;
400
- borderDisabledInfo: string;
401
- rippleColorInfo: string;
402
- colorSuccess: string;
403
- colorHoverSuccess: string;
404
- colorPressedSuccess: string;
405
- colorFocusSuccess: string;
406
- colorDisabledSuccess: string;
407
- textColorSuccess: string;
408
- textColorHoverSuccess: string;
409
- textColorPressedSuccess: string;
410
- textColorFocusSuccess: string;
411
- textColorDisabledSuccess: string;
412
- textColorTextSuccess: string;
413
- textColorTextHoverSuccess: string;
414
- textColorTextPressedSuccess: string;
415
- textColorTextFocusSuccess: string;
416
- textColorTextDisabledSuccess: string;
417
- textColorGhostSuccess: string;
418
- textColorGhostHoverSuccess: string;
419
- textColorGhostPressedSuccess: string;
420
- textColorGhostFocusSuccess: string;
421
- textColorGhostDisabledSuccess: string;
422
- borderSuccess: string;
423
- borderHoverSuccess: string;
424
- borderPressedSuccess: string;
425
- borderFocusSuccess: string;
426
- borderDisabledSuccess: string;
427
- rippleColorSuccess: string;
428
- colorWarning: string;
429
- colorHoverWarning: string;
430
- colorPressedWarning: string;
431
- colorFocusWarning: string;
432
- colorDisabledWarning: string;
433
- textColorWarning: string;
434
- textColorHoverWarning: string;
435
- textColorPressedWarning: string;
436
- textColorFocusWarning: string;
437
- textColorDisabledWarning: string;
438
- textColorTextWarning: string;
439
- textColorTextHoverWarning: string;
440
- textColorTextPressedWarning: string;
441
- textColorTextFocusWarning: string;
442
- textColorTextDisabledWarning: string;
443
- textColorGhostWarning: string;
444
- textColorGhostHoverWarning: string;
445
- textColorGhostPressedWarning: string;
446
- textColorGhostFocusWarning: string;
447
- textColorGhostDisabledWarning: string;
448
- borderWarning: string;
449
- borderHoverWarning: string;
450
- borderPressedWarning: string;
451
- borderFocusWarning: string;
452
- borderDisabledWarning: string;
453
- rippleColorWarning: string;
454
- colorError: string;
455
- colorHoverError: string;
456
- colorPressedError: string;
457
- colorFocusError: string;
458
- colorDisabledError: string;
459
- textColorError: string;
460
- textColorHoverError: string;
461
- textColorPressedError: string;
462
- textColorFocusError: string;
463
- textColorDisabledError: string;
464
- textColorTextError: string;
465
- textColorTextHoverError: string;
466
- textColorTextPressedError: string;
467
- textColorTextFocusError: string;
468
- textColorTextDisabledError: string;
469
- textColorGhostError: string;
470
- textColorGhostHoverError: string;
471
- textColorGhostPressedError: string;
472
- textColorGhostFocusError: string;
473
- textColorGhostDisabledError: string;
474
- borderError: string;
475
- borderHoverError: string;
476
- borderPressedError: string;
477
- borderFocusError: string;
478
- borderDisabledError: string;
479
- rippleColorError: string;
480
- waveOpacity: string;
481
- fontWeight: string;
482
- fontWeightStrong: string;
483
- paddingTiny: string;
484
- paddingSmall: string;
485
- paddingMedium: string;
486
- paddingLarge: string;
487
- paddingRoundTiny: string;
488
- paddingRoundSmall: string;
489
- paddingRoundMedium: string;
490
- paddingRoundLarge: string;
491
- iconMarginTiny: string;
492
- iconMarginSmall: string;
493
- iconMarginMedium: string;
494
- iconMarginLarge: string;
495
- iconSizeTiny: string;
496
- iconSizeSmall: string;
497
- iconSizeMedium: string;
498
- iconSizeLarge: string;
499
- rippleDuration: string;
500
- }, any>>>;
501
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
502
- heightTiny: string;
503
- heightSmall: string;
504
- heightMedium: string;
505
- heightLarge: string;
506
- borderRadiusTiny: string;
507
- borderRadiusSmall: string;
508
- borderRadiusMedium: string;
509
- borderRadiusLarge: string;
510
- fontSizeTiny: string;
511
- fontSizeSmall: string;
512
- fontSizeMedium: string;
513
- fontSizeLarge: string;
514
- opacityDisabled: string;
515
- colorOpacitySecondary: string;
516
- colorOpacitySecondaryHover: string;
517
- colorOpacitySecondaryPressed: string;
518
- colorSecondary: string;
519
- colorSecondaryHover: string;
520
- colorSecondaryPressed: string;
521
- colorTertiary: string;
522
- colorTertiaryHover: string;
523
- colorTertiaryPressed: string;
524
- colorQuaternary: string;
525
- colorQuaternaryHover: string;
526
- colorQuaternaryPressed: string;
527
- color: string;
528
- colorHover: string;
529
- colorPressed: string;
530
- colorFocus: string;
531
- colorDisabled: string;
532
- textColor: string;
533
- textColorTertiary: string;
534
- textColorHover: string;
535
- textColorPressed: string;
536
- textColorFocus: string;
537
- textColorDisabled: string;
538
- textColorText: string;
539
- textColorTextHover: string;
540
- textColorTextPressed: string;
541
- textColorTextFocus: string;
542
- textColorTextDisabled: string;
543
- textColorGhost: string;
544
- textColorGhostHover: string;
545
- textColorGhostPressed: string;
546
- textColorGhostFocus: string;
547
- textColorGhostDisabled: string;
548
- border: string;
549
- borderHover: string;
550
- borderPressed: string;
551
- borderFocus: string;
552
- borderDisabled: string;
553
- rippleColor: string;
554
- colorPrimary: string;
555
- colorHoverPrimary: string;
556
- colorPressedPrimary: string;
557
- colorFocusPrimary: string;
558
- colorDisabledPrimary: string;
559
- textColorPrimary: string;
560
- textColorHoverPrimary: string;
561
- textColorPressedPrimary: string;
562
- textColorFocusPrimary: string;
563
- textColorDisabledPrimary: string;
564
- textColorTextPrimary: string;
565
- textColorTextHoverPrimary: string;
566
- textColorTextPressedPrimary: string;
567
- textColorTextFocusPrimary: string;
568
- textColorTextDisabledPrimary: string;
569
- textColorGhostPrimary: string;
570
- textColorGhostHoverPrimary: string;
571
- textColorGhostPressedPrimary: string;
572
- textColorGhostFocusPrimary: string;
573
- textColorGhostDisabledPrimary: string;
574
- borderPrimary: string;
575
- borderHoverPrimary: string;
576
- borderPressedPrimary: string;
577
- borderFocusPrimary: string;
578
- borderDisabledPrimary: string;
579
- rippleColorPrimary: string;
580
- colorInfo: string;
581
- colorHoverInfo: string;
582
- colorPressedInfo: string;
583
- colorFocusInfo: string;
584
- colorDisabledInfo: string;
585
- textColorInfo: string;
586
- textColorHoverInfo: string;
587
- textColorPressedInfo: string;
588
- textColorFocusInfo: string;
589
- textColorDisabledInfo: string;
590
- textColorTextInfo: string;
591
- textColorTextHoverInfo: string;
592
- textColorTextPressedInfo: string;
593
- textColorTextFocusInfo: string;
594
- textColorTextDisabledInfo: string;
595
- textColorGhostInfo: string;
596
- textColorGhostHoverInfo: string;
597
- textColorGhostPressedInfo: string;
598
- textColorGhostFocusInfo: string;
599
- textColorGhostDisabledInfo: string;
600
- borderInfo: string;
601
- borderHoverInfo: string;
602
- borderPressedInfo: string;
603
- borderFocusInfo: string;
604
- borderDisabledInfo: string;
605
- rippleColorInfo: string;
606
- colorSuccess: string;
607
- colorHoverSuccess: string;
608
- colorPressedSuccess: string;
609
- colorFocusSuccess: string;
610
- colorDisabledSuccess: string;
611
- textColorSuccess: string;
612
- textColorHoverSuccess: string;
613
- textColorPressedSuccess: string;
614
- textColorFocusSuccess: string;
615
- textColorDisabledSuccess: string;
616
- textColorTextSuccess: string;
617
- textColorTextHoverSuccess: string;
618
- textColorTextPressedSuccess: string;
619
- textColorTextFocusSuccess: string;
620
- textColorTextDisabledSuccess: string;
621
- textColorGhostSuccess: string;
622
- textColorGhostHoverSuccess: string;
623
- textColorGhostPressedSuccess: string;
624
- textColorGhostFocusSuccess: string;
625
- textColorGhostDisabledSuccess: string;
626
- borderSuccess: string;
627
- borderHoverSuccess: string;
628
- borderPressedSuccess: string;
629
- borderFocusSuccess: string;
630
- borderDisabledSuccess: string;
631
- rippleColorSuccess: string;
632
- colorWarning: string;
633
- colorHoverWarning: string;
634
- colorPressedWarning: string;
635
- colorFocusWarning: string;
636
- colorDisabledWarning: string;
637
- textColorWarning: string;
638
- textColorHoverWarning: string;
639
- textColorPressedWarning: string;
640
- textColorFocusWarning: string;
641
- textColorDisabledWarning: string;
642
- textColorTextWarning: string;
643
- textColorTextHoverWarning: string;
644
- textColorTextPressedWarning: string;
645
- textColorTextFocusWarning: string;
646
- textColorTextDisabledWarning: string;
647
- textColorGhostWarning: string;
648
- textColorGhostHoverWarning: string;
649
- textColorGhostPressedWarning: string;
650
- textColorGhostFocusWarning: string;
651
- textColorGhostDisabledWarning: string;
652
- borderWarning: string;
653
- borderHoverWarning: string;
654
- borderPressedWarning: string;
655
- borderFocusWarning: string;
656
- borderDisabledWarning: string;
657
- rippleColorWarning: string;
658
- colorError: string;
659
- colorHoverError: string;
660
- colorPressedError: string;
661
- colorFocusError: string;
662
- colorDisabledError: string;
663
- textColorError: string;
664
- textColorHoverError: string;
665
- textColorPressedError: string;
666
- textColorFocusError: string;
667
- textColorDisabledError: string;
668
- textColorTextError: string;
669
- textColorTextHoverError: string;
670
- textColorTextPressedError: string;
671
- textColorTextFocusError: string;
672
- textColorTextDisabledError: string;
673
- textColorGhostError: string;
674
- textColorGhostHoverError: string;
675
- textColorGhostPressedError: string;
676
- textColorGhostFocusError: string;
677
- textColorGhostDisabledError: string;
678
- borderError: string;
679
- borderHoverError: string;
680
- borderPressedError: string;
681
- borderFocusError: string;
682
- borderDisabledError: string;
683
- rippleColorError: string;
684
- waveOpacity: string;
685
- fontWeight: string;
686
- fontWeightStrong: string;
687
- paddingTiny: string;
688
- paddingSmall: string;
689
- paddingMedium: string;
690
- paddingLarge: string;
691
- paddingRoundTiny: string;
692
- paddingRoundSmall: string;
693
- paddingRoundMedium: string;
694
- paddingRoundLarge: string;
695
- iconMarginTiny: string;
696
- iconMarginSmall: string;
697
- iconMarginMedium: string;
698
- iconMarginLarge: string;
699
- iconSizeTiny: string;
700
- iconSizeSmall: string;
701
- iconSizeMedium: string;
702
- iconSizeLarge: string;
703
- rippleDuration: string;
704
- }, any>>>;
705
- }, {
706
- selfElRef: import("vue").Ref<HTMLElement | null>;
707
- waveElRef: import("vue").Ref<{
708
- play: () => void;
709
- } | null>;
710
- mergedClsPrefix: import("vue").ComputedRef<string>;
711
- mergedFocusable: import("vue").ComputedRef<boolean>;
712
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
713
- showBorder: import("vue").ComputedRef<boolean>;
714
- enterPressed: import("vue").Ref<boolean>;
715
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
716
- handleMousedown: (e: MouseEvent) => void;
717
- handleKeydown: (e: KeyboardEvent) => void;
718
- handleBlur: () => void;
719
- handleKeyup: (e: KeyboardEvent) => void;
720
- handleClick: (e: MouseEvent) => void;
721
- customColorCssVars: import("vue").ComputedRef<{
722
- '--n-border-color': string;
723
- '--n-border-color-hover': string;
724
- '--n-border-color-pressed': string;
725
- '--n-border-color-focus': string;
726
- '--n-border-color-disabled': string;
727
- } | null>;
728
- cssVars: import("vue").ComputedRef<{
729
- '--n-width': string;
730
- '--n-height': string;
731
- '--n-font-size': string;
732
- '--n-padding': string;
733
- '--n-icon-size': string;
734
- '--n-icon-margin': string;
735
- '--n-border-radius': string;
736
- '--n-border': string;
737
- '--n-border-hover': string;
738
- '--n-border-pressed': string;
739
- '--n-border-focus': string;
740
- '--n-border-disabled': string;
741
- '--n-color': string;
742
- '--n-color-hover': string;
743
- '--n-color-pressed': string;
744
- '--n-color-focus': string;
745
- '--n-color-disabled': string;
746
- '--n-ripple-color': string;
747
- '--n-text-color': string;
748
- '--n-text-color-hover': string;
749
- '--n-text-color-pressed': string;
750
- '--n-text-color-focus': string;
751
- '--n-text-color-disabled': string;
752
- 'font-weight': string;
753
- '--n-bezier': string;
754
- '--n-bezier-ease-out': string;
755
- '--n-ripple-duration': string;
756
- '--n-opacity-disabled': string;
757
- '--n-wave-opacity': string;
758
- }> | undefined;
759
- themeClass: import("vue").Ref<string> | undefined;
760
- onRender: (() => void) | undefined;
761
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
762
- readonly color: StringConstructor;
763
- readonly textColor: StringConstructor;
764
- readonly text: BooleanConstructor;
765
- readonly block: BooleanConstructor;
766
- readonly loading: BooleanConstructor;
767
- readonly disabled: BooleanConstructor;
768
- readonly circle: BooleanConstructor;
769
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
770
- readonly ghost: BooleanConstructor;
771
- readonly round: BooleanConstructor;
772
- readonly secondary: BooleanConstructor;
773
- readonly tertiary: BooleanConstructor;
774
- readonly quaternary: BooleanConstructor;
775
- readonly strong: BooleanConstructor;
776
- readonly focusable: {
777
- readonly type: BooleanConstructor;
778
- readonly default: true;
779
- };
780
- readonly keyboard: {
781
- readonly type: BooleanConstructor;
782
- readonly default: true;
783
- };
784
- readonly tag: {
785
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
786
- readonly default: "button";
787
- };
788
- readonly type: {
789
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
790
- readonly default: "default";
791
- };
792
- readonly dashed: BooleanConstructor;
793
- readonly iconPlacement: {
794
- readonly type: import("vue").PropType<"left" | "right">;
795
- readonly default: "left";
796
- };
797
- readonly attrType: {
798
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
799
- readonly default: "button";
800
- };
801
- readonly bordered: {
802
- readonly type: BooleanConstructor;
803
- readonly default: true;
804
- };
805
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
806
- readonly nativeFocusBehavior: {
807
- readonly type: BooleanConstructor;
808
- readonly default: boolean;
809
- };
810
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
811
- heightTiny: string;
812
- heightSmall: string;
813
- heightMedium: string;
814
- heightLarge: string;
815
- borderRadiusTiny: string;
816
- borderRadiusSmall: string;
817
- borderRadiusMedium: string;
818
- borderRadiusLarge: string;
819
- fontSizeTiny: string;
820
- fontSizeSmall: string;
821
- fontSizeMedium: string;
822
- fontSizeLarge: string;
823
- opacityDisabled: string;
824
- colorOpacitySecondary: string;
825
- colorOpacitySecondaryHover: string;
826
- colorOpacitySecondaryPressed: string;
827
- colorSecondary: string;
828
- colorSecondaryHover: string;
829
- colorSecondaryPressed: string;
830
- colorTertiary: string;
831
- colorTertiaryHover: string;
832
- colorTertiaryPressed: string;
833
- colorQuaternary: string;
834
- colorQuaternaryHover: string;
835
- colorQuaternaryPressed: string;
836
- color: string;
837
- colorHover: string;
838
- colorPressed: string;
839
- colorFocus: string;
840
- colorDisabled: string;
841
- textColor: string;
842
- textColorTertiary: string;
843
- textColorHover: string;
844
- textColorPressed: string;
845
- textColorFocus: string;
846
- textColorDisabled: string;
847
- textColorText: string;
848
- textColorTextHover: string;
849
- textColorTextPressed: string;
850
- textColorTextFocus: string;
851
- textColorTextDisabled: string;
852
- textColorGhost: string;
853
- textColorGhostHover: string;
854
- textColorGhostPressed: string;
855
- textColorGhostFocus: string;
856
- textColorGhostDisabled: string;
857
- border: string;
858
- borderHover: string;
859
- borderPressed: string;
860
- borderFocus: string;
861
- borderDisabled: string;
862
- rippleColor: string;
863
- colorPrimary: string;
864
- colorHoverPrimary: string;
865
- colorPressedPrimary: string;
866
- colorFocusPrimary: string;
867
- colorDisabledPrimary: string;
868
- textColorPrimary: string;
869
- textColorHoverPrimary: string;
870
- textColorPressedPrimary: string;
871
- textColorFocusPrimary: string;
872
- textColorDisabledPrimary: string;
873
- textColorTextPrimary: string;
874
- textColorTextHoverPrimary: string;
875
- textColorTextPressedPrimary: string;
876
- textColorTextFocusPrimary: string;
877
- textColorTextDisabledPrimary: string;
878
- textColorGhostPrimary: string;
879
- textColorGhostHoverPrimary: string;
880
- textColorGhostPressedPrimary: string;
881
- textColorGhostFocusPrimary: string;
882
- textColorGhostDisabledPrimary: string;
883
- borderPrimary: string;
884
- borderHoverPrimary: string;
885
- borderPressedPrimary: string;
886
- borderFocusPrimary: string;
887
- borderDisabledPrimary: string;
888
- rippleColorPrimary: string;
889
- colorInfo: string;
890
- colorHoverInfo: string;
891
- colorPressedInfo: string;
892
- colorFocusInfo: string;
893
- colorDisabledInfo: string;
894
- textColorInfo: string;
895
- textColorHoverInfo: string;
896
- textColorPressedInfo: string;
897
- textColorFocusInfo: string;
898
- textColorDisabledInfo: string;
899
- textColorTextInfo: string;
900
- textColorTextHoverInfo: string;
901
- textColorTextPressedInfo: string;
902
- textColorTextFocusInfo: string;
903
- textColorTextDisabledInfo: string;
904
- textColorGhostInfo: string;
905
- textColorGhostHoverInfo: string;
906
- textColorGhostPressedInfo: string;
907
- textColorGhostFocusInfo: string;
908
- textColorGhostDisabledInfo: string;
909
- borderInfo: string;
910
- borderHoverInfo: string;
911
- borderPressedInfo: string;
912
- borderFocusInfo: string;
913
- borderDisabledInfo: string;
914
- rippleColorInfo: string;
915
- colorSuccess: string;
916
- colorHoverSuccess: string;
917
- colorPressedSuccess: string;
918
- colorFocusSuccess: string;
919
- colorDisabledSuccess: string;
920
- textColorSuccess: string;
921
- textColorHoverSuccess: string;
922
- textColorPressedSuccess: string;
923
- textColorFocusSuccess: string;
924
- textColorDisabledSuccess: string;
925
- textColorTextSuccess: string;
926
- textColorTextHoverSuccess: string;
927
- textColorTextPressedSuccess: string;
928
- textColorTextFocusSuccess: string;
929
- textColorTextDisabledSuccess: string;
930
- textColorGhostSuccess: string;
931
- textColorGhostHoverSuccess: string;
932
- textColorGhostPressedSuccess: string;
933
- textColorGhostFocusSuccess: string;
934
- textColorGhostDisabledSuccess: string;
935
- borderSuccess: string;
936
- borderHoverSuccess: string;
937
- borderPressedSuccess: string;
938
- borderFocusSuccess: string;
939
- borderDisabledSuccess: string;
940
- rippleColorSuccess: string;
941
- colorWarning: string;
942
- colorHoverWarning: string;
943
- colorPressedWarning: string;
944
- colorFocusWarning: string;
945
- colorDisabledWarning: string;
946
- textColorWarning: string;
947
- textColorHoverWarning: string;
948
- textColorPressedWarning: string;
949
- textColorFocusWarning: string;
950
- textColorDisabledWarning: string;
951
- textColorTextWarning: string;
952
- textColorTextHoverWarning: string;
953
- textColorTextPressedWarning: string;
954
- textColorTextFocusWarning: string;
955
- textColorTextDisabledWarning: string;
956
- textColorGhostWarning: string;
957
- textColorGhostHoverWarning: string;
958
- textColorGhostPressedWarning: string;
959
- textColorGhostFocusWarning: string;
960
- textColorGhostDisabledWarning: string;
961
- borderWarning: string;
962
- borderHoverWarning: string;
963
- borderPressedWarning: string;
964
- borderFocusWarning: string;
965
- borderDisabledWarning: string;
966
- rippleColorWarning: string;
967
- colorError: string;
968
- colorHoverError: string;
969
- colorPressedError: string;
970
- colorFocusError: string;
971
- colorDisabledError: string;
972
- textColorError: string;
973
- textColorHoverError: string;
974
- textColorPressedError: string;
975
- textColorFocusError: string;
976
- textColorDisabledError: string;
977
- textColorTextError: string;
978
- textColorTextHoverError: string;
979
- textColorTextPressedError: string;
980
- textColorTextFocusError: string;
981
- textColorTextDisabledError: string;
982
- textColorGhostError: string;
983
- textColorGhostHoverError: string;
984
- textColorGhostPressedError: string;
985
- textColorGhostFocusError: string;
986
- textColorGhostDisabledError: string;
987
- borderError: string;
988
- borderHoverError: string;
989
- borderPressedError: string;
990
- borderFocusError: string;
991
- borderDisabledError: string;
992
- rippleColorError: string;
993
- waveOpacity: string;
994
- fontWeight: string;
995
- fontWeightStrong: string;
996
- paddingTiny: string;
997
- paddingSmall: string;
998
- paddingMedium: string;
999
- paddingLarge: string;
1000
- paddingRoundTiny: string;
1001
- paddingRoundSmall: string;
1002
- paddingRoundMedium: string;
1003
- paddingRoundLarge: string;
1004
- iconMarginTiny: string;
1005
- iconMarginSmall: string;
1006
- iconMarginMedium: string;
1007
- iconMarginLarge: string;
1008
- iconSizeTiny: string;
1009
- iconSizeSmall: string;
1010
- iconSizeMedium: string;
1011
- iconSizeLarge: string;
1012
- rippleDuration: string;
1013
- }, any>>;
1014
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1015
- heightTiny: string;
1016
- heightSmall: string;
1017
- heightMedium: string;
1018
- heightLarge: string;
1019
- borderRadiusTiny: string;
1020
- borderRadiusSmall: string;
1021
- borderRadiusMedium: string;
1022
- borderRadiusLarge: string;
1023
- fontSizeTiny: string;
1024
- fontSizeSmall: string;
1025
- fontSizeMedium: string;
1026
- fontSizeLarge: string;
1027
- opacityDisabled: string;
1028
- colorOpacitySecondary: string;
1029
- colorOpacitySecondaryHover: string;
1030
- colorOpacitySecondaryPressed: string;
1031
- colorSecondary: string;
1032
- colorSecondaryHover: string;
1033
- colorSecondaryPressed: string;
1034
- colorTertiary: string;
1035
- colorTertiaryHover: string;
1036
- colorTertiaryPressed: string;
1037
- colorQuaternary: string;
1038
- colorQuaternaryHover: string;
1039
- colorQuaternaryPressed: string;
1040
- color: string;
1041
- colorHover: string;
1042
- colorPressed: string;
1043
- colorFocus: string;
1044
- colorDisabled: string;
1045
- textColor: string;
1046
- textColorTertiary: string;
1047
- textColorHover: string;
1048
- textColorPressed: string;
1049
- textColorFocus: string;
1050
- textColorDisabled: string;
1051
- textColorText: string;
1052
- textColorTextHover: string;
1053
- textColorTextPressed: string;
1054
- textColorTextFocus: string;
1055
- textColorTextDisabled: string;
1056
- textColorGhost: string;
1057
- textColorGhostHover: string;
1058
- textColorGhostPressed: string;
1059
- textColorGhostFocus: string;
1060
- textColorGhostDisabled: string;
1061
- border: string;
1062
- borderHover: string;
1063
- borderPressed: string;
1064
- borderFocus: string;
1065
- borderDisabled: string;
1066
- rippleColor: string;
1067
- colorPrimary: string;
1068
- colorHoverPrimary: string;
1069
- colorPressedPrimary: string;
1070
- colorFocusPrimary: string;
1071
- colorDisabledPrimary: string;
1072
- textColorPrimary: string;
1073
- textColorHoverPrimary: string;
1074
- textColorPressedPrimary: string;
1075
- textColorFocusPrimary: string;
1076
- textColorDisabledPrimary: string;
1077
- textColorTextPrimary: string;
1078
- textColorTextHoverPrimary: string;
1079
- textColorTextPressedPrimary: string;
1080
- textColorTextFocusPrimary: string;
1081
- textColorTextDisabledPrimary: string;
1082
- textColorGhostPrimary: string;
1083
- textColorGhostHoverPrimary: string;
1084
- textColorGhostPressedPrimary: string;
1085
- textColorGhostFocusPrimary: string;
1086
- textColorGhostDisabledPrimary: string;
1087
- borderPrimary: string;
1088
- borderHoverPrimary: string;
1089
- borderPressedPrimary: string;
1090
- borderFocusPrimary: string;
1091
- borderDisabledPrimary: string;
1092
- rippleColorPrimary: string;
1093
- colorInfo: string;
1094
- colorHoverInfo: string;
1095
- colorPressedInfo: string;
1096
- colorFocusInfo: string;
1097
- colorDisabledInfo: string;
1098
- textColorInfo: string;
1099
- textColorHoverInfo: string;
1100
- textColorPressedInfo: string;
1101
- textColorFocusInfo: string;
1102
- textColorDisabledInfo: string;
1103
- textColorTextInfo: string;
1104
- textColorTextHoverInfo: string;
1105
- textColorTextPressedInfo: string;
1106
- textColorTextFocusInfo: string;
1107
- textColorTextDisabledInfo: string;
1108
- textColorGhostInfo: string;
1109
- textColorGhostHoverInfo: string;
1110
- textColorGhostPressedInfo: string;
1111
- textColorGhostFocusInfo: string;
1112
- textColorGhostDisabledInfo: string;
1113
- borderInfo: string;
1114
- borderHoverInfo: string;
1115
- borderPressedInfo: string;
1116
- borderFocusInfo: string;
1117
- borderDisabledInfo: string;
1118
- rippleColorInfo: string;
1119
- colorSuccess: string;
1120
- colorHoverSuccess: string;
1121
- colorPressedSuccess: string;
1122
- colorFocusSuccess: string;
1123
- colorDisabledSuccess: string;
1124
- textColorSuccess: string;
1125
- textColorHoverSuccess: string;
1126
- textColorPressedSuccess: string;
1127
- textColorFocusSuccess: string;
1128
- textColorDisabledSuccess: string;
1129
- textColorTextSuccess: string;
1130
- textColorTextHoverSuccess: string;
1131
- textColorTextPressedSuccess: string;
1132
- textColorTextFocusSuccess: string;
1133
- textColorTextDisabledSuccess: string;
1134
- textColorGhostSuccess: string;
1135
- textColorGhostHoverSuccess: string;
1136
- textColorGhostPressedSuccess: string;
1137
- textColorGhostFocusSuccess: string;
1138
- textColorGhostDisabledSuccess: string;
1139
- borderSuccess: string;
1140
- borderHoverSuccess: string;
1141
- borderPressedSuccess: string;
1142
- borderFocusSuccess: string;
1143
- borderDisabledSuccess: string;
1144
- rippleColorSuccess: string;
1145
- colorWarning: string;
1146
- colorHoverWarning: string;
1147
- colorPressedWarning: string;
1148
- colorFocusWarning: string;
1149
- colorDisabledWarning: string;
1150
- textColorWarning: string;
1151
- textColorHoverWarning: string;
1152
- textColorPressedWarning: string;
1153
- textColorFocusWarning: string;
1154
- textColorDisabledWarning: string;
1155
- textColorTextWarning: string;
1156
- textColorTextHoverWarning: string;
1157
- textColorTextPressedWarning: string;
1158
- textColorTextFocusWarning: string;
1159
- textColorTextDisabledWarning: string;
1160
- textColorGhostWarning: string;
1161
- textColorGhostHoverWarning: string;
1162
- textColorGhostPressedWarning: string;
1163
- textColorGhostFocusWarning: string;
1164
- textColorGhostDisabledWarning: string;
1165
- borderWarning: string;
1166
- borderHoverWarning: string;
1167
- borderPressedWarning: string;
1168
- borderFocusWarning: string;
1169
- borderDisabledWarning: string;
1170
- rippleColorWarning: string;
1171
- colorError: string;
1172
- colorHoverError: string;
1173
- colorPressedError: string;
1174
- colorFocusError: string;
1175
- colorDisabledError: string;
1176
- textColorError: string;
1177
- textColorHoverError: string;
1178
- textColorPressedError: string;
1179
- textColorFocusError: string;
1180
- textColorDisabledError: string;
1181
- textColorTextError: string;
1182
- textColorTextHoverError: string;
1183
- textColorTextPressedError: string;
1184
- textColorTextFocusError: string;
1185
- textColorTextDisabledError: string;
1186
- textColorGhostError: string;
1187
- textColorGhostHoverError: string;
1188
- textColorGhostPressedError: string;
1189
- textColorGhostFocusError: string;
1190
- textColorGhostDisabledError: string;
1191
- borderError: string;
1192
- borderHoverError: string;
1193
- borderPressedError: string;
1194
- borderFocusError: string;
1195
- borderDisabledError: string;
1196
- rippleColorError: string;
1197
- waveOpacity: string;
1198
- fontWeight: string;
1199
- fontWeightStrong: string;
1200
- paddingTiny: string;
1201
- paddingSmall: string;
1202
- paddingMedium: string;
1203
- paddingLarge: string;
1204
- paddingRoundTiny: string;
1205
- paddingRoundSmall: string;
1206
- paddingRoundMedium: string;
1207
- paddingRoundLarge: string;
1208
- iconMarginTiny: string;
1209
- iconMarginSmall: string;
1210
- iconMarginMedium: string;
1211
- iconMarginLarge: string;
1212
- iconSizeTiny: string;
1213
- iconSizeSmall: string;
1214
- iconSizeMedium: string;
1215
- iconSizeLarge: string;
1216
- rippleDuration: string;
1217
- }, any>>>;
1218
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1219
- heightTiny: string;
1220
- heightSmall: string;
1221
- heightMedium: string;
1222
- heightLarge: string;
1223
- borderRadiusTiny: string;
1224
- borderRadiusSmall: string;
1225
- borderRadiusMedium: string;
1226
- borderRadiusLarge: string;
1227
- fontSizeTiny: string;
1228
- fontSizeSmall: string;
1229
- fontSizeMedium: string;
1230
- fontSizeLarge: string;
1231
- opacityDisabled: string;
1232
- colorOpacitySecondary: string;
1233
- colorOpacitySecondaryHover: string;
1234
- colorOpacitySecondaryPressed: string;
1235
- colorSecondary: string;
1236
- colorSecondaryHover: string;
1237
- colorSecondaryPressed: string;
1238
- colorTertiary: string;
1239
- colorTertiaryHover: string;
1240
- colorTertiaryPressed: string;
1241
- colorQuaternary: string;
1242
- colorQuaternaryHover: string;
1243
- colorQuaternaryPressed: string;
1244
- color: string;
1245
- colorHover: string;
1246
- colorPressed: string;
1247
- colorFocus: string;
1248
- colorDisabled: string;
1249
- textColor: string;
1250
- textColorTertiary: string;
1251
- textColorHover: string;
1252
- textColorPressed: string;
1253
- textColorFocus: string;
1254
- textColorDisabled: string;
1255
- textColorText: string;
1256
- textColorTextHover: string;
1257
- textColorTextPressed: string;
1258
- textColorTextFocus: string;
1259
- textColorTextDisabled: string;
1260
- textColorGhost: string;
1261
- textColorGhostHover: string;
1262
- textColorGhostPressed: string;
1263
- textColorGhostFocus: string;
1264
- textColorGhostDisabled: string;
1265
- border: string;
1266
- borderHover: string;
1267
- borderPressed: string;
1268
- borderFocus: string;
1269
- borderDisabled: string;
1270
- rippleColor: string;
1271
- colorPrimary: string;
1272
- colorHoverPrimary: string;
1273
- colorPressedPrimary: string;
1274
- colorFocusPrimary: string;
1275
- colorDisabledPrimary: string;
1276
- textColorPrimary: string;
1277
- textColorHoverPrimary: string;
1278
- textColorPressedPrimary: string;
1279
- textColorFocusPrimary: string;
1280
- textColorDisabledPrimary: string;
1281
- textColorTextPrimary: string;
1282
- textColorTextHoverPrimary: string;
1283
- textColorTextPressedPrimary: string;
1284
- textColorTextFocusPrimary: string;
1285
- textColorTextDisabledPrimary: string;
1286
- textColorGhostPrimary: string;
1287
- textColorGhostHoverPrimary: string;
1288
- textColorGhostPressedPrimary: string;
1289
- textColorGhostFocusPrimary: string;
1290
- textColorGhostDisabledPrimary: string;
1291
- borderPrimary: string;
1292
- borderHoverPrimary: string;
1293
- borderPressedPrimary: string;
1294
- borderFocusPrimary: string;
1295
- borderDisabledPrimary: string;
1296
- rippleColorPrimary: string;
1297
- colorInfo: string;
1298
- colorHoverInfo: string;
1299
- colorPressedInfo: string;
1300
- colorFocusInfo: string;
1301
- colorDisabledInfo: string;
1302
- textColorInfo: string;
1303
- textColorHoverInfo: string;
1304
- textColorPressedInfo: string;
1305
- textColorFocusInfo: string;
1306
- textColorDisabledInfo: string;
1307
- textColorTextInfo: string;
1308
- textColorTextHoverInfo: string;
1309
- textColorTextPressedInfo: string;
1310
- textColorTextFocusInfo: string;
1311
- textColorTextDisabledInfo: string;
1312
- textColorGhostInfo: string;
1313
- textColorGhostHoverInfo: string;
1314
- textColorGhostPressedInfo: string;
1315
- textColorGhostFocusInfo: string;
1316
- textColorGhostDisabledInfo: string;
1317
- borderInfo: string;
1318
- borderHoverInfo: string;
1319
- borderPressedInfo: string;
1320
- borderFocusInfo: string;
1321
- borderDisabledInfo: string;
1322
- rippleColorInfo: string;
1323
- colorSuccess: string;
1324
- colorHoverSuccess: string;
1325
- colorPressedSuccess: string;
1326
- colorFocusSuccess: string;
1327
- colorDisabledSuccess: string;
1328
- textColorSuccess: string;
1329
- textColorHoverSuccess: string;
1330
- textColorPressedSuccess: string;
1331
- textColorFocusSuccess: string;
1332
- textColorDisabledSuccess: string;
1333
- textColorTextSuccess: string;
1334
- textColorTextHoverSuccess: string;
1335
- textColorTextPressedSuccess: string;
1336
- textColorTextFocusSuccess: string;
1337
- textColorTextDisabledSuccess: string;
1338
- textColorGhostSuccess: string;
1339
- textColorGhostHoverSuccess: string;
1340
- textColorGhostPressedSuccess: string;
1341
- textColorGhostFocusSuccess: string;
1342
- textColorGhostDisabledSuccess: string;
1343
- borderSuccess: string;
1344
- borderHoverSuccess: string;
1345
- borderPressedSuccess: string;
1346
- borderFocusSuccess: string;
1347
- borderDisabledSuccess: string;
1348
- rippleColorSuccess: string;
1349
- colorWarning: string;
1350
- colorHoverWarning: string;
1351
- colorPressedWarning: string;
1352
- colorFocusWarning: string;
1353
- colorDisabledWarning: string;
1354
- textColorWarning: string;
1355
- textColorHoverWarning: string;
1356
- textColorPressedWarning: string;
1357
- textColorFocusWarning: string;
1358
- textColorDisabledWarning: string;
1359
- textColorTextWarning: string;
1360
- textColorTextHoverWarning: string;
1361
- textColorTextPressedWarning: string;
1362
- textColorTextFocusWarning: string;
1363
- textColorTextDisabledWarning: string;
1364
- textColorGhostWarning: string;
1365
- textColorGhostHoverWarning: string;
1366
- textColorGhostPressedWarning: string;
1367
- textColorGhostFocusWarning: string;
1368
- textColorGhostDisabledWarning: string;
1369
- borderWarning: string;
1370
- borderHoverWarning: string;
1371
- borderPressedWarning: string;
1372
- borderFocusWarning: string;
1373
- borderDisabledWarning: string;
1374
- rippleColorWarning: string;
1375
- colorError: string;
1376
- colorHoverError: string;
1377
- colorPressedError: string;
1378
- colorFocusError: string;
1379
- colorDisabledError: string;
1380
- textColorError: string;
1381
- textColorHoverError: string;
1382
- textColorPressedError: string;
1383
- textColorFocusError: string;
1384
- textColorDisabledError: string;
1385
- textColorTextError: string;
1386
- textColorTextHoverError: string;
1387
- textColorTextPressedError: string;
1388
- textColorTextFocusError: string;
1389
- textColorTextDisabledError: string;
1390
- textColorGhostError: string;
1391
- textColorGhostHoverError: string;
1392
- textColorGhostPressedError: string;
1393
- textColorGhostFocusError: string;
1394
- textColorGhostDisabledError: string;
1395
- borderError: string;
1396
- borderHoverError: string;
1397
- borderPressedError: string;
1398
- borderFocusError: string;
1399
- borderDisabledError: string;
1400
- rippleColorError: string;
1401
- waveOpacity: string;
1402
- fontWeight: string;
1403
- fontWeightStrong: string;
1404
- paddingTiny: string;
1405
- paddingSmall: string;
1406
- paddingMedium: string;
1407
- paddingLarge: string;
1408
- paddingRoundTiny: string;
1409
- paddingRoundSmall: string;
1410
- paddingRoundMedium: string;
1411
- paddingRoundLarge: string;
1412
- iconMarginTiny: string;
1413
- iconMarginSmall: string;
1414
- iconMarginMedium: string;
1415
- iconMarginLarge: string;
1416
- iconSizeTiny: string;
1417
- iconSizeSmall: string;
1418
- iconSizeMedium: string;
1419
- iconSizeLarge: string;
1420
- rippleDuration: string;
1421
- }, any>>>;
1422
- }>>, {
1423
- readonly type: import("naive-ui/es/button/src/interface").Type;
1424
- readonly tag: keyof HTMLElementTagNameMap;
1425
- readonly block: boolean;
1426
- readonly round: boolean;
1427
- readonly dashed: boolean;
1428
- readonly text: boolean;
1429
- readonly circle: boolean;
1430
- readonly disabled: boolean;
1431
- readonly focusable: boolean;
1432
- readonly strong: boolean;
1433
- readonly loading: boolean;
1434
- readonly bordered: boolean;
1435
- readonly tertiary: boolean;
1436
- readonly ghost: boolean;
1437
- readonly keyboard: boolean;
1438
- readonly secondary: boolean;
1439
- readonly quaternary: boolean;
1440
- readonly iconPlacement: "left" | "right";
1441
- readonly attrType: "button" | "reset" | "submit";
1442
- readonly nativeFocusBehavior: boolean;
1443
- }>;
1444
- NModal: import("vue").DefineComponent<{
1445
- onEsc: import("vue").PropType<() => void>;
1446
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1447
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1448
- onAfterEnter: import("vue").PropType<() => void>;
1449
- onBeforeLeave: import("vue").PropType<() => void>;
1450
- onAfterLeave: import("vue").PropType<() => void>;
1451
- onClose: import("vue").PropType<() => any>;
1452
- onPositiveClick: import("vue").PropType<() => any>;
1453
- onNegativeClick: import("vue").PropType<() => any>;
1454
- onMaskClick: import("vue").PropType<(e: MouseEvent) => void>;
1455
- internalDialog: BooleanConstructor;
1456
- internalAppear: {
1457
- type: import("vue").PropType<boolean | undefined>;
1458
- default: undefined;
1459
- };
1460
- overlayStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1461
- onBeforeHide: import("vue").PropType<() => void>;
1462
- onAfterHide: import("vue").PropType<() => void>;
1463
- onHide: import("vue").PropType<(value: false) => void>;
1464
- icon: import("vue").PropType<() => import("vue").VNodeChild>;
1465
- type: {
1466
- readonly type: import("vue").PropType<"default" | "info" | "success" | "warning" | "error">;
1467
- readonly default: "default";
1468
- };
1469
- title: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
1470
- closable: {
1471
- readonly type: BooleanConstructor;
1472
- readonly default: true;
1473
- };
1474
- negativeText: StringConstructor;
1475
- positiveText: StringConstructor;
1476
- positiveButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
1477
- negativeButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
1478
- content: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
1479
- action: import("vue").PropType<() => import("vue").VNodeChild>;
1480
- showIcon: {
1481
- readonly type: BooleanConstructor;
1482
- readonly default: true;
1483
- };
1484
- loading: BooleanConstructor;
1485
- bordered: BooleanConstructor;
1486
- iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
1487
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1488
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1489
- headerExtraStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1490
- footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1491
- embedded: BooleanConstructor;
1492
- segmented: {
1493
- readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
1494
- readonly default: false;
1495
- };
1496
- size: {
1497
- readonly type: import("vue").PropType<"small" | "medium" | "large" | "huge">;
1498
- readonly default: "medium";
1499
- };
1500
- hoverable: BooleanConstructor;
1501
- role: StringConstructor;
1502
- show: BooleanConstructor;
1503
- unstableShowMask: {
1504
- type: BooleanConstructor;
1505
- default: boolean;
1506
- };
1507
- maskClosable: {
1508
- type: BooleanConstructor;
1509
- default: boolean;
1510
- };
1511
- preset: import("vue").PropType<"dialog" | "card" | "confirm">;
1512
- to: import("vue").PropType<string | HTMLElement>;
1513
- displayDirective: {
1514
- type: import("vue").PropType<"show" | "if">;
1515
- default: string;
1516
- };
1517
- transformOrigin: {
1518
- type: import("vue").PropType<"center" | "mouse">;
1519
- default: string;
1520
- };
1521
- zIndex: NumberConstructor;
1522
- autoFocus: {
1523
- type: BooleanConstructor;
1524
- default: boolean;
1525
- };
1526
- trapFocus: {
1527
- type: BooleanConstructor;
1528
- default: boolean;
1529
- };
1530
- closeOnEsc: {
1531
- type: BooleanConstructor;
1532
- default: boolean;
1533
- };
1534
- blockScroll: {
1535
- type: BooleanConstructor;
1536
- default: boolean;
1537
- };
1538
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
1539
- color: string;
1540
- textColor: string;
1541
- boxShadow: string;
1542
- }, {
1543
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1544
- color: string;
1545
- colorHover: string;
1546
- }, any>;
1547
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
1548
- fontSize: string;
1549
- lineHeight: string;
1550
- border: string;
1551
- titleTextColor: string;
1552
- textColor: string;
1553
- color: string;
1554
- closeColorHover: string;
1555
- closeColorPressed: string;
1556
- closeIconColor: string;
1557
- closeIconColorHover: string;
1558
- closeIconColorPressed: string;
1559
- closeBorderRadius: string;
1560
- iconColor: string;
1561
- iconColorInfo: string;
1562
- iconColorSuccess: string;
1563
- iconColorWarning: string;
1564
- iconColorError: string;
1565
- borderRadius: string;
1566
- titleFontWeight: string;
1567
- titleFontSize: string;
1568
- padding: string;
1569
- iconSize: string;
1570
- actionSpace: string;
1571
- contentMargin: string;
1572
- iconMargin: string;
1573
- iconMarginIconTop: string;
1574
- closeSize: string;
1575
- closeIconSize: string;
1576
- closeMargin: string;
1577
- closeMarginIconTop: string;
1578
- }, {
1579
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
1580
- heightTiny: string;
1581
- heightSmall: string;
1582
- heightMedium: string;
1583
- heightLarge: string;
1584
- borderRadiusTiny: string;
1585
- borderRadiusSmall: string;
1586
- borderRadiusMedium: string;
1587
- borderRadiusLarge: string;
1588
- fontSizeTiny: string;
1589
- fontSizeSmall: string;
1590
- fontSizeMedium: string;
1591
- fontSizeLarge: string;
1592
- opacityDisabled: string;
1593
- colorOpacitySecondary: string;
1594
- colorOpacitySecondaryHover: string;
1595
- colorOpacitySecondaryPressed: string;
1596
- colorSecondary: string;
1597
- colorSecondaryHover: string;
1598
- colorSecondaryPressed: string;
1599
- colorTertiary: string;
1600
- colorTertiaryHover: string;
1601
- colorTertiaryPressed: string;
1602
- colorQuaternary: string;
1603
- colorQuaternaryHover: string;
1604
- colorQuaternaryPressed: string;
1605
- color: string;
1606
- colorHover: string;
1607
- colorPressed: string;
1608
- colorFocus: string;
1609
- colorDisabled: string;
1610
- textColor: string;
1611
- textColorTertiary: string;
1612
- textColorHover: string;
1613
- textColorPressed: string;
1614
- textColorFocus: string;
1615
- textColorDisabled: string;
1616
- textColorText: string;
1617
- textColorTextHover: string;
1618
- textColorTextPressed: string;
1619
- textColorTextFocus: string;
1620
- textColorTextDisabled: string;
1621
- textColorGhost: string;
1622
- textColorGhostHover: string;
1623
- textColorGhostPressed: string;
1624
- textColorGhostFocus: string;
1625
- textColorGhostDisabled: string;
1626
- border: string;
1627
- borderHover: string;
1628
- borderPressed: string;
1629
- borderFocus: string;
1630
- borderDisabled: string;
1631
- rippleColor: string;
1632
- colorPrimary: string;
1633
- colorHoverPrimary: string;
1634
- colorPressedPrimary: string;
1635
- colorFocusPrimary: string;
1636
- colorDisabledPrimary: string;
1637
- textColorPrimary: string;
1638
- textColorHoverPrimary: string;
1639
- textColorPressedPrimary: string;
1640
- textColorFocusPrimary: string;
1641
- textColorDisabledPrimary: string;
1642
- textColorTextPrimary: string;
1643
- textColorTextHoverPrimary: string;
1644
- textColorTextPressedPrimary: string;
1645
- textColorTextFocusPrimary: string;
1646
- textColorTextDisabledPrimary: string;
1647
- textColorGhostPrimary: string;
1648
- textColorGhostHoverPrimary: string;
1649
- textColorGhostPressedPrimary: string;
1650
- textColorGhostFocusPrimary: string;
1651
- textColorGhostDisabledPrimary: string;
1652
- borderPrimary: string;
1653
- borderHoverPrimary: string;
1654
- borderPressedPrimary: string;
1655
- borderFocusPrimary: string;
1656
- borderDisabledPrimary: string;
1657
- rippleColorPrimary: string;
1658
- colorInfo: string;
1659
- colorHoverInfo: string;
1660
- colorPressedInfo: string;
1661
- colorFocusInfo: string;
1662
- colorDisabledInfo: string;
1663
- textColorInfo: string;
1664
- textColorHoverInfo: string;
1665
- textColorPressedInfo: string;
1666
- textColorFocusInfo: string;
1667
- textColorDisabledInfo: string;
1668
- textColorTextInfo: string;
1669
- textColorTextHoverInfo: string;
1670
- textColorTextPressedInfo: string;
1671
- textColorTextFocusInfo: string;
1672
- textColorTextDisabledInfo: string;
1673
- textColorGhostInfo: string;
1674
- textColorGhostHoverInfo: string;
1675
- textColorGhostPressedInfo: string;
1676
- textColorGhostFocusInfo: string;
1677
- textColorGhostDisabledInfo: string;
1678
- borderInfo: string;
1679
- borderHoverInfo: string;
1680
- borderPressedInfo: string;
1681
- borderFocusInfo: string;
1682
- borderDisabledInfo: string;
1683
- rippleColorInfo: string;
1684
- colorSuccess: string;
1685
- colorHoverSuccess: string;
1686
- colorPressedSuccess: string;
1687
- colorFocusSuccess: string;
1688
- colorDisabledSuccess: string;
1689
- textColorSuccess: string;
1690
- textColorHoverSuccess: string;
1691
- textColorPressedSuccess: string;
1692
- textColorFocusSuccess: string;
1693
- textColorDisabledSuccess: string;
1694
- textColorTextSuccess: string;
1695
- textColorTextHoverSuccess: string;
1696
- textColorTextPressedSuccess: string;
1697
- textColorTextFocusSuccess: string;
1698
- textColorTextDisabledSuccess: string;
1699
- textColorGhostSuccess: string;
1700
- textColorGhostHoverSuccess: string;
1701
- textColorGhostPressedSuccess: string;
1702
- textColorGhostFocusSuccess: string;
1703
- textColorGhostDisabledSuccess: string;
1704
- borderSuccess: string;
1705
- borderHoverSuccess: string;
1706
- borderPressedSuccess: string;
1707
- borderFocusSuccess: string;
1708
- borderDisabledSuccess: string;
1709
- rippleColorSuccess: string;
1710
- colorWarning: string;
1711
- colorHoverWarning: string;
1712
- colorPressedWarning: string;
1713
- colorFocusWarning: string;
1714
- colorDisabledWarning: string;
1715
- textColorWarning: string;
1716
- textColorHoverWarning: string;
1717
- textColorPressedWarning: string;
1718
- textColorFocusWarning: string;
1719
- textColorDisabledWarning: string;
1720
- textColorTextWarning: string;
1721
- textColorTextHoverWarning: string;
1722
- textColorTextPressedWarning: string;
1723
- textColorTextFocusWarning: string;
1724
- textColorTextDisabledWarning: string;
1725
- textColorGhostWarning: string;
1726
- textColorGhostHoverWarning: string;
1727
- textColorGhostPressedWarning: string;
1728
- textColorGhostFocusWarning: string;
1729
- textColorGhostDisabledWarning: string;
1730
- borderWarning: string;
1731
- borderHoverWarning: string;
1732
- borderPressedWarning: string;
1733
- borderFocusWarning: string;
1734
- borderDisabledWarning: string;
1735
- rippleColorWarning: string;
1736
- colorError: string;
1737
- colorHoverError: string;
1738
- colorPressedError: string;
1739
- colorFocusError: string;
1740
- colorDisabledError: string;
1741
- textColorError: string;
1742
- textColorHoverError: string;
1743
- textColorPressedError: string;
1744
- textColorFocusError: string;
1745
- textColorDisabledError: string;
1746
- textColorTextError: string;
1747
- textColorTextHoverError: string;
1748
- textColorTextPressedError: string;
1749
- textColorTextFocusError: string;
1750
- textColorTextDisabledError: string;
1751
- textColorGhostError: string;
1752
- textColorGhostHoverError: string;
1753
- textColorGhostPressedError: string;
1754
- textColorGhostFocusError: string;
1755
- textColorGhostDisabledError: string;
1756
- borderError: string;
1757
- borderHoverError: string;
1758
- borderPressedError: string;
1759
- borderFocusError: string;
1760
- borderDisabledError: string;
1761
- rippleColorError: string;
1762
- waveOpacity: string;
1763
- fontWeight: string;
1764
- fontWeightStrong: string;
1765
- paddingTiny: string;
1766
- paddingSmall: string;
1767
- paddingMedium: string;
1768
- paddingLarge: string;
1769
- paddingRoundTiny: string;
1770
- paddingRoundSmall: string;
1771
- paddingRoundMedium: string;
1772
- paddingRoundLarge: string;
1773
- iconMarginTiny: string;
1774
- iconMarginSmall: string;
1775
- iconMarginMedium: string;
1776
- iconMarginLarge: string;
1777
- iconSizeTiny: string;
1778
- iconSizeSmall: string;
1779
- iconSizeMedium: string;
1780
- iconSizeLarge: string;
1781
- rippleDuration: string;
1782
- }, any>;
1783
- }>;
1784
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
1785
- lineHeight: string;
1786
- color: string;
1787
- colorModal: string;
1788
- colorPopover: string;
1789
- colorTarget: string;
1790
- colorEmbedded: string;
1791
- textColor: string;
1792
- titleTextColor: string;
1793
- borderColor: string;
1794
- actionColor: string;
1795
- titleFontWeight: string;
1796
- closeColorHover: string;
1797
- closeColorPressed: string;
1798
- closeBorderRadius: string;
1799
- closeIconColor: string;
1800
- closeIconColorHover: string;
1801
- closeIconColorPressed: string;
1802
- fontSizeSmall: string;
1803
- fontSizeMedium: string;
1804
- fontSizeLarge: string;
1805
- fontSizeHuge: string;
1806
- boxShadow: string;
1807
- borderRadius: string;
1808
- paddingSmall: string;
1809
- paddingMedium: string;
1810
- paddingLarge: string;
1811
- paddingHuge: string;
1812
- titleFontSizeSmall: string;
1813
- titleFontSizeMedium: string;
1814
- titleFontSizeLarge: string;
1815
- titleFontSizeHuge: string;
1816
- closeIconSize: string;
1817
- closeSize: string;
1818
- }, any>;
1819
- }>>;
1820
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
1821
- color: string;
1822
- textColor: string;
1823
- boxShadow: string;
1824
- }, {
1825
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1826
- color: string;
1827
- colorHover: string;
1828
- }, any>;
1829
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
1830
- fontSize: string;
1831
- lineHeight: string;
1832
- border: string;
1833
- titleTextColor: string;
1834
- textColor: string;
1835
- color: string;
1836
- closeColorHover: string;
1837
- closeColorPressed: string;
1838
- closeIconColor: string;
1839
- closeIconColorHover: string;
1840
- closeIconColorPressed: string;
1841
- closeBorderRadius: string;
1842
- iconColor: string;
1843
- iconColorInfo: string;
1844
- iconColorSuccess: string;
1845
- iconColorWarning: string;
1846
- iconColorError: string;
1847
- borderRadius: string;
1848
- titleFontWeight: string;
1849
- titleFontSize: string;
1850
- padding: string;
1851
- iconSize: string;
1852
- actionSpace: string;
1853
- contentMargin: string;
1854
- iconMargin: string;
1855
- iconMarginIconTop: string;
1856
- closeSize: string;
1857
- closeIconSize: string;
1858
- closeMargin: string;
1859
- closeMarginIconTop: string;
1860
- }, {
1861
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
1862
- heightTiny: string;
1863
- heightSmall: string;
1864
- heightMedium: string;
1865
- heightLarge: string;
1866
- borderRadiusTiny: string;
1867
- borderRadiusSmall: string;
1868
- borderRadiusMedium: string;
1869
- borderRadiusLarge: string;
1870
- fontSizeTiny: string;
1871
- fontSizeSmall: string;
1872
- fontSizeMedium: string;
1873
- fontSizeLarge: string;
1874
- opacityDisabled: string;
1875
- colorOpacitySecondary: string;
1876
- colorOpacitySecondaryHover: string;
1877
- colorOpacitySecondaryPressed: string;
1878
- colorSecondary: string;
1879
- colorSecondaryHover: string;
1880
- colorSecondaryPressed: string;
1881
- colorTertiary: string;
1882
- colorTertiaryHover: string;
1883
- colorTertiaryPressed: string;
1884
- colorQuaternary: string;
1885
- colorQuaternaryHover: string;
1886
- colorQuaternaryPressed: string;
1887
- color: string;
1888
- colorHover: string;
1889
- colorPressed: string;
1890
- colorFocus: string;
1891
- colorDisabled: string;
1892
- textColor: string;
1893
- textColorTertiary: string;
1894
- textColorHover: string;
1895
- textColorPressed: string;
1896
- textColorFocus: string;
1897
- textColorDisabled: string;
1898
- textColorText: string;
1899
- textColorTextHover: string;
1900
- textColorTextPressed: string;
1901
- textColorTextFocus: string;
1902
- textColorTextDisabled: string;
1903
- textColorGhost: string;
1904
- textColorGhostHover: string;
1905
- textColorGhostPressed: string;
1906
- textColorGhostFocus: string;
1907
- textColorGhostDisabled: string;
1908
- border: string;
1909
- borderHover: string;
1910
- borderPressed: string;
1911
- borderFocus: string;
1912
- borderDisabled: string;
1913
- rippleColor: string;
1914
- colorPrimary: string;
1915
- colorHoverPrimary: string;
1916
- colorPressedPrimary: string;
1917
- colorFocusPrimary: string;
1918
- colorDisabledPrimary: string;
1919
- textColorPrimary: string;
1920
- textColorHoverPrimary: string;
1921
- textColorPressedPrimary: string;
1922
- textColorFocusPrimary: string;
1923
- textColorDisabledPrimary: string;
1924
- textColorTextPrimary: string;
1925
- textColorTextHoverPrimary: string;
1926
- textColorTextPressedPrimary: string;
1927
- textColorTextFocusPrimary: string;
1928
- textColorTextDisabledPrimary: string;
1929
- textColorGhostPrimary: string;
1930
- textColorGhostHoverPrimary: string;
1931
- textColorGhostPressedPrimary: string;
1932
- textColorGhostFocusPrimary: string;
1933
- textColorGhostDisabledPrimary: string;
1934
- borderPrimary: string;
1935
- borderHoverPrimary: string;
1936
- borderPressedPrimary: string;
1937
- borderFocusPrimary: string;
1938
- borderDisabledPrimary: string;
1939
- rippleColorPrimary: string;
1940
- colorInfo: string;
1941
- colorHoverInfo: string;
1942
- colorPressedInfo: string;
1943
- colorFocusInfo: string;
1944
- colorDisabledInfo: string;
1945
- textColorInfo: string;
1946
- textColorHoverInfo: string;
1947
- textColorPressedInfo: string;
1948
- textColorFocusInfo: string;
1949
- textColorDisabledInfo: string;
1950
- textColorTextInfo: string;
1951
- textColorTextHoverInfo: string;
1952
- textColorTextPressedInfo: string;
1953
- textColorTextFocusInfo: string;
1954
- textColorTextDisabledInfo: string;
1955
- textColorGhostInfo: string;
1956
- textColorGhostHoverInfo: string;
1957
- textColorGhostPressedInfo: string;
1958
- textColorGhostFocusInfo: string;
1959
- textColorGhostDisabledInfo: string;
1960
- borderInfo: string;
1961
- borderHoverInfo: string;
1962
- borderPressedInfo: string;
1963
- borderFocusInfo: string;
1964
- borderDisabledInfo: string;
1965
- rippleColorInfo: string;
1966
- colorSuccess: string;
1967
- colorHoverSuccess: string;
1968
- colorPressedSuccess: string;
1969
- colorFocusSuccess: string;
1970
- colorDisabledSuccess: string;
1971
- textColorSuccess: string;
1972
- textColorHoverSuccess: string;
1973
- textColorPressedSuccess: string;
1974
- textColorFocusSuccess: string;
1975
- textColorDisabledSuccess: string;
1976
- textColorTextSuccess: string;
1977
- textColorTextHoverSuccess: string;
1978
- textColorTextPressedSuccess: string;
1979
- textColorTextFocusSuccess: string;
1980
- textColorTextDisabledSuccess: string;
1981
- textColorGhostSuccess: string;
1982
- textColorGhostHoverSuccess: string;
1983
- textColorGhostPressedSuccess: string;
1984
- textColorGhostFocusSuccess: string;
1985
- textColorGhostDisabledSuccess: string;
1986
- borderSuccess: string;
1987
- borderHoverSuccess: string;
1988
- borderPressedSuccess: string;
1989
- borderFocusSuccess: string;
1990
- borderDisabledSuccess: string;
1991
- rippleColorSuccess: string;
1992
- colorWarning: string;
1993
- colorHoverWarning: string;
1994
- colorPressedWarning: string;
1995
- colorFocusWarning: string;
1996
- colorDisabledWarning: string;
1997
- textColorWarning: string;
1998
- textColorHoverWarning: string;
1999
- textColorPressedWarning: string;
2000
- textColorFocusWarning: string;
2001
- textColorDisabledWarning: string;
2002
- textColorTextWarning: string;
2003
- textColorTextHoverWarning: string;
2004
- textColorTextPressedWarning: string;
2005
- textColorTextFocusWarning: string;
2006
- textColorTextDisabledWarning: string;
2007
- textColorGhostWarning: string;
2008
- textColorGhostHoverWarning: string;
2009
- textColorGhostPressedWarning: string;
2010
- textColorGhostFocusWarning: string;
2011
- textColorGhostDisabledWarning: string;
2012
- borderWarning: string;
2013
- borderHoverWarning: string;
2014
- borderPressedWarning: string;
2015
- borderFocusWarning: string;
2016
- borderDisabledWarning: string;
2017
- rippleColorWarning: string;
2018
- colorError: string;
2019
- colorHoverError: string;
2020
- colorPressedError: string;
2021
- colorFocusError: string;
2022
- colorDisabledError: string;
2023
- textColorError: string;
2024
- textColorHoverError: string;
2025
- textColorPressedError: string;
2026
- textColorFocusError: string;
2027
- textColorDisabledError: string;
2028
- textColorTextError: string;
2029
- textColorTextHoverError: string;
2030
- textColorTextPressedError: string;
2031
- textColorTextFocusError: string;
2032
- textColorTextDisabledError: string;
2033
- textColorGhostError: string;
2034
- textColorGhostHoverError: string;
2035
- textColorGhostPressedError: string;
2036
- textColorGhostFocusError: string;
2037
- textColorGhostDisabledError: string;
2038
- borderError: string;
2039
- borderHoverError: string;
2040
- borderPressedError: string;
2041
- borderFocusError: string;
2042
- borderDisabledError: string;
2043
- rippleColorError: string;
2044
- waveOpacity: string;
2045
- fontWeight: string;
2046
- fontWeightStrong: string;
2047
- paddingTiny: string;
2048
- paddingSmall: string;
2049
- paddingMedium: string;
2050
- paddingLarge: string;
2051
- paddingRoundTiny: string;
2052
- paddingRoundSmall: string;
2053
- paddingRoundMedium: string;
2054
- paddingRoundLarge: string;
2055
- iconMarginTiny: string;
2056
- iconMarginSmall: string;
2057
- iconMarginMedium: string;
2058
- iconMarginLarge: string;
2059
- iconSizeTiny: string;
2060
- iconSizeSmall: string;
2061
- iconSizeMedium: string;
2062
- iconSizeLarge: string;
2063
- rippleDuration: string;
2064
- }, any>;
2065
- }>;
2066
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
2067
- lineHeight: string;
2068
- color: string;
2069
- colorModal: string;
2070
- colorPopover: string;
2071
- colorTarget: string;
2072
- colorEmbedded: string;
2073
- textColor: string;
2074
- titleTextColor: string;
2075
- borderColor: string;
2076
- actionColor: string;
2077
- titleFontWeight: string;
2078
- closeColorHover: string;
2079
- closeColorPressed: string;
2080
- closeBorderRadius: string;
2081
- closeIconColor: string;
2082
- closeIconColorHover: string;
2083
- closeIconColorPressed: string;
2084
- fontSizeSmall: string;
2085
- fontSizeMedium: string;
2086
- fontSizeLarge: string;
2087
- fontSizeHuge: string;
2088
- boxShadow: string;
2089
- borderRadius: string;
2090
- paddingSmall: string;
2091
- paddingMedium: string;
2092
- paddingLarge: string;
2093
- paddingHuge: string;
2094
- titleFontSizeSmall: string;
2095
- titleFontSizeMedium: string;
2096
- titleFontSizeLarge: string;
2097
- titleFontSizeHuge: string;
2098
- closeIconSize: string;
2099
- closeSize: string;
2100
- }, any>;
2101
- }>>>;
2102
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
2103
- color: string;
2104
- textColor: string;
2105
- boxShadow: string;
2106
- }, {
2107
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2108
- color: string;
2109
- colorHover: string;
2110
- }, any>;
2111
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
2112
- fontSize: string;
2113
- lineHeight: string;
2114
- border: string;
2115
- titleTextColor: string;
2116
- textColor: string;
2117
- color: string;
2118
- closeColorHover: string;
2119
- closeColorPressed: string;
2120
- closeIconColor: string;
2121
- closeIconColorHover: string;
2122
- closeIconColorPressed: string;
2123
- closeBorderRadius: string;
2124
- iconColor: string;
2125
- iconColorInfo: string;
2126
- iconColorSuccess: string;
2127
- iconColorWarning: string;
2128
- iconColorError: string;
2129
- borderRadius: string;
2130
- titleFontWeight: string;
2131
- titleFontSize: string;
2132
- padding: string;
2133
- iconSize: string;
2134
- actionSpace: string;
2135
- contentMargin: string;
2136
- iconMargin: string;
2137
- iconMarginIconTop: string;
2138
- closeSize: string;
2139
- closeIconSize: string;
2140
- closeMargin: string;
2141
- closeMarginIconTop: string;
2142
- }, {
2143
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2144
- heightTiny: string;
2145
- heightSmall: string;
2146
- heightMedium: string;
2147
- heightLarge: string;
2148
- borderRadiusTiny: string;
2149
- borderRadiusSmall: string;
2150
- borderRadiusMedium: string;
2151
- borderRadiusLarge: string;
2152
- fontSizeTiny: string;
2153
- fontSizeSmall: string;
2154
- fontSizeMedium: string;
2155
- fontSizeLarge: string;
2156
- opacityDisabled: string;
2157
- colorOpacitySecondary: string;
2158
- colorOpacitySecondaryHover: string;
2159
- colorOpacitySecondaryPressed: string;
2160
- colorSecondary: string;
2161
- colorSecondaryHover: string;
2162
- colorSecondaryPressed: string;
2163
- colorTertiary: string;
2164
- colorTertiaryHover: string;
2165
- colorTertiaryPressed: string;
2166
- colorQuaternary: string;
2167
- colorQuaternaryHover: string;
2168
- colorQuaternaryPressed: string;
2169
- color: string;
2170
- colorHover: string;
2171
- colorPressed: string;
2172
- colorFocus: string;
2173
- colorDisabled: string;
2174
- textColor: string;
2175
- textColorTertiary: string;
2176
- textColorHover: string;
2177
- textColorPressed: string;
2178
- textColorFocus: string;
2179
- textColorDisabled: string;
2180
- textColorText: string;
2181
- textColorTextHover: string;
2182
- textColorTextPressed: string;
2183
- textColorTextFocus: string;
2184
- textColorTextDisabled: string;
2185
- textColorGhost: string;
2186
- textColorGhostHover: string;
2187
- textColorGhostPressed: string;
2188
- textColorGhostFocus: string;
2189
- textColorGhostDisabled: string;
2190
- border: string;
2191
- borderHover: string;
2192
- borderPressed: string;
2193
- borderFocus: string;
2194
- borderDisabled: string;
2195
- rippleColor: string;
2196
- colorPrimary: string;
2197
- colorHoverPrimary: string;
2198
- colorPressedPrimary: string;
2199
- colorFocusPrimary: string;
2200
- colorDisabledPrimary: string;
2201
- textColorPrimary: string;
2202
- textColorHoverPrimary: string;
2203
- textColorPressedPrimary: string;
2204
- textColorFocusPrimary: string;
2205
- textColorDisabledPrimary: string;
2206
- textColorTextPrimary: string;
2207
- textColorTextHoverPrimary: string;
2208
- textColorTextPressedPrimary: string;
2209
- textColorTextFocusPrimary: string;
2210
- textColorTextDisabledPrimary: string;
2211
- textColorGhostPrimary: string;
2212
- textColorGhostHoverPrimary: string;
2213
- textColorGhostPressedPrimary: string;
2214
- textColorGhostFocusPrimary: string;
2215
- textColorGhostDisabledPrimary: string;
2216
- borderPrimary: string;
2217
- borderHoverPrimary: string;
2218
- borderPressedPrimary: string;
2219
- borderFocusPrimary: string;
2220
- borderDisabledPrimary: string;
2221
- rippleColorPrimary: string;
2222
- colorInfo: string;
2223
- colorHoverInfo: string;
2224
- colorPressedInfo: string;
2225
- colorFocusInfo: string;
2226
- colorDisabledInfo: string;
2227
- textColorInfo: string;
2228
- textColorHoverInfo: string;
2229
- textColorPressedInfo: string;
2230
- textColorFocusInfo: string;
2231
- textColorDisabledInfo: string;
2232
- textColorTextInfo: string;
2233
- textColorTextHoverInfo: string;
2234
- textColorTextPressedInfo: string;
2235
- textColorTextFocusInfo: string;
2236
- textColorTextDisabledInfo: string;
2237
- textColorGhostInfo: string;
2238
- textColorGhostHoverInfo: string;
2239
- textColorGhostPressedInfo: string;
2240
- textColorGhostFocusInfo: string;
2241
- textColorGhostDisabledInfo: string;
2242
- borderInfo: string;
2243
- borderHoverInfo: string;
2244
- borderPressedInfo: string;
2245
- borderFocusInfo: string;
2246
- borderDisabledInfo: string;
2247
- rippleColorInfo: string;
2248
- colorSuccess: string;
2249
- colorHoverSuccess: string;
2250
- colorPressedSuccess: string;
2251
- colorFocusSuccess: string;
2252
- colorDisabledSuccess: string;
2253
- textColorSuccess: string;
2254
- textColorHoverSuccess: string;
2255
- textColorPressedSuccess: string;
2256
- textColorFocusSuccess: string;
2257
- textColorDisabledSuccess: string;
2258
- textColorTextSuccess: string;
2259
- textColorTextHoverSuccess: string;
2260
- textColorTextPressedSuccess: string;
2261
- textColorTextFocusSuccess: string;
2262
- textColorTextDisabledSuccess: string;
2263
- textColorGhostSuccess: string;
2264
- textColorGhostHoverSuccess: string;
2265
- textColorGhostPressedSuccess: string;
2266
- textColorGhostFocusSuccess: string;
2267
- textColorGhostDisabledSuccess: string;
2268
- borderSuccess: string;
2269
- borderHoverSuccess: string;
2270
- borderPressedSuccess: string;
2271
- borderFocusSuccess: string;
2272
- borderDisabledSuccess: string;
2273
- rippleColorSuccess: string;
2274
- colorWarning: string;
2275
- colorHoverWarning: string;
2276
- colorPressedWarning: string;
2277
- colorFocusWarning: string;
2278
- colorDisabledWarning: string;
2279
- textColorWarning: string;
2280
- textColorHoverWarning: string;
2281
- textColorPressedWarning: string;
2282
- textColorFocusWarning: string;
2283
- textColorDisabledWarning: string;
2284
- textColorTextWarning: string;
2285
- textColorTextHoverWarning: string;
2286
- textColorTextPressedWarning: string;
2287
- textColorTextFocusWarning: string;
2288
- textColorTextDisabledWarning: string;
2289
- textColorGhostWarning: string;
2290
- textColorGhostHoverWarning: string;
2291
- textColorGhostPressedWarning: string;
2292
- textColorGhostFocusWarning: string;
2293
- textColorGhostDisabledWarning: string;
2294
- borderWarning: string;
2295
- borderHoverWarning: string;
2296
- borderPressedWarning: string;
2297
- borderFocusWarning: string;
2298
- borderDisabledWarning: string;
2299
- rippleColorWarning: string;
2300
- colorError: string;
2301
- colorHoverError: string;
2302
- colorPressedError: string;
2303
- colorFocusError: string;
2304
- colorDisabledError: string;
2305
- textColorError: string;
2306
- textColorHoverError: string;
2307
- textColorPressedError: string;
2308
- textColorFocusError: string;
2309
- textColorDisabledError: string;
2310
- textColorTextError: string;
2311
- textColorTextHoverError: string;
2312
- textColorTextPressedError: string;
2313
- textColorTextFocusError: string;
2314
- textColorTextDisabledError: string;
2315
- textColorGhostError: string;
2316
- textColorGhostHoverError: string;
2317
- textColorGhostPressedError: string;
2318
- textColorGhostFocusError: string;
2319
- textColorGhostDisabledError: string;
2320
- borderError: string;
2321
- borderHoverError: string;
2322
- borderPressedError: string;
2323
- borderFocusError: string;
2324
- borderDisabledError: string;
2325
- rippleColorError: string;
2326
- waveOpacity: string;
2327
- fontWeight: string;
2328
- fontWeightStrong: string;
2329
- paddingTiny: string;
2330
- paddingSmall: string;
2331
- paddingMedium: string;
2332
- paddingLarge: string;
2333
- paddingRoundTiny: string;
2334
- paddingRoundSmall: string;
2335
- paddingRoundMedium: string;
2336
- paddingRoundLarge: string;
2337
- iconMarginTiny: string;
2338
- iconMarginSmall: string;
2339
- iconMarginMedium: string;
2340
- iconMarginLarge: string;
2341
- iconSizeTiny: string;
2342
- iconSizeSmall: string;
2343
- iconSizeMedium: string;
2344
- iconSizeLarge: string;
2345
- rippleDuration: string;
2346
- }, any>;
2347
- }>;
2348
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
2349
- lineHeight: string;
2350
- color: string;
2351
- colorModal: string;
2352
- colorPopover: string;
2353
- colorTarget: string;
2354
- colorEmbedded: string;
2355
- textColor: string;
2356
- titleTextColor: string;
2357
- borderColor: string;
2358
- actionColor: string;
2359
- titleFontWeight: string;
2360
- closeColorHover: string;
2361
- closeColorPressed: string;
2362
- closeBorderRadius: string;
2363
- closeIconColor: string;
2364
- closeIconColorHover: string;
2365
- closeIconColorPressed: string;
2366
- fontSizeSmall: string;
2367
- fontSizeMedium: string;
2368
- fontSizeLarge: string;
2369
- fontSizeHuge: string;
2370
- boxShadow: string;
2371
- borderRadius: string;
2372
- paddingSmall: string;
2373
- paddingMedium: string;
2374
- paddingLarge: string;
2375
- paddingHuge: string;
2376
- titleFontSizeSmall: string;
2377
- titleFontSizeMedium: string;
2378
- titleFontSizeLarge: string;
2379
- titleFontSizeHuge: string;
2380
- closeIconSize: string;
2381
- closeSize: string;
2382
- }, any>;
2383
- }>>>;
2384
- }, {
2385
- mergedClsPrefix: import("vue").ComputedRef<string>;
2386
- namespace: import("vue").ComputedRef<string | undefined>;
2387
- isMounted: Readonly<import("vue").Ref<boolean>>;
2388
- containerRef: import("vue").Ref<HTMLElement | null>;
2389
- presetProps: import("vue").ComputedRef<any>;
2390
- handleEsc: (e: KeyboardEvent) => void;
2391
- handleAfterLeave: () => void;
2392
- handleClickoutside: (e: MouseEvent) => void;
2393
- handleBeforeLeave: () => void;
2394
- doUpdateShow: (show: boolean) => void;
2395
- handleNegativeClick: () => void;
2396
- handlePositiveClick: () => void;
2397
- handleCloseClick: () => void;
2398
- cssVars: import("vue").ComputedRef<{
2399
- '--n-bezier-ease-out': string;
2400
- '--n-box-shadow': string;
2401
- '--n-color': string;
2402
- '--n-text-color': string;
2403
- }> | undefined;
2404
- themeClass: import("vue").Ref<string> | undefined;
2405
- onRender: (() => void) | undefined;
2406
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2407
- onEsc: import("vue").PropType<() => void>;
2408
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2409
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2410
- onAfterEnter: import("vue").PropType<() => void>;
2411
- onBeforeLeave: import("vue").PropType<() => void>;
2412
- onAfterLeave: import("vue").PropType<() => void>;
2413
- onClose: import("vue").PropType<() => any>;
2414
- onPositiveClick: import("vue").PropType<() => any>;
2415
- onNegativeClick: import("vue").PropType<() => any>;
2416
- onMaskClick: import("vue").PropType<(e: MouseEvent) => void>;
2417
- internalDialog: BooleanConstructor;
2418
- internalAppear: {
2419
- type: import("vue").PropType<boolean | undefined>;
2420
- default: undefined;
2421
- };
2422
- overlayStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2423
- onBeforeHide: import("vue").PropType<() => void>;
2424
- onAfterHide: import("vue").PropType<() => void>;
2425
- onHide: import("vue").PropType<(value: false) => void>;
2426
- icon: import("vue").PropType<() => import("vue").VNodeChild>;
2427
- type: {
2428
- readonly type: import("vue").PropType<"default" | "info" | "success" | "warning" | "error">;
2429
- readonly default: "default";
2430
- };
2431
- title: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
2432
- closable: {
2433
- readonly type: BooleanConstructor;
2434
- readonly default: true;
2435
- };
2436
- negativeText: StringConstructor;
2437
- positiveText: StringConstructor;
2438
- positiveButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
2439
- negativeButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
2440
- content: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
2441
- action: import("vue").PropType<() => import("vue").VNodeChild>;
2442
- showIcon: {
2443
- readonly type: BooleanConstructor;
2444
- readonly default: true;
2445
- };
2446
- loading: BooleanConstructor;
2447
- bordered: BooleanConstructor;
2448
- iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
2449
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2450
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2451
- headerExtraStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2452
- footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2453
- embedded: BooleanConstructor;
2454
- segmented: {
2455
- readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
2456
- readonly default: false;
2457
- };
2458
- size: {
2459
- readonly type: import("vue").PropType<"small" | "medium" | "large" | "huge">;
2460
- readonly default: "medium";
2461
- };
2462
- hoverable: BooleanConstructor;
2463
- role: StringConstructor;
2464
- show: BooleanConstructor;
2465
- unstableShowMask: {
2466
- type: BooleanConstructor;
2467
- default: boolean;
2468
- };
2469
- maskClosable: {
2470
- type: BooleanConstructor;
2471
- default: boolean;
2472
- };
2473
- preset: import("vue").PropType<"dialog" | "card" | "confirm">;
2474
- to: import("vue").PropType<string | HTMLElement>;
2475
- displayDirective: {
2476
- type: import("vue").PropType<"show" | "if">;
2477
- default: string;
2478
- };
2479
- transformOrigin: {
2480
- type: import("vue").PropType<"center" | "mouse">;
2481
- default: string;
2482
- };
2483
- zIndex: NumberConstructor;
2484
- autoFocus: {
2485
- type: BooleanConstructor;
2486
- default: boolean;
2487
- };
2488
- trapFocus: {
2489
- type: BooleanConstructor;
2490
- default: boolean;
2491
- };
2492
- closeOnEsc: {
2493
- type: BooleanConstructor;
2494
- default: boolean;
2495
- };
2496
- blockScroll: {
2497
- type: BooleanConstructor;
2498
- default: boolean;
2499
- };
2500
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
2501
- color: string;
2502
- textColor: string;
2503
- boxShadow: string;
2504
- }, {
2505
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2506
- color: string;
2507
- colorHover: string;
2508
- }, any>;
2509
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
2510
- fontSize: string;
2511
- lineHeight: string;
2512
- border: string;
2513
- titleTextColor: string;
2514
- textColor: string;
2515
- color: string;
2516
- closeColorHover: string;
2517
- closeColorPressed: string;
2518
- closeIconColor: string;
2519
- closeIconColorHover: string;
2520
- closeIconColorPressed: string;
2521
- closeBorderRadius: string;
2522
- iconColor: string;
2523
- iconColorInfo: string;
2524
- iconColorSuccess: string;
2525
- iconColorWarning: string;
2526
- iconColorError: string;
2527
- borderRadius: string;
2528
- titleFontWeight: string;
2529
- titleFontSize: string;
2530
- padding: string;
2531
- iconSize: string;
2532
- actionSpace: string;
2533
- contentMargin: string;
2534
- iconMargin: string;
2535
- iconMarginIconTop: string;
2536
- closeSize: string;
2537
- closeIconSize: string;
2538
- closeMargin: string;
2539
- closeMarginIconTop: string;
2540
- }, {
2541
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2542
- heightTiny: string;
2543
- heightSmall: string;
2544
- heightMedium: string;
2545
- heightLarge: string;
2546
- borderRadiusTiny: string;
2547
- borderRadiusSmall: string;
2548
- borderRadiusMedium: string;
2549
- borderRadiusLarge: string;
2550
- fontSizeTiny: string;
2551
- fontSizeSmall: string;
2552
- fontSizeMedium: string;
2553
- fontSizeLarge: string;
2554
- opacityDisabled: string;
2555
- colorOpacitySecondary: string;
2556
- colorOpacitySecondaryHover: string;
2557
- colorOpacitySecondaryPressed: string;
2558
- colorSecondary: string;
2559
- colorSecondaryHover: string;
2560
- colorSecondaryPressed: string;
2561
- colorTertiary: string;
2562
- colorTertiaryHover: string;
2563
- colorTertiaryPressed: string;
2564
- colorQuaternary: string;
2565
- colorQuaternaryHover: string;
2566
- colorQuaternaryPressed: string;
2567
- color: string;
2568
- colorHover: string;
2569
- colorPressed: string;
2570
- colorFocus: string;
2571
- colorDisabled: string;
2572
- textColor: string;
2573
- textColorTertiary: string;
2574
- textColorHover: string;
2575
- textColorPressed: string;
2576
- textColorFocus: string;
2577
- textColorDisabled: string;
2578
- textColorText: string;
2579
- textColorTextHover: string;
2580
- textColorTextPressed: string;
2581
- textColorTextFocus: string;
2582
- textColorTextDisabled: string;
2583
- textColorGhost: string;
2584
- textColorGhostHover: string;
2585
- textColorGhostPressed: string;
2586
- textColorGhostFocus: string;
2587
- textColorGhostDisabled: string;
2588
- border: string;
2589
- borderHover: string;
2590
- borderPressed: string;
2591
- borderFocus: string;
2592
- borderDisabled: string;
2593
- rippleColor: string;
2594
- colorPrimary: string;
2595
- colorHoverPrimary: string;
2596
- colorPressedPrimary: string;
2597
- colorFocusPrimary: string;
2598
- colorDisabledPrimary: string;
2599
- textColorPrimary: string;
2600
- textColorHoverPrimary: string;
2601
- textColorPressedPrimary: string;
2602
- textColorFocusPrimary: string;
2603
- textColorDisabledPrimary: string;
2604
- textColorTextPrimary: string;
2605
- textColorTextHoverPrimary: string;
2606
- textColorTextPressedPrimary: string;
2607
- textColorTextFocusPrimary: string;
2608
- textColorTextDisabledPrimary: string;
2609
- textColorGhostPrimary: string;
2610
- textColorGhostHoverPrimary: string;
2611
- textColorGhostPressedPrimary: string;
2612
- textColorGhostFocusPrimary: string;
2613
- textColorGhostDisabledPrimary: string;
2614
- borderPrimary: string;
2615
- borderHoverPrimary: string;
2616
- borderPressedPrimary: string;
2617
- borderFocusPrimary: string;
2618
- borderDisabledPrimary: string;
2619
- rippleColorPrimary: string;
2620
- colorInfo: string;
2621
- colorHoverInfo: string;
2622
- colorPressedInfo: string;
2623
- colorFocusInfo: string;
2624
- colorDisabledInfo: string;
2625
- textColorInfo: string;
2626
- textColorHoverInfo: string;
2627
- textColorPressedInfo: string;
2628
- textColorFocusInfo: string;
2629
- textColorDisabledInfo: string;
2630
- textColorTextInfo: string;
2631
- textColorTextHoverInfo: string;
2632
- textColorTextPressedInfo: string;
2633
- textColorTextFocusInfo: string;
2634
- textColorTextDisabledInfo: string;
2635
- textColorGhostInfo: string;
2636
- textColorGhostHoverInfo: string;
2637
- textColorGhostPressedInfo: string;
2638
- textColorGhostFocusInfo: string;
2639
- textColorGhostDisabledInfo: string;
2640
- borderInfo: string;
2641
- borderHoverInfo: string;
2642
- borderPressedInfo: string;
2643
- borderFocusInfo: string;
2644
- borderDisabledInfo: string;
2645
- rippleColorInfo: string;
2646
- colorSuccess: string;
2647
- colorHoverSuccess: string;
2648
- colorPressedSuccess: string;
2649
- colorFocusSuccess: string;
2650
- colorDisabledSuccess: string;
2651
- textColorSuccess: string;
2652
- textColorHoverSuccess: string;
2653
- textColorPressedSuccess: string;
2654
- textColorFocusSuccess: string;
2655
- textColorDisabledSuccess: string;
2656
- textColorTextSuccess: string;
2657
- textColorTextHoverSuccess: string;
2658
- textColorTextPressedSuccess: string;
2659
- textColorTextFocusSuccess: string;
2660
- textColorTextDisabledSuccess: string;
2661
- textColorGhostSuccess: string;
2662
- textColorGhostHoverSuccess: string;
2663
- textColorGhostPressedSuccess: string;
2664
- textColorGhostFocusSuccess: string;
2665
- textColorGhostDisabledSuccess: string;
2666
- borderSuccess: string;
2667
- borderHoverSuccess: string;
2668
- borderPressedSuccess: string;
2669
- borderFocusSuccess: string;
2670
- borderDisabledSuccess: string;
2671
- rippleColorSuccess: string;
2672
- colorWarning: string;
2673
- colorHoverWarning: string;
2674
- colorPressedWarning: string;
2675
- colorFocusWarning: string;
2676
- colorDisabledWarning: string;
2677
- textColorWarning: string;
2678
- textColorHoverWarning: string;
2679
- textColorPressedWarning: string;
2680
- textColorFocusWarning: string;
2681
- textColorDisabledWarning: string;
2682
- textColorTextWarning: string;
2683
- textColorTextHoverWarning: string;
2684
- textColorTextPressedWarning: string;
2685
- textColorTextFocusWarning: string;
2686
- textColorTextDisabledWarning: string;
2687
- textColorGhostWarning: string;
2688
- textColorGhostHoverWarning: string;
2689
- textColorGhostPressedWarning: string;
2690
- textColorGhostFocusWarning: string;
2691
- textColorGhostDisabledWarning: string;
2692
- borderWarning: string;
2693
- borderHoverWarning: string;
2694
- borderPressedWarning: string;
2695
- borderFocusWarning: string;
2696
- borderDisabledWarning: string;
2697
- rippleColorWarning: string;
2698
- colorError: string;
2699
- colorHoverError: string;
2700
- colorPressedError: string;
2701
- colorFocusError: string;
2702
- colorDisabledError: string;
2703
- textColorError: string;
2704
- textColorHoverError: string;
2705
- textColorPressedError: string;
2706
- textColorFocusError: string;
2707
- textColorDisabledError: string;
2708
- textColorTextError: string;
2709
- textColorTextHoverError: string;
2710
- textColorTextPressedError: string;
2711
- textColorTextFocusError: string;
2712
- textColorTextDisabledError: string;
2713
- textColorGhostError: string;
2714
- textColorGhostHoverError: string;
2715
- textColorGhostPressedError: string;
2716
- textColorGhostFocusError: string;
2717
- textColorGhostDisabledError: string;
2718
- borderError: string;
2719
- borderHoverError: string;
2720
- borderPressedError: string;
2721
- borderFocusError: string;
2722
- borderDisabledError: string;
2723
- rippleColorError: string;
2724
- waveOpacity: string;
2725
- fontWeight: string;
2726
- fontWeightStrong: string;
2727
- paddingTiny: string;
2728
- paddingSmall: string;
2729
- paddingMedium: string;
2730
- paddingLarge: string;
2731
- paddingRoundTiny: string;
2732
- paddingRoundSmall: string;
2733
- paddingRoundMedium: string;
2734
- paddingRoundLarge: string;
2735
- iconMarginTiny: string;
2736
- iconMarginSmall: string;
2737
- iconMarginMedium: string;
2738
- iconMarginLarge: string;
2739
- iconSizeTiny: string;
2740
- iconSizeSmall: string;
2741
- iconSizeMedium: string;
2742
- iconSizeLarge: string;
2743
- rippleDuration: string;
2744
- }, any>;
2745
- }>;
2746
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
2747
- lineHeight: string;
2748
- color: string;
2749
- colorModal: string;
2750
- colorPopover: string;
2751
- colorTarget: string;
2752
- colorEmbedded: string;
2753
- textColor: string;
2754
- titleTextColor: string;
2755
- borderColor: string;
2756
- actionColor: string;
2757
- titleFontWeight: string;
2758
- closeColorHover: string;
2759
- closeColorPressed: string;
2760
- closeBorderRadius: string;
2761
- closeIconColor: string;
2762
- closeIconColorHover: string;
2763
- closeIconColorPressed: string;
2764
- fontSizeSmall: string;
2765
- fontSizeMedium: string;
2766
- fontSizeLarge: string;
2767
- fontSizeHuge: string;
2768
- boxShadow: string;
2769
- borderRadius: string;
2770
- paddingSmall: string;
2771
- paddingMedium: string;
2772
- paddingLarge: string;
2773
- paddingHuge: string;
2774
- titleFontSizeSmall: string;
2775
- titleFontSizeMedium: string;
2776
- titleFontSizeLarge: string;
2777
- titleFontSizeHuge: string;
2778
- closeIconSize: string;
2779
- closeSize: string;
2780
- }, any>;
2781
- }>>;
2782
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
2783
- color: string;
2784
- textColor: string;
2785
- boxShadow: string;
2786
- }, {
2787
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2788
- color: string;
2789
- colorHover: string;
2790
- }, any>;
2791
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
2792
- fontSize: string;
2793
- lineHeight: string;
2794
- border: string;
2795
- titleTextColor: string;
2796
- textColor: string;
2797
- color: string;
2798
- closeColorHover: string;
2799
- closeColorPressed: string;
2800
- closeIconColor: string;
2801
- closeIconColorHover: string;
2802
- closeIconColorPressed: string;
2803
- closeBorderRadius: string;
2804
- iconColor: string;
2805
- iconColorInfo: string;
2806
- iconColorSuccess: string;
2807
- iconColorWarning: string;
2808
- iconColorError: string;
2809
- borderRadius: string;
2810
- titleFontWeight: string;
2811
- titleFontSize: string;
2812
- padding: string;
2813
- iconSize: string;
2814
- actionSpace: string;
2815
- contentMargin: string;
2816
- iconMargin: string;
2817
- iconMarginIconTop: string;
2818
- closeSize: string;
2819
- closeIconSize: string;
2820
- closeMargin: string;
2821
- closeMarginIconTop: string;
2822
- }, {
2823
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2824
- heightTiny: string;
2825
- heightSmall: string;
2826
- heightMedium: string;
2827
- heightLarge: string;
2828
- borderRadiusTiny: string;
2829
- borderRadiusSmall: string;
2830
- borderRadiusMedium: string;
2831
- borderRadiusLarge: string;
2832
- fontSizeTiny: string;
2833
- fontSizeSmall: string;
2834
- fontSizeMedium: string;
2835
- fontSizeLarge: string;
2836
- opacityDisabled: string;
2837
- colorOpacitySecondary: string;
2838
- colorOpacitySecondaryHover: string;
2839
- colorOpacitySecondaryPressed: string;
2840
- colorSecondary: string;
2841
- colorSecondaryHover: string;
2842
- colorSecondaryPressed: string;
2843
- colorTertiary: string;
2844
- colorTertiaryHover: string;
2845
- colorTertiaryPressed: string;
2846
- colorQuaternary: string;
2847
- colorQuaternaryHover: string;
2848
- colorQuaternaryPressed: string;
2849
- color: string;
2850
- colorHover: string;
2851
- colorPressed: string;
2852
- colorFocus: string;
2853
- colorDisabled: string;
2854
- textColor: string;
2855
- textColorTertiary: string;
2856
- textColorHover: string;
2857
- textColorPressed: string;
2858
- textColorFocus: string;
2859
- textColorDisabled: string;
2860
- textColorText: string;
2861
- textColorTextHover: string;
2862
- textColorTextPressed: string;
2863
- textColorTextFocus: string;
2864
- textColorTextDisabled: string;
2865
- textColorGhost: string;
2866
- textColorGhostHover: string;
2867
- textColorGhostPressed: string;
2868
- textColorGhostFocus: string;
2869
- textColorGhostDisabled: string;
2870
- border: string;
2871
- borderHover: string;
2872
- borderPressed: string;
2873
- borderFocus: string;
2874
- borderDisabled: string;
2875
- rippleColor: string;
2876
- colorPrimary: string;
2877
- colorHoverPrimary: string;
2878
- colorPressedPrimary: string;
2879
- colorFocusPrimary: string;
2880
- colorDisabledPrimary: string;
2881
- textColorPrimary: string;
2882
- textColorHoverPrimary: string;
2883
- textColorPressedPrimary: string;
2884
- textColorFocusPrimary: string;
2885
- textColorDisabledPrimary: string;
2886
- textColorTextPrimary: string;
2887
- textColorTextHoverPrimary: string;
2888
- textColorTextPressedPrimary: string;
2889
- textColorTextFocusPrimary: string;
2890
- textColorTextDisabledPrimary: string;
2891
- textColorGhostPrimary: string;
2892
- textColorGhostHoverPrimary: string;
2893
- textColorGhostPressedPrimary: string;
2894
- textColorGhostFocusPrimary: string;
2895
- textColorGhostDisabledPrimary: string;
2896
- borderPrimary: string;
2897
- borderHoverPrimary: string;
2898
- borderPressedPrimary: string;
2899
- borderFocusPrimary: string;
2900
- borderDisabledPrimary: string;
2901
- rippleColorPrimary: string;
2902
- colorInfo: string;
2903
- colorHoverInfo: string;
2904
- colorPressedInfo: string;
2905
- colorFocusInfo: string;
2906
- colorDisabledInfo: string;
2907
- textColorInfo: string;
2908
- textColorHoverInfo: string;
2909
- textColorPressedInfo: string;
2910
- textColorFocusInfo: string;
2911
- textColorDisabledInfo: string;
2912
- textColorTextInfo: string;
2913
- textColorTextHoverInfo: string;
2914
- textColorTextPressedInfo: string;
2915
- textColorTextFocusInfo: string;
2916
- textColorTextDisabledInfo: string;
2917
- textColorGhostInfo: string;
2918
- textColorGhostHoverInfo: string;
2919
- textColorGhostPressedInfo: string;
2920
- textColorGhostFocusInfo: string;
2921
- textColorGhostDisabledInfo: string;
2922
- borderInfo: string;
2923
- borderHoverInfo: string;
2924
- borderPressedInfo: string;
2925
- borderFocusInfo: string;
2926
- borderDisabledInfo: string;
2927
- rippleColorInfo: string;
2928
- colorSuccess: string;
2929
- colorHoverSuccess: string;
2930
- colorPressedSuccess: string;
2931
- colorFocusSuccess: string;
2932
- colorDisabledSuccess: string;
2933
- textColorSuccess: string;
2934
- textColorHoverSuccess: string;
2935
- textColorPressedSuccess: string;
2936
- textColorFocusSuccess: string;
2937
- textColorDisabledSuccess: string;
2938
- textColorTextSuccess: string;
2939
- textColorTextHoverSuccess: string;
2940
- textColorTextPressedSuccess: string;
2941
- textColorTextFocusSuccess: string;
2942
- textColorTextDisabledSuccess: string;
2943
- textColorGhostSuccess: string;
2944
- textColorGhostHoverSuccess: string;
2945
- textColorGhostPressedSuccess: string;
2946
- textColorGhostFocusSuccess: string;
2947
- textColorGhostDisabledSuccess: string;
2948
- borderSuccess: string;
2949
- borderHoverSuccess: string;
2950
- borderPressedSuccess: string;
2951
- borderFocusSuccess: string;
2952
- borderDisabledSuccess: string;
2953
- rippleColorSuccess: string;
2954
- colorWarning: string;
2955
- colorHoverWarning: string;
2956
- colorPressedWarning: string;
2957
- colorFocusWarning: string;
2958
- colorDisabledWarning: string;
2959
- textColorWarning: string;
2960
- textColorHoverWarning: string;
2961
- textColorPressedWarning: string;
2962
- textColorFocusWarning: string;
2963
- textColorDisabledWarning: string;
2964
- textColorTextWarning: string;
2965
- textColorTextHoverWarning: string;
2966
- textColorTextPressedWarning: string;
2967
- textColorTextFocusWarning: string;
2968
- textColorTextDisabledWarning: string;
2969
- textColorGhostWarning: string;
2970
- textColorGhostHoverWarning: string;
2971
- textColorGhostPressedWarning: string;
2972
- textColorGhostFocusWarning: string;
2973
- textColorGhostDisabledWarning: string;
2974
- borderWarning: string;
2975
- borderHoverWarning: string;
2976
- borderPressedWarning: string;
2977
- borderFocusWarning: string;
2978
- borderDisabledWarning: string;
2979
- rippleColorWarning: string;
2980
- colorError: string;
2981
- colorHoverError: string;
2982
- colorPressedError: string;
2983
- colorFocusError: string;
2984
- colorDisabledError: string;
2985
- textColorError: string;
2986
- textColorHoverError: string;
2987
- textColorPressedError: string;
2988
- textColorFocusError: string;
2989
- textColorDisabledError: string;
2990
- textColorTextError: string;
2991
- textColorTextHoverError: string;
2992
- textColorTextPressedError: string;
2993
- textColorTextFocusError: string;
2994
- textColorTextDisabledError: string;
2995
- textColorGhostError: string;
2996
- textColorGhostHoverError: string;
2997
- textColorGhostPressedError: string;
2998
- textColorGhostFocusError: string;
2999
- textColorGhostDisabledError: string;
3000
- borderError: string;
3001
- borderHoverError: string;
3002
- borderPressedError: string;
3003
- borderFocusError: string;
3004
- borderDisabledError: string;
3005
- rippleColorError: string;
3006
- waveOpacity: string;
3007
- fontWeight: string;
3008
- fontWeightStrong: string;
3009
- paddingTiny: string;
3010
- paddingSmall: string;
3011
- paddingMedium: string;
3012
- paddingLarge: string;
3013
- paddingRoundTiny: string;
3014
- paddingRoundSmall: string;
3015
- paddingRoundMedium: string;
3016
- paddingRoundLarge: string;
3017
- iconMarginTiny: string;
3018
- iconMarginSmall: string;
3019
- iconMarginMedium: string;
3020
- iconMarginLarge: string;
3021
- iconSizeTiny: string;
3022
- iconSizeSmall: string;
3023
- iconSizeMedium: string;
3024
- iconSizeLarge: string;
3025
- rippleDuration: string;
3026
- }, any>;
3027
- }>;
3028
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
3029
- lineHeight: string;
3030
- color: string;
3031
- colorModal: string;
3032
- colorPopover: string;
3033
- colorTarget: string;
3034
- colorEmbedded: string;
3035
- textColor: string;
3036
- titleTextColor: string;
3037
- borderColor: string;
3038
- actionColor: string;
3039
- titleFontWeight: string;
3040
- closeColorHover: string;
3041
- closeColorPressed: string;
3042
- closeBorderRadius: string;
3043
- closeIconColor: string;
3044
- closeIconColorHover: string;
3045
- closeIconColorPressed: string;
3046
- fontSizeSmall: string;
3047
- fontSizeMedium: string;
3048
- fontSizeLarge: string;
3049
- fontSizeHuge: string;
3050
- boxShadow: string;
3051
- borderRadius: string;
3052
- paddingSmall: string;
3053
- paddingMedium: string;
3054
- paddingLarge: string;
3055
- paddingHuge: string;
3056
- titleFontSizeSmall: string;
3057
- titleFontSizeMedium: string;
3058
- titleFontSizeLarge: string;
3059
- titleFontSizeHuge: string;
3060
- closeIconSize: string;
3061
- closeSize: string;
3062
- }, any>;
3063
- }>>>;
3064
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
3065
- color: string;
3066
- textColor: string;
3067
- boxShadow: string;
3068
- }, {
3069
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
3070
- color: string;
3071
- colorHover: string;
3072
- }, any>;
3073
- Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
3074
- fontSize: string;
3075
- lineHeight: string;
3076
- border: string;
3077
- titleTextColor: string;
3078
- textColor: string;
3079
- color: string;
3080
- closeColorHover: string;
3081
- closeColorPressed: string;
3082
- closeIconColor: string;
3083
- closeIconColorHover: string;
3084
- closeIconColorPressed: string;
3085
- closeBorderRadius: string;
3086
- iconColor: string;
3087
- iconColorInfo: string;
3088
- iconColorSuccess: string;
3089
- iconColorWarning: string;
3090
- iconColorError: string;
3091
- borderRadius: string;
3092
- titleFontWeight: string;
3093
- titleFontSize: string;
3094
- padding: string;
3095
- iconSize: string;
3096
- actionSpace: string;
3097
- contentMargin: string;
3098
- iconMargin: string;
3099
- iconMarginIconTop: string;
3100
- closeSize: string;
3101
- closeIconSize: string;
3102
- closeMargin: string;
3103
- closeMarginIconTop: string;
3104
- }, {
3105
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
3106
- heightTiny: string;
3107
- heightSmall: string;
3108
- heightMedium: string;
3109
- heightLarge: string;
3110
- borderRadiusTiny: string;
3111
- borderRadiusSmall: string;
3112
- borderRadiusMedium: string;
3113
- borderRadiusLarge: string;
3114
- fontSizeTiny: string;
3115
- fontSizeSmall: string;
3116
- fontSizeMedium: string;
3117
- fontSizeLarge: string;
3118
- opacityDisabled: string;
3119
- colorOpacitySecondary: string;
3120
- colorOpacitySecondaryHover: string;
3121
- colorOpacitySecondaryPressed: string;
3122
- colorSecondary: string;
3123
- colorSecondaryHover: string;
3124
- colorSecondaryPressed: string;
3125
- colorTertiary: string;
3126
- colorTertiaryHover: string;
3127
- colorTertiaryPressed: string;
3128
- colorQuaternary: string;
3129
- colorQuaternaryHover: string;
3130
- colorQuaternaryPressed: string;
3131
- color: string;
3132
- colorHover: string;
3133
- colorPressed: string;
3134
- colorFocus: string;
3135
- colorDisabled: string;
3136
- textColor: string;
3137
- textColorTertiary: string;
3138
- textColorHover: string;
3139
- textColorPressed: string;
3140
- textColorFocus: string;
3141
- textColorDisabled: string;
3142
- textColorText: string;
3143
- textColorTextHover: string;
3144
- textColorTextPressed: string;
3145
- textColorTextFocus: string;
3146
- textColorTextDisabled: string;
3147
- textColorGhost: string;
3148
- textColorGhostHover: string;
3149
- textColorGhostPressed: string;
3150
- textColorGhostFocus: string;
3151
- textColorGhostDisabled: string;
3152
- border: string;
3153
- borderHover: string;
3154
- borderPressed: string;
3155
- borderFocus: string;
3156
- borderDisabled: string;
3157
- rippleColor: string;
3158
- colorPrimary: string;
3159
- colorHoverPrimary: string;
3160
- colorPressedPrimary: string;
3161
- colorFocusPrimary: string;
3162
- colorDisabledPrimary: string;
3163
- textColorPrimary: string;
3164
- textColorHoverPrimary: string;
3165
- textColorPressedPrimary: string;
3166
- textColorFocusPrimary: string;
3167
- textColorDisabledPrimary: string;
3168
- textColorTextPrimary: string;
3169
- textColorTextHoverPrimary: string;
3170
- textColorTextPressedPrimary: string;
3171
- textColorTextFocusPrimary: string;
3172
- textColorTextDisabledPrimary: string;
3173
- textColorGhostPrimary: string;
3174
- textColorGhostHoverPrimary: string;
3175
- textColorGhostPressedPrimary: string;
3176
- textColorGhostFocusPrimary: string;
3177
- textColorGhostDisabledPrimary: string;
3178
- borderPrimary: string;
3179
- borderHoverPrimary: string;
3180
- borderPressedPrimary: string;
3181
- borderFocusPrimary: string;
3182
- borderDisabledPrimary: string;
3183
- rippleColorPrimary: string;
3184
- colorInfo: string;
3185
- colorHoverInfo: string;
3186
- colorPressedInfo: string;
3187
- colorFocusInfo: string;
3188
- colorDisabledInfo: string;
3189
- textColorInfo: string;
3190
- textColorHoverInfo: string;
3191
- textColorPressedInfo: string;
3192
- textColorFocusInfo: string;
3193
- textColorDisabledInfo: string;
3194
- textColorTextInfo: string;
3195
- textColorTextHoverInfo: string;
3196
- textColorTextPressedInfo: string;
3197
- textColorTextFocusInfo: string;
3198
- textColorTextDisabledInfo: string;
3199
- textColorGhostInfo: string;
3200
- textColorGhostHoverInfo: string;
3201
- textColorGhostPressedInfo: string;
3202
- textColorGhostFocusInfo: string;
3203
- textColorGhostDisabledInfo: string;
3204
- borderInfo: string;
3205
- borderHoverInfo: string;
3206
- borderPressedInfo: string;
3207
- borderFocusInfo: string;
3208
- borderDisabledInfo: string;
3209
- rippleColorInfo: string;
3210
- colorSuccess: string;
3211
- colorHoverSuccess: string;
3212
- colorPressedSuccess: string;
3213
- colorFocusSuccess: string;
3214
- colorDisabledSuccess: string;
3215
- textColorSuccess: string;
3216
- textColorHoverSuccess: string;
3217
- textColorPressedSuccess: string;
3218
- textColorFocusSuccess: string;
3219
- textColorDisabledSuccess: string;
3220
- textColorTextSuccess: string;
3221
- textColorTextHoverSuccess: string;
3222
- textColorTextPressedSuccess: string;
3223
- textColorTextFocusSuccess: string;
3224
- textColorTextDisabledSuccess: string;
3225
- textColorGhostSuccess: string;
3226
- textColorGhostHoverSuccess: string;
3227
- textColorGhostPressedSuccess: string;
3228
- textColorGhostFocusSuccess: string;
3229
- textColorGhostDisabledSuccess: string;
3230
- borderSuccess: string;
3231
- borderHoverSuccess: string;
3232
- borderPressedSuccess: string;
3233
- borderFocusSuccess: string;
3234
- borderDisabledSuccess: string;
3235
- rippleColorSuccess: string;
3236
- colorWarning: string;
3237
- colorHoverWarning: string;
3238
- colorPressedWarning: string;
3239
- colorFocusWarning: string;
3240
- colorDisabledWarning: string;
3241
- textColorWarning: string;
3242
- textColorHoverWarning: string;
3243
- textColorPressedWarning: string;
3244
- textColorFocusWarning: string;
3245
- textColorDisabledWarning: string;
3246
- textColorTextWarning: string;
3247
- textColorTextHoverWarning: string;
3248
- textColorTextPressedWarning: string;
3249
- textColorTextFocusWarning: string;
3250
- textColorTextDisabledWarning: string;
3251
- textColorGhostWarning: string;
3252
- textColorGhostHoverWarning: string;
3253
- textColorGhostPressedWarning: string;
3254
- textColorGhostFocusWarning: string;
3255
- textColorGhostDisabledWarning: string;
3256
- borderWarning: string;
3257
- borderHoverWarning: string;
3258
- borderPressedWarning: string;
3259
- borderFocusWarning: string;
3260
- borderDisabledWarning: string;
3261
- rippleColorWarning: string;
3262
- colorError: string;
3263
- colorHoverError: string;
3264
- colorPressedError: string;
3265
- colorFocusError: string;
3266
- colorDisabledError: string;
3267
- textColorError: string;
3268
- textColorHoverError: string;
3269
- textColorPressedError: string;
3270
- textColorFocusError: string;
3271
- textColorDisabledError: string;
3272
- textColorTextError: string;
3273
- textColorTextHoverError: string;
3274
- textColorTextPressedError: string;
3275
- textColorTextFocusError: string;
3276
- textColorTextDisabledError: string;
3277
- textColorGhostError: string;
3278
- textColorGhostHoverError: string;
3279
- textColorGhostPressedError: string;
3280
- textColorGhostFocusError: string;
3281
- textColorGhostDisabledError: string;
3282
- borderError: string;
3283
- borderHoverError: string;
3284
- borderPressedError: string;
3285
- borderFocusError: string;
3286
- borderDisabledError: string;
3287
- rippleColorError: string;
3288
- waveOpacity: string;
3289
- fontWeight: string;
3290
- fontWeightStrong: string;
3291
- paddingTiny: string;
3292
- paddingSmall: string;
3293
- paddingMedium: string;
3294
- paddingLarge: string;
3295
- paddingRoundTiny: string;
3296
- paddingRoundSmall: string;
3297
- paddingRoundMedium: string;
3298
- paddingRoundLarge: string;
3299
- iconMarginTiny: string;
3300
- iconMarginSmall: string;
3301
- iconMarginMedium: string;
3302
- iconMarginLarge: string;
3303
- iconSizeTiny: string;
3304
- iconSizeSmall: string;
3305
- iconSizeMedium: string;
3306
- iconSizeLarge: string;
3307
- rippleDuration: string;
3308
- }, any>;
3309
- }>;
3310
- Card: import("naive-ui/es/_mixins").Theme<"Card", {
3311
- lineHeight: string;
3312
- color: string;
3313
- colorModal: string;
3314
- colorPopover: string;
3315
- colorTarget: string;
3316
- colorEmbedded: string;
3317
- textColor: string;
3318
- titleTextColor: string;
3319
- borderColor: string;
3320
- actionColor: string;
3321
- titleFontWeight: string;
3322
- closeColorHover: string;
3323
- closeColorPressed: string;
3324
- closeBorderRadius: string;
3325
- closeIconColor: string;
3326
- closeIconColorHover: string;
3327
- closeIconColorPressed: string;
3328
- fontSizeSmall: string;
3329
- fontSizeMedium: string;
3330
- fontSizeLarge: string;
3331
- fontSizeHuge: string;
3332
- boxShadow: string;
3333
- borderRadius: string;
3334
- paddingSmall: string;
3335
- paddingMedium: string;
3336
- paddingLarge: string;
3337
- paddingHuge: string;
3338
- titleFontSizeSmall: string;
3339
- titleFontSizeMedium: string;
3340
- titleFontSizeLarge: string;
3341
- titleFontSizeHuge: string;
3342
- closeIconSize: string;
3343
- closeSize: string;
3344
- }, any>;
3345
- }>>>;
3346
- }>>, {
3347
- type: "default" | "info" | "success" | "warning" | "error";
3348
- size: "small" | "medium" | "large" | "huge";
3349
- show: boolean;
3350
- transformOrigin: "center" | "mouse";
3351
- autoFocus: boolean;
3352
- loading: boolean;
3353
- bordered: boolean;
3354
- showIcon: boolean;
3355
- closable: boolean;
3356
- displayDirective: "show" | "if";
3357
- hoverable: boolean;
3358
- embedded: boolean;
3359
- segmented: boolean | import("naive-ui/es/card/src/Card").Segmented;
3360
- trapFocus: boolean;
3361
- blockScroll: boolean;
3362
- internalDialog: boolean;
3363
- internalAppear: boolean | undefined;
3364
- unstableShowMask: boolean;
3365
- maskClosable: boolean;
3366
- closeOnEsc: boolean;
3367
- }>;
3368
- NForm: import("vue").DefineComponent<{
3369
- readonly inline: BooleanConstructor;
3370
- readonly labelWidth: import("vue").PropType<string | number>;
3371
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3372
- readonly labelPlacement: {
3373
- readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3374
- readonly default: "top";
3375
- };
3376
- readonly model: {
3377
- readonly type: import("vue").PropType<Record<string, any>>;
3378
- readonly default: () => void;
3379
- };
3380
- readonly rules: import("vue").PropType<FormRules>;
3381
- readonly disabled: BooleanConstructor;
3382
- readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
3383
- readonly showRequireMark: {
3384
- readonly type: import("vue").PropType<boolean | undefined>;
3385
- readonly default: undefined;
3386
- };
3387
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3388
- readonly showFeedback: {
3389
- readonly type: BooleanConstructor;
3390
- readonly default: true;
3391
- };
3392
- readonly onSubmit: {
3393
- readonly type: import("vue").PropType<(e: Event) => void>;
3394
- readonly default: (e: Event) => void;
3395
- };
3396
- readonly showLabel: {
3397
- readonly type: import("vue").PropType<boolean | undefined>;
3398
- readonly default: undefined;
3399
- };
3400
- readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
3401
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3402
- blankHeightSmall: string;
3403
- blankHeightMedium: string;
3404
- blankHeightLarge: string;
3405
- lineHeight: string;
3406
- labelTextColor: string;
3407
- asteriskColor: string;
3408
- feedbackTextColorError: string;
3409
- feedbackTextColorWarning: string;
3410
- feedbackTextColor: string;
3411
- feedbackPadding: string;
3412
- feedbackHeightSmall: string;
3413
- feedbackHeightMedium: string;
3414
- feedbackHeightLarge: string;
3415
- feedbackFontSizeSmall: string;
3416
- feedbackFontSizeMedium: string;
3417
- feedbackFontSizeLarge: string;
3418
- labelFontSizeLeftSmall: string;
3419
- labelFontSizeLeftMedium: string;
3420
- labelFontSizeLeftLarge: string;
3421
- labelFontSizeTopSmall: string;
3422
- labelFontSizeTopMedium: string;
3423
- labelFontSizeTopLarge: string;
3424
- labelHeightSmall: string;
3425
- labelHeightMedium: string;
3426
- labelHeightLarge: string;
3427
- labelPaddingVertical: string;
3428
- labelPaddingHorizontal: string;
3429
- labelTextAlignVertical: string;
3430
- labelTextAlignHorizontal: string;
3431
- }, any>>;
3432
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3433
- blankHeightSmall: string;
3434
- blankHeightMedium: string;
3435
- blankHeightLarge: string;
3436
- lineHeight: string;
3437
- labelTextColor: string;
3438
- asteriskColor: string;
3439
- feedbackTextColorError: string;
3440
- feedbackTextColorWarning: string;
3441
- feedbackTextColor: string;
3442
- feedbackPadding: string;
3443
- feedbackHeightSmall: string;
3444
- feedbackHeightMedium: string;
3445
- feedbackHeightLarge: string;
3446
- feedbackFontSizeSmall: string;
3447
- feedbackFontSizeMedium: string;
3448
- feedbackFontSizeLarge: string;
3449
- labelFontSizeLeftSmall: string;
3450
- labelFontSizeLeftMedium: string;
3451
- labelFontSizeLeftLarge: string;
3452
- labelFontSizeTopSmall: string;
3453
- labelFontSizeTopMedium: string;
3454
- labelFontSizeTopLarge: string;
3455
- labelHeightSmall: string;
3456
- labelHeightMedium: string;
3457
- labelHeightLarge: string;
3458
- labelPaddingVertical: string;
3459
- labelPaddingHorizontal: string;
3460
- labelTextAlignVertical: string;
3461
- labelTextAlignHorizontal: string;
3462
- }, any>>>;
3463
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3464
- blankHeightSmall: string;
3465
- blankHeightMedium: string;
3466
- blankHeightLarge: string;
3467
- lineHeight: string;
3468
- labelTextColor: string;
3469
- asteriskColor: string;
3470
- feedbackTextColorError: string;
3471
- feedbackTextColorWarning: string;
3472
- feedbackTextColor: string;
3473
- feedbackPadding: string;
3474
- feedbackHeightSmall: string;
3475
- feedbackHeightMedium: string;
3476
- feedbackHeightLarge: string;
3477
- feedbackFontSizeSmall: string;
3478
- feedbackFontSizeMedium: string;
3479
- feedbackFontSizeLarge: string;
3480
- labelFontSizeLeftSmall: string;
3481
- labelFontSizeLeftMedium: string;
3482
- labelFontSizeLeftLarge: string;
3483
- labelFontSizeTopSmall: string;
3484
- labelFontSizeTopMedium: string;
3485
- labelFontSizeTopLarge: string;
3486
- labelHeightSmall: string;
3487
- labelHeightMedium: string;
3488
- labelHeightLarge: string;
3489
- labelPaddingVertical: string;
3490
- labelPaddingHorizontal: string;
3491
- labelTextAlignVertical: string;
3492
- labelTextAlignHorizontal: string;
3493
- }, any>>>;
3494
- }, FormInst & {
3495
- mergedClsPrefix: import("vue").ComputedRef<string>;
3496
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3497
- readonly inline: BooleanConstructor;
3498
- readonly labelWidth: import("vue").PropType<string | number>;
3499
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3500
- readonly labelPlacement: {
3501
- readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3502
- readonly default: "top";
3503
- };
3504
- readonly model: {
3505
- readonly type: import("vue").PropType<Record<string, any>>;
3506
- readonly default: () => void;
3507
- };
3508
- readonly rules: import("vue").PropType<FormRules>;
3509
- readonly disabled: BooleanConstructor;
3510
- readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
3511
- readonly showRequireMark: {
3512
- readonly type: import("vue").PropType<boolean | undefined>;
3513
- readonly default: undefined;
3514
- };
3515
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3516
- readonly showFeedback: {
3517
- readonly type: BooleanConstructor;
3518
- readonly default: true;
3519
- };
3520
- readonly onSubmit: {
3521
- readonly type: import("vue").PropType<(e: Event) => void>;
3522
- readonly default: (e: Event) => void;
3523
- };
3524
- readonly showLabel: {
3525
- readonly type: import("vue").PropType<boolean | undefined>;
3526
- readonly default: undefined;
3527
- };
3528
- readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
3529
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3530
- blankHeightSmall: string;
3531
- blankHeightMedium: string;
3532
- blankHeightLarge: string;
3533
- lineHeight: string;
3534
- labelTextColor: string;
3535
- asteriskColor: string;
3536
- feedbackTextColorError: string;
3537
- feedbackTextColorWarning: string;
3538
- feedbackTextColor: string;
3539
- feedbackPadding: string;
3540
- feedbackHeightSmall: string;
3541
- feedbackHeightMedium: string;
3542
- feedbackHeightLarge: string;
3543
- feedbackFontSizeSmall: string;
3544
- feedbackFontSizeMedium: string;
3545
- feedbackFontSizeLarge: string;
3546
- labelFontSizeLeftSmall: string;
3547
- labelFontSizeLeftMedium: string;
3548
- labelFontSizeLeftLarge: string;
3549
- labelFontSizeTopSmall: string;
3550
- labelFontSizeTopMedium: string;
3551
- labelFontSizeTopLarge: string;
3552
- labelHeightSmall: string;
3553
- labelHeightMedium: string;
3554
- labelHeightLarge: string;
3555
- labelPaddingVertical: string;
3556
- labelPaddingHorizontal: string;
3557
- labelTextAlignVertical: string;
3558
- labelTextAlignHorizontal: string;
3559
- }, any>>;
3560
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3561
- blankHeightSmall: string;
3562
- blankHeightMedium: string;
3563
- blankHeightLarge: string;
3564
- lineHeight: string;
3565
- labelTextColor: string;
3566
- asteriskColor: string;
3567
- feedbackTextColorError: string;
3568
- feedbackTextColorWarning: string;
3569
- feedbackTextColor: string;
3570
- feedbackPadding: string;
3571
- feedbackHeightSmall: string;
3572
- feedbackHeightMedium: string;
3573
- feedbackHeightLarge: string;
3574
- feedbackFontSizeSmall: string;
3575
- feedbackFontSizeMedium: string;
3576
- feedbackFontSizeLarge: string;
3577
- labelFontSizeLeftSmall: string;
3578
- labelFontSizeLeftMedium: string;
3579
- labelFontSizeLeftLarge: string;
3580
- labelFontSizeTopSmall: string;
3581
- labelFontSizeTopMedium: string;
3582
- labelFontSizeTopLarge: string;
3583
- labelHeightSmall: string;
3584
- labelHeightMedium: string;
3585
- labelHeightLarge: string;
3586
- labelPaddingVertical: string;
3587
- labelPaddingHorizontal: string;
3588
- labelTextAlignVertical: string;
3589
- labelTextAlignHorizontal: string;
3590
- }, any>>>;
3591
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3592
- blankHeightSmall: string;
3593
- blankHeightMedium: string;
3594
- blankHeightLarge: string;
3595
- lineHeight: string;
3596
- labelTextColor: string;
3597
- asteriskColor: string;
3598
- feedbackTextColorError: string;
3599
- feedbackTextColorWarning: string;
3600
- feedbackTextColor: string;
3601
- feedbackPadding: string;
3602
- feedbackHeightSmall: string;
3603
- feedbackHeightMedium: string;
3604
- feedbackHeightLarge: string;
3605
- feedbackFontSizeSmall: string;
3606
- feedbackFontSizeMedium: string;
3607
- feedbackFontSizeLarge: string;
3608
- labelFontSizeLeftSmall: string;
3609
- labelFontSizeLeftMedium: string;
3610
- labelFontSizeLeftLarge: string;
3611
- labelFontSizeTopSmall: string;
3612
- labelFontSizeTopMedium: string;
3613
- labelFontSizeTopLarge: string;
3614
- labelHeightSmall: string;
3615
- labelHeightMedium: string;
3616
- labelHeightLarge: string;
3617
- labelPaddingVertical: string;
3618
- labelPaddingHorizontal: string;
3619
- labelTextAlignVertical: string;
3620
- labelTextAlignHorizontal: string;
3621
- }, any>>>;
3622
- }>>, {
3623
- readonly inline: boolean;
3624
- readonly disabled: boolean;
3625
- readonly onSubmit: (e: Event) => void;
3626
- readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
3627
- readonly model: Record<string, any>;
3628
- readonly showRequireMark: boolean | undefined;
3629
- readonly showFeedback: boolean;
3630
- readonly showLabel: boolean | undefined;
3631
- }>;
3632
- NFormItem: import("vue").DefineComponent<{
3633
- readonly label: StringConstructor;
3634
- readonly labelWidth: import("vue").PropType<string | number>;
3635
- readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3636
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3637
- readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3638
- readonly path: StringConstructor;
3639
- readonly first: BooleanConstructor;
3640
- readonly rulePath: StringConstructor;
3641
- readonly required: BooleanConstructor;
3642
- readonly showRequireMark: {
3643
- readonly type: import("vue").PropType<boolean | undefined>;
3644
- readonly default: undefined;
3645
- };
3646
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3647
- readonly showFeedback: {
3648
- readonly type: import("vue").PropType<boolean | undefined>;
3649
- readonly default: undefined;
3650
- };
3651
- readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
3652
- readonly size: import("vue").PropType<"small" | "medium" | "large">;
3653
- readonly ignorePathChange: BooleanConstructor;
3654
- readonly validationStatus: import("vue").PropType<"success" | "warning" | "error">;
3655
- readonly feedback: StringConstructor;
3656
- readonly showLabel: {
3657
- readonly type: import("vue").PropType<boolean | undefined>;
3658
- readonly default: undefined;
3659
- };
3660
- readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
3661
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3662
- blankHeightSmall: string;
3663
- blankHeightMedium: string;
3664
- blankHeightLarge: string;
3665
- lineHeight: string;
3666
- labelTextColor: string;
3667
- asteriskColor: string;
3668
- feedbackTextColorError: string;
3669
- feedbackTextColorWarning: string;
3670
- feedbackTextColor: string;
3671
- feedbackPadding: string;
3672
- feedbackHeightSmall: string;
3673
- feedbackHeightMedium: string;
3674
- feedbackHeightLarge: string;
3675
- feedbackFontSizeSmall: string;
3676
- feedbackFontSizeMedium: string;
3677
- feedbackFontSizeLarge: string;
3678
- labelFontSizeLeftSmall: string;
3679
- labelFontSizeLeftMedium: string;
3680
- labelFontSizeLeftLarge: string;
3681
- labelFontSizeTopSmall: string;
3682
- labelFontSizeTopMedium: string;
3683
- labelFontSizeTopLarge: string;
3684
- labelHeightSmall: string;
3685
- labelHeightMedium: string;
3686
- labelHeightLarge: string;
3687
- labelPaddingVertical: string;
3688
- labelPaddingHorizontal: string;
3689
- labelTextAlignVertical: string;
3690
- labelTextAlignHorizontal: string;
3691
- }, any>>;
3692
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3693
- blankHeightSmall: string;
3694
- blankHeightMedium: string;
3695
- blankHeightLarge: string;
3696
- lineHeight: string;
3697
- labelTextColor: string;
3698
- asteriskColor: string;
3699
- feedbackTextColorError: string;
3700
- feedbackTextColorWarning: string;
3701
- feedbackTextColor: string;
3702
- feedbackPadding: string;
3703
- feedbackHeightSmall: string;
3704
- feedbackHeightMedium: string;
3705
- feedbackHeightLarge: string;
3706
- feedbackFontSizeSmall: string;
3707
- feedbackFontSizeMedium: string;
3708
- feedbackFontSizeLarge: string;
3709
- labelFontSizeLeftSmall: string;
3710
- labelFontSizeLeftMedium: string;
3711
- labelFontSizeLeftLarge: string;
3712
- labelFontSizeTopSmall: string;
3713
- labelFontSizeTopMedium: string;
3714
- labelFontSizeTopLarge: string;
3715
- labelHeightSmall: string;
3716
- labelHeightMedium: string;
3717
- labelHeightLarge: string;
3718
- labelPaddingVertical: string;
3719
- labelPaddingHorizontal: string;
3720
- labelTextAlignVertical: string;
3721
- labelTextAlignHorizontal: string;
3722
- }, any>>>;
3723
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3724
- blankHeightSmall: string;
3725
- blankHeightMedium: string;
3726
- blankHeightLarge: string;
3727
- lineHeight: string;
3728
- labelTextColor: string;
3729
- asteriskColor: string;
3730
- feedbackTextColorError: string;
3731
- feedbackTextColorWarning: string;
3732
- feedbackTextColor: string;
3733
- feedbackPadding: string;
3734
- feedbackHeightSmall: string;
3735
- feedbackHeightMedium: string;
3736
- feedbackHeightLarge: string;
3737
- feedbackFontSizeSmall: string;
3738
- feedbackFontSizeMedium: string;
3739
- feedbackFontSizeLarge: string;
3740
- labelFontSizeLeftSmall: string;
3741
- labelFontSizeLeftMedium: string;
3742
- labelFontSizeLeftLarge: string;
3743
- labelFontSizeTopSmall: string;
3744
- labelFontSizeTopMedium: string;
3745
- labelFontSizeTopLarge: string;
3746
- labelHeightSmall: string;
3747
- labelHeightMedium: string;
3748
- labelHeightLarge: string;
3749
- labelPaddingVertical: string;
3750
- labelPaddingHorizontal: string;
3751
- labelTextAlignVertical: string;
3752
- labelTextAlignHorizontal: string;
3753
- }, any>>>;
3754
- }, {
3755
- cssVars: import("vue").ComputedRef<{
3756
- '--n-bezier': string;
3757
- '--n-line-height': string;
3758
- '--n-blank-height': string;
3759
- '--n-label-font-size': string;
3760
- '--n-label-text-align': string;
3761
- '--n-label-height': string;
3762
- '--n-label-padding': string;
3763
- '--n-asterisk-color': string;
3764
- '--n-label-text-color': string;
3765
- '--n-feedback-padding': string;
3766
- '--n-feedback-font-size': string;
3767
- '--n-feedback-height': string;
3768
- '--n-feedback-text-color': string;
3769
- '--n-feedback-text-color-warning': string;
3770
- '--n-feedback-text-color-error': string;
3771
- }> | undefined;
3772
- themeClass: import("vue").Ref<string>;
3773
- onRender: () => void;
3774
- validate: import("naive-ui/es/form/src/interface").FormItemValidate;
3775
- restoreValidation: () => void;
3776
- path?: string | undefined;
3777
- internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
3778
- mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
3779
- validationErrored: import("vue").Ref<boolean>;
3780
- mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
3781
- mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
3782
- mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
3783
- mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
3784
- mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
3785
- mergedValidationStatus: import("vue").ComputedRef<"success" | "warning" | "error" | undefined>;
3786
- mergedShowFeedback: import("vue").ComputedRef<boolean>;
3787
- mergedShowLabel: import("vue").ComputedRef<boolean>;
3788
- labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
3789
- mergedClsPrefix: import("vue").ComputedRef<string>;
3790
- mergedRequired: import("vue").ComputedRef<boolean>;
3791
- feedbackId: import("vue").Ref<string>;
3792
- renderExplains: import("vue").Ref<{
3793
- key: string;
3794
- render: () => import("vue").VNodeChild;
3795
- }[]>;
3796
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3797
- readonly label: StringConstructor;
3798
- readonly labelWidth: import("vue").PropType<string | number>;
3799
- readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3800
- readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
3801
- readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
3802
- readonly path: StringConstructor;
3803
- readonly first: BooleanConstructor;
3804
- readonly rulePath: StringConstructor;
3805
- readonly required: BooleanConstructor;
3806
- readonly showRequireMark: {
3807
- readonly type: import("vue").PropType<boolean | undefined>;
3808
- readonly default: undefined;
3809
- };
3810
- readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
3811
- readonly showFeedback: {
3812
- readonly type: import("vue").PropType<boolean | undefined>;
3813
- readonly default: undefined;
3814
- };
3815
- readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
3816
- readonly size: import("vue").PropType<"small" | "medium" | "large">;
3817
- readonly ignorePathChange: BooleanConstructor;
3818
- readonly validationStatus: import("vue").PropType<"success" | "warning" | "error">;
3819
- readonly feedback: StringConstructor;
3820
- readonly showLabel: {
3821
- readonly type: import("vue").PropType<boolean | undefined>;
3822
- readonly default: undefined;
3823
- };
3824
- readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
3825
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
3826
- blankHeightSmall: string;
3827
- blankHeightMedium: string;
3828
- blankHeightLarge: string;
3829
- lineHeight: string;
3830
- labelTextColor: string;
3831
- asteriskColor: string;
3832
- feedbackTextColorError: string;
3833
- feedbackTextColorWarning: string;
3834
- feedbackTextColor: string;
3835
- feedbackPadding: string;
3836
- feedbackHeightSmall: string;
3837
- feedbackHeightMedium: string;
3838
- feedbackHeightLarge: string;
3839
- feedbackFontSizeSmall: string;
3840
- feedbackFontSizeMedium: string;
3841
- feedbackFontSizeLarge: string;
3842
- labelFontSizeLeftSmall: string;
3843
- labelFontSizeLeftMedium: string;
3844
- labelFontSizeLeftLarge: string;
3845
- labelFontSizeTopSmall: string;
3846
- labelFontSizeTopMedium: string;
3847
- labelFontSizeTopLarge: string;
3848
- labelHeightSmall: string;
3849
- labelHeightMedium: string;
3850
- labelHeightLarge: string;
3851
- labelPaddingVertical: string;
3852
- labelPaddingHorizontal: string;
3853
- labelTextAlignVertical: string;
3854
- labelTextAlignHorizontal: string;
3855
- }, any>>;
3856
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3857
- blankHeightSmall: string;
3858
- blankHeightMedium: string;
3859
- blankHeightLarge: string;
3860
- lineHeight: string;
3861
- labelTextColor: string;
3862
- asteriskColor: string;
3863
- feedbackTextColorError: string;
3864
- feedbackTextColorWarning: string;
3865
- feedbackTextColor: string;
3866
- feedbackPadding: string;
3867
- feedbackHeightSmall: string;
3868
- feedbackHeightMedium: string;
3869
- feedbackHeightLarge: string;
3870
- feedbackFontSizeSmall: string;
3871
- feedbackFontSizeMedium: string;
3872
- feedbackFontSizeLarge: string;
3873
- labelFontSizeLeftSmall: string;
3874
- labelFontSizeLeftMedium: string;
3875
- labelFontSizeLeftLarge: string;
3876
- labelFontSizeTopSmall: string;
3877
- labelFontSizeTopMedium: string;
3878
- labelFontSizeTopLarge: string;
3879
- labelHeightSmall: string;
3880
- labelHeightMedium: string;
3881
- labelHeightLarge: string;
3882
- labelPaddingVertical: string;
3883
- labelPaddingHorizontal: string;
3884
- labelTextAlignVertical: string;
3885
- labelTextAlignHorizontal: string;
3886
- }, any>>>;
3887
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
3888
- blankHeightSmall: string;
3889
- blankHeightMedium: string;
3890
- blankHeightLarge: string;
3891
- lineHeight: string;
3892
- labelTextColor: string;
3893
- asteriskColor: string;
3894
- feedbackTextColorError: string;
3895
- feedbackTextColorWarning: string;
3896
- feedbackTextColor: string;
3897
- feedbackPadding: string;
3898
- feedbackHeightSmall: string;
3899
- feedbackHeightMedium: string;
3900
- feedbackHeightLarge: string;
3901
- feedbackFontSizeSmall: string;
3902
- feedbackFontSizeMedium: string;
3903
- feedbackFontSizeLarge: string;
3904
- labelFontSizeLeftSmall: string;
3905
- labelFontSizeLeftMedium: string;
3906
- labelFontSizeLeftLarge: string;
3907
- labelFontSizeTopSmall: string;
3908
- labelFontSizeTopMedium: string;
3909
- labelFontSizeTopLarge: string;
3910
- labelHeightSmall: string;
3911
- labelHeightMedium: string;
3912
- labelHeightLarge: string;
3913
- labelPaddingVertical: string;
3914
- labelPaddingHorizontal: string;
3915
- labelTextAlignVertical: string;
3916
- labelTextAlignHorizontal: string;
3917
- }, any>>>;
3918
- }>>, {
3919
- readonly required: boolean;
3920
- readonly first: boolean;
3921
- readonly showRequireMark: boolean | undefined;
3922
- readonly showFeedback: boolean | undefined;
3923
- readonly showLabel: boolean | undefined;
3924
- readonly ignorePathChange: boolean;
3925
- }>;
3926
- NInput: import("vue").DefineComponent<{
3927
- bordered: {
3928
- type: import("vue").PropType<boolean | undefined>;
3929
- default: undefined;
3930
- };
3931
- type: {
3932
- type: import("vue").PropType<"text" | "textarea" | "password">;
3933
- default: string;
3934
- };
3935
- placeholder: import("vue").PropType<string | [string, string]>;
3936
- defaultValue: {
3937
- type: import("vue").PropType<string | [string, string] | null>;
3938
- default: null;
3939
- };
3940
- value: import("vue").PropType<string | [string, string] | null>;
3941
- disabled: {
3942
- type: import("vue").PropType<boolean | undefined>;
3943
- default: undefined;
3944
- };
3945
- size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
3946
- rows: {
3947
- type: import("vue").PropType<string | number>;
3948
- default: number;
3949
- };
3950
- round: BooleanConstructor;
3951
- minlength: import("vue").PropType<string | number>;
3952
- maxlength: import("vue").PropType<string | number>;
3953
- clearable: BooleanConstructor;
3954
- autosize: {
3955
- type: import("vue").PropType<boolean | {
3956
- minRows?: number | undefined;
3957
- maxRows?: number | undefined;
3958
- }>;
3959
- default: boolean;
3960
- };
3961
- pair: BooleanConstructor;
3962
- separator: StringConstructor;
3963
- readonly: {
3964
- type: (BooleanConstructor | StringConstructor)[];
3965
- default: boolean;
3966
- };
3967
- passivelyActivated: BooleanConstructor;
3968
- showPasswordOn: import("vue").PropType<"click" | "mousedown">;
3969
- stateful: {
3970
- type: BooleanConstructor;
3971
- default: boolean;
3972
- };
3973
- autofocus: BooleanConstructor;
3974
- inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
3975
- resizable: {
3976
- type: BooleanConstructor;
3977
- default: boolean;
3978
- };
3979
- showCount: BooleanConstructor;
3980
- loading: {
3981
- type: BooleanConstructor;
3982
- default: undefined;
3983
- };
3984
- allowInput: import("vue").PropType<(value: string) => boolean>;
3985
- onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
3986
- onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
3987
- onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
3988
- onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
3989
- onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3990
- onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
3991
- onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
3992
- onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
3993
- onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
3994
- status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
3995
- 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
3996
- onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
3997
- textDecoration: import("vue").PropType<string | [string, string]>;
3998
- attrSize: {
3999
- type: NumberConstructor;
4000
- default: number;
4001
- };
4002
- onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4003
- onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4004
- onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
4005
- onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
4006
- onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4007
- onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4008
- internalDeactivateOnEnter: BooleanConstructor;
4009
- internalForceFocus: BooleanConstructor;
4010
- internalLoadingBeforeSuffix: BooleanConstructor;
4011
- showPasswordToggle: BooleanConstructor;
4012
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
4013
- countTextColor: string;
4014
- heightTiny: string;
4015
- heightSmall: string;
4016
- heightMedium: string;
4017
- heightLarge: string;
4018
- fontSizeTiny: string;
4019
- fontSizeSmall: string;
4020
- fontSizeMedium: string;
4021
- fontSizeLarge: string;
4022
- lineHeight: string;
4023
- lineHeightTextarea: string;
4024
- borderRadius: string;
4025
- iconSize: string;
4026
- groupLabelColor: string;
4027
- groupLabelTextColor: string;
4028
- textColor: string;
4029
- textColorDisabled: string;
4030
- textDecorationColor: string;
4031
- caretColor: string;
4032
- placeholderColor: string;
4033
- placeholderColorDisabled: string;
4034
- color: string;
4035
- colorDisabled: string;
4036
- colorFocus: string;
4037
- groupLabelBorder: string;
4038
- border: string;
4039
- borderHover: string;
4040
- borderDisabled: string;
4041
- borderFocus: string;
4042
- boxShadowFocus: string;
4043
- loadingColor: string;
4044
- loadingColorWarning: string;
4045
- borderWarning: string;
4046
- borderHoverWarning: string;
4047
- colorFocusWarning: string;
4048
- borderFocusWarning: string;
4049
- boxShadowFocusWarning: string;
4050
- caretColorWarning: string;
4051
- loadingColorError: string;
4052
- borderError: string;
4053
- borderHoverError: string;
4054
- colorFocusError: string;
4055
- borderFocusError: string;
4056
- boxShadowFocusError: string;
4057
- caretColorError: string;
4058
- clearColor: string;
4059
- clearColorHover: string;
4060
- clearColorPressed: string;
4061
- iconColor: string;
4062
- iconColorDisabled: string;
4063
- iconColorHover: string;
4064
- iconColorPressed: string;
4065
- suffixTextColor: string;
4066
- paddingTiny: string;
4067
- paddingSmall: string;
4068
- paddingMedium: string;
4069
- paddingLarge: string;
4070
- clearSize: string;
4071
- }, any>>;
4072
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
4073
- countTextColor: string;
4074
- heightTiny: string;
4075
- heightSmall: string;
4076
- heightMedium: string;
4077
- heightLarge: string;
4078
- fontSizeTiny: string;
4079
- fontSizeSmall: string;
4080
- fontSizeMedium: string;
4081
- fontSizeLarge: string;
4082
- lineHeight: string;
4083
- lineHeightTextarea: string;
4084
- borderRadius: string;
4085
- iconSize: string;
4086
- groupLabelColor: string;
4087
- groupLabelTextColor: string;
4088
- textColor: string;
4089
- textColorDisabled: string;
4090
- textDecorationColor: string;
4091
- caretColor: string;
4092
- placeholderColor: string;
4093
- placeholderColorDisabled: string;
4094
- color: string;
4095
- colorDisabled: string;
4096
- colorFocus: string;
4097
- groupLabelBorder: string;
4098
- border: string;
4099
- borderHover: string;
4100
- borderDisabled: string;
4101
- borderFocus: string;
4102
- boxShadowFocus: string;
4103
- loadingColor: string;
4104
- loadingColorWarning: string;
4105
- borderWarning: string;
4106
- borderHoverWarning: string;
4107
- colorFocusWarning: string;
4108
- borderFocusWarning: string;
4109
- boxShadowFocusWarning: string;
4110
- caretColorWarning: string;
4111
- loadingColorError: string;
4112
- borderError: string;
4113
- borderHoverError: string;
4114
- colorFocusError: string;
4115
- borderFocusError: string;
4116
- boxShadowFocusError: string;
4117
- caretColorError: string;
4118
- clearColor: string;
4119
- clearColorHover: string;
4120
- clearColorPressed: string;
4121
- iconColor: string;
4122
- iconColorDisabled: string;
4123
- iconColorHover: string;
4124
- iconColorPressed: string;
4125
- suffixTextColor: string;
4126
- paddingTiny: string;
4127
- paddingSmall: string;
4128
- paddingMedium: string;
4129
- paddingLarge: string;
4130
- clearSize: string;
4131
- }, any>>>;
4132
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
4133
- countTextColor: string;
4134
- heightTiny: string;
4135
- heightSmall: string;
4136
- heightMedium: string;
4137
- heightLarge: string;
4138
- fontSizeTiny: string;
4139
- fontSizeSmall: string;
4140
- fontSizeMedium: string;
4141
- fontSizeLarge: string;
4142
- lineHeight: string;
4143
- lineHeightTextarea: string;
4144
- borderRadius: string;
4145
- iconSize: string;
4146
- groupLabelColor: string;
4147
- groupLabelTextColor: string;
4148
- textColor: string;
4149
- textColorDisabled: string;
4150
- textDecorationColor: string;
4151
- caretColor: string;
4152
- placeholderColor: string;
4153
- placeholderColorDisabled: string;
4154
- color: string;
4155
- colorDisabled: string;
4156
- colorFocus: string;
4157
- groupLabelBorder: string;
4158
- border: string;
4159
- borderHover: string;
4160
- borderDisabled: string;
4161
- borderFocus: string;
4162
- boxShadowFocus: string;
4163
- loadingColor: string;
4164
- loadingColorWarning: string;
4165
- borderWarning: string;
4166
- borderHoverWarning: string;
4167
- colorFocusWarning: string;
4168
- borderFocusWarning: string;
4169
- boxShadowFocusWarning: string;
4170
- caretColorWarning: string;
4171
- loadingColorError: string;
4172
- borderError: string;
4173
- borderHoverError: string;
4174
- colorFocusError: string;
4175
- borderFocusError: string;
4176
- boxShadowFocusError: string;
4177
- caretColorError: string;
4178
- clearColor: string;
4179
- clearColorHover: string;
4180
- clearColorPressed: string;
4181
- iconColor: string;
4182
- iconColorDisabled: string;
4183
- iconColorHover: string;
4184
- iconColorPressed: string;
4185
- suffixTextColor: string;
4186
- paddingTiny: string;
4187
- paddingSmall: string;
4188
- paddingMedium: string;
4189
- paddingLarge: string;
4190
- clearSize: string;
4191
- }, any>>>;
4192
- }, {
4193
- wrapperElRef: import("vue").Ref<HTMLElement | null>;
4194
- inputElRef: import("vue").Ref<HTMLInputElement | null>;
4195
- inputMirrorElRef: import("vue").Ref<HTMLElement | null>;
4196
- inputEl2Ref: import("vue").Ref<HTMLInputElement | null>;
4197
- textareaElRef: import("vue").Ref<HTMLTextAreaElement | null>;
4198
- textareaMirrorElRef: import("vue").Ref<HTMLElement | null>;
4199
- textareaScrollbarInstRef: import("vue").Ref<{
4200
- $el: HTMLElement;
4201
- containerRef: HTMLElement | null;
4202
- contentRef: HTMLElement | null;
4203
- containerScrollTop: number;
4204
- syncUnifiedContainer: () => void;
4205
- scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
4206
- scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
4207
- sync: () => void;
4208
- handleMouseEnterWrapper: () => void;
4209
- handleMouseLeaveWrapper: () => void;
4210
- } | null>;
4211
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
4212
- uncontrolledValue: import("vue").Ref<string | [string, string] | null>;
4213
- mergedValue: import("vue").ComputedRef<string | [string, string] | null>;
4214
- passwordVisible: import("vue").Ref<boolean>;
4215
- mergedPlaceholder: import("vue").ComputedRef<[string, string] | [string]>;
4216
- showPlaceholder1: import("vue").ComputedRef<string | false>;
4217
- showPlaceholder2: import("vue").ComputedRef<boolean | "" | undefined>;
4218
- mergedFocus: import("vue").ComputedRef<boolean>;
4219
- isComposing: import("vue").Ref<boolean>;
4220
- activated: import("vue").Ref<boolean>;
4221
- showClearButton: import("vue").ComputedRef<boolean>;
4222
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
4223
- mergedDisabled: import("vue").ComputedRef<boolean>;
4224
- textDecorationStyle: import("vue").ComputedRef<string[] | {
4225
- textDecoration: string;
4226
- }[]>;
4227
- mergedClsPrefix: import("vue").ComputedRef<string>;
4228
- mergedBordered: import("vue").ComputedRef<boolean>;
4229
- mergedShowPasswordOn: import("vue").ComputedRef<"click" | "mousedown" | undefined>;
4230
- placeholderStyle: import("vue").Ref<{
4231
- top: string;
4232
- }>;
4233
- mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
4234
- textAreaScrollContainerWidth: import("vue").Ref<number | undefined>;
4235
- handleTextAreaScroll: (e: Event) => void;
4236
- handleCompositionStart: () => void;
4237
- handleCompositionEnd: (e: CompositionEvent) => void;
4238
- handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
4239
- handleInputBlur: (e: FocusEvent) => void;
4240
- handleInputFocus: (e: FocusEvent, index: number) => void;
4241
- handleWrapperBlur: (e: FocusEvent) => void;
4242
- handleWrapperFocus: (e: FocusEvent) => void;
4243
- handleMouseEnter: () => void;
4244
- handleMouseLeave: () => void;
4245
- handleMouseDown: (e: MouseEvent) => void;
4246
- handleChange: (e: Event, index?: 0 | 1 | undefined) => void;
4247
- handleClick: (e: MouseEvent) => void;
4248
- handleClear: (e: MouseEvent) => void;
4249
- handlePasswordToggleClick: () => void;
4250
- handlePasswordToggleMousedown: (e: MouseEvent) => void;
4251
- handleWrapperKeydown: (e: KeyboardEvent) => void;
4252
- handleTextAreaMirrorResize: () => void;
4253
- getTextareaScrollContainer: () => HTMLTextAreaElement | null;
4254
- mergedTheme: import("vue").ComputedRef<{
4255
- common: {
4256
- baseColor: string;
4257
- primaryColor: string;
4258
- primaryColorHover: string;
4259
- primaryColorPressed: string;
4260
- primaryColorSuppl: string;
4261
- infoColor: string;
4262
- infoColorHover: string;
4263
- infoColorPressed: string;
4264
- infoColorSuppl: string;
4265
- successColor: string;
4266
- successColorHover: string;
4267
- successColorPressed: string;
4268
- successColorSuppl: string;
4269
- warningColor: string;
4270
- warningColorHover: string;
4271
- warningColorPressed: string;
4272
- warningColorSuppl: string;
4273
- errorColor: string;
4274
- errorColorHover: string;
4275
- errorColorPressed: string;
4276
- errorColorSuppl: string;
4277
- textColorBase: string;
4278
- textColor1: string;
4279
- textColor2: string;
4280
- textColor3: string;
4281
- textColorDisabled: string;
4282
- placeholderColor: string;
4283
- placeholderColorDisabled: string;
4284
- iconColor: string;
4285
- iconColorHover: string;
4286
- iconColorPressed: string;
4287
- iconColorDisabled: string;
4288
- opacity1: string;
4289
- opacity2: string;
4290
- opacity3: string;
4291
- opacity4: string;
4292
- opacity5: string;
4293
- dividerColor: string;
4294
- borderColor: string;
4295
- closeIconColor: string;
4296
- closeIconColorHover: string;
4297
- closeIconColorPressed: string;
4298
- closeColorHover: string;
4299
- closeColorPressed: string;
4300
- clearColor: string;
4301
- clearColorHover: string;
4302
- clearColorPressed: string;
4303
- scrollbarColor: string;
4304
- scrollbarColorHover: string;
4305
- scrollbarWidth: string;
4306
- scrollbarHeight: string;
4307
- scrollbarBorderRadius: string;
4308
- progressRailColor: string;
4309
- railColor: string;
4310
- popoverColor: string;
4311
- tableColor: string;
4312
- cardColor: string;
4313
- modalColor: string;
4314
- bodyColor: string;
4315
- tagColor: string;
4316
- avatarColor: string;
4317
- invertedColor: string;
4318
- inputColor: string;
4319
- codeColor: string;
4320
- tabColor: string;
4321
- actionColor: string;
4322
- tableHeaderColor: string;
4323
- hoverColor: string;
4324
- tableColorHover: string;
4325
- tableColorStriped: string;
4326
- pressedColor: string;
4327
- opacityDisabled: string;
4328
- inputColorDisabled: string;
4329
- buttonColor2: string;
4330
- buttonColor2Hover: string;
4331
- buttonColor2Pressed: string;
4332
- boxShadow1: string;
4333
- boxShadow2: string;
4334
- boxShadow3: string;
4335
- fontFamily: string;
4336
- fontFamilyMono: string;
4337
- fontWeight: string;
4338
- fontWeightStrong: string;
4339
- cubicBezierEaseInOut: string;
4340
- cubicBezierEaseOut: string;
4341
- cubicBezierEaseIn: string;
4342
- borderRadius: string;
4343
- borderRadiusSmall: string;
4344
- fontSize: string;
4345
- fontSizeMini: string;
4346
- fontSizeTiny: string;
4347
- fontSizeSmall: string;
4348
- fontSizeMedium: string;
4349
- fontSizeLarge: string;
4350
- fontSizeHuge: string;
4351
- lineHeight: string;
4352
- heightMini: string;
4353
- heightTiny: string;
4354
- heightSmall: string;
4355
- heightMedium: string;
4356
- heightLarge: string;
4357
- heightHuge: string;
4358
- name: "common";
4359
- };
4360
- self: {
4361
- countTextColor: string;
4362
- heightTiny: string;
4363
- heightSmall: string;
4364
- heightMedium: string;
4365
- heightLarge: string;
4366
- fontSizeTiny: string;
4367
- fontSizeSmall: string;
4368
- fontSizeMedium: string;
4369
- fontSizeLarge: string;
4370
- lineHeight: string;
4371
- lineHeightTextarea: string;
4372
- borderRadius: string;
4373
- iconSize: string;
4374
- groupLabelColor: string;
4375
- groupLabelTextColor: string;
4376
- textColor: string;
4377
- textColorDisabled: string;
4378
- textDecorationColor: string;
4379
- caretColor: string;
4380
- placeholderColor: string;
4381
- placeholderColorDisabled: string;
4382
- color: string;
4383
- colorDisabled: string;
4384
- colorFocus: string;
4385
- groupLabelBorder: string;
4386
- border: string;
4387
- borderHover: string;
4388
- borderDisabled: string;
4389
- borderFocus: string;
4390
- boxShadowFocus: string;
4391
- loadingColor: string;
4392
- loadingColorWarning: string;
4393
- borderWarning: string;
4394
- borderHoverWarning: string;
4395
- colorFocusWarning: string;
4396
- borderFocusWarning: string;
4397
- boxShadowFocusWarning: string;
4398
- caretColorWarning: string;
4399
- loadingColorError: string;
4400
- borderError: string;
4401
- borderHoverError: string;
4402
- colorFocusError: string;
4403
- borderFocusError: string;
4404
- boxShadowFocusError: string;
4405
- caretColorError: string;
4406
- clearColor: string;
4407
- clearColorHover: string;
4408
- clearColorPressed: string;
4409
- iconColor: string;
4410
- iconColorDisabled: string;
4411
- iconColorHover: string;
4412
- iconColorPressed: string;
4413
- suffixTextColor: string;
4414
- paddingTiny: string;
4415
- paddingSmall: string;
4416
- paddingMedium: string;
4417
- paddingLarge: string;
4418
- clearSize: string;
4419
- };
4420
- peers: any;
4421
- peerOverrides: {
4422
- [x: string]: any;
4423
- };
4424
- }>;
4425
- cssVars: import("vue").ComputedRef<{
4426
- '--n-bezier': string;
4427
- '--n-count-text-color': string;
4428
- '--n-color': string;
4429
- '--n-font-size': string;
4430
- '--n-border-radius': string;
4431
- '--n-height': string;
4432
- '--n-padding-left': string;
4433
- '--n-padding-right': string;
4434
- '--n-text-color': string;
4435
- '--n-caret-color': string;
4436
- '--n-text-decoration-color': string;
4437
- '--n-border': string;
4438
- '--n-border-disabled': string;
4439
- '--n-border-hover': string;
4440
- '--n-border-focus': string;
4441
- '--n-placeholder-color': string;
4442
- '--n-placeholder-color-disabled': string;
4443
- '--n-icon-size': string;
4444
- '--n-line-height-textarea': string;
4445
- '--n-color-disabled': string;
4446
- '--n-color-focus': string;
4447
- '--n-text-color-disabled': string;
4448
- '--n-box-shadow-focus': string;
4449
- '--n-loading-color': string;
4450
- '--n-caret-color-warning': string;
4451
- '--n-color-focus-warning': string;
4452
- '--n-box-shadow-focus-warning': string;
4453
- '--n-border-warning': string;
4454
- '--n-border-focus-warning': string;
4455
- '--n-border-hover-warning': string;
4456
- '--n-loading-color-warning': string;
4457
- '--n-caret-color-error': string;
4458
- '--n-color-focus-error': string;
4459
- '--n-box-shadow-focus-error': string;
4460
- '--n-border-error': string;
4461
- '--n-border-focus-error': string;
4462
- '--n-border-hover-error': string;
4463
- '--n-loading-color-error': string;
4464
- '--n-clear-color': string;
4465
- '--n-clear-size': string;
4466
- '--n-clear-color-hover': string;
4467
- '--n-clear-color-pressed': string;
4468
- '--n-icon-color': string;
4469
- '--n-icon-color-hover': string;
4470
- '--n-icon-color-pressed': string;
4471
- '--n-icon-color-disabled': string;
4472
- '--n-suffix-text-color': string;
4473
- }> | undefined;
4474
- themeClass: import("vue").Ref<string> | undefined;
4475
- onRender: (() => void) | undefined;
4476
- isCompositing: import("vue").Ref<boolean>;
4477
- blur: () => void;
4478
- focus: () => void;
4479
- select: () => void;
4480
- activate: () => void;
4481
- deactivate: () => void;
4482
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4483
- bordered: {
4484
- type: import("vue").PropType<boolean | undefined>;
4485
- default: undefined;
4486
- };
4487
- type: {
4488
- type: import("vue").PropType<"text" | "textarea" | "password">;
4489
- default: string;
4490
- };
4491
- placeholder: import("vue").PropType<string | [string, string]>;
4492
- defaultValue: {
4493
- type: import("vue").PropType<string | [string, string] | null>;
4494
- default: null;
4495
- };
4496
- value: import("vue").PropType<string | [string, string] | null>;
4497
- disabled: {
4498
- type: import("vue").PropType<boolean | undefined>;
4499
- default: undefined;
4500
- };
4501
- size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
4502
- rows: {
4503
- type: import("vue").PropType<string | number>;
4504
- default: number;
4505
- };
4506
- round: BooleanConstructor;
4507
- minlength: import("vue").PropType<string | number>;
4508
- maxlength: import("vue").PropType<string | number>;
4509
- clearable: BooleanConstructor;
4510
- autosize: {
4511
- type: import("vue").PropType<boolean | {
4512
- minRows?: number | undefined;
4513
- maxRows?: number | undefined;
4514
- }>;
4515
- default: boolean;
4516
- };
4517
- pair: BooleanConstructor;
4518
- separator: StringConstructor;
4519
- readonly: {
4520
- type: (BooleanConstructor | StringConstructor)[];
4521
- default: boolean;
4522
- };
4523
- passivelyActivated: BooleanConstructor;
4524
- showPasswordOn: import("vue").PropType<"click" | "mousedown">;
4525
- stateful: {
4526
- type: BooleanConstructor;
4527
- default: boolean;
4528
- };
4529
- autofocus: BooleanConstructor;
4530
- inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
4531
- resizable: {
4532
- type: BooleanConstructor;
4533
- default: boolean;
4534
- };
4535
- showCount: BooleanConstructor;
4536
- loading: {
4537
- type: BooleanConstructor;
4538
- default: undefined;
4539
- };
4540
- allowInput: import("vue").PropType<(value: string) => boolean>;
4541
- onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
4542
- onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
4543
- onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
4544
- onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
4545
- onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4546
- onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4547
- onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
4548
- onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
4549
- onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
4550
- status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
4551
- 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
4552
- onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
4553
- textDecoration: import("vue").PropType<string | [string, string]>;
4554
- attrSize: {
4555
- type: NumberConstructor;
4556
- default: number;
4557
- };
4558
- onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4559
- onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4560
- onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
4561
- onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
4562
- onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4563
- onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
4564
- internalDeactivateOnEnter: BooleanConstructor;
4565
- internalForceFocus: BooleanConstructor;
4566
- internalLoadingBeforeSuffix: BooleanConstructor;
4567
- showPasswordToggle: BooleanConstructor;
4568
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
4569
- countTextColor: string;
4570
- heightTiny: string;
4571
- heightSmall: string;
4572
- heightMedium: string;
4573
- heightLarge: string;
4574
- fontSizeTiny: string;
4575
- fontSizeSmall: string;
4576
- fontSizeMedium: string;
4577
- fontSizeLarge: string;
4578
- lineHeight: string;
4579
- lineHeightTextarea: string;
4580
- borderRadius: string;
4581
- iconSize: string;
4582
- groupLabelColor: string;
4583
- groupLabelTextColor: string;
4584
- textColor: string;
4585
- textColorDisabled: string;
4586
- textDecorationColor: string;
4587
- caretColor: string;
4588
- placeholderColor: string;
4589
- placeholderColorDisabled: string;
4590
- color: string;
4591
- colorDisabled: string;
4592
- colorFocus: string;
4593
- groupLabelBorder: string;
4594
- border: string;
4595
- borderHover: string;
4596
- borderDisabled: string;
4597
- borderFocus: string;
4598
- boxShadowFocus: string;
4599
- loadingColor: string;
4600
- loadingColorWarning: string;
4601
- borderWarning: string;
4602
- borderHoverWarning: string;
4603
- colorFocusWarning: string;
4604
- borderFocusWarning: string;
4605
- boxShadowFocusWarning: string;
4606
- caretColorWarning: string;
4607
- loadingColorError: string;
4608
- borderError: string;
4609
- borderHoverError: string;
4610
- colorFocusError: string;
4611
- borderFocusError: string;
4612
- boxShadowFocusError: string;
4613
- caretColorError: string;
4614
- clearColor: string;
4615
- clearColorHover: string;
4616
- clearColorPressed: string;
4617
- iconColor: string;
4618
- iconColorDisabled: string;
4619
- iconColorHover: string;
4620
- iconColorPressed: string;
4621
- suffixTextColor: string;
4622
- paddingTiny: string;
4623
- paddingSmall: string;
4624
- paddingMedium: string;
4625
- paddingLarge: string;
4626
- clearSize: string;
4627
- }, any>>;
4628
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
4629
- countTextColor: string;
4630
- heightTiny: string;
4631
- heightSmall: string;
4632
- heightMedium: string;
4633
- heightLarge: string;
4634
- fontSizeTiny: string;
4635
- fontSizeSmall: string;
4636
- fontSizeMedium: string;
4637
- fontSizeLarge: string;
4638
- lineHeight: string;
4639
- lineHeightTextarea: string;
4640
- borderRadius: string;
4641
- iconSize: string;
4642
- groupLabelColor: string;
4643
- groupLabelTextColor: string;
4644
- textColor: string;
4645
- textColorDisabled: string;
4646
- textDecorationColor: string;
4647
- caretColor: string;
4648
- placeholderColor: string;
4649
- placeholderColorDisabled: string;
4650
- color: string;
4651
- colorDisabled: string;
4652
- colorFocus: string;
4653
- groupLabelBorder: string;
4654
- border: string;
4655
- borderHover: string;
4656
- borderDisabled: string;
4657
- borderFocus: string;
4658
- boxShadowFocus: string;
4659
- loadingColor: string;
4660
- loadingColorWarning: string;
4661
- borderWarning: string;
4662
- borderHoverWarning: string;
4663
- colorFocusWarning: string;
4664
- borderFocusWarning: string;
4665
- boxShadowFocusWarning: string;
4666
- caretColorWarning: string;
4667
- loadingColorError: string;
4668
- borderError: string;
4669
- borderHoverError: string;
4670
- colorFocusError: string;
4671
- borderFocusError: string;
4672
- boxShadowFocusError: string;
4673
- caretColorError: string;
4674
- clearColor: string;
4675
- clearColorHover: string;
4676
- clearColorPressed: string;
4677
- iconColor: string;
4678
- iconColorDisabled: string;
4679
- iconColorHover: string;
4680
- iconColorPressed: string;
4681
- suffixTextColor: string;
4682
- paddingTiny: string;
4683
- paddingSmall: string;
4684
- paddingMedium: string;
4685
- paddingLarge: string;
4686
- clearSize: string;
4687
- }, any>>>;
4688
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
4689
- countTextColor: string;
4690
- heightTiny: string;
4691
- heightSmall: string;
4692
- heightMedium: string;
4693
- heightLarge: string;
4694
- fontSizeTiny: string;
4695
- fontSizeSmall: string;
4696
- fontSizeMedium: string;
4697
- fontSizeLarge: string;
4698
- lineHeight: string;
4699
- lineHeightTextarea: string;
4700
- borderRadius: string;
4701
- iconSize: string;
4702
- groupLabelColor: string;
4703
- groupLabelTextColor: string;
4704
- textColor: string;
4705
- textColorDisabled: string;
4706
- textDecorationColor: string;
4707
- caretColor: string;
4708
- placeholderColor: string;
4709
- placeholderColorDisabled: string;
4710
- color: string;
4711
- colorDisabled: string;
4712
- colorFocus: string;
4713
- groupLabelBorder: string;
4714
- border: string;
4715
- borderHover: string;
4716
- borderDisabled: string;
4717
- borderFocus: string;
4718
- boxShadowFocus: string;
4719
- loadingColor: string;
4720
- loadingColorWarning: string;
4721
- borderWarning: string;
4722
- borderHoverWarning: string;
4723
- colorFocusWarning: string;
4724
- borderFocusWarning: string;
4725
- boxShadowFocusWarning: string;
4726
- caretColorWarning: string;
4727
- loadingColorError: string;
4728
- borderError: string;
4729
- borderHoverError: string;
4730
- colorFocusError: string;
4731
- borderFocusError: string;
4732
- boxShadowFocusError: string;
4733
- caretColorError: string;
4734
- clearColor: string;
4735
- clearColorHover: string;
4736
- clearColorPressed: string;
4737
- iconColor: string;
4738
- iconColorDisabled: string;
4739
- iconColorHover: string;
4740
- iconColorPressed: string;
4741
- suffixTextColor: string;
4742
- paddingTiny: string;
4743
- paddingSmall: string;
4744
- paddingMedium: string;
4745
- paddingLarge: string;
4746
- clearSize: string;
4747
- }, any>>>;
4748
- }>>, {
4749
- type: "text" | "textarea" | "password";
4750
- readonly: string | boolean;
4751
- round: boolean;
4752
- disabled: boolean | undefined;
4753
- autofocus: boolean;
4754
- autosize: boolean | {
4755
- minRows?: number | undefined;
4756
- maxRows?: number | undefined;
4757
- };
4758
- loading: boolean;
4759
- bordered: boolean | undefined;
4760
- clearable: boolean;
4761
- defaultValue: string | [string, string] | null;
4762
- resizable: boolean;
4763
- pair: boolean;
4764
- rows: string | number;
4765
- passivelyActivated: boolean;
4766
- stateful: boolean;
4767
- showCount: boolean;
4768
- attrSize: number;
4769
- internalDeactivateOnEnter: boolean;
4770
- internalForceFocus: boolean;
4771
- internalLoadingBeforeSuffix: boolean;
4772
- showPasswordToggle: boolean;
4773
- }>;
4774
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("success" | "update:modelValue")[], "success" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4775
- verifyUser: {
4776
- type: FunctionConstructor;
4777
- required: false;
4778
- default: () => Promise<void>;
4779
- };
4780
- identityVerificationTitle: {
4781
- type: StringConstructor;
4782
- required: false;
4783
- default: string;
4784
- };
4785
- modelValue: {
4786
- type: BooleanConstructor;
4787
- required: true;
4788
- };
4789
- }>> & {
4790
- onSuccess?: ((...args: any[]) => any) | undefined;
4791
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
4792
- }, {
4793
- verifyUser: Function;
4794
- identityVerificationTitle: string;
4795
- }>;
4796
- export default _default;