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,3226 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ fields: {
3
+ type: null;
4
+ required: false;
5
+ };
6
+ element: {
7
+ type: null;
8
+ required: true;
9
+ };
10
+ index: {
11
+ type: NumberConstructor;
12
+ required: true;
13
+ };
14
+ }, {
15
+ props: {
16
+ fields?: any;
17
+ element: any;
18
+ index: number;
19
+ };
20
+ showFields: any;
21
+ isFocus: import("vue").Ref<boolean>;
22
+ widthOptions: any;
23
+ emit: (event: "handleEdit" | "handleDelete", ...args: any[]) => void;
24
+ lineTypeList: import("vue").ComputedRef<string[]>;
25
+ handlechangIs_edit: (data: any) => void;
26
+ handlechangNull: (data: any) => void;
27
+ handleEdit: (data: any, i: any, type: any) => void;
28
+ handleDelete: (data: any, i?: number) => void;
29
+ isLineType: (t: any) => boolean;
30
+ Draggable: import("vue").DefineComponent<{
31
+ list: {
32
+ type: ArrayConstructor;
33
+ required: boolean;
34
+ default: any;
35
+ };
36
+ modelValue: {
37
+ type: ArrayConstructor;
38
+ required: boolean;
39
+ default: any;
40
+ };
41
+ itemKey: {
42
+ type: (StringConstructor | FunctionConstructor)[];
43
+ required: boolean;
44
+ };
45
+ clone: {
46
+ type: FunctionConstructor;
47
+ default: (original: any) => any;
48
+ };
49
+ tag: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ move: {
54
+ type: FunctionConstructor;
55
+ default: any;
56
+ };
57
+ componentData: {
58
+ type: ObjectConstructor;
59
+ required: boolean;
60
+ default: any;
61
+ };
62
+ }, unknown, {
63
+ error: boolean;
64
+ }, {
65
+ realList(): any;
66
+ getKey(): any;
67
+ }, {
68
+ getUnderlyingVm(domElement: any): any;
69
+ getUnderlyingPotencialDraggableComponent(htmElement: any): any;
70
+ emitChanges(evt: any): void;
71
+ alterList(onList: any): void;
72
+ spliceList(): void;
73
+ updatePosition(oldIndex: any, newIndex: any): void;
74
+ getRelatedContextFromMoveEvent({ to, related }: {
75
+ to: any;
76
+ related: any;
77
+ }): any;
78
+ getVmIndexFromDomIndex(domIndex: any): any;
79
+ onDragStart(evt: any): void;
80
+ onDragAdd(evt: any): void;
81
+ onDragRemove(evt: any): void;
82
+ onDragUpdate(evt: any): void;
83
+ computeFutureIndex(relatedContext: any, evt: any): any;
84
+ onDragMove(evt: any, originalEvent: any): any;
85
+ onDragEnd(): void;
86
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
87
+ move: Function;
88
+ tag: string;
89
+ clone: Function;
90
+ list: unknown[];
91
+ modelValue: unknown[];
92
+ componentData: Record<string, any>;
93
+ } & {
94
+ itemKey?: string | Function | undefined;
95
+ }>, {
96
+ move: Function;
97
+ tag: string;
98
+ clone: Function;
99
+ list: unknown[];
100
+ modelValue: unknown[];
101
+ componentData: Record<string, any>;
102
+ }>;
103
+ NPopover: import("vue").DefineComponent<{
104
+ internalOnAfterLeave: import("vue").PropType<() => void>;
105
+ internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
106
+ show: {
107
+ type: import("vue").PropType<boolean | undefined>;
108
+ default: undefined;
109
+ };
110
+ defaultShow: BooleanConstructor;
111
+ showArrow: {
112
+ type: BooleanConstructor;
113
+ default: boolean;
114
+ };
115
+ trigger: {
116
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
117
+ default: string;
118
+ };
119
+ delay: {
120
+ type: NumberConstructor;
121
+ default: number;
122
+ };
123
+ duration: {
124
+ type: NumberConstructor;
125
+ default: number;
126
+ };
127
+ raw: BooleanConstructor;
128
+ placement: {
129
+ type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
130
+ default: string;
131
+ };
132
+ x: NumberConstructor;
133
+ y: NumberConstructor;
134
+ arrowPointToCenter: BooleanConstructor;
135
+ disabled: BooleanConstructor;
136
+ getDisabled: import("vue").PropType<() => boolean>;
137
+ displayDirective: {
138
+ type: import("vue").PropType<"show" | "if">;
139
+ default: string;
140
+ };
141
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
142
+ flip: {
143
+ type: BooleanConstructor;
144
+ default: boolean;
145
+ };
146
+ animated: {
147
+ type: BooleanConstructor;
148
+ default: boolean;
149
+ };
150
+ width: {
151
+ type: import("vue").PropType<number | "trigger">;
152
+ default: undefined;
153
+ };
154
+ overlap: BooleanConstructor;
155
+ keepAliveOnHover: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ zIndex: NumberConstructor;
160
+ to: {
161
+ type: import("vue").PropType<string | boolean | HTMLElement>;
162
+ default: undefined;
163
+ };
164
+ scrollable: BooleanConstructor;
165
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
166
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
167
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
168
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
169
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
170
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
171
+ internalDeactivateImmediately: BooleanConstructor;
172
+ internalSyncTargetWithParent: BooleanConstructor;
173
+ internalInheritedEventHandlers: {
174
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
175
+ default: () => never[];
176
+ };
177
+ internalTrapFocus: BooleanConstructor;
178
+ internalExtraClass: {
179
+ type: import("vue").PropType<string[]>;
180
+ default: () => never[];
181
+ };
182
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
183
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
184
+ arrow: {
185
+ type: import("vue").PropType<boolean | undefined>;
186
+ default: undefined;
187
+ };
188
+ minWidth: NumberConstructor;
189
+ maxWidth: NumberConstructor;
190
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popover", {
191
+ fontSize: string;
192
+ borderRadius: string;
193
+ color: string;
194
+ dividerColor: string;
195
+ textColor: string;
196
+ boxShadow: string;
197
+ space: string;
198
+ spaceArrow: string;
199
+ arrowOffset: string;
200
+ arrowOffsetVertical: string;
201
+ arrowHeight: string;
202
+ padding: string;
203
+ }, any>>;
204
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
205
+ fontSize: string;
206
+ borderRadius: string;
207
+ color: string;
208
+ dividerColor: string;
209
+ textColor: string;
210
+ boxShadow: string;
211
+ space: string;
212
+ spaceArrow: string;
213
+ arrowOffset: string;
214
+ arrowOffsetVertical: string;
215
+ arrowHeight: string;
216
+ padding: string;
217
+ }, any>>>;
218
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
219
+ fontSize: string;
220
+ borderRadius: string;
221
+ color: string;
222
+ dividerColor: string;
223
+ textColor: string;
224
+ boxShadow: string;
225
+ space: string;
226
+ spaceArrow: string;
227
+ arrowOffset: string;
228
+ arrowOffsetVertical: string;
229
+ arrowHeight: string;
230
+ padding: string;
231
+ }, any>>>;
232
+ }, {
233
+ binderInstRef: import("vue").Ref<{
234
+ targetRef: HTMLElement | null;
235
+ } | null>;
236
+ positionManually: import("vue").ComputedRef<boolean>;
237
+ mergedShowConsideringDisabledProp: import("vue").ComputedRef<boolean>;
238
+ uncontrolledShow: import("vue").Ref<boolean>;
239
+ mergedShowArrow: import("vue").ComputedRef<boolean>;
240
+ getMergedShow: () => boolean;
241
+ setShow: (value: boolean) => void;
242
+ handleClick: () => void;
243
+ handleMouseEnter: () => void;
244
+ handleMouseLeave: () => void;
245
+ handleFocus: () => void;
246
+ handleBlur: () => void;
247
+ syncPosition: () => void;
248
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
249
+ internalOnAfterLeave: import("vue").PropType<() => void>;
250
+ internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
251
+ show: {
252
+ type: import("vue").PropType<boolean | undefined>;
253
+ default: undefined;
254
+ };
255
+ defaultShow: BooleanConstructor;
256
+ showArrow: {
257
+ type: BooleanConstructor;
258
+ default: boolean;
259
+ };
260
+ trigger: {
261
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
262
+ default: string;
263
+ };
264
+ delay: {
265
+ type: NumberConstructor;
266
+ default: number;
267
+ };
268
+ duration: {
269
+ type: NumberConstructor;
270
+ default: number;
271
+ };
272
+ raw: BooleanConstructor;
273
+ placement: {
274
+ type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
275
+ default: string;
276
+ };
277
+ x: NumberConstructor;
278
+ y: NumberConstructor;
279
+ arrowPointToCenter: BooleanConstructor;
280
+ disabled: BooleanConstructor;
281
+ getDisabled: import("vue").PropType<() => boolean>;
282
+ displayDirective: {
283
+ type: import("vue").PropType<"show" | "if">;
284
+ default: string;
285
+ };
286
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
287
+ flip: {
288
+ type: BooleanConstructor;
289
+ default: boolean;
290
+ };
291
+ animated: {
292
+ type: BooleanConstructor;
293
+ default: boolean;
294
+ };
295
+ width: {
296
+ type: import("vue").PropType<number | "trigger">;
297
+ default: undefined;
298
+ };
299
+ overlap: BooleanConstructor;
300
+ keepAliveOnHover: {
301
+ type: BooleanConstructor;
302
+ default: boolean;
303
+ };
304
+ zIndex: NumberConstructor;
305
+ to: {
306
+ type: import("vue").PropType<string | boolean | HTMLElement>;
307
+ default: undefined;
308
+ };
309
+ scrollable: BooleanConstructor;
310
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
311
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
312
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
313
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
314
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
315
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
316
+ internalDeactivateImmediately: BooleanConstructor;
317
+ internalSyncTargetWithParent: BooleanConstructor;
318
+ internalInheritedEventHandlers: {
319
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
320
+ default: () => never[];
321
+ };
322
+ internalTrapFocus: BooleanConstructor;
323
+ internalExtraClass: {
324
+ type: import("vue").PropType<string[]>;
325
+ default: () => never[];
326
+ };
327
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
328
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
329
+ arrow: {
330
+ type: import("vue").PropType<boolean | undefined>;
331
+ default: undefined;
332
+ };
333
+ minWidth: NumberConstructor;
334
+ maxWidth: NumberConstructor;
335
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popover", {
336
+ fontSize: string;
337
+ borderRadius: string;
338
+ color: string;
339
+ dividerColor: string;
340
+ textColor: string;
341
+ boxShadow: string;
342
+ space: string;
343
+ spaceArrow: string;
344
+ arrowOffset: string;
345
+ arrowOffsetVertical: string;
346
+ arrowHeight: string;
347
+ padding: string;
348
+ }, any>>;
349
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
350
+ fontSize: string;
351
+ borderRadius: string;
352
+ color: string;
353
+ dividerColor: string;
354
+ textColor: string;
355
+ boxShadow: string;
356
+ space: string;
357
+ spaceArrow: string;
358
+ arrowOffset: string;
359
+ arrowOffsetVertical: string;
360
+ arrowHeight: string;
361
+ padding: string;
362
+ }, any>>>;
363
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
364
+ fontSize: string;
365
+ borderRadius: string;
366
+ color: string;
367
+ dividerColor: string;
368
+ textColor: string;
369
+ boxShadow: string;
370
+ space: string;
371
+ spaceArrow: string;
372
+ arrowOffset: string;
373
+ arrowOffsetVertical: string;
374
+ arrowHeight: string;
375
+ padding: string;
376
+ }, any>>>;
377
+ }>>, {
378
+ show: boolean | undefined;
379
+ flip: boolean;
380
+ width: number | "trigger";
381
+ disabled: boolean;
382
+ duration: number;
383
+ to: string | boolean | HTMLElement;
384
+ raw: boolean;
385
+ placement: import("naive-ui").PopoverPlacement;
386
+ overlap: boolean;
387
+ scrollable: boolean;
388
+ trigger: import("naive-ui").PopoverTrigger;
389
+ showArrow: boolean;
390
+ delay: number;
391
+ arrowPointToCenter: boolean;
392
+ displayDirective: "show" | "if";
393
+ keepAliveOnHover: boolean;
394
+ internalDeactivateImmediately: boolean;
395
+ animated: boolean;
396
+ internalTrapFocus: boolean;
397
+ defaultShow: boolean;
398
+ internalSyncTargetWithParent: boolean;
399
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
400
+ internalExtraClass: string[];
401
+ arrow: boolean | undefined;
402
+ }>;
403
+ NButton: import("vue").DefineComponent<{
404
+ readonly color: StringConstructor;
405
+ readonly textColor: StringConstructor;
406
+ readonly text: BooleanConstructor;
407
+ readonly block: BooleanConstructor;
408
+ readonly loading: BooleanConstructor;
409
+ readonly disabled: BooleanConstructor;
410
+ readonly circle: BooleanConstructor;
411
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
412
+ readonly ghost: BooleanConstructor;
413
+ readonly round: BooleanConstructor;
414
+ readonly secondary: BooleanConstructor;
415
+ readonly tertiary: BooleanConstructor;
416
+ readonly quaternary: BooleanConstructor;
417
+ readonly strong: BooleanConstructor;
418
+ readonly focusable: {
419
+ readonly type: BooleanConstructor;
420
+ readonly default: true;
421
+ };
422
+ readonly keyboard: {
423
+ readonly type: BooleanConstructor;
424
+ readonly default: true;
425
+ };
426
+ readonly tag: {
427
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
428
+ readonly default: "button";
429
+ };
430
+ readonly type: {
431
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
432
+ readonly default: "default";
433
+ };
434
+ readonly dashed: BooleanConstructor;
435
+ readonly iconPlacement: {
436
+ readonly type: import("vue").PropType<"left" | "right">;
437
+ readonly default: "left";
438
+ };
439
+ readonly attrType: {
440
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
441
+ readonly default: "button";
442
+ };
443
+ readonly bordered: {
444
+ readonly type: BooleanConstructor;
445
+ readonly default: true;
446
+ };
447
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
448
+ readonly nativeFocusBehavior: {
449
+ readonly type: BooleanConstructor;
450
+ readonly default: boolean;
451
+ };
452
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
453
+ heightTiny: string;
454
+ heightSmall: string;
455
+ heightMedium: string;
456
+ heightLarge: string;
457
+ borderRadiusTiny: string;
458
+ borderRadiusSmall: string;
459
+ borderRadiusMedium: string;
460
+ borderRadiusLarge: string;
461
+ fontSizeTiny: string;
462
+ fontSizeSmall: string;
463
+ fontSizeMedium: string;
464
+ fontSizeLarge: string;
465
+ opacityDisabled: string;
466
+ colorOpacitySecondary: string;
467
+ colorOpacitySecondaryHover: string;
468
+ colorOpacitySecondaryPressed: string;
469
+ colorSecondary: string;
470
+ colorSecondaryHover: string;
471
+ colorSecondaryPressed: string;
472
+ colorTertiary: string;
473
+ colorTertiaryHover: string;
474
+ colorTertiaryPressed: string;
475
+ colorQuaternary: string;
476
+ colorQuaternaryHover: string;
477
+ colorQuaternaryPressed: string;
478
+ color: string;
479
+ colorHover: string;
480
+ colorPressed: string;
481
+ colorFocus: string;
482
+ colorDisabled: string;
483
+ textColor: string;
484
+ textColorTertiary: string;
485
+ textColorHover: string;
486
+ textColorPressed: string;
487
+ textColorFocus: string;
488
+ textColorDisabled: string;
489
+ textColorText: string;
490
+ textColorTextHover: string;
491
+ textColorTextPressed: string;
492
+ textColorTextFocus: string;
493
+ textColorTextDisabled: string;
494
+ textColorGhost: string;
495
+ textColorGhostHover: string;
496
+ textColorGhostPressed: string;
497
+ textColorGhostFocus: string;
498
+ textColorGhostDisabled: string;
499
+ border: string;
500
+ borderHover: string;
501
+ borderPressed: string;
502
+ borderFocus: string;
503
+ borderDisabled: string;
504
+ rippleColor: string;
505
+ colorPrimary: string;
506
+ colorHoverPrimary: string;
507
+ colorPressedPrimary: string;
508
+ colorFocusPrimary: string;
509
+ colorDisabledPrimary: string;
510
+ textColorPrimary: string;
511
+ textColorHoverPrimary: string;
512
+ textColorPressedPrimary: string;
513
+ textColorFocusPrimary: string;
514
+ textColorDisabledPrimary: string;
515
+ textColorTextPrimary: string;
516
+ textColorTextHoverPrimary: string;
517
+ textColorTextPressedPrimary: string;
518
+ textColorTextFocusPrimary: string;
519
+ textColorTextDisabledPrimary: string;
520
+ textColorGhostPrimary: string;
521
+ textColorGhostHoverPrimary: string;
522
+ textColorGhostPressedPrimary: string;
523
+ textColorGhostFocusPrimary: string;
524
+ textColorGhostDisabledPrimary: string;
525
+ borderPrimary: string;
526
+ borderHoverPrimary: string;
527
+ borderPressedPrimary: string;
528
+ borderFocusPrimary: string;
529
+ borderDisabledPrimary: string;
530
+ rippleColorPrimary: string;
531
+ colorInfo: string;
532
+ colorHoverInfo: string;
533
+ colorPressedInfo: string;
534
+ colorFocusInfo: string;
535
+ colorDisabledInfo: string;
536
+ textColorInfo: string;
537
+ textColorHoverInfo: string;
538
+ textColorPressedInfo: string;
539
+ textColorFocusInfo: string;
540
+ textColorDisabledInfo: string;
541
+ textColorTextInfo: string;
542
+ textColorTextHoverInfo: string;
543
+ textColorTextPressedInfo: string;
544
+ textColorTextFocusInfo: string;
545
+ textColorTextDisabledInfo: string;
546
+ textColorGhostInfo: string;
547
+ textColorGhostHoverInfo: string;
548
+ textColorGhostPressedInfo: string;
549
+ textColorGhostFocusInfo: string;
550
+ textColorGhostDisabledInfo: string;
551
+ borderInfo: string;
552
+ borderHoverInfo: string;
553
+ borderPressedInfo: string;
554
+ borderFocusInfo: string;
555
+ borderDisabledInfo: string;
556
+ rippleColorInfo: string;
557
+ colorSuccess: string;
558
+ colorHoverSuccess: string;
559
+ colorPressedSuccess: string;
560
+ colorFocusSuccess: string;
561
+ colorDisabledSuccess: string;
562
+ textColorSuccess: string;
563
+ textColorHoverSuccess: string;
564
+ textColorPressedSuccess: string;
565
+ textColorFocusSuccess: string;
566
+ textColorDisabledSuccess: string;
567
+ textColorTextSuccess: string;
568
+ textColorTextHoverSuccess: string;
569
+ textColorTextPressedSuccess: string;
570
+ textColorTextFocusSuccess: string;
571
+ textColorTextDisabledSuccess: string;
572
+ textColorGhostSuccess: string;
573
+ textColorGhostHoverSuccess: string;
574
+ textColorGhostPressedSuccess: string;
575
+ textColorGhostFocusSuccess: string;
576
+ textColorGhostDisabledSuccess: string;
577
+ borderSuccess: string;
578
+ borderHoverSuccess: string;
579
+ borderPressedSuccess: string;
580
+ borderFocusSuccess: string;
581
+ borderDisabledSuccess: string;
582
+ rippleColorSuccess: string;
583
+ colorWarning: string;
584
+ colorHoverWarning: string;
585
+ colorPressedWarning: string;
586
+ colorFocusWarning: string;
587
+ colorDisabledWarning: string;
588
+ textColorWarning: string;
589
+ textColorHoverWarning: string;
590
+ textColorPressedWarning: string;
591
+ textColorFocusWarning: string;
592
+ textColorDisabledWarning: string;
593
+ textColorTextWarning: string;
594
+ textColorTextHoverWarning: string;
595
+ textColorTextPressedWarning: string;
596
+ textColorTextFocusWarning: string;
597
+ textColorTextDisabledWarning: string;
598
+ textColorGhostWarning: string;
599
+ textColorGhostHoverWarning: string;
600
+ textColorGhostPressedWarning: string;
601
+ textColorGhostFocusWarning: string;
602
+ textColorGhostDisabledWarning: string;
603
+ borderWarning: string;
604
+ borderHoverWarning: string;
605
+ borderPressedWarning: string;
606
+ borderFocusWarning: string;
607
+ borderDisabledWarning: string;
608
+ rippleColorWarning: string;
609
+ colorError: string;
610
+ colorHoverError: string;
611
+ colorPressedError: string;
612
+ colorFocusError: string;
613
+ colorDisabledError: string;
614
+ textColorError: string;
615
+ textColorHoverError: string;
616
+ textColorPressedError: string;
617
+ textColorFocusError: string;
618
+ textColorDisabledError: string;
619
+ textColorTextError: string;
620
+ textColorTextHoverError: string;
621
+ textColorTextPressedError: string;
622
+ textColorTextFocusError: string;
623
+ textColorTextDisabledError: string;
624
+ textColorGhostError: string;
625
+ textColorGhostHoverError: string;
626
+ textColorGhostPressedError: string;
627
+ textColorGhostFocusError: string;
628
+ textColorGhostDisabledError: string;
629
+ borderError: string;
630
+ borderHoverError: string;
631
+ borderPressedError: string;
632
+ borderFocusError: string;
633
+ borderDisabledError: string;
634
+ rippleColorError: string;
635
+ waveOpacity: string;
636
+ fontWeight: string;
637
+ fontWeightStrong: string;
638
+ paddingTiny: string;
639
+ paddingSmall: string;
640
+ paddingMedium: string;
641
+ paddingLarge: string;
642
+ paddingRoundTiny: string;
643
+ paddingRoundSmall: string;
644
+ paddingRoundMedium: string;
645
+ paddingRoundLarge: string;
646
+ iconMarginTiny: string;
647
+ iconMarginSmall: string;
648
+ iconMarginMedium: string;
649
+ iconMarginLarge: string;
650
+ iconSizeTiny: string;
651
+ iconSizeSmall: string;
652
+ iconSizeMedium: string;
653
+ iconSizeLarge: string;
654
+ rippleDuration: string;
655
+ }, any>>;
656
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
657
+ heightTiny: string;
658
+ heightSmall: string;
659
+ heightMedium: string;
660
+ heightLarge: string;
661
+ borderRadiusTiny: string;
662
+ borderRadiusSmall: string;
663
+ borderRadiusMedium: string;
664
+ borderRadiusLarge: string;
665
+ fontSizeTiny: string;
666
+ fontSizeSmall: string;
667
+ fontSizeMedium: string;
668
+ fontSizeLarge: string;
669
+ opacityDisabled: string;
670
+ colorOpacitySecondary: string;
671
+ colorOpacitySecondaryHover: string;
672
+ colorOpacitySecondaryPressed: string;
673
+ colorSecondary: string;
674
+ colorSecondaryHover: string;
675
+ colorSecondaryPressed: string;
676
+ colorTertiary: string;
677
+ colorTertiaryHover: string;
678
+ colorTertiaryPressed: string;
679
+ colorQuaternary: string;
680
+ colorQuaternaryHover: string;
681
+ colorQuaternaryPressed: string;
682
+ color: string;
683
+ colorHover: string;
684
+ colorPressed: string;
685
+ colorFocus: string;
686
+ colorDisabled: string;
687
+ textColor: string;
688
+ textColorTertiary: string;
689
+ textColorHover: string;
690
+ textColorPressed: string;
691
+ textColorFocus: string;
692
+ textColorDisabled: string;
693
+ textColorText: string;
694
+ textColorTextHover: string;
695
+ textColorTextPressed: string;
696
+ textColorTextFocus: string;
697
+ textColorTextDisabled: string;
698
+ textColorGhost: string;
699
+ textColorGhostHover: string;
700
+ textColorGhostPressed: string;
701
+ textColorGhostFocus: string;
702
+ textColorGhostDisabled: string;
703
+ border: string;
704
+ borderHover: string;
705
+ borderPressed: string;
706
+ borderFocus: string;
707
+ borderDisabled: string;
708
+ rippleColor: string;
709
+ colorPrimary: string;
710
+ colorHoverPrimary: string;
711
+ colorPressedPrimary: string;
712
+ colorFocusPrimary: string;
713
+ colorDisabledPrimary: string;
714
+ textColorPrimary: string;
715
+ textColorHoverPrimary: string;
716
+ textColorPressedPrimary: string;
717
+ textColorFocusPrimary: string;
718
+ textColorDisabledPrimary: string;
719
+ textColorTextPrimary: string;
720
+ textColorTextHoverPrimary: string;
721
+ textColorTextPressedPrimary: string;
722
+ textColorTextFocusPrimary: string;
723
+ textColorTextDisabledPrimary: string;
724
+ textColorGhostPrimary: string;
725
+ textColorGhostHoverPrimary: string;
726
+ textColorGhostPressedPrimary: string;
727
+ textColorGhostFocusPrimary: string;
728
+ textColorGhostDisabledPrimary: string;
729
+ borderPrimary: string;
730
+ borderHoverPrimary: string;
731
+ borderPressedPrimary: string;
732
+ borderFocusPrimary: string;
733
+ borderDisabledPrimary: string;
734
+ rippleColorPrimary: string;
735
+ colorInfo: string;
736
+ colorHoverInfo: string;
737
+ colorPressedInfo: string;
738
+ colorFocusInfo: string;
739
+ colorDisabledInfo: string;
740
+ textColorInfo: string;
741
+ textColorHoverInfo: string;
742
+ textColorPressedInfo: string;
743
+ textColorFocusInfo: string;
744
+ textColorDisabledInfo: string;
745
+ textColorTextInfo: string;
746
+ textColorTextHoverInfo: string;
747
+ textColorTextPressedInfo: string;
748
+ textColorTextFocusInfo: string;
749
+ textColorTextDisabledInfo: string;
750
+ textColorGhostInfo: string;
751
+ textColorGhostHoverInfo: string;
752
+ textColorGhostPressedInfo: string;
753
+ textColorGhostFocusInfo: string;
754
+ textColorGhostDisabledInfo: string;
755
+ borderInfo: string;
756
+ borderHoverInfo: string;
757
+ borderPressedInfo: string;
758
+ borderFocusInfo: string;
759
+ borderDisabledInfo: string;
760
+ rippleColorInfo: string;
761
+ colorSuccess: string;
762
+ colorHoverSuccess: string;
763
+ colorPressedSuccess: string;
764
+ colorFocusSuccess: string;
765
+ colorDisabledSuccess: string;
766
+ textColorSuccess: string;
767
+ textColorHoverSuccess: string;
768
+ textColorPressedSuccess: string;
769
+ textColorFocusSuccess: string;
770
+ textColorDisabledSuccess: string;
771
+ textColorTextSuccess: string;
772
+ textColorTextHoverSuccess: string;
773
+ textColorTextPressedSuccess: string;
774
+ textColorTextFocusSuccess: string;
775
+ textColorTextDisabledSuccess: string;
776
+ textColorGhostSuccess: string;
777
+ textColorGhostHoverSuccess: string;
778
+ textColorGhostPressedSuccess: string;
779
+ textColorGhostFocusSuccess: string;
780
+ textColorGhostDisabledSuccess: string;
781
+ borderSuccess: string;
782
+ borderHoverSuccess: string;
783
+ borderPressedSuccess: string;
784
+ borderFocusSuccess: string;
785
+ borderDisabledSuccess: string;
786
+ rippleColorSuccess: string;
787
+ colorWarning: string;
788
+ colorHoverWarning: string;
789
+ colorPressedWarning: string;
790
+ colorFocusWarning: string;
791
+ colorDisabledWarning: string;
792
+ textColorWarning: string;
793
+ textColorHoverWarning: string;
794
+ textColorPressedWarning: string;
795
+ textColorFocusWarning: string;
796
+ textColorDisabledWarning: string;
797
+ textColorTextWarning: string;
798
+ textColorTextHoverWarning: string;
799
+ textColorTextPressedWarning: string;
800
+ textColorTextFocusWarning: string;
801
+ textColorTextDisabledWarning: string;
802
+ textColorGhostWarning: string;
803
+ textColorGhostHoverWarning: string;
804
+ textColorGhostPressedWarning: string;
805
+ textColorGhostFocusWarning: string;
806
+ textColorGhostDisabledWarning: string;
807
+ borderWarning: string;
808
+ borderHoverWarning: string;
809
+ borderPressedWarning: string;
810
+ borderFocusWarning: string;
811
+ borderDisabledWarning: string;
812
+ rippleColorWarning: string;
813
+ colorError: string;
814
+ colorHoverError: string;
815
+ colorPressedError: string;
816
+ colorFocusError: string;
817
+ colorDisabledError: string;
818
+ textColorError: string;
819
+ textColorHoverError: string;
820
+ textColorPressedError: string;
821
+ textColorFocusError: string;
822
+ textColorDisabledError: string;
823
+ textColorTextError: string;
824
+ textColorTextHoverError: string;
825
+ textColorTextPressedError: string;
826
+ textColorTextFocusError: string;
827
+ textColorTextDisabledError: string;
828
+ textColorGhostError: string;
829
+ textColorGhostHoverError: string;
830
+ textColorGhostPressedError: string;
831
+ textColorGhostFocusError: string;
832
+ textColorGhostDisabledError: string;
833
+ borderError: string;
834
+ borderHoverError: string;
835
+ borderPressedError: string;
836
+ borderFocusError: string;
837
+ borderDisabledError: string;
838
+ rippleColorError: string;
839
+ waveOpacity: string;
840
+ fontWeight: string;
841
+ fontWeightStrong: string;
842
+ paddingTiny: string;
843
+ paddingSmall: string;
844
+ paddingMedium: string;
845
+ paddingLarge: string;
846
+ paddingRoundTiny: string;
847
+ paddingRoundSmall: string;
848
+ paddingRoundMedium: string;
849
+ paddingRoundLarge: string;
850
+ iconMarginTiny: string;
851
+ iconMarginSmall: string;
852
+ iconMarginMedium: string;
853
+ iconMarginLarge: string;
854
+ iconSizeTiny: string;
855
+ iconSizeSmall: string;
856
+ iconSizeMedium: string;
857
+ iconSizeLarge: string;
858
+ rippleDuration: string;
859
+ }, any>>>;
860
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
861
+ heightTiny: string;
862
+ heightSmall: string;
863
+ heightMedium: string;
864
+ heightLarge: string;
865
+ borderRadiusTiny: string;
866
+ borderRadiusSmall: string;
867
+ borderRadiusMedium: string;
868
+ borderRadiusLarge: string;
869
+ fontSizeTiny: string;
870
+ fontSizeSmall: string;
871
+ fontSizeMedium: string;
872
+ fontSizeLarge: string;
873
+ opacityDisabled: string;
874
+ colorOpacitySecondary: string;
875
+ colorOpacitySecondaryHover: string;
876
+ colorOpacitySecondaryPressed: string;
877
+ colorSecondary: string;
878
+ colorSecondaryHover: string;
879
+ colorSecondaryPressed: string;
880
+ colorTertiary: string;
881
+ colorTertiaryHover: string;
882
+ colorTertiaryPressed: string;
883
+ colorQuaternary: string;
884
+ colorQuaternaryHover: string;
885
+ colorQuaternaryPressed: string;
886
+ color: string;
887
+ colorHover: string;
888
+ colorPressed: string;
889
+ colorFocus: string;
890
+ colorDisabled: string;
891
+ textColor: string;
892
+ textColorTertiary: string;
893
+ textColorHover: string;
894
+ textColorPressed: string;
895
+ textColorFocus: string;
896
+ textColorDisabled: string;
897
+ textColorText: string;
898
+ textColorTextHover: string;
899
+ textColorTextPressed: string;
900
+ textColorTextFocus: string;
901
+ textColorTextDisabled: string;
902
+ textColorGhost: string;
903
+ textColorGhostHover: string;
904
+ textColorGhostPressed: string;
905
+ textColorGhostFocus: string;
906
+ textColorGhostDisabled: string;
907
+ border: string;
908
+ borderHover: string;
909
+ borderPressed: string;
910
+ borderFocus: string;
911
+ borderDisabled: string;
912
+ rippleColor: string;
913
+ colorPrimary: string;
914
+ colorHoverPrimary: string;
915
+ colorPressedPrimary: string;
916
+ colorFocusPrimary: string;
917
+ colorDisabledPrimary: string;
918
+ textColorPrimary: string;
919
+ textColorHoverPrimary: string;
920
+ textColorPressedPrimary: string;
921
+ textColorFocusPrimary: string;
922
+ textColorDisabledPrimary: string;
923
+ textColorTextPrimary: string;
924
+ textColorTextHoverPrimary: string;
925
+ textColorTextPressedPrimary: string;
926
+ textColorTextFocusPrimary: string;
927
+ textColorTextDisabledPrimary: string;
928
+ textColorGhostPrimary: string;
929
+ textColorGhostHoverPrimary: string;
930
+ textColorGhostPressedPrimary: string;
931
+ textColorGhostFocusPrimary: string;
932
+ textColorGhostDisabledPrimary: string;
933
+ borderPrimary: string;
934
+ borderHoverPrimary: string;
935
+ borderPressedPrimary: string;
936
+ borderFocusPrimary: string;
937
+ borderDisabledPrimary: string;
938
+ rippleColorPrimary: string;
939
+ colorInfo: string;
940
+ colorHoverInfo: string;
941
+ colorPressedInfo: string;
942
+ colorFocusInfo: string;
943
+ colorDisabledInfo: string;
944
+ textColorInfo: string;
945
+ textColorHoverInfo: string;
946
+ textColorPressedInfo: string;
947
+ textColorFocusInfo: string;
948
+ textColorDisabledInfo: string;
949
+ textColorTextInfo: string;
950
+ textColorTextHoverInfo: string;
951
+ textColorTextPressedInfo: string;
952
+ textColorTextFocusInfo: string;
953
+ textColorTextDisabledInfo: string;
954
+ textColorGhostInfo: string;
955
+ textColorGhostHoverInfo: string;
956
+ textColorGhostPressedInfo: string;
957
+ textColorGhostFocusInfo: string;
958
+ textColorGhostDisabledInfo: string;
959
+ borderInfo: string;
960
+ borderHoverInfo: string;
961
+ borderPressedInfo: string;
962
+ borderFocusInfo: string;
963
+ borderDisabledInfo: string;
964
+ rippleColorInfo: string;
965
+ colorSuccess: string;
966
+ colorHoverSuccess: string;
967
+ colorPressedSuccess: string;
968
+ colorFocusSuccess: string;
969
+ colorDisabledSuccess: string;
970
+ textColorSuccess: string;
971
+ textColorHoverSuccess: string;
972
+ textColorPressedSuccess: string;
973
+ textColorFocusSuccess: string;
974
+ textColorDisabledSuccess: string;
975
+ textColorTextSuccess: string;
976
+ textColorTextHoverSuccess: string;
977
+ textColorTextPressedSuccess: string;
978
+ textColorTextFocusSuccess: string;
979
+ textColorTextDisabledSuccess: string;
980
+ textColorGhostSuccess: string;
981
+ textColorGhostHoverSuccess: string;
982
+ textColorGhostPressedSuccess: string;
983
+ textColorGhostFocusSuccess: string;
984
+ textColorGhostDisabledSuccess: string;
985
+ borderSuccess: string;
986
+ borderHoverSuccess: string;
987
+ borderPressedSuccess: string;
988
+ borderFocusSuccess: string;
989
+ borderDisabledSuccess: string;
990
+ rippleColorSuccess: string;
991
+ colorWarning: string;
992
+ colorHoverWarning: string;
993
+ colorPressedWarning: string;
994
+ colorFocusWarning: string;
995
+ colorDisabledWarning: string;
996
+ textColorWarning: string;
997
+ textColorHoverWarning: string;
998
+ textColorPressedWarning: string;
999
+ textColorFocusWarning: string;
1000
+ textColorDisabledWarning: string;
1001
+ textColorTextWarning: string;
1002
+ textColorTextHoverWarning: string;
1003
+ textColorTextPressedWarning: string;
1004
+ textColorTextFocusWarning: string;
1005
+ textColorTextDisabledWarning: string;
1006
+ textColorGhostWarning: string;
1007
+ textColorGhostHoverWarning: string;
1008
+ textColorGhostPressedWarning: string;
1009
+ textColorGhostFocusWarning: string;
1010
+ textColorGhostDisabledWarning: string;
1011
+ borderWarning: string;
1012
+ borderHoverWarning: string;
1013
+ borderPressedWarning: string;
1014
+ borderFocusWarning: string;
1015
+ borderDisabledWarning: string;
1016
+ rippleColorWarning: string;
1017
+ colorError: string;
1018
+ colorHoverError: string;
1019
+ colorPressedError: string;
1020
+ colorFocusError: string;
1021
+ colorDisabledError: string;
1022
+ textColorError: string;
1023
+ textColorHoverError: string;
1024
+ textColorPressedError: string;
1025
+ textColorFocusError: string;
1026
+ textColorDisabledError: string;
1027
+ textColorTextError: string;
1028
+ textColorTextHoverError: string;
1029
+ textColorTextPressedError: string;
1030
+ textColorTextFocusError: string;
1031
+ textColorTextDisabledError: string;
1032
+ textColorGhostError: string;
1033
+ textColorGhostHoverError: string;
1034
+ textColorGhostPressedError: string;
1035
+ textColorGhostFocusError: string;
1036
+ textColorGhostDisabledError: string;
1037
+ borderError: string;
1038
+ borderHoverError: string;
1039
+ borderPressedError: string;
1040
+ borderFocusError: string;
1041
+ borderDisabledError: string;
1042
+ rippleColorError: string;
1043
+ waveOpacity: string;
1044
+ fontWeight: string;
1045
+ fontWeightStrong: string;
1046
+ paddingTiny: string;
1047
+ paddingSmall: string;
1048
+ paddingMedium: string;
1049
+ paddingLarge: string;
1050
+ paddingRoundTiny: string;
1051
+ paddingRoundSmall: string;
1052
+ paddingRoundMedium: string;
1053
+ paddingRoundLarge: string;
1054
+ iconMarginTiny: string;
1055
+ iconMarginSmall: string;
1056
+ iconMarginMedium: string;
1057
+ iconMarginLarge: string;
1058
+ iconSizeTiny: string;
1059
+ iconSizeSmall: string;
1060
+ iconSizeMedium: string;
1061
+ iconSizeLarge: string;
1062
+ rippleDuration: string;
1063
+ }, any>>>;
1064
+ }, {
1065
+ selfElRef: import("vue").Ref<HTMLElement | null>;
1066
+ waveElRef: import("vue").Ref<{
1067
+ play: () => void;
1068
+ } | null>;
1069
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1070
+ mergedFocusable: import("vue").ComputedRef<boolean>;
1071
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
1072
+ showBorder: import("vue").ComputedRef<boolean>;
1073
+ enterPressed: import("vue").Ref<boolean>;
1074
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1075
+ handleMousedown: (e: MouseEvent) => void;
1076
+ handleKeydown: (e: KeyboardEvent) => void;
1077
+ handleBlur: () => void;
1078
+ handleKeyup: (e: KeyboardEvent) => void;
1079
+ handleClick: (e: MouseEvent) => void;
1080
+ customColorCssVars: import("vue").ComputedRef<{
1081
+ '--n-border-color': string;
1082
+ '--n-border-color-hover': string;
1083
+ '--n-border-color-pressed': string;
1084
+ '--n-border-color-focus': string;
1085
+ '--n-border-color-disabled': string;
1086
+ } | null>;
1087
+ cssVars: import("vue").ComputedRef<{
1088
+ '--n-width': string;
1089
+ '--n-height': string;
1090
+ '--n-font-size': string;
1091
+ '--n-padding': string;
1092
+ '--n-icon-size': string;
1093
+ '--n-icon-margin': string;
1094
+ '--n-border-radius': string;
1095
+ '--n-border': string;
1096
+ '--n-border-hover': string;
1097
+ '--n-border-pressed': string;
1098
+ '--n-border-focus': string;
1099
+ '--n-border-disabled': string;
1100
+ '--n-color': string;
1101
+ '--n-color-hover': string;
1102
+ '--n-color-pressed': string;
1103
+ '--n-color-focus': string;
1104
+ '--n-color-disabled': string;
1105
+ '--n-ripple-color': string;
1106
+ '--n-text-color': string;
1107
+ '--n-text-color-hover': string;
1108
+ '--n-text-color-pressed': string;
1109
+ '--n-text-color-focus': string;
1110
+ '--n-text-color-disabled': string;
1111
+ 'font-weight': string;
1112
+ '--n-bezier': string;
1113
+ '--n-bezier-ease-out': string;
1114
+ '--n-ripple-duration': string;
1115
+ '--n-opacity-disabled': string;
1116
+ '--n-wave-opacity': string;
1117
+ }> | undefined;
1118
+ themeClass: import("vue").Ref<string> | undefined;
1119
+ onRender: (() => void) | undefined;
1120
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1121
+ readonly color: StringConstructor;
1122
+ readonly textColor: StringConstructor;
1123
+ readonly text: BooleanConstructor;
1124
+ readonly block: BooleanConstructor;
1125
+ readonly loading: BooleanConstructor;
1126
+ readonly disabled: BooleanConstructor;
1127
+ readonly circle: BooleanConstructor;
1128
+ readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
1129
+ readonly ghost: BooleanConstructor;
1130
+ readonly round: BooleanConstructor;
1131
+ readonly secondary: BooleanConstructor;
1132
+ readonly tertiary: BooleanConstructor;
1133
+ readonly quaternary: BooleanConstructor;
1134
+ readonly strong: BooleanConstructor;
1135
+ readonly focusable: {
1136
+ readonly type: BooleanConstructor;
1137
+ readonly default: true;
1138
+ };
1139
+ readonly keyboard: {
1140
+ readonly type: BooleanConstructor;
1141
+ readonly default: true;
1142
+ };
1143
+ readonly tag: {
1144
+ readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
1145
+ readonly default: "button";
1146
+ };
1147
+ readonly type: {
1148
+ readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
1149
+ readonly default: "default";
1150
+ };
1151
+ readonly dashed: BooleanConstructor;
1152
+ readonly iconPlacement: {
1153
+ readonly type: import("vue").PropType<"left" | "right">;
1154
+ readonly default: "left";
1155
+ };
1156
+ readonly attrType: {
1157
+ readonly type: import("vue").PropType<"button" | "reset" | "submit">;
1158
+ readonly default: "button";
1159
+ };
1160
+ readonly bordered: {
1161
+ readonly type: BooleanConstructor;
1162
+ readonly default: true;
1163
+ };
1164
+ readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1165
+ readonly nativeFocusBehavior: {
1166
+ readonly type: BooleanConstructor;
1167
+ readonly default: boolean;
1168
+ };
1169
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1170
+ heightTiny: string;
1171
+ heightSmall: string;
1172
+ heightMedium: string;
1173
+ heightLarge: string;
1174
+ borderRadiusTiny: string;
1175
+ borderRadiusSmall: string;
1176
+ borderRadiusMedium: string;
1177
+ borderRadiusLarge: string;
1178
+ fontSizeTiny: string;
1179
+ fontSizeSmall: string;
1180
+ fontSizeMedium: string;
1181
+ fontSizeLarge: string;
1182
+ opacityDisabled: string;
1183
+ colorOpacitySecondary: string;
1184
+ colorOpacitySecondaryHover: string;
1185
+ colorOpacitySecondaryPressed: string;
1186
+ colorSecondary: string;
1187
+ colorSecondaryHover: string;
1188
+ colorSecondaryPressed: string;
1189
+ colorTertiary: string;
1190
+ colorTertiaryHover: string;
1191
+ colorTertiaryPressed: string;
1192
+ colorQuaternary: string;
1193
+ colorQuaternaryHover: string;
1194
+ colorQuaternaryPressed: string;
1195
+ color: string;
1196
+ colorHover: string;
1197
+ colorPressed: string;
1198
+ colorFocus: string;
1199
+ colorDisabled: string;
1200
+ textColor: string;
1201
+ textColorTertiary: string;
1202
+ textColorHover: string;
1203
+ textColorPressed: string;
1204
+ textColorFocus: string;
1205
+ textColorDisabled: string;
1206
+ textColorText: string;
1207
+ textColorTextHover: string;
1208
+ textColorTextPressed: string;
1209
+ textColorTextFocus: string;
1210
+ textColorTextDisabled: string;
1211
+ textColorGhost: string;
1212
+ textColorGhostHover: string;
1213
+ textColorGhostPressed: string;
1214
+ textColorGhostFocus: string;
1215
+ textColorGhostDisabled: string;
1216
+ border: string;
1217
+ borderHover: string;
1218
+ borderPressed: string;
1219
+ borderFocus: string;
1220
+ borderDisabled: string;
1221
+ rippleColor: string;
1222
+ colorPrimary: string;
1223
+ colorHoverPrimary: string;
1224
+ colorPressedPrimary: string;
1225
+ colorFocusPrimary: string;
1226
+ colorDisabledPrimary: string;
1227
+ textColorPrimary: string;
1228
+ textColorHoverPrimary: string;
1229
+ textColorPressedPrimary: string;
1230
+ textColorFocusPrimary: string;
1231
+ textColorDisabledPrimary: string;
1232
+ textColorTextPrimary: string;
1233
+ textColorTextHoverPrimary: string;
1234
+ textColorTextPressedPrimary: string;
1235
+ textColorTextFocusPrimary: string;
1236
+ textColorTextDisabledPrimary: string;
1237
+ textColorGhostPrimary: string;
1238
+ textColorGhostHoverPrimary: string;
1239
+ textColorGhostPressedPrimary: string;
1240
+ textColorGhostFocusPrimary: string;
1241
+ textColorGhostDisabledPrimary: string;
1242
+ borderPrimary: string;
1243
+ borderHoverPrimary: string;
1244
+ borderPressedPrimary: string;
1245
+ borderFocusPrimary: string;
1246
+ borderDisabledPrimary: string;
1247
+ rippleColorPrimary: string;
1248
+ colorInfo: string;
1249
+ colorHoverInfo: string;
1250
+ colorPressedInfo: string;
1251
+ colorFocusInfo: string;
1252
+ colorDisabledInfo: string;
1253
+ textColorInfo: string;
1254
+ textColorHoverInfo: string;
1255
+ textColorPressedInfo: string;
1256
+ textColorFocusInfo: string;
1257
+ textColorDisabledInfo: string;
1258
+ textColorTextInfo: string;
1259
+ textColorTextHoverInfo: string;
1260
+ textColorTextPressedInfo: string;
1261
+ textColorTextFocusInfo: string;
1262
+ textColorTextDisabledInfo: string;
1263
+ textColorGhostInfo: string;
1264
+ textColorGhostHoverInfo: string;
1265
+ textColorGhostPressedInfo: string;
1266
+ textColorGhostFocusInfo: string;
1267
+ textColorGhostDisabledInfo: string;
1268
+ borderInfo: string;
1269
+ borderHoverInfo: string;
1270
+ borderPressedInfo: string;
1271
+ borderFocusInfo: string;
1272
+ borderDisabledInfo: string;
1273
+ rippleColorInfo: string;
1274
+ colorSuccess: string;
1275
+ colorHoverSuccess: string;
1276
+ colorPressedSuccess: string;
1277
+ colorFocusSuccess: string;
1278
+ colorDisabledSuccess: string;
1279
+ textColorSuccess: string;
1280
+ textColorHoverSuccess: string;
1281
+ textColorPressedSuccess: string;
1282
+ textColorFocusSuccess: string;
1283
+ textColorDisabledSuccess: string;
1284
+ textColorTextSuccess: string;
1285
+ textColorTextHoverSuccess: string;
1286
+ textColorTextPressedSuccess: string;
1287
+ textColorTextFocusSuccess: string;
1288
+ textColorTextDisabledSuccess: string;
1289
+ textColorGhostSuccess: string;
1290
+ textColorGhostHoverSuccess: string;
1291
+ textColorGhostPressedSuccess: string;
1292
+ textColorGhostFocusSuccess: string;
1293
+ textColorGhostDisabledSuccess: string;
1294
+ borderSuccess: string;
1295
+ borderHoverSuccess: string;
1296
+ borderPressedSuccess: string;
1297
+ borderFocusSuccess: string;
1298
+ borderDisabledSuccess: string;
1299
+ rippleColorSuccess: string;
1300
+ colorWarning: string;
1301
+ colorHoverWarning: string;
1302
+ colorPressedWarning: string;
1303
+ colorFocusWarning: string;
1304
+ colorDisabledWarning: string;
1305
+ textColorWarning: string;
1306
+ textColorHoverWarning: string;
1307
+ textColorPressedWarning: string;
1308
+ textColorFocusWarning: string;
1309
+ textColorDisabledWarning: string;
1310
+ textColorTextWarning: string;
1311
+ textColorTextHoverWarning: string;
1312
+ textColorTextPressedWarning: string;
1313
+ textColorTextFocusWarning: string;
1314
+ textColorTextDisabledWarning: string;
1315
+ textColorGhostWarning: string;
1316
+ textColorGhostHoverWarning: string;
1317
+ textColorGhostPressedWarning: string;
1318
+ textColorGhostFocusWarning: string;
1319
+ textColorGhostDisabledWarning: string;
1320
+ borderWarning: string;
1321
+ borderHoverWarning: string;
1322
+ borderPressedWarning: string;
1323
+ borderFocusWarning: string;
1324
+ borderDisabledWarning: string;
1325
+ rippleColorWarning: string;
1326
+ colorError: string;
1327
+ colorHoverError: string;
1328
+ colorPressedError: string;
1329
+ colorFocusError: string;
1330
+ colorDisabledError: string;
1331
+ textColorError: string;
1332
+ textColorHoverError: string;
1333
+ textColorPressedError: string;
1334
+ textColorFocusError: string;
1335
+ textColorDisabledError: string;
1336
+ textColorTextError: string;
1337
+ textColorTextHoverError: string;
1338
+ textColorTextPressedError: string;
1339
+ textColorTextFocusError: string;
1340
+ textColorTextDisabledError: string;
1341
+ textColorGhostError: string;
1342
+ textColorGhostHoverError: string;
1343
+ textColorGhostPressedError: string;
1344
+ textColorGhostFocusError: string;
1345
+ textColorGhostDisabledError: string;
1346
+ borderError: string;
1347
+ borderHoverError: string;
1348
+ borderPressedError: string;
1349
+ borderFocusError: string;
1350
+ borderDisabledError: string;
1351
+ rippleColorError: string;
1352
+ waveOpacity: string;
1353
+ fontWeight: string;
1354
+ fontWeightStrong: string;
1355
+ paddingTiny: string;
1356
+ paddingSmall: string;
1357
+ paddingMedium: string;
1358
+ paddingLarge: string;
1359
+ paddingRoundTiny: string;
1360
+ paddingRoundSmall: string;
1361
+ paddingRoundMedium: string;
1362
+ paddingRoundLarge: string;
1363
+ iconMarginTiny: string;
1364
+ iconMarginSmall: string;
1365
+ iconMarginMedium: string;
1366
+ iconMarginLarge: string;
1367
+ iconSizeTiny: string;
1368
+ iconSizeSmall: string;
1369
+ iconSizeMedium: string;
1370
+ iconSizeLarge: string;
1371
+ rippleDuration: string;
1372
+ }, any>>;
1373
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1374
+ heightTiny: string;
1375
+ heightSmall: string;
1376
+ heightMedium: string;
1377
+ heightLarge: string;
1378
+ borderRadiusTiny: string;
1379
+ borderRadiusSmall: string;
1380
+ borderRadiusMedium: string;
1381
+ borderRadiusLarge: string;
1382
+ fontSizeTiny: string;
1383
+ fontSizeSmall: string;
1384
+ fontSizeMedium: string;
1385
+ fontSizeLarge: string;
1386
+ opacityDisabled: string;
1387
+ colorOpacitySecondary: string;
1388
+ colorOpacitySecondaryHover: string;
1389
+ colorOpacitySecondaryPressed: string;
1390
+ colorSecondary: string;
1391
+ colorSecondaryHover: string;
1392
+ colorSecondaryPressed: string;
1393
+ colorTertiary: string;
1394
+ colorTertiaryHover: string;
1395
+ colorTertiaryPressed: string;
1396
+ colorQuaternary: string;
1397
+ colorQuaternaryHover: string;
1398
+ colorQuaternaryPressed: string;
1399
+ color: string;
1400
+ colorHover: string;
1401
+ colorPressed: string;
1402
+ colorFocus: string;
1403
+ colorDisabled: string;
1404
+ textColor: string;
1405
+ textColorTertiary: string;
1406
+ textColorHover: string;
1407
+ textColorPressed: string;
1408
+ textColorFocus: string;
1409
+ textColorDisabled: string;
1410
+ textColorText: string;
1411
+ textColorTextHover: string;
1412
+ textColorTextPressed: string;
1413
+ textColorTextFocus: string;
1414
+ textColorTextDisabled: string;
1415
+ textColorGhost: string;
1416
+ textColorGhostHover: string;
1417
+ textColorGhostPressed: string;
1418
+ textColorGhostFocus: string;
1419
+ textColorGhostDisabled: string;
1420
+ border: string;
1421
+ borderHover: string;
1422
+ borderPressed: string;
1423
+ borderFocus: string;
1424
+ borderDisabled: string;
1425
+ rippleColor: string;
1426
+ colorPrimary: string;
1427
+ colorHoverPrimary: string;
1428
+ colorPressedPrimary: string;
1429
+ colorFocusPrimary: string;
1430
+ colorDisabledPrimary: string;
1431
+ textColorPrimary: string;
1432
+ textColorHoverPrimary: string;
1433
+ textColorPressedPrimary: string;
1434
+ textColorFocusPrimary: string;
1435
+ textColorDisabledPrimary: string;
1436
+ textColorTextPrimary: string;
1437
+ textColorTextHoverPrimary: string;
1438
+ textColorTextPressedPrimary: string;
1439
+ textColorTextFocusPrimary: string;
1440
+ textColorTextDisabledPrimary: string;
1441
+ textColorGhostPrimary: string;
1442
+ textColorGhostHoverPrimary: string;
1443
+ textColorGhostPressedPrimary: string;
1444
+ textColorGhostFocusPrimary: string;
1445
+ textColorGhostDisabledPrimary: string;
1446
+ borderPrimary: string;
1447
+ borderHoverPrimary: string;
1448
+ borderPressedPrimary: string;
1449
+ borderFocusPrimary: string;
1450
+ borderDisabledPrimary: string;
1451
+ rippleColorPrimary: string;
1452
+ colorInfo: string;
1453
+ colorHoverInfo: string;
1454
+ colorPressedInfo: string;
1455
+ colorFocusInfo: string;
1456
+ colorDisabledInfo: string;
1457
+ textColorInfo: string;
1458
+ textColorHoverInfo: string;
1459
+ textColorPressedInfo: string;
1460
+ textColorFocusInfo: string;
1461
+ textColorDisabledInfo: string;
1462
+ textColorTextInfo: string;
1463
+ textColorTextHoverInfo: string;
1464
+ textColorTextPressedInfo: string;
1465
+ textColorTextFocusInfo: string;
1466
+ textColorTextDisabledInfo: string;
1467
+ textColorGhostInfo: string;
1468
+ textColorGhostHoverInfo: string;
1469
+ textColorGhostPressedInfo: string;
1470
+ textColorGhostFocusInfo: string;
1471
+ textColorGhostDisabledInfo: string;
1472
+ borderInfo: string;
1473
+ borderHoverInfo: string;
1474
+ borderPressedInfo: string;
1475
+ borderFocusInfo: string;
1476
+ borderDisabledInfo: string;
1477
+ rippleColorInfo: string;
1478
+ colorSuccess: string;
1479
+ colorHoverSuccess: string;
1480
+ colorPressedSuccess: string;
1481
+ colorFocusSuccess: string;
1482
+ colorDisabledSuccess: string;
1483
+ textColorSuccess: string;
1484
+ textColorHoverSuccess: string;
1485
+ textColorPressedSuccess: string;
1486
+ textColorFocusSuccess: string;
1487
+ textColorDisabledSuccess: string;
1488
+ textColorTextSuccess: string;
1489
+ textColorTextHoverSuccess: string;
1490
+ textColorTextPressedSuccess: string;
1491
+ textColorTextFocusSuccess: string;
1492
+ textColorTextDisabledSuccess: string;
1493
+ textColorGhostSuccess: string;
1494
+ textColorGhostHoverSuccess: string;
1495
+ textColorGhostPressedSuccess: string;
1496
+ textColorGhostFocusSuccess: string;
1497
+ textColorGhostDisabledSuccess: string;
1498
+ borderSuccess: string;
1499
+ borderHoverSuccess: string;
1500
+ borderPressedSuccess: string;
1501
+ borderFocusSuccess: string;
1502
+ borderDisabledSuccess: string;
1503
+ rippleColorSuccess: string;
1504
+ colorWarning: string;
1505
+ colorHoverWarning: string;
1506
+ colorPressedWarning: string;
1507
+ colorFocusWarning: string;
1508
+ colorDisabledWarning: string;
1509
+ textColorWarning: string;
1510
+ textColorHoverWarning: string;
1511
+ textColorPressedWarning: string;
1512
+ textColorFocusWarning: string;
1513
+ textColorDisabledWarning: string;
1514
+ textColorTextWarning: string;
1515
+ textColorTextHoverWarning: string;
1516
+ textColorTextPressedWarning: string;
1517
+ textColorTextFocusWarning: string;
1518
+ textColorTextDisabledWarning: string;
1519
+ textColorGhostWarning: string;
1520
+ textColorGhostHoverWarning: string;
1521
+ textColorGhostPressedWarning: string;
1522
+ textColorGhostFocusWarning: string;
1523
+ textColorGhostDisabledWarning: string;
1524
+ borderWarning: string;
1525
+ borderHoverWarning: string;
1526
+ borderPressedWarning: string;
1527
+ borderFocusWarning: string;
1528
+ borderDisabledWarning: string;
1529
+ rippleColorWarning: string;
1530
+ colorError: string;
1531
+ colorHoverError: string;
1532
+ colorPressedError: string;
1533
+ colorFocusError: string;
1534
+ colorDisabledError: string;
1535
+ textColorError: string;
1536
+ textColorHoverError: string;
1537
+ textColorPressedError: string;
1538
+ textColorFocusError: string;
1539
+ textColorDisabledError: string;
1540
+ textColorTextError: string;
1541
+ textColorTextHoverError: string;
1542
+ textColorTextPressedError: string;
1543
+ textColorTextFocusError: string;
1544
+ textColorTextDisabledError: string;
1545
+ textColorGhostError: string;
1546
+ textColorGhostHoverError: string;
1547
+ textColorGhostPressedError: string;
1548
+ textColorGhostFocusError: string;
1549
+ textColorGhostDisabledError: string;
1550
+ borderError: string;
1551
+ borderHoverError: string;
1552
+ borderPressedError: string;
1553
+ borderFocusError: string;
1554
+ borderDisabledError: string;
1555
+ rippleColorError: string;
1556
+ waveOpacity: string;
1557
+ fontWeight: string;
1558
+ fontWeightStrong: string;
1559
+ paddingTiny: string;
1560
+ paddingSmall: string;
1561
+ paddingMedium: string;
1562
+ paddingLarge: string;
1563
+ paddingRoundTiny: string;
1564
+ paddingRoundSmall: string;
1565
+ paddingRoundMedium: string;
1566
+ paddingRoundLarge: string;
1567
+ iconMarginTiny: string;
1568
+ iconMarginSmall: string;
1569
+ iconMarginMedium: string;
1570
+ iconMarginLarge: string;
1571
+ iconSizeTiny: string;
1572
+ iconSizeSmall: string;
1573
+ iconSizeMedium: string;
1574
+ iconSizeLarge: string;
1575
+ rippleDuration: string;
1576
+ }, any>>>;
1577
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1578
+ heightTiny: string;
1579
+ heightSmall: string;
1580
+ heightMedium: string;
1581
+ heightLarge: string;
1582
+ borderRadiusTiny: string;
1583
+ borderRadiusSmall: string;
1584
+ borderRadiusMedium: string;
1585
+ borderRadiusLarge: string;
1586
+ fontSizeTiny: string;
1587
+ fontSizeSmall: string;
1588
+ fontSizeMedium: string;
1589
+ fontSizeLarge: string;
1590
+ opacityDisabled: string;
1591
+ colorOpacitySecondary: string;
1592
+ colorOpacitySecondaryHover: string;
1593
+ colorOpacitySecondaryPressed: string;
1594
+ colorSecondary: string;
1595
+ colorSecondaryHover: string;
1596
+ colorSecondaryPressed: string;
1597
+ colorTertiary: string;
1598
+ colorTertiaryHover: string;
1599
+ colorTertiaryPressed: string;
1600
+ colorQuaternary: string;
1601
+ colorQuaternaryHover: string;
1602
+ colorQuaternaryPressed: string;
1603
+ color: string;
1604
+ colorHover: string;
1605
+ colorPressed: string;
1606
+ colorFocus: string;
1607
+ colorDisabled: string;
1608
+ textColor: string;
1609
+ textColorTertiary: string;
1610
+ textColorHover: string;
1611
+ textColorPressed: string;
1612
+ textColorFocus: string;
1613
+ textColorDisabled: string;
1614
+ textColorText: string;
1615
+ textColorTextHover: string;
1616
+ textColorTextPressed: string;
1617
+ textColorTextFocus: string;
1618
+ textColorTextDisabled: string;
1619
+ textColorGhost: string;
1620
+ textColorGhostHover: string;
1621
+ textColorGhostPressed: string;
1622
+ textColorGhostFocus: string;
1623
+ textColorGhostDisabled: string;
1624
+ border: string;
1625
+ borderHover: string;
1626
+ borderPressed: string;
1627
+ borderFocus: string;
1628
+ borderDisabled: string;
1629
+ rippleColor: string;
1630
+ colorPrimary: string;
1631
+ colorHoverPrimary: string;
1632
+ colorPressedPrimary: string;
1633
+ colorFocusPrimary: string;
1634
+ colorDisabledPrimary: string;
1635
+ textColorPrimary: string;
1636
+ textColorHoverPrimary: string;
1637
+ textColorPressedPrimary: string;
1638
+ textColorFocusPrimary: string;
1639
+ textColorDisabledPrimary: string;
1640
+ textColorTextPrimary: string;
1641
+ textColorTextHoverPrimary: string;
1642
+ textColorTextPressedPrimary: string;
1643
+ textColorTextFocusPrimary: string;
1644
+ textColorTextDisabledPrimary: string;
1645
+ textColorGhostPrimary: string;
1646
+ textColorGhostHoverPrimary: string;
1647
+ textColorGhostPressedPrimary: string;
1648
+ textColorGhostFocusPrimary: string;
1649
+ textColorGhostDisabledPrimary: string;
1650
+ borderPrimary: string;
1651
+ borderHoverPrimary: string;
1652
+ borderPressedPrimary: string;
1653
+ borderFocusPrimary: string;
1654
+ borderDisabledPrimary: string;
1655
+ rippleColorPrimary: string;
1656
+ colorInfo: string;
1657
+ colorHoverInfo: string;
1658
+ colorPressedInfo: string;
1659
+ colorFocusInfo: string;
1660
+ colorDisabledInfo: string;
1661
+ textColorInfo: string;
1662
+ textColorHoverInfo: string;
1663
+ textColorPressedInfo: string;
1664
+ textColorFocusInfo: string;
1665
+ textColorDisabledInfo: string;
1666
+ textColorTextInfo: string;
1667
+ textColorTextHoverInfo: string;
1668
+ textColorTextPressedInfo: string;
1669
+ textColorTextFocusInfo: string;
1670
+ textColorTextDisabledInfo: string;
1671
+ textColorGhostInfo: string;
1672
+ textColorGhostHoverInfo: string;
1673
+ textColorGhostPressedInfo: string;
1674
+ textColorGhostFocusInfo: string;
1675
+ textColorGhostDisabledInfo: string;
1676
+ borderInfo: string;
1677
+ borderHoverInfo: string;
1678
+ borderPressedInfo: string;
1679
+ borderFocusInfo: string;
1680
+ borderDisabledInfo: string;
1681
+ rippleColorInfo: string;
1682
+ colorSuccess: string;
1683
+ colorHoverSuccess: string;
1684
+ colorPressedSuccess: string;
1685
+ colorFocusSuccess: string;
1686
+ colorDisabledSuccess: string;
1687
+ textColorSuccess: string;
1688
+ textColorHoverSuccess: string;
1689
+ textColorPressedSuccess: string;
1690
+ textColorFocusSuccess: string;
1691
+ textColorDisabledSuccess: string;
1692
+ textColorTextSuccess: string;
1693
+ textColorTextHoverSuccess: string;
1694
+ textColorTextPressedSuccess: string;
1695
+ textColorTextFocusSuccess: string;
1696
+ textColorTextDisabledSuccess: string;
1697
+ textColorGhostSuccess: string;
1698
+ textColorGhostHoverSuccess: string;
1699
+ textColorGhostPressedSuccess: string;
1700
+ textColorGhostFocusSuccess: string;
1701
+ textColorGhostDisabledSuccess: string;
1702
+ borderSuccess: string;
1703
+ borderHoverSuccess: string;
1704
+ borderPressedSuccess: string;
1705
+ borderFocusSuccess: string;
1706
+ borderDisabledSuccess: string;
1707
+ rippleColorSuccess: string;
1708
+ colorWarning: string;
1709
+ colorHoverWarning: string;
1710
+ colorPressedWarning: string;
1711
+ colorFocusWarning: string;
1712
+ colorDisabledWarning: string;
1713
+ textColorWarning: string;
1714
+ textColorHoverWarning: string;
1715
+ textColorPressedWarning: string;
1716
+ textColorFocusWarning: string;
1717
+ textColorDisabledWarning: string;
1718
+ textColorTextWarning: string;
1719
+ textColorTextHoverWarning: string;
1720
+ textColorTextPressedWarning: string;
1721
+ textColorTextFocusWarning: string;
1722
+ textColorTextDisabledWarning: string;
1723
+ textColorGhostWarning: string;
1724
+ textColorGhostHoverWarning: string;
1725
+ textColorGhostPressedWarning: string;
1726
+ textColorGhostFocusWarning: string;
1727
+ textColorGhostDisabledWarning: string;
1728
+ borderWarning: string;
1729
+ borderHoverWarning: string;
1730
+ borderPressedWarning: string;
1731
+ borderFocusWarning: string;
1732
+ borderDisabledWarning: string;
1733
+ rippleColorWarning: string;
1734
+ colorError: string;
1735
+ colorHoverError: string;
1736
+ colorPressedError: string;
1737
+ colorFocusError: string;
1738
+ colorDisabledError: string;
1739
+ textColorError: string;
1740
+ textColorHoverError: string;
1741
+ textColorPressedError: string;
1742
+ textColorFocusError: string;
1743
+ textColorDisabledError: string;
1744
+ textColorTextError: string;
1745
+ textColorTextHoverError: string;
1746
+ textColorTextPressedError: string;
1747
+ textColorTextFocusError: string;
1748
+ textColorTextDisabledError: string;
1749
+ textColorGhostError: string;
1750
+ textColorGhostHoverError: string;
1751
+ textColorGhostPressedError: string;
1752
+ textColorGhostFocusError: string;
1753
+ textColorGhostDisabledError: string;
1754
+ borderError: string;
1755
+ borderHoverError: string;
1756
+ borderPressedError: string;
1757
+ borderFocusError: string;
1758
+ borderDisabledError: string;
1759
+ rippleColorError: string;
1760
+ waveOpacity: string;
1761
+ fontWeight: string;
1762
+ fontWeightStrong: string;
1763
+ paddingTiny: string;
1764
+ paddingSmall: string;
1765
+ paddingMedium: string;
1766
+ paddingLarge: string;
1767
+ paddingRoundTiny: string;
1768
+ paddingRoundSmall: string;
1769
+ paddingRoundMedium: string;
1770
+ paddingRoundLarge: string;
1771
+ iconMarginTiny: string;
1772
+ iconMarginSmall: string;
1773
+ iconMarginMedium: string;
1774
+ iconMarginLarge: string;
1775
+ iconSizeTiny: string;
1776
+ iconSizeSmall: string;
1777
+ iconSizeMedium: string;
1778
+ iconSizeLarge: string;
1779
+ rippleDuration: string;
1780
+ }, any>>>;
1781
+ }>>, {
1782
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1783
+ readonly tag: keyof HTMLElementTagNameMap;
1784
+ readonly block: boolean;
1785
+ readonly round: boolean;
1786
+ readonly dashed: boolean;
1787
+ readonly text: boolean;
1788
+ readonly circle: boolean;
1789
+ readonly disabled: boolean;
1790
+ readonly focusable: boolean;
1791
+ readonly strong: boolean;
1792
+ readonly loading: boolean;
1793
+ readonly bordered: boolean;
1794
+ readonly tertiary: boolean;
1795
+ readonly ghost: boolean;
1796
+ readonly keyboard: boolean;
1797
+ readonly secondary: boolean;
1798
+ readonly quaternary: boolean;
1799
+ readonly iconPlacement: "left" | "right";
1800
+ readonly attrType: "button" | "reset" | "submit";
1801
+ readonly nativeFocusBehavior: boolean;
1802
+ }>;
1803
+ NSelect: import("vue").DefineComponent<{
1804
+ readonly to: {
1805
+ type: import("vue").PropType<string | boolean | HTMLElement>;
1806
+ default: undefined;
1807
+ };
1808
+ readonly bordered: {
1809
+ readonly type: import("vue").PropType<boolean | undefined>;
1810
+ readonly default: undefined;
1811
+ };
1812
+ readonly clearable: BooleanConstructor;
1813
+ readonly clearFilterAfterSelect: {
1814
+ readonly type: BooleanConstructor;
1815
+ readonly default: true;
1816
+ };
1817
+ readonly options: {
1818
+ readonly type: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
1819
+ readonly default: () => never[];
1820
+ };
1821
+ readonly defaultValue: {
1822
+ readonly type: import("vue").PropType<import("naive-ui/es/select/src/interface").Value | null>;
1823
+ readonly default: null;
1824
+ };
1825
+ readonly value: import("vue").PropType<import("naive-ui/es/select/src/interface").Value | null>;
1826
+ readonly placeholder: StringConstructor;
1827
+ readonly menuProps: import("vue").PropType<import("vue").HTMLAttributes>;
1828
+ readonly multiple: BooleanConstructor;
1829
+ readonly size: import("vue").PropType<import("naive-ui/es/select/src/interface").Size>;
1830
+ readonly filterable: BooleanConstructor;
1831
+ readonly disabled: {
1832
+ readonly type: import("vue").PropType<boolean | undefined>;
1833
+ readonly default: undefined;
1834
+ };
1835
+ readonly remote: BooleanConstructor;
1836
+ readonly loading: BooleanConstructor;
1837
+ readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
1838
+ readonly placement: {
1839
+ readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
1840
+ readonly default: "bottom-start";
1841
+ };
1842
+ readonly widthMode: {
1843
+ readonly type: StringConstructor;
1844
+ readonly default: "trigger";
1845
+ };
1846
+ readonly tag: BooleanConstructor;
1847
+ readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
1848
+ readonly fallbackOption: {
1849
+ readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
1850
+ readonly default: undefined;
1851
+ };
1852
+ readonly show: {
1853
+ readonly type: import("vue").PropType<boolean | undefined>;
1854
+ readonly default: undefined;
1855
+ };
1856
+ readonly showArrow: {
1857
+ readonly type: BooleanConstructor;
1858
+ readonly default: true;
1859
+ };
1860
+ readonly maxTagCount: import("vue").PropType<number | "responsive">;
1861
+ readonly consistentMenuWidth: {
1862
+ readonly type: BooleanConstructor;
1863
+ readonly default: true;
1864
+ };
1865
+ readonly virtualScroll: {
1866
+ readonly type: BooleanConstructor;
1867
+ readonly default: true;
1868
+ };
1869
+ readonly labelField: {
1870
+ readonly type: StringConstructor;
1871
+ readonly default: "label";
1872
+ };
1873
+ readonly valueField: {
1874
+ readonly type: StringConstructor;
1875
+ readonly default: "value";
1876
+ };
1877
+ readonly childrenField: {
1878
+ readonly type: StringConstructor;
1879
+ readonly default: "children";
1880
+ };
1881
+ readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
1882
+ readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
1883
+ readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
1884
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
1885
+ readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
1886
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
1887
+ readonly onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
1888
+ readonly onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void> | undefined>;
1889
+ readonly onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
1890
+ readonly onScroll: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: Event) => void> | undefined>;
1891
+ readonly onSearch: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: string) => void> | undefined>;
1892
+ readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1893
+ readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1894
+ readonly displayDirective: {
1895
+ readonly type: import("vue").PropType<"show" | "if">;
1896
+ readonly default: "show";
1897
+ };
1898
+ readonly resetMenuOnOptionsChange: {
1899
+ readonly type: BooleanConstructor;
1900
+ readonly default: true;
1901
+ };
1902
+ readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1903
+ readonly internalShowCheckmark: {
1904
+ readonly type: BooleanConstructor;
1905
+ readonly default: true;
1906
+ };
1907
+ readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
1908
+ readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
1909
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
1910
+ menuBoxShadow: string;
1911
+ }, {
1912
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
1913
+ fontSizeTiny: string;
1914
+ fontSizeSmall: string;
1915
+ fontSizeMedium: string;
1916
+ fontSizeLarge: string;
1917
+ heightTiny: string;
1918
+ heightSmall: string;
1919
+ heightMedium: string;
1920
+ heightLarge: string;
1921
+ borderRadius: string;
1922
+ textColor: string;
1923
+ textColorDisabled: string;
1924
+ placeholderColor: string;
1925
+ placeholderColorDisabled: string;
1926
+ color: string;
1927
+ colorDisabled: string;
1928
+ colorActive: string;
1929
+ border: string;
1930
+ borderHover: string;
1931
+ borderActive: string;
1932
+ borderFocus: string;
1933
+ boxShadowHover: string;
1934
+ boxShadowActive: string;
1935
+ boxShadowFocus: string;
1936
+ caretColor: string;
1937
+ arrowColor: string;
1938
+ arrowColorDisabled: string;
1939
+ loadingColor: string;
1940
+ borderWarning: string;
1941
+ borderHoverWarning: string;
1942
+ borderActiveWarning: string;
1943
+ borderFocusWarning: string;
1944
+ boxShadowHoverWarning: string;
1945
+ boxShadowActiveWarning: string;
1946
+ boxShadowFocusWarning: string;
1947
+ colorActiveWarning: string;
1948
+ caretColorWarning: string;
1949
+ borderError: string;
1950
+ borderHoverError: string;
1951
+ borderActiveError: string;
1952
+ borderFocusError: string;
1953
+ boxShadowHoverError: string;
1954
+ boxShadowActiveError: string;
1955
+ boxShadowFocusError: string;
1956
+ colorActiveError: string;
1957
+ caretColorError: string;
1958
+ clearColor: string;
1959
+ clearColorHover: string;
1960
+ clearColorPressed: string;
1961
+ paddingSingle: string;
1962
+ paddingMultiple: string;
1963
+ clearSize: string;
1964
+ arrowSize: string;
1965
+ }, {
1966
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1967
+ fontSize: string;
1968
+ borderRadius: string;
1969
+ color: string;
1970
+ dividerColor: string;
1971
+ textColor: string;
1972
+ boxShadow: string;
1973
+ space: string;
1974
+ spaceArrow: string;
1975
+ arrowOffset: string;
1976
+ arrowOffsetVertical: string;
1977
+ arrowHeight: string;
1978
+ padding: string;
1979
+ }, any>;
1980
+ }>;
1981
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
1982
+ optionFontSizeSmall: string;
1983
+ optionFontSizeMedium: string;
1984
+ optionFontSizeLarge: string;
1985
+ optionFontSizeHuge: string;
1986
+ optionHeightSmall: string;
1987
+ optionHeightMedium: string;
1988
+ optionHeightLarge: string;
1989
+ optionHeightHuge: string;
1990
+ borderRadius: string;
1991
+ color: string;
1992
+ groupHeaderTextColor: string;
1993
+ actionDividerColor: string;
1994
+ optionTextColor: string;
1995
+ optionTextColorPressed: string;
1996
+ optionTextColorDisabled: string;
1997
+ optionTextColorActive: string;
1998
+ optionOpacityDisabled: string;
1999
+ optionCheckColor: string;
2000
+ optionColorPending: string;
2001
+ optionColorActive: string;
2002
+ optionColorActivePending: string;
2003
+ actionTextColor: string;
2004
+ loadingColor: string;
2005
+ height: string;
2006
+ paddingSmall: string;
2007
+ paddingMedium: string;
2008
+ paddingLarge: string;
2009
+ paddingHuge: string;
2010
+ optionPaddingSmall: string;
2011
+ optionPaddingMedium: string;
2012
+ optionPaddingLarge: string;
2013
+ optionPaddingHuge: string;
2014
+ loadingSize: string;
2015
+ }, {
2016
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2017
+ color: string;
2018
+ colorHover: string;
2019
+ }, any>;
2020
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2021
+ fontSizeSmall: string;
2022
+ fontSizeMedium: string;
2023
+ fontSizeLarge: string;
2024
+ fontSizeHuge: string;
2025
+ textColor: string;
2026
+ iconColor: string;
2027
+ extraTextColor: string;
2028
+ iconSizeSmall: string;
2029
+ iconSizeMedium: string;
2030
+ iconSizeLarge: string;
2031
+ iconSizeHuge: string;
2032
+ }, any>;
2033
+ }>;
2034
+ }>>;
2035
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
2036
+ menuBoxShadow: string;
2037
+ }, {
2038
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2039
+ fontSizeTiny: string;
2040
+ fontSizeSmall: string;
2041
+ fontSizeMedium: string;
2042
+ fontSizeLarge: string;
2043
+ heightTiny: string;
2044
+ heightSmall: string;
2045
+ heightMedium: string;
2046
+ heightLarge: string;
2047
+ borderRadius: string;
2048
+ textColor: string;
2049
+ textColorDisabled: string;
2050
+ placeholderColor: string;
2051
+ placeholderColorDisabled: string;
2052
+ color: string;
2053
+ colorDisabled: string;
2054
+ colorActive: string;
2055
+ border: string;
2056
+ borderHover: string;
2057
+ borderActive: string;
2058
+ borderFocus: string;
2059
+ boxShadowHover: string;
2060
+ boxShadowActive: string;
2061
+ boxShadowFocus: string;
2062
+ caretColor: string;
2063
+ arrowColor: string;
2064
+ arrowColorDisabled: string;
2065
+ loadingColor: string;
2066
+ borderWarning: string;
2067
+ borderHoverWarning: string;
2068
+ borderActiveWarning: string;
2069
+ borderFocusWarning: string;
2070
+ boxShadowHoverWarning: string;
2071
+ boxShadowActiveWarning: string;
2072
+ boxShadowFocusWarning: string;
2073
+ colorActiveWarning: string;
2074
+ caretColorWarning: string;
2075
+ borderError: string;
2076
+ borderHoverError: string;
2077
+ borderActiveError: string;
2078
+ borderFocusError: string;
2079
+ boxShadowHoverError: string;
2080
+ boxShadowActiveError: string;
2081
+ boxShadowFocusError: string;
2082
+ colorActiveError: string;
2083
+ caretColorError: string;
2084
+ clearColor: string;
2085
+ clearColorHover: string;
2086
+ clearColorPressed: string;
2087
+ paddingSingle: string;
2088
+ paddingMultiple: string;
2089
+ clearSize: string;
2090
+ arrowSize: string;
2091
+ }, {
2092
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2093
+ fontSize: string;
2094
+ borderRadius: string;
2095
+ color: string;
2096
+ dividerColor: string;
2097
+ textColor: string;
2098
+ boxShadow: string;
2099
+ space: string;
2100
+ spaceArrow: string;
2101
+ arrowOffset: string;
2102
+ arrowOffsetVertical: string;
2103
+ arrowHeight: string;
2104
+ padding: string;
2105
+ }, any>;
2106
+ }>;
2107
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
2108
+ optionFontSizeSmall: string;
2109
+ optionFontSizeMedium: string;
2110
+ optionFontSizeLarge: string;
2111
+ optionFontSizeHuge: string;
2112
+ optionHeightSmall: string;
2113
+ optionHeightMedium: string;
2114
+ optionHeightLarge: string;
2115
+ optionHeightHuge: string;
2116
+ borderRadius: string;
2117
+ color: string;
2118
+ groupHeaderTextColor: string;
2119
+ actionDividerColor: string;
2120
+ optionTextColor: string;
2121
+ optionTextColorPressed: string;
2122
+ optionTextColorDisabled: string;
2123
+ optionTextColorActive: string;
2124
+ optionOpacityDisabled: string;
2125
+ optionCheckColor: string;
2126
+ optionColorPending: string;
2127
+ optionColorActive: string;
2128
+ optionColorActivePending: string;
2129
+ actionTextColor: string;
2130
+ loadingColor: string;
2131
+ height: string;
2132
+ paddingSmall: string;
2133
+ paddingMedium: string;
2134
+ paddingLarge: string;
2135
+ paddingHuge: string;
2136
+ optionPaddingSmall: string;
2137
+ optionPaddingMedium: string;
2138
+ optionPaddingLarge: string;
2139
+ optionPaddingHuge: string;
2140
+ loadingSize: string;
2141
+ }, {
2142
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2143
+ color: string;
2144
+ colorHover: string;
2145
+ }, any>;
2146
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2147
+ fontSizeSmall: string;
2148
+ fontSizeMedium: string;
2149
+ fontSizeLarge: string;
2150
+ fontSizeHuge: string;
2151
+ textColor: string;
2152
+ iconColor: string;
2153
+ extraTextColor: string;
2154
+ iconSizeSmall: string;
2155
+ iconSizeMedium: string;
2156
+ iconSizeLarge: string;
2157
+ iconSizeHuge: string;
2158
+ }, any>;
2159
+ }>;
2160
+ }>>>;
2161
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
2162
+ menuBoxShadow: string;
2163
+ }, {
2164
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2165
+ fontSizeTiny: string;
2166
+ fontSizeSmall: string;
2167
+ fontSizeMedium: string;
2168
+ fontSizeLarge: string;
2169
+ heightTiny: string;
2170
+ heightSmall: string;
2171
+ heightMedium: string;
2172
+ heightLarge: string;
2173
+ borderRadius: string;
2174
+ textColor: string;
2175
+ textColorDisabled: string;
2176
+ placeholderColor: string;
2177
+ placeholderColorDisabled: string;
2178
+ color: string;
2179
+ colorDisabled: string;
2180
+ colorActive: string;
2181
+ border: string;
2182
+ borderHover: string;
2183
+ borderActive: string;
2184
+ borderFocus: string;
2185
+ boxShadowHover: string;
2186
+ boxShadowActive: string;
2187
+ boxShadowFocus: string;
2188
+ caretColor: string;
2189
+ arrowColor: string;
2190
+ arrowColorDisabled: string;
2191
+ loadingColor: string;
2192
+ borderWarning: string;
2193
+ borderHoverWarning: string;
2194
+ borderActiveWarning: string;
2195
+ borderFocusWarning: string;
2196
+ boxShadowHoverWarning: string;
2197
+ boxShadowActiveWarning: string;
2198
+ boxShadowFocusWarning: string;
2199
+ colorActiveWarning: string;
2200
+ caretColorWarning: string;
2201
+ borderError: string;
2202
+ borderHoverError: string;
2203
+ borderActiveError: string;
2204
+ borderFocusError: string;
2205
+ boxShadowHoverError: string;
2206
+ boxShadowActiveError: string;
2207
+ boxShadowFocusError: string;
2208
+ colorActiveError: string;
2209
+ caretColorError: string;
2210
+ clearColor: string;
2211
+ clearColorHover: string;
2212
+ clearColorPressed: string;
2213
+ paddingSingle: string;
2214
+ paddingMultiple: string;
2215
+ clearSize: string;
2216
+ arrowSize: string;
2217
+ }, {
2218
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2219
+ fontSize: string;
2220
+ borderRadius: string;
2221
+ color: string;
2222
+ dividerColor: string;
2223
+ textColor: string;
2224
+ boxShadow: string;
2225
+ space: string;
2226
+ spaceArrow: string;
2227
+ arrowOffset: string;
2228
+ arrowOffsetVertical: string;
2229
+ arrowHeight: string;
2230
+ padding: string;
2231
+ }, any>;
2232
+ }>;
2233
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
2234
+ optionFontSizeSmall: string;
2235
+ optionFontSizeMedium: string;
2236
+ optionFontSizeLarge: string;
2237
+ optionFontSizeHuge: string;
2238
+ optionHeightSmall: string;
2239
+ optionHeightMedium: string;
2240
+ optionHeightLarge: string;
2241
+ optionHeightHuge: string;
2242
+ borderRadius: string;
2243
+ color: string;
2244
+ groupHeaderTextColor: string;
2245
+ actionDividerColor: string;
2246
+ optionTextColor: string;
2247
+ optionTextColorPressed: string;
2248
+ optionTextColorDisabled: string;
2249
+ optionTextColorActive: string;
2250
+ optionOpacityDisabled: string;
2251
+ optionCheckColor: string;
2252
+ optionColorPending: string;
2253
+ optionColorActive: string;
2254
+ optionColorActivePending: string;
2255
+ actionTextColor: string;
2256
+ loadingColor: string;
2257
+ height: string;
2258
+ paddingSmall: string;
2259
+ paddingMedium: string;
2260
+ paddingLarge: string;
2261
+ paddingHuge: string;
2262
+ optionPaddingSmall: string;
2263
+ optionPaddingMedium: string;
2264
+ optionPaddingLarge: string;
2265
+ optionPaddingHuge: string;
2266
+ loadingSize: string;
2267
+ }, {
2268
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2269
+ color: string;
2270
+ colorHover: string;
2271
+ }, any>;
2272
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2273
+ fontSizeSmall: string;
2274
+ fontSizeMedium: string;
2275
+ fontSizeLarge: string;
2276
+ fontSizeHuge: string;
2277
+ textColor: string;
2278
+ iconColor: string;
2279
+ extraTextColor: string;
2280
+ iconSizeSmall: string;
2281
+ iconSizeMedium: string;
2282
+ iconSizeLarge: string;
2283
+ iconSizeHuge: string;
2284
+ }, any>;
2285
+ }>;
2286
+ }>>>;
2287
+ }, {
2288
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
2289
+ mergedClsPrefix: import("vue").ComputedRef<string>;
2290
+ mergedBordered: import("vue").ComputedRef<boolean>;
2291
+ namespace: import("vue").ComputedRef<string | undefined>;
2292
+ treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("naive-ui").SelectOption, import("naive-ui").SelectGroupOption, import("naive-ui/es/select/src/interface").SelectIgnoredOption>>;
2293
+ isMounted: Readonly<import("vue").Ref<boolean>>;
2294
+ triggerRef: import("vue").Ref<{
2295
+ isCompositing: boolean;
2296
+ focus: () => void;
2297
+ focusInput: () => void;
2298
+ blur: () => void;
2299
+ $el: HTMLElement;
2300
+ } | null>;
2301
+ menuRef: import("vue").Ref<{
2302
+ selfRef: HTMLElement | null;
2303
+ getPendingTmNode: () => import("treemate").TreeNode<import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>, import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>, import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, string | ((option: import("naive-ui/es/select/src/interface").SelectBaseOption<string | number, any>, selected: boolean) => import("vue").VNodeChild)>> | null;
2304
+ prev: () => void;
2305
+ next: () => void;
2306
+ } | null>;
2307
+ pattern: import("vue").Ref<string>;
2308
+ uncontrolledShow: import("vue").Ref<boolean>;
2309
+ mergedShow: import("vue").ComputedRef<boolean>;
2310
+ adjustedTo: import("vue").ComputedRef<string | HTMLElement>;
2311
+ uncontrolledValue: import("vue").Ref<string[] | import("naive-ui/es/select/src/interface").ValueAtom | number[] | import("naive-ui/es/select/src/interface").ValueAtom[] | null>;
2312
+ mergedValue: import("vue").ComputedRef<string[] | import("naive-ui/es/select/src/interface").ValueAtom | number[] | import("naive-ui/es/select/src/interface").ValueAtom[] | null>;
2313
+ followerRef: import("vue").Ref<{
2314
+ syncPosition: () => void;
2315
+ } | null>;
2316
+ localizedPlaceholder: import("vue").ComputedRef<string>;
2317
+ selectedOption: import("vue").ComputedRef<import("naive-ui").SelectOption | null>;
2318
+ selectedOptions: import("vue").ComputedRef<import("naive-ui").SelectOption[] | null>;
2319
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
2320
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2321
+ focused: import("vue").Ref<boolean>;
2322
+ activeWithoutMenuOpen: import("vue").Ref<boolean>;
2323
+ inlineThemeDisabled: boolean | undefined;
2324
+ onTriggerInputFocus: () => void;
2325
+ onTriggerInputBlur: () => void;
2326
+ handleTriggerOrMenuResize: () => void;
2327
+ handleMenuFocus: (e: FocusEvent) => void;
2328
+ handleMenuBlur: (e: FocusEvent) => void;
2329
+ handleMenuTabOut: () => void;
2330
+ handleTriggerClick: () => void;
2331
+ handleToggle: (tmNode: import("treemate").TreeNode<import("naive-ui").SelectOption, import("naive-ui").SelectOption, import("naive-ui").SelectOption>) => void;
2332
+ handleDeleteOption: (option: import("naive-ui").SelectOption) => void;
2333
+ handlePatternInput: (e: InputEvent) => void;
2334
+ handleClear: (e: MouseEvent) => void;
2335
+ handleTriggerBlur: (e: FocusEvent) => void;
2336
+ handleTriggerFocus: (e: FocusEvent) => void;
2337
+ handleKeydown: (e: KeyboardEvent) => void;
2338
+ handleMenuAfterLeave: () => void;
2339
+ handleMenuClickOutside: (e: MouseEvent) => void;
2340
+ handleMenuScroll: (e: Event) => void;
2341
+ handleMenuKeydown: (e: KeyboardEvent) => void;
2342
+ handleMenuMousedown: (e: MouseEvent) => void;
2343
+ mergedTheme: import("vue").ComputedRef<{
2344
+ common: {
2345
+ baseColor: string;
2346
+ primaryColor: string;
2347
+ primaryColorHover: string;
2348
+ primaryColorPressed: string;
2349
+ primaryColorSuppl: string;
2350
+ infoColor: string;
2351
+ infoColorHover: string;
2352
+ infoColorPressed: string;
2353
+ infoColorSuppl: string;
2354
+ successColor: string;
2355
+ successColorHover: string;
2356
+ successColorPressed: string;
2357
+ successColorSuppl: string;
2358
+ warningColor: string;
2359
+ warningColorHover: string;
2360
+ warningColorPressed: string;
2361
+ warningColorSuppl: string;
2362
+ errorColor: string;
2363
+ errorColorHover: string;
2364
+ errorColorPressed: string;
2365
+ errorColorSuppl: string;
2366
+ textColorBase: string;
2367
+ textColor1: string;
2368
+ textColor2: string;
2369
+ textColor3: string;
2370
+ textColorDisabled: string;
2371
+ placeholderColor: string;
2372
+ placeholderColorDisabled: string;
2373
+ iconColor: string;
2374
+ iconColorHover: string;
2375
+ iconColorPressed: string;
2376
+ iconColorDisabled: string;
2377
+ opacity1: string;
2378
+ opacity2: string;
2379
+ opacity3: string;
2380
+ opacity4: string;
2381
+ opacity5: string;
2382
+ dividerColor: string;
2383
+ borderColor: string;
2384
+ closeIconColor: string;
2385
+ closeIconColorHover: string;
2386
+ closeIconColorPressed: string;
2387
+ closeColorHover: string;
2388
+ closeColorPressed: string;
2389
+ clearColor: string;
2390
+ clearColorHover: string;
2391
+ clearColorPressed: string;
2392
+ scrollbarColor: string;
2393
+ scrollbarColorHover: string;
2394
+ scrollbarWidth: string;
2395
+ scrollbarHeight: string;
2396
+ scrollbarBorderRadius: string;
2397
+ progressRailColor: string;
2398
+ railColor: string;
2399
+ popoverColor: string;
2400
+ tableColor: string;
2401
+ cardColor: string;
2402
+ modalColor: string;
2403
+ bodyColor: string;
2404
+ tagColor: string;
2405
+ avatarColor: string;
2406
+ invertedColor: string;
2407
+ inputColor: string;
2408
+ codeColor: string;
2409
+ tabColor: string;
2410
+ actionColor: string;
2411
+ tableHeaderColor: string;
2412
+ hoverColor: string;
2413
+ tableColorHover: string;
2414
+ tableColorStriped: string;
2415
+ pressedColor: string;
2416
+ opacityDisabled: string;
2417
+ inputColorDisabled: string;
2418
+ buttonColor2: string;
2419
+ buttonColor2Hover: string;
2420
+ buttonColor2Pressed: string;
2421
+ boxShadow1: string;
2422
+ boxShadow2: string;
2423
+ boxShadow3: string;
2424
+ fontFamily: string;
2425
+ fontFamilyMono: string;
2426
+ fontWeight: string;
2427
+ fontWeightStrong: string;
2428
+ cubicBezierEaseInOut: string;
2429
+ cubicBezierEaseOut: string;
2430
+ cubicBezierEaseIn: string;
2431
+ borderRadius: string;
2432
+ borderRadiusSmall: string;
2433
+ fontSize: string;
2434
+ fontSizeMini: string;
2435
+ fontSizeTiny: string;
2436
+ fontSizeSmall: string;
2437
+ fontSizeMedium: string;
2438
+ fontSizeLarge: string;
2439
+ fontSizeHuge: string;
2440
+ lineHeight: string;
2441
+ heightMini: string;
2442
+ heightTiny: string;
2443
+ heightSmall: string;
2444
+ heightMedium: string;
2445
+ heightLarge: string;
2446
+ heightHuge: string;
2447
+ name: "common";
2448
+ };
2449
+ self: {
2450
+ menuBoxShadow: string;
2451
+ };
2452
+ peers: {
2453
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2454
+ fontSizeTiny: string;
2455
+ fontSizeSmall: string;
2456
+ fontSizeMedium: string;
2457
+ fontSizeLarge: string;
2458
+ heightTiny: string;
2459
+ heightSmall: string;
2460
+ heightMedium: string;
2461
+ heightLarge: string;
2462
+ borderRadius: string;
2463
+ textColor: string;
2464
+ textColorDisabled: string;
2465
+ placeholderColor: string;
2466
+ placeholderColorDisabled: string;
2467
+ color: string;
2468
+ colorDisabled: string;
2469
+ colorActive: string;
2470
+ border: string;
2471
+ borderHover: string;
2472
+ borderActive: string;
2473
+ borderFocus: string;
2474
+ boxShadowHover: string;
2475
+ boxShadowActive: string;
2476
+ boxShadowFocus: string;
2477
+ caretColor: string;
2478
+ arrowColor: string;
2479
+ arrowColorDisabled: string;
2480
+ loadingColor: string;
2481
+ borderWarning: string;
2482
+ borderHoverWarning: string;
2483
+ borderActiveWarning: string;
2484
+ borderFocusWarning: string;
2485
+ boxShadowHoverWarning: string;
2486
+ boxShadowActiveWarning: string;
2487
+ boxShadowFocusWarning: string;
2488
+ colorActiveWarning: string;
2489
+ caretColorWarning: string;
2490
+ borderError: string;
2491
+ borderHoverError: string;
2492
+ borderActiveError: string;
2493
+ borderFocusError: string;
2494
+ boxShadowHoverError: string;
2495
+ boxShadowActiveError: string;
2496
+ boxShadowFocusError: string;
2497
+ colorActiveError: string;
2498
+ caretColorError: string;
2499
+ clearColor: string;
2500
+ clearColorHover: string;
2501
+ clearColorPressed: string;
2502
+ paddingSingle: string;
2503
+ paddingMultiple: string;
2504
+ clearSize: string;
2505
+ arrowSize: string;
2506
+ }, {
2507
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2508
+ fontSize: string;
2509
+ borderRadius: string;
2510
+ color: string;
2511
+ dividerColor: string;
2512
+ textColor: string;
2513
+ boxShadow: string;
2514
+ space: string;
2515
+ spaceArrow: string;
2516
+ arrowOffset: string;
2517
+ arrowOffsetVertical: string;
2518
+ arrowHeight: string;
2519
+ padding: string;
2520
+ }, any>;
2521
+ }>;
2522
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
2523
+ optionFontSizeSmall: string;
2524
+ optionFontSizeMedium: string;
2525
+ optionFontSizeLarge: string;
2526
+ optionFontSizeHuge: string;
2527
+ optionHeightSmall: string;
2528
+ optionHeightMedium: string;
2529
+ optionHeightLarge: string;
2530
+ optionHeightHuge: string;
2531
+ borderRadius: string;
2532
+ color: string;
2533
+ groupHeaderTextColor: string;
2534
+ actionDividerColor: string;
2535
+ optionTextColor: string;
2536
+ optionTextColorPressed: string;
2537
+ optionTextColorDisabled: string;
2538
+ optionTextColorActive: string;
2539
+ optionOpacityDisabled: string;
2540
+ optionCheckColor: string;
2541
+ optionColorPending: string;
2542
+ optionColorActive: string;
2543
+ optionColorActivePending: string;
2544
+ actionTextColor: string;
2545
+ loadingColor: string;
2546
+ height: string;
2547
+ paddingSmall: string;
2548
+ paddingMedium: string;
2549
+ paddingLarge: string;
2550
+ paddingHuge: string;
2551
+ optionPaddingSmall: string;
2552
+ optionPaddingMedium: string;
2553
+ optionPaddingLarge: string;
2554
+ optionPaddingHuge: string;
2555
+ loadingSize: string;
2556
+ }, {
2557
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2558
+ color: string;
2559
+ colorHover: string;
2560
+ }, any>;
2561
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2562
+ fontSizeSmall: string;
2563
+ fontSizeMedium: string;
2564
+ fontSizeLarge: string;
2565
+ fontSizeHuge: string;
2566
+ textColor: string;
2567
+ iconColor: string;
2568
+ extraTextColor: string;
2569
+ iconSizeSmall: string;
2570
+ iconSizeMedium: string;
2571
+ iconSizeLarge: string;
2572
+ iconSizeHuge: string;
2573
+ }, any>;
2574
+ }>;
2575
+ };
2576
+ peerOverrides: {
2577
+ InternalSelection?: {
2578
+ peers?: {
2579
+ Popover?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
2580
+ fontSize: string;
2581
+ borderRadius: string;
2582
+ color: string;
2583
+ dividerColor: string;
2584
+ textColor: string;
2585
+ boxShadow: string;
2586
+ space: string;
2587
+ spaceArrow: string;
2588
+ arrowOffset: string;
2589
+ arrowOffsetVertical: string;
2590
+ arrowHeight: string;
2591
+ padding: string;
2592
+ }, any>> | undefined;
2593
+ } | undefined;
2594
+ } | undefined;
2595
+ InternalSelectMenu?: {
2596
+ peers?: {
2597
+ Scrollbar?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2598
+ color: string;
2599
+ colorHover: string;
2600
+ }, any>> | undefined;
2601
+ Empty?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Empty", {
2602
+ fontSizeSmall: string;
2603
+ fontSizeMedium: string;
2604
+ fontSizeLarge: string;
2605
+ fontSizeHuge: string;
2606
+ textColor: string;
2607
+ iconColor: string;
2608
+ extraTextColor: string;
2609
+ iconSizeSmall: string;
2610
+ iconSizeMedium: string;
2611
+ iconSizeLarge: string;
2612
+ iconSizeHuge: string;
2613
+ }, any>> | undefined;
2614
+ } | undefined;
2615
+ } | undefined;
2616
+ };
2617
+ }>;
2618
+ cssVars: import("vue").ComputedRef<{
2619
+ '--n-menu-box-shadow': string;
2620
+ }> | undefined;
2621
+ themeClass: import("vue").Ref<string> | undefined;
2622
+ onRender: (() => void) | undefined;
2623
+ focus: () => void;
2624
+ blur: () => void;
2625
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2626
+ readonly to: {
2627
+ type: import("vue").PropType<string | boolean | HTMLElement>;
2628
+ default: undefined;
2629
+ };
2630
+ readonly bordered: {
2631
+ readonly type: import("vue").PropType<boolean | undefined>;
2632
+ readonly default: undefined;
2633
+ };
2634
+ readonly clearable: BooleanConstructor;
2635
+ readonly clearFilterAfterSelect: {
2636
+ readonly type: BooleanConstructor;
2637
+ readonly default: true;
2638
+ };
2639
+ readonly options: {
2640
+ readonly type: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
2641
+ readonly default: () => never[];
2642
+ };
2643
+ readonly defaultValue: {
2644
+ readonly type: import("vue").PropType<import("naive-ui/es/select/src/interface").Value | null>;
2645
+ readonly default: null;
2646
+ };
2647
+ readonly value: import("vue").PropType<import("naive-ui/es/select/src/interface").Value | null>;
2648
+ readonly placeholder: StringConstructor;
2649
+ readonly menuProps: import("vue").PropType<import("vue").HTMLAttributes>;
2650
+ readonly multiple: BooleanConstructor;
2651
+ readonly size: import("vue").PropType<import("naive-ui/es/select/src/interface").Size>;
2652
+ readonly filterable: BooleanConstructor;
2653
+ readonly disabled: {
2654
+ readonly type: import("vue").PropType<boolean | undefined>;
2655
+ readonly default: undefined;
2656
+ };
2657
+ readonly remote: BooleanConstructor;
2658
+ readonly loading: BooleanConstructor;
2659
+ readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
2660
+ readonly placement: {
2661
+ readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
2662
+ readonly default: "bottom-start";
2663
+ };
2664
+ readonly widthMode: {
2665
+ readonly type: StringConstructor;
2666
+ readonly default: "trigger";
2667
+ };
2668
+ readonly tag: BooleanConstructor;
2669
+ readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
2670
+ readonly fallbackOption: {
2671
+ readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
2672
+ readonly default: undefined;
2673
+ };
2674
+ readonly show: {
2675
+ readonly type: import("vue").PropType<boolean | undefined>;
2676
+ readonly default: undefined;
2677
+ };
2678
+ readonly showArrow: {
2679
+ readonly type: BooleanConstructor;
2680
+ readonly default: true;
2681
+ };
2682
+ readonly maxTagCount: import("vue").PropType<number | "responsive">;
2683
+ readonly consistentMenuWidth: {
2684
+ readonly type: BooleanConstructor;
2685
+ readonly default: true;
2686
+ };
2687
+ readonly virtualScroll: {
2688
+ readonly type: BooleanConstructor;
2689
+ readonly default: true;
2690
+ };
2691
+ readonly labelField: {
2692
+ readonly type: StringConstructor;
2693
+ readonly default: "label";
2694
+ };
2695
+ readonly valueField: {
2696
+ readonly type: StringConstructor;
2697
+ readonly default: "value";
2698
+ };
2699
+ readonly childrenField: {
2700
+ readonly type: StringConstructor;
2701
+ readonly default: "children";
2702
+ };
2703
+ readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
2704
+ readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
2705
+ readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
2706
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
2707
+ readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
2708
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue> | undefined>;
2709
+ readonly onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
2710
+ readonly onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void> | undefined>;
2711
+ readonly onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void> | undefined>;
2712
+ readonly onScroll: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: Event) => void> | undefined>;
2713
+ readonly onSearch: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: string) => void> | undefined>;
2714
+ readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2715
+ readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2716
+ readonly displayDirective: {
2717
+ readonly type: import("vue").PropType<"show" | "if">;
2718
+ readonly default: "show";
2719
+ };
2720
+ readonly resetMenuOnOptionsChange: {
2721
+ readonly type: BooleanConstructor;
2722
+ readonly default: true;
2723
+ };
2724
+ readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
2725
+ readonly internalShowCheckmark: {
2726
+ readonly type: BooleanConstructor;
2727
+ readonly default: true;
2728
+ };
2729
+ readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
2730
+ readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
2731
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
2732
+ menuBoxShadow: string;
2733
+ }, {
2734
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2735
+ fontSizeTiny: string;
2736
+ fontSizeSmall: string;
2737
+ fontSizeMedium: string;
2738
+ fontSizeLarge: string;
2739
+ heightTiny: string;
2740
+ heightSmall: string;
2741
+ heightMedium: string;
2742
+ heightLarge: string;
2743
+ borderRadius: string;
2744
+ textColor: string;
2745
+ textColorDisabled: string;
2746
+ placeholderColor: string;
2747
+ placeholderColorDisabled: string;
2748
+ color: string;
2749
+ colorDisabled: string;
2750
+ colorActive: string;
2751
+ border: string;
2752
+ borderHover: string;
2753
+ borderActive: string;
2754
+ borderFocus: string;
2755
+ boxShadowHover: string;
2756
+ boxShadowActive: string;
2757
+ boxShadowFocus: string;
2758
+ caretColor: string;
2759
+ arrowColor: string;
2760
+ arrowColorDisabled: string;
2761
+ loadingColor: string;
2762
+ borderWarning: string;
2763
+ borderHoverWarning: string;
2764
+ borderActiveWarning: string;
2765
+ borderFocusWarning: string;
2766
+ boxShadowHoverWarning: string;
2767
+ boxShadowActiveWarning: string;
2768
+ boxShadowFocusWarning: string;
2769
+ colorActiveWarning: string;
2770
+ caretColorWarning: string;
2771
+ borderError: string;
2772
+ borderHoverError: string;
2773
+ borderActiveError: string;
2774
+ borderFocusError: string;
2775
+ boxShadowHoverError: string;
2776
+ boxShadowActiveError: string;
2777
+ boxShadowFocusError: string;
2778
+ colorActiveError: string;
2779
+ caretColorError: string;
2780
+ clearColor: string;
2781
+ clearColorHover: string;
2782
+ clearColorPressed: string;
2783
+ paddingSingle: string;
2784
+ paddingMultiple: string;
2785
+ clearSize: string;
2786
+ arrowSize: string;
2787
+ }, {
2788
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2789
+ fontSize: string;
2790
+ borderRadius: string;
2791
+ color: string;
2792
+ dividerColor: string;
2793
+ textColor: string;
2794
+ boxShadow: string;
2795
+ space: string;
2796
+ spaceArrow: string;
2797
+ arrowOffset: string;
2798
+ arrowOffsetVertical: string;
2799
+ arrowHeight: string;
2800
+ padding: string;
2801
+ }, any>;
2802
+ }>;
2803
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
2804
+ optionFontSizeSmall: string;
2805
+ optionFontSizeMedium: string;
2806
+ optionFontSizeLarge: string;
2807
+ optionFontSizeHuge: string;
2808
+ optionHeightSmall: string;
2809
+ optionHeightMedium: string;
2810
+ optionHeightLarge: string;
2811
+ optionHeightHuge: string;
2812
+ borderRadius: string;
2813
+ color: string;
2814
+ groupHeaderTextColor: string;
2815
+ actionDividerColor: string;
2816
+ optionTextColor: string;
2817
+ optionTextColorPressed: string;
2818
+ optionTextColorDisabled: string;
2819
+ optionTextColorActive: string;
2820
+ optionOpacityDisabled: string;
2821
+ optionCheckColor: string;
2822
+ optionColorPending: string;
2823
+ optionColorActive: string;
2824
+ optionColorActivePending: string;
2825
+ actionTextColor: string;
2826
+ loadingColor: string;
2827
+ height: string;
2828
+ paddingSmall: string;
2829
+ paddingMedium: string;
2830
+ paddingLarge: string;
2831
+ paddingHuge: string;
2832
+ optionPaddingSmall: string;
2833
+ optionPaddingMedium: string;
2834
+ optionPaddingLarge: string;
2835
+ optionPaddingHuge: string;
2836
+ loadingSize: string;
2837
+ }, {
2838
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2839
+ color: string;
2840
+ colorHover: string;
2841
+ }, any>;
2842
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2843
+ fontSizeSmall: string;
2844
+ fontSizeMedium: string;
2845
+ fontSizeLarge: string;
2846
+ fontSizeHuge: string;
2847
+ textColor: string;
2848
+ iconColor: string;
2849
+ extraTextColor: string;
2850
+ iconSizeSmall: string;
2851
+ iconSizeMedium: string;
2852
+ iconSizeLarge: string;
2853
+ iconSizeHuge: string;
2854
+ }, any>;
2855
+ }>;
2856
+ }>>;
2857
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
2858
+ menuBoxShadow: string;
2859
+ }, {
2860
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2861
+ fontSizeTiny: string;
2862
+ fontSizeSmall: string;
2863
+ fontSizeMedium: string;
2864
+ fontSizeLarge: string;
2865
+ heightTiny: string;
2866
+ heightSmall: string;
2867
+ heightMedium: string;
2868
+ heightLarge: string;
2869
+ borderRadius: string;
2870
+ textColor: string;
2871
+ textColorDisabled: string;
2872
+ placeholderColor: string;
2873
+ placeholderColorDisabled: string;
2874
+ color: string;
2875
+ colorDisabled: string;
2876
+ colorActive: string;
2877
+ border: string;
2878
+ borderHover: string;
2879
+ borderActive: string;
2880
+ borderFocus: string;
2881
+ boxShadowHover: string;
2882
+ boxShadowActive: string;
2883
+ boxShadowFocus: string;
2884
+ caretColor: string;
2885
+ arrowColor: string;
2886
+ arrowColorDisabled: string;
2887
+ loadingColor: string;
2888
+ borderWarning: string;
2889
+ borderHoverWarning: string;
2890
+ borderActiveWarning: string;
2891
+ borderFocusWarning: string;
2892
+ boxShadowHoverWarning: string;
2893
+ boxShadowActiveWarning: string;
2894
+ boxShadowFocusWarning: string;
2895
+ colorActiveWarning: string;
2896
+ caretColorWarning: string;
2897
+ borderError: string;
2898
+ borderHoverError: string;
2899
+ borderActiveError: string;
2900
+ borderFocusError: string;
2901
+ boxShadowHoverError: string;
2902
+ boxShadowActiveError: string;
2903
+ boxShadowFocusError: string;
2904
+ colorActiveError: string;
2905
+ caretColorError: string;
2906
+ clearColor: string;
2907
+ clearColorHover: string;
2908
+ clearColorPressed: string;
2909
+ paddingSingle: string;
2910
+ paddingMultiple: string;
2911
+ clearSize: string;
2912
+ arrowSize: string;
2913
+ }, {
2914
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2915
+ fontSize: string;
2916
+ borderRadius: string;
2917
+ color: string;
2918
+ dividerColor: string;
2919
+ textColor: string;
2920
+ boxShadow: string;
2921
+ space: string;
2922
+ spaceArrow: string;
2923
+ arrowOffset: string;
2924
+ arrowOffsetVertical: string;
2925
+ arrowHeight: string;
2926
+ padding: string;
2927
+ }, any>;
2928
+ }>;
2929
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
2930
+ optionFontSizeSmall: string;
2931
+ optionFontSizeMedium: string;
2932
+ optionFontSizeLarge: string;
2933
+ optionFontSizeHuge: string;
2934
+ optionHeightSmall: string;
2935
+ optionHeightMedium: string;
2936
+ optionHeightLarge: string;
2937
+ optionHeightHuge: string;
2938
+ borderRadius: string;
2939
+ color: string;
2940
+ groupHeaderTextColor: string;
2941
+ actionDividerColor: string;
2942
+ optionTextColor: string;
2943
+ optionTextColorPressed: string;
2944
+ optionTextColorDisabled: string;
2945
+ optionTextColorActive: string;
2946
+ optionOpacityDisabled: string;
2947
+ optionCheckColor: string;
2948
+ optionColorPending: string;
2949
+ optionColorActive: string;
2950
+ optionColorActivePending: string;
2951
+ actionTextColor: string;
2952
+ loadingColor: string;
2953
+ height: string;
2954
+ paddingSmall: string;
2955
+ paddingMedium: string;
2956
+ paddingLarge: string;
2957
+ paddingHuge: string;
2958
+ optionPaddingSmall: string;
2959
+ optionPaddingMedium: string;
2960
+ optionPaddingLarge: string;
2961
+ optionPaddingHuge: string;
2962
+ loadingSize: string;
2963
+ }, {
2964
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2965
+ color: string;
2966
+ colorHover: string;
2967
+ }, any>;
2968
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
2969
+ fontSizeSmall: string;
2970
+ fontSizeMedium: string;
2971
+ fontSizeLarge: string;
2972
+ fontSizeHuge: string;
2973
+ textColor: string;
2974
+ iconColor: string;
2975
+ extraTextColor: string;
2976
+ iconSizeSmall: string;
2977
+ iconSizeMedium: string;
2978
+ iconSizeLarge: string;
2979
+ iconSizeHuge: string;
2980
+ }, any>;
2981
+ }>;
2982
+ }>>>;
2983
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Select", {
2984
+ menuBoxShadow: string;
2985
+ }, {
2986
+ InternalSelection: import("naive-ui/es/_mixins").Theme<"InternalSelection", {
2987
+ fontSizeTiny: string;
2988
+ fontSizeSmall: string;
2989
+ fontSizeMedium: string;
2990
+ fontSizeLarge: string;
2991
+ heightTiny: string;
2992
+ heightSmall: string;
2993
+ heightMedium: string;
2994
+ heightLarge: string;
2995
+ borderRadius: string;
2996
+ textColor: string;
2997
+ textColorDisabled: string;
2998
+ placeholderColor: string;
2999
+ placeholderColorDisabled: string;
3000
+ color: string;
3001
+ colorDisabled: string;
3002
+ colorActive: string;
3003
+ border: string;
3004
+ borderHover: string;
3005
+ borderActive: string;
3006
+ borderFocus: string;
3007
+ boxShadowHover: string;
3008
+ boxShadowActive: string;
3009
+ boxShadowFocus: string;
3010
+ caretColor: string;
3011
+ arrowColor: string;
3012
+ arrowColorDisabled: string;
3013
+ loadingColor: string;
3014
+ borderWarning: string;
3015
+ borderHoverWarning: string;
3016
+ borderActiveWarning: string;
3017
+ borderFocusWarning: string;
3018
+ boxShadowHoverWarning: string;
3019
+ boxShadowActiveWarning: string;
3020
+ boxShadowFocusWarning: string;
3021
+ colorActiveWarning: string;
3022
+ caretColorWarning: string;
3023
+ borderError: string;
3024
+ borderHoverError: string;
3025
+ borderActiveError: string;
3026
+ borderFocusError: string;
3027
+ boxShadowHoverError: string;
3028
+ boxShadowActiveError: string;
3029
+ boxShadowFocusError: string;
3030
+ colorActiveError: string;
3031
+ caretColorError: string;
3032
+ clearColor: string;
3033
+ clearColorHover: string;
3034
+ clearColorPressed: string;
3035
+ paddingSingle: string;
3036
+ paddingMultiple: string;
3037
+ clearSize: string;
3038
+ arrowSize: string;
3039
+ }, {
3040
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3041
+ fontSize: string;
3042
+ borderRadius: string;
3043
+ color: string;
3044
+ dividerColor: string;
3045
+ textColor: string;
3046
+ boxShadow: string;
3047
+ space: string;
3048
+ spaceArrow: string;
3049
+ arrowOffset: string;
3050
+ arrowOffsetVertical: string;
3051
+ arrowHeight: string;
3052
+ padding: string;
3053
+ }, any>;
3054
+ }>;
3055
+ InternalSelectMenu: import("naive-ui/es/_mixins").Theme<"InternalSelectMenu", {
3056
+ optionFontSizeSmall: string;
3057
+ optionFontSizeMedium: string;
3058
+ optionFontSizeLarge: string;
3059
+ optionFontSizeHuge: string;
3060
+ optionHeightSmall: string;
3061
+ optionHeightMedium: string;
3062
+ optionHeightLarge: string;
3063
+ optionHeightHuge: string;
3064
+ borderRadius: string;
3065
+ color: string;
3066
+ groupHeaderTextColor: string;
3067
+ actionDividerColor: string;
3068
+ optionTextColor: string;
3069
+ optionTextColorPressed: string;
3070
+ optionTextColorDisabled: string;
3071
+ optionTextColorActive: string;
3072
+ optionOpacityDisabled: string;
3073
+ optionCheckColor: string;
3074
+ optionColorPending: string;
3075
+ optionColorActive: string;
3076
+ optionColorActivePending: string;
3077
+ actionTextColor: string;
3078
+ loadingColor: string;
3079
+ height: string;
3080
+ paddingSmall: string;
3081
+ paddingMedium: string;
3082
+ paddingLarge: string;
3083
+ paddingHuge: string;
3084
+ optionPaddingSmall: string;
3085
+ optionPaddingMedium: string;
3086
+ optionPaddingLarge: string;
3087
+ optionPaddingHuge: string;
3088
+ loadingSize: string;
3089
+ }, {
3090
+ Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
3091
+ color: string;
3092
+ colorHover: string;
3093
+ }, any>;
3094
+ Empty: import("naive-ui/es/_mixins").Theme<"Empty", {
3095
+ fontSizeSmall: string;
3096
+ fontSizeMedium: string;
3097
+ fontSizeLarge: string;
3098
+ fontSizeHuge: string;
3099
+ textColor: string;
3100
+ iconColor: string;
3101
+ extraTextColor: string;
3102
+ iconSizeSmall: string;
3103
+ iconSizeMedium: string;
3104
+ iconSizeLarge: string;
3105
+ iconSizeHuge: string;
3106
+ }, any>;
3107
+ }>;
3108
+ }>>>;
3109
+ }>>, {
3110
+ readonly tag: boolean;
3111
+ readonly show: boolean | undefined;
3112
+ readonly multiple: boolean;
3113
+ readonly disabled: boolean | undefined;
3114
+ readonly to: string | boolean | HTMLElement;
3115
+ readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
3116
+ readonly loading: boolean;
3117
+ readonly bordered: boolean | undefined;
3118
+ readonly placement: import("naive-ui").PopoverPlacement;
3119
+ readonly labelField: string;
3120
+ readonly virtualScroll: boolean;
3121
+ readonly valueField: string;
3122
+ readonly resetMenuOnOptionsChange: boolean;
3123
+ readonly showArrow: boolean;
3124
+ readonly displayDirective: "show" | "if";
3125
+ readonly filterable: boolean;
3126
+ readonly clearable: boolean;
3127
+ readonly internalShowCheckmark: boolean;
3128
+ readonly clearFilterAfterSelect: boolean;
3129
+ readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
3130
+ readonly remote: boolean;
3131
+ readonly widthMode: string;
3132
+ readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
3133
+ readonly consistentMenuWidth: boolean;
3134
+ readonly childrenField: string;
3135
+ }>;
3136
+ NIcon: import("vue").DefineComponent<{
3137
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
3138
+ readonly size: import("vue").PropType<string | number>;
3139
+ readonly color: StringConstructor;
3140
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
3141
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
3142
+ color: string;
3143
+ opacity1Depth: string;
3144
+ opacity2Depth: string;
3145
+ opacity3Depth: string;
3146
+ opacity4Depth: string;
3147
+ opacity5Depth: string;
3148
+ }, any>>;
3149
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3150
+ color: string;
3151
+ opacity1Depth: string;
3152
+ opacity2Depth: string;
3153
+ opacity3Depth: string;
3154
+ opacity4Depth: string;
3155
+ opacity5Depth: string;
3156
+ }, any>>>;
3157
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3158
+ color: string;
3159
+ opacity1Depth: string;
3160
+ opacity2Depth: string;
3161
+ opacity3Depth: string;
3162
+ opacity4Depth: string;
3163
+ opacity5Depth: string;
3164
+ }, any>>>;
3165
+ }, {
3166
+ mergedClsPrefix: import("vue").ComputedRef<string>;
3167
+ mergedStyle: import("vue").ComputedRef<{
3168
+ fontSize: string | undefined;
3169
+ color: string | undefined;
3170
+ }>;
3171
+ cssVars: import("vue").ComputedRef<{
3172
+ '--n-bezier': string;
3173
+ '--n-color': string;
3174
+ '--n-opacity': string;
3175
+ }> | undefined;
3176
+ themeClass: import("vue").Ref<string> | undefined;
3177
+ onRender: (() => void) | undefined;
3178
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3179
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
3180
+ readonly size: import("vue").PropType<string | number>;
3181
+ readonly color: StringConstructor;
3182
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
3183
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
3184
+ color: string;
3185
+ opacity1Depth: string;
3186
+ opacity2Depth: string;
3187
+ opacity3Depth: string;
3188
+ opacity4Depth: string;
3189
+ opacity5Depth: string;
3190
+ }, any>>;
3191
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3192
+ color: string;
3193
+ opacity1Depth: string;
3194
+ opacity2Depth: string;
3195
+ opacity3Depth: string;
3196
+ opacity4Depth: string;
3197
+ opacity5Depth: string;
3198
+ }, any>>>;
3199
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3200
+ color: string;
3201
+ opacity1Depth: string;
3202
+ opacity2Depth: string;
3203
+ opacity3Depth: string;
3204
+ opacity4Depth: string;
3205
+ opacity5Depth: string;
3206
+ }, any>>>;
3207
+ }>>, {}>;
3208
+ EllipsisVerticalSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3209
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEdit" | "handleDelete")[], "handleEdit" | "handleDelete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3210
+ fields: {
3211
+ type: null;
3212
+ required: false;
3213
+ };
3214
+ element: {
3215
+ type: null;
3216
+ required: true;
3217
+ };
3218
+ index: {
3219
+ type: NumberConstructor;
3220
+ required: true;
3221
+ };
3222
+ }>> & {
3223
+ onHandleEdit?: ((...args: any[]) => any) | undefined;
3224
+ onHandleDelete?: ((...args: any[]) => any) | undefined;
3225
+ }, {}>;
3226
+ export default _default;