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