3h1-ui 3.0.0-next.23 → 3.0.0-next.231

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 +46574 -34994
  2. package/es/style.css +4530 -3609
  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 +629 -0
  105. package/es/ui/src/Modal/src/BasicModal.vue.d.ts +282 -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 +260 -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 +264 -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 +157 -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 +2000 -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 +912 -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 +46739 -35159
  268. package/lib/style.css +4530 -3609
  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 +629 -0
  371. package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +282 -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 +260 -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 +264 -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 +157 -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 +2000 -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 +912 -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 +6 -5
@@ -0,0 +1,1200 @@
1
+ import type { TableActionType, SizeType } from './types/table';
2
+ declare const ShyTable: import("vue").DefineComponent<{
3
+ inset: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ striped: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ indentSize: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ canColDrag: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ useTableWrapper: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ isCanResizeParent: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ canResize: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ resizeHeightOffset: {
32
+ type: NumberConstructor;
33
+ default: number;
34
+ };
35
+ maxHeight: {
36
+ type: NumberConstructor;
37
+ };
38
+ bordered: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ rowClassName: {
43
+ type: ((new (...args: any[]) => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | (() => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | {
44
+ (): (record: import("./types/table").TableCustomRecord<any>, index: number) => string;
45
+ new (): any;
46
+ readonly prototype: any;
47
+ }) | ((new (...args: any[]) => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | (() => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | {
48
+ (): (record: import("./types/table").TableCustomRecord<any>, index: number) => string;
49
+ new (): any;
50
+ readonly prototype: any;
51
+ })[];
52
+ };
53
+ scroll: {
54
+ type: ((new (...args: any[]) => {
55
+ x: number | true;
56
+ y: number;
57
+ }) | (() => {
58
+ x: number | true;
59
+ y: number;
60
+ })) | ((new (...args: any[]) => {
61
+ x: number | true;
62
+ y: number;
63
+ }) | (() => {
64
+ x: number | true;
65
+ y: number;
66
+ }))[];
67
+ default: any;
68
+ };
69
+ size: {
70
+ type: ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => SizeType)) | ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => SizeType))[];
71
+ default: string;
72
+ };
73
+ isShowPagination: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ isShowFooterSettings: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ isShowFooter: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ pagination: {
86
+ type: ((new (...args: any[]) => import("..").PaginationProps) | (() => import("..").PaginationProps)) | ((new (...args: any[]) => import("..").PaginationProps) | (() => import("..").PaginationProps))[];
87
+ default: () => void;
88
+ };
89
+ clickToRowSelect: {
90
+ type: BooleanConstructor;
91
+ default: boolean;
92
+ };
93
+ autoCreateKey: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ rowSelection: {
98
+ type: ((new (...args: any[]) => import("./types/table").TableRowSelection<any>) | (() => import("./types/table").TableRowSelection<any>)) | ((new (...args: any[]) => import("./types/table").TableRowSelection<any>) | (() => import("./types/table").TableRowSelection<any>))[];
99
+ default: any;
100
+ };
101
+ clearSelectOnPageChange: {
102
+ type: BooleanConstructor;
103
+ };
104
+ rowKey: {
105
+ type: ((new (...args: any[]) => string | ((record: Recordable<any>) => string)) | (() => string | ((record: Recordable<any>) => string))) | ((new (...args: any[]) => string | ((record: Recordable<any>) => string)) | (() => string | ((record: Recordable<any>) => string)))[];
106
+ default: string;
107
+ };
108
+ isShowHeader: {
109
+ type: BooleanConstructor;
110
+ default: boolean;
111
+ };
112
+ headerAlign: {
113
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
114
+ default: string;
115
+ };
116
+ isShowTitle: {
117
+ type: BooleanConstructor;
118
+ default: boolean;
119
+ };
120
+ title: {
121
+ type: ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
122
+ [key: string]: any;
123
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
124
+ [key: string]: any;
125
+ }> | ((data: Recordable<any>) => string))) | ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
126
+ [key: string]: any;
127
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
128
+ [key: string]: any;
129
+ }> | ((data: Recordable<any>) => string)))[];
130
+ };
131
+ titleHelpMessage: {
132
+ type: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
133
+ };
134
+ showTableSetting: {
135
+ type: BooleanConstructor;
136
+ default: boolean;
137
+ };
138
+ tableSetting: {
139
+ type: ((new (...args: any[]) => import("./types/table").TableSetting) | (() => import("./types/table").TableSetting)) | ((new (...args: any[]) => import("./types/table").TableSetting) | (() => import("./types/table").TableSetting))[];
140
+ default: () => {};
141
+ };
142
+ loading: {
143
+ type: BooleanConstructor;
144
+ };
145
+ api: {
146
+ type: ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
147
+ (): (...arg: any[]) => Promise<any>;
148
+ new (): any;
149
+ readonly prototype: any;
150
+ }) | ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
151
+ (): (...arg: any[]) => Promise<any>;
152
+ new (): any;
153
+ readonly prototype: any;
154
+ })[];
155
+ default: any;
156
+ };
157
+ beforeFetch: {
158
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
159
+ (): Fn<any, any>;
160
+ new (): any;
161
+ readonly prototype: any;
162
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
163
+ (): Fn<any, any>;
164
+ new (): any;
165
+ readonly prototype: any;
166
+ })[];
167
+ default: any;
168
+ };
169
+ afterFetch: {
170
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
171
+ (): Fn<any, any>;
172
+ new (): any;
173
+ readonly prototype: any;
174
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
175
+ (): Fn<any, any>;
176
+ new (): any;
177
+ readonly prototype: any;
178
+ })[];
179
+ default: any;
180
+ };
181
+ fetchSetting: {
182
+ type: ((new (...args: any[]) => import("./types/table").FetchSetting) | (() => import("./types/table").FetchSetting)) | ((new (...args: any[]) => import("./types/table").FetchSetting) | (() => import("./types/table").FetchSetting))[];
183
+ default: () => {
184
+ pageField: string;
185
+ sizeField: string;
186
+ listField: string;
187
+ totalField: string;
188
+ };
189
+ };
190
+ immediate: {
191
+ type: BooleanConstructor;
192
+ default: boolean;
193
+ };
194
+ emptyDataIsShowTable: {
195
+ type: BooleanConstructor;
196
+ default: boolean;
197
+ };
198
+ dataSource: {
199
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
200
+ default: any;
201
+ };
202
+ isTreeTable: {
203
+ type: BooleanConstructor;
204
+ default: boolean;
205
+ };
206
+ beforeEditSubmit: {
207
+ type: ((new (...args: any[]) => (data: {
208
+ record: Recordable<any>;
209
+ index: number;
210
+ key: string | number;
211
+ value: any;
212
+ }) => Promise<any>) | (() => (data: {
213
+ record: Recordable<any>;
214
+ index: number;
215
+ key: string | number;
216
+ value: any;
217
+ }) => Promise<any>) | {
218
+ (): (data: {
219
+ record: Recordable<any>;
220
+ index: number;
221
+ key: string | number;
222
+ value: any;
223
+ }) => Promise<any>;
224
+ new (): any;
225
+ readonly prototype: any;
226
+ }) | ((new (...args: any[]) => (data: {
227
+ record: Recordable<any>;
228
+ index: number;
229
+ key: string | number;
230
+ value: any;
231
+ }) => Promise<any>) | (() => (data: {
232
+ record: Recordable<any>;
233
+ index: number;
234
+ key: string | number;
235
+ value: any;
236
+ }) => Promise<any>) | {
237
+ (): (data: {
238
+ record: Recordable<any>;
239
+ index: number;
240
+ key: string | number;
241
+ value: any;
242
+ }) => Promise<any>;
243
+ new (): any;
244
+ readonly prototype: any;
245
+ })[];
246
+ };
247
+ actionColWidth: {
248
+ type: NumberConstructor;
249
+ default: number;
250
+ };
251
+ showIndexColumn: {
252
+ type: BooleanConstructor;
253
+ default: boolean;
254
+ };
255
+ indexColumnProps: {
256
+ type: ((new (...args: any[]) => {
257
+ width?: number;
258
+ children?: import("./types/table").ShyColumn[];
259
+ filters?: {
260
+ text: string;
261
+ value: string;
262
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
263
+ }[];
264
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
265
+ customTitle?: import("@shy-plugins/utils").VueNode;
266
+ slots?: Recordable<any>;
267
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
268
+ advancedComponent?: import("../../ShyForm").ComponentType;
269
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
270
+ globalShow?: boolean;
271
+ advancedShow?: boolean;
272
+ defaultHidden?: boolean;
273
+ helpMessage?: string | string[];
274
+ format?: import("./types/table").CellFormat;
275
+ tag?: boolean;
276
+ options?: Recordable<any>[];
277
+ edit?: boolean;
278
+ editRow?: boolean;
279
+ editable?: boolean;
280
+ editComponent?: import("../../ShyForm").ComponentType;
281
+ editComponentProps?: Recordable<any> | ((opt: {
282
+ text: string | number | boolean | Recordable<any>;
283
+ record: Recordable<any>;
284
+ column: import("./types/table").ShyColumn;
285
+ index: number;
286
+ typeAction: TableActionType;
287
+ }) => Recordable<any>);
288
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
289
+ editValueMap?: (value: any) => string;
290
+ onEditRow?: () => void;
291
+ auth?: string | string[] | import("./types/table").RoleEnum[];
292
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
293
+ editRender?: (opt: {
294
+ text: string | number | boolean | Recordable<any>;
295
+ record: Recordable<any>;
296
+ column: import("./types/table").ShyColumn;
297
+ index: number;
298
+ }) => import("vue").VNodeChild | JSX.Element;
299
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
300
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn)) | ((new (...args: any[]) => {
301
+ width?: number;
302
+ children?: import("./types/table").ShyColumn[];
303
+ filters?: {
304
+ text: string;
305
+ value: string;
306
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
307
+ }[];
308
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
309
+ customTitle?: import("@shy-plugins/utils").VueNode;
310
+ slots?: Recordable<any>;
311
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
312
+ advancedComponent?: import("../../ShyForm").ComponentType;
313
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
314
+ globalShow?: boolean;
315
+ advancedShow?: boolean;
316
+ defaultHidden?: boolean;
317
+ helpMessage?: string | string[];
318
+ format?: import("./types/table").CellFormat;
319
+ tag?: boolean;
320
+ options?: Recordable<any>[];
321
+ edit?: boolean;
322
+ editRow?: boolean;
323
+ editable?: boolean;
324
+ editComponent?: import("../../ShyForm").ComponentType;
325
+ editComponentProps?: Recordable<any> | ((opt: {
326
+ text: string | number | boolean | Recordable<any>;
327
+ record: Recordable<any>;
328
+ column: import("./types/table").ShyColumn;
329
+ index: number;
330
+ typeAction: TableActionType;
331
+ }) => Recordable<any>);
332
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
333
+ editValueMap?: (value: any) => string;
334
+ onEditRow?: () => void;
335
+ auth?: string | string[] | import("./types/table").RoleEnum[];
336
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
337
+ editRender?: (opt: {
338
+ text: string | number | boolean | Recordable<any>;
339
+ record: Recordable<any>;
340
+ column: import("./types/table").ShyColumn;
341
+ index: number;
342
+ }) => import("vue").VNodeChild | JSX.Element;
343
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
344
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn))[];
345
+ default: any;
346
+ };
347
+ actionColumn: {
348
+ type: ((new (...args: any[]) => {
349
+ width?: number;
350
+ children?: import("./types/table").ShyColumn[];
351
+ filters?: {
352
+ text: string;
353
+ value: string;
354
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
355
+ }[];
356
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
357
+ customTitle?: import("@shy-plugins/utils").VueNode;
358
+ slots?: Recordable<any>;
359
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
360
+ advancedComponent?: import("../../ShyForm").ComponentType;
361
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
362
+ globalShow?: boolean;
363
+ advancedShow?: boolean;
364
+ defaultHidden?: boolean;
365
+ helpMessage?: string | string[];
366
+ format?: import("./types/table").CellFormat;
367
+ tag?: boolean;
368
+ options?: Recordable<any>[];
369
+ edit?: boolean;
370
+ editRow?: boolean;
371
+ editable?: boolean;
372
+ editComponent?: import("../../ShyForm").ComponentType;
373
+ editComponentProps?: Recordable<any> | ((opt: {
374
+ text: string | number | boolean | Recordable<any>;
375
+ record: Recordable<any>;
376
+ column: import("./types/table").ShyColumn;
377
+ index: number;
378
+ typeAction: TableActionType;
379
+ }) => Recordable<any>);
380
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
381
+ editValueMap?: (value: any) => string;
382
+ onEditRow?: () => void;
383
+ auth?: string | string[] | import("./types/table").RoleEnum[];
384
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
385
+ editRender?: (opt: {
386
+ text: string | number | boolean | Recordable<any>;
387
+ record: Recordable<any>;
388
+ column: import("./types/table").ShyColumn;
389
+ index: number;
390
+ }) => import("vue").VNodeChild | JSX.Element;
391
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
392
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn)) | ((new (...args: any[]) => {
393
+ width?: number;
394
+ children?: import("./types/table").ShyColumn[];
395
+ filters?: {
396
+ text: string;
397
+ value: string;
398
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
399
+ }[];
400
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
401
+ customTitle?: import("@shy-plugins/utils").VueNode;
402
+ slots?: Recordable<any>;
403
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
404
+ advancedComponent?: import("../../ShyForm").ComponentType;
405
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
406
+ globalShow?: boolean;
407
+ advancedShow?: boolean;
408
+ defaultHidden?: boolean;
409
+ helpMessage?: string | string[];
410
+ format?: import("./types/table").CellFormat;
411
+ tag?: boolean;
412
+ options?: Recordable<any>[];
413
+ edit?: boolean;
414
+ editRow?: boolean;
415
+ editable?: boolean;
416
+ editComponent?: import("../../ShyForm").ComponentType;
417
+ editComponentProps?: Recordable<any> | ((opt: {
418
+ text: string | number | boolean | Recordable<any>;
419
+ record: Recordable<any>;
420
+ column: import("./types/table").ShyColumn;
421
+ index: number;
422
+ typeAction: TableActionType;
423
+ }) => Recordable<any>);
424
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
425
+ editValueMap?: (value: any) => string;
426
+ onEditRow?: () => void;
427
+ auth?: string | string[] | import("./types/table").RoleEnum[];
428
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
429
+ editRender?: (opt: {
430
+ text: string | number | boolean | Recordable<any>;
431
+ record: Recordable<any>;
432
+ column: import("./types/table").ShyColumn;
433
+ index: number;
434
+ }) => import("vue").VNodeChild | JSX.Element;
435
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
436
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn))[];
437
+ default: any;
438
+ };
439
+ ellipsis: {
440
+ type: BooleanConstructor;
441
+ default: boolean;
442
+ };
443
+ resizable: {
444
+ type: BooleanConstructor;
445
+ default: boolean;
446
+ };
447
+ columns: {
448
+ type: ((new (...args: any[]) => import("./types/table").ShyColumn[]) | (() => import("./types/table").ShyColumn[])) | ((new (...args: any[]) => import("./types/table").ShyColumn[]) | (() => import("./types/table").ShyColumn[]))[];
449
+ default: () => any[];
450
+ };
451
+ showSummary: {
452
+ type: BooleanConstructor;
453
+ default: boolean;
454
+ };
455
+ summaryFunc: {
456
+ type: ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
457
+ (): (...arg: any[]) => any[];
458
+ new (): any;
459
+ readonly prototype: any;
460
+ }) | ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
461
+ (): (...arg: any[]) => any[];
462
+ new (): any;
463
+ readonly prototype: any;
464
+ })[];
465
+ default: any;
466
+ };
467
+ summaryData: {
468
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
469
+ default: any;
470
+ };
471
+ summaryTotalFields: {
472
+ type: ((new (...args: any[]) => string[]) | (() => string[])) | ((new (...args: any[]) => string[]) | (() => string[]))[];
473
+ default: any;
474
+ };
475
+ showSummaryTotal: {
476
+ type: BooleanConstructor;
477
+ default: boolean;
478
+ };
479
+ summaryPrecision: {
480
+ type: NumberConstructor;
481
+ default: number;
482
+ };
483
+ useSearchForm: {
484
+ type: BooleanConstructor;
485
+ };
486
+ isSortFetch: {
487
+ type: BooleanConstructor;
488
+ default: boolean;
489
+ };
490
+ sortFn: {
491
+ type: ((new (...args: any[]) => (sortInfo: import("./types/table").SorterResult) => any) | (() => (sortInfo: import("./types/table").SorterResult) => any) | {
492
+ (): (sortInfo: import("./types/table").SorterResult) => any;
493
+ new (): any;
494
+ readonly prototype: any;
495
+ }) | ((new (...args: any[]) => (sortInfo: import("./types/table").SorterResult) => any) | (() => (sortInfo: import("./types/table").SorterResult) => any) | {
496
+ (): (sortInfo: import("./types/table").SorterResult) => any;
497
+ new (): any;
498
+ readonly prototype: any;
499
+ })[];
500
+ default: (sortInfo: import("./types/table").SorterResult) => {
501
+ sort: string;
502
+ order: string;
503
+ } | {
504
+ sort?: undefined;
505
+ order?: undefined;
506
+ };
507
+ };
508
+ filterFn: {
509
+ type: ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
510
+ (): (data: Partial<Recordable<string[]>>) => any;
511
+ new (): any;
512
+ readonly prototype: any;
513
+ }) | ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
514
+ (): (data: Partial<Recordable<string[]>>) => any;
515
+ new (): any;
516
+ readonly prototype: any;
517
+ })[];
518
+ default: (data: Partial<Recordable<string[]>>) => Partial<Recordable<string[]>>;
519
+ };
520
+ searchInfo: {
521
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
522
+ default: any;
523
+ };
524
+ defSort: {
525
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
526
+ default: any;
527
+ };
528
+ handleSearchInfoFn: {
529
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
530
+ (): Fn<any, any>;
531
+ new (): any;
532
+ readonly prototype: any;
533
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
534
+ (): Fn<any, any>;
535
+ new (): any;
536
+ readonly prototype: any;
537
+ })[];
538
+ default: any;
539
+ };
540
+ formLayout: {
541
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
542
+ default: string;
543
+ };
544
+ formLabelInInput: {
545
+ type: BooleanConstructor;
546
+ default: boolean;
547
+ };
548
+ formConfig: {
549
+ type: ((new (...args: any[]) => Partial<import("../../ShyForm").FormProps>) | (() => Partial<import("../../ShyForm").FormProps>)) | ((new (...args: any[]) => Partial<import("../../ShyForm").FormProps>) | (() => Partial<import("../../ShyForm").FormProps>))[];
550
+ default: any;
551
+ };
552
+ useInfo: {
553
+ type: BooleanConstructor;
554
+ default: boolean;
555
+ };
556
+ infoConfig: {
557
+ type: ((new (...args: any[]) => import("./types/table").InfoConfig) | (() => import("./types/table").InfoConfig)) | ((new (...args: any[]) => import("./types/table").InfoConfig) | (() => import("./types/table").InfoConfig))[];
558
+ default: () => {};
559
+ };
560
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "register" | "fetch-success" | "fetch-error" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "edit-end" | "edit-cancel" | "edit-row-end" | "edit-change" | "expanded-rows-change" | "columns-change" | "columns-reset")[], "change" | "register" | "fetch-success" | "fetch-error" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "edit-end" | "edit-cancel" | "edit-row-end" | "edit-change" | "expanded-rows-change" | "columns-change" | "columns-reset", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
561
+ inset: {
562
+ type: BooleanConstructor;
563
+ default: boolean;
564
+ };
565
+ striped: {
566
+ type: BooleanConstructor;
567
+ default: boolean;
568
+ };
569
+ indentSize: {
570
+ type: NumberConstructor;
571
+ default: number;
572
+ };
573
+ canColDrag: {
574
+ type: BooleanConstructor;
575
+ default: boolean;
576
+ };
577
+ useTableWrapper: {
578
+ type: BooleanConstructor;
579
+ default: boolean;
580
+ };
581
+ isCanResizeParent: {
582
+ type: BooleanConstructor;
583
+ default: boolean;
584
+ };
585
+ canResize: {
586
+ type: BooleanConstructor;
587
+ default: boolean;
588
+ };
589
+ resizeHeightOffset: {
590
+ type: NumberConstructor;
591
+ default: number;
592
+ };
593
+ maxHeight: {
594
+ type: NumberConstructor;
595
+ };
596
+ bordered: {
597
+ type: BooleanConstructor;
598
+ default: boolean;
599
+ };
600
+ rowClassName: {
601
+ type: ((new (...args: any[]) => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | (() => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | {
602
+ (): (record: import("./types/table").TableCustomRecord<any>, index: number) => string;
603
+ new (): any;
604
+ readonly prototype: any;
605
+ }) | ((new (...args: any[]) => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | (() => (record: import("./types/table").TableCustomRecord<any>, index: number) => string) | {
606
+ (): (record: import("./types/table").TableCustomRecord<any>, index: number) => string;
607
+ new (): any;
608
+ readonly prototype: any;
609
+ })[];
610
+ };
611
+ scroll: {
612
+ type: ((new (...args: any[]) => {
613
+ x: number | true;
614
+ y: number;
615
+ }) | (() => {
616
+ x: number | true;
617
+ y: number;
618
+ })) | ((new (...args: any[]) => {
619
+ x: number | true;
620
+ y: number;
621
+ }) | (() => {
622
+ x: number | true;
623
+ y: number;
624
+ }))[];
625
+ default: any;
626
+ };
627
+ size: {
628
+ type: ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => SizeType)) | ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => SizeType))[];
629
+ default: string;
630
+ };
631
+ isShowPagination: {
632
+ type: BooleanConstructor;
633
+ default: boolean;
634
+ };
635
+ isShowFooterSettings: {
636
+ type: BooleanConstructor;
637
+ default: boolean;
638
+ };
639
+ isShowFooter: {
640
+ type: BooleanConstructor;
641
+ default: boolean;
642
+ };
643
+ pagination: {
644
+ type: ((new (...args: any[]) => import("..").PaginationProps) | (() => import("..").PaginationProps)) | ((new (...args: any[]) => import("..").PaginationProps) | (() => import("..").PaginationProps))[];
645
+ default: () => void;
646
+ };
647
+ clickToRowSelect: {
648
+ type: BooleanConstructor;
649
+ default: boolean;
650
+ };
651
+ autoCreateKey: {
652
+ type: BooleanConstructor;
653
+ default: boolean;
654
+ };
655
+ rowSelection: {
656
+ type: ((new (...args: any[]) => import("./types/table").TableRowSelection<any>) | (() => import("./types/table").TableRowSelection<any>)) | ((new (...args: any[]) => import("./types/table").TableRowSelection<any>) | (() => import("./types/table").TableRowSelection<any>))[];
657
+ default: any;
658
+ };
659
+ clearSelectOnPageChange: {
660
+ type: BooleanConstructor;
661
+ };
662
+ rowKey: {
663
+ type: ((new (...args: any[]) => string | ((record: Recordable<any>) => string)) | (() => string | ((record: Recordable<any>) => string))) | ((new (...args: any[]) => string | ((record: Recordable<any>) => string)) | (() => string | ((record: Recordable<any>) => string)))[];
664
+ default: string;
665
+ };
666
+ isShowHeader: {
667
+ type: BooleanConstructor;
668
+ default: boolean;
669
+ };
670
+ headerAlign: {
671
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
672
+ default: string;
673
+ };
674
+ isShowTitle: {
675
+ type: BooleanConstructor;
676
+ default: boolean;
677
+ };
678
+ title: {
679
+ type: ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
680
+ [key: string]: any;
681
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
682
+ [key: string]: any;
683
+ }> | ((data: Recordable<any>) => string))) | ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
684
+ [key: string]: any;
685
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
686
+ [key: string]: any;
687
+ }> | ((data: Recordable<any>) => string)))[];
688
+ };
689
+ titleHelpMessage: {
690
+ type: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
691
+ };
692
+ showTableSetting: {
693
+ type: BooleanConstructor;
694
+ default: boolean;
695
+ };
696
+ tableSetting: {
697
+ type: ((new (...args: any[]) => import("./types/table").TableSetting) | (() => import("./types/table").TableSetting)) | ((new (...args: any[]) => import("./types/table").TableSetting) | (() => import("./types/table").TableSetting))[];
698
+ default: () => {};
699
+ };
700
+ loading: {
701
+ type: BooleanConstructor;
702
+ };
703
+ api: {
704
+ type: ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
705
+ (): (...arg: any[]) => Promise<any>;
706
+ new (): any;
707
+ readonly prototype: any;
708
+ }) | ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
709
+ (): (...arg: any[]) => Promise<any>;
710
+ new (): any;
711
+ readonly prototype: any;
712
+ })[];
713
+ default: any;
714
+ };
715
+ beforeFetch: {
716
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
717
+ (): Fn<any, any>;
718
+ new (): any;
719
+ readonly prototype: any;
720
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
721
+ (): Fn<any, any>;
722
+ new (): any;
723
+ readonly prototype: any;
724
+ })[];
725
+ default: any;
726
+ };
727
+ afterFetch: {
728
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
729
+ (): Fn<any, any>;
730
+ new (): any;
731
+ readonly prototype: any;
732
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
733
+ (): Fn<any, any>;
734
+ new (): any;
735
+ readonly prototype: any;
736
+ })[];
737
+ default: any;
738
+ };
739
+ fetchSetting: {
740
+ type: ((new (...args: any[]) => import("./types/table").FetchSetting) | (() => import("./types/table").FetchSetting)) | ((new (...args: any[]) => import("./types/table").FetchSetting) | (() => import("./types/table").FetchSetting))[];
741
+ default: () => {
742
+ pageField: string;
743
+ sizeField: string;
744
+ listField: string;
745
+ totalField: string;
746
+ };
747
+ };
748
+ immediate: {
749
+ type: BooleanConstructor;
750
+ default: boolean;
751
+ };
752
+ emptyDataIsShowTable: {
753
+ type: BooleanConstructor;
754
+ default: boolean;
755
+ };
756
+ dataSource: {
757
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
758
+ default: any;
759
+ };
760
+ isTreeTable: {
761
+ type: BooleanConstructor;
762
+ default: boolean;
763
+ };
764
+ beforeEditSubmit: {
765
+ type: ((new (...args: any[]) => (data: {
766
+ record: Recordable<any>;
767
+ index: number;
768
+ key: string | number;
769
+ value: any;
770
+ }) => Promise<any>) | (() => (data: {
771
+ record: Recordable<any>;
772
+ index: number;
773
+ key: string | number;
774
+ value: any;
775
+ }) => Promise<any>) | {
776
+ (): (data: {
777
+ record: Recordable<any>;
778
+ index: number;
779
+ key: string | number;
780
+ value: any;
781
+ }) => Promise<any>;
782
+ new (): any;
783
+ readonly prototype: any;
784
+ }) | ((new (...args: any[]) => (data: {
785
+ record: Recordable<any>;
786
+ index: number;
787
+ key: string | number;
788
+ value: any;
789
+ }) => Promise<any>) | (() => (data: {
790
+ record: Recordable<any>;
791
+ index: number;
792
+ key: string | number;
793
+ value: any;
794
+ }) => Promise<any>) | {
795
+ (): (data: {
796
+ record: Recordable<any>;
797
+ index: number;
798
+ key: string | number;
799
+ value: any;
800
+ }) => Promise<any>;
801
+ new (): any;
802
+ readonly prototype: any;
803
+ })[];
804
+ };
805
+ actionColWidth: {
806
+ type: NumberConstructor;
807
+ default: number;
808
+ };
809
+ showIndexColumn: {
810
+ type: BooleanConstructor;
811
+ default: boolean;
812
+ };
813
+ indexColumnProps: {
814
+ type: ((new (...args: any[]) => {
815
+ width?: number;
816
+ children?: import("./types/table").ShyColumn[];
817
+ filters?: {
818
+ text: string;
819
+ value: string;
820
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
821
+ }[];
822
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
823
+ customTitle?: import("@shy-plugins/utils").VueNode;
824
+ slots?: Recordable<any>;
825
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
826
+ advancedComponent?: import("../../ShyForm").ComponentType;
827
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
828
+ globalShow?: boolean;
829
+ advancedShow?: boolean;
830
+ defaultHidden?: boolean;
831
+ helpMessage?: string | string[];
832
+ format?: import("./types/table").CellFormat;
833
+ tag?: boolean;
834
+ options?: Recordable<any>[];
835
+ edit?: boolean;
836
+ editRow?: boolean;
837
+ editable?: boolean;
838
+ editComponent?: import("../../ShyForm").ComponentType;
839
+ editComponentProps?: Recordable<any> | ((opt: {
840
+ text: string | number | boolean | Recordable<any>;
841
+ record: Recordable<any>;
842
+ column: import("./types/table").ShyColumn;
843
+ index: number;
844
+ typeAction: TableActionType;
845
+ }) => Recordable<any>);
846
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
847
+ editValueMap?: (value: any) => string;
848
+ onEditRow?: () => void;
849
+ auth?: string | string[] | import("./types/table").RoleEnum[];
850
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
851
+ editRender?: (opt: {
852
+ text: string | number | boolean | Recordable<any>;
853
+ record: Recordable<any>;
854
+ column: import("./types/table").ShyColumn;
855
+ index: number;
856
+ }) => import("vue").VNodeChild | JSX.Element;
857
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
858
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn)) | ((new (...args: any[]) => {
859
+ width?: number;
860
+ children?: import("./types/table").ShyColumn[];
861
+ filters?: {
862
+ text: string;
863
+ value: string;
864
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
865
+ }[];
866
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
867
+ customTitle?: import("@shy-plugins/utils").VueNode;
868
+ slots?: Recordable<any>;
869
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
870
+ advancedComponent?: import("../../ShyForm").ComponentType;
871
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
872
+ globalShow?: boolean;
873
+ advancedShow?: boolean;
874
+ defaultHidden?: boolean;
875
+ helpMessage?: string | string[];
876
+ format?: import("./types/table").CellFormat;
877
+ tag?: boolean;
878
+ options?: Recordable<any>[];
879
+ edit?: boolean;
880
+ editRow?: boolean;
881
+ editable?: boolean;
882
+ editComponent?: import("../../ShyForm").ComponentType;
883
+ editComponentProps?: Recordable<any> | ((opt: {
884
+ text: string | number | boolean | Recordable<any>;
885
+ record: Recordable<any>;
886
+ column: import("./types/table").ShyColumn;
887
+ index: number;
888
+ typeAction: TableActionType;
889
+ }) => Recordable<any>);
890
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
891
+ editValueMap?: (value: any) => string;
892
+ onEditRow?: () => void;
893
+ auth?: string | string[] | import("./types/table").RoleEnum[];
894
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
895
+ editRender?: (opt: {
896
+ text: string | number | boolean | Recordable<any>;
897
+ record: Recordable<any>;
898
+ column: import("./types/table").ShyColumn;
899
+ index: number;
900
+ }) => import("vue").VNodeChild | JSX.Element;
901
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
902
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn))[];
903
+ default: any;
904
+ };
905
+ actionColumn: {
906
+ type: ((new (...args: any[]) => {
907
+ width?: number;
908
+ children?: import("./types/table").ShyColumn[];
909
+ filters?: {
910
+ text: string;
911
+ value: string;
912
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
913
+ }[];
914
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
915
+ customTitle?: import("@shy-plugins/utils").VueNode;
916
+ slots?: Recordable<any>;
917
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
918
+ advancedComponent?: import("../../ShyForm").ComponentType;
919
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
920
+ globalShow?: boolean;
921
+ advancedShow?: boolean;
922
+ defaultHidden?: boolean;
923
+ helpMessage?: string | string[];
924
+ format?: import("./types/table").CellFormat;
925
+ tag?: boolean;
926
+ options?: Recordable<any>[];
927
+ edit?: boolean;
928
+ editRow?: boolean;
929
+ editable?: boolean;
930
+ editComponent?: import("../../ShyForm").ComponentType;
931
+ editComponentProps?: Recordable<any> | ((opt: {
932
+ text: string | number | boolean | Recordable<any>;
933
+ record: Recordable<any>;
934
+ column: import("./types/table").ShyColumn;
935
+ index: number;
936
+ typeAction: TableActionType;
937
+ }) => Recordable<any>);
938
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
939
+ editValueMap?: (value: any) => string;
940
+ onEditRow?: () => void;
941
+ auth?: string | string[] | import("./types/table").RoleEnum[];
942
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
943
+ editRender?: (opt: {
944
+ text: string | number | boolean | Recordable<any>;
945
+ record: Recordable<any>;
946
+ column: import("./types/table").ShyColumn;
947
+ index: number;
948
+ }) => import("vue").VNodeChild | JSX.Element;
949
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
950
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn)) | ((new (...args: any[]) => {
951
+ width?: number;
952
+ children?: import("./types/table").ShyColumn[];
953
+ filters?: {
954
+ text: string;
955
+ value: string;
956
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
957
+ }[];
958
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
959
+ customTitle?: import("@shy-plugins/utils").VueNode;
960
+ slots?: Recordable<any>;
961
+ advancedType?: import("../../ShyAdvancedSearch").AdvancedSearchType;
962
+ advancedComponent?: import("../../ShyForm").ComponentType;
963
+ advancedComponentProps?: import("../../ShyForm").ComponentProps;
964
+ globalShow?: boolean;
965
+ advancedShow?: boolean;
966
+ defaultHidden?: boolean;
967
+ helpMessage?: string | string[];
968
+ format?: import("./types/table").CellFormat;
969
+ tag?: boolean;
970
+ options?: Recordable<any>[];
971
+ edit?: boolean;
972
+ editRow?: boolean;
973
+ editable?: boolean;
974
+ editComponent?: import("../../ShyForm").ComponentType;
975
+ editComponentProps?: Recordable<any> | ((opt: {
976
+ text: string | number | boolean | Recordable<any>;
977
+ record: Recordable<any>;
978
+ column: import("./types/table").ShyColumn;
979
+ index: number;
980
+ typeAction: TableActionType;
981
+ }) => Recordable<any>);
982
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
983
+ editValueMap?: (value: any) => string;
984
+ onEditRow?: () => void;
985
+ auth?: string | string[] | import("./types/table").RoleEnum[];
986
+ ifShow?: boolean | ((column: import("./types/table").ShyColumn) => boolean);
987
+ editRender?: (opt: {
988
+ text: string | number | boolean | Recordable<any>;
989
+ record: Recordable<any>;
990
+ column: import("./types/table").ShyColumn;
991
+ index: number;
992
+ }) => import("vue").VNodeChild | JSX.Element;
993
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
994
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("./types/table").ShyColumn))[];
995
+ default: any;
996
+ };
997
+ ellipsis: {
998
+ type: BooleanConstructor;
999
+ default: boolean;
1000
+ };
1001
+ resizable: {
1002
+ type: BooleanConstructor;
1003
+ default: boolean;
1004
+ };
1005
+ columns: {
1006
+ type: ((new (...args: any[]) => import("./types/table").ShyColumn[]) | (() => import("./types/table").ShyColumn[])) | ((new (...args: any[]) => import("./types/table").ShyColumn[]) | (() => import("./types/table").ShyColumn[]))[];
1007
+ default: () => any[];
1008
+ };
1009
+ showSummary: {
1010
+ type: BooleanConstructor;
1011
+ default: boolean;
1012
+ };
1013
+ summaryFunc: {
1014
+ type: ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1015
+ (): (...arg: any[]) => any[];
1016
+ new (): any;
1017
+ readonly prototype: any;
1018
+ }) | ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1019
+ (): (...arg: any[]) => any[];
1020
+ new (): any;
1021
+ readonly prototype: any;
1022
+ })[];
1023
+ default: any;
1024
+ };
1025
+ summaryData: {
1026
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
1027
+ default: any;
1028
+ };
1029
+ summaryTotalFields: {
1030
+ type: ((new (...args: any[]) => string[]) | (() => string[])) | ((new (...args: any[]) => string[]) | (() => string[]))[];
1031
+ default: any;
1032
+ };
1033
+ showSummaryTotal: {
1034
+ type: BooleanConstructor;
1035
+ default: boolean;
1036
+ };
1037
+ summaryPrecision: {
1038
+ type: NumberConstructor;
1039
+ default: number;
1040
+ };
1041
+ useSearchForm: {
1042
+ type: BooleanConstructor;
1043
+ };
1044
+ isSortFetch: {
1045
+ type: BooleanConstructor;
1046
+ default: boolean;
1047
+ };
1048
+ sortFn: {
1049
+ type: ((new (...args: any[]) => (sortInfo: import("./types/table").SorterResult) => any) | (() => (sortInfo: import("./types/table").SorterResult) => any) | {
1050
+ (): (sortInfo: import("./types/table").SorterResult) => any;
1051
+ new (): any;
1052
+ readonly prototype: any;
1053
+ }) | ((new (...args: any[]) => (sortInfo: import("./types/table").SorterResult) => any) | (() => (sortInfo: import("./types/table").SorterResult) => any) | {
1054
+ (): (sortInfo: import("./types/table").SorterResult) => any;
1055
+ new (): any;
1056
+ readonly prototype: any;
1057
+ })[];
1058
+ default: (sortInfo: import("./types/table").SorterResult) => {
1059
+ sort: string;
1060
+ order: string;
1061
+ } | {
1062
+ sort?: undefined;
1063
+ order?: undefined;
1064
+ };
1065
+ };
1066
+ filterFn: {
1067
+ type: ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1068
+ (): (data: Partial<Recordable<string[]>>) => any;
1069
+ new (): any;
1070
+ readonly prototype: any;
1071
+ }) | ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1072
+ (): (data: Partial<Recordable<string[]>>) => any;
1073
+ new (): any;
1074
+ readonly prototype: any;
1075
+ })[];
1076
+ default: (data: Partial<Recordable<string[]>>) => Partial<Recordable<string[]>>;
1077
+ };
1078
+ searchInfo: {
1079
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1080
+ default: any;
1081
+ };
1082
+ defSort: {
1083
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1084
+ default: any;
1085
+ };
1086
+ handleSearchInfoFn: {
1087
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1088
+ (): Fn<any, any>;
1089
+ new (): any;
1090
+ readonly prototype: any;
1091
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1092
+ (): Fn<any, any>;
1093
+ new (): any;
1094
+ readonly prototype: any;
1095
+ })[];
1096
+ default: any;
1097
+ };
1098
+ formLayout: {
1099
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
1100
+ default: string;
1101
+ };
1102
+ formLabelInInput: {
1103
+ type: BooleanConstructor;
1104
+ default: boolean;
1105
+ };
1106
+ formConfig: {
1107
+ type: ((new (...args: any[]) => Partial<import("../../ShyForm").FormProps>) | (() => Partial<import("../../ShyForm").FormProps>)) | ((new (...args: any[]) => Partial<import("../../ShyForm").FormProps>) | (() => Partial<import("../../ShyForm").FormProps>))[];
1108
+ default: any;
1109
+ };
1110
+ useInfo: {
1111
+ type: BooleanConstructor;
1112
+ default: boolean;
1113
+ };
1114
+ infoConfig: {
1115
+ type: ((new (...args: any[]) => import("./types/table").InfoConfig) | (() => import("./types/table").InfoConfig)) | ((new (...args: any[]) => import("./types/table").InfoConfig) | (() => import("./types/table").InfoConfig))[];
1116
+ default: () => {};
1117
+ };
1118
+ }>> & {
1119
+ onChange?: (...args: any[]) => any;
1120
+ onRegister?: (...args: any[]) => any;
1121
+ "onFetch-success"?: (...args: any[]) => any;
1122
+ "onFetch-error"?: (...args: any[]) => any;
1123
+ "onSelection-change"?: (...args: any[]) => any;
1124
+ "onRow-click"?: (...args: any[]) => any;
1125
+ "onRow-dbClick"?: (...args: any[]) => any;
1126
+ "onRow-contextmenu"?: (...args: any[]) => any;
1127
+ "onRow-mouseenter"?: (...args: any[]) => any;
1128
+ "onRow-mouseleave"?: (...args: any[]) => any;
1129
+ "onEdit-end"?: (...args: any[]) => any;
1130
+ "onEdit-cancel"?: (...args: any[]) => any;
1131
+ "onEdit-row-end"?: (...args: any[]) => any;
1132
+ "onEdit-change"?: (...args: any[]) => any;
1133
+ "onExpanded-rows-change"?: (...args: any[]) => any;
1134
+ "onColumns-change"?: (...args: any[]) => any;
1135
+ "onColumns-reset"?: (...args: any[]) => any;
1136
+ }, {
1137
+ size: SizeType;
1138
+ scroll: {
1139
+ x: number | true;
1140
+ y: number;
1141
+ };
1142
+ bordered: boolean;
1143
+ loading: boolean;
1144
+ api: (...arg: any[]) => Promise<any>;
1145
+ immediate: boolean;
1146
+ inset: boolean;
1147
+ isShowHeader: boolean;
1148
+ isShowFooter: boolean;
1149
+ summaryPrecision: number;
1150
+ summaryTotalFields: string[];
1151
+ columns: import("./types/table").ShyColumn[];
1152
+ formLabelInInput: boolean;
1153
+ resizable: boolean;
1154
+ ellipsis: boolean;
1155
+ striped: boolean;
1156
+ indentSize: number;
1157
+ canColDrag: boolean;
1158
+ useTableWrapper: boolean;
1159
+ isCanResizeParent: boolean;
1160
+ canResize: boolean;
1161
+ resizeHeightOffset: number;
1162
+ isShowPagination: boolean;
1163
+ isShowFooterSettings: boolean;
1164
+ pagination: void;
1165
+ clickToRowSelect: boolean;
1166
+ autoCreateKey: boolean;
1167
+ rowSelection: any;
1168
+ clearSelectOnPageChange: boolean;
1169
+ rowKey: string | ((record: Recordable<any>) => string);
1170
+ headerAlign: "left" | "right";
1171
+ isShowTitle: boolean;
1172
+ showTableSetting: boolean;
1173
+ tableSetting: {};
1174
+ beforeFetch: Fn<any, any>;
1175
+ afterFetch: Fn<any, any>;
1176
+ fetchSetting: import("./types/table").FetchSetting;
1177
+ emptyDataIsShowTable: boolean;
1178
+ dataSource: Recordable<any>[];
1179
+ isTreeTable: boolean;
1180
+ actionColWidth: number;
1181
+ showIndexColumn: boolean;
1182
+ indexColumnProps: any;
1183
+ actionColumn: any;
1184
+ showSummary: boolean;
1185
+ summaryFunc: (...arg: any[]) => any[];
1186
+ summaryData: Recordable<any>[];
1187
+ showSummaryTotal: boolean;
1188
+ useSearchForm: boolean;
1189
+ isSortFetch: boolean;
1190
+ sortFn: (sortInfo: import("./types/table").SorterResult) => any;
1191
+ filterFn: (data: Partial<Recordable<string[]>>) => any;
1192
+ searchInfo: any;
1193
+ defSort: any;
1194
+ handleSearchInfoFn: Fn<any, any>;
1195
+ formLayout: "vertical" | "horizontal" | "inline";
1196
+ formConfig: any;
1197
+ useInfo: boolean;
1198
+ infoConfig: {};
1199
+ }, {}>;
1200
+ export default ShyTable;