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