cnhis-design-vue 3.1.14-beta.2 → 3.1.14-beta.5

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