cnhis-design-vue 3.1.6 → 3.1.7-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (580) hide show
  1. package/es/_virtual/_commonjsHelpers.mjs +5 -1
  2. package/es/_virtual/inherits.mjs +3 -1
  3. package/es/_virtual/inherits_browser.mjs +3 -1
  4. package/es/node_modules/date-fns/esm/_lib/getTimezoneOffsetInMilliseconds/index.mjs +18 -0
  5. package/es/node_modules/date-fns/esm/_lib/requiredArgs/index.mjs +7 -0
  6. package/es/node_modules/date-fns/esm/compareAsc/index.mjs +56 -0
  7. package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.mjs +53 -0
  8. package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.mjs +39 -0
  9. package/es/node_modules/date-fns/esm/differenceInDays/index.mjs +90 -0
  10. package/es/node_modules/date-fns/esm/differenceInMonths/index.mjs +63 -0
  11. package/es/node_modules/date-fns/esm/endOfDay/index.mjs +34 -0
  12. package/es/node_modules/date-fns/esm/endOfMonth/index.mjs +36 -0
  13. package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.mjs +34 -0
  14. package/es/node_modules/date-fns/esm/startOfDay/index.mjs +34 -0
  15. package/es/node_modules/date-fns/esm/toDate/index.mjs +55 -0
  16. package/es/node_modules/diagram-js/lib/command/CommandInterceptor.mjs +139 -1
  17. package/es/node_modules/diagram-js/lib/draw/BaseRenderer.mjs +88 -1
  18. package/es/node_modules/diagram-js/lib/features/popup-menu/PopupMenu.mjs +572 -1
  19. package/es/node_modules/diagram-js/lib/features/rules/RuleProvider.mjs +88 -1
  20. package/es/node_modules/diagram-js/lib/navigation/movecanvas/MoveCanvas.mjs +120 -1
  21. package/es/node_modules/diagram-js/lib/navigation/movecanvas/index.mjs +8 -1
  22. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomScroll.mjs +227 -1
  23. package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomUtil.mjs +24 -1
  24. package/es/node_modules/diagram-js/lib/util/ClickTrap.mjs +23 -1
  25. package/es/node_modules/diagram-js/lib/util/Cursor.mjs +20 -1
  26. package/es/node_modules/diagram-js/lib/util/Event.mjs +22 -1
  27. package/es/node_modules/diagram-js/lib/util/Math.mjs +9 -1
  28. package/es/node_modules/diagram-js/lib/util/Mouse.mjs +30 -1
  29. package/es/node_modules/diagram-js/lib/util/Platform.mjs +5 -1
  30. package/es/node_modules/diagram-js/lib/util/PositionUtil.mjs +8 -1
  31. package/es/node_modules/diagram-js/lib/util/RenderUtil.mjs +25 -1
  32. package/es/node_modules/diagram-js/lib/util/SvgTransformUtil.mjs +48 -1
  33. package/es/node_modules/ids/dist/index.esm.mjs +164 -1
  34. package/es/node_modules/inherits/inherits.mjs +19 -1
  35. package/es/node_modules/inherits/inherits_browser.mjs +38 -1
  36. package/es/node_modules/inherits-browser/dist/index.es.mjs +3 -1
  37. package/es/node_modules/min-dash/dist/index.esm.mjs +169 -1
  38. package/es/node_modules/min-dom/dist/index.esm.mjs +588 -1
  39. package/es/node_modules/tiny-svg/dist/index.esm.mjs +525 -1
  40. package/es/packages/big-table/index.mjs +1 -1
  41. package/es/packages/big-table/index2.mjs +17 -1
  42. package/es/packages/big-table/src/BigTable.mjs +2 -1
  43. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +2340 -1
  44. package/es/packages/big-table/src/BigTable2.mjs +4 -1
  45. package/es/packages/big-table/src/bigTableEmits.mjs +1 -1
  46. package/es/packages/big-table/src/bigTableEmits2.mjs +49 -1
  47. package/es/packages/big-table/src/bigTableProps.mjs +1 -1
  48. package/es/packages/big-table/src/bigTableProps2.mjs +116 -1
  49. package/es/packages/big-table/src/bigTableState.mjs +1 -1
  50. package/es/packages/big-table/src/bigTableState2.mjs +52 -1
  51. package/es/packages/big-table/src/components/NoData.mjs +2 -1
  52. package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +71 -1
  53. package/es/packages/big-table/src/components/NoData2.mjs +4 -1
  54. package/es/packages/big-table/src/components/edit-form/edit-date.mjs +1 -1
  55. package/es/packages/big-table/src/components/edit-form/edit-date2.mjs +114 -1
  56. package/es/packages/big-table/src/components/edit-form/edit-input.mjs +1 -1
  57. package/es/packages/big-table/src/components/edit-form/edit-input2.mjs +54 -1
  58. package/es/packages/big-table/src/components/edit-form/edit-select-table.d.ts +1 -1
  59. package/es/packages/big-table/src/components/edit-form/edit-select-table.mjs +1 -1
  60. package/es/packages/big-table/src/components/edit-form/edit-select-table2.mjs +148 -1
  61. package/es/packages/big-table/src/components/edit-form/edit-select.mjs +1 -1
  62. package/es/packages/big-table/src/components/edit-form/edit-select2.mjs +89 -1
  63. package/es/packages/big-table/src/hooks/useBatchEditing.mjs +1 -1
  64. package/es/packages/big-table/src/hooks/useBatchEditing2.mjs +289 -1
  65. package/es/packages/big-table/src/hooks/useEdit.mjs +1 -1
  66. package/es/packages/big-table/src/hooks/useEdit2.mjs +115 -1
  67. package/es/packages/big-table/src/hooks/useEvent.mjs +1 -1
  68. package/es/packages/big-table/src/hooks/useEvent2.mjs +70 -1
  69. package/es/packages/big-table/src/hooks/useFormat.mjs +1 -1
  70. package/es/packages/big-table/src/hooks/useFormat2.mjs +484 -1
  71. package/es/packages/big-table/src/hooks/useNestTable.mjs +1 -1
  72. package/es/packages/big-table/src/hooks/useNestTable2.mjs +85 -1
  73. package/es/packages/big-table/src/hooks/useTableParse.mjs +1 -1
  74. package/es/packages/big-table/src/hooks/useTableParse2.mjs +135 -1
  75. package/es/packages/big-table/src/utils.mjs +1 -1
  76. package/es/packages/big-table/src/utils2.mjs +607 -1
  77. package/es/packages/bpmn-workflow/index.mjs +1 -1
  78. package/es/packages/bpmn-workflow/index2.mjs +11 -1
  79. package/es/packages/bpmn-workflow/src/BpmnWorkflow.mjs +2 -1
  80. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.mjs +251 -1
  81. package/es/packages/bpmn-workflow/src/BpmnWorkflow2.mjs +4 -1
  82. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.mjs +1 -1
  83. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer2.mjs +1427 -1
  84. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.mjs +1 -1
  85. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider2.mjs +373 -1
  86. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.mjs +1 -1
  87. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette2.mjs +141 -1
  88. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.mjs +1 -1
  89. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap2.mjs +99 -1
  90. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.mjs +1 -1
  91. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer2.mjs +119 -1
  92. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.mjs +1 -1
  93. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules2.mjs +40 -1
  94. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.mjs +1 -1
  95. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index2.mjs +25 -1
  96. package/es/packages/bpmn-workflow/src/custom/customModeler/index.mjs +1 -1
  97. package/es/packages/bpmn-workflow/src/custom/customModeler/index2.mjs +12 -1
  98. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.mjs +1 -1
  99. package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu2.mjs +47 -1
  100. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.mjs +1 -1
  101. package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer2.mjs +14 -1
  102. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.mjs +1 -1
  103. package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll2.mjs +10 -1
  104. package/es/packages/bpmn-workflow/src/custom/customRules/no-task.mjs +1 -1
  105. package/es/packages/bpmn-workflow/src/custom/customRules/no-task2.mjs +16 -1
  106. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.mjs +1 -1
  107. package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate2.mjs +15 -1
  108. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.mjs +1 -1
  109. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh2.mjs +227 -1
  110. package/es/packages/button-print/index.mjs +1 -1
  111. package/es/packages/button-print/index2.mjs +11 -1
  112. package/es/packages/button-print/src/ButtonPrint.mjs +2 -1
  113. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.mjs +452 -1
  114. package/es/packages/button-print/src/ButtonPrint2.mjs +4 -1
  115. package/es/packages/button-print/src/components/IdentityVerification.mjs +2 -1
  116. package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +52 -103
  117. package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.mjs +127 -1
  118. package/es/packages/button-print/src/components/IdentityVerification2.mjs +4 -1
  119. package/es/packages/button-print/src/utils/print.es.min.mjs +1 -1
  120. package/es/packages/button-print/src/utils/print.es.min2.mjs +2080 -1
  121. package/es/packages/chunk-upload/index.mjs +1 -1
  122. package/es/packages/chunk-upload/index2.mjs +16 -1
  123. package/es/packages/chunk-upload/src/chunk-upload-new.mjs +2 -1
  124. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.mjs +465 -1
  125. package/es/packages/chunk-upload/src/chunk-upload-new2.mjs +4 -1
  126. package/es/packages/chunk-upload/src/hooks/upload-computed.mjs +1 -1
  127. package/es/packages/chunk-upload/src/hooks/upload-computed2.mjs +68 -1
  128. package/es/packages/chunk-upload/src/hooks/upload-data.mjs +1 -1
  129. package/es/packages/chunk-upload/src/hooks/upload-data2.mjs +93 -1
  130. package/es/packages/chunk-upload/src/hooks/vod-computed.mjs +1 -1
  131. package/es/packages/chunk-upload/src/hooks/vod-computed2.mjs +79 -1
  132. package/es/packages/chunk-upload/src/hooks/vod-data.mjs +1 -1
  133. package/es/packages/chunk-upload/src/hooks/vod-data2.mjs +33 -1
  134. package/es/packages/chunk-upload/src/vod-chunk-upload/index.mjs +2 -1
  135. package/es/packages/chunk-upload/src/vod-chunk-upload/index2.mjs +3 -1
  136. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.mjs +2 -1
  137. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.mjs +325 -1
  138. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload2.mjs +4 -1
  139. package/es/packages/chunk-upload/src/vod-upload-modal.mjs +1 -1
  140. package/es/packages/chunk-upload/src/vod-upload-modal2.mjs +95 -1
  141. package/es/packages/drag-layout/index.d.ts +289 -415
  142. package/es/packages/drag-layout/index.mjs +1 -1
  143. package/es/packages/drag-layout/index2.mjs +13 -1
  144. package/es/packages/drag-layout/src/DragFormLeftItem.mjs +2 -1
  145. package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +89 -113
  146. package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.mjs +121 -1
  147. package/es/packages/drag-layout/src/DragFormLeftItem2.mjs +4 -1
  148. package/es/packages/drag-layout/src/DragFormRightItem.mjs +2 -1
  149. package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +77 -95
  150. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.mjs +266 -1
  151. package/es/packages/drag-layout/src/DragFormRightItem2.mjs +4 -1
  152. package/es/packages/drag-layout/src/DragLayout.mjs +2 -1
  153. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +289 -415
  154. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.mjs +658 -1
  155. package/es/packages/drag-layout/src/DragLayout2.mjs +4 -1
  156. package/es/packages/editor/index.mjs +1 -1
  157. package/es/packages/editor/index2.mjs +10 -1
  158. package/es/packages/editor/src/Editor.mjs +1 -1
  159. package/es/packages/editor/src/Editor2.mjs +77 -1
  160. package/es/packages/field-set/index.mjs +1 -1
  161. package/es/packages/field-set/index2.mjs +11 -1
  162. package/es/packages/field-set/src/FieldSet.mjs +2 -1
  163. package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.mjs +329 -1
  164. package/es/packages/field-set/src/FieldSet2.mjs +4 -1
  165. package/es/packages/field-set/src/Index.mjs +2 -0
  166. package/es/packages/field-set/src/Index.vue_vue_type_script_setup_true_lang.mjs +25 -0
  167. package/es/packages/field-set/src/Index2.mjs +4 -0
  168. package/es/packages/field-set/src/NewFieldSet.mjs +2 -0
  169. package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.mjs +298 -0
  170. package/es/packages/field-set/src/NewFieldSet2.mjs +4 -0
  171. package/es/packages/field-set/src/index.vue_vue_type_script_setup_true_lang2.mjs +25 -0
  172. package/es/packages/field-set/src/index3.mjs +4 -0
  173. package/es/packages/form-render/index.mjs +10 -0
  174. package/es/packages/form-render/index2.mjs +15 -0
  175. package/es/packages/form-render/src/FormRender.mjs +2 -0
  176. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +91 -0
  177. package/es/packages/form-render/src/FormRender2.mjs +4 -0
  178. package/es/packages/form-render/src/components/cascader.d.ts +40 -0
  179. package/es/packages/form-render/src/components/cascader.mjs +1 -0
  180. package/es/packages/form-render/src/components/cascader2.mjs +108 -0
  181. package/es/packages/form-render/src/components/checkbox.d.ts +24 -0
  182. package/es/packages/form-render/src/components/checkbox.mjs +1 -0
  183. package/es/packages/form-render/src/components/checkbox2.mjs +42 -0
  184. package/es/packages/form-render/src/components/collapse.d.ts +31 -0
  185. package/es/packages/form-render/src/components/collapse.mjs +1 -0
  186. package/es/packages/form-render/src/components/collapse2.mjs +54 -0
  187. package/es/packages/form-render/src/components/combination.d.ts +142 -0
  188. package/es/packages/form-render/src/components/combination.mjs +1 -0
  189. package/es/packages/form-render/src/components/combination2.mjs +116 -0
  190. package/es/packages/form-render/src/components/date.d.ts +5033 -0
  191. package/es/packages/form-render/src/components/date.mjs +1 -0
  192. package/es/packages/form-render/src/components/date2.mjs +34 -0
  193. package/es/packages/form-render/src/components/formItem.d.ts +292 -0
  194. package/es/packages/form-render/src/components/formItem.mjs +1 -0
  195. package/es/packages/form-render/src/components/formItem2.mjs +22 -0
  196. package/es/packages/form-render/src/components/index.d.ts +15 -0
  197. package/es/packages/form-render/src/components/index.mjs +15 -0
  198. package/es/packages/form-render/src/components/index2.mjs +15 -0
  199. package/es/packages/form-render/src/components/input.d.ts +15 -0
  200. package/es/packages/form-render/src/components/input.mjs +1 -0
  201. package/es/packages/form-render/src/components/input2.mjs +40 -0
  202. package/es/packages/form-render/src/components/inputGroup.d.ts +11 -0
  203. package/es/packages/form-render/src/components/inputGroup.mjs +1 -0
  204. package/es/packages/form-render/src/components/inputGroup2.mjs +8 -0
  205. package/es/packages/{map/src/Map.vue.d.ts → form-render/src/components/inputNumber.d.ts} +1002 -1148
  206. package/es/packages/form-render/src/components/inputNumber.mjs +1 -0
  207. package/es/packages/form-render/src/components/inputNumber2.mjs +7 -0
  208. package/es/packages/form-render/src/components/labelSelect.d.ts +1 -0
  209. package/es/packages/form-render/src/components/labelSelect.mjs +1 -0
  210. package/es/packages/form-render/src/components/labelSelect2.mjs +18 -0
  211. package/es/packages/form-render/src/components/radio.d.ts +24 -0
  212. package/es/packages/form-render/src/components/radio.mjs +1 -0
  213. package/es/packages/form-render/src/components/radio2.mjs +44 -0
  214. package/es/packages/form-render/src/components/select.d.ts +29 -0
  215. package/es/packages/form-render/src/components/select.mjs +1 -0
  216. package/es/packages/form-render/src/components/select2.mjs +97 -0
  217. package/es/packages/form-render/src/components/slider.d.ts +347 -0
  218. package/es/packages/form-render/src/components/slider.mjs +1 -0
  219. package/es/packages/form-render/src/components/slider2.mjs +16 -0
  220. package/es/packages/form-render/src/components/switch.d.ts +21 -0
  221. package/es/packages/form-render/src/components/switch.mjs +1 -0
  222. package/es/packages/form-render/src/components/switch2.mjs +48 -0
  223. package/es/packages/form-render/src/components/textarea.d.ts +845 -0
  224. package/es/packages/form-render/src/components/textarea.mjs +1 -0
  225. package/es/packages/form-render/src/components/textarea2.mjs +11 -0
  226. package/es/packages/form-render/src/constants/index.d.ts +23 -0
  227. package/es/packages/form-render/src/constants/index.mjs +1 -0
  228. package/es/packages/form-render/src/constants/index2.mjs +24 -0
  229. package/es/packages/form-render/src/hooks/index.d.ts +9 -0
  230. package/es/packages/form-render/src/hooks/index.mjs +9 -0
  231. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +60 -0
  232. package/es/packages/form-render/src/hooks/useAsyncQueue.mjs +1 -0
  233. package/es/packages/form-render/src/hooks/useAsyncQueue2.mjs +138 -0
  234. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +13 -0
  235. package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +1 -0
  236. package/es/packages/form-render/src/hooks/useBusinessBinding2.mjs +48 -0
  237. package/es/packages/form-render/src/hooks/useCommonLog.d.ts +3 -0
  238. package/es/packages/form-render/src/hooks/useCommonLog.mjs +1 -0
  239. package/es/packages/form-render/src/hooks/useCommonLog2.mjs +10 -0
  240. package/es/packages/form-render/src/hooks/useFieldList2Schema.d.ts +64 -0
  241. package/es/packages/form-render/src/hooks/useFieldList2Schema.mjs +1 -0
  242. package/es/packages/form-render/src/hooks/useFieldList2Schema2.mjs +184 -0
  243. package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +4 -0
  244. package/es/packages/form-render/src/hooks/useFieldVisitor.mjs +1 -0
  245. package/es/packages/form-render/src/hooks/useFieldVisitor2.mjs +38 -0
  246. package/es/packages/form-render/src/hooks/useFormField.d.ts +4 -0
  247. package/es/packages/form-render/src/hooks/useFormField.mjs +1 -0
  248. package/es/packages/form-render/src/hooks/useFormField2.mjs +9 -0
  249. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +6 -0
  250. package/es/packages/form-render/src/hooks/useFormRequest.mjs +1 -0
  251. package/es/packages/form-render/src/hooks/useFormRequest2.mjs +12 -0
  252. package/es/packages/form-render/src/hooks/useFormValidator.d.ts +5 -0
  253. package/es/packages/form-render/src/hooks/useFormValidator.mjs +1 -0
  254. package/es/packages/form-render/src/hooks/useFormValidator2.mjs +48 -0
  255. package/es/packages/form-render/src/hooks/useTypeNormalize.d.ts +4 -0
  256. package/es/packages/form-render/src/hooks/useTypeNormalize.mjs +1 -0
  257. package/es/packages/form-render/src/hooks/useTypeNormalize2.mjs +37 -0
  258. package/es/packages/form-render/src/types/fieldItem.d.ts +44 -0
  259. package/es/packages/{popper/index.mjs → form-render/src/types/fieldItem.mjs} +0 -0
  260. package/es/packages/form-render/src/types/index.d.ts +26 -0
  261. package/es/packages/{popper → form-render}/src/types/index.mjs +0 -0
  262. package/es/packages/form-render/src/utils/index.d.ts +10 -0
  263. package/es/packages/form-render/src/utils/index.mjs +1 -0
  264. package/es/packages/form-render/src/utils/index2.mjs +59 -0
  265. package/es/packages/form-render/style/index.css +80 -0
  266. package/es/packages/form-render/style/index.less +116 -0
  267. package/es/packages/form-table/index.mjs +1 -1
  268. package/es/packages/form-table/index2.mjs +11 -1
  269. package/es/packages/form-table/src/FormTable.mjs +2 -1
  270. package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.mjs +473 -1
  271. package/es/packages/form-table/src/FormTable2.mjs +4 -1
  272. package/es/packages/form-table/src/components/index.mjs +1 -1
  273. package/es/packages/form-table/src/components/index2.mjs +54 -1
  274. package/es/packages/form-table/src/components/table-age.mjs +2 -1
  275. package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.mjs +231 -1
  276. package/es/packages/form-table/src/components/table-age2.mjs +4 -1
  277. package/es/packages/form-table/src/components/table-date-picker.mjs +2 -1
  278. package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.mjs +177 -1
  279. package/es/packages/form-table/src/components/table-date-picker2.mjs +4 -1
  280. package/es/packages/form-table/src/components/table-digital.mjs +2 -1
  281. package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.mjs +137 -1
  282. package/es/packages/form-table/src/components/table-digital2.mjs +4 -1
  283. package/es/packages/form-table/src/components/table-input-password.mjs +2 -1
  284. package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.mjs +137 -1
  285. package/es/packages/form-table/src/components/table-input-password2.mjs +4 -1
  286. package/es/packages/form-table/src/components/table-input.mjs +2 -1
  287. package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.mjs +123 -1
  288. package/es/packages/form-table/src/components/table-input2.mjs +4 -1
  289. package/es/packages/form-table/src/components/table-month-picker.mjs +2 -1
  290. package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.mjs +98 -1
  291. package/es/packages/form-table/src/components/table-month-picker2.mjs +4 -1
  292. package/es/packages/form-table/src/components/table-search-more.mjs +2 -1
  293. package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.mjs +275 -1
  294. package/es/packages/form-table/src/components/table-search-more2.mjs +4 -1
  295. package/es/packages/form-table/src/components/table-search.mjs +2 -1
  296. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.mjs +275 -1
  297. package/es/packages/form-table/src/components/table-search2.mjs +4 -1
  298. package/es/packages/form-table/src/components/table-select-multiple.mjs +2 -1
  299. package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.mjs +159 -1
  300. package/es/packages/form-table/src/components/table-select-multiple2.mjs +4 -1
  301. package/es/packages/form-table/src/components/table-select.mjs +2 -1
  302. package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.mjs +154 -1
  303. package/es/packages/form-table/src/components/table-select2.mjs +4 -1
  304. package/es/packages/form-table/src/components/table-textarea.mjs +2 -1
  305. package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.mjs +152 -1
  306. package/es/packages/form-table/src/components/table-textarea2.mjs +4 -1
  307. package/es/packages/form-table/src/components/table-time-picker.mjs +2 -1
  308. package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.mjs +144 -1
  309. package/es/packages/form-table/src/components/table-time-picker2.mjs +4 -1
  310. package/es/packages/form-table/src/components/table-tree-select.mjs +2 -1
  311. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.mjs +278 -1
  312. package/es/packages/form-table/src/components/table-tree-select2.mjs +4 -1
  313. package/es/packages/form-table/src/components/text-over-tooltip.mjs +2 -1
  314. package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.mjs +61 -1
  315. package/es/packages/form-table/src/components/text-over-tooltip2.mjs +4 -1
  316. package/es/packages/form-table/src/configs/index.mjs +1 -1
  317. package/es/packages/form-table/src/configs/index2.mjs +74 -1
  318. package/es/packages/form-table/src/hooks/index.mjs +5 -1
  319. package/es/packages/form-table/src/hooks/useBoundDate.mjs +1 -1
  320. package/es/packages/form-table/src/hooks/useBoundDate2.mjs +411 -1
  321. package/es/packages/form-table/src/hooks/useDateType.mjs +1 -1
  322. package/es/packages/form-table/src/hooks/useDateType2.mjs +160 -1
  323. package/es/packages/form-table/src/hooks/useFormCommon.mjs +1 -1
  324. package/es/packages/form-table/src/hooks/useFormCommon2.mjs +95 -1
  325. package/es/packages/form-table/src/hooks/useFormEvent.mjs +1 -1
  326. package/es/packages/form-table/src/hooks/useFormEvent2.mjs +71 -1
  327. package/es/packages/form-table/src/hooks/useItemDefault.mjs +1 -1
  328. package/es/packages/form-table/src/hooks/useItemDefault2.mjs +218 -1
  329. package/es/packages/form-table/src/hooks/useSearch.mjs +1 -1
  330. package/es/packages/form-table/src/hooks/useSearch2.mjs +1216 -1
  331. package/es/packages/form-table/src/hooks/useValidate.mjs +1 -1
  332. package/es/packages/form-table/src/hooks/useValidate2.mjs +480 -1
  333. package/es/packages/grid/index.mjs +1 -1
  334. package/es/packages/grid/index2.mjs +14 -1
  335. package/es/packages/grid/src/Grid.mjs +1 -1
  336. package/es/packages/grid/src/Grid2.mjs +28 -1
  337. package/es/packages/grid/src/hooks.mjs +1 -1
  338. package/es/packages/grid/src/hooks2.mjs +165 -1
  339. package/es/packages/index.css +214 -1
  340. package/es/packages/index.d.ts +5 -2
  341. package/es/packages/index.less +286 -1
  342. package/es/packages/index.mjs +26 -1
  343. package/es/packages/index2.mjs +64 -1
  344. package/es/packages/info-header/index.mjs +1 -1
  345. package/es/packages/info-header/index2.mjs +11 -1
  346. package/es/packages/info-header/src/HiddenContent.mjs +2 -0
  347. package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.mjs +60 -0
  348. package/es/packages/info-header/src/HiddenContent2.mjs +4 -0
  349. package/es/packages/info-header/src/InfoHeader.mjs +2 -0
  350. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.mjs +217 -0
  351. package/es/packages/info-header/src/InfoHeader2.mjs +4 -0
  352. package/es/packages/info-header/src/SlotRender.d.ts +22 -0
  353. package/es/packages/info-header/src/SlotRender.mjs +1 -0
  354. package/es/packages/info-header/src/SlotRender2.mjs +35 -0
  355. package/es/packages/info-header/style/index.css +3 -0
  356. package/es/packages/info-header/style/index.less +5 -1
  357. package/es/packages/map/index.mjs +1 -1
  358. package/es/packages/map/index2.mjs +11 -1
  359. package/es/packages/map/src/Map.mjs +2 -1
  360. package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.mjs +335 -1
  361. package/es/packages/map/src/Map2.mjs +4 -1
  362. package/es/packages/scale-view/index.mjs +1 -1
  363. package/es/packages/scale-view/index2.mjs +37 -1
  364. package/es/packages/scale-view/src/ScaleView.mjs +2 -1
  365. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.mjs +372 -1
  366. package/es/packages/scale-view/src/ScaleView2.mjs +4 -1
  367. package/es/packages/scale-view/src/components/AnswerParse.mjs +2 -1
  368. package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.mjs +77 -1
  369. package/es/packages/scale-view/src/components/AnswerParse2.mjs +4 -1
  370. package/es/packages/scale-view/src/components/EvaluateCountdown.mjs +2 -1
  371. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.mjs +108 -1
  372. package/es/packages/scale-view/src/components/EvaluateCountdown2.mjs +4 -1
  373. package/es/packages/scale-view/src/components/EvaluatePage.mjs +2 -1
  374. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.mjs +138 -1
  375. package/es/packages/scale-view/src/components/EvaluatePage2.mjs +4 -1
  376. package/es/packages/scale-view/src/components/NoData.mjs +2 -1
  377. package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +71 -1
  378. package/es/packages/scale-view/src/components/NoData2.mjs +4 -1
  379. package/es/packages/scale-view/src/components/ScaleScore.mjs +1 -1
  380. package/es/packages/scale-view/src/components/ScaleScore2.mjs +63 -1
  381. package/es/packages/scale-view/src/components/composables/choose-common.d.ts +1 -1
  382. package/es/packages/scale-view/src/components/composables/choose-common.mjs +1 -1
  383. package/es/packages/scale-view/src/components/composables/choose-common2.mjs +78 -1
  384. package/es/packages/scale-view/src/components/formitem/address.mjs +1 -1
  385. package/es/packages/scale-view/src/components/formitem/address2.mjs +3993 -1
  386. package/es/packages/scale-view/src/components/formitem/r-address.mjs +1 -1
  387. package/es/packages/scale-view/src/components/formitem/r-address2.mjs +225 -1
  388. package/es/packages/scale-view/src/components/formitem/r-cascader.mjs +1 -1
  389. package/es/packages/scale-view/src/components/formitem/r-cascader2.mjs +121 -1
  390. package/es/packages/scale-view/src/components/formitem/r-checkbox.mjs +1 -1
  391. package/es/packages/scale-view/src/components/formitem/r-checkbox2.mjs +228 -1
  392. package/es/packages/scale-view/src/components/formitem/r-collection.mjs +1 -1
  393. package/es/packages/scale-view/src/components/formitem/r-collection2.mjs +111 -1
  394. package/es/packages/scale-view/src/components/formitem/r-datetime.mjs +1 -1
  395. package/es/packages/scale-view/src/components/formitem/r-datetime2.mjs +198 -1
  396. package/es/packages/scale-view/src/components/formitem/r-input.mjs +1 -1
  397. package/es/packages/scale-view/src/components/formitem/r-input2.mjs +88 -1
  398. package/es/packages/scale-view/src/components/formitem/r-map.mjs +1 -1
  399. package/es/packages/scale-view/src/components/formitem/r-map2.mjs +104 -1
  400. package/es/packages/scale-view/src/components/formitem/r-radio.mjs +1 -1
  401. package/es/packages/scale-view/src/components/formitem/r-radio2.mjs +220 -1
  402. package/es/packages/scale-view/src/components/formitem/r-select.mjs +1 -1
  403. package/es/packages/scale-view/src/components/formitem/r-select2.mjs +134 -1
  404. package/es/packages/scale-view/src/components/formitem/r-upload.mjs +1 -1
  405. package/es/packages/scale-view/src/components/formitem/r-upload2.mjs +210 -1
  406. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.mjs +2 -1
  407. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +2 -3
  408. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +77 -1
  409. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip2.mjs +4 -1
  410. package/es/packages/scale-view/src/hooks/scaleview-computed.mjs +1 -1
  411. package/es/packages/scale-view/src/hooks/scaleview-computed2.mjs +300 -1
  412. package/es/packages/scale-view/src/hooks/scaleview-init.mjs +1 -1
  413. package/es/packages/scale-view/src/hooks/scaleview-init2.mjs +441 -1
  414. package/es/packages/scale-view/src/hooks/scaleview-props.mjs +1 -1
  415. package/es/packages/scale-view/src/hooks/scaleview-props2.mjs +56 -1
  416. package/es/packages/scale-view/src/hooks/scaleview-state.mjs +1 -1
  417. package/es/packages/scale-view/src/hooks/scaleview-state2.mjs +42 -1
  418. package/es/packages/scale-view/src/hooks/scaleview-submit.mjs +1 -1
  419. package/es/packages/scale-view/src/hooks/scaleview-submit2.mjs +162 -1
  420. package/es/packages/scale-view/src/hooks/scaleview-validate.mjs +1 -1
  421. package/es/packages/scale-view/src/hooks/scaleview-validate2.mjs +164 -1
  422. package/es/packages/scale-view/src/hooks/use-component.mjs +1 -1
  423. package/es/packages/scale-view/src/hooks/use-component2.mjs +80 -1
  424. package/es/packages/scale-view/src/hooks/use-evaluate.mjs +1 -1
  425. package/es/packages/scale-view/src/hooks/use-evaluate2.mjs +150 -1
  426. package/es/packages/scale-view/src/hooks/use-event.d.ts +1 -1
  427. package/es/packages/scale-view/src/hooks/use-event.mjs +1 -1
  428. package/es/packages/scale-view/src/hooks/use-event2.mjs +128 -1
  429. package/es/packages/scale-view/src/hooks/use-noData.mjs +1 -1
  430. package/es/packages/scale-view/src/hooks/use-noData2.mjs +41 -1
  431. package/es/packages/scale-view/src/utils/judge-types.mjs +1 -1
  432. package/es/packages/scale-view/src/utils/judge-types2.mjs +40 -1
  433. package/es/packages/scale-view/style/index.css +13 -1
  434. package/es/packages/scale-view/style/index.less +15 -1
  435. package/es/packages/select-label/index.mjs +1 -1
  436. package/es/packages/select-label/index2.mjs +17 -1
  437. package/es/packages/select-label/src/LabelFormContent.mjs +2 -1
  438. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +94 -296
  439. package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.mjs +441 -1
  440. package/es/packages/select-label/src/LabelFormContent2.mjs +4 -1
  441. package/es/packages/select-label/src/SelectLabel.mjs +2 -1
  442. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.mjs +433 -1
  443. package/es/packages/select-label/src/SelectLabel2.mjs +4 -1
  444. package/es/packages/select-label/src/components/label-classify.mjs +2 -1
  445. package/es/packages/select-label/src/components/label-classify.vue.d.ts +66 -229
  446. package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.mjs +123 -1
  447. package/es/packages/select-label/src/components/label-classify2.mjs +4 -1
  448. package/es/packages/select-person/index.mjs +1 -1
  449. package/es/packages/select-person/index2.mjs +11 -1
  450. package/es/packages/select-person/src/SearchTree.mjs +2 -1
  451. package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.mjs +232 -1
  452. package/es/packages/select-person/src/SearchTree2.mjs +4 -1
  453. package/es/packages/select-person/src/SelectPerson.mjs +2 -1
  454. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +894 -1
  455. package/es/packages/select-person/src/SelectPerson2.mjs +4 -1
  456. package/es/packages/select-person/src/utils/index.d.ts +8 -8
  457. package/es/packages/select-person/src/utils/index.mjs +1 -1
  458. package/es/packages/select-person/src/utils/index2.mjs +57 -1
  459. package/es/packages/time-line/index.d.ts +28 -28
  460. package/es/packages/time-line/index.mjs +1 -1
  461. package/es/packages/time-line/index2.mjs +11 -1
  462. package/es/packages/time-line/src/TimeLine.mjs +2 -1
  463. package/es/packages/time-line/src/TimeLine.vue.d.ts +28 -28
  464. package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.mjs +62 -1
  465. package/es/packages/time-line/src/TimeLine2.mjs +4 -1
  466. package/es/src/components/SelectPage/SelectPage.mjs +2 -1
  467. package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.mjs +60 -1
  468. package/es/src/components/SelectPage/SelectPage2.mjs +4 -1
  469. package/es/src/components/SelectPage/index.mjs +2 -1
  470. package/es/src/components/SelectPage/index2.mjs +3 -1
  471. package/es/src/components/SvgIcon/SvgIcon.mjs +2 -1
  472. package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.mjs +33 -1
  473. package/es/src/components/SvgIcon/SvgIcon2.mjs +4 -1
  474. package/es/src/components/SvgIcon/index.mjs +2 -1
  475. package/es/src/components/SvgIcon/index2.mjs +3 -1
  476. package/es/src/components/TextOverTooltip/TextOverTooltip.mjs +2 -1
  477. package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +2 -3
  478. package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +73 -1
  479. package/es/src/components/TextOverTooltip/TextOverTooltip2.mjs +4 -1
  480. package/es/src/components/TextOverTooltip/index.mjs +2 -1
  481. package/es/src/components/TextOverTooltip/index2.mjs +3 -1
  482. package/es/src/components/player-vod/index.mjs +2 -1
  483. package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.mjs +11 -1
  484. package/es/src/components/player-vod/index2.mjs +4 -1
  485. package/es/src/components/player-vod/player.mjs +1 -1
  486. package/es/src/components/player-vod/player2.mjs +121 -1
  487. package/es/src/components/player-vod/video-list.mjs +1 -1
  488. package/es/src/components/player-vod/video-list2.mjs +125 -1
  489. package/es/src/components/player-vod/video-modal.mjs +1 -1
  490. package/es/src/components/player-vod/video-modal2.mjs +91 -1
  491. package/es/src/core/create.mjs +1 -1
  492. package/es/src/core/create2.mjs +8 -1
  493. package/es/src/global/variable.mjs +1 -1
  494. package/es/src/global/variable2.mjs +4 -1
  495. package/es/src/utils/anime.d.ts +35 -0
  496. package/es/src/utils/anime.mjs +1 -0
  497. package/es/src/utils/anime2.mjs +126 -0
  498. package/es/src/utils/clickoutside.mjs +1 -1
  499. package/es/src/utils/clickoutside2.mjs +48 -1
  500. package/es/src/utils/crypto.mjs +1 -1
  501. package/es/src/utils/crypto2.mjs +25 -1
  502. package/es/src/utils/index.d.ts +0 -2
  503. package/es/src/utils/index.mjs +1 -1
  504. package/es/src/utils/index2.mjs +19 -1
  505. package/es/src/utils/loadViewer.d.ts +2 -0
  506. package/es/src/utils/loadViewer.mjs +1 -0
  507. package/es/src/utils/loadViewer2.mjs +11 -0
  508. package/es/src/utils/loadVxe.d.ts +2 -0
  509. package/es/src/utils/loadVxe.mjs +1 -0
  510. package/es/src/utils/loadVxe2.mjs +12 -0
  511. package/es/src/utils/utilExpand.d.ts +1 -0
  512. package/es/src/utils/utilExpand.mjs +1 -0
  513. package/es/src/utils/utilExpand2.mjs +714 -0
  514. package/es/src/utils/vexutils.mjs +3 -1
  515. package/es/src/utils/vexutils2.mjs +80 -1
  516. package/md-plugin.ts +201 -0
  517. package/package.json +125 -122
  518. package/uno.config.ts +22 -0
  519. package/.prettierrc.js +0 -23
  520. package/es/packages/big-table/index.d.ts +0 -2044
  521. package/es/packages/big-table/src/BigTable.vue.d.ts +0 -2043
  522. package/es/packages/big-table/src/components/NoData.vue.d.ts +0 -51
  523. package/es/packages/bpmn-workflow/index.d.ts +0 -74
  524. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +0 -77
  525. package/es/packages/button-print/index.d.ts +0 -7373
  526. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +0 -7372
  527. package/es/packages/chunk-upload/index.d.ts +0 -1748
  528. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +0 -1905
  529. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +0 -1749
  530. package/es/packages/field-set/index.d.ts +0 -2647
  531. package/es/packages/field-set/src/FieldSet.vue.d.ts +0 -2599
  532. package/es/packages/form-table/index.d.ts +0 -35903
  533. package/es/packages/form-table/src/FormTable.vue.d.ts +0 -35912
  534. package/es/packages/form-table/src/components/index.d.ts +0 -35662
  535. package/es/packages/form-table/src/components/table-age.vue.d.ts +0 -4305
  536. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +0 -5286
  537. package/es/packages/form-table/src/components/table-digital.vue.d.ts +0 -2916
  538. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +0 -1622
  539. package/es/packages/form-table/src/components/table-input.vue.d.ts +0 -1579
  540. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +0 -5229
  541. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +0 -1785
  542. package/es/packages/form-table/src/components/table-search.vue.d.ts +0 -3111
  543. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +0 -1567
  544. package/es/packages/form-table/src/components/table-select.vue.d.ts +0 -1566
  545. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +0 -1638
  546. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +0 -2673
  547. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +0 -1883
  548. package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +0 -543
  549. package/es/packages/info-header/index.d.ts +0 -1827
  550. package/es/packages/info-header/src/hidden-content.mjs +0 -1
  551. package/es/packages/info-header/src/hidden-content.vue.d.ts +0 -363
  552. package/es/packages/info-header/src/hidden-content.vue_vue_type_script_setup_true_lang.mjs +0 -1
  553. package/es/packages/info-header/src/hidden-content2.mjs +0 -1
  554. package/es/packages/info-header/src/info-header.mjs +0 -1
  555. package/es/packages/info-header/src/info-header.vue.d.ts +0 -1828
  556. package/es/packages/info-header/src/info-header.vue_vue_type_script_setup_true_lang.mjs +0 -1
  557. package/es/packages/info-header/src/info-header2.mjs +0 -1
  558. package/es/packages/map/index.d.ts +0 -2313
  559. package/es/packages/popper/index.d.ts +0 -0
  560. package/es/packages/popper/src/components/popover.mjs +0 -1
  561. package/es/packages/popper/src/components/popover.vue.d.ts +0 -33
  562. package/es/packages/popper/src/components/popover.vue_vue_type_script_setup_true_lang.mjs +0 -1
  563. package/es/packages/popper/src/components/popover2.mjs +0 -1
  564. package/es/packages/popper/src/hooks/useAutoHidden.d.ts +0 -8
  565. package/es/packages/popper/src/hooks/useAutoHidden.mjs +0 -1
  566. package/es/packages/popper/src/hooks/useAutoHidden2.mjs +0 -1
  567. package/es/packages/popper/src/types/index.d.ts +0 -1
  568. package/es/packages/scale-view/index.d.ts +0 -4297
  569. package/es/packages/scale-view/src/ScaleView.vue.d.ts +0 -4141
  570. package/es/packages/scale-view/src/components/AnswerParse.vue.d.ts +0 -72
  571. package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +0 -150
  572. package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +0 -1503
  573. package/es/packages/scale-view/src/components/NoData.vue.d.ts +0 -51
  574. package/es/packages/scale-view/src/hooks/use-component.d.ts +0 -2673
  575. package/es/packages/select-label/index.d.ts +0 -12091
  576. package/es/packages/select-label/src/SelectLabel.vue.d.ts +0 -7526
  577. package/es/packages/select-person/index.d.ts +0 -3500
  578. package/es/packages/select-person/src/SearchTree.vue.d.ts +0 -344
  579. package/es/packages/select-person/src/SelectPerson.vue.d.ts +0 -3501
  580. package/es/src/components/SelectPage/SelectPage.vue.d.ts +0 -1446
@@ -1,2673 +0,0 @@
1
- import { AnyObject, Func } from 'cnhis-design-vue/es/src/types';
2
- import { PropType } from 'vue';
3
- import { PropObject } from 'cnhis-design-vue/es/packages/form-table/src/types';
4
- declare const _default: import("vue").DefineComponent<{
5
- mainForm: {
6
- type: PropObject;
7
- default: () => {};
8
- };
9
- userInfo: {
10
- type: PropObject;
11
- default: () => {};
12
- };
13
- styleSetting: {
14
- type: PropObject;
15
- default: () => {};
16
- };
17
- defaultValue: {
18
- type: PropObject;
19
- default: () => {};
20
- };
21
- dbParams: {
22
- type: PropType<AnyObject>;
23
- };
24
- row: {
25
- type: PropObject;
26
- default: () => {};
27
- };
28
- item: {
29
- type: PropObject;
30
- default: () => {
31
- _own: {};
32
- };
33
- };
34
- defaultFieldList: {
35
- type: PropType<any[]>;
36
- default: () => never[];
37
- };
38
- cacheUniqueKey: {
39
- type: PropObject;
40
- default: () => {
41
- _own: {};
42
- };
43
- };
44
- params_formId: (NumberConstructor | StringConstructor)[];
45
- formType: {
46
- type: PropObject;
47
- default: () => {
48
- _own: {};
49
- };
50
- };
51
- isDetail: {
52
- type: BooleanConstructor;
53
- default: boolean;
54
- };
55
- handleFormTableValue: PropType<Func<any[], any>>;
56
- }, {
57
- open: import("vue").Ref<boolean>;
58
- disabledDatePicker: (current: any, item: AnyObject) => any;
59
- disabledTimePicker: (current: any, item: AnyObject) => {
60
- disabledHours: () => never[];
61
- disabledMinutes: () => never[];
62
- disabledSeconds: () => never[];
63
- } | undefined;
64
- openTimeChange: (open: any, item: AnyObject) => void;
65
- disabledHours: (item: AnyObject, type: string) => (() => never[]) | undefined;
66
- disabledMethodTimeRange: (item: AnyObject) => void;
67
- handleCompareTimeRange: (time: any, item: AnyObject, type: string) => {};
68
- range: (start: number, end: number) => never[];
69
- openDateChange: (open: any, item: AnyObject) => void;
70
- $message: import("naive-ui").MessageApi;
71
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
72
- mainForm: {
73
- type: PropObject;
74
- default: () => {};
75
- };
76
- userInfo: {
77
- type: PropObject;
78
- default: () => {};
79
- };
80
- styleSetting: {
81
- type: PropObject;
82
- default: () => {};
83
- };
84
- defaultValue: {
85
- type: PropObject;
86
- default: () => {};
87
- };
88
- dbParams: {
89
- type: PropType<AnyObject>;
90
- };
91
- row: {
92
- type: PropObject;
93
- default: () => {};
94
- };
95
- item: {
96
- type: PropObject;
97
- default: () => {
98
- _own: {};
99
- };
100
- };
101
- defaultFieldList: {
102
- type: PropType<any[]>;
103
- default: () => never[];
104
- };
105
- cacheUniqueKey: {
106
- type: PropObject;
107
- default: () => {
108
- _own: {};
109
- };
110
- };
111
- params_formId: (NumberConstructor | StringConstructor)[];
112
- formType: {
113
- type: PropObject;
114
- default: () => {
115
- _own: {};
116
- };
117
- };
118
- isDetail: {
119
- type: BooleanConstructor;
120
- default: boolean;
121
- };
122
- handleFormTableValue: PropType<Func<any[], any>>;
123
- }>> & {
124
- onTableBlur?: ((...args: any[]) => any) | undefined;
125
- onValueOnChange?: ((...args: any[]) => any) | undefined;
126
- onHandlerAddOptions?: ((...args: any[]) => any) | undefined;
127
- onOpentableSelect?: ((...args: any[]) => any) | undefined;
128
- }>>;
129
- emit: (event: "tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect", ...args: any[]) => void;
130
- $t: () => void;
131
- formTable: AnyObject;
132
- handlerGetDateType: (data: AnyObject) => any;
133
- hasErr: import("vue").ComputedRef<any>;
134
- handleGetJsonStr: (str: string | AnyObject) => AnyObject;
135
- handleSetFieldsValue: (setObj?: AnyObject, target?: any) => void;
136
- handleGetUniqueKey: (id: string) => any;
137
- handleSysParams: (str: string) => string;
138
- defaultInit: () => void;
139
- handleTableBlur: (e?: AnyObject | undefined, config?: AnyObject) => void;
140
- handleFormParams: (str: string) => string;
141
- radioColor: () => (p: AnyObject, isOnlyRead?: boolean | undefined) => any;
142
- handleGetAgeUnit: (ageInfo?: AnyObject) => string | undefined;
143
- handleAgeToBirthDay: (val: number, f: string, item: AnyObject) => void;
144
- changeAgeSelect: (val: string, item: AnyObject) => void;
145
- handlerSetIdCarInfoValidate: (value: any, item: AnyObject, callback: Func<any[], any>) => void;
146
- getInputCheck: (validate?: string | undefined) => {
147
- pattern: RegExp;
148
- message: string;
149
- } | undefined;
150
- getCustomRegular: (item: AnyObject) => {
151
- pattern: RegExp;
152
- message: any;
153
- } | null;
154
- checkDigital: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
155
- checkAgeJson: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
156
- checkAge: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
157
- checkMultipleChoice: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
158
- checkLength: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
159
- checkinputBlank: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
160
- checkSearchCascade: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
161
- checkMultipleTree: import("cnhis-design-vue/es/packages/form-table/src/types").ValidateFunc;
162
- handleDateClearBtn: (v: any, item: AnyObject) => void;
163
- handleStartDateEndDate: (item: AnyObject) => void;
164
- showTimePanel: (item: AnyObject) => boolean;
165
- momentLib: (date_format: string) => any;
166
- judgeTimeBoundary: (time: any, item: AnyObject) => void;
167
- setTimeValue: (time: any, item: AnyObject) => void;
168
- judgeTimeRange: (time: any, item: AnyObject) => AnyObject | undefined;
169
- isSameDate: (curDate: any, compareMin: any, compareMax: any) => AnyObject;
170
- setDefaultCurrent: (compareItem: AnyObject, currTime: any) => void;
171
- handleDefaultRimeRange: (time: any, item: AnyObject) => void;
172
- judgeMinMaxDateIsSameDate: (item: AnyObject) => boolean;
173
- handleDefaultTimeRange: (time: any, item: any, chooseDate?: any) => {};
174
- changeTimeDate: (time: any, minTime: any, maxTime: any, item: AnyObject) => {};
175
- setTimeRangeArr: (hMin: any, HMax: any, mMin: any, mMax: any, sMin: any, sMax: any) => Required<Partial<Record<"hArr" | "mArr" | "sArr", [any, any]>>>;
176
- NTimePicker: import("vue").DefineComponent<{
177
- to: {
178
- type: PropType<string | boolean | HTMLElement>;
179
- default: undefined;
180
- };
181
- bordered: {
182
- type: PropType<boolean | undefined>;
183
- default: undefined;
184
- };
185
- actions: PropType<("confirm" | "now")[] | null>;
186
- defaultValue: {
187
- type: PropType<number | null>;
188
- default: null;
189
- };
190
- defaultFormattedValue: StringConstructor;
191
- placeholder: StringConstructor;
192
- placement: {
193
- type: PropType<import("naive-ui").PopoverPlacement>;
194
- default: string;
195
- };
196
- value: PropType<number | null>;
197
- format: {
198
- type: StringConstructor;
199
- default: string;
200
- };
201
- valueFormat: StringConstructor;
202
- formattedValue: PropType<string | null>;
203
- isHourDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsHourDisabled>;
204
- size: PropType<import("naive-ui/es/time-picker/src/interface").Size>;
205
- isMinuteDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsMinuteDisabled>;
206
- isSecondDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsSecondDisabled>;
207
- inputReadonly: BooleanConstructor;
208
- clearable: BooleanConstructor;
209
- status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
210
- 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue>>;
211
- onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue>>;
212
- 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(show: boolean) => void>>;
213
- onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(show: boolean) => void>>;
214
- onUpdateFormattedValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateFormattedValue>>;
215
- 'onUpdate:formattedValue': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateFormattedValue>>;
216
- onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
217
- onConfirm: PropType<import("naive-ui/es/_utils").MaybeArray<(value: never, formattedValue: never) => void>>;
218
- onClear: PropType<() => void>;
219
- onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
220
- timeZone: StringConstructor;
221
- showIcon: {
222
- type: BooleanConstructor;
223
- default: boolean;
224
- };
225
- disabled: {
226
- type: PropType<boolean | undefined>;
227
- default: undefined;
228
- };
229
- show: {
230
- type: PropType<boolean | undefined>;
231
- default: undefined;
232
- };
233
- hours: {
234
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
235
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
236
- };
237
- minutes: {
238
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
239
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
240
- };
241
- seconds: {
242
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
243
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
244
- };
245
- use12Hours: BooleanConstructor;
246
- stateful: {
247
- type: BooleanConstructor;
248
- default: boolean;
249
- };
250
- onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue> | undefined>;
251
- theme: PropType<import("naive-ui/es/_mixins").Theme<"TimePicker", {
252
- panelColor: string;
253
- panelBoxShadow: string;
254
- panelDividerColor: string;
255
- itemTextColor: string;
256
- itemTextColorActive: string;
257
- itemColorHover: string;
258
- itemOpacityDisabled: string;
259
- itemBorderRadius: string;
260
- borderRadius: string;
261
- iconColor: string;
262
- iconColorDisabled: string;
263
- itemFontSize: string;
264
- itemHeight: string;
265
- itemWidth: string;
266
- panelActionPadding: string;
267
- }, {
268
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
269
- color: string;
270
- colorHover: string;
271
- }, any>;
272
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
273
- heightTiny: string;
274
- heightSmall: string;
275
- heightMedium: string;
276
- heightLarge: string;
277
- borderRadiusTiny: string;
278
- borderRadiusSmall: string;
279
- borderRadiusMedium: string;
280
- borderRadiusLarge: string;
281
- fontSizeTiny: string;
282
- fontSizeSmall: string;
283
- fontSizeMedium: string;
284
- fontSizeLarge: string;
285
- opacityDisabled: string;
286
- colorOpacitySecondary: string;
287
- colorOpacitySecondaryHover: string;
288
- colorOpacitySecondaryPressed: string;
289
- colorSecondary: string;
290
- colorSecondaryHover: string;
291
- colorSecondaryPressed: string;
292
- colorTertiary: string;
293
- colorTertiaryHover: string;
294
- colorTertiaryPressed: string;
295
- colorQuaternary: string;
296
- colorQuaternaryHover: string;
297
- colorQuaternaryPressed: string;
298
- color: string;
299
- colorHover: string;
300
- colorPressed: string;
301
- colorFocus: string;
302
- colorDisabled: string;
303
- textColor: string;
304
- textColorTertiary: string;
305
- textColorHover: string;
306
- textColorPressed: string;
307
- textColorFocus: string;
308
- textColorDisabled: string;
309
- textColorText: string;
310
- textColorTextHover: string;
311
- textColorTextPressed: string;
312
- textColorTextFocus: string;
313
- textColorTextDisabled: string;
314
- textColorGhost: string;
315
- textColorGhostHover: string;
316
- textColorGhostPressed: string;
317
- textColorGhostFocus: string;
318
- textColorGhostDisabled: string;
319
- border: string;
320
- borderHover: string;
321
- borderPressed: string;
322
- borderFocus: string;
323
- borderDisabled: string;
324
- rippleColor: string;
325
- colorPrimary: string;
326
- colorHoverPrimary: string;
327
- colorPressedPrimary: string;
328
- colorFocusPrimary: string;
329
- colorDisabledPrimary: string;
330
- textColorPrimary: string;
331
- textColorHoverPrimary: string;
332
- textColorPressedPrimary: string;
333
- textColorFocusPrimary: string;
334
- textColorDisabledPrimary: string;
335
- textColorTextPrimary: string;
336
- textColorTextHoverPrimary: string;
337
- textColorTextPressedPrimary: string;
338
- textColorTextFocusPrimary: string;
339
- textColorTextDisabledPrimary: string;
340
- textColorGhostPrimary: string;
341
- textColorGhostHoverPrimary: string;
342
- textColorGhostPressedPrimary: string;
343
- textColorGhostFocusPrimary: string;
344
- textColorGhostDisabledPrimary: string;
345
- borderPrimary: string;
346
- borderHoverPrimary: string;
347
- borderPressedPrimary: string;
348
- borderFocusPrimary: string;
349
- borderDisabledPrimary: string;
350
- rippleColorPrimary: string;
351
- colorInfo: string;
352
- colorHoverInfo: string;
353
- colorPressedInfo: string;
354
- colorFocusInfo: string;
355
- colorDisabledInfo: string;
356
- textColorInfo: string;
357
- textColorHoverInfo: string;
358
- textColorPressedInfo: string;
359
- textColorFocusInfo: string;
360
- textColorDisabledInfo: string;
361
- textColorTextInfo: string;
362
- textColorTextHoverInfo: string;
363
- textColorTextPressedInfo: string;
364
- textColorTextFocusInfo: string;
365
- textColorTextDisabledInfo: string;
366
- textColorGhostInfo: string;
367
- textColorGhostHoverInfo: string;
368
- textColorGhostPressedInfo: string;
369
- textColorGhostFocusInfo: string;
370
- textColorGhostDisabledInfo: string;
371
- borderInfo: string;
372
- borderHoverInfo: string;
373
- borderPressedInfo: string;
374
- borderFocusInfo: string;
375
- borderDisabledInfo: string;
376
- rippleColorInfo: string;
377
- colorSuccess: string;
378
- colorHoverSuccess: string;
379
- colorPressedSuccess: string;
380
- colorFocusSuccess: string;
381
- colorDisabledSuccess: string;
382
- textColorSuccess: string;
383
- textColorHoverSuccess: string;
384
- textColorPressedSuccess: string;
385
- textColorFocusSuccess: string;
386
- textColorDisabledSuccess: string;
387
- textColorTextSuccess: string;
388
- textColorTextHoverSuccess: string;
389
- textColorTextPressedSuccess: string;
390
- textColorTextFocusSuccess: string;
391
- textColorTextDisabledSuccess: string;
392
- textColorGhostSuccess: string;
393
- textColorGhostHoverSuccess: string;
394
- textColorGhostPressedSuccess: string;
395
- textColorGhostFocusSuccess: string;
396
- textColorGhostDisabledSuccess: string;
397
- borderSuccess: string;
398
- borderHoverSuccess: string;
399
- borderPressedSuccess: string;
400
- borderFocusSuccess: string;
401
- borderDisabledSuccess: string;
402
- rippleColorSuccess: string;
403
- colorWarning: string;
404
- colorHoverWarning: string;
405
- colorPressedWarning: string;
406
- colorFocusWarning: string;
407
- colorDisabledWarning: string;
408
- textColorWarning: string;
409
- textColorHoverWarning: string;
410
- textColorPressedWarning: string;
411
- textColorFocusWarning: string;
412
- textColorDisabledWarning: string;
413
- textColorTextWarning: string;
414
- textColorTextHoverWarning: string;
415
- textColorTextPressedWarning: string;
416
- textColorTextFocusWarning: string;
417
- textColorTextDisabledWarning: string;
418
- textColorGhostWarning: string;
419
- textColorGhostHoverWarning: string;
420
- textColorGhostPressedWarning: string;
421
- textColorGhostFocusWarning: string;
422
- textColorGhostDisabledWarning: string;
423
- borderWarning: string;
424
- borderHoverWarning: string;
425
- borderPressedWarning: string;
426
- borderFocusWarning: string;
427
- borderDisabledWarning: string;
428
- rippleColorWarning: string;
429
- colorError: string;
430
- colorHoverError: string;
431
- colorPressedError: string;
432
- colorFocusError: string;
433
- colorDisabledError: string;
434
- textColorError: string;
435
- textColorHoverError: string;
436
- textColorPressedError: string;
437
- textColorFocusError: string;
438
- textColorDisabledError: string;
439
- textColorTextError: string;
440
- textColorTextHoverError: string;
441
- textColorTextPressedError: string;
442
- textColorTextFocusError: string;
443
- textColorTextDisabledError: string;
444
- textColorGhostError: string;
445
- textColorGhostHoverError: string;
446
- textColorGhostPressedError: string;
447
- textColorGhostFocusError: string;
448
- textColorGhostDisabledError: string;
449
- borderError: string;
450
- borderHoverError: string;
451
- borderPressedError: string;
452
- borderFocusError: string;
453
- borderDisabledError: string;
454
- rippleColorError: string;
455
- waveOpacity: string;
456
- fontWeight: string;
457
- fontWeightStrong: string;
458
- paddingTiny: string;
459
- paddingSmall: string;
460
- paddingMedium: string;
461
- paddingLarge: string;
462
- paddingRoundTiny: string;
463
- paddingRoundSmall: string;
464
- paddingRoundMedium: string;
465
- paddingRoundLarge: string;
466
- iconMarginTiny: string;
467
- iconMarginSmall: string;
468
- iconMarginMedium: string;
469
- iconMarginLarge: string;
470
- iconSizeTiny: string;
471
- iconSizeSmall: string;
472
- iconSizeMedium: string;
473
- iconSizeLarge: string;
474
- rippleDuration: string;
475
- }, any>;
476
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
477
- countTextColor: string;
478
- heightTiny: string;
479
- heightSmall: string;
480
- heightMedium: string;
481
- heightLarge: string;
482
- fontSizeTiny: string;
483
- fontSizeSmall: string;
484
- fontSizeMedium: string;
485
- fontSizeLarge: string;
486
- lineHeight: string;
487
- lineHeightTextarea: string;
488
- borderRadius: string;
489
- iconSize: string;
490
- groupLabelColor: string;
491
- groupLabelTextColor: string;
492
- textColor: string;
493
- textColorDisabled: string;
494
- textDecorationColor: string;
495
- caretColor: string;
496
- placeholderColor: string;
497
- placeholderColorDisabled: string;
498
- color: string;
499
- colorDisabled: string;
500
- colorFocus: string;
501
- groupLabelBorder: string;
502
- border: string;
503
- borderHover: string;
504
- borderDisabled: string;
505
- borderFocus: string;
506
- boxShadowFocus: string;
507
- loadingColor: string;
508
- loadingColorWarning: string;
509
- borderWarning: string;
510
- borderHoverWarning: string;
511
- colorFocusWarning: string;
512
- borderFocusWarning: string;
513
- boxShadowFocusWarning: string;
514
- caretColorWarning: string;
515
- loadingColorError: string;
516
- borderError: string;
517
- borderHoverError: string;
518
- colorFocusError: string;
519
- borderFocusError: string;
520
- boxShadowFocusError: string;
521
- caretColorError: string;
522
- clearColor: string;
523
- clearColorHover: string;
524
- clearColorPressed: string;
525
- iconColor: string;
526
- iconColorDisabled: string;
527
- iconColorHover: string;
528
- iconColorPressed: string;
529
- suffixTextColor: string;
530
- paddingTiny: string;
531
- paddingSmall: string;
532
- paddingMedium: string;
533
- paddingLarge: string;
534
- clearSize: string;
535
- }, any>;
536
- }>>;
537
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"TimePicker", {
538
- panelColor: string;
539
- panelBoxShadow: string;
540
- panelDividerColor: string;
541
- itemTextColor: string;
542
- itemTextColorActive: string;
543
- itemColorHover: string;
544
- itemOpacityDisabled: string;
545
- itemBorderRadius: string;
546
- borderRadius: string;
547
- iconColor: string;
548
- iconColorDisabled: string;
549
- itemFontSize: string;
550
- itemHeight: string;
551
- itemWidth: string;
552
- panelActionPadding: string;
553
- }, {
554
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
555
- color: string;
556
- colorHover: string;
557
- }, any>;
558
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
559
- heightTiny: string;
560
- heightSmall: string;
561
- heightMedium: string;
562
- heightLarge: string;
563
- borderRadiusTiny: string;
564
- borderRadiusSmall: string;
565
- borderRadiusMedium: string;
566
- borderRadiusLarge: string;
567
- fontSizeTiny: string;
568
- fontSizeSmall: string;
569
- fontSizeMedium: string;
570
- fontSizeLarge: string;
571
- opacityDisabled: string;
572
- colorOpacitySecondary: string;
573
- colorOpacitySecondaryHover: string;
574
- colorOpacitySecondaryPressed: string;
575
- colorSecondary: string;
576
- colorSecondaryHover: string;
577
- colorSecondaryPressed: string;
578
- colorTertiary: string;
579
- colorTertiaryHover: string;
580
- colorTertiaryPressed: string;
581
- colorQuaternary: string;
582
- colorQuaternaryHover: string;
583
- colorQuaternaryPressed: string;
584
- color: string;
585
- colorHover: string;
586
- colorPressed: string;
587
- colorFocus: string;
588
- colorDisabled: string;
589
- textColor: string;
590
- textColorTertiary: string;
591
- textColorHover: string;
592
- textColorPressed: string;
593
- textColorFocus: string;
594
- textColorDisabled: string;
595
- textColorText: string;
596
- textColorTextHover: string;
597
- textColorTextPressed: string;
598
- textColorTextFocus: string;
599
- textColorTextDisabled: string;
600
- textColorGhost: string;
601
- textColorGhostHover: string;
602
- textColorGhostPressed: string;
603
- textColorGhostFocus: string;
604
- textColorGhostDisabled: string;
605
- border: string;
606
- borderHover: string;
607
- borderPressed: string;
608
- borderFocus: string;
609
- borderDisabled: string;
610
- rippleColor: string;
611
- colorPrimary: string;
612
- colorHoverPrimary: string;
613
- colorPressedPrimary: string;
614
- colorFocusPrimary: string;
615
- colorDisabledPrimary: string;
616
- textColorPrimary: string;
617
- textColorHoverPrimary: string;
618
- textColorPressedPrimary: string;
619
- textColorFocusPrimary: string;
620
- textColorDisabledPrimary: string;
621
- textColorTextPrimary: string;
622
- textColorTextHoverPrimary: string;
623
- textColorTextPressedPrimary: string;
624
- textColorTextFocusPrimary: string;
625
- textColorTextDisabledPrimary: string;
626
- textColorGhostPrimary: string;
627
- textColorGhostHoverPrimary: string;
628
- textColorGhostPressedPrimary: string;
629
- textColorGhostFocusPrimary: string;
630
- textColorGhostDisabledPrimary: string;
631
- borderPrimary: string;
632
- borderHoverPrimary: string;
633
- borderPressedPrimary: string;
634
- borderFocusPrimary: string;
635
- borderDisabledPrimary: string;
636
- rippleColorPrimary: string;
637
- colorInfo: string;
638
- colorHoverInfo: string;
639
- colorPressedInfo: string;
640
- colorFocusInfo: string;
641
- colorDisabledInfo: string;
642
- textColorInfo: string;
643
- textColorHoverInfo: string;
644
- textColorPressedInfo: string;
645
- textColorFocusInfo: string;
646
- textColorDisabledInfo: string;
647
- textColorTextInfo: string;
648
- textColorTextHoverInfo: string;
649
- textColorTextPressedInfo: string;
650
- textColorTextFocusInfo: string;
651
- textColorTextDisabledInfo: string;
652
- textColorGhostInfo: string;
653
- textColorGhostHoverInfo: string;
654
- textColorGhostPressedInfo: string;
655
- textColorGhostFocusInfo: string;
656
- textColorGhostDisabledInfo: string;
657
- borderInfo: string;
658
- borderHoverInfo: string;
659
- borderPressedInfo: string;
660
- borderFocusInfo: string;
661
- borderDisabledInfo: string;
662
- rippleColorInfo: string;
663
- colorSuccess: string;
664
- colorHoverSuccess: string;
665
- colorPressedSuccess: string;
666
- colorFocusSuccess: string;
667
- colorDisabledSuccess: string;
668
- textColorSuccess: string;
669
- textColorHoverSuccess: string;
670
- textColorPressedSuccess: string;
671
- textColorFocusSuccess: string;
672
- textColorDisabledSuccess: string;
673
- textColorTextSuccess: string;
674
- textColorTextHoverSuccess: string;
675
- textColorTextPressedSuccess: string;
676
- textColorTextFocusSuccess: string;
677
- textColorTextDisabledSuccess: string;
678
- textColorGhostSuccess: string;
679
- textColorGhostHoverSuccess: string;
680
- textColorGhostPressedSuccess: string;
681
- textColorGhostFocusSuccess: string;
682
- textColorGhostDisabledSuccess: string;
683
- borderSuccess: string;
684
- borderHoverSuccess: string;
685
- borderPressedSuccess: string;
686
- borderFocusSuccess: string;
687
- borderDisabledSuccess: string;
688
- rippleColorSuccess: string;
689
- colorWarning: string;
690
- colorHoverWarning: string;
691
- colorPressedWarning: string;
692
- colorFocusWarning: string;
693
- colorDisabledWarning: string;
694
- textColorWarning: string;
695
- textColorHoverWarning: string;
696
- textColorPressedWarning: string;
697
- textColorFocusWarning: string;
698
- textColorDisabledWarning: string;
699
- textColorTextWarning: string;
700
- textColorTextHoverWarning: string;
701
- textColorTextPressedWarning: string;
702
- textColorTextFocusWarning: string;
703
- textColorTextDisabledWarning: string;
704
- textColorGhostWarning: string;
705
- textColorGhostHoverWarning: string;
706
- textColorGhostPressedWarning: string;
707
- textColorGhostFocusWarning: string;
708
- textColorGhostDisabledWarning: string;
709
- borderWarning: string;
710
- borderHoverWarning: string;
711
- borderPressedWarning: string;
712
- borderFocusWarning: string;
713
- borderDisabledWarning: string;
714
- rippleColorWarning: string;
715
- colorError: string;
716
- colorHoverError: string;
717
- colorPressedError: string;
718
- colorFocusError: string;
719
- colorDisabledError: string;
720
- textColorError: string;
721
- textColorHoverError: string;
722
- textColorPressedError: string;
723
- textColorFocusError: string;
724
- textColorDisabledError: string;
725
- textColorTextError: string;
726
- textColorTextHoverError: string;
727
- textColorTextPressedError: string;
728
- textColorTextFocusError: string;
729
- textColorTextDisabledError: string;
730
- textColorGhostError: string;
731
- textColorGhostHoverError: string;
732
- textColorGhostPressedError: string;
733
- textColorGhostFocusError: string;
734
- textColorGhostDisabledError: string;
735
- borderError: string;
736
- borderHoverError: string;
737
- borderPressedError: string;
738
- borderFocusError: string;
739
- borderDisabledError: string;
740
- rippleColorError: string;
741
- waveOpacity: string;
742
- fontWeight: string;
743
- fontWeightStrong: string;
744
- paddingTiny: string;
745
- paddingSmall: string;
746
- paddingMedium: string;
747
- paddingLarge: string;
748
- paddingRoundTiny: string;
749
- paddingRoundSmall: string;
750
- paddingRoundMedium: string;
751
- paddingRoundLarge: string;
752
- iconMarginTiny: string;
753
- iconMarginSmall: string;
754
- iconMarginMedium: string;
755
- iconMarginLarge: string;
756
- iconSizeTiny: string;
757
- iconSizeSmall: string;
758
- iconSizeMedium: string;
759
- iconSizeLarge: string;
760
- rippleDuration: string;
761
- }, any>;
762
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
763
- countTextColor: string;
764
- heightTiny: string;
765
- heightSmall: string;
766
- heightMedium: string;
767
- heightLarge: string;
768
- fontSizeTiny: string;
769
- fontSizeSmall: string;
770
- fontSizeMedium: string;
771
- fontSizeLarge: string;
772
- lineHeight: string;
773
- lineHeightTextarea: string;
774
- borderRadius: string;
775
- iconSize: string;
776
- groupLabelColor: string;
777
- groupLabelTextColor: string;
778
- textColor: string;
779
- textColorDisabled: string;
780
- textDecorationColor: string;
781
- caretColor: string;
782
- placeholderColor: string;
783
- placeholderColorDisabled: string;
784
- color: string;
785
- colorDisabled: string;
786
- colorFocus: string;
787
- groupLabelBorder: string;
788
- border: string;
789
- borderHover: string;
790
- borderDisabled: string;
791
- borderFocus: string;
792
- boxShadowFocus: string;
793
- loadingColor: string;
794
- loadingColorWarning: string;
795
- borderWarning: string;
796
- borderHoverWarning: string;
797
- colorFocusWarning: string;
798
- borderFocusWarning: string;
799
- boxShadowFocusWarning: string;
800
- caretColorWarning: string;
801
- loadingColorError: string;
802
- borderError: string;
803
- borderHoverError: string;
804
- colorFocusError: string;
805
- borderFocusError: string;
806
- boxShadowFocusError: string;
807
- caretColorError: string;
808
- clearColor: string;
809
- clearColorHover: string;
810
- clearColorPressed: string;
811
- iconColor: string;
812
- iconColorDisabled: string;
813
- iconColorHover: string;
814
- iconColorPressed: string;
815
- suffixTextColor: string;
816
- paddingTiny: string;
817
- paddingSmall: string;
818
- paddingMedium: string;
819
- paddingLarge: string;
820
- clearSize: string;
821
- }, any>;
822
- }>>>;
823
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"TimePicker", {
824
- panelColor: string;
825
- panelBoxShadow: string;
826
- panelDividerColor: string;
827
- itemTextColor: string;
828
- itemTextColorActive: string;
829
- itemColorHover: string;
830
- itemOpacityDisabled: string;
831
- itemBorderRadius: string;
832
- borderRadius: string;
833
- iconColor: string;
834
- iconColorDisabled: string;
835
- itemFontSize: string;
836
- itemHeight: string;
837
- itemWidth: string;
838
- panelActionPadding: string;
839
- }, {
840
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
841
- color: string;
842
- colorHover: string;
843
- }, any>;
844
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
845
- heightTiny: string;
846
- heightSmall: string;
847
- heightMedium: string;
848
- heightLarge: string;
849
- borderRadiusTiny: string;
850
- borderRadiusSmall: string;
851
- borderRadiusMedium: string;
852
- borderRadiusLarge: string;
853
- fontSizeTiny: string;
854
- fontSizeSmall: string;
855
- fontSizeMedium: string;
856
- fontSizeLarge: string;
857
- opacityDisabled: string;
858
- colorOpacitySecondary: string;
859
- colorOpacitySecondaryHover: string;
860
- colorOpacitySecondaryPressed: string;
861
- colorSecondary: string;
862
- colorSecondaryHover: string;
863
- colorSecondaryPressed: string;
864
- colorTertiary: string;
865
- colorTertiaryHover: string;
866
- colorTertiaryPressed: string;
867
- colorQuaternary: string;
868
- colorQuaternaryHover: string;
869
- colorQuaternaryPressed: string;
870
- color: string;
871
- colorHover: string;
872
- colorPressed: string;
873
- colorFocus: string;
874
- colorDisabled: string;
875
- textColor: string;
876
- textColorTertiary: string;
877
- textColorHover: string;
878
- textColorPressed: string;
879
- textColorFocus: string;
880
- textColorDisabled: string;
881
- textColorText: string;
882
- textColorTextHover: string;
883
- textColorTextPressed: string;
884
- textColorTextFocus: string;
885
- textColorTextDisabled: string;
886
- textColorGhost: string;
887
- textColorGhostHover: string;
888
- textColorGhostPressed: string;
889
- textColorGhostFocus: string;
890
- textColorGhostDisabled: string;
891
- border: string;
892
- borderHover: string;
893
- borderPressed: string;
894
- borderFocus: string;
895
- borderDisabled: string;
896
- rippleColor: string;
897
- colorPrimary: string;
898
- colorHoverPrimary: string;
899
- colorPressedPrimary: string;
900
- colorFocusPrimary: string;
901
- colorDisabledPrimary: string;
902
- textColorPrimary: string;
903
- textColorHoverPrimary: string;
904
- textColorPressedPrimary: string;
905
- textColorFocusPrimary: string;
906
- textColorDisabledPrimary: string;
907
- textColorTextPrimary: string;
908
- textColorTextHoverPrimary: string;
909
- textColorTextPressedPrimary: string;
910
- textColorTextFocusPrimary: string;
911
- textColorTextDisabledPrimary: string;
912
- textColorGhostPrimary: string;
913
- textColorGhostHoverPrimary: string;
914
- textColorGhostPressedPrimary: string;
915
- textColorGhostFocusPrimary: string;
916
- textColorGhostDisabledPrimary: string;
917
- borderPrimary: string;
918
- borderHoverPrimary: string;
919
- borderPressedPrimary: string;
920
- borderFocusPrimary: string;
921
- borderDisabledPrimary: string;
922
- rippleColorPrimary: string;
923
- colorInfo: string;
924
- colorHoverInfo: string;
925
- colorPressedInfo: string;
926
- colorFocusInfo: string;
927
- colorDisabledInfo: string;
928
- textColorInfo: string;
929
- textColorHoverInfo: string;
930
- textColorPressedInfo: string;
931
- textColorFocusInfo: string;
932
- textColorDisabledInfo: string;
933
- textColorTextInfo: string;
934
- textColorTextHoverInfo: string;
935
- textColorTextPressedInfo: string;
936
- textColorTextFocusInfo: string;
937
- textColorTextDisabledInfo: string;
938
- textColorGhostInfo: string;
939
- textColorGhostHoverInfo: string;
940
- textColorGhostPressedInfo: string;
941
- textColorGhostFocusInfo: string;
942
- textColorGhostDisabledInfo: string;
943
- borderInfo: string;
944
- borderHoverInfo: string;
945
- borderPressedInfo: string;
946
- borderFocusInfo: string;
947
- borderDisabledInfo: string;
948
- rippleColorInfo: string;
949
- colorSuccess: string;
950
- colorHoverSuccess: string;
951
- colorPressedSuccess: string;
952
- colorFocusSuccess: string;
953
- colorDisabledSuccess: string;
954
- textColorSuccess: string;
955
- textColorHoverSuccess: string;
956
- textColorPressedSuccess: string;
957
- textColorFocusSuccess: string;
958
- textColorDisabledSuccess: string;
959
- textColorTextSuccess: string;
960
- textColorTextHoverSuccess: string;
961
- textColorTextPressedSuccess: string;
962
- textColorTextFocusSuccess: string;
963
- textColorTextDisabledSuccess: string;
964
- textColorGhostSuccess: string;
965
- textColorGhostHoverSuccess: string;
966
- textColorGhostPressedSuccess: string;
967
- textColorGhostFocusSuccess: string;
968
- textColorGhostDisabledSuccess: string;
969
- borderSuccess: string;
970
- borderHoverSuccess: string;
971
- borderPressedSuccess: string;
972
- borderFocusSuccess: string;
973
- borderDisabledSuccess: string;
974
- rippleColorSuccess: string;
975
- colorWarning: string;
976
- colorHoverWarning: string;
977
- colorPressedWarning: string;
978
- colorFocusWarning: string;
979
- colorDisabledWarning: string;
980
- textColorWarning: string;
981
- textColorHoverWarning: string;
982
- textColorPressedWarning: string;
983
- textColorFocusWarning: string;
984
- textColorDisabledWarning: string;
985
- textColorTextWarning: string;
986
- textColorTextHoverWarning: string;
987
- textColorTextPressedWarning: string;
988
- textColorTextFocusWarning: string;
989
- textColorTextDisabledWarning: string;
990
- textColorGhostWarning: string;
991
- textColorGhostHoverWarning: string;
992
- textColorGhostPressedWarning: string;
993
- textColorGhostFocusWarning: string;
994
- textColorGhostDisabledWarning: string;
995
- borderWarning: string;
996
- borderHoverWarning: string;
997
- borderPressedWarning: string;
998
- borderFocusWarning: string;
999
- borderDisabledWarning: string;
1000
- rippleColorWarning: string;
1001
- colorError: string;
1002
- colorHoverError: string;
1003
- colorPressedError: string;
1004
- colorFocusError: string;
1005
- colorDisabledError: string;
1006
- textColorError: string;
1007
- textColorHoverError: string;
1008
- textColorPressedError: string;
1009
- textColorFocusError: string;
1010
- textColorDisabledError: string;
1011
- textColorTextError: string;
1012
- textColorTextHoverError: string;
1013
- textColorTextPressedError: string;
1014
- textColorTextFocusError: string;
1015
- textColorTextDisabledError: string;
1016
- textColorGhostError: string;
1017
- textColorGhostHoverError: string;
1018
- textColorGhostPressedError: string;
1019
- textColorGhostFocusError: string;
1020
- textColorGhostDisabledError: string;
1021
- borderError: string;
1022
- borderHoverError: string;
1023
- borderPressedError: string;
1024
- borderFocusError: string;
1025
- borderDisabledError: string;
1026
- rippleColorError: string;
1027
- waveOpacity: string;
1028
- fontWeight: string;
1029
- fontWeightStrong: string;
1030
- paddingTiny: string;
1031
- paddingSmall: string;
1032
- paddingMedium: string;
1033
- paddingLarge: string;
1034
- paddingRoundTiny: string;
1035
- paddingRoundSmall: string;
1036
- paddingRoundMedium: string;
1037
- paddingRoundLarge: string;
1038
- iconMarginTiny: string;
1039
- iconMarginSmall: string;
1040
- iconMarginMedium: string;
1041
- iconMarginLarge: string;
1042
- iconSizeTiny: string;
1043
- iconSizeSmall: string;
1044
- iconSizeMedium: string;
1045
- iconSizeLarge: string;
1046
- rippleDuration: string;
1047
- }, any>;
1048
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
1049
- countTextColor: string;
1050
- heightTiny: string;
1051
- heightSmall: string;
1052
- heightMedium: string;
1053
- heightLarge: string;
1054
- fontSizeTiny: string;
1055
- fontSizeSmall: string;
1056
- fontSizeMedium: string;
1057
- fontSizeLarge: string;
1058
- lineHeight: string;
1059
- lineHeightTextarea: string;
1060
- borderRadius: string;
1061
- iconSize: string;
1062
- groupLabelColor: string;
1063
- groupLabelTextColor: string;
1064
- textColor: string;
1065
- textColorDisabled: string;
1066
- textDecorationColor: string;
1067
- caretColor: string;
1068
- placeholderColor: string;
1069
- placeholderColorDisabled: string;
1070
- color: string;
1071
- colorDisabled: string;
1072
- colorFocus: string;
1073
- groupLabelBorder: string;
1074
- border: string;
1075
- borderHover: string;
1076
- borderDisabled: string;
1077
- borderFocus: string;
1078
- boxShadowFocus: string;
1079
- loadingColor: string;
1080
- loadingColorWarning: string;
1081
- borderWarning: string;
1082
- borderHoverWarning: string;
1083
- colorFocusWarning: string;
1084
- borderFocusWarning: string;
1085
- boxShadowFocusWarning: string;
1086
- caretColorWarning: string;
1087
- loadingColorError: string;
1088
- borderError: string;
1089
- borderHoverError: string;
1090
- colorFocusError: string;
1091
- borderFocusError: string;
1092
- boxShadowFocusError: string;
1093
- caretColorError: string;
1094
- clearColor: string;
1095
- clearColorHover: string;
1096
- clearColorPressed: string;
1097
- iconColor: string;
1098
- iconColorDisabled: string;
1099
- iconColorHover: string;
1100
- iconColorPressed: string;
1101
- suffixTextColor: string;
1102
- paddingTiny: string;
1103
- paddingSmall: string;
1104
- paddingMedium: string;
1105
- paddingLarge: string;
1106
- clearSize: string;
1107
- }, any>;
1108
- }>>>;
1109
- }, {
1110
- focus: () => void;
1111
- blur: () => void;
1112
- mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
1113
- mergedBordered: import("vue").ComputedRef<boolean>;
1114
- mergedClsPrefix: import("vue").ComputedRef<string>;
1115
- namespace: import("vue").ComputedRef<string | undefined>;
1116
- uncontrolledValue: import("vue").Ref<number | null>;
1117
- mergedValue: import("vue").ComputedRef<number | null>;
1118
- isMounted: Readonly<import("vue").Ref<boolean>>;
1119
- inputInstRef: import("vue").Ref<{
1120
- wrapperElRef: HTMLElement | null;
1121
- textareaElRef: HTMLTextAreaElement | null;
1122
- inputElRef: HTMLInputElement | null;
1123
- isCompositing: boolean;
1124
- blur: () => void;
1125
- focus: () => void;
1126
- select: () => void;
1127
- activate: () => void;
1128
- deactivate: () => void;
1129
- } | null>;
1130
- panelInstRef: import("vue").Ref<{
1131
- $el: HTMLElement;
1132
- hourScrollRef?: {
1133
- $el: HTMLElement;
1134
- containerRef: HTMLElement | null;
1135
- contentRef: HTMLElement | null;
1136
- containerScrollTop: number;
1137
- syncUnifiedContainer: () => void;
1138
- scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
1139
- scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
1140
- sync: () => void;
1141
- handleMouseEnterWrapper: () => void;
1142
- handleMouseLeaveWrapper: () => void;
1143
- } | undefined;
1144
- minuteScrollRef?: {
1145
- $el: HTMLElement;
1146
- containerRef: HTMLElement | null;
1147
- contentRef: HTMLElement | null;
1148
- containerScrollTop: number;
1149
- syncUnifiedContainer: () => void;
1150
- scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
1151
- scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
1152
- sync: () => void;
1153
- handleMouseEnterWrapper: () => void;
1154
- handleMouseLeaveWrapper: () => void;
1155
- } | undefined;
1156
- secondScrollRef?: {
1157
- $el: HTMLElement;
1158
- containerRef: HTMLElement | null;
1159
- contentRef: HTMLElement | null;
1160
- containerScrollTop: number;
1161
- syncUnifiedContainer: () => void;
1162
- scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
1163
- scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
1164
- sync: () => void;
1165
- handleMouseEnterWrapper: () => void;
1166
- handleMouseLeaveWrapper: () => void;
1167
- } | undefined;
1168
- amPmScrollRef?: {
1169
- $el: HTMLElement;
1170
- containerRef: HTMLElement | null;
1171
- contentRef: HTMLElement | null;
1172
- containerScrollTop: number;
1173
- syncUnifiedContainer: () => void;
1174
- scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
1175
- scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
1176
- sync: () => void;
1177
- handleMouseEnterWrapper: () => void;
1178
- handleMouseLeaveWrapper: () => void;
1179
- } | undefined;
1180
- } | null>;
1181
- adjustedTo: import("vue").ComputedRef<string | HTMLElement>;
1182
- mergedShow: import("vue").ComputedRef<boolean>;
1183
- localizedNow: import("vue").ComputedRef<string>;
1184
- localizedPlaceholder: import("vue").ComputedRef<string>;
1185
- localizedNegativeText: import("vue").ComputedRef<string>;
1186
- localizedPositiveText: import("vue").ComputedRef<string>;
1187
- hourInFormat: import("vue").ComputedRef<boolean>;
1188
- minuteInFormat: import("vue").ComputedRef<boolean>;
1189
- secondInFormat: import("vue").ComputedRef<boolean>;
1190
- mergedAttrSize: import("vue").ComputedRef<number>;
1191
- displayTimeString: import("vue").Ref<string>;
1192
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
1193
- mergedDisabled: import("vue").ComputedRef<boolean>;
1194
- isValueInvalid: import("vue").ComputedRef<boolean>;
1195
- isHourInvalid: import("vue").ComputedRef<boolean>;
1196
- isMinuteInvalid: import("vue").ComputedRef<boolean>;
1197
- isSecondInvalid: import("vue").ComputedRef<boolean>;
1198
- transitionDisabled: import("vue").Ref<boolean>;
1199
- hourValue: import("vue").ComputedRef<number | null>;
1200
- minuteValue: import("vue").ComputedRef<number | null>;
1201
- secondValue: import("vue").ComputedRef<number | null>;
1202
- amPmValue: import("vue").ComputedRef<"am" | "pm" | null>;
1203
- handleTimeInputFocus: (e: FocusEvent) => void;
1204
- handleTimeInputBlur: (e: FocusEvent) => void;
1205
- handleNowClick: () => void;
1206
- handleConfirmClick: () => void;
1207
- handleTimeInputUpdateValue: (v: string) => void;
1208
- handleMenuFocusOut: (e: FocusEvent) => void;
1209
- handleCancelClick: () => void;
1210
- handleClickOutside: (e: MouseEvent) => void;
1211
- handleTimeInputActivate: () => void;
1212
- handleTimeInputDeactivate: () => void;
1213
- handleHourClick: (hour: import("naive-ui/es/time-picker/src/interface").ItemValue) => void;
1214
- handleMinuteClick: (minute: import("naive-ui/es/time-picker/src/interface").ItemValue) => void;
1215
- handleSecondClick: (second: import("naive-ui/es/time-picker/src/interface").ItemValue) => void;
1216
- handleAmPmClick: (amPm: import("naive-ui/es/time-picker/src/interface").ItemValue) => void;
1217
- handleTimeInputClear: (e: MouseEvent) => void;
1218
- handleFocusDetectorFocus: () => void;
1219
- handleMenuKeyDown: (e: KeyboardEvent) => void;
1220
- handleTriggerClick: (e: MouseEvent) => void;
1221
- mergedTheme: import("vue").ComputedRef<{
1222
- common: {
1223
- baseColor: string;
1224
- primaryColor: string;
1225
- primaryColorHover: string;
1226
- primaryColorPressed: string;
1227
- primaryColorSuppl: string;
1228
- infoColor: string;
1229
- infoColorHover: string;
1230
- infoColorPressed: string;
1231
- infoColorSuppl: string;
1232
- successColor: string;
1233
- successColorHover: string;
1234
- successColorPressed: string;
1235
- successColorSuppl: string;
1236
- warningColor: string;
1237
- warningColorHover: string;
1238
- warningColorPressed: string;
1239
- warningColorSuppl: string;
1240
- errorColor: string;
1241
- errorColorHover: string;
1242
- errorColorPressed: string;
1243
- errorColorSuppl: string;
1244
- textColorBase: string;
1245
- textColor1: string;
1246
- textColor2: string;
1247
- textColor3: string;
1248
- textColorDisabled: string;
1249
- placeholderColor: string;
1250
- placeholderColorDisabled: string;
1251
- iconColor: string;
1252
- iconColorHover: string;
1253
- iconColorPressed: string;
1254
- iconColorDisabled: string;
1255
- opacity1: string;
1256
- opacity2: string;
1257
- opacity3: string;
1258
- opacity4: string;
1259
- opacity5: string;
1260
- dividerColor: string;
1261
- borderColor: string;
1262
- closeIconColor: string;
1263
- closeIconColorHover: string;
1264
- closeIconColorPressed: string;
1265
- closeColorHover: string;
1266
- closeColorPressed: string;
1267
- clearColor: string;
1268
- clearColorHover: string;
1269
- clearColorPressed: string;
1270
- scrollbarColor: string;
1271
- scrollbarColorHover: string;
1272
- scrollbarWidth: string;
1273
- scrollbarHeight: string;
1274
- scrollbarBorderRadius: string;
1275
- progressRailColor: string;
1276
- railColor: string;
1277
- popoverColor: string;
1278
- tableColor: string;
1279
- cardColor: string;
1280
- modalColor: string;
1281
- bodyColor: string;
1282
- tagColor: string;
1283
- avatarColor: string;
1284
- invertedColor: string;
1285
- inputColor: string;
1286
- codeColor: string;
1287
- tabColor: string;
1288
- actionColor: string;
1289
- tableHeaderColor: string;
1290
- hoverColor: string;
1291
- tableColorHover: string;
1292
- tableColorStriped: string;
1293
- pressedColor: string;
1294
- opacityDisabled: string;
1295
- inputColorDisabled: string;
1296
- buttonColor2: string;
1297
- buttonColor2Hover: string;
1298
- buttonColor2Pressed: string;
1299
- boxShadow1: string;
1300
- boxShadow2: string;
1301
- boxShadow3: string;
1302
- fontFamily: string;
1303
- fontFamilyMono: string;
1304
- fontWeight: string;
1305
- fontWeightStrong: string;
1306
- cubicBezierEaseInOut: string;
1307
- cubicBezierEaseOut: string;
1308
- cubicBezierEaseIn: string;
1309
- borderRadius: string;
1310
- borderRadiusSmall: string;
1311
- fontSize: string;
1312
- fontSizeMini: string;
1313
- fontSizeTiny: string;
1314
- fontSizeSmall: string;
1315
- fontSizeMedium: string;
1316
- fontSizeLarge: string;
1317
- fontSizeHuge: string;
1318
- lineHeight: string;
1319
- heightMini: string;
1320
- heightTiny: string;
1321
- heightSmall: string;
1322
- heightMedium: string;
1323
- heightLarge: string;
1324
- heightHuge: string;
1325
- name: "common";
1326
- };
1327
- self: {
1328
- panelColor: string;
1329
- panelBoxShadow: string;
1330
- panelDividerColor: string;
1331
- itemTextColor: string;
1332
- itemTextColorActive: string;
1333
- itemColorHover: string;
1334
- itemOpacityDisabled: string;
1335
- itemBorderRadius: string;
1336
- borderRadius: string;
1337
- iconColor: string;
1338
- iconColorDisabled: string;
1339
- itemFontSize: string;
1340
- itemHeight: string;
1341
- itemWidth: string;
1342
- panelActionPadding: string;
1343
- };
1344
- peers: {
1345
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1346
- color: string;
1347
- colorHover: string;
1348
- }, any>;
1349
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
1350
- heightTiny: string;
1351
- heightSmall: string;
1352
- heightMedium: string;
1353
- heightLarge: string;
1354
- borderRadiusTiny: string;
1355
- borderRadiusSmall: string;
1356
- borderRadiusMedium: string;
1357
- borderRadiusLarge: string;
1358
- fontSizeTiny: string;
1359
- fontSizeSmall: string;
1360
- fontSizeMedium: string;
1361
- fontSizeLarge: string;
1362
- opacityDisabled: string;
1363
- colorOpacitySecondary: string;
1364
- colorOpacitySecondaryHover: string;
1365
- colorOpacitySecondaryPressed: string;
1366
- colorSecondary: string;
1367
- colorSecondaryHover: string;
1368
- colorSecondaryPressed: string;
1369
- colorTertiary: string;
1370
- colorTertiaryHover: string;
1371
- colorTertiaryPressed: string;
1372
- colorQuaternary: string;
1373
- colorQuaternaryHover: string;
1374
- colorQuaternaryPressed: string;
1375
- color: string;
1376
- colorHover: string;
1377
- colorPressed: string;
1378
- colorFocus: string;
1379
- colorDisabled: string;
1380
- textColor: string;
1381
- textColorTertiary: string;
1382
- textColorHover: string;
1383
- textColorPressed: string;
1384
- textColorFocus: string;
1385
- textColorDisabled: string;
1386
- textColorText: string;
1387
- textColorTextHover: string;
1388
- textColorTextPressed: string;
1389
- textColorTextFocus: string;
1390
- textColorTextDisabled: string;
1391
- textColorGhost: string;
1392
- textColorGhostHover: string;
1393
- textColorGhostPressed: string;
1394
- textColorGhostFocus: string;
1395
- textColorGhostDisabled: string;
1396
- border: string;
1397
- borderHover: string;
1398
- borderPressed: string;
1399
- borderFocus: string;
1400
- borderDisabled: string;
1401
- rippleColor: string;
1402
- colorPrimary: string;
1403
- colorHoverPrimary: string;
1404
- colorPressedPrimary: string;
1405
- colorFocusPrimary: string;
1406
- colorDisabledPrimary: string;
1407
- textColorPrimary: string;
1408
- textColorHoverPrimary: string;
1409
- textColorPressedPrimary: string;
1410
- textColorFocusPrimary: string;
1411
- textColorDisabledPrimary: string;
1412
- textColorTextPrimary: string;
1413
- textColorTextHoverPrimary: string;
1414
- textColorTextPressedPrimary: string;
1415
- textColorTextFocusPrimary: string;
1416
- textColorTextDisabledPrimary: string;
1417
- textColorGhostPrimary: string;
1418
- textColorGhostHoverPrimary: string;
1419
- textColorGhostPressedPrimary: string;
1420
- textColorGhostFocusPrimary: string;
1421
- textColorGhostDisabledPrimary: string;
1422
- borderPrimary: string;
1423
- borderHoverPrimary: string;
1424
- borderPressedPrimary: string;
1425
- borderFocusPrimary: string;
1426
- borderDisabledPrimary: string;
1427
- rippleColorPrimary: string;
1428
- colorInfo: string;
1429
- colorHoverInfo: string;
1430
- colorPressedInfo: string;
1431
- colorFocusInfo: string;
1432
- colorDisabledInfo: string;
1433
- textColorInfo: string;
1434
- textColorHoverInfo: string;
1435
- textColorPressedInfo: string;
1436
- textColorFocusInfo: string;
1437
- textColorDisabledInfo: string;
1438
- textColorTextInfo: string;
1439
- textColorTextHoverInfo: string;
1440
- textColorTextPressedInfo: string;
1441
- textColorTextFocusInfo: string;
1442
- textColorTextDisabledInfo: string;
1443
- textColorGhostInfo: string;
1444
- textColorGhostHoverInfo: string;
1445
- textColorGhostPressedInfo: string;
1446
- textColorGhostFocusInfo: string;
1447
- textColorGhostDisabledInfo: string;
1448
- borderInfo: string;
1449
- borderHoverInfo: string;
1450
- borderPressedInfo: string;
1451
- borderFocusInfo: string;
1452
- borderDisabledInfo: string;
1453
- rippleColorInfo: string;
1454
- colorSuccess: string;
1455
- colorHoverSuccess: string;
1456
- colorPressedSuccess: string;
1457
- colorFocusSuccess: string;
1458
- colorDisabledSuccess: string;
1459
- textColorSuccess: string;
1460
- textColorHoverSuccess: string;
1461
- textColorPressedSuccess: string;
1462
- textColorFocusSuccess: string;
1463
- textColorDisabledSuccess: string;
1464
- textColorTextSuccess: string;
1465
- textColorTextHoverSuccess: string;
1466
- textColorTextPressedSuccess: string;
1467
- textColorTextFocusSuccess: string;
1468
- textColorTextDisabledSuccess: string;
1469
- textColorGhostSuccess: string;
1470
- textColorGhostHoverSuccess: string;
1471
- textColorGhostPressedSuccess: string;
1472
- textColorGhostFocusSuccess: string;
1473
- textColorGhostDisabledSuccess: string;
1474
- borderSuccess: string;
1475
- borderHoverSuccess: string;
1476
- borderPressedSuccess: string;
1477
- borderFocusSuccess: string;
1478
- borderDisabledSuccess: string;
1479
- rippleColorSuccess: string;
1480
- colorWarning: string;
1481
- colorHoverWarning: string;
1482
- colorPressedWarning: string;
1483
- colorFocusWarning: string;
1484
- colorDisabledWarning: string;
1485
- textColorWarning: string;
1486
- textColorHoverWarning: string;
1487
- textColorPressedWarning: string;
1488
- textColorFocusWarning: string;
1489
- textColorDisabledWarning: string;
1490
- textColorTextWarning: string;
1491
- textColorTextHoverWarning: string;
1492
- textColorTextPressedWarning: string;
1493
- textColorTextFocusWarning: string;
1494
- textColorTextDisabledWarning: string;
1495
- textColorGhostWarning: string;
1496
- textColorGhostHoverWarning: string;
1497
- textColorGhostPressedWarning: string;
1498
- textColorGhostFocusWarning: string;
1499
- textColorGhostDisabledWarning: string;
1500
- borderWarning: string;
1501
- borderHoverWarning: string;
1502
- borderPressedWarning: string;
1503
- borderFocusWarning: string;
1504
- borderDisabledWarning: string;
1505
- rippleColorWarning: string;
1506
- colorError: string;
1507
- colorHoverError: string;
1508
- colorPressedError: string;
1509
- colorFocusError: string;
1510
- colorDisabledError: string;
1511
- textColorError: string;
1512
- textColorHoverError: string;
1513
- textColorPressedError: string;
1514
- textColorFocusError: string;
1515
- textColorDisabledError: string;
1516
- textColorTextError: string;
1517
- textColorTextHoverError: string;
1518
- textColorTextPressedError: string;
1519
- textColorTextFocusError: string;
1520
- textColorTextDisabledError: string;
1521
- textColorGhostError: string;
1522
- textColorGhostHoverError: string;
1523
- textColorGhostPressedError: string;
1524
- textColorGhostFocusError: string;
1525
- textColorGhostDisabledError: string;
1526
- borderError: string;
1527
- borderHoverError: string;
1528
- borderPressedError: string;
1529
- borderFocusError: string;
1530
- borderDisabledError: string;
1531
- rippleColorError: string;
1532
- waveOpacity: string;
1533
- fontWeight: string;
1534
- fontWeightStrong: string;
1535
- paddingTiny: string;
1536
- paddingSmall: string;
1537
- paddingMedium: string;
1538
- paddingLarge: string;
1539
- paddingRoundTiny: string;
1540
- paddingRoundSmall: string;
1541
- paddingRoundMedium: string;
1542
- paddingRoundLarge: string;
1543
- iconMarginTiny: string;
1544
- iconMarginSmall: string;
1545
- iconMarginMedium: string;
1546
- iconMarginLarge: string;
1547
- iconSizeTiny: string;
1548
- iconSizeSmall: string;
1549
- iconSizeMedium: string;
1550
- iconSizeLarge: string;
1551
- rippleDuration: string;
1552
- }, any>;
1553
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
1554
- countTextColor: string;
1555
- heightTiny: string;
1556
- heightSmall: string;
1557
- heightMedium: string;
1558
- heightLarge: string;
1559
- fontSizeTiny: string;
1560
- fontSizeSmall: string;
1561
- fontSizeMedium: string;
1562
- fontSizeLarge: string;
1563
- lineHeight: string;
1564
- lineHeightTextarea: string;
1565
- borderRadius: string;
1566
- iconSize: string;
1567
- groupLabelColor: string;
1568
- groupLabelTextColor: string;
1569
- textColor: string;
1570
- textColorDisabled: string;
1571
- textDecorationColor: string;
1572
- caretColor: string;
1573
- placeholderColor: string;
1574
- placeholderColorDisabled: string;
1575
- color: string;
1576
- colorDisabled: string;
1577
- colorFocus: string;
1578
- groupLabelBorder: string;
1579
- border: string;
1580
- borderHover: string;
1581
- borderDisabled: string;
1582
- borderFocus: string;
1583
- boxShadowFocus: string;
1584
- loadingColor: string;
1585
- loadingColorWarning: string;
1586
- borderWarning: string;
1587
- borderHoverWarning: string;
1588
- colorFocusWarning: string;
1589
- borderFocusWarning: string;
1590
- boxShadowFocusWarning: string;
1591
- caretColorWarning: string;
1592
- loadingColorError: string;
1593
- borderError: string;
1594
- borderHoverError: string;
1595
- colorFocusError: string;
1596
- borderFocusError: string;
1597
- boxShadowFocusError: string;
1598
- caretColorError: string;
1599
- clearColor: string;
1600
- clearColorHover: string;
1601
- clearColorPressed: string;
1602
- iconColor: string;
1603
- iconColorDisabled: string;
1604
- iconColorHover: string;
1605
- iconColorPressed: string;
1606
- suffixTextColor: string;
1607
- paddingTiny: string;
1608
- paddingSmall: string;
1609
- paddingMedium: string;
1610
- paddingLarge: string;
1611
- clearSize: string;
1612
- }, any>;
1613
- };
1614
- peerOverrides: {
1615
- Scrollbar?: {
1616
- peers?: {
1617
- [x: string]: any;
1618
- } | undefined;
1619
- } | undefined;
1620
- Button?: {
1621
- peers?: {
1622
- [x: string]: any;
1623
- } | undefined;
1624
- } | undefined;
1625
- Input?: {
1626
- peers?: {
1627
- [x: string]: any;
1628
- } | undefined;
1629
- } | undefined;
1630
- };
1631
- }>;
1632
- triggerCssVars: import("vue").ComputedRef<{
1633
- '--n-icon-color': string;
1634
- '--n-icon-color-disabled': string;
1635
- '--n-bezier': string;
1636
- }> | undefined;
1637
- triggerThemeClass: import("vue").Ref<string> | undefined;
1638
- triggerOnRender: (() => void) | undefined;
1639
- cssVars: import("vue").ComputedRef<{
1640
- '--n-bezier': string;
1641
- '--n-border-radius': string;
1642
- '--n-item-color-hover': string;
1643
- '--n-item-font-size': string;
1644
- '--n-item-height': string;
1645
- '--n-item-opacity-disabled': string;
1646
- '--n-item-text-color': string;
1647
- '--n-item-text-color-active': string;
1648
- '--n-item-width': string;
1649
- '--n-panel-action-padding': string;
1650
- '--n-panel-box-shadow': string;
1651
- '--n-panel-color': string;
1652
- '--n-panel-divider-color': string;
1653
- '--n-item-border-radius': string;
1654
- }> | undefined;
1655
- themeClass: import("vue").Ref<string> | undefined;
1656
- onRender: (() => void) | undefined;
1657
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1658
- to: {
1659
- type: PropType<string | boolean | HTMLElement>;
1660
- default: undefined;
1661
- };
1662
- bordered: {
1663
- type: PropType<boolean | undefined>;
1664
- default: undefined;
1665
- };
1666
- actions: PropType<("confirm" | "now")[] | null>;
1667
- defaultValue: {
1668
- type: PropType<number | null>;
1669
- default: null;
1670
- };
1671
- defaultFormattedValue: StringConstructor;
1672
- placeholder: StringConstructor;
1673
- placement: {
1674
- type: PropType<import("naive-ui").PopoverPlacement>;
1675
- default: string;
1676
- };
1677
- value: PropType<number | null>;
1678
- format: {
1679
- type: StringConstructor;
1680
- default: string;
1681
- };
1682
- valueFormat: StringConstructor;
1683
- formattedValue: PropType<string | null>;
1684
- isHourDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsHourDisabled>;
1685
- size: PropType<import("naive-ui/es/time-picker/src/interface").Size>;
1686
- isMinuteDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsMinuteDisabled>;
1687
- isSecondDisabled: PropType<import("naive-ui/es/time-picker/src/interface").IsSecondDisabled>;
1688
- inputReadonly: BooleanConstructor;
1689
- clearable: BooleanConstructor;
1690
- status: PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1691
- 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue>>;
1692
- onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue>>;
1693
- 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(show: boolean) => void>>;
1694
- onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(show: boolean) => void>>;
1695
- onUpdateFormattedValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateFormattedValue>>;
1696
- 'onUpdate:formattedValue': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateFormattedValue>>;
1697
- onBlur: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1698
- onConfirm: PropType<import("naive-ui/es/_utils").MaybeArray<(value: never, formattedValue: never) => void>>;
1699
- onClear: PropType<() => void>;
1700
- onFocus: PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1701
- timeZone: StringConstructor;
1702
- showIcon: {
1703
- type: BooleanConstructor;
1704
- default: boolean;
1705
- };
1706
- disabled: {
1707
- type: PropType<boolean | undefined>;
1708
- default: undefined;
1709
- };
1710
- show: {
1711
- type: PropType<boolean | undefined>;
1712
- default: undefined;
1713
- };
1714
- hours: {
1715
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
1716
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
1717
- };
1718
- minutes: {
1719
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
1720
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
1721
- };
1722
- seconds: {
1723
- type: PropType<import("naive-ui/es/_utils").MaybeArray<number>>;
1724
- validator: (value: import("naive-ui/es/_utils").MaybeArray<number>) => boolean;
1725
- };
1726
- use12Hours: BooleanConstructor;
1727
- stateful: {
1728
- type: BooleanConstructor;
1729
- default: boolean;
1730
- };
1731
- onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/time-picker/src/interface").OnUpdateValue> | undefined>;
1732
- theme: PropType<import("naive-ui/es/_mixins").Theme<"TimePicker", {
1733
- panelColor: string;
1734
- panelBoxShadow: string;
1735
- panelDividerColor: string;
1736
- itemTextColor: string;
1737
- itemTextColorActive: string;
1738
- itemColorHover: string;
1739
- itemOpacityDisabled: string;
1740
- itemBorderRadius: string;
1741
- borderRadius: string;
1742
- iconColor: string;
1743
- iconColorDisabled: string;
1744
- itemFontSize: string;
1745
- itemHeight: string;
1746
- itemWidth: string;
1747
- panelActionPadding: string;
1748
- }, {
1749
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
1750
- color: string;
1751
- colorHover: string;
1752
- }, any>;
1753
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
1754
- heightTiny: string;
1755
- heightSmall: string;
1756
- heightMedium: string;
1757
- heightLarge: string;
1758
- borderRadiusTiny: string;
1759
- borderRadiusSmall: string;
1760
- borderRadiusMedium: string;
1761
- borderRadiusLarge: string;
1762
- fontSizeTiny: string;
1763
- fontSizeSmall: string;
1764
- fontSizeMedium: string;
1765
- fontSizeLarge: string;
1766
- opacityDisabled: string;
1767
- colorOpacitySecondary: string;
1768
- colorOpacitySecondaryHover: string;
1769
- colorOpacitySecondaryPressed: string;
1770
- colorSecondary: string;
1771
- colorSecondaryHover: string;
1772
- colorSecondaryPressed: string;
1773
- colorTertiary: string;
1774
- colorTertiaryHover: string;
1775
- colorTertiaryPressed: string;
1776
- colorQuaternary: string;
1777
- colorQuaternaryHover: string;
1778
- colorQuaternaryPressed: string;
1779
- color: string;
1780
- colorHover: string;
1781
- colorPressed: string;
1782
- colorFocus: string;
1783
- colorDisabled: string;
1784
- textColor: string;
1785
- textColorTertiary: string;
1786
- textColorHover: string;
1787
- textColorPressed: string;
1788
- textColorFocus: string;
1789
- textColorDisabled: string;
1790
- textColorText: string;
1791
- textColorTextHover: string;
1792
- textColorTextPressed: string;
1793
- textColorTextFocus: string;
1794
- textColorTextDisabled: string;
1795
- textColorGhost: string;
1796
- textColorGhostHover: string;
1797
- textColorGhostPressed: string;
1798
- textColorGhostFocus: string;
1799
- textColorGhostDisabled: string;
1800
- border: string;
1801
- borderHover: string;
1802
- borderPressed: string;
1803
- borderFocus: string;
1804
- borderDisabled: string;
1805
- rippleColor: string;
1806
- colorPrimary: string;
1807
- colorHoverPrimary: string;
1808
- colorPressedPrimary: string;
1809
- colorFocusPrimary: string;
1810
- colorDisabledPrimary: string;
1811
- textColorPrimary: string;
1812
- textColorHoverPrimary: string;
1813
- textColorPressedPrimary: string;
1814
- textColorFocusPrimary: string;
1815
- textColorDisabledPrimary: string;
1816
- textColorTextPrimary: string;
1817
- textColorTextHoverPrimary: string;
1818
- textColorTextPressedPrimary: string;
1819
- textColorTextFocusPrimary: string;
1820
- textColorTextDisabledPrimary: string;
1821
- textColorGhostPrimary: string;
1822
- textColorGhostHoverPrimary: string;
1823
- textColorGhostPressedPrimary: string;
1824
- textColorGhostFocusPrimary: string;
1825
- textColorGhostDisabledPrimary: string;
1826
- borderPrimary: string;
1827
- borderHoverPrimary: string;
1828
- borderPressedPrimary: string;
1829
- borderFocusPrimary: string;
1830
- borderDisabledPrimary: string;
1831
- rippleColorPrimary: string;
1832
- colorInfo: string;
1833
- colorHoverInfo: string;
1834
- colorPressedInfo: string;
1835
- colorFocusInfo: string;
1836
- colorDisabledInfo: string;
1837
- textColorInfo: string;
1838
- textColorHoverInfo: string;
1839
- textColorPressedInfo: string;
1840
- textColorFocusInfo: string;
1841
- textColorDisabledInfo: string;
1842
- textColorTextInfo: string;
1843
- textColorTextHoverInfo: string;
1844
- textColorTextPressedInfo: string;
1845
- textColorTextFocusInfo: string;
1846
- textColorTextDisabledInfo: string;
1847
- textColorGhostInfo: string;
1848
- textColorGhostHoverInfo: string;
1849
- textColorGhostPressedInfo: string;
1850
- textColorGhostFocusInfo: string;
1851
- textColorGhostDisabledInfo: string;
1852
- borderInfo: string;
1853
- borderHoverInfo: string;
1854
- borderPressedInfo: string;
1855
- borderFocusInfo: string;
1856
- borderDisabledInfo: string;
1857
- rippleColorInfo: string;
1858
- colorSuccess: string;
1859
- colorHoverSuccess: string;
1860
- colorPressedSuccess: string;
1861
- colorFocusSuccess: string;
1862
- colorDisabledSuccess: string;
1863
- textColorSuccess: string;
1864
- textColorHoverSuccess: string;
1865
- textColorPressedSuccess: string;
1866
- textColorFocusSuccess: string;
1867
- textColorDisabledSuccess: string;
1868
- textColorTextSuccess: string;
1869
- textColorTextHoverSuccess: string;
1870
- textColorTextPressedSuccess: string;
1871
- textColorTextFocusSuccess: string;
1872
- textColorTextDisabledSuccess: string;
1873
- textColorGhostSuccess: string;
1874
- textColorGhostHoverSuccess: string;
1875
- textColorGhostPressedSuccess: string;
1876
- textColorGhostFocusSuccess: string;
1877
- textColorGhostDisabledSuccess: string;
1878
- borderSuccess: string;
1879
- borderHoverSuccess: string;
1880
- borderPressedSuccess: string;
1881
- borderFocusSuccess: string;
1882
- borderDisabledSuccess: string;
1883
- rippleColorSuccess: string;
1884
- colorWarning: string;
1885
- colorHoverWarning: string;
1886
- colorPressedWarning: string;
1887
- colorFocusWarning: string;
1888
- colorDisabledWarning: string;
1889
- textColorWarning: string;
1890
- textColorHoverWarning: string;
1891
- textColorPressedWarning: string;
1892
- textColorFocusWarning: string;
1893
- textColorDisabledWarning: string;
1894
- textColorTextWarning: string;
1895
- textColorTextHoverWarning: string;
1896
- textColorTextPressedWarning: string;
1897
- textColorTextFocusWarning: string;
1898
- textColorTextDisabledWarning: string;
1899
- textColorGhostWarning: string;
1900
- textColorGhostHoverWarning: string;
1901
- textColorGhostPressedWarning: string;
1902
- textColorGhostFocusWarning: string;
1903
- textColorGhostDisabledWarning: string;
1904
- borderWarning: string;
1905
- borderHoverWarning: string;
1906
- borderPressedWarning: string;
1907
- borderFocusWarning: string;
1908
- borderDisabledWarning: string;
1909
- rippleColorWarning: string;
1910
- colorError: string;
1911
- colorHoverError: string;
1912
- colorPressedError: string;
1913
- colorFocusError: string;
1914
- colorDisabledError: string;
1915
- textColorError: string;
1916
- textColorHoverError: string;
1917
- textColorPressedError: string;
1918
- textColorFocusError: string;
1919
- textColorDisabledError: string;
1920
- textColorTextError: string;
1921
- textColorTextHoverError: string;
1922
- textColorTextPressedError: string;
1923
- textColorTextFocusError: string;
1924
- textColorTextDisabledError: string;
1925
- textColorGhostError: string;
1926
- textColorGhostHoverError: string;
1927
- textColorGhostPressedError: string;
1928
- textColorGhostFocusError: string;
1929
- textColorGhostDisabledError: string;
1930
- borderError: string;
1931
- borderHoverError: string;
1932
- borderPressedError: string;
1933
- borderFocusError: string;
1934
- borderDisabledError: string;
1935
- rippleColorError: string;
1936
- waveOpacity: string;
1937
- fontWeight: string;
1938
- fontWeightStrong: string;
1939
- paddingTiny: string;
1940
- paddingSmall: string;
1941
- paddingMedium: string;
1942
- paddingLarge: string;
1943
- paddingRoundTiny: string;
1944
- paddingRoundSmall: string;
1945
- paddingRoundMedium: string;
1946
- paddingRoundLarge: string;
1947
- iconMarginTiny: string;
1948
- iconMarginSmall: string;
1949
- iconMarginMedium: string;
1950
- iconMarginLarge: string;
1951
- iconSizeTiny: string;
1952
- iconSizeSmall: string;
1953
- iconSizeMedium: string;
1954
- iconSizeLarge: string;
1955
- rippleDuration: string;
1956
- }, any>;
1957
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
1958
- countTextColor: string;
1959
- heightTiny: string;
1960
- heightSmall: string;
1961
- heightMedium: string;
1962
- heightLarge: string;
1963
- fontSizeTiny: string;
1964
- fontSizeSmall: string;
1965
- fontSizeMedium: string;
1966
- fontSizeLarge: string;
1967
- lineHeight: string;
1968
- lineHeightTextarea: string;
1969
- borderRadius: string;
1970
- iconSize: string;
1971
- groupLabelColor: string;
1972
- groupLabelTextColor: string;
1973
- textColor: string;
1974
- textColorDisabled: string;
1975
- textDecorationColor: string;
1976
- caretColor: string;
1977
- placeholderColor: string;
1978
- placeholderColorDisabled: string;
1979
- color: string;
1980
- colorDisabled: string;
1981
- colorFocus: string;
1982
- groupLabelBorder: string;
1983
- border: string;
1984
- borderHover: string;
1985
- borderDisabled: string;
1986
- borderFocus: string;
1987
- boxShadowFocus: string;
1988
- loadingColor: string;
1989
- loadingColorWarning: string;
1990
- borderWarning: string;
1991
- borderHoverWarning: string;
1992
- colorFocusWarning: string;
1993
- borderFocusWarning: string;
1994
- boxShadowFocusWarning: string;
1995
- caretColorWarning: string;
1996
- loadingColorError: string;
1997
- borderError: string;
1998
- borderHoverError: string;
1999
- colorFocusError: string;
2000
- borderFocusError: string;
2001
- boxShadowFocusError: string;
2002
- caretColorError: string;
2003
- clearColor: string;
2004
- clearColorHover: string;
2005
- clearColorPressed: string;
2006
- iconColor: string;
2007
- iconColorDisabled: string;
2008
- iconColorHover: string;
2009
- iconColorPressed: string;
2010
- suffixTextColor: string;
2011
- paddingTiny: string;
2012
- paddingSmall: string;
2013
- paddingMedium: string;
2014
- paddingLarge: string;
2015
- clearSize: string;
2016
- }, any>;
2017
- }>>;
2018
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"TimePicker", {
2019
- panelColor: string;
2020
- panelBoxShadow: string;
2021
- panelDividerColor: string;
2022
- itemTextColor: string;
2023
- itemTextColorActive: string;
2024
- itemColorHover: string;
2025
- itemOpacityDisabled: string;
2026
- itemBorderRadius: string;
2027
- borderRadius: string;
2028
- iconColor: string;
2029
- iconColorDisabled: string;
2030
- itemFontSize: string;
2031
- itemHeight: string;
2032
- itemWidth: string;
2033
- panelActionPadding: string;
2034
- }, {
2035
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2036
- color: string;
2037
- colorHover: string;
2038
- }, any>;
2039
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2040
- heightTiny: string;
2041
- heightSmall: string;
2042
- heightMedium: string;
2043
- heightLarge: string;
2044
- borderRadiusTiny: string;
2045
- borderRadiusSmall: string;
2046
- borderRadiusMedium: string;
2047
- borderRadiusLarge: string;
2048
- fontSizeTiny: string;
2049
- fontSizeSmall: string;
2050
- fontSizeMedium: string;
2051
- fontSizeLarge: string;
2052
- opacityDisabled: string;
2053
- colorOpacitySecondary: string;
2054
- colorOpacitySecondaryHover: string;
2055
- colorOpacitySecondaryPressed: string;
2056
- colorSecondary: string;
2057
- colorSecondaryHover: string;
2058
- colorSecondaryPressed: string;
2059
- colorTertiary: string;
2060
- colorTertiaryHover: string;
2061
- colorTertiaryPressed: string;
2062
- colorQuaternary: string;
2063
- colorQuaternaryHover: string;
2064
- colorQuaternaryPressed: string;
2065
- color: string;
2066
- colorHover: string;
2067
- colorPressed: string;
2068
- colorFocus: string;
2069
- colorDisabled: string;
2070
- textColor: string;
2071
- textColorTertiary: string;
2072
- textColorHover: string;
2073
- textColorPressed: string;
2074
- textColorFocus: string;
2075
- textColorDisabled: string;
2076
- textColorText: string;
2077
- textColorTextHover: string;
2078
- textColorTextPressed: string;
2079
- textColorTextFocus: string;
2080
- textColorTextDisabled: string;
2081
- textColorGhost: string;
2082
- textColorGhostHover: string;
2083
- textColorGhostPressed: string;
2084
- textColorGhostFocus: string;
2085
- textColorGhostDisabled: string;
2086
- border: string;
2087
- borderHover: string;
2088
- borderPressed: string;
2089
- borderFocus: string;
2090
- borderDisabled: string;
2091
- rippleColor: string;
2092
- colorPrimary: string;
2093
- colorHoverPrimary: string;
2094
- colorPressedPrimary: string;
2095
- colorFocusPrimary: string;
2096
- colorDisabledPrimary: string;
2097
- textColorPrimary: string;
2098
- textColorHoverPrimary: string;
2099
- textColorPressedPrimary: string;
2100
- textColorFocusPrimary: string;
2101
- textColorDisabledPrimary: string;
2102
- textColorTextPrimary: string;
2103
- textColorTextHoverPrimary: string;
2104
- textColorTextPressedPrimary: string;
2105
- textColorTextFocusPrimary: string;
2106
- textColorTextDisabledPrimary: string;
2107
- textColorGhostPrimary: string;
2108
- textColorGhostHoverPrimary: string;
2109
- textColorGhostPressedPrimary: string;
2110
- textColorGhostFocusPrimary: string;
2111
- textColorGhostDisabledPrimary: string;
2112
- borderPrimary: string;
2113
- borderHoverPrimary: string;
2114
- borderPressedPrimary: string;
2115
- borderFocusPrimary: string;
2116
- borderDisabledPrimary: string;
2117
- rippleColorPrimary: string;
2118
- colorInfo: string;
2119
- colorHoverInfo: string;
2120
- colorPressedInfo: string;
2121
- colorFocusInfo: string;
2122
- colorDisabledInfo: string;
2123
- textColorInfo: string;
2124
- textColorHoverInfo: string;
2125
- textColorPressedInfo: string;
2126
- textColorFocusInfo: string;
2127
- textColorDisabledInfo: string;
2128
- textColorTextInfo: string;
2129
- textColorTextHoverInfo: string;
2130
- textColorTextPressedInfo: string;
2131
- textColorTextFocusInfo: string;
2132
- textColorTextDisabledInfo: string;
2133
- textColorGhostInfo: string;
2134
- textColorGhostHoverInfo: string;
2135
- textColorGhostPressedInfo: string;
2136
- textColorGhostFocusInfo: string;
2137
- textColorGhostDisabledInfo: string;
2138
- borderInfo: string;
2139
- borderHoverInfo: string;
2140
- borderPressedInfo: string;
2141
- borderFocusInfo: string;
2142
- borderDisabledInfo: string;
2143
- rippleColorInfo: string;
2144
- colorSuccess: string;
2145
- colorHoverSuccess: string;
2146
- colorPressedSuccess: string;
2147
- colorFocusSuccess: string;
2148
- colorDisabledSuccess: string;
2149
- textColorSuccess: string;
2150
- textColorHoverSuccess: string;
2151
- textColorPressedSuccess: string;
2152
- textColorFocusSuccess: string;
2153
- textColorDisabledSuccess: string;
2154
- textColorTextSuccess: string;
2155
- textColorTextHoverSuccess: string;
2156
- textColorTextPressedSuccess: string;
2157
- textColorTextFocusSuccess: string;
2158
- textColorTextDisabledSuccess: string;
2159
- textColorGhostSuccess: string;
2160
- textColorGhostHoverSuccess: string;
2161
- textColorGhostPressedSuccess: string;
2162
- textColorGhostFocusSuccess: string;
2163
- textColorGhostDisabledSuccess: string;
2164
- borderSuccess: string;
2165
- borderHoverSuccess: string;
2166
- borderPressedSuccess: string;
2167
- borderFocusSuccess: string;
2168
- borderDisabledSuccess: string;
2169
- rippleColorSuccess: string;
2170
- colorWarning: string;
2171
- colorHoverWarning: string;
2172
- colorPressedWarning: string;
2173
- colorFocusWarning: string;
2174
- colorDisabledWarning: string;
2175
- textColorWarning: string;
2176
- textColorHoverWarning: string;
2177
- textColorPressedWarning: string;
2178
- textColorFocusWarning: string;
2179
- textColorDisabledWarning: string;
2180
- textColorTextWarning: string;
2181
- textColorTextHoverWarning: string;
2182
- textColorTextPressedWarning: string;
2183
- textColorTextFocusWarning: string;
2184
- textColorTextDisabledWarning: string;
2185
- textColorGhostWarning: string;
2186
- textColorGhostHoverWarning: string;
2187
- textColorGhostPressedWarning: string;
2188
- textColorGhostFocusWarning: string;
2189
- textColorGhostDisabledWarning: string;
2190
- borderWarning: string;
2191
- borderHoverWarning: string;
2192
- borderPressedWarning: string;
2193
- borderFocusWarning: string;
2194
- borderDisabledWarning: string;
2195
- rippleColorWarning: string;
2196
- colorError: string;
2197
- colorHoverError: string;
2198
- colorPressedError: string;
2199
- colorFocusError: string;
2200
- colorDisabledError: string;
2201
- textColorError: string;
2202
- textColorHoverError: string;
2203
- textColorPressedError: string;
2204
- textColorFocusError: string;
2205
- textColorDisabledError: string;
2206
- textColorTextError: string;
2207
- textColorTextHoverError: string;
2208
- textColorTextPressedError: string;
2209
- textColorTextFocusError: string;
2210
- textColorTextDisabledError: string;
2211
- textColorGhostError: string;
2212
- textColorGhostHoverError: string;
2213
- textColorGhostPressedError: string;
2214
- textColorGhostFocusError: string;
2215
- textColorGhostDisabledError: string;
2216
- borderError: string;
2217
- borderHoverError: string;
2218
- borderPressedError: string;
2219
- borderFocusError: string;
2220
- borderDisabledError: string;
2221
- rippleColorError: string;
2222
- waveOpacity: string;
2223
- fontWeight: string;
2224
- fontWeightStrong: string;
2225
- paddingTiny: string;
2226
- paddingSmall: string;
2227
- paddingMedium: string;
2228
- paddingLarge: string;
2229
- paddingRoundTiny: string;
2230
- paddingRoundSmall: string;
2231
- paddingRoundMedium: string;
2232
- paddingRoundLarge: string;
2233
- iconMarginTiny: string;
2234
- iconMarginSmall: string;
2235
- iconMarginMedium: string;
2236
- iconMarginLarge: string;
2237
- iconSizeTiny: string;
2238
- iconSizeSmall: string;
2239
- iconSizeMedium: string;
2240
- iconSizeLarge: string;
2241
- rippleDuration: string;
2242
- }, any>;
2243
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
2244
- countTextColor: string;
2245
- heightTiny: string;
2246
- heightSmall: string;
2247
- heightMedium: string;
2248
- heightLarge: string;
2249
- fontSizeTiny: string;
2250
- fontSizeSmall: string;
2251
- fontSizeMedium: string;
2252
- fontSizeLarge: string;
2253
- lineHeight: string;
2254
- lineHeightTextarea: string;
2255
- borderRadius: string;
2256
- iconSize: string;
2257
- groupLabelColor: string;
2258
- groupLabelTextColor: string;
2259
- textColor: string;
2260
- textColorDisabled: string;
2261
- textDecorationColor: string;
2262
- caretColor: string;
2263
- placeholderColor: string;
2264
- placeholderColorDisabled: string;
2265
- color: string;
2266
- colorDisabled: string;
2267
- colorFocus: string;
2268
- groupLabelBorder: string;
2269
- border: string;
2270
- borderHover: string;
2271
- borderDisabled: string;
2272
- borderFocus: string;
2273
- boxShadowFocus: string;
2274
- loadingColor: string;
2275
- loadingColorWarning: string;
2276
- borderWarning: string;
2277
- borderHoverWarning: string;
2278
- colorFocusWarning: string;
2279
- borderFocusWarning: string;
2280
- boxShadowFocusWarning: string;
2281
- caretColorWarning: string;
2282
- loadingColorError: string;
2283
- borderError: string;
2284
- borderHoverError: string;
2285
- colorFocusError: string;
2286
- borderFocusError: string;
2287
- boxShadowFocusError: string;
2288
- caretColorError: string;
2289
- clearColor: string;
2290
- clearColorHover: string;
2291
- clearColorPressed: string;
2292
- iconColor: string;
2293
- iconColorDisabled: string;
2294
- iconColorHover: string;
2295
- iconColorPressed: string;
2296
- suffixTextColor: string;
2297
- paddingTiny: string;
2298
- paddingSmall: string;
2299
- paddingMedium: string;
2300
- paddingLarge: string;
2301
- clearSize: string;
2302
- }, any>;
2303
- }>>>;
2304
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"TimePicker", {
2305
- panelColor: string;
2306
- panelBoxShadow: string;
2307
- panelDividerColor: string;
2308
- itemTextColor: string;
2309
- itemTextColorActive: string;
2310
- itemColorHover: string;
2311
- itemOpacityDisabled: string;
2312
- itemBorderRadius: string;
2313
- borderRadius: string;
2314
- iconColor: string;
2315
- iconColorDisabled: string;
2316
- itemFontSize: string;
2317
- itemHeight: string;
2318
- itemWidth: string;
2319
- panelActionPadding: string;
2320
- }, {
2321
- Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
2322
- color: string;
2323
- colorHover: string;
2324
- }, any>;
2325
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2326
- heightTiny: string;
2327
- heightSmall: string;
2328
- heightMedium: string;
2329
- heightLarge: string;
2330
- borderRadiusTiny: string;
2331
- borderRadiusSmall: string;
2332
- borderRadiusMedium: string;
2333
- borderRadiusLarge: string;
2334
- fontSizeTiny: string;
2335
- fontSizeSmall: string;
2336
- fontSizeMedium: string;
2337
- fontSizeLarge: string;
2338
- opacityDisabled: string;
2339
- colorOpacitySecondary: string;
2340
- colorOpacitySecondaryHover: string;
2341
- colorOpacitySecondaryPressed: string;
2342
- colorSecondary: string;
2343
- colorSecondaryHover: string;
2344
- colorSecondaryPressed: string;
2345
- colorTertiary: string;
2346
- colorTertiaryHover: string;
2347
- colorTertiaryPressed: string;
2348
- colorQuaternary: string;
2349
- colorQuaternaryHover: string;
2350
- colorQuaternaryPressed: string;
2351
- color: string;
2352
- colorHover: string;
2353
- colorPressed: string;
2354
- colorFocus: string;
2355
- colorDisabled: string;
2356
- textColor: string;
2357
- textColorTertiary: string;
2358
- textColorHover: string;
2359
- textColorPressed: string;
2360
- textColorFocus: string;
2361
- textColorDisabled: string;
2362
- textColorText: string;
2363
- textColorTextHover: string;
2364
- textColorTextPressed: string;
2365
- textColorTextFocus: string;
2366
- textColorTextDisabled: string;
2367
- textColorGhost: string;
2368
- textColorGhostHover: string;
2369
- textColorGhostPressed: string;
2370
- textColorGhostFocus: string;
2371
- textColorGhostDisabled: string;
2372
- border: string;
2373
- borderHover: string;
2374
- borderPressed: string;
2375
- borderFocus: string;
2376
- borderDisabled: string;
2377
- rippleColor: string;
2378
- colorPrimary: string;
2379
- colorHoverPrimary: string;
2380
- colorPressedPrimary: string;
2381
- colorFocusPrimary: string;
2382
- colorDisabledPrimary: string;
2383
- textColorPrimary: string;
2384
- textColorHoverPrimary: string;
2385
- textColorPressedPrimary: string;
2386
- textColorFocusPrimary: string;
2387
- textColorDisabledPrimary: string;
2388
- textColorTextPrimary: string;
2389
- textColorTextHoverPrimary: string;
2390
- textColorTextPressedPrimary: string;
2391
- textColorTextFocusPrimary: string;
2392
- textColorTextDisabledPrimary: string;
2393
- textColorGhostPrimary: string;
2394
- textColorGhostHoverPrimary: string;
2395
- textColorGhostPressedPrimary: string;
2396
- textColorGhostFocusPrimary: string;
2397
- textColorGhostDisabledPrimary: string;
2398
- borderPrimary: string;
2399
- borderHoverPrimary: string;
2400
- borderPressedPrimary: string;
2401
- borderFocusPrimary: string;
2402
- borderDisabledPrimary: string;
2403
- rippleColorPrimary: string;
2404
- colorInfo: string;
2405
- colorHoverInfo: string;
2406
- colorPressedInfo: string;
2407
- colorFocusInfo: string;
2408
- colorDisabledInfo: string;
2409
- textColorInfo: string;
2410
- textColorHoverInfo: string;
2411
- textColorPressedInfo: string;
2412
- textColorFocusInfo: string;
2413
- textColorDisabledInfo: string;
2414
- textColorTextInfo: string;
2415
- textColorTextHoverInfo: string;
2416
- textColorTextPressedInfo: string;
2417
- textColorTextFocusInfo: string;
2418
- textColorTextDisabledInfo: string;
2419
- textColorGhostInfo: string;
2420
- textColorGhostHoverInfo: string;
2421
- textColorGhostPressedInfo: string;
2422
- textColorGhostFocusInfo: string;
2423
- textColorGhostDisabledInfo: string;
2424
- borderInfo: string;
2425
- borderHoverInfo: string;
2426
- borderPressedInfo: string;
2427
- borderFocusInfo: string;
2428
- borderDisabledInfo: string;
2429
- rippleColorInfo: string;
2430
- colorSuccess: string;
2431
- colorHoverSuccess: string;
2432
- colorPressedSuccess: string;
2433
- colorFocusSuccess: string;
2434
- colorDisabledSuccess: string;
2435
- textColorSuccess: string;
2436
- textColorHoverSuccess: string;
2437
- textColorPressedSuccess: string;
2438
- textColorFocusSuccess: string;
2439
- textColorDisabledSuccess: string;
2440
- textColorTextSuccess: string;
2441
- textColorTextHoverSuccess: string;
2442
- textColorTextPressedSuccess: string;
2443
- textColorTextFocusSuccess: string;
2444
- textColorTextDisabledSuccess: string;
2445
- textColorGhostSuccess: string;
2446
- textColorGhostHoverSuccess: string;
2447
- textColorGhostPressedSuccess: string;
2448
- textColorGhostFocusSuccess: string;
2449
- textColorGhostDisabledSuccess: string;
2450
- borderSuccess: string;
2451
- borderHoverSuccess: string;
2452
- borderPressedSuccess: string;
2453
- borderFocusSuccess: string;
2454
- borderDisabledSuccess: string;
2455
- rippleColorSuccess: string;
2456
- colorWarning: string;
2457
- colorHoverWarning: string;
2458
- colorPressedWarning: string;
2459
- colorFocusWarning: string;
2460
- colorDisabledWarning: string;
2461
- textColorWarning: string;
2462
- textColorHoverWarning: string;
2463
- textColorPressedWarning: string;
2464
- textColorFocusWarning: string;
2465
- textColorDisabledWarning: string;
2466
- textColorTextWarning: string;
2467
- textColorTextHoverWarning: string;
2468
- textColorTextPressedWarning: string;
2469
- textColorTextFocusWarning: string;
2470
- textColorTextDisabledWarning: string;
2471
- textColorGhostWarning: string;
2472
- textColorGhostHoverWarning: string;
2473
- textColorGhostPressedWarning: string;
2474
- textColorGhostFocusWarning: string;
2475
- textColorGhostDisabledWarning: string;
2476
- borderWarning: string;
2477
- borderHoverWarning: string;
2478
- borderPressedWarning: string;
2479
- borderFocusWarning: string;
2480
- borderDisabledWarning: string;
2481
- rippleColorWarning: string;
2482
- colorError: string;
2483
- colorHoverError: string;
2484
- colorPressedError: string;
2485
- colorFocusError: string;
2486
- colorDisabledError: string;
2487
- textColorError: string;
2488
- textColorHoverError: string;
2489
- textColorPressedError: string;
2490
- textColorFocusError: string;
2491
- textColorDisabledError: string;
2492
- textColorTextError: string;
2493
- textColorTextHoverError: string;
2494
- textColorTextPressedError: string;
2495
- textColorTextFocusError: string;
2496
- textColorTextDisabledError: string;
2497
- textColorGhostError: string;
2498
- textColorGhostHoverError: string;
2499
- textColorGhostPressedError: string;
2500
- textColorGhostFocusError: string;
2501
- textColorGhostDisabledError: string;
2502
- borderError: string;
2503
- borderHoverError: string;
2504
- borderPressedError: string;
2505
- borderFocusError: string;
2506
- borderDisabledError: string;
2507
- rippleColorError: string;
2508
- waveOpacity: string;
2509
- fontWeight: string;
2510
- fontWeightStrong: string;
2511
- paddingTiny: string;
2512
- paddingSmall: string;
2513
- paddingMedium: string;
2514
- paddingLarge: string;
2515
- paddingRoundTiny: string;
2516
- paddingRoundSmall: string;
2517
- paddingRoundMedium: string;
2518
- paddingRoundLarge: string;
2519
- iconMarginTiny: string;
2520
- iconMarginSmall: string;
2521
- iconMarginMedium: string;
2522
- iconMarginLarge: string;
2523
- iconSizeTiny: string;
2524
- iconSizeSmall: string;
2525
- iconSizeMedium: string;
2526
- iconSizeLarge: string;
2527
- rippleDuration: string;
2528
- }, any>;
2529
- Input: import("naive-ui/es/_mixins").Theme<"Input", {
2530
- countTextColor: string;
2531
- heightTiny: string;
2532
- heightSmall: string;
2533
- heightMedium: string;
2534
- heightLarge: string;
2535
- fontSizeTiny: string;
2536
- fontSizeSmall: string;
2537
- fontSizeMedium: string;
2538
- fontSizeLarge: string;
2539
- lineHeight: string;
2540
- lineHeightTextarea: string;
2541
- borderRadius: string;
2542
- iconSize: string;
2543
- groupLabelColor: string;
2544
- groupLabelTextColor: string;
2545
- textColor: string;
2546
- textColorDisabled: string;
2547
- textDecorationColor: string;
2548
- caretColor: string;
2549
- placeholderColor: string;
2550
- placeholderColorDisabled: string;
2551
- color: string;
2552
- colorDisabled: string;
2553
- colorFocus: string;
2554
- groupLabelBorder: string;
2555
- border: string;
2556
- borderHover: string;
2557
- borderDisabled: string;
2558
- borderFocus: string;
2559
- boxShadowFocus: string;
2560
- loadingColor: string;
2561
- loadingColorWarning: string;
2562
- borderWarning: string;
2563
- borderHoverWarning: string;
2564
- colorFocusWarning: string;
2565
- borderFocusWarning: string;
2566
- boxShadowFocusWarning: string;
2567
- caretColorWarning: string;
2568
- loadingColorError: string;
2569
- borderError: string;
2570
- borderHoverError: string;
2571
- colorFocusError: string;
2572
- borderFocusError: string;
2573
- boxShadowFocusError: string;
2574
- caretColorError: string;
2575
- clearColor: string;
2576
- clearColorHover: string;
2577
- clearColorPressed: string;
2578
- iconColor: string;
2579
- iconColorDisabled: string;
2580
- iconColorHover: string;
2581
- iconColorPressed: string;
2582
- suffixTextColor: string;
2583
- paddingTiny: string;
2584
- paddingSmall: string;
2585
- paddingMedium: string;
2586
- paddingLarge: string;
2587
- clearSize: string;
2588
- }, any>;
2589
- }>>>;
2590
- }>>, {
2591
- show: boolean | undefined;
2592
- disabled: boolean | undefined;
2593
- format: string;
2594
- to: string | boolean | HTMLElement;
2595
- bordered: boolean | undefined;
2596
- showIcon: boolean;
2597
- placement: import("naive-ui").PopoverPlacement;
2598
- clearable: boolean;
2599
- defaultValue: number | null;
2600
- stateful: boolean;
2601
- use12Hours: boolean;
2602
- inputReadonly: boolean;
2603
- }>;
2604
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect")[], "tableBlur" | "valueOnChange" | "handlerAddOptions" | "opentableSelect", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2605
- mainForm: {
2606
- type: PropObject;
2607
- default: () => {};
2608
- };
2609
- userInfo: {
2610
- type: PropObject;
2611
- default: () => {};
2612
- };
2613
- styleSetting: {
2614
- type: PropObject;
2615
- default: () => {};
2616
- };
2617
- defaultValue: {
2618
- type: PropObject;
2619
- default: () => {};
2620
- };
2621
- dbParams: {
2622
- type: PropType<AnyObject>;
2623
- };
2624
- row: {
2625
- type: PropObject;
2626
- default: () => {};
2627
- };
2628
- item: {
2629
- type: PropObject;
2630
- default: () => {
2631
- _own: {};
2632
- };
2633
- };
2634
- defaultFieldList: {
2635
- type: PropType<any[]>;
2636
- default: () => never[];
2637
- };
2638
- cacheUniqueKey: {
2639
- type: PropObject;
2640
- default: () => {
2641
- _own: {};
2642
- };
2643
- };
2644
- params_formId: (NumberConstructor | StringConstructor)[];
2645
- formType: {
2646
- type: PropObject;
2647
- default: () => {
2648
- _own: {};
2649
- };
2650
- };
2651
- isDetail: {
2652
- type: BooleanConstructor;
2653
- default: boolean;
2654
- };
2655
- handleFormTableValue: PropType<Func<any[], any>>;
2656
- }>> & {
2657
- onTableBlur?: ((...args: any[]) => any) | undefined;
2658
- onValueOnChange?: ((...args: any[]) => any) | undefined;
2659
- onHandlerAddOptions?: ((...args: any[]) => any) | undefined;
2660
- onOpentableSelect?: ((...args: any[]) => any) | undefined;
2661
- }, {
2662
- styleSetting: AnyObject;
2663
- userInfo: AnyObject;
2664
- cacheUniqueKey: AnyObject;
2665
- row: AnyObject;
2666
- defaultValue: AnyObject;
2667
- isDetail: boolean;
2668
- item: AnyObject;
2669
- formType: AnyObject;
2670
- mainForm: AnyObject;
2671
- defaultFieldList: any[];
2672
- }>;
2673
- export default _default;