3h1-ui 3.0.0-next.24 → 3.0.0-next.241

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 (533) hide show
  1. package/es/index.js +46649 -35051
  2. package/es/style.css +1933 -2633
  3. package/es/ui/config/index.d.ts +5 -0
  4. package/es/ui/index.d.ts +34 -0
  5. package/es/ui/src/AdvancedSearch/index.d.ts +3 -0
  6. package/es/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  7. package/es/ui/src/Basic/index.d.ts +4 -0
  8. package/es/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  9. package/es/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  10. package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  11. package/es/ui/src/BasicContainer/index.d.ts +3 -0
  12. package/es/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  13. package/es/ui/src/BasicContainer/src/props.d.ts +94 -0
  14. package/es/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  15. package/es/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  16. package/es/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  17. package/es/ui/src/Button/index.d.ts +235 -0
  18. package/es/ui/src/Button/src/BasicButton.d.ts +105 -0
  19. package/es/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  20. package/es/ui/src/Button/src/props.d.ts +48 -0
  21. package/es/ui/src/ClickOutSide/index.d.ts +2 -0
  22. package/es/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  23. package/es/ui/src/ColorPickerPopover/index.d.ts +2 -0
  24. package/es/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  25. package/es/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  26. package/es/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  27. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  28. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  29. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  30. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  31. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  32. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  33. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  34. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  35. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  36. package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  37. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  38. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  39. package/es/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  40. package/es/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  41. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  42. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  43. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  44. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  45. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  46. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  47. package/es/ui/src/Container/index.d.ts +5 -0
  48. package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  49. package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  50. package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
  51. package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  52. package/es/ui/src/Container/src/typing.d.ts +15 -0
  53. package/es/ui/src/ContextMenu/index.d.ts +3 -0
  54. package/es/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  55. package/es/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  56. package/es/ui/src/ContextMenu/src/typing.d.ts +33 -0
  57. package/es/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  58. package/es/ui/src/CountDown/index.d.ts +3 -0
  59. package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  60. package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  61. package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  62. package/es/ui/src/CountTo/index.d.ts +2 -0
  63. package/es/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  64. package/es/ui/src/Cropper/index.d.ts +4 -0
  65. package/es/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  66. package/es/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  67. package/es/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  68. package/es/ui/src/Cropper/src/typing.d.ts +6 -0
  69. package/es/ui/src/Description/index.d.ts +6 -0
  70. package/es/ui/src/Description/src/Description.d.ts +98 -0
  71. package/es/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  72. package/es/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  73. package/es/ui/src/Description/src/components/formItem.d.ts +41 -0
  74. package/es/ui/src/Description/src/props.d.ts +60 -0
  75. package/es/ui/src/Description/src/typing.d.ts +38 -0
  76. package/es/ui/src/Description/src/useDescription.d.ts +2 -0
  77. package/es/ui/src/Descriptions/index.d.ts +249 -0
  78. package/es/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  79. package/es/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  80. package/es/ui/src/Descriptions/src/props.d.ts +52 -0
  81. package/es/ui/src/Descriptions/src/typing.d.ts +31 -0
  82. package/es/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  83. package/es/ui/src/Drawer/index.d.ts +4 -0
  84. package/es/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  85. package/es/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  86. package/es/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  87. package/es/ui/src/Drawer/src/props.d.ts +115 -0
  88. package/es/ui/src/Drawer/src/typing.d.ts +177 -0
  89. package/es/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  90. package/es/ui/src/Dropdown/index.d.ts +3 -0
  91. package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
  92. package/es/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  93. package/es/ui/src/Icon/index.d.ts +5 -0
  94. package/es/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  95. package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  96. package/es/ui/src/Label/index.d.ts +2 -0
  97. package/es/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  98. package/es/ui/src/Label/src/props.d.ts +14 -0
  99. package/es/ui/src/Loading/index.d.ts +4 -0
  100. package/es/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  101. package/es/ui/src/Loading/src/createLoading.d.ts +13 -0
  102. package/es/ui/src/Loading/src/typing.d.ts +9 -0
  103. package/es/ui/src/Loading/src/useLoading.d.ts +11 -0
  104. package/es/ui/src/Modal/index.d.ts +710 -0
  105. package/es/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  106. package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  107. package/es/ui/src/Modal/src/components/Modal.d.ts +300 -0
  108. package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  109. package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  110. package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  111. package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  112. package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  113. package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  114. package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  115. package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  116. package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  117. package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  118. package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  119. package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  120. package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  121. package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  122. package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  123. package/es/ui/src/Modal/src/props.d.ts +171 -0
  124. package/es/ui/src/Modal/src/typing.d.ts +174 -0
  125. package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
  126. package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
  127. package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
  128. package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  129. package/es/ui/src/Page/index.d.ts +5 -0
  130. package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  131. package/es/ui/src/Page/src/PageSecond.d.ts +63 -0
  132. package/es/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  133. package/es/ui/src/Process/index.d.ts +2 -0
  134. package/es/ui/src/Process/src/Process.d.ts +80 -0
  135. package/es/ui/src/Scrollbar/index.d.ts +6 -0
  136. package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  137. package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
  138. package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
  139. package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
  140. package/es/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  141. package/es/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  142. package/es/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  143. package/es/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  144. package/es/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  145. package/es/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  146. package/es/ui/src/ShyContainer/index.d.ts +3 -0
  147. package/es/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  148. package/es/ui/src/ShyContainer/src/props.d.ts +98 -0
  149. package/es/ui/src/ShyForm/index.d.ts +21 -0
  150. package/es/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  151. package/es/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  152. package/es/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  153. package/es/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  154. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  155. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  156. package/es/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  157. package/es/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  158. package/es/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  159. package/es/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  160. package/es/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  161. package/es/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  162. package/es/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  163. package/es/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  164. package/es/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  165. package/es/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  166. package/es/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  167. package/es/ui/src/ShyForm/src/helper.d.ts +14 -0
  168. package/es/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  169. package/es/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  170. package/es/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  171. package/es/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  172. package/es/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  173. package/es/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  174. package/es/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  175. package/es/ui/src/ShyForm/src/props.d.ts +430 -0
  176. package/es/ui/src/ShyForm/src/types/form.d.ts +127 -0
  177. package/es/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  178. package/es/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  179. package/es/ui/src/ShyForm/src/types/index.d.ts +90 -0
  180. package/es/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  181. package/es/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  182. package/es/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  183. package/es/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  184. package/es/ui/src/ShyTable/index.d.ts +10 -0
  185. package/es/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  186. package/es/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  187. package/es/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  188. package/es/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  189. package/es/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  190. package/es/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  191. package/es/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  192. package/es/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  193. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  194. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  195. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  196. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  197. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  198. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  199. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  200. package/es/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  201. package/es/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  202. package/es/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  203. package/es/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  204. package/es/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  205. package/es/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  206. package/es/ui/src/ShyTable/src/const.d.ts +25 -0
  207. package/es/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  208. package/es/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  209. package/es/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  210. package/es/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  211. package/es/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  212. package/es/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  213. package/es/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  214. package/es/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  215. package/es/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  216. package/es/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  217. package/es/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  218. package/es/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  219. package/es/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  220. package/es/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  221. package/es/ui/src/ShyTable/src/props.d.ts +577 -0
  222. package/es/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  223. package/es/ui/src/ShyTable/src/types/table.d.ts +422 -0
  224. package/es/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  225. package/es/ui/src/ShyTag/index.d.ts +3 -0
  226. package/es/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  227. package/es/ui/src/ShyTag/src/props.d.ts +47 -0
  228. package/es/ui/src/StrengthMeter/index.d.ts +2 -0
  229. package/es/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  230. package/es/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  231. package/es/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
  232. package/es/ui/src/TablePlus/componentMap.d.ts +6 -0
  233. package/es/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  234. package/es/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  235. package/es/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  236. package/es/ui/src/TablePlus/hooks/index.d.ts +2 -0
  237. package/es/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  238. package/es/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  239. package/es/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  240. package/es/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  241. package/es/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  242. package/es/ui/src/TablePlus/index.d.ts +3 -0
  243. package/es/ui/src/TablePlus/props.d.ts +6 -0
  244. package/es/ui/src/TablePlus/types/componentType.d.ts +1 -0
  245. package/es/ui/src/Transition/index.d.ts +368 -0
  246. package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  247. package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  248. package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  249. package/es/ui/src/Tree/index.d.ts +12 -0
  250. package/es/ui/src/Tree/src/BasicTree.d.ts +97 -0
  251. package/es/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  252. package/es/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  253. package/es/ui/src/Tree/src/types/tree.d.ts +123 -0
  254. package/es/ui/src/Tree/style/index.d.ts +0 -0
  255. package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
  256. package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  257. package/es/ui/src/Upload/src/components/data.d.ts +9 -0
  258. package/es/ui/src/Upload/src/helper.d.ts +7 -0
  259. package/es/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  260. package/es/ui/src/Upload/src/props.d.ts +153 -0
  261. package/es/ui/src/Upload/src/types/typing.d.ts +45 -0
  262. package/es/ui/src/directives/clickOutside.d.ts +3 -0
  263. package/es/ui/src/directives/index.d.ts +1 -0
  264. package/es/ui/src/enums/sizeEnum.d.ts +11 -0
  265. package/es/ui/types/global.d.ts +102 -0
  266. package/es/ui/types/index.d.ts +36 -0
  267. package/lib/index.js +46623 -35025
  268. package/lib/style.css +1933 -2633
  269. package/lib/ui/config/index.d.ts +5 -0
  270. package/lib/ui/index.d.ts +34 -0
  271. package/lib/ui/src/AdvancedSearch/index.d.ts +3 -0
  272. package/lib/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  273. package/lib/ui/src/Basic/index.d.ts +4 -0
  274. package/lib/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  275. package/lib/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  276. package/lib/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  277. package/lib/ui/src/BasicContainer/index.d.ts +3 -0
  278. package/lib/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  279. package/lib/ui/src/BasicContainer/src/props.d.ts +94 -0
  280. package/lib/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  281. package/lib/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  282. package/lib/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  283. package/lib/ui/src/Button/index.d.ts +235 -0
  284. package/lib/ui/src/Button/src/BasicButton.d.ts +105 -0
  285. package/lib/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  286. package/lib/ui/src/Button/src/props.d.ts +48 -0
  287. package/lib/ui/src/ClickOutSide/index.d.ts +2 -0
  288. package/lib/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  289. package/lib/ui/src/ColorPickerPopover/index.d.ts +2 -0
  290. package/lib/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  291. package/lib/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  292. package/lib/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  293. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  294. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  295. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  296. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  297. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  298. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  299. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  300. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  301. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  302. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  303. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  304. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  305. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  306. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  307. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  308. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  309. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  310. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  311. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  312. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  313. package/lib/ui/src/Container/index.d.ts +5 -0
  314. package/lib/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  315. package/lib/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  316. package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
  317. package/lib/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  318. package/lib/ui/src/Container/src/typing.d.ts +15 -0
  319. package/lib/ui/src/ContextMenu/index.d.ts +3 -0
  320. package/lib/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  321. package/lib/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  322. package/lib/ui/src/ContextMenu/src/typing.d.ts +33 -0
  323. package/lib/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  324. package/lib/ui/src/CountDown/index.d.ts +3 -0
  325. package/lib/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  326. package/lib/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  327. package/lib/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  328. package/lib/ui/src/CountTo/index.d.ts +2 -0
  329. package/lib/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  330. package/lib/ui/src/Cropper/index.d.ts +4 -0
  331. package/lib/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  332. package/lib/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  333. package/lib/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  334. package/lib/ui/src/Cropper/src/typing.d.ts +6 -0
  335. package/lib/ui/src/Description/index.d.ts +6 -0
  336. package/lib/ui/src/Description/src/Description.d.ts +98 -0
  337. package/lib/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  338. package/lib/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  339. package/lib/ui/src/Description/src/components/formItem.d.ts +41 -0
  340. package/lib/ui/src/Description/src/props.d.ts +60 -0
  341. package/lib/ui/src/Description/src/typing.d.ts +38 -0
  342. package/lib/ui/src/Description/src/useDescription.d.ts +2 -0
  343. package/lib/ui/src/Descriptions/index.d.ts +249 -0
  344. package/lib/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  345. package/lib/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  346. package/lib/ui/src/Descriptions/src/props.d.ts +52 -0
  347. package/lib/ui/src/Descriptions/src/typing.d.ts +31 -0
  348. package/lib/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  349. package/lib/ui/src/Drawer/index.d.ts +4 -0
  350. package/lib/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  351. package/lib/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  352. package/lib/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  353. package/lib/ui/src/Drawer/src/props.d.ts +115 -0
  354. package/lib/ui/src/Drawer/src/typing.d.ts +177 -0
  355. package/lib/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  356. package/lib/ui/src/Dropdown/index.d.ts +3 -0
  357. package/lib/ui/src/Dropdown/src/typing.d.ts +9 -0
  358. package/lib/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  359. package/lib/ui/src/Icon/index.d.ts +5 -0
  360. package/lib/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  361. package/lib/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  362. package/lib/ui/src/Label/index.d.ts +2 -0
  363. package/lib/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  364. package/lib/ui/src/Label/src/props.d.ts +14 -0
  365. package/lib/ui/src/Loading/index.d.ts +4 -0
  366. package/lib/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  367. package/lib/ui/src/Loading/src/createLoading.d.ts +13 -0
  368. package/lib/ui/src/Loading/src/typing.d.ts +9 -0
  369. package/lib/ui/src/Loading/src/useLoading.d.ts +11 -0
  370. package/lib/ui/src/Modal/index.d.ts +710 -0
  371. package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  372. package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  373. package/lib/ui/src/Modal/src/components/Modal.d.ts +300 -0
  374. package/lib/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  375. package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  376. package/lib/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  377. package/lib/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  378. package/lib/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  379. package/lib/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  380. package/lib/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  381. package/lib/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  382. package/lib/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  383. package/lib/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  384. package/lib/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  385. package/lib/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  386. package/lib/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  387. package/lib/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  388. package/lib/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  389. package/lib/ui/src/Modal/src/props.d.ts +171 -0
  390. package/lib/ui/src/Modal/src/typing.d.ts +174 -0
  391. package/lib/ui/src/Modal/src/utils/index.d.ts +5 -0
  392. package/lib/ui/src/Modal/src/utils/is.d.ts +13 -0
  393. package/lib/ui/src/Modal/src/utils/log.d.ts +2 -0
  394. package/lib/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  395. package/lib/ui/src/Page/index.d.ts +5 -0
  396. package/lib/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  397. package/lib/ui/src/Page/src/PageSecond.d.ts +63 -0
  398. package/lib/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  399. package/lib/ui/src/Process/index.d.ts +2 -0
  400. package/lib/ui/src/Process/src/Process.d.ts +80 -0
  401. package/lib/ui/src/Scrollbar/index.d.ts +6 -0
  402. package/lib/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  403. package/lib/ui/src/Scrollbar/src/bar.d.ts +14 -0
  404. package/lib/ui/src/Scrollbar/src/types.d.ts +18 -0
  405. package/lib/ui/src/Scrollbar/src/util.d.ts +8 -0
  406. package/lib/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  407. package/lib/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  408. package/lib/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  409. package/lib/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  410. package/lib/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  411. package/lib/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  412. package/lib/ui/src/ShyContainer/index.d.ts +3 -0
  413. package/lib/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  414. package/lib/ui/src/ShyContainer/src/props.d.ts +98 -0
  415. package/lib/ui/src/ShyForm/index.d.ts +21 -0
  416. package/lib/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  417. package/lib/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  418. package/lib/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  419. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  420. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  421. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  422. package/lib/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  423. package/lib/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  424. package/lib/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  425. package/lib/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  426. package/lib/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  427. package/lib/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  428. package/lib/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  429. package/lib/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  430. package/lib/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  431. package/lib/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  432. package/lib/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  433. package/lib/ui/src/ShyForm/src/helper.d.ts +14 -0
  434. package/lib/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  435. package/lib/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  436. package/lib/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  437. package/lib/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  438. package/lib/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  439. package/lib/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  440. package/lib/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  441. package/lib/ui/src/ShyForm/src/props.d.ts +430 -0
  442. package/lib/ui/src/ShyForm/src/types/form.d.ts +127 -0
  443. package/lib/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  444. package/lib/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  445. package/lib/ui/src/ShyForm/src/types/index.d.ts +90 -0
  446. package/lib/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  447. package/lib/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  448. package/lib/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  449. package/lib/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  450. package/lib/ui/src/ShyTable/index.d.ts +10 -0
  451. package/lib/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  452. package/lib/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  453. package/lib/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  454. package/lib/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  455. package/lib/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  456. package/lib/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  457. package/lib/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  458. package/lib/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  459. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  460. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  461. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  462. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  463. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  464. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  465. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  466. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  467. package/lib/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  468. package/lib/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  469. package/lib/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  470. package/lib/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  471. package/lib/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  472. package/lib/ui/src/ShyTable/src/const.d.ts +25 -0
  473. package/lib/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  474. package/lib/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  475. package/lib/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  476. package/lib/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  477. package/lib/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  478. package/lib/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  479. package/lib/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  480. package/lib/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  481. package/lib/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  482. package/lib/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  483. package/lib/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  484. package/lib/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  485. package/lib/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  486. package/lib/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  487. package/lib/ui/src/ShyTable/src/props.d.ts +577 -0
  488. package/lib/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  489. package/lib/ui/src/ShyTable/src/types/table.d.ts +422 -0
  490. package/lib/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  491. package/lib/ui/src/ShyTag/index.d.ts +3 -0
  492. package/lib/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  493. package/lib/ui/src/ShyTag/src/props.d.ts +47 -0
  494. package/lib/ui/src/StrengthMeter/index.d.ts +2 -0
  495. package/lib/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  496. package/lib/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  497. package/lib/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
  498. package/lib/ui/src/TablePlus/componentMap.d.ts +6 -0
  499. package/lib/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  500. package/lib/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  501. package/lib/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  502. package/lib/ui/src/TablePlus/hooks/index.d.ts +2 -0
  503. package/lib/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  504. package/lib/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  505. package/lib/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  506. package/lib/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  507. package/lib/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  508. package/lib/ui/src/TablePlus/index.d.ts +3 -0
  509. package/lib/ui/src/TablePlus/props.d.ts +6 -0
  510. package/lib/ui/src/TablePlus/types/componentType.d.ts +1 -0
  511. package/lib/ui/src/Transition/index.d.ts +368 -0
  512. package/lib/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  513. package/lib/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  514. package/lib/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  515. package/lib/ui/src/Tree/index.d.ts +12 -0
  516. package/lib/ui/src/Tree/src/BasicTree.d.ts +97 -0
  517. package/lib/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  518. package/lib/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  519. package/lib/ui/src/Tree/src/types/tree.d.ts +123 -0
  520. package/lib/ui/src/Tree/style/index.d.ts +0 -0
  521. package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
  522. package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  523. package/lib/ui/src/Upload/src/components/data.d.ts +9 -0
  524. package/lib/ui/src/Upload/src/helper.d.ts +7 -0
  525. package/lib/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  526. package/lib/ui/src/Upload/src/props.d.ts +153 -0
  527. package/lib/ui/src/Upload/src/types/typing.d.ts +45 -0
  528. package/lib/ui/src/directives/clickOutside.d.ts +3 -0
  529. package/lib/ui/src/directives/index.d.ts +1 -0
  530. package/lib/ui/src/enums/sizeEnum.d.ts +11 -0
  531. package/lib/ui/types/global.d.ts +102 -0
  532. package/lib/ui/types/index.d.ts +36 -0
  533. package/package.json +7 -6
@@ -0,0 +1,1046 @@
1
+ import type { FormSchema } from './types/form';
2
+ declare const ShyForm: import("vue").DefineComponent<{
3
+ gap: {
4
+ type: NumberConstructor;
5
+ default: number;
6
+ };
7
+ formLabelInInput: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ model: {
12
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
13
+ default: () => import("vue").PropType<Recordable<any>>;
14
+ };
15
+ labelWidth: {
16
+ type: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
17
+ default: number;
18
+ };
19
+ fieldMapToTime: {
20
+ type: ((new (...args: any[]) => import("./types/form").FieldMapToTime) | (() => import("./types/form").FieldMapToTime)) | ((new (...args: any[]) => import("./types/form").FieldMapToTime) | (() => import("./types/form").FieldMapToTime))[];
21
+ default: () => import("vue").PropType<import("./types/form").FieldMapToTime>;
22
+ };
23
+ compact: {
24
+ type: BooleanConstructor;
25
+ };
26
+ schemas: {
27
+ type: ((new (...args: any[]) => FormSchema[]) | (() => FormSchema[])) | ((new (...args: any[]) => FormSchema[]) | (() => FormSchema[]))[];
28
+ default: () => import("vue").PropType<FormSchema[]>;
29
+ };
30
+ mergeDynamicData: {
31
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
32
+ default: any;
33
+ };
34
+ baseRowStyle: {
35
+ type: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
36
+ };
37
+ baseColProps: {
38
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
39
+ };
40
+ autoSetPlaceHolder: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ autoSubmitOnEnter: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ submitOnReset: {
49
+ type: BooleanConstructor;
50
+ };
51
+ submitOnChange: {
52
+ type: BooleanConstructor;
53
+ };
54
+ size: {
55
+ type: ((new (...args: any[]) => "small" | "large" | "middle") | (() => "small" | "large" | "middle")) | ((new (...args: any[]) => "small" | "large" | "middle") | (() => "small" | "large" | "middle"))[];
56
+ default: any;
57
+ };
58
+ disabled: {
59
+ type: BooleanConstructor;
60
+ };
61
+ emptySpan: {
62
+ type: ((new (...args: any[]) => number | Partial<import("./types").ColEx>) | (() => number | Partial<import("./types").ColEx>)) | ((new (...args: any[]) => number | Partial<import("./types").ColEx>) | (() => number | Partial<import("./types").ColEx>))[];
63
+ default: number;
64
+ };
65
+ showAdvancedButton: {
66
+ type: BooleanConstructor;
67
+ };
68
+ transformDateFunc: {
69
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
70
+ (): Fn<any, any>;
71
+ new (): any;
72
+ readonly prototype: any;
73
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
74
+ (): Fn<any, any>;
75
+ new (): any;
76
+ readonly prototype: any;
77
+ })[];
78
+ default: (date: any) => any;
79
+ };
80
+ rulesMessageJoinLabel: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
84
+ autoAdvancedLine: {
85
+ type: NumberConstructor;
86
+ default: number;
87
+ };
88
+ alwaysShowLines: {
89
+ type: NumberConstructor;
90
+ default: number;
91
+ };
92
+ showActionButtonGroup: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ actionColOptions: {
97
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
98
+ };
99
+ showResetButton: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ autoFocusFirstItem: {
104
+ type: BooleanConstructor;
105
+ };
106
+ resetButtonOptions: {
107
+ type: ((new (...args: any[]) => Partial<{
108
+ htmlType?: "button" | "reset" | "submit";
109
+ loading?: boolean | {
110
+ delay?: number;
111
+ };
112
+ ghost?: boolean;
113
+ prefixCls?: string;
114
+ disabled?: boolean;
115
+ block?: boolean;
116
+ danger: boolean;
117
+ icon: any;
118
+ href: string;
119
+ target: string;
120
+ title: string;
121
+ shape: "default" | "circle" | "round";
122
+ size: "small" | "large" | "middle";
123
+ onClick: (event: MouseEvent) => void;
124
+ onMousedown?: (event: MouseEvent) => void;
125
+ }>) | (() => Partial<{
126
+ htmlType?: "button" | "reset" | "submit";
127
+ loading?: boolean | {
128
+ delay?: number;
129
+ };
130
+ ghost?: boolean;
131
+ prefixCls?: string;
132
+ disabled?: boolean;
133
+ block?: boolean;
134
+ danger: boolean;
135
+ icon: any;
136
+ href: string;
137
+ target: string;
138
+ title: string;
139
+ shape: "default" | "circle" | "round";
140
+ size: "small" | "large" | "middle";
141
+ onClick: (event: MouseEvent) => void;
142
+ onMousedown?: (event: MouseEvent) => void;
143
+ }>)) | ((new (...args: any[]) => Partial<{
144
+ htmlType?: "button" | "reset" | "submit";
145
+ loading?: boolean | {
146
+ delay?: number;
147
+ };
148
+ ghost?: boolean;
149
+ prefixCls?: string;
150
+ disabled?: boolean;
151
+ block?: boolean;
152
+ danger: boolean;
153
+ icon: any;
154
+ href: string;
155
+ target: string;
156
+ title: string;
157
+ shape: "default" | "circle" | "round";
158
+ size: "small" | "large" | "middle";
159
+ onClick: (event: MouseEvent) => void;
160
+ onMousedown?: (event: MouseEvent) => void;
161
+ }>) | (() => Partial<{
162
+ htmlType?: "button" | "reset" | "submit";
163
+ loading?: boolean | {
164
+ delay?: number;
165
+ };
166
+ ghost?: boolean;
167
+ prefixCls?: string;
168
+ disabled?: boolean;
169
+ block?: boolean;
170
+ danger: boolean;
171
+ icon: any;
172
+ href: string;
173
+ target: string;
174
+ title: string;
175
+ shape: "default" | "circle" | "round";
176
+ size: "small" | "large" | "middle";
177
+ onClick: (event: MouseEvent) => void;
178
+ onMousedown?: (event: MouseEvent) => void;
179
+ }>))[];
180
+ };
181
+ showSubmitButton: {
182
+ type: BooleanConstructor;
183
+ default: boolean;
184
+ };
185
+ submitButtonOptions: {
186
+ type: ((new (...args: any[]) => Partial<{
187
+ htmlType?: "button" | "reset" | "submit";
188
+ loading?: boolean | {
189
+ delay?: number;
190
+ };
191
+ ghost?: boolean;
192
+ prefixCls?: string;
193
+ disabled?: boolean;
194
+ block?: boolean;
195
+ danger: boolean;
196
+ icon: any;
197
+ href: string;
198
+ target: string;
199
+ title: string;
200
+ shape: "default" | "circle" | "round";
201
+ size: "small" | "large" | "middle";
202
+ onClick: (event: MouseEvent) => void;
203
+ onMousedown?: (event: MouseEvent) => void;
204
+ }>) | (() => Partial<{
205
+ htmlType?: "button" | "reset" | "submit";
206
+ loading?: boolean | {
207
+ delay?: number;
208
+ };
209
+ ghost?: boolean;
210
+ prefixCls?: string;
211
+ disabled?: boolean;
212
+ block?: boolean;
213
+ danger: boolean;
214
+ icon: any;
215
+ href: string;
216
+ target: string;
217
+ title: string;
218
+ shape: "default" | "circle" | "round";
219
+ size: "small" | "large" | "middle";
220
+ onClick: (event: MouseEvent) => void;
221
+ onMousedown?: (event: MouseEvent) => void;
222
+ }>)) | ((new (...args: any[]) => Partial<{
223
+ htmlType?: "button" | "reset" | "submit";
224
+ loading?: boolean | {
225
+ delay?: number;
226
+ };
227
+ ghost?: boolean;
228
+ prefixCls?: string;
229
+ disabled?: boolean;
230
+ block?: boolean;
231
+ danger: boolean;
232
+ icon: any;
233
+ href: string;
234
+ target: string;
235
+ title: string;
236
+ shape: "default" | "circle" | "round";
237
+ size: "small" | "large" | "middle";
238
+ onClick: (event: MouseEvent) => void;
239
+ onMousedown?: (event: MouseEvent) => void;
240
+ }>) | (() => Partial<{
241
+ htmlType?: "button" | "reset" | "submit";
242
+ loading?: boolean | {
243
+ delay?: number;
244
+ };
245
+ ghost?: boolean;
246
+ prefixCls?: string;
247
+ disabled?: boolean;
248
+ block?: boolean;
249
+ danger: boolean;
250
+ icon: any;
251
+ href: string;
252
+ target: string;
253
+ title: string;
254
+ shape: "default" | "circle" | "round";
255
+ size: "small" | "large" | "middle";
256
+ onClick: (event: MouseEvent) => void;
257
+ onMousedown?: (event: MouseEvent) => void;
258
+ }>))[];
259
+ };
260
+ resetFunc: {
261
+ type: ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
262
+ (): () => Promise<void>;
263
+ new (): any;
264
+ readonly prototype: any;
265
+ }) | ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
266
+ (): () => Promise<void>;
267
+ new (): any;
268
+ readonly prototype: any;
269
+ })[];
270
+ };
271
+ submitFunc: {
272
+ type: ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
273
+ (): () => Promise<void>;
274
+ new (): any;
275
+ readonly prototype: any;
276
+ }) | ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
277
+ (): () => Promise<void>;
278
+ new (): any;
279
+ readonly prototype: any;
280
+ })[];
281
+ };
282
+ hideRequiredMark: {
283
+ type: BooleanConstructor;
284
+ };
285
+ labelCol: {
286
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
287
+ };
288
+ layout: {
289
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
290
+ default: string;
291
+ };
292
+ tableAction: {
293
+ type: ((new (...args: any[]) => import("../../ShyTable").TableActionType) | (() => import("../../ShyTable").TableActionType)) | ((new (...args: any[]) => import("../../ShyTable").TableActionType) | (() => import("../../ShyTable").TableActionType))[];
294
+ };
295
+ wrapperCol: {
296
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
297
+ };
298
+ colon: {
299
+ type: BooleanConstructor;
300
+ };
301
+ labelAlign: {
302
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
303
+ };
304
+ rowProps: {
305
+ type: ((new (...args: any[]) => Partial<import("vue").ExtractPropTypes<{
306
+ align: {
307
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
308
+ xxl?: "top" | "bottom" | "middle" | "stretch";
309
+ xl?: "top" | "bottom" | "middle" | "stretch";
310
+ lg?: "top" | "bottom" | "middle" | "stretch";
311
+ md?: "top" | "bottom" | "middle" | "stretch";
312
+ sm?: "top" | "bottom" | "middle" | "stretch";
313
+ xs?: "top" | "bottom" | "middle" | "stretch";
314
+ }>;
315
+ default: "top" | "bottom" | "middle" | "stretch" | {
316
+ xxl?: "top" | "bottom" | "middle" | "stretch";
317
+ xl?: "top" | "bottom" | "middle" | "stretch";
318
+ lg?: "top" | "bottom" | "middle" | "stretch";
319
+ md?: "top" | "bottom" | "middle" | "stretch";
320
+ sm?: "top" | "bottom" | "middle" | "stretch";
321
+ xs?: "top" | "bottom" | "middle" | "stretch";
322
+ };
323
+ };
324
+ justify: {
325
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
326
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
327
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
328
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
329
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
330
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
331
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
332
+ }>;
333
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
334
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
335
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
336
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
337
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
338
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
339
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
340
+ };
341
+ };
342
+ prefixCls: StringConstructor;
343
+ gutter: {
344
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
345
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
346
+ };
347
+ wrap: {
348
+ type: BooleanConstructor;
349
+ default: any;
350
+ };
351
+ }>>) | (() => Partial<import("vue").ExtractPropTypes<{
352
+ align: {
353
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
354
+ xxl?: "top" | "bottom" | "middle" | "stretch";
355
+ xl?: "top" | "bottom" | "middle" | "stretch";
356
+ lg?: "top" | "bottom" | "middle" | "stretch";
357
+ md?: "top" | "bottom" | "middle" | "stretch";
358
+ sm?: "top" | "bottom" | "middle" | "stretch";
359
+ xs?: "top" | "bottom" | "middle" | "stretch";
360
+ }>;
361
+ default: "top" | "bottom" | "middle" | "stretch" | {
362
+ xxl?: "top" | "bottom" | "middle" | "stretch";
363
+ xl?: "top" | "bottom" | "middle" | "stretch";
364
+ lg?: "top" | "bottom" | "middle" | "stretch";
365
+ md?: "top" | "bottom" | "middle" | "stretch";
366
+ sm?: "top" | "bottom" | "middle" | "stretch";
367
+ xs?: "top" | "bottom" | "middle" | "stretch";
368
+ };
369
+ };
370
+ justify: {
371
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
372
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
373
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
374
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
375
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
376
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
377
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
378
+ }>;
379
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
380
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
381
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
382
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
383
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
384
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
385
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
386
+ };
387
+ };
388
+ prefixCls: StringConstructor;
389
+ gutter: {
390
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
391
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
392
+ };
393
+ wrap: {
394
+ type: BooleanConstructor;
395
+ default: any;
396
+ };
397
+ }>>)) | ((new (...args: any[]) => Partial<import("vue").ExtractPropTypes<{
398
+ align: {
399
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
400
+ xxl?: "top" | "bottom" | "middle" | "stretch";
401
+ xl?: "top" | "bottom" | "middle" | "stretch";
402
+ lg?: "top" | "bottom" | "middle" | "stretch";
403
+ md?: "top" | "bottom" | "middle" | "stretch";
404
+ sm?: "top" | "bottom" | "middle" | "stretch";
405
+ xs?: "top" | "bottom" | "middle" | "stretch";
406
+ }>;
407
+ default: "top" | "bottom" | "middle" | "stretch" | {
408
+ xxl?: "top" | "bottom" | "middle" | "stretch";
409
+ xl?: "top" | "bottom" | "middle" | "stretch";
410
+ lg?: "top" | "bottom" | "middle" | "stretch";
411
+ md?: "top" | "bottom" | "middle" | "stretch";
412
+ sm?: "top" | "bottom" | "middle" | "stretch";
413
+ xs?: "top" | "bottom" | "middle" | "stretch";
414
+ };
415
+ };
416
+ justify: {
417
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
418
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
419
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
420
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
421
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
422
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
423
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
424
+ }>;
425
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
426
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
427
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
428
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
429
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
430
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
431
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
432
+ };
433
+ };
434
+ prefixCls: StringConstructor;
435
+ gutter: {
436
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
437
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
438
+ };
439
+ wrap: {
440
+ type: BooleanConstructor;
441
+ default: any;
442
+ };
443
+ }>>) | (() => Partial<import("vue").ExtractPropTypes<{
444
+ align: {
445
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
446
+ xxl?: "top" | "bottom" | "middle" | "stretch";
447
+ xl?: "top" | "bottom" | "middle" | "stretch";
448
+ lg?: "top" | "bottom" | "middle" | "stretch";
449
+ md?: "top" | "bottom" | "middle" | "stretch";
450
+ sm?: "top" | "bottom" | "middle" | "stretch";
451
+ xs?: "top" | "bottom" | "middle" | "stretch";
452
+ }>;
453
+ default: "top" | "bottom" | "middle" | "stretch" | {
454
+ xxl?: "top" | "bottom" | "middle" | "stretch";
455
+ xl?: "top" | "bottom" | "middle" | "stretch";
456
+ lg?: "top" | "bottom" | "middle" | "stretch";
457
+ md?: "top" | "bottom" | "middle" | "stretch";
458
+ sm?: "top" | "bottom" | "middle" | "stretch";
459
+ xs?: "top" | "bottom" | "middle" | "stretch";
460
+ };
461
+ };
462
+ justify: {
463
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
464
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
465
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
466
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
467
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
468
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
469
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
470
+ }>;
471
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
472
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
473
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
474
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
475
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
476
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
477
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
478
+ };
479
+ };
480
+ prefixCls: StringConstructor;
481
+ gutter: {
482
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
483
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
484
+ };
485
+ wrap: {
486
+ type: BooleanConstructor;
487
+ default: any;
488
+ };
489
+ }>>))[];
490
+ };
491
+ rangePickerField: {
492
+ type: ArrayConstructor;
493
+ default: () => any[];
494
+ };
495
+ onFieldValueChange: {
496
+ type: ((new (...args: any[]) => (...args: any[]) => void) | (() => (...args: any[]) => void) | {
497
+ (): (...args: any[]) => void;
498
+ new (): any;
499
+ readonly prototype: any;
500
+ }) | ((new (...args: any[]) => (...args: any[]) => void) | (() => (...args: any[]) => void) | {
501
+ (): (...args: any[]) => void;
502
+ new (): any;
503
+ readonly prototype: any;
504
+ })[];
505
+ };
506
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("reset" | "submit" | "register" | "advanced-change" | "field-value-change")[], "reset" | "submit" | "register" | "advanced-change" | "field-value-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
507
+ gap: {
508
+ type: NumberConstructor;
509
+ default: number;
510
+ };
511
+ formLabelInInput: {
512
+ type: BooleanConstructor;
513
+ default: boolean;
514
+ };
515
+ model: {
516
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
517
+ default: () => import("vue").PropType<Recordable<any>>;
518
+ };
519
+ labelWidth: {
520
+ type: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
521
+ default: number;
522
+ };
523
+ fieldMapToTime: {
524
+ type: ((new (...args: any[]) => import("./types/form").FieldMapToTime) | (() => import("./types/form").FieldMapToTime)) | ((new (...args: any[]) => import("./types/form").FieldMapToTime) | (() => import("./types/form").FieldMapToTime))[];
525
+ default: () => import("vue").PropType<import("./types/form").FieldMapToTime>;
526
+ };
527
+ compact: {
528
+ type: BooleanConstructor;
529
+ };
530
+ schemas: {
531
+ type: ((new (...args: any[]) => FormSchema[]) | (() => FormSchema[])) | ((new (...args: any[]) => FormSchema[]) | (() => FormSchema[]))[];
532
+ default: () => import("vue").PropType<FormSchema[]>;
533
+ };
534
+ mergeDynamicData: {
535
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
536
+ default: any;
537
+ };
538
+ baseRowStyle: {
539
+ type: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
540
+ };
541
+ baseColProps: {
542
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
543
+ };
544
+ autoSetPlaceHolder: {
545
+ type: BooleanConstructor;
546
+ default: boolean;
547
+ };
548
+ autoSubmitOnEnter: {
549
+ type: BooleanConstructor;
550
+ default: boolean;
551
+ };
552
+ submitOnReset: {
553
+ type: BooleanConstructor;
554
+ };
555
+ submitOnChange: {
556
+ type: BooleanConstructor;
557
+ };
558
+ size: {
559
+ type: ((new (...args: any[]) => "small" | "large" | "middle") | (() => "small" | "large" | "middle")) | ((new (...args: any[]) => "small" | "large" | "middle") | (() => "small" | "large" | "middle"))[];
560
+ default: any;
561
+ };
562
+ disabled: {
563
+ type: BooleanConstructor;
564
+ };
565
+ emptySpan: {
566
+ type: ((new (...args: any[]) => number | Partial<import("./types").ColEx>) | (() => number | Partial<import("./types").ColEx>)) | ((new (...args: any[]) => number | Partial<import("./types").ColEx>) | (() => number | Partial<import("./types").ColEx>))[];
567
+ default: number;
568
+ };
569
+ showAdvancedButton: {
570
+ type: BooleanConstructor;
571
+ };
572
+ transformDateFunc: {
573
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
574
+ (): Fn<any, any>;
575
+ new (): any;
576
+ readonly prototype: any;
577
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
578
+ (): Fn<any, any>;
579
+ new (): any;
580
+ readonly prototype: any;
581
+ })[];
582
+ default: (date: any) => any;
583
+ };
584
+ rulesMessageJoinLabel: {
585
+ type: BooleanConstructor;
586
+ default: boolean;
587
+ };
588
+ autoAdvancedLine: {
589
+ type: NumberConstructor;
590
+ default: number;
591
+ };
592
+ alwaysShowLines: {
593
+ type: NumberConstructor;
594
+ default: number;
595
+ };
596
+ showActionButtonGroup: {
597
+ type: BooleanConstructor;
598
+ default: boolean;
599
+ };
600
+ actionColOptions: {
601
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
602
+ };
603
+ showResetButton: {
604
+ type: BooleanConstructor;
605
+ default: boolean;
606
+ };
607
+ autoFocusFirstItem: {
608
+ type: BooleanConstructor;
609
+ };
610
+ resetButtonOptions: {
611
+ type: ((new (...args: any[]) => Partial<{
612
+ htmlType?: "button" | "reset" | "submit";
613
+ loading?: boolean | {
614
+ delay?: number;
615
+ };
616
+ ghost?: boolean;
617
+ prefixCls?: string;
618
+ disabled?: boolean;
619
+ block?: boolean;
620
+ danger: boolean;
621
+ icon: any;
622
+ href: string;
623
+ target: string;
624
+ title: string;
625
+ shape: "default" | "circle" | "round";
626
+ size: "small" | "large" | "middle";
627
+ onClick: (event: MouseEvent) => void;
628
+ onMousedown?: (event: MouseEvent) => void;
629
+ }>) | (() => Partial<{
630
+ htmlType?: "button" | "reset" | "submit";
631
+ loading?: boolean | {
632
+ delay?: number;
633
+ };
634
+ ghost?: boolean;
635
+ prefixCls?: string;
636
+ disabled?: boolean;
637
+ block?: boolean;
638
+ danger: boolean;
639
+ icon: any;
640
+ href: string;
641
+ target: string;
642
+ title: string;
643
+ shape: "default" | "circle" | "round";
644
+ size: "small" | "large" | "middle";
645
+ onClick: (event: MouseEvent) => void;
646
+ onMousedown?: (event: MouseEvent) => void;
647
+ }>)) | ((new (...args: any[]) => Partial<{
648
+ htmlType?: "button" | "reset" | "submit";
649
+ loading?: boolean | {
650
+ delay?: number;
651
+ };
652
+ ghost?: boolean;
653
+ prefixCls?: string;
654
+ disabled?: boolean;
655
+ block?: boolean;
656
+ danger: boolean;
657
+ icon: any;
658
+ href: string;
659
+ target: string;
660
+ title: string;
661
+ shape: "default" | "circle" | "round";
662
+ size: "small" | "large" | "middle";
663
+ onClick: (event: MouseEvent) => void;
664
+ onMousedown?: (event: MouseEvent) => void;
665
+ }>) | (() => Partial<{
666
+ htmlType?: "button" | "reset" | "submit";
667
+ loading?: boolean | {
668
+ delay?: number;
669
+ };
670
+ ghost?: boolean;
671
+ prefixCls?: string;
672
+ disabled?: boolean;
673
+ block?: boolean;
674
+ danger: boolean;
675
+ icon: any;
676
+ href: string;
677
+ target: string;
678
+ title: string;
679
+ shape: "default" | "circle" | "round";
680
+ size: "small" | "large" | "middle";
681
+ onClick: (event: MouseEvent) => void;
682
+ onMousedown?: (event: MouseEvent) => void;
683
+ }>))[];
684
+ };
685
+ showSubmitButton: {
686
+ type: BooleanConstructor;
687
+ default: boolean;
688
+ };
689
+ submitButtonOptions: {
690
+ type: ((new (...args: any[]) => Partial<{
691
+ htmlType?: "button" | "reset" | "submit";
692
+ loading?: boolean | {
693
+ delay?: number;
694
+ };
695
+ ghost?: boolean;
696
+ prefixCls?: string;
697
+ disabled?: boolean;
698
+ block?: boolean;
699
+ danger: boolean;
700
+ icon: any;
701
+ href: string;
702
+ target: string;
703
+ title: string;
704
+ shape: "default" | "circle" | "round";
705
+ size: "small" | "large" | "middle";
706
+ onClick: (event: MouseEvent) => void;
707
+ onMousedown?: (event: MouseEvent) => void;
708
+ }>) | (() => Partial<{
709
+ htmlType?: "button" | "reset" | "submit";
710
+ loading?: boolean | {
711
+ delay?: number;
712
+ };
713
+ ghost?: boolean;
714
+ prefixCls?: string;
715
+ disabled?: boolean;
716
+ block?: boolean;
717
+ danger: boolean;
718
+ icon: any;
719
+ href: string;
720
+ target: string;
721
+ title: string;
722
+ shape: "default" | "circle" | "round";
723
+ size: "small" | "large" | "middle";
724
+ onClick: (event: MouseEvent) => void;
725
+ onMousedown?: (event: MouseEvent) => void;
726
+ }>)) | ((new (...args: any[]) => Partial<{
727
+ htmlType?: "button" | "reset" | "submit";
728
+ loading?: boolean | {
729
+ delay?: number;
730
+ };
731
+ ghost?: boolean;
732
+ prefixCls?: string;
733
+ disabled?: boolean;
734
+ block?: boolean;
735
+ danger: boolean;
736
+ icon: any;
737
+ href: string;
738
+ target: string;
739
+ title: string;
740
+ shape: "default" | "circle" | "round";
741
+ size: "small" | "large" | "middle";
742
+ onClick: (event: MouseEvent) => void;
743
+ onMousedown?: (event: MouseEvent) => void;
744
+ }>) | (() => Partial<{
745
+ htmlType?: "button" | "reset" | "submit";
746
+ loading?: boolean | {
747
+ delay?: number;
748
+ };
749
+ ghost?: boolean;
750
+ prefixCls?: string;
751
+ disabled?: boolean;
752
+ block?: boolean;
753
+ danger: boolean;
754
+ icon: any;
755
+ href: string;
756
+ target: string;
757
+ title: string;
758
+ shape: "default" | "circle" | "round";
759
+ size: "small" | "large" | "middle";
760
+ onClick: (event: MouseEvent) => void;
761
+ onMousedown?: (event: MouseEvent) => void;
762
+ }>))[];
763
+ };
764
+ resetFunc: {
765
+ type: ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
766
+ (): () => Promise<void>;
767
+ new (): any;
768
+ readonly prototype: any;
769
+ }) | ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
770
+ (): () => Promise<void>;
771
+ new (): any;
772
+ readonly prototype: any;
773
+ })[];
774
+ };
775
+ submitFunc: {
776
+ type: ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
777
+ (): () => Promise<void>;
778
+ new (): any;
779
+ readonly prototype: any;
780
+ }) | ((new (...args: any[]) => () => Promise<void>) | (() => () => Promise<void>) | {
781
+ (): () => Promise<void>;
782
+ new (): any;
783
+ readonly prototype: any;
784
+ })[];
785
+ };
786
+ hideRequiredMark: {
787
+ type: BooleanConstructor;
788
+ };
789
+ labelCol: {
790
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
791
+ };
792
+ layout: {
793
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
794
+ default: string;
795
+ };
796
+ tableAction: {
797
+ type: ((new (...args: any[]) => import("../../ShyTable").TableActionType) | (() => import("../../ShyTable").TableActionType)) | ((new (...args: any[]) => import("../../ShyTable").TableActionType) | (() => import("../../ShyTable").TableActionType))[];
798
+ };
799
+ wrapperCol: {
800
+ type: ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>)) | ((new (...args: any[]) => Partial<import("./types").ColEx>) | (() => Partial<import("./types").ColEx>))[];
801
+ };
802
+ colon: {
803
+ type: BooleanConstructor;
804
+ };
805
+ labelAlign: {
806
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
807
+ };
808
+ rowProps: {
809
+ type: ((new (...args: any[]) => Partial<import("vue").ExtractPropTypes<{
810
+ align: {
811
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
812
+ xxl?: "top" | "bottom" | "middle" | "stretch";
813
+ xl?: "top" | "bottom" | "middle" | "stretch";
814
+ lg?: "top" | "bottom" | "middle" | "stretch";
815
+ md?: "top" | "bottom" | "middle" | "stretch";
816
+ sm?: "top" | "bottom" | "middle" | "stretch";
817
+ xs?: "top" | "bottom" | "middle" | "stretch";
818
+ }>;
819
+ default: "top" | "bottom" | "middle" | "stretch" | {
820
+ xxl?: "top" | "bottom" | "middle" | "stretch";
821
+ xl?: "top" | "bottom" | "middle" | "stretch";
822
+ lg?: "top" | "bottom" | "middle" | "stretch";
823
+ md?: "top" | "bottom" | "middle" | "stretch";
824
+ sm?: "top" | "bottom" | "middle" | "stretch";
825
+ xs?: "top" | "bottom" | "middle" | "stretch";
826
+ };
827
+ };
828
+ justify: {
829
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
830
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
831
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
832
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
833
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
834
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
835
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
836
+ }>;
837
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
838
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
839
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
840
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
841
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
842
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
843
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
844
+ };
845
+ };
846
+ prefixCls: StringConstructor;
847
+ gutter: {
848
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
849
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
850
+ };
851
+ wrap: {
852
+ type: BooleanConstructor;
853
+ default: any;
854
+ };
855
+ }>>) | (() => Partial<import("vue").ExtractPropTypes<{
856
+ align: {
857
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
858
+ xxl?: "top" | "bottom" | "middle" | "stretch";
859
+ xl?: "top" | "bottom" | "middle" | "stretch";
860
+ lg?: "top" | "bottom" | "middle" | "stretch";
861
+ md?: "top" | "bottom" | "middle" | "stretch";
862
+ sm?: "top" | "bottom" | "middle" | "stretch";
863
+ xs?: "top" | "bottom" | "middle" | "stretch";
864
+ }>;
865
+ default: "top" | "bottom" | "middle" | "stretch" | {
866
+ xxl?: "top" | "bottom" | "middle" | "stretch";
867
+ xl?: "top" | "bottom" | "middle" | "stretch";
868
+ lg?: "top" | "bottom" | "middle" | "stretch";
869
+ md?: "top" | "bottom" | "middle" | "stretch";
870
+ sm?: "top" | "bottom" | "middle" | "stretch";
871
+ xs?: "top" | "bottom" | "middle" | "stretch";
872
+ };
873
+ };
874
+ justify: {
875
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
876
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
877
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
878
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
879
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
880
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
881
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
882
+ }>;
883
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
884
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
885
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
886
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
887
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
888
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
889
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
890
+ };
891
+ };
892
+ prefixCls: StringConstructor;
893
+ gutter: {
894
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
895
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
896
+ };
897
+ wrap: {
898
+ type: BooleanConstructor;
899
+ default: any;
900
+ };
901
+ }>>)) | ((new (...args: any[]) => Partial<import("vue").ExtractPropTypes<{
902
+ align: {
903
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
904
+ xxl?: "top" | "bottom" | "middle" | "stretch";
905
+ xl?: "top" | "bottom" | "middle" | "stretch";
906
+ lg?: "top" | "bottom" | "middle" | "stretch";
907
+ md?: "top" | "bottom" | "middle" | "stretch";
908
+ sm?: "top" | "bottom" | "middle" | "stretch";
909
+ xs?: "top" | "bottom" | "middle" | "stretch";
910
+ }>;
911
+ default: "top" | "bottom" | "middle" | "stretch" | {
912
+ xxl?: "top" | "bottom" | "middle" | "stretch";
913
+ xl?: "top" | "bottom" | "middle" | "stretch";
914
+ lg?: "top" | "bottom" | "middle" | "stretch";
915
+ md?: "top" | "bottom" | "middle" | "stretch";
916
+ sm?: "top" | "bottom" | "middle" | "stretch";
917
+ xs?: "top" | "bottom" | "middle" | "stretch";
918
+ };
919
+ };
920
+ justify: {
921
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
922
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
923
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
924
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
925
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
926
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
927
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
928
+ }>;
929
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
930
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
931
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
932
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
933
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
934
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
935
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
936
+ };
937
+ };
938
+ prefixCls: StringConstructor;
939
+ gutter: {
940
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
941
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
942
+ };
943
+ wrap: {
944
+ type: BooleanConstructor;
945
+ default: any;
946
+ };
947
+ }>>) | (() => Partial<import("vue").ExtractPropTypes<{
948
+ align: {
949
+ type: import("vue").PropType<"top" | "bottom" | "middle" | "stretch" | {
950
+ xxl?: "top" | "bottom" | "middle" | "stretch";
951
+ xl?: "top" | "bottom" | "middle" | "stretch";
952
+ lg?: "top" | "bottom" | "middle" | "stretch";
953
+ md?: "top" | "bottom" | "middle" | "stretch";
954
+ sm?: "top" | "bottom" | "middle" | "stretch";
955
+ xs?: "top" | "bottom" | "middle" | "stretch";
956
+ }>;
957
+ default: "top" | "bottom" | "middle" | "stretch" | {
958
+ xxl?: "top" | "bottom" | "middle" | "stretch";
959
+ xl?: "top" | "bottom" | "middle" | "stretch";
960
+ lg?: "top" | "bottom" | "middle" | "stretch";
961
+ md?: "top" | "bottom" | "middle" | "stretch";
962
+ sm?: "top" | "bottom" | "middle" | "stretch";
963
+ xs?: "top" | "bottom" | "middle" | "stretch";
964
+ };
965
+ };
966
+ justify: {
967
+ type: import("vue").PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
968
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
969
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
970
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
971
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
972
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
973
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
974
+ }>;
975
+ default: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly" | {
976
+ xxl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
977
+ xl?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
978
+ lg?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
979
+ md?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
980
+ sm?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
981
+ xs?: "start" | "end" | "center" | "space-around" | "space-between" | "space-evenly";
982
+ };
983
+ };
984
+ prefixCls: StringConstructor;
985
+ gutter: {
986
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
987
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
988
+ };
989
+ wrap: {
990
+ type: BooleanConstructor;
991
+ default: any;
992
+ };
993
+ }>>))[];
994
+ };
995
+ rangePickerField: {
996
+ type: ArrayConstructor;
997
+ default: () => any[];
998
+ };
999
+ onFieldValueChange: {
1000
+ type: ((new (...args: any[]) => (...args: any[]) => void) | (() => (...args: any[]) => void) | {
1001
+ (): (...args: any[]) => void;
1002
+ new (): any;
1003
+ readonly prototype: any;
1004
+ }) | ((new (...args: any[]) => (...args: any[]) => void) | (() => (...args: any[]) => void) | {
1005
+ (): (...args: any[]) => void;
1006
+ new (): any;
1007
+ readonly prototype: any;
1008
+ })[];
1009
+ };
1010
+ }>> & {
1011
+ onReset?: (...args: any[]) => any;
1012
+ onSubmit?: (...args: any[]) => any;
1013
+ onRegister?: (...args: any[]) => any;
1014
+ "onAdvanced-change"?: (...args: any[]) => any;
1015
+ "onField-value-change"?: (...args: any[]) => any;
1016
+ }, {
1017
+ size: "small" | "large" | "middle";
1018
+ schemas: FormSchema[];
1019
+ disabled: boolean;
1020
+ gap: number;
1021
+ labelWidth: string | number;
1022
+ layout: "vertical" | "horizontal" | "inline";
1023
+ colon: boolean;
1024
+ hideRequiredMark: boolean;
1025
+ model: import("vue").PropType<Recordable<any>>;
1026
+ formLabelInInput: boolean;
1027
+ fieldMapToTime: import("./types/form").FieldMapToTime;
1028
+ compact: boolean;
1029
+ mergeDynamicData: any;
1030
+ autoSetPlaceHolder: boolean;
1031
+ autoSubmitOnEnter: boolean;
1032
+ submitOnReset: boolean;
1033
+ submitOnChange: boolean;
1034
+ emptySpan: number;
1035
+ showAdvancedButton: boolean;
1036
+ transformDateFunc: Fn<any, any>;
1037
+ rulesMessageJoinLabel: boolean;
1038
+ autoAdvancedLine: number;
1039
+ alwaysShowLines: number;
1040
+ showActionButtonGroup: boolean;
1041
+ showResetButton: boolean;
1042
+ autoFocusFirstItem: boolean;
1043
+ showSubmitButton: boolean;
1044
+ rangePickerField: unknown[];
1045
+ }, {}>;
1046
+ export default ShyForm;